Fix bug #5247 "Wildcard expansion in mget is broken"
[samba.git] / source3 / client / client.c
1 /*
2    Unix SMB/CIFS implementation.
3    SMB client
4    Copyright (C) Andrew Tridgell          1994-1998
5    Copyright (C) Simo Sorce               2001-2002
6    Copyright (C) Jelmer Vernooij          2003
7    Copyright (C) Gerald (Jerry) Carter    2004
8    Copyright (C) Jeremy Allison           1994-2007
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "client/client_proto.h"
26 #include "include/rpc_client.h"
27 #ifndef REGISTER
28 #define REGISTER 0
29 #endif
30
31 extern int do_smb_browse(void); /* mDNS browsing */
32
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
35 extern char tar_type;
36 extern bool in_client;
37
38 static int port = 0;
39 static char *service;
40 static char *desthost;
41 static char *calling_name;
42 static bool grepable = false;
43 static char *cmdstr = NULL;
44 static const char *cmd_ptr = NULL;
45
46 static int io_bufsize = 64512;
47
48 static int name_type = 0x20;
49 extern int max_protocol;
50
51 static int process_tok(char *tok);
52 static int cmd_help(void);
53
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
59
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
62
63 time_t newer_than = 0;
64 static int archive_level = 0;
65
66 static bool translation = false;
67 static bool have_ip;
68
69 /* clitar bits insert */
70 extern int blocksize;
71 extern bool tar_inc;
72 extern bool tar_reset;
73 /* clitar bits end */
74
75 static bool prompt = true;
76
77 static bool recurse = false;
78 static bool showacls = false;
79 bool lowercase = false;
80
81 static struct sockaddr_storage dest_ss;
82
83 #define SEPARATORS " \t\n\r"
84
85 static bool abort_mget = true;
86
87 /* timing globals */
88 SMB_BIG_UINT get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static SMB_BIG_UINT put_total_size = 0;
91 static unsigned int put_total_time_ms = 0;
92
93 /* totals globals */
94 static double dir_total;
95
96 /* encrypted state. */
97 static bool smb_encrypt;
98
99 /* root cli_state connection */
100
101 struct cli_state *cli;
102
103 static char CLI_DIRSEP_CHAR = '\\';
104 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
105
106 /* Accessor functions for directory paths. */
107 static char *fileselection;
108 static const char *client_get_fileselection(void)
109 {
110         if (fileselection) {
111                 return fileselection;
112         }
113         return "";
114 }
115
116 static const char *client_set_fileselection(const char *new_fs)
117 {
118         SAFE_FREE(fileselection);
119         if (new_fs) {
120                 fileselection = SMB_STRDUP(new_fs);
121         }
122         return client_get_fileselection();
123 }
124
125 static char *cwd;
126 static const char *client_get_cwd(void)
127 {
128         if (cwd) {
129                 return cwd;
130         }
131         return CLI_DIRSEP_STR;
132 }
133
134 static const char *client_set_cwd(const char *new_cwd)
135 {
136         SAFE_FREE(cwd);
137         if (new_cwd) {
138                 cwd = SMB_STRDUP(new_cwd);
139         }
140         return client_get_cwd();
141 }
142
143 static char *cur_dir;
144 const char *client_get_cur_dir(void)
145 {
146         if (cur_dir) {
147                 return cur_dir;
148         }
149         return CLI_DIRSEP_STR;
150 }
151
152 const char *client_set_cur_dir(const char *newdir)
153 {
154         SAFE_FREE(cur_dir);
155         if (newdir) {
156                 cur_dir = SMB_STRDUP(newdir);
157         }
158         return client_get_cur_dir();
159 }
160
161 /****************************************************************************
162  Write to a local file with CR/LF->LF translation if appropriate. Return the
163  number taken from the buffer. This may not equal the number written.
164 ****************************************************************************/
165
166 static int writefile(int f, char *b, int n)
167 {
168         int i;
169
170         if (!translation) {
171                 return write(f,b,n);
172         }
173
174         i = 0;
175         while (i < n) {
176                 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
177                         b++;i++;
178                 }
179                 if (write(f, b, 1) != 1) {
180                         break;
181                 }
182                 b++;
183                 i++;
184         }
185
186         return(i);
187 }
188
189 /****************************************************************************
190  Read from a file with LF->CR/LF translation if appropriate. Return the
191  number read. read approx n bytes.
192 ****************************************************************************/
193
194 static int readfile(char *b, int n, XFILE *f)
195 {
196         int i;
197         int c;
198
199         if (!translation)
200                 return x_fread(b,1,n,f);
201
202         i = 0;
203         while (i < (n - 1) && (i < BUFFER_SIZE)) {
204                 if ((c = x_getc(f)) == EOF) {
205                         break;
206                 }
207
208                 if (c == '\n') { /* change all LFs to CR/LF */
209                         b[i++] = '\r';
210                 }
211
212                 b[i++] = c;
213         }
214
215         return(i);
216 }
217
218 /****************************************************************************
219  Send a message.
220 ****************************************************************************/
221
222 static void send_message(void)
223 {
224         int total_len = 0;
225         int grp_id;
226
227         if (!cli_message_start(cli, desthost,
228                                 get_cmdline_auth_info_username(), &grp_id)) {
229                 d_printf("message start: %s\n", cli_errstr(cli));
230                 return;
231         }
232
233
234         d_printf("Connected. Type your message, ending it with a Control-D\n");
235
236         while (!feof(stdin) && total_len < 1600) {
237                 int maxlen = MIN(1600 - total_len,127);
238                 char msg[1024];
239                 int l=0;
240                 int c;
241
242                 ZERO_ARRAY(msg);
243
244                 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
245                         if (c == '\n')
246                                 msg[l++] = '\r';
247                         msg[l] = c;
248                 }
249
250                 if ((total_len > 0) && (strlen(msg) == 0)) {
251                         break;
252                 }
253
254                 if (!cli_message_text(cli, msg, l, grp_id)) {
255                         d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
256                         return;
257                 }
258
259                 total_len += l;
260         }
261
262         if (total_len >= 1600)
263                 d_printf("the message was truncated to 1600 bytes\n");
264         else
265                 d_printf("sent %d bytes\n",total_len);
266
267         if (!cli_message_end(cli, grp_id)) {
268                 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
269                 return;
270         }
271 }
272
273 /****************************************************************************
274  Check the space on a device.
275 ****************************************************************************/
276
277 static int do_dskattr(void)
278 {
279         int total, bsize, avail;
280         struct cli_state *targetcli = NULL;
281         char *targetpath = NULL;
282         TALLOC_CTX *ctx = talloc_tos();
283
284         if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
285                 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
286                 return 1;
287         }
288
289         if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
290                 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
291                 return 1;
292         }
293
294         d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
295                  total, bsize, avail);
296
297         return 0;
298 }
299
300 /****************************************************************************
301  Show cd/pwd.
302 ****************************************************************************/
303
304 static int cmd_pwd(void)
305 {
306         d_printf("Current directory is %s",service);
307         d_printf("%s\n",client_get_cur_dir());
308         return 0;
309 }
310
311 /****************************************************************************
312  Ensure name has correct directory separators.
313 ****************************************************************************/
314
315 static void normalize_name(char *newdir)
316 {
317         if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
318                 string_replace(newdir,'/','\\');
319         }
320 }
321
322 /****************************************************************************
323  Change directory - inner section.
324 ****************************************************************************/
325
326 static int do_cd(const char *new_dir)
327 {
328         char *newdir = NULL;
329         char *saved_dir = NULL;
330         char *new_cd = NULL;
331         char *targetpath = NULL;
332         struct cli_state *targetcli = NULL;
333         SMB_STRUCT_STAT sbuf;
334         uint32 attributes;
335         int ret = 1;
336         TALLOC_CTX *ctx = talloc_stackframe();
337
338         newdir = talloc_strdup(ctx, new_dir);
339         if (!newdir) {
340                 TALLOC_FREE(ctx);
341                 return 1;
342         }
343
344         normalize_name(newdir);
345
346         /* Save the current directory in case the new directory is invalid */
347
348         saved_dir = talloc_strdup(ctx, client_get_cur_dir());
349         if (!saved_dir) {
350                 TALLOC_FREE(ctx);
351                 return 1;
352         }
353
354         if (*newdir == CLI_DIRSEP_CHAR) {
355                 client_set_cur_dir(newdir);
356                 new_cd = newdir;
357         } else {
358                 new_cd = talloc_asprintf(ctx, "%s%s",
359                                 client_get_cur_dir(),
360                                 newdir);
361                 if (!new_cd) {
362                         goto out;
363                 }
364         }
365
366         /* Ensure cur_dir ends in a DIRSEP */
367         if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
368                 new_cd = talloc_asprintf_append(new_cd, CLI_DIRSEP_STR);
369                 if (!new_cd) {
370                         goto out;
371                 }
372         }
373         client_set_cur_dir(new_cd);
374
375         new_cd = clean_name(ctx, new_cd);
376         client_set_cur_dir(new_cd);
377
378         if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
379                 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
380                 client_set_cur_dir(saved_dir);
381                 goto out;
382         }
383
384         if (strequal(targetpath,CLI_DIRSEP_STR )) {
385                 TALLOC_FREE(ctx);
386                 return 0;
387         }
388
389         /* Use a trans2_qpathinfo to test directories for modern servers.
390            Except Win9x doesn't support the qpathinfo_basic() call..... */
391
392         if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
393                 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
394                         d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
395                         client_set_cur_dir(saved_dir);
396                         goto out;
397                 }
398
399                 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
400                         d_printf("cd %s: not a directory\n", new_cd);
401                         client_set_cur_dir(saved_dir);
402                         goto out;
403                 }
404         } else {
405                 targetpath = talloc_asprintf(ctx,
406                                 "%s%s",
407                                 targetpath,
408                                 CLI_DIRSEP_STR );
409                 if (!targetpath) {
410                         client_set_cur_dir(saved_dir);
411                         goto out;
412                 }
413                 targetpath = clean_name(ctx, targetpath);
414                 if (!targetpath) {
415                         client_set_cur_dir(saved_dir);
416                         goto out;
417                 }
418
419                 if (!cli_chkpath(targetcli, targetpath)) {
420                         d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
421                         client_set_cur_dir(saved_dir);
422                         goto out;
423                 }
424         }
425
426         ret = 0;
427
428 out:
429
430         TALLOC_FREE(ctx);
431         return ret;
432 }
433
434 /****************************************************************************
435  Change directory.
436 ****************************************************************************/
437
438 static int cmd_cd(void)
439 {
440         char *buf = NULL;
441         int rc = 0;
442
443         if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
444                 rc = do_cd(buf);
445         } else {
446                 d_printf("Current directory is %s\n",client_get_cur_dir());
447         }
448
449         return rc;
450 }
451
452 /****************************************************************************
453  Change directory.
454 ****************************************************************************/
455
456 static int cmd_cd_oneup(void)
457 {
458         return do_cd("..");
459 }
460
461 /*******************************************************************
462  Decide if a file should be operated on.
463 ********************************************************************/
464
465 static bool do_this_one(file_info *finfo)
466 {
467         if (!finfo->name) {
468                 return false;
469         }
470
471         if (finfo->mode & aDIR) {
472                 return true;
473         }
474
475         if (*client_get_fileselection() &&
476             !mask_match(finfo->name,client_get_fileselection(),false)) {
477                 DEBUG(3,("mask_match %s failed\n", finfo->name));
478                 return false;
479         }
480
481         if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
482                 DEBUG(3,("newer_than %s failed\n", finfo->name));
483                 return false;
484         }
485
486         if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
487                 DEBUG(3,("archive %s failed\n", finfo->name));
488                 return false;
489         }
490
491         return true;
492 }
493
494 /****************************************************************************
495  Display info about a file.
496 ****************************************************************************/
497
498 static void display_finfo(file_info *finfo, const char *dir)
499 {
500         time_t t;
501         TALLOC_CTX *ctx = talloc_tos();
502
503         if (!do_this_one(finfo)) {
504                 return;
505         }
506
507         t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
508         if (!showacls) {
509                 d_printf("  %-30s%7.7s %8.0f  %s",
510                          finfo->name,
511                          attrib_string(finfo->mode),
512                         (double)finfo->size,
513                         time_to_asc(t));
514                 dir_total += finfo->size;
515         } else {
516                 char *afname = NULL;
517                 int fnum;
518
519                 /* skip if this is . or .. */
520                 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
521                         return;
522                 /* create absolute filename for cli_nt_create() FIXME */
523                 afname = talloc_asprintf(ctx,
524                                         "%s%s%s",
525                                         client_get_cwd(),
526                                         CLI_DIRSEP_STR,
527                                         finfo->name);
528                 if (!afname) {
529                         return;
530                 }
531                 /* print file meta date header */
532                 d_printf( "FILENAME:%s\n", afname);
533                 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
534                 d_printf( "SIZE:%.0f\n", (double)finfo->size);
535                 d_printf( "MTIME:%s", time_to_asc(t));
536                 fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
537                 if (fnum == -1) {
538                         DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
539                                 afname,
540                                 cli_errstr( finfo->cli)));
541                 } else {
542                         SEC_DESC *sd = NULL;
543                         sd = cli_query_secdesc(finfo->cli, fnum, ctx);
544                         if (!sd) {
545                                 DEBUG( 0, ("display_finfo() failed to "
546                                         "get security descriptor: %s",
547                                         cli_errstr( finfo->cli)));
548                         } else {
549                                 display_sec_desc(sd);
550                         }
551                         TALLOC_FREE(sd);
552                 }
553                 TALLOC_FREE(afname);
554         }
555 }
556
557 /****************************************************************************
558  Accumulate size of a file.
559 ****************************************************************************/
560
561 static void do_du(file_info *finfo, const char *dir)
562 {
563         if (do_this_one(finfo)) {
564                 dir_total += finfo->size;
565         }
566 }
567
568 static bool do_list_recurse;
569 static bool do_list_dirs;
570 static char *do_list_queue = 0;
571 static long do_list_queue_size = 0;
572 static long do_list_queue_start = 0;
573 static long do_list_queue_end = 0;
574 static void (*do_list_fn)(file_info *, const char *dir);
575
576 /****************************************************************************
577  Functions for do_list_queue.
578 ****************************************************************************/
579
580 /*
581  * The do_list_queue is a NUL-separated list of strings stored in a
582  * char*.  Since this is a FIFO, we keep track of the beginning and
583  * ending locations of the data in the queue.  When we overflow, we
584  * double the size of the char*.  When the start of the data passes
585  * the midpoint, we move everything back.  This is logically more
586  * complex than a linked list, but easier from a memory management
587  * angle.  In any memory error condition, do_list_queue is reset.
588  * Functions check to ensure that do_list_queue is non-NULL before
589  * accessing it.
590  */
591
592 static void reset_do_list_queue(void)
593 {
594         SAFE_FREE(do_list_queue);
595         do_list_queue_size = 0;
596         do_list_queue_start = 0;
597         do_list_queue_end = 0;
598 }
599
600 static void init_do_list_queue(void)
601 {
602         reset_do_list_queue();
603         do_list_queue_size = 1024;
604         do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
605         if (do_list_queue == 0) {
606                 d_printf("malloc fail for size %d\n",
607                          (int)do_list_queue_size);
608                 reset_do_list_queue();
609         } else {
610                 memset(do_list_queue, 0, do_list_queue_size);
611         }
612 }
613
614 static void adjust_do_list_queue(void)
615 {
616         /*
617          * If the starting point of the queue is more than half way through,
618          * move everything toward the beginning.
619          */
620
621         if (do_list_queue == NULL) {
622                 DEBUG(4,("do_list_queue is empty\n"));
623                 do_list_queue_start = do_list_queue_end = 0;
624                 return;
625         }
626
627         if (do_list_queue_start == do_list_queue_end) {
628                 DEBUG(4,("do_list_queue is empty\n"));
629                 do_list_queue_start = do_list_queue_end = 0;
630                 *do_list_queue = '\0';
631         } else if (do_list_queue_start > (do_list_queue_size / 2)) {
632                 DEBUG(4,("sliding do_list_queue backward\n"));
633                 memmove(do_list_queue,
634                         do_list_queue + do_list_queue_start,
635                         do_list_queue_end - do_list_queue_start);
636                 do_list_queue_end -= do_list_queue_start;
637                 do_list_queue_start = 0;
638         }
639 }
640
641 static void add_to_do_list_queue(const char *entry)
642 {
643         long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
644         while (new_end > do_list_queue_size) {
645                 do_list_queue_size *= 2;
646                 DEBUG(4,("enlarging do_list_queue to %d\n",
647                          (int)do_list_queue_size));
648                 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
649                 if (! do_list_queue) {
650                         d_printf("failure enlarging do_list_queue to %d bytes\n",
651                                  (int)do_list_queue_size);
652                         reset_do_list_queue();
653                 } else {
654                         memset(do_list_queue + do_list_queue_size / 2,
655                                0, do_list_queue_size / 2);
656                 }
657         }
658         if (do_list_queue) {
659                 safe_strcpy_base(do_list_queue + do_list_queue_end,
660                                  entry, do_list_queue, do_list_queue_size);
661                 do_list_queue_end = new_end;
662                 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
663                          entry, (int)do_list_queue_start, (int)do_list_queue_end));
664         }
665 }
666
667 static char *do_list_queue_head(void)
668 {
669         return do_list_queue + do_list_queue_start;
670 }
671
672 static void remove_do_list_queue_head(void)
673 {
674         if (do_list_queue_end > do_list_queue_start) {
675                 do_list_queue_start += strlen(do_list_queue_head()) + 1;
676                 adjust_do_list_queue();
677                 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
678                          (int)do_list_queue_start, (int)do_list_queue_end));
679         }
680 }
681
682 static int do_list_queue_empty(void)
683 {
684         return (! (do_list_queue && *do_list_queue));
685 }
686
687 /****************************************************************************
688  A helper for do_list.
689 ****************************************************************************/
690
691 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
692 {
693         TALLOC_CTX *ctx = talloc_tos();
694         char *dir = NULL;
695         char *dir_end = NULL;
696
697         /* Work out the directory. */
698         dir = talloc_strdup(ctx, mask);
699         if (!dir) {
700                 return;
701         }
702         if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
703                 *dir_end = '\0';
704         }
705
706         if (f->mode & aDIR) {
707                 if (do_list_dirs && do_this_one(f)) {
708                         do_list_fn(f, dir);
709                 }
710                 if (do_list_recurse &&
711                     f->name &&
712                     !strequal(f->name,".") &&
713                     !strequal(f->name,"..")) {
714                         char *mask2 = NULL;
715                         char *p = NULL;
716
717                         if (!f->name[0]) {
718                                 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
719                                 TALLOC_FREE(dir);
720                                 return;
721                         }
722
723                         mask2 = talloc_asprintf(ctx,
724                                         "%s%s",
725                                         mntpoint,
726                                         mask);
727                         if (!mask2) {
728                                 TALLOC_FREE(dir);
729                                 return;
730                         }
731                         p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
732                         if (!p) {
733                                 TALLOC_FREE(dir);
734                                 return;
735                         }
736                         p[1] = 0;
737                         mask2 = talloc_asprintf_append(mask2,
738                                         "%s%s*",
739                                         f->name,
740                                         CLI_DIRSEP_STR);
741                         if (!mask2) {
742                                 TALLOC_FREE(dir);
743                                 return;
744                         }
745                         add_to_do_list_queue(mask2);
746                         TALLOC_FREE(mask2);
747                 }
748                 TALLOC_FREE(dir);
749                 return;
750         }
751
752         if (do_this_one(f)) {
753                 do_list_fn(f,dir);
754         }
755         TALLOC_FREE(dir);
756 }
757
758 /****************************************************************************
759  A wrapper around cli_list that adds recursion.
760 ****************************************************************************/
761
762 void do_list(const char *mask,
763                         uint16 attribute,
764                         void (*fn)(file_info *, const char *dir),
765                         bool rec,
766                         bool dirs)
767 {
768         static int in_do_list = 0;
769         TALLOC_CTX *ctx = talloc_tos();
770         struct cli_state *targetcli = NULL;
771         char *targetpath = NULL;
772
773         if (in_do_list && rec) {
774                 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
775                 exit(1);
776         }
777
778         in_do_list = 1;
779
780         do_list_recurse = rec;
781         do_list_dirs = dirs;
782         do_list_fn = fn;
783
784         if (rec) {
785                 init_do_list_queue();
786                 add_to_do_list_queue(mask);
787
788                 while (!do_list_queue_empty()) {
789                         /*
790                          * Need to copy head so that it doesn't become
791                          * invalid inside the call to cli_list.  This
792                          * would happen if the list were expanded
793                          * during the call.
794                          * Fix from E. Jay Berkenbilt (ejb@ql.org)
795                          */
796                         char *head = talloc_strdup(ctx, do_list_queue_head());
797
798                         if (!head) {
799                                 return;
800                         }
801
802                         /* check for dfs */
803
804                         if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
805                                 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
806                                 remove_do_list_queue_head();
807                                 continue;
808                         }
809
810                         cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
811                         remove_do_list_queue_head();
812                         if ((! do_list_queue_empty()) && (fn == display_finfo)) {
813                                 char *next_file = do_list_queue_head();
814                                 char *save_ch = 0;
815                                 if ((strlen(next_file) >= 2) &&
816                                     (next_file[strlen(next_file) - 1] == '*') &&
817                                     (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
818                                         save_ch = next_file +
819                                                 strlen(next_file) - 2;
820                                         *save_ch = '\0';
821                                         if (showacls) {
822                                                 /* cwd is only used if showacls is on */
823                                                 client_set_cwd(next_file);
824                                         }
825                                 }
826                                 if (!showacls) /* don't disturbe the showacls output */
827                                         d_printf("\n%s\n",next_file);
828                                 if (save_ch) {
829                                         *save_ch = CLI_DIRSEP_CHAR;
830                                 }
831                         }
832                         TALLOC_FREE(head);
833                         TALLOC_FREE(targetpath);
834                 }
835         } else {
836                 /* check for dfs */
837                 if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
838                         if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
839                                 d_printf("%s listing %s\n",
840                                         cli_errstr(targetcli), targetpath);
841                         }
842                         TALLOC_FREE(targetpath);
843                 } else {
844                         d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
845                 }
846         }
847
848         in_do_list = 0;
849         reset_do_list_queue();
850 }
851
852 /****************************************************************************
853  Get a directory listing.
854 ****************************************************************************/
855
856 static int cmd_dir(void)
857 {
858         TALLOC_CTX *ctx = talloc_tos();
859         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
860         char *mask = NULL;
861         char *buf = NULL;
862         int rc = 1;
863
864         dir_total = 0;
865         mask = talloc_strdup(ctx, client_get_cur_dir());
866         if (!mask) {
867                 return 1;
868         }
869
870         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
871                 normalize_name(buf);
872                 if (*buf == CLI_DIRSEP_CHAR) {
873                         mask = talloc_strdup(ctx, buf);
874                 } else {
875                         mask = talloc_asprintf_append(mask, buf);
876                 }
877         } else {
878                 mask = talloc_asprintf_append(mask, "*");
879         }
880         if (!mask) {
881                 return 1;
882         }
883
884         if (showacls) {
885                 /* cwd is only used if showacls is on */
886                 client_set_cwd(client_get_cur_dir());
887         }
888
889         do_list(mask, attribute, display_finfo, recurse, true);
890
891         rc = do_dskattr();
892
893         DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
894
895         return rc;
896 }
897
898 /****************************************************************************
899  Get a directory listing.
900 ****************************************************************************/
901
902 static int cmd_du(void)
903 {
904         TALLOC_CTX *ctx = talloc_tos();
905         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
906         char *mask = NULL;
907         char *buf = NULL;
908         int rc = 1;
909
910         dir_total = 0;
911         mask = talloc_strdup(ctx, client_get_cur_dir());
912         if (!mask) {
913                 return 1;
914         }
915         if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
916                 mask = talloc_asprintf_append(mask, CLI_DIRSEP_STR);
917                 if (!mask) {
918                         return 1;
919                 }
920         }
921
922         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
923                 normalize_name(buf);
924                 if (*buf == CLI_DIRSEP_CHAR) {
925                         mask = talloc_strdup(ctx, buf);
926                 } else {
927                         mask = talloc_asprintf_append(mask, buf);
928                 }
929         } else {
930                 mask = talloc_strdup(ctx, "*");
931         }
932
933         do_list(mask, attribute, do_du, recurse, true);
934
935         rc = do_dskattr();
936
937         d_printf("Total number of bytes: %.0f\n", dir_total);
938
939         return rc;
940 }
941
942 static int cmd_echo(void)
943 {
944         TALLOC_CTX *ctx = talloc_tos();
945         char *num;
946         char *data;
947
948         if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
949             || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
950                 d_printf("echo <num> <data>\n");
951                 return 1;
952         }
953
954         if (!cli_echo(cli, atoi(num), (uint8 *)data, strlen(data))) {
955                 d_printf("echo failed: %s\n",
956                          nt_errstr(cli_get_nt_error(cli)));
957                 return 1;
958         }
959
960         return 0;
961 }
962
963 /****************************************************************************
964  Get a file from rname to lname
965 ****************************************************************************/
966
967 static int do_get(const char *rname, const char *lname_in, bool reget)
968 {
969         TALLOC_CTX *ctx = talloc_tos();
970         int handle = 0, fnum;
971         bool newhandle = false;
972         char *data = NULL;
973         struct timeval tp_start;
974         int read_size = io_bufsize;
975         uint16 attr;
976         SMB_OFF_T size;
977         off_t start = 0;
978         off_t nread = 0;
979         int rc = 0;
980         struct cli_state *targetcli = NULL;
981         char *targetname = NULL;
982         char *lname = NULL;
983
984         lname = talloc_strdup(ctx, lname_in);
985         if (!lname) {
986                 return 1;
987         }
988
989         if (lowercase) {
990                 strlower_m(lname);
991         }
992
993         if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
994                 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
995                 return 1;
996         }
997
998         GetTimeOfDay(&tp_start);
999
1000         fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
1001
1002         if (fnum == -1) {
1003                 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1004                 return 1;
1005         }
1006
1007         if(!strcmp(lname,"-")) {
1008                 handle = fileno(stdout);
1009         } else {
1010                 if (reget) {
1011                         handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1012                         if (handle >= 0) {
1013                                 start = sys_lseek(handle, 0, SEEK_END);
1014                                 if (start == -1) {
1015                                         d_printf("Error seeking local file\n");
1016                                         return 1;
1017                                 }
1018                         }
1019                 } else {
1020                         handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1021                 }
1022                 newhandle = true;
1023         }
1024         if (handle < 0) {
1025                 d_printf("Error opening local file %s\n",lname);
1026                 return 1;
1027         }
1028
1029
1030         if (!cli_qfileinfo(targetcli, fnum,
1031                            &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1032             !cli_getattrE(targetcli, fnum,
1033                           &attr, &size, NULL, NULL, NULL)) {
1034                 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1035                 return 1;
1036         }
1037
1038         DEBUG(1,("getting file %s of size %.0f as %s ",
1039                  rname, (double)size, lname));
1040
1041         if(!(data = (char *)SMB_MALLOC(read_size))) {
1042                 d_printf("malloc fail for size %d\n", read_size);
1043                 cli_close(targetcli, fnum);
1044                 return 1;
1045         }
1046
1047         while (1) {
1048                 int n = cli_read(targetcli, fnum, data, nread + start, read_size);
1049
1050                 if (n <= 0)
1051                         break;
1052
1053                 if (writefile(handle,data, n) != n) {
1054                         d_printf("Error writing local file\n");
1055                         rc = 1;
1056                         break;
1057                 }
1058
1059                 nread += n;
1060         }
1061
1062         if (nread + start < size) {
1063                 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
1064                             rname, (long)nread));
1065
1066                 rc = 1;
1067         }
1068
1069         SAFE_FREE(data);
1070
1071         if (!cli_close(targetcli, fnum)) {
1072                 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1073                 rc = 1;
1074         }
1075
1076         if (newhandle) {
1077                 close(handle);
1078         }
1079
1080         if (archive_level >= 2 && (attr & aARCH)) {
1081                 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1082         }
1083
1084         {
1085                 struct timeval tp_end;
1086                 int this_time;
1087
1088                 GetTimeOfDay(&tp_end);
1089                 this_time =
1090                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1091                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1092                 get_total_time_ms += this_time;
1093                 get_total_size += nread;
1094
1095                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1096                          nread / (1.024*this_time + 1.0e-4),
1097                          get_total_size / (1.024*get_total_time_ms)));
1098         }
1099
1100         TALLOC_FREE(targetname);
1101         return rc;
1102 }
1103
1104 /****************************************************************************
1105  Get a file.
1106 ****************************************************************************/
1107
1108 static int cmd_get(void)
1109 {
1110         TALLOC_CTX *ctx = talloc_tos();
1111         char *lname = NULL;
1112         char *rname = NULL;
1113         char *fname = NULL;
1114
1115         rname = talloc_strdup(ctx, client_get_cur_dir());
1116         if (!rname) {
1117                 return 1;
1118         }
1119
1120         if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1121                 d_printf("get <filename> [localname]\n");
1122                 return 1;
1123         }
1124         rname = talloc_asprintf_append(rname, fname);
1125         if (!rname) {
1126                 return 1;
1127         }
1128         rname = clean_name(ctx, rname);
1129         if (!rname) {
1130                 return 1;
1131         }
1132
1133         next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1134         if (!lname) {
1135                 lname = fname;
1136         }
1137
1138         return do_get(rname, lname, false);
1139 }
1140
1141 /****************************************************************************
1142  Do an mget operation on one file.
1143 ****************************************************************************/
1144
1145 static void do_mget(file_info *finfo, const char *dir)
1146 {
1147         TALLOC_CTX *ctx = talloc_tos();
1148         char *rname = NULL;
1149         char *quest = NULL;
1150         char *saved_curdir = NULL;
1151         char *mget_mask = NULL;
1152         char *new_cd = NULL;
1153
1154         if (!finfo->name) {
1155                 return;
1156         }
1157
1158         if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1159                 return;
1160
1161         if (abort_mget) {
1162                 d_printf("mget aborted\n");
1163                 return;
1164         }
1165
1166         if (finfo->mode & aDIR) {
1167                 if (asprintf(&quest,
1168                          "Get directory %s? ",finfo->name) < 0) {
1169                         return;
1170                 }
1171         } else {
1172                 if (asprintf(&quest,
1173                          "Get file %s? ",finfo->name) < 0) {
1174                         return;
1175                 }
1176         }
1177
1178         if (prompt && !yesno(quest)) {
1179                 SAFE_FREE(quest);
1180                 return;
1181         }
1182         SAFE_FREE(quest);
1183
1184         if (!(finfo->mode & aDIR)) {
1185                 rname = talloc_asprintf(ctx,
1186                                 "%s%s",
1187                                 client_get_cur_dir(),
1188                                 finfo->name);
1189                 if (!rname) {
1190                         return;
1191                 }
1192                 do_get(rname, finfo->name, false);
1193                 TALLOC_FREE(rname);
1194                 return;
1195         }
1196
1197         /* handle directories */
1198         saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1199         if (!saved_curdir) {
1200                 return;
1201         }
1202
1203         new_cd = talloc_asprintf(ctx,
1204                                 "%s%s%s",
1205                                 client_get_cur_dir(),
1206                                 finfo->name,
1207                                 CLI_DIRSEP_STR);
1208         if (!new_cd) {
1209                 return;
1210         }
1211         client_set_cur_dir(new_cd);
1212
1213         string_replace(finfo->name,'\\','/');
1214         if (lowercase) {
1215                 strlower_m(finfo->name);
1216         }
1217
1218         if (!directory_exist(finfo->name,NULL) &&
1219             mkdir(finfo->name,0777) != 0) {
1220                 d_printf("failed to create directory %s\n",finfo->name);
1221                 client_set_cur_dir(saved_curdir);
1222                 return;
1223         }
1224
1225         if (chdir(finfo->name) != 0) {
1226                 d_printf("failed to chdir to directory %s\n",finfo->name);
1227                 client_set_cur_dir(saved_curdir);
1228                 return;
1229         }
1230
1231         mget_mask = talloc_asprintf(ctx,
1232                         "%s*",
1233                         client_get_cur_dir());
1234
1235         if (!mget_mask) {
1236                 return;
1237         }
1238
1239         do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1240         chdir("..");
1241         client_set_cur_dir(saved_curdir);
1242         TALLOC_FREE(mget_mask);
1243         TALLOC_FREE(saved_curdir);
1244         TALLOC_FREE(new_cd);
1245 }
1246
1247 /****************************************************************************
1248  View the file using the pager.
1249 ****************************************************************************/
1250
1251 static int cmd_more(void)
1252 {
1253         TALLOC_CTX *ctx = talloc_tos();
1254         char *rname = NULL;
1255         char *fname = NULL;
1256         char *lname = NULL;
1257         char *pager_cmd = NULL;
1258         const char *pager;
1259         int fd;
1260         int rc = 0;
1261
1262         rname = talloc_strdup(ctx, client_get_cur_dir());
1263         if (!rname) {
1264                 return 1;
1265         }
1266
1267         lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1268         if (!lname) {
1269                 return 1;
1270         }
1271         fd = smb_mkstemp(lname);
1272         if (fd == -1) {
1273                 d_printf("failed to create temporary file for more\n");
1274                 return 1;
1275         }
1276         close(fd);
1277
1278         if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1279                 d_printf("more <filename>\n");
1280                 unlink(lname);
1281                 return 1;
1282         }
1283         rname = talloc_asprintf_append(rname, fname);
1284         if (!rname) {
1285                 return 1;
1286         }
1287         rname = clean_name(ctx,rname);
1288         if (!rname) {
1289                 return 1;
1290         }
1291
1292         rc = do_get(rname, lname, false);
1293
1294         pager=getenv("PAGER");
1295
1296         pager_cmd = talloc_asprintf(ctx,
1297                                 "%s %s",
1298                                 (pager? pager:PAGER),
1299                                 lname);
1300         if (!pager_cmd) {
1301                 return 1;
1302         }
1303         system(pager_cmd);
1304         unlink(lname);
1305
1306         return rc;
1307 }
1308
1309 /****************************************************************************
1310  Do a mget command.
1311 ****************************************************************************/
1312
1313 static int cmd_mget(void)
1314 {
1315         TALLOC_CTX *ctx = talloc_tos();
1316         uint16 attribute = aSYSTEM | aHIDDEN;
1317         char *mget_mask = NULL;
1318         char *buf = NULL;
1319
1320         if (recurse) {
1321                 attribute |= aDIR;
1322         }
1323
1324         abort_mget = false;
1325
1326         while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1327                 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1328                 if (!mget_mask) {
1329                         return 1;
1330                 }
1331                 if (*buf == CLI_DIRSEP_CHAR) {
1332                         mget_mask = talloc_strdup(ctx, buf);
1333                 } else {
1334                         mget_mask = talloc_asprintf_append(mget_mask,
1335                                                         buf);
1336                 }
1337                 if (!mget_mask) {
1338                         return 1;
1339                 }
1340                 do_list(mget_mask, attribute, do_mget, false, true);
1341         }
1342
1343         if (!*mget_mask) {
1344                 mget_mask = talloc_asprintf(ctx,
1345                                         "%s*",
1346                                         client_get_cur_dir());
1347                 if (!mget_mask) {
1348                         return 1;
1349                 }
1350                 do_list(mget_mask, attribute, do_mget, false, true);
1351         }
1352
1353         return 0;
1354 }
1355
1356 /****************************************************************************
1357  Make a directory of name "name".
1358 ****************************************************************************/
1359
1360 static bool do_mkdir(const char *name)
1361 {
1362         TALLOC_CTX *ctx = talloc_tos();
1363         struct cli_state *targetcli;
1364         char *targetname = NULL;
1365
1366         if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
1367                 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1368                 return false;
1369         }
1370
1371         if (!cli_mkdir(targetcli, targetname)) {
1372                 d_printf("%s making remote directory %s\n",
1373                          cli_errstr(targetcli),name);
1374                 return false;
1375         }
1376
1377         return true;
1378 }
1379
1380 /****************************************************************************
1381  Show 8.3 name of a file.
1382 ****************************************************************************/
1383
1384 static bool do_altname(const char *name)
1385 {
1386         fstring altname;
1387
1388         if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1389                 d_printf("%s getting alt name for %s\n",
1390                          cli_errstr(cli),name);
1391                 return false;
1392         }
1393         d_printf("%s\n", altname);
1394
1395         return true;
1396 }
1397
1398 /****************************************************************************
1399  Exit client.
1400 ****************************************************************************/
1401
1402 static int cmd_quit(void)
1403 {
1404         cli_cm_shutdown();
1405         exit(0);
1406         /* NOTREACHED */
1407         return 0;
1408 }
1409
1410 /****************************************************************************
1411  Make a directory.
1412 ****************************************************************************/
1413
1414 static int cmd_mkdir(void)
1415 {
1416         TALLOC_CTX *ctx = talloc_tos();
1417         char *mask = NULL;
1418         char *buf = NULL;
1419
1420         mask = talloc_strdup(ctx, client_get_cur_dir());
1421         if (!mask) {
1422                 return 1;
1423         }
1424
1425         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1426                 if (!recurse) {
1427                         d_printf("mkdir <dirname>\n");
1428                 }
1429                 return 1;
1430         }
1431         mask = talloc_asprintf_append(mask, buf);
1432         if (!mask) {
1433                 return 1;
1434         }
1435
1436         if (recurse) {
1437                 char *ddir = NULL;
1438                 char *ddir2 = NULL;
1439                 struct cli_state *targetcli;
1440                 char *targetname = NULL;
1441                 char *p = NULL;
1442                 char *saveptr;
1443
1444                 ddir2 = talloc_strdup(ctx, "");
1445                 if (!ddir2) {
1446                         return 1;
1447                 }
1448
1449                 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1450                         return 1;
1451                 }
1452
1453                 ddir = talloc_strdup(ctx, targetname);
1454                 if (!ddir) {
1455                         return 1;
1456                 }
1457                 trim_char(ddir,'.','\0');
1458                 p = strtok_r(ddir, "/\\", &saveptr);
1459                 while (p) {
1460                         ddir2 = talloc_asprintf_append(ddir2, p);
1461                         if (!ddir2) {
1462                                 return 1;
1463                         }
1464                         if (!cli_chkpath(targetcli, ddir2)) {
1465                                 do_mkdir(ddir2);
1466                         }
1467                         ddir2 = talloc_asprintf_append(ddir2, CLI_DIRSEP_STR);
1468                         if (!ddir2) {
1469                                 return 1;
1470                         }
1471                         p = strtok_r(NULL, "/\\", &saveptr);
1472                 }
1473         } else {
1474                 do_mkdir(mask);
1475         }
1476
1477         return 0;
1478 }
1479
1480 /****************************************************************************
1481  Show alt name.
1482 ****************************************************************************/
1483
1484 static int cmd_altname(void)
1485 {
1486         TALLOC_CTX *ctx = talloc_tos();
1487         char *name;
1488         char *buf;
1489
1490         name = talloc_strdup(ctx, client_get_cur_dir());
1491         if (!name) {
1492                 return 1;
1493         }
1494
1495         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1496                 d_printf("altname <file>\n");
1497                 return 1;
1498         }
1499         name = talloc_asprintf_append(name, buf);
1500         if (!name) {
1501                 return 1;
1502         }
1503         do_altname(name);
1504         return 0;
1505 }
1506
1507 /****************************************************************************
1508  Show all info we can get
1509 ****************************************************************************/
1510
1511 static int do_allinfo(const char *name)
1512 {
1513         fstring altname;
1514         struct timespec b_time, a_time, m_time, c_time;
1515         SMB_OFF_T size;
1516         uint16_t mode;
1517         SMB_INO_T ino;
1518         NTTIME tmp;
1519         unsigned int num_streams;
1520         struct stream_struct *streams;
1521         unsigned int i;
1522
1523         if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1524                 d_printf("%s getting alt name for %s\n",
1525                          cli_errstr(cli),name);
1526                 return false;
1527         }
1528         d_printf("altname: %s\n", altname);
1529
1530         if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1531                             &size, &mode, &ino)) {
1532                 d_printf("%s getting pathinfo for %s\n",
1533                          cli_errstr(cli),name);
1534                 return false;
1535         }
1536
1537         unix_timespec_to_nt_time(&tmp, b_time);
1538         d_printf("create_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1539
1540         unix_timespec_to_nt_time(&tmp, a_time);
1541         d_printf("access_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1542
1543         unix_timespec_to_nt_time(&tmp, m_time);
1544         d_printf("write_time:     %s\n", nt_time_string(talloc_tos(), tmp));
1545
1546         unix_timespec_to_nt_time(&tmp, c_time);
1547         d_printf("change_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1548
1549         if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1550                                    &streams)) {
1551                 d_printf("%s getting streams for %s\n",
1552                          cli_errstr(cli),name);
1553                 return false;
1554         }
1555
1556         for (i=0; i<num_streams; i++) {
1557                 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1558                          (unsigned long long)streams[i].size);
1559         }
1560
1561         return 0;
1562 }
1563
1564 /****************************************************************************
1565  Show all info we can get
1566 ****************************************************************************/
1567
1568 static int cmd_allinfo(void)
1569 {
1570         TALLOC_CTX *ctx = talloc_tos();
1571         char *name;
1572         char *buf;
1573
1574         name = talloc_strdup(ctx, client_get_cur_dir());
1575         if (!name) {
1576                 return 1;
1577         }
1578
1579         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1580                 d_printf("allinfo <file>\n");
1581                 return 1;
1582         }
1583         name = talloc_asprintf_append(name, buf);
1584         if (!name) {
1585                 return 1;
1586         }
1587
1588         do_allinfo(name);
1589
1590         return 0;
1591 }
1592
1593 /****************************************************************************
1594  Put a single file.
1595 ****************************************************************************/
1596
1597 static int do_put(const char *rname, const char *lname, bool reput)
1598 {
1599         TALLOC_CTX *ctx = talloc_tos();
1600         int fnum;
1601         XFILE *f;
1602         SMB_OFF_T start = 0;
1603         off_t nread = 0;
1604         char *buf = NULL;
1605         int maxwrite = io_bufsize;
1606         int rc = 0;
1607         struct timeval tp_start;
1608         struct cli_state *targetcli;
1609         char *targetname = NULL;
1610
1611         if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1612                 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1613                 return 1;
1614         }
1615
1616         GetTimeOfDay(&tp_start);
1617
1618         if (reput) {
1619                 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1620                 if (fnum >= 0) {
1621                         if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1622                             !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1623                                 d_printf("getattrib: %s\n",cli_errstr(cli));
1624                                 return 1;
1625                         }
1626                 }
1627         } else {
1628                 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1629         }
1630
1631         if (fnum == -1) {
1632                 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1633                 return 1;
1634         }
1635
1636         /* allow files to be piped into smbclient
1637            jdblair 24.jun.98
1638
1639            Note that in this case this function will exit(0) rather
1640            than returning. */
1641         if (!strcmp(lname, "-")) {
1642                 f = x_stdin;
1643                 /* size of file is not known */
1644         } else {
1645                 f = x_fopen(lname,O_RDONLY, 0);
1646                 if (f && reput) {
1647                         if (x_tseek(f, start, SEEK_SET) == -1) {
1648                                 d_printf("Error seeking local file\n");
1649                                 return 1;
1650                         }
1651                 }
1652         }
1653
1654         if (!f) {
1655                 d_printf("Error opening local file %s\n",lname);
1656                 return 1;
1657         }
1658
1659         DEBUG(1,("putting file %s as %s ",lname,
1660                  rname));
1661
1662         buf = (char *)SMB_MALLOC(maxwrite);
1663         if (!buf) {
1664                 d_printf("ERROR: Not enough memory!\n");
1665                 return 1;
1666         }
1667         while (!x_feof(f)) {
1668                 int n = maxwrite;
1669                 int ret;
1670
1671                 if ((n = readfile(buf,n,f)) < 1) {
1672                         if((n == 0) && x_feof(f))
1673                                 break; /* Empty local file. */
1674
1675                         d_printf("Error reading local file: %s\n", strerror(errno));
1676                         rc = 1;
1677                         break;
1678                 }
1679
1680                 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1681
1682                 if (n != ret) {
1683                         d_printf("Error writing file: %s\n", cli_errstr(cli));
1684                         rc = 1;
1685                         break;
1686                 }
1687
1688                 nread += n;
1689         }
1690
1691         if (!cli_close(targetcli, fnum)) {
1692                 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1693                 x_fclose(f);
1694                 SAFE_FREE(buf);
1695                 return 1;
1696         }
1697
1698         if (f != x_stdin) {
1699                 x_fclose(f);
1700         }
1701
1702         SAFE_FREE(buf);
1703
1704         {
1705                 struct timeval tp_end;
1706                 int this_time;
1707
1708                 GetTimeOfDay(&tp_end);
1709                 this_time =
1710                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1711                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1712                 put_total_time_ms += this_time;
1713                 put_total_size += nread;
1714
1715                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1716                          nread / (1.024*this_time + 1.0e-4),
1717                          put_total_size / (1.024*put_total_time_ms)));
1718         }
1719
1720         if (f == x_stdin) {
1721                 cli_cm_shutdown();
1722                 exit(0);
1723         }
1724
1725         return rc;
1726 }
1727
1728 /****************************************************************************
1729  Put a file.
1730 ****************************************************************************/
1731
1732 static int cmd_put(void)
1733 {
1734         TALLOC_CTX *ctx = talloc_tos();
1735         char *lname;
1736         char *rname;
1737         char *buf;
1738
1739         rname = talloc_strdup(ctx, client_get_cur_dir());
1740         if (!rname) {
1741                 return 1;
1742         }
1743
1744         if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1745                 d_printf("put <filename>\n");
1746                 return 1;
1747         }
1748
1749         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1750                 rname = talloc_asprintf_append(rname, buf);
1751         } else {
1752                 rname = talloc_asprintf_append(rname, lname);
1753         }
1754         if (!rname) {
1755                 return 1;
1756         }
1757
1758         rname = clean_name(ctx, rname);
1759         if (!rname) {
1760                 return 1;
1761         }
1762
1763         {
1764                 SMB_STRUCT_STAT st;
1765                 /* allow '-' to represent stdin
1766                    jdblair, 24.jun.98 */
1767                 if (!file_exist(lname,&st) &&
1768                     (strcmp(lname,"-"))) {
1769                         d_printf("%s does not exist\n",lname);
1770                         return 1;
1771                 }
1772         }
1773
1774         return do_put(rname, lname, false);
1775 }
1776
1777 /*************************************
1778  File list structure.
1779 *************************************/
1780
1781 static struct file_list {
1782         struct file_list *prev, *next;
1783         char *file_path;
1784         bool isdir;
1785 } *file_list;
1786
1787 /****************************************************************************
1788  Free a file_list structure.
1789 ****************************************************************************/
1790
1791 static void free_file_list (struct file_list *list_head)
1792 {
1793         struct file_list *list, *next;
1794
1795         for (list = list_head; list; list = next) {
1796                 next = list->next;
1797                 DLIST_REMOVE(list_head, list);
1798                 SAFE_FREE(list->file_path);
1799                 SAFE_FREE(list);
1800         }
1801 }
1802
1803 /****************************************************************************
1804  Seek in a directory/file list until you get something that doesn't start with
1805  the specified name.
1806 ****************************************************************************/
1807
1808 static bool seek_list(struct file_list *list, char *name)
1809 {
1810         while (list) {
1811                 trim_string(list->file_path,"./","\n");
1812                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1813                         return true;
1814                 }
1815                 list = list->next;
1816         }
1817
1818         return false;
1819 }
1820
1821 /****************************************************************************
1822  Set the file selection mask.
1823 ****************************************************************************/
1824
1825 static int cmd_select(void)
1826 {
1827         TALLOC_CTX *ctx = talloc_tos();
1828         char *new_fs = NULL;
1829         next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1830                 ;
1831         if (new_fs) {
1832                 client_set_fileselection(new_fs);
1833         } else {
1834                 client_set_fileselection("");
1835         }
1836         return 0;
1837 }
1838
1839 /****************************************************************************
1840   Recursive file matching function act as find
1841   match must be always set to true when calling this function
1842 ****************************************************************************/
1843
1844 static int file_find(struct file_list **list, const char *directory,
1845                       const char *expression, bool match)
1846 {
1847         SMB_STRUCT_DIR *dir;
1848         struct file_list *entry;
1849         struct stat statbuf;
1850         int ret;
1851         char *path;
1852         bool isdir;
1853         const char *dname;
1854
1855         dir = sys_opendir(directory);
1856         if (!dir)
1857                 return -1;
1858
1859         while ((dname = readdirname(dir))) {
1860                 if (!strcmp("..", dname))
1861                         continue;
1862                 if (!strcmp(".", dname))
1863                         continue;
1864
1865                 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1866                         continue;
1867                 }
1868
1869                 isdir = false;
1870                 if (!match || !gen_fnmatch(expression, dname)) {
1871                         if (recurse) {
1872                                 ret = stat(path, &statbuf);
1873                                 if (ret == 0) {
1874                                         if (S_ISDIR(statbuf.st_mode)) {
1875                                                 isdir = true;
1876                                                 ret = file_find(list, path, expression, false);
1877                                         }
1878                                 } else {
1879                                         d_printf("file_find: cannot stat file %s\n", path);
1880                                 }
1881
1882                                 if (ret == -1) {
1883                                         SAFE_FREE(path);
1884                                         sys_closedir(dir);
1885                                         return -1;
1886                                 }
1887                         }
1888                         entry = SMB_MALLOC_P(struct file_list);
1889                         if (!entry) {
1890                                 d_printf("Out of memory in file_find\n");
1891                                 sys_closedir(dir);
1892                                 return -1;
1893                         }
1894                         entry->file_path = path;
1895                         entry->isdir = isdir;
1896                         DLIST_ADD(*list, entry);
1897                 } else {
1898                         SAFE_FREE(path);
1899                 }
1900         }
1901
1902         sys_closedir(dir);
1903         return 0;
1904 }
1905
1906 /****************************************************************************
1907  mput some files.
1908 ****************************************************************************/
1909
1910 static int cmd_mput(void)
1911 {
1912         TALLOC_CTX *ctx = talloc_tos();
1913         char *p = NULL;
1914
1915         while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1916                 int ret;
1917                 struct file_list *temp_list;
1918                 char *quest, *lname, *rname;
1919
1920                 file_list = NULL;
1921
1922                 ret = file_find(&file_list, ".", p, true);
1923                 if (ret) {
1924                         free_file_list(file_list);
1925                         continue;
1926                 }
1927
1928                 quest = NULL;
1929                 lname = NULL;
1930                 rname = NULL;
1931
1932                 for (temp_list = file_list; temp_list;
1933                      temp_list = temp_list->next) {
1934
1935                         SAFE_FREE(lname);
1936                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1937                                 continue;
1938                         }
1939                         trim_string(lname, "./", "/");
1940
1941                         /* check if it's a directory */
1942                         if (temp_list->isdir) {
1943                                 /* if (!recurse) continue; */
1944
1945                                 SAFE_FREE(quest);
1946                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1947                                         break;
1948                                 }
1949                                 if (prompt && !yesno(quest)) { /* No */
1950                                         /* Skip the directory */
1951                                         lname[strlen(lname)-1] = '/';
1952                                         if (!seek_list(temp_list, lname))
1953                                                 break;
1954                                 } else { /* Yes */
1955                                         SAFE_FREE(rname);
1956                                         if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1957                                                 break;
1958                                         }
1959                                         normalize_name(rname);
1960                                         if (!cli_chkpath(cli, rname) &&
1961                                             !do_mkdir(rname)) {
1962                                                 DEBUG (0, ("Unable to make dir, skipping..."));
1963                                                 /* Skip the directory */
1964                                                 lname[strlen(lname)-1] = '/';
1965                                                 if (!seek_list(temp_list, lname)) {
1966                                                         break;
1967                                                 }
1968                                         }
1969                                 }
1970                                 continue;
1971                         } else {
1972                                 SAFE_FREE(quest);
1973                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1974                                         break;
1975                                 }
1976                                 if (prompt && !yesno(quest)) {
1977                                         /* No */
1978                                         continue;
1979                                 }
1980
1981                                 /* Yes */
1982                                 SAFE_FREE(rname);
1983                                 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1984                                         break;
1985                                 }
1986                         }
1987
1988                         normalize_name(rname);
1989
1990                         do_put(rname, lname, false);
1991                 }
1992                 free_file_list(file_list);
1993                 SAFE_FREE(quest);
1994                 SAFE_FREE(lname);
1995                 SAFE_FREE(rname);
1996         }
1997
1998         return 0;
1999 }
2000
2001 /****************************************************************************
2002  Cancel a print job.
2003 ****************************************************************************/
2004
2005 static int do_cancel(int job)
2006 {
2007         if (cli_printjob_del(cli, job)) {
2008                 d_printf("Job %d cancelled\n",job);
2009                 return 0;
2010         } else {
2011                 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2012                 return 1;
2013         }
2014 }
2015
2016 /****************************************************************************
2017  Cancel a print job.
2018 ****************************************************************************/
2019
2020 static int cmd_cancel(void)
2021 {
2022         TALLOC_CTX *ctx = talloc_tos();
2023         char *buf = NULL;
2024         int job;
2025
2026         if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2027                 d_printf("cancel <jobid> ...\n");
2028                 return 1;
2029         }
2030         do {
2031                 job = atoi(buf);
2032                 do_cancel(job);
2033         } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2034
2035         return 0;
2036 }
2037
2038 /****************************************************************************
2039  Print a file.
2040 ****************************************************************************/
2041
2042 static int cmd_print(void)
2043 {
2044         TALLOC_CTX *ctx = talloc_tos();
2045         char *lname = NULL;
2046         char *rname = NULL;
2047         char *p = NULL;
2048
2049         if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2050                 d_printf("print <filename>\n");
2051                 return 1;
2052         }
2053
2054         rname = talloc_strdup(ctx, lname);
2055         if (!rname) {
2056                 return 1;
2057         }
2058         p = strrchr_m(rname,'/');
2059         if (p) {
2060                 rname = talloc_asprintf(ctx,
2061                                         "%s-%d",
2062                                         p+1,
2063                                         (int)sys_getpid());
2064         }
2065         if (strequal(lname,"-")) {
2066                 rname = talloc_asprintf(ctx,
2067                                 "stdin-%d",
2068                                 (int)sys_getpid());
2069         }
2070         if (!rname) {
2071                 return 1;
2072         }
2073
2074         return do_put(rname, lname, false);
2075 }
2076
2077 /****************************************************************************
2078  Show a print queue entry.
2079 ****************************************************************************/
2080
2081 static void queue_fn(struct print_job_info *p)
2082 {
2083         d_printf("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name);
2084 }
2085
2086 /****************************************************************************
2087  Show a print queue.
2088 ****************************************************************************/
2089
2090 static int cmd_queue(void)
2091 {
2092         cli_print_queue(cli, queue_fn);
2093         return 0;
2094 }
2095
2096 /****************************************************************************
2097  Delete some files.
2098 ****************************************************************************/
2099
2100 static void do_del(file_info *finfo, const char *dir)
2101 {
2102         TALLOC_CTX *ctx = talloc_tos();
2103         char *mask = NULL;
2104
2105         mask = talloc_asprintf(ctx,
2106                                 "%s%c%s",
2107                                 dir,
2108                                 CLI_DIRSEP_CHAR,
2109                                 finfo->name);
2110         if (!mask) {
2111                 return;
2112         }
2113
2114         if (finfo->mode & aDIR) {
2115                 TALLOC_FREE(mask);
2116                 return;
2117         }
2118
2119         if (!cli_unlink(finfo->cli, mask)) {
2120                 d_printf("%s deleting remote file %s\n",
2121                                 cli_errstr(finfo->cli),mask);
2122         }
2123         TALLOC_FREE(mask);
2124 }
2125
2126 /****************************************************************************
2127  Delete some files.
2128 ****************************************************************************/
2129
2130 static int cmd_del(void)
2131 {
2132         TALLOC_CTX *ctx = talloc_tos();
2133         char *mask = NULL;
2134         char *buf = NULL;
2135         uint16 attribute = aSYSTEM | aHIDDEN;
2136
2137         if (recurse) {
2138                 attribute |= aDIR;
2139         }
2140
2141         mask = talloc_strdup(ctx, client_get_cur_dir());
2142         if (!mask) {
2143                 return 1;
2144         }
2145         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2146                 d_printf("del <filename>\n");
2147                 return 1;
2148         }
2149         mask = talloc_asprintf_append(mask, buf);
2150         if (!mask) {
2151                 return 1;
2152         }
2153
2154         do_list(mask,attribute,do_del,false,false);
2155         return 0;
2156 }
2157
2158 /****************************************************************************
2159  Wildcard delete some files.
2160 ****************************************************************************/
2161
2162 static int cmd_wdel(void)
2163 {
2164         TALLOC_CTX *ctx = talloc_tos();
2165         char *mask = NULL;
2166         char *buf = NULL;
2167         uint16 attribute;
2168         struct cli_state *targetcli;
2169         char *targetname = NULL;
2170
2171         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2172                 d_printf("wdel 0x<attrib> <wcard>\n");
2173                 return 1;
2174         }
2175
2176         attribute = (uint16)strtol(buf, (char **)NULL, 16);
2177
2178         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2179                 d_printf("wdel 0x<attrib> <wcard>\n");
2180                 return 1;
2181         }
2182
2183         mask = talloc_asprintf(ctx, "%s%s",
2184                         client_get_cur_dir(),
2185                         buf);
2186         if (!mask) {
2187                 return 1;
2188         }
2189
2190         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2191                 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2192                 return 1;
2193         }
2194
2195         if (!cli_unlink_full(targetcli, targetname, attribute)) {
2196                 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2197         }
2198         return 0;
2199 }
2200
2201 /****************************************************************************
2202 ****************************************************************************/
2203
2204 static int cmd_open(void)
2205 {
2206         TALLOC_CTX *ctx = talloc_tos();
2207         char *mask = NULL;
2208         char *buf = NULL;
2209         char *targetname = NULL;
2210         struct cli_state *targetcli;
2211         int fnum;
2212
2213         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2214                 d_printf("open <filename>\n");
2215                 return 1;
2216         }
2217         mask = talloc_asprintf(ctx,
2218                         "%s%s",
2219                         client_get_cur_dir(),
2220                         buf);
2221         if (!mask) {
2222                 return 1;
2223         }
2224
2225         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2226                 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2227                 return 1;
2228         }
2229
2230         fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2231         if (fnum == -1) {
2232                 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2233                 if (fnum != -1) {
2234                         d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2235                 } else {
2236                         d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2237                 }
2238         } else {
2239                 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2240         }
2241         return 0;
2242 }
2243
2244 static int cmd_posix_encrypt(void)
2245 {
2246         TALLOC_CTX *ctx = talloc_tos();
2247         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2248
2249         if (cli->use_kerberos) {
2250                 status = cli_gss_smb_encryption_start(cli);
2251         } else {
2252                 char *domain = NULL;
2253                 char *user = NULL;
2254                 char *password = NULL;
2255
2256                 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2257                         d_printf("posix_encrypt domain user password\n");
2258                         return 1;
2259                 }
2260
2261                 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2262                         d_printf("posix_encrypt domain user password\n");
2263                         return 1;
2264                 }
2265
2266                 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2267                         d_printf("posix_encrypt domain user password\n");
2268                         return 1;
2269                 }
2270
2271                 status = cli_raw_ntlm_smb_encryption_start(cli,
2272                                                         user,
2273                                                         password,
2274                                                         domain);
2275         }
2276
2277         if (!NT_STATUS_IS_OK(status)) {
2278                 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2279         } else {
2280                 d_printf("encryption on\n");
2281                 smb_encrypt = true;
2282         }
2283
2284         return 0;
2285 }
2286
2287 /****************************************************************************
2288 ****************************************************************************/
2289
2290 static int cmd_posix_open(void)
2291 {
2292         TALLOC_CTX *ctx = talloc_tos();
2293         char *mask = NULL;
2294         char *buf = NULL;
2295         char *targetname = NULL;
2296         struct cli_state *targetcli;
2297         mode_t mode;
2298         int fnum;
2299
2300         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2301                 d_printf("posix_open <filename> 0<mode>\n");
2302                 return 1;
2303         }
2304         mask = talloc_asprintf(ctx,
2305                         "%s%s",
2306                         client_get_cur_dir(),
2307                         buf);
2308         if (!mask) {
2309                 return 1;
2310         }
2311
2312         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2313                 d_printf("posix_open <filename> 0<mode>\n");
2314                 return 1;
2315         }
2316         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2317
2318         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2319                 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2320                 return 1;
2321         }
2322
2323         fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2324         if (fnum == -1) {
2325                 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2326                 if (fnum != -1) {
2327                         d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2328                 } else {
2329                         d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2330                 }
2331         } else {
2332                 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2333         }
2334
2335         return 0;
2336 }
2337
2338 static int cmd_posix_mkdir(void)
2339 {
2340         TALLOC_CTX *ctx = talloc_tos();
2341         char *mask = NULL;
2342         char *buf = NULL;
2343         char *targetname = NULL;
2344         struct cli_state *targetcli;
2345         mode_t mode;
2346         int fnum;
2347
2348         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2349                 d_printf("posix_mkdir <filename> 0<mode>\n");
2350                 return 1;
2351         }
2352         mask = talloc_asprintf(ctx,
2353                         "%s%s",
2354                         client_get_cur_dir(),
2355                         buf);
2356         if (!mask) {
2357                 return 1;
2358         }
2359
2360         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2361                 d_printf("posix_mkdir <filename> 0<mode>\n");
2362                 return 1;
2363         }
2364         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2365
2366         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2367                 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2368                 return 1;
2369         }
2370
2371         fnum = cli_posix_mkdir(targetcli, targetname, mode);
2372         if (fnum == -1) {
2373                 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2374         } else {
2375                 d_printf("posix_mkdir created directory %s\n", targetname);
2376         }
2377         return 0;
2378 }
2379
2380 static int cmd_posix_unlink(void)
2381 {
2382         TALLOC_CTX *ctx = talloc_tos();
2383         char *mask = NULL;
2384         char *buf = NULL;
2385         char *targetname = NULL;
2386         struct cli_state *targetcli;
2387
2388         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2389                 d_printf("posix_unlink <filename>\n");
2390                 return 1;
2391         }
2392         mask = talloc_asprintf(ctx,
2393                         "%s%s",
2394                         client_get_cur_dir(),
2395                         buf);
2396         if (!mask) {
2397                 return 1;
2398         }
2399
2400         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2401                 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2402                 return 1;
2403         }
2404
2405         if (!cli_posix_unlink(targetcli, targetname)) {
2406                 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2407         } else {
2408                 d_printf("posix_unlink deleted file %s\n", targetname);
2409         }
2410
2411         return 0;
2412 }
2413
2414 static int cmd_posix_rmdir(void)
2415 {
2416         TALLOC_CTX *ctx = talloc_tos();
2417         char *mask = NULL;
2418         char *buf = NULL;
2419         char *targetname = NULL;
2420         struct cli_state *targetcli;
2421
2422         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2423                 d_printf("posix_rmdir <filename>\n");
2424                 return 1;
2425         }
2426         mask = talloc_asprintf(ctx,
2427                         "%s%s",
2428                         client_get_cur_dir(),
2429                         buf);
2430         if (!mask) {
2431                 return 1;
2432         }
2433
2434         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2435                 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2436                 return 1;
2437         }
2438
2439         if (!cli_posix_rmdir(targetcli, targetname)) {
2440                 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2441         } else {
2442                 d_printf("posix_rmdir deleted directory %s\n", targetname);
2443         }
2444
2445         return 0;
2446 }
2447
2448 static int cmd_close(void)
2449 {
2450         TALLOC_CTX *ctx = talloc_tos();
2451         char *buf = NULL;
2452         int fnum;
2453
2454         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2455                 d_printf("close <fnum>\n");
2456                 return 1;
2457         }
2458
2459         fnum = atoi(buf);
2460         /* We really should use the targetcli here.... */
2461         if (!cli_close(cli, fnum)) {
2462                 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2463                 return 1;
2464         }
2465         return 0;
2466 }
2467
2468 static int cmd_posix(void)
2469 {
2470         TALLOC_CTX *ctx = talloc_tos();
2471         uint16 major, minor;
2472         uint32 caplow, caphigh;
2473         char *caps;
2474
2475         if (!SERVER_HAS_UNIX_CIFS(cli)) {
2476                 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2477                 return 1;
2478         }
2479
2480         if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2481                 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2482                 return 1;
2483         }
2484
2485         d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2486
2487         caps = talloc_strdup(ctx, "");
2488         if (!caps) {
2489                 return 1;
2490         }
2491         if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2492                 caps = talloc_asprintf_append(caps, "locks ");
2493                 if (!caps) {
2494                         return 1;
2495                 }
2496         }
2497         if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2498                 caps = talloc_asprintf_append(caps, "acls ");
2499                 if (!caps) {
2500                         return 1;
2501                 }
2502         }
2503         if (caplow & CIFS_UNIX_XATTTR_CAP) {
2504                 caps = talloc_asprintf_append(caps, "eas ");
2505                 if (!caps) {
2506                         return 1;
2507                 }
2508         }
2509         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2510                 caps = talloc_asprintf_append(caps, "pathnames ");
2511                 if (!caps) {
2512                         return 1;
2513                 }
2514         }
2515         if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2516                 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2517                 if (!caps) {
2518                         return 1;
2519                 }
2520         }
2521         if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2522                 caps = talloc_asprintf_append(caps, "large_read ");
2523                 if (!caps) {
2524                         return 1;
2525                 }
2526         }
2527         if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2528                 caps = talloc_asprintf_append(caps, "large_write ");
2529                 if (!caps) {
2530                         return 1;
2531                 }
2532         }
2533         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2534                 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2535                 if (!caps) {
2536                         return 1;
2537                 }
2538         }
2539         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2540                 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2541                 if (!caps) {
2542                         return 1;
2543                 }
2544         }
2545
2546         if (*caps && caps[strlen(caps)-1] == ' ') {
2547                 caps[strlen(caps)-1] = '\0';
2548         }
2549
2550         d_printf("Server supports CIFS capabilities %s\n", caps);
2551
2552         if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2553                 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2554                 return 1;
2555         }
2556
2557         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2558                 CLI_DIRSEP_CHAR = '/';
2559                 *CLI_DIRSEP_STR = '/';
2560                 client_set_cur_dir(CLI_DIRSEP_STR);
2561         }
2562
2563         return 0;
2564 }
2565
2566 static int cmd_lock(void)
2567 {
2568         TALLOC_CTX *ctx = talloc_tos();
2569         char *buf = NULL;
2570         SMB_BIG_UINT start, len;
2571         enum brl_type lock_type;
2572         int fnum;
2573
2574         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2575                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2576                 return 1;
2577         }
2578         fnum = atoi(buf);
2579
2580         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2581                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2582                 return 1;
2583         }
2584
2585         if (*buf == 'r' || *buf == 'R') {
2586                 lock_type = READ_LOCK;
2587         } else if (*buf == 'w' || *buf == 'W') {
2588                 lock_type = WRITE_LOCK;
2589         } else {
2590                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2591                 return 1;
2592         }
2593
2594         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2595                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2596                 return 1;
2597         }
2598
2599         start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2600
2601         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2602                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2603                 return 1;
2604         }
2605
2606         len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2607
2608         if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2609                 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2610         }
2611
2612         return 0;
2613 }
2614
2615 static int cmd_unlock(void)
2616 {
2617         TALLOC_CTX *ctx = talloc_tos();
2618         char *buf = NULL;
2619         SMB_BIG_UINT start, len;
2620         int fnum;
2621
2622         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2623                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2624                 return 1;
2625         }
2626         fnum = atoi(buf);
2627
2628         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2629                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2630                 return 1;
2631         }
2632
2633         start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2634
2635         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2636                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2637                 return 1;
2638         }
2639
2640         len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2641
2642         if (!cli_posix_unlock(cli, fnum, start, len)) {
2643                 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2644         }
2645
2646         return 0;
2647 }
2648
2649
2650 /****************************************************************************
2651  Remove a directory.
2652 ****************************************************************************/
2653
2654 static int cmd_rmdir(void)
2655 {
2656         TALLOC_CTX *ctx = talloc_tos();
2657         char *mask = NULL;
2658         char *buf = NULL;
2659         char *targetname = NULL;
2660         struct cli_state *targetcli;
2661
2662         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2663                 d_printf("rmdir <dirname>\n");
2664                 return 1;
2665         }
2666         mask = talloc_asprintf(ctx,
2667                         "%s%s",
2668                         client_get_cur_dir(),
2669                         buf);
2670         if (!mask) {
2671                 return 1;
2672         }
2673
2674         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2675                 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2676                 return 1;
2677         }
2678
2679         if (!cli_rmdir(targetcli, targetname)) {
2680                 d_printf("%s removing remote directory file %s\n",
2681                          cli_errstr(targetcli),mask);
2682         }
2683
2684         return 0;
2685 }
2686
2687 /****************************************************************************
2688  UNIX hardlink.
2689 ****************************************************************************/
2690
2691 static int cmd_link(void)
2692 {
2693         TALLOC_CTX *ctx = talloc_tos();
2694         char *oldname = NULL;
2695         char *newname = NULL;
2696         char *buf = NULL;
2697         char *buf2 = NULL;
2698         char *targetname = NULL;
2699         struct cli_state *targetcli;
2700
2701         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2702             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2703                 d_printf("link <oldname> <newname>\n");
2704                 return 1;
2705         }
2706         oldname = talloc_asprintf(ctx,
2707                         "%s%s",
2708                         client_get_cur_dir(),
2709                         buf);
2710         if (!oldname) {
2711                 return 1;
2712         }
2713         newname = talloc_asprintf(ctx,
2714                         "%s%s",
2715                         client_get_cur_dir(),
2716                         buf2);
2717         if (!newname) {
2718                 return 1;
2719         }
2720
2721         if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2722                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2723                 return 1;
2724         }
2725
2726         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2727                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2728                 return 1;
2729         }
2730
2731         if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2732                 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2733                 return 1;
2734         }
2735         return 0;
2736 }
2737
2738 /****************************************************************************
2739  UNIX symlink.
2740 ****************************************************************************/
2741
2742 static int cmd_symlink(void)
2743 {
2744         TALLOC_CTX *ctx = talloc_tos();
2745         char *oldname = NULL;
2746         char *newname = NULL;
2747         char *buf = NULL;
2748         char *buf2 = NULL;
2749         char *targetname = NULL;
2750         struct cli_state *targetcli;
2751
2752         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2753             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2754                 d_printf("symlink <oldname> <newname>\n");
2755                 return 1;
2756         }
2757         oldname = talloc_asprintf(ctx,
2758                         "%s%s",
2759                         client_get_cur_dir(),
2760                         buf);
2761         if (!oldname) {
2762                 return 1;
2763         }
2764         newname = talloc_asprintf(ctx,
2765                         "%s%s",
2766                         client_get_cur_dir(),
2767                         buf2);
2768         if (!newname) {
2769                 return 1;
2770         }
2771
2772         if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2773                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2774                 return 1;
2775         }
2776
2777         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2778                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2779                 return 1;
2780         }
2781
2782         if (!cli_unix_symlink(targetcli, targetname, newname)) {
2783                 d_printf("%s symlinking files (%s -> %s)\n",
2784                         cli_errstr(targetcli), newname, targetname);
2785                 return 1;
2786         }
2787
2788         return 0;
2789 }
2790
2791 /****************************************************************************
2792  UNIX chmod.
2793 ****************************************************************************/
2794
2795 static int cmd_chmod(void)
2796 {
2797         TALLOC_CTX *ctx = talloc_tos();
2798         char *src = NULL;
2799         char *buf = NULL;
2800         char *buf2 = NULL;
2801         char *targetname = NULL;
2802         struct cli_state *targetcli;
2803         mode_t mode;
2804
2805         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2806             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2807                 d_printf("chmod mode file\n");
2808                 return 1;
2809         }
2810         src = talloc_asprintf(ctx,
2811                         "%s%s",
2812                         client_get_cur_dir(),
2813                         buf2);
2814         if (!src) {
2815                 return 1;
2816         }
2817
2818         mode = (mode_t)strtol(buf, NULL, 8);
2819
2820         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2821                 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2822                 return 1;
2823         }
2824
2825         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2826                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2827                 return 1;
2828         }
2829
2830         if (!cli_unix_chmod(targetcli, targetname, mode)) {
2831                 d_printf("%s chmod file %s 0%o\n",
2832                         cli_errstr(targetcli), src, (unsigned int)mode);
2833                 return 1;
2834         }
2835
2836         return 0;
2837 }
2838
2839 static const char *filetype_to_str(mode_t mode)
2840 {
2841         if (S_ISREG(mode)) {
2842                 return "regular file";
2843         } else if (S_ISDIR(mode)) {
2844                 return "directory";
2845         } else
2846 #ifdef S_ISCHR
2847         if (S_ISCHR(mode)) {
2848                 return "character device";
2849         } else
2850 #endif
2851 #ifdef S_ISBLK
2852         if (S_ISBLK(mode)) {
2853                 return "block device";
2854         } else
2855 #endif
2856 #ifdef S_ISFIFO
2857         if (S_ISFIFO(mode)) {
2858                 return "fifo";
2859         } else
2860 #endif
2861 #ifdef S_ISLNK
2862         if (S_ISLNK(mode)) {
2863                 return "symbolic link";
2864         } else
2865 #endif
2866 #ifdef S_ISSOCK
2867         if (S_ISSOCK(mode)) {
2868                 return "socket";
2869         } else
2870 #endif
2871         return "";
2872 }
2873
2874 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2875 {
2876         if (m & bt) {
2877                 return ret;
2878         } else {
2879                 return '-';
2880         }
2881 }
2882
2883 static char *unix_mode_to_str(char *s, mode_t m)
2884 {
2885         char *p = s;
2886         const char *str = filetype_to_str(m);
2887
2888         switch(str[0]) {
2889                 case 'd':
2890                         *p++ = 'd';
2891                         break;
2892                 case 'c':
2893                         *p++ = 'c';
2894                         break;
2895                 case 'b':
2896                         *p++ = 'b';
2897                         break;
2898                 case 'f':
2899                         *p++ = 'p';
2900                         break;
2901                 case 's':
2902                         *p++ = str[1] == 'y' ? 'l' : 's';
2903                         break;
2904                 case 'r':
2905                 default:
2906                         *p++ = '-';
2907                         break;
2908         }
2909         *p++ = rwx_to_str(m, S_IRUSR, 'r');
2910         *p++ = rwx_to_str(m, S_IWUSR, 'w');
2911         *p++ = rwx_to_str(m, S_IXUSR, 'x');
2912         *p++ = rwx_to_str(m, S_IRGRP, 'r');
2913         *p++ = rwx_to_str(m, S_IWGRP, 'w');
2914         *p++ = rwx_to_str(m, S_IXGRP, 'x');
2915         *p++ = rwx_to_str(m, S_IROTH, 'r');
2916         *p++ = rwx_to_str(m, S_IWOTH, 'w');
2917         *p++ = rwx_to_str(m, S_IXOTH, 'x');
2918         *p++ = '\0';
2919         return s;
2920 }
2921
2922 /****************************************************************************
2923  Utility function for UNIX getfacl.
2924 ****************************************************************************/
2925
2926 static char *perms_to_string(fstring permstr, unsigned char perms)
2927 {
2928         fstrcpy(permstr, "---");
2929         if (perms & SMB_POSIX_ACL_READ) {
2930                 permstr[0] = 'r';
2931         }
2932         if (perms & SMB_POSIX_ACL_WRITE) {
2933                 permstr[1] = 'w';
2934         }
2935         if (perms & SMB_POSIX_ACL_EXECUTE) {
2936                 permstr[2] = 'x';
2937         }
2938         return permstr;
2939 }
2940
2941 /****************************************************************************
2942  UNIX getfacl.
2943 ****************************************************************************/
2944
2945 static int cmd_getfacl(void)
2946 {
2947         TALLOC_CTX *ctx = talloc_tos();
2948         char *src = NULL;
2949         char *name = NULL;
2950         char *targetname = NULL;
2951         struct cli_state *targetcli;
2952         uint16 major, minor;
2953         uint32 caplow, caphigh;
2954         char *retbuf = NULL;
2955         size_t rb_size = 0;
2956         SMB_STRUCT_STAT sbuf;
2957         uint16 num_file_acls = 0;
2958         uint16 num_dir_acls = 0;
2959         uint16 i;
2960
2961         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2962                 d_printf("getfacl filename\n");
2963                 return 1;
2964         }
2965         src = talloc_asprintf(ctx,
2966                         "%s%s",
2967                         client_get_cur_dir(),
2968                         name);
2969         if (!src) {
2970                 return 1;
2971         }
2972
2973         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2974                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2975                 return 1;
2976         }
2977
2978         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2979                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2980                 return 1;
2981         }
2982
2983         if (!cli_unix_extensions_version(targetcli, &major, &minor,
2984                                 &caplow, &caphigh)) {
2985                 d_printf("Can't get UNIX CIFS version from server.\n");
2986                 return 1;
2987         }
2988
2989         if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
2990                 d_printf("This server supports UNIX extensions "
2991                         "but doesn't support POSIX ACLs.\n");
2992                 return 1;
2993         }
2994
2995         if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2996                 d_printf("%s getfacl doing a stat on file %s\n",
2997                         cli_errstr(targetcli), src);
2998                 return 1;
2999         }
3000
3001         if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
3002                 d_printf("%s getfacl file %s\n",
3003                         cli_errstr(targetcli), src);
3004                 return 1;
3005         }
3006
3007         /* ToDo : Print out the ACL values. */
3008         if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3009                 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3010                         src, (unsigned int)CVAL(retbuf,0) );
3011                 SAFE_FREE(retbuf);
3012                 return 1;
3013         }
3014
3015         num_file_acls = SVAL(retbuf,2);
3016         num_dir_acls = SVAL(retbuf,4);
3017         if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3018                 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3019                         src,
3020                         (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3021                         (unsigned int)rb_size);
3022
3023                 SAFE_FREE(retbuf);
3024                 return 1;
3025         }
3026
3027         d_printf("# file: %s\n", src);
3028         d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3029
3030         if (num_file_acls == 0 && num_dir_acls == 0) {
3031                 d_printf("No acls found.\n");
3032         }
3033
3034         for (i = 0; i < num_file_acls; i++) {
3035                 uint32 uorg;
3036                 fstring permstring;
3037                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3038                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3039
3040                 switch(tagtype) {
3041                         case SMB_POSIX_ACL_USER_OBJ:
3042                                 d_printf("user::");
3043                                 break;
3044                         case SMB_POSIX_ACL_USER:
3045                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3046                                 d_printf("user:%u:", uorg);
3047                                 break;
3048                         case SMB_POSIX_ACL_GROUP_OBJ:
3049                                 d_printf("group::");
3050                                 break;
3051                         case SMB_POSIX_ACL_GROUP:
3052                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3053                                 d_printf("group:%u", uorg);
3054                                 break;
3055                         case SMB_POSIX_ACL_MASK:
3056                                 d_printf("mask::");
3057                                 break;
3058                         case SMB_POSIX_ACL_OTHER:
3059                                 d_printf("other::");
3060                                 break;
3061                         default:
3062                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3063                                         src, (unsigned int)tagtype );
3064                                 SAFE_FREE(retbuf);
3065                                 return 1;
3066                 }
3067
3068                 d_printf("%s\n", perms_to_string(permstring, perms));
3069         }
3070
3071         for (i = 0; i < num_dir_acls; i++) {
3072                 uint32 uorg;
3073                 fstring permstring;
3074                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3075                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3076
3077                 switch(tagtype) {
3078                         case SMB_POSIX_ACL_USER_OBJ:
3079                                 d_printf("default:user::");
3080                                 break;
3081                         case SMB_POSIX_ACL_USER:
3082                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3083                                 d_printf("default:user:%u:", uorg);
3084                                 break;
3085                         case SMB_POSIX_ACL_GROUP_OBJ:
3086                                 d_printf("default:group::");
3087                                 break;
3088                         case SMB_POSIX_ACL_GROUP:
3089                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3090                                 d_printf("default:group:%u", uorg);
3091                                 break;
3092                         case SMB_POSIX_ACL_MASK:
3093                                 d_printf("default:mask::");
3094                                 break;
3095                         case SMB_POSIX_ACL_OTHER:
3096                                 d_printf("default:other::");
3097                                 break;
3098                         default:
3099                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3100                                         src, (unsigned int)tagtype );
3101                                 SAFE_FREE(retbuf);
3102                                 return 1;
3103                 }
3104
3105                 d_printf("%s\n", perms_to_string(permstring, perms));
3106         }
3107
3108         SAFE_FREE(retbuf);
3109         return 0;
3110 }
3111
3112 /****************************************************************************
3113  UNIX stat.
3114 ****************************************************************************/
3115
3116 static int cmd_stat(void)
3117 {
3118         TALLOC_CTX *ctx = talloc_tos();
3119         char *src = NULL;
3120         char *name = NULL;
3121         char *targetname = NULL;
3122         struct cli_state *targetcli;
3123         fstring mode_str;
3124         SMB_STRUCT_STAT sbuf;
3125         struct tm *lt;
3126
3127         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3128                 d_printf("stat file\n");
3129                 return 1;
3130         }
3131         src = talloc_asprintf(ctx,
3132                         "%s%s",
3133                         client_get_cur_dir(),
3134                         name);
3135         if (!src) {
3136                 return 1;
3137         }
3138
3139         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3140                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3141                 return 1;
3142         }
3143
3144         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3145                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3146                 return 1;
3147         }
3148
3149         if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3150                 d_printf("%s stat file %s\n",
3151                         cli_errstr(targetcli), src);
3152                 return 1;
3153         }
3154
3155         /* Print out the stat values. */
3156         d_printf("File: %s\n", src);
3157         d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3158                 (double)sbuf.st_size,
3159                 (unsigned int)sbuf.st_blocks,
3160                 filetype_to_str(sbuf.st_mode));
3161
3162 #if defined(S_ISCHR) && defined(S_ISBLK)
3163         if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3164                 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3165                         (double)sbuf.st_ino,
3166                         (unsigned int)sbuf.st_nlink,
3167                         unix_dev_major(sbuf.st_rdev),
3168                         unix_dev_minor(sbuf.st_rdev));
3169         } else
3170 #endif
3171                 d_printf("Inode: %.0f\tLinks: %u\n",
3172                         (double)sbuf.st_ino,
3173                         (unsigned int)sbuf.st_nlink);
3174
3175         d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3176                 ((int)sbuf.st_mode & 0777),
3177                 unix_mode_to_str(mode_str, sbuf.st_mode),
3178                 (unsigned int)sbuf.st_uid,
3179                 (unsigned int)sbuf.st_gid);
3180
3181         lt = localtime(&sbuf.st_atime);
3182         if (lt) {
3183                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3184         } else {
3185                 fstrcpy(mode_str, "unknown");
3186         }
3187         d_printf("Access: %s\n", mode_str);
3188
3189         lt = localtime(&sbuf.st_mtime);
3190         if (lt) {
3191                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3192         } else {
3193                 fstrcpy(mode_str, "unknown");
3194         }
3195         d_printf("Modify: %s\n", mode_str);
3196
3197         lt = localtime(&sbuf.st_ctime);
3198         if (lt) {
3199                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3200         } else {
3201                 fstrcpy(mode_str, "unknown");
3202         }
3203         d_printf("Change: %s\n", mode_str);
3204
3205         return 0;
3206 }
3207
3208
3209 /****************************************************************************
3210  UNIX chown.
3211 ****************************************************************************/
3212
3213 static int cmd_chown(void)
3214 {
3215         TALLOC_CTX *ctx = talloc_tos();
3216         char *src = NULL;
3217         uid_t uid;
3218         gid_t gid;
3219         char *buf, *buf2, *buf3;
3220         struct cli_state *targetcli;
3221         char *targetname = NULL;
3222
3223         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3224             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3225             !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3226                 d_printf("chown uid gid file\n");
3227                 return 1;
3228         }
3229
3230         uid = (uid_t)atoi(buf);
3231         gid = (gid_t)atoi(buf2);
3232
3233         src = talloc_asprintf(ctx,
3234                         "%s%s",
3235                         client_get_cur_dir(),
3236                         buf3);
3237         if (!src) {
3238                 return 1;
3239         }
3240         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3241                 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3242                 return 1;
3243         }
3244
3245         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3246                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3247                 return 1;
3248         }
3249
3250         if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3251                 d_printf("%s chown file %s uid=%d, gid=%d\n",
3252                         cli_errstr(targetcli), src, (int)uid, (int)gid);
3253                 return 1;
3254         }
3255
3256         return 0;
3257 }
3258
3259 /****************************************************************************
3260  Rename some file.
3261 ****************************************************************************/
3262
3263 static int cmd_rename(void)
3264 {
3265         TALLOC_CTX *ctx = talloc_tos();
3266         char *src, *dest;
3267         char *buf, *buf2;
3268         struct cli_state *targetcli;
3269         char *targetsrc;
3270         char *targetdest;
3271
3272         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3273             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3274                 d_printf("rename <src> <dest>\n");
3275                 return 1;
3276         }
3277
3278         src = talloc_asprintf(ctx,
3279                         "%s%s",
3280                         client_get_cur_dir(),
3281                         buf);
3282         if (!src) {
3283                 return 1;
3284         }
3285
3286         dest = talloc_asprintf(ctx,
3287                         "%s%s",
3288                         client_get_cur_dir(),
3289                         buf2);
3290         if (!dest) {
3291                 return 1;
3292         }
3293
3294         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3295                 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3296                 return 1;
3297         }
3298
3299         if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3300                 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3301                 return 1;
3302         }
3303
3304         if (!cli_rename(targetcli, targetsrc, targetdest)) {
3305                 d_printf("%s renaming files %s -> %s \n",
3306                         cli_errstr(targetcli),
3307                         targetsrc,
3308                         targetdest);
3309                 return 1;
3310         }
3311
3312         return 0;
3313 }
3314
3315 /****************************************************************************
3316  Print the volume name.
3317 ****************************************************************************/
3318
3319 static int cmd_volume(void)
3320 {
3321         fstring volname;
3322         uint32 serial_num;
3323         time_t create_date;
3324
3325         if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3326                 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3327                 return 1;
3328         }
3329
3330         d_printf("Volume: |%s| serial number 0x%x\n",
3331                         volname, (unsigned int)serial_num);
3332         return 0;
3333 }
3334
3335 /****************************************************************************
3336  Hard link files using the NT call.
3337 ****************************************************************************/
3338
3339 static int cmd_hardlink(void)
3340 {
3341         TALLOC_CTX *ctx = talloc_tos();
3342         char *src, *dest;
3343         char *buf, *buf2;
3344         struct cli_state *targetcli;
3345         char *targetname;
3346
3347         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3348             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3349                 d_printf("hardlink <src> <dest>\n");
3350                 return 1;
3351         }
3352
3353         src = talloc_asprintf(ctx,
3354                         "%s%s",
3355                         client_get_cur_dir(),
3356                         buf);
3357         if (!src) {
3358                 return 1;
3359         }
3360
3361         dest = talloc_asprintf(ctx,
3362                         "%s%s",
3363                         client_get_cur_dir(),
3364                         buf2);
3365         if (!dest) {
3366                 return 1;
3367         }
3368
3369         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3370                 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3371                 return 1;
3372         }
3373
3374         if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3375                 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3376                 return 1;
3377         }
3378
3379         return 0;
3380 }
3381
3382 /****************************************************************************
3383  Toggle the prompt flag.
3384 ****************************************************************************/
3385
3386 static int cmd_prompt(void)
3387 {
3388         prompt = !prompt;
3389         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3390         return 1;
3391 }
3392
3393 /****************************************************************************
3394  Set the newer than time.
3395 ****************************************************************************/
3396
3397 static int cmd_newer(void)
3398 {
3399         TALLOC_CTX *ctx = talloc_tos();
3400         char *buf;
3401         bool ok;
3402         SMB_STRUCT_STAT sbuf;
3403
3404         ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3405         if (ok && (sys_stat(buf,&sbuf) == 0)) {
3406                 newer_than = sbuf.st_mtime;
3407                 DEBUG(1,("Getting files newer than %s",
3408                          time_to_asc(newer_than)));
3409         } else {
3410                 newer_than = 0;
3411         }
3412
3413         if (ok && newer_than == 0) {
3414                 d_printf("Error setting newer-than time\n");
3415                 return 1;
3416         }
3417
3418         return 0;
3419 }
3420
3421 /****************************************************************************
3422  Set the archive level.
3423 ****************************************************************************/
3424
3425 static int cmd_archive(void)
3426 {
3427         TALLOC_CTX *ctx = talloc_tos();
3428         char *buf;
3429
3430         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3431                 archive_level = atoi(buf);
3432         } else {
3433                 d_printf("Archive level is %d\n",archive_level);
3434         }
3435
3436         return 0;
3437 }
3438
3439 /****************************************************************************
3440  Toggle the lowercaseflag.
3441 ****************************************************************************/
3442
3443 static int cmd_lowercase(void)
3444 {
3445         lowercase = !lowercase;
3446         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3447         return 0;
3448 }
3449
3450 /****************************************************************************
3451  Toggle the case sensitive flag.
3452 ****************************************************************************/
3453
3454 static int cmd_setcase(void)
3455 {
3456         bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3457
3458         cli_set_case_sensitive(cli, !orig_case_sensitive);
3459         DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3460                 "on":"off"));
3461         return 0;
3462 }
3463
3464 /****************************************************************************
3465  Toggle the showacls flag.
3466 ****************************************************************************/
3467
3468 static int cmd_showacls(void)
3469 {
3470         showacls = !showacls;
3471         DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3472         return 0;
3473 }
3474
3475
3476 /****************************************************************************
3477  Toggle the recurse flag.
3478 ****************************************************************************/
3479
3480 static int cmd_recurse(void)
3481 {
3482         recurse = !recurse;
3483         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3484         return 0;
3485 }
3486
3487 /****************************************************************************
3488  Toggle the translate flag.
3489 ****************************************************************************/
3490
3491 static int cmd_translate(void)
3492 {
3493         translation = !translation;
3494         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3495                  translation?"on":"off"));
3496         return 0;
3497 }
3498
3499 /****************************************************************************
3500  Do the lcd command.
3501  ****************************************************************************/
3502
3503 static int cmd_lcd(void)
3504 {
3505         TALLOC_CTX *ctx = talloc_tos();
3506         char *buf;
3507         char *d;
3508
3509         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3510                 chdir(buf);
3511         }
3512         d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3513         if (!d) {
3514                 return 1;
3515         }
3516         DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3517         return 0;
3518 }
3519
3520 /****************************************************************************
3521  Get a file restarting at end of local file.
3522  ****************************************************************************/
3523
3524 static int cmd_reget(void)
3525 {
3526         TALLOC_CTX *ctx = talloc_tos();
3527         char *local_name = NULL;
3528         char *remote_name = NULL;
3529         char *fname = NULL;
3530         char *p = NULL;
3531
3532         remote_name = talloc_strdup(ctx, client_get_cur_dir());
3533         if (!remote_name) {
3534                 return 1;
3535         }
3536
3537         if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3538                 d_printf("reget <filename>\n");
3539                 return 1;
3540         }
3541         remote_name = talloc_asprintf_append(remote_name, fname);
3542         if (!remote_name) {
3543                 return 1;
3544         }
3545         remote_name = clean_name(ctx,remote_name);
3546         if (!remote_name) {
3547                 return 1;
3548         }
3549
3550         local_name = fname;
3551         next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3552         if (p) {
3553                 local_name = p;
3554         }
3555
3556         return do_get(remote_name, local_name, true);
3557 }
3558
3559 /****************************************************************************
3560  Put a file restarting at end of local file.
3561  ****************************************************************************/
3562
3563 static int cmd_reput(void)
3564 {
3565         TALLOC_CTX *ctx = talloc_tos();
3566         char *local_name = NULL;
3567         char *remote_name = NULL;
3568         char *buf;
3569         SMB_STRUCT_STAT st;
3570
3571         remote_name = talloc_strdup(ctx, client_get_cur_dir());
3572         if (!remote_name) {
3573                 return 1;
3574         }
3575
3576         if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3577                 d_printf("reput <filename>\n");
3578                 return 1;
3579         }
3580
3581         if (!file_exist(local_name, &st)) {
3582                 d_printf("%s does not exist\n", local_name);
3583                 return 1;
3584         }
3585
3586         if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3587                 remote_name = talloc_asprintf_append(remote_name,
3588                                                 buf);
3589         } else {
3590                 remote_name = talloc_asprintf_append(remote_name,
3591                                                 local_name);
3592         }
3593         if (!remote_name) {
3594                 return 1;
3595         }
3596
3597         remote_name = clean_name(ctx, remote_name);
3598         if (!remote_name) {
3599                 return 1;
3600         }
3601
3602         return do_put(remote_name, local_name, true);
3603 }
3604
3605 /****************************************************************************
3606  List a share name.
3607  ****************************************************************************/
3608
3609 static void browse_fn(const char *name, uint32 m,
3610                       const char *comment, void *state)
3611 {
3612         const char *typestr = "";
3613
3614         switch (m & 7) {
3615         case STYPE_DISKTREE:
3616                 typestr = "Disk";
3617                 break;
3618         case STYPE_PRINTQ:
3619                 typestr = "Printer";
3620                 break;
3621         case STYPE_DEVICE:
3622                 typestr = "Device";
3623                 break;
3624         case STYPE_IPC:
3625                 typestr = "IPC";
3626                 break;
3627         }
3628         /* FIXME: If the remote machine returns non-ascii characters
3629            in any of these fields, they can corrupt the output.  We
3630            should remove them. */
3631         if (!grepable) {
3632                 d_printf("\t%-15s %-10.10s%s\n",
3633                         name,typestr,comment);
3634         } else {
3635                 d_printf ("%s|%s|%s\n",typestr,name,comment);
3636         }
3637 }
3638
3639 static bool browse_host_rpc(bool sort)
3640 {
3641         NTSTATUS status;
3642         struct rpc_pipe_client *pipe_hnd;
3643         TALLOC_CTX *frame = talloc_stackframe();
3644         ENUM_HND enum_hnd;
3645         WERROR werr;
3646         SRV_SHARE_INFO_CTR ctr;
3647         int i;
3648
3649         init_enum_hnd(&enum_hnd, 0);
3650
3651         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SRVSVC, &status);
3652
3653         if (pipe_hnd == NULL) {
3654                 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3655                            nt_errstr(status)));
3656                 TALLOC_FREE(frame);
3657                 return false;
3658         }
3659
3660         werr = rpccli_srvsvc_net_share_enum(pipe_hnd, frame, 1, &ctr,
3661                                             0xffffffff, &enum_hnd);
3662
3663         if (!W_ERROR_IS_OK(werr)) {
3664                 cli_rpc_pipe_close(pipe_hnd);
3665                 TALLOC_FREE(frame);
3666                 return false;
3667         }
3668
3669         for (i=0; i<ctr.num_entries; i++) {
3670                 SRV_SHARE_INFO_1 *info = &ctr.share.info1[i];
3671                 char *name, *comment;
3672                 name = rpcstr_pull_unistr2_talloc(
3673                         frame, &info->info_1_str.uni_netname);
3674                 comment = rpcstr_pull_unistr2_talloc(
3675                         frame, &info->info_1_str.uni_remark);
3676                 browse_fn(name, info->info_1.type, comment, NULL);
3677         }
3678
3679         cli_rpc_pipe_close(pipe_hnd);
3680         TALLOC_FREE(frame);
3681         return true;
3682 }
3683
3684 /****************************************************************************
3685  Try and browse available connections on a host.
3686 ****************************************************************************/
3687
3688 static bool browse_host(bool sort)
3689 {
3690         int ret;
3691         if (!grepable) {
3692                 d_printf("\n\tSharename       Type      Comment\n");
3693                 d_printf("\t---------       ----      -------\n");
3694         }
3695
3696         if (browse_host_rpc(sort)) {
3697                 return true;
3698         }
3699
3700         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3701                 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3702
3703         return (ret != -1);
3704 }
3705
3706 /****************************************************************************
3707  List a server name.
3708 ****************************************************************************/
3709
3710 static void server_fn(const char *name, uint32 m,
3711                       const char *comment, void *state)
3712 {
3713
3714         if (!grepable){
3715                 d_printf("\t%-16s     %s\n", name, comment);
3716         } else {
3717                 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3718         }
3719 }
3720
3721 /****************************************************************************
3722  Try and browse available connections on a host.
3723 ****************************************************************************/
3724
3725 static bool list_servers(const char *wk_grp)
3726 {
3727         fstring state;
3728
3729         if (!cli->server_domain)
3730                 return false;
3731
3732         if (!grepable) {
3733                 d_printf("\n\tServer               Comment\n");
3734                 d_printf("\t---------            -------\n");
3735         };
3736         fstrcpy( state, "Server" );
3737         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3738                           state);
3739
3740         if (!grepable) {
3741                 d_printf("\n\tWorkgroup            Master\n");
3742                 d_printf("\t---------            -------\n");
3743         };
3744
3745         fstrcpy( state, "Workgroup" );
3746         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3747                           server_fn, state);
3748         return true;
3749 }
3750
3751 /****************************************************************************
3752  Print or set current VUID
3753 ****************************************************************************/
3754
3755 static int cmd_vuid(void)
3756 {
3757         TALLOC_CTX *ctx = talloc_tos();
3758         char *buf;
3759
3760         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3761                 d_printf("Current VUID is %d\n", cli->vuid);
3762                 return 0;
3763         }
3764
3765         cli->vuid = atoi(buf);
3766         return 0;
3767 }
3768
3769 /****************************************************************************
3770  Setup a new VUID, by issuing a session setup
3771 ****************************************************************************/
3772
3773 static int cmd_logon(void)
3774 {
3775         TALLOC_CTX *ctx = talloc_tos();
3776         char *l_username, *l_password;
3777
3778         if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3779                 d_printf("logon <username> [<password>]\n");
3780                 return 0;
3781         }
3782
3783         if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3784                 char *pass = getpass("Password: ");
3785                 if (pass) {
3786                         l_password = talloc_strdup(ctx,pass);
3787                 }
3788         }
3789         if (!l_password) {
3790                 return 1;
3791         }
3792
3793         if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3794                                                l_password, strlen(l_password),
3795                                                l_password, strlen(l_password),
3796                                                lp_workgroup()))) {
3797                 d_printf("session setup failed: %s\n", cli_errstr(cli));
3798                 return -1;
3799         }
3800
3801         d_printf("Current VUID is %d\n", cli->vuid);
3802         return 0;
3803 }
3804
3805
3806 /****************************************************************************
3807  list active connections
3808 ****************************************************************************/
3809
3810 static int cmd_list_connect(void)
3811 {
3812         cli_cm_display();
3813         return 0;
3814 }
3815
3816 /****************************************************************************
3817  display the current active client connection
3818 ****************************************************************************/
3819
3820 static int cmd_show_connect( void )
3821 {
3822         TALLOC_CTX *ctx = talloc_tos();
3823         struct cli_state *targetcli;
3824         char *targetpath;
3825
3826         if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3827                                 &targetcli, &targetpath ) ) {
3828                 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3829                 return 1;
3830         }
3831
3832         d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3833         return 0;
3834 }
3835
3836 /****************************************************************************
3837  iosize command
3838 ***************************************************************************/
3839
3840 int cmd_iosize(void)
3841 {
3842         TALLOC_CTX *ctx = talloc_tos();
3843         char *buf;
3844         int iosize;
3845
3846         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3847                 if (!smb_encrypt) {
3848                         d_printf("iosize <n> or iosize 0x<n>. "
3849                                 "Minimum is 16384 (0x4000), "
3850                                 "max is 16776960 (0xFFFF00)\n");
3851                 } else {
3852                         d_printf("iosize <n> or iosize 0x<n>. "
3853                                 "(Encrypted connection) ,"
3854                                 "Minimum is 16384 (0x4000), "
3855                                 "max is 130048 (0x1FC00)\n");
3856                 }
3857                 return 1;
3858         }
3859
3860         iosize = strtol(buf,NULL,0);
3861         if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3862                 d_printf("iosize out of range for encrypted "
3863                         "connection (min = 16384 (0x4000), "
3864                         "max = 130048 (0x1FC00)");
3865                 return 1;
3866         } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3867                 d_printf("iosize out of range (min = 16384 (0x4000), "
3868                         "max = 16776960 (0xFFFF00)");
3869                 return 1;
3870         }
3871
3872         io_bufsize = iosize;
3873         d_printf("iosize is now %d\n", io_bufsize);
3874         return 0;
3875 }
3876
3877
3878 /* Some constants for completing filename arguments */
3879
3880 #define COMPL_NONE        0          /* No completions */
3881 #define COMPL_REMOTE      1          /* Complete remote filename */
3882 #define COMPL_LOCAL       2          /* Complete local filename */
3883
3884 /* This defines the commands supported by this client.
3885  * NOTE: The "!" must be the last one in the list because it's fn pointer
3886  *       field is NULL, and NULL in that field is used in process_tok()
3887  *       (below) to indicate the end of the list.  crh
3888  */
3889 static struct {
3890         const char *name;
3891         int (*fn)(void);
3892         const char *description;
3893         char compl_args[2];      /* Completion argument info */
3894 } commands[] = {
3895   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3896   {"allinfo",cmd_allinfo,"<file> show all available info",
3897    {COMPL_NONE,COMPL_NONE}},
3898   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3899   {"archive",cmd_archive,"<level>\n0=ignore archive bit\n1=only get archive files\n2=only get archive files and reset archive bit\n3=get all files and reset archive bit",{COMPL_NONE,COMPL_NONE}},
3900   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3901   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3902   {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3903   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3904   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3905   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3906   {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3907   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3908   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3909   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3910   {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3911   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3912   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3913   {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3914   {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3915   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3916   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3917   {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3918   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3919   {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3920   {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3921   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
3922   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3923   {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3924   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3925   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3926   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3927   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3928   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
3929   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3930   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3931   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3932   {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3933   {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3934   {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3935   {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3936   {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3937   {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3938   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3939   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
3940   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3941   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3942   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3943   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3944   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3945   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3946   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
3947   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3948   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3949   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3950   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3951   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3952   {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},  
3953   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3954   {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3955   {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3956   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3957   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3958   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3959   {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3960   {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3961   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3962   {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3963   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3964   {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3965   {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3966   {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
3967
3968   /* Yes, this must be here, see crh's comment above. */
3969   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
3970   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
3971 };
3972
3973 /*******************************************************************
3974  Lookup a command string in the list of commands, including
3975  abbreviations.
3976 ******************************************************************/
3977
3978 static int process_tok(char *tok)
3979 {
3980         int i = 0, matches = 0;
3981         int cmd=0;
3982         int tok_len = strlen(tok);
3983
3984         while (commands[i].fn != NULL) {
3985                 if (strequal(commands[i].name,tok)) {
3986                         matches = 1;
3987                         cmd = i;
3988                         break;
3989                 } else if (strnequal(commands[i].name, tok, tok_len)) {
3990                         matches++;
3991                         cmd = i;
3992                 }
3993                 i++;
3994         }
3995
3996         if (matches == 0)
3997                 return(-1);
3998         else if (matches == 1)
3999                 return(cmd);
4000         else
4001                 return(-2);
4002 }
4003
4004 /****************************************************************************
4005  Help.
4006 ****************************************************************************/
4007
4008 static int cmd_help(void)
4009 {
4010         TALLOC_CTX *ctx = talloc_tos();
4011         int i=0,j;
4012         char *buf;
4013
4014         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4015                 if ((i = process_tok(buf)) >= 0)
4016                         d_printf("HELP %s:\n\t%s\n\n",
4017                                 commands[i].name,commands[i].description);
4018         } else {
4019                 while (commands[i].description) {
4020                         for (j=0; commands[i].description && (j<5); j++) {
4021                                 d_printf("%-15s",commands[i].name);
4022                                 i++;
4023                         }
4024                         d_printf("\n");
4025                 }
4026         }
4027         return 0;
4028 }
4029
4030 /****************************************************************************
4031  Process a -c command string.
4032 ****************************************************************************/
4033
4034 static int process_command_string(const char *cmd_in)
4035 {
4036         TALLOC_CTX *ctx = talloc_tos();
4037         char *cmd = talloc_strdup(ctx, cmd_in);
4038         int rc = 0;
4039
4040         if (!cmd) {
4041                 return 1;
4042         }
4043         /* establish the connection if not already */
4044
4045         if (!cli) {
4046                 cli = cli_cm_open(talloc_tos(), NULL, desthost,
4047                                 service, true, smb_encrypt);
4048                 if (!cli) {
4049                         return 1;
4050                 }
4051         }
4052
4053         while (cmd[0] != '\0')    {
4054                 char *line;
4055                 char *p;
4056                 char *tok;
4057                 int i;
4058
4059                 if ((p = strchr_m(cmd, ';')) == 0) {
4060                         line = cmd;
4061                         cmd += strlen(cmd);
4062                 } else {
4063                         *p = '\0';
4064                         line = cmd;
4065                         cmd = p + 1;
4066                 }
4067
4068                 /* and get the first part of the command */
4069                 cmd_ptr = line;
4070                 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4071                         continue;
4072                 }
4073
4074                 if ((i = process_tok(tok)) >= 0) {
4075                         rc = commands[i].fn();
4076                 } else if (i == -2) {
4077                         d_printf("%s: command abbreviation ambiguous\n",tok);
4078                 } else {
4079                         d_printf("%s: command not found\n",tok);
4080                 }
4081         }
4082
4083         return rc;
4084 }
4085
4086 #define MAX_COMPLETIONS 100
4087
4088 typedef struct {
4089         char *dirmask;
4090         char **matches;
4091         int count, samelen;
4092         const char *text;
4093         int len;
4094 } completion_remote_t;
4095
4096 static void completion_remote_filter(const char *mnt,
4097                                 file_info *f,
4098                                 const char *mask,
4099                                 void *state)
4100 {
4101         completion_remote_t *info = (completion_remote_t *)state;
4102
4103         if ((info->count < MAX_COMPLETIONS - 1) &&
4104                         (strncmp(info->text, f->name, info->len) == 0) &&
4105                         (strcmp(f->name, ".") != 0) &&
4106                         (strcmp(f->name, "..") != 0)) {
4107                 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4108                         info->matches[info->count] = SMB_STRDUP(f->name);
4109                 else {
4110                         TALLOC_CTX *ctx = talloc_stackframe();
4111                         char *tmp;
4112
4113                         if (info->dirmask && info->dirmask[0] != 0) {
4114                                 tmp = talloc_strdup(ctx,info->dirmask);
4115                         } else {
4116                                 tmp = talloc_strdup(ctx,"");
4117                         }
4118                         if (!tmp) {
4119                                 TALLOC_FREE(ctx);
4120                                 return;
4121                         }
4122                         tmp = talloc_asprintf_append(tmp, f->name);
4123                         if (!tmp) {
4124                                 TALLOC_FREE(ctx);
4125                                 return;
4126                         }
4127                         if (f->mode & aDIR) {
4128                                 tmp = talloc_asprintf_append(tmp, CLI_DIRSEP_STR);
4129                         }
4130                         if (!tmp) {
4131                                 TALLOC_FREE(ctx);
4132                                 return;
4133                         }
4134                         info->matches[info->count] = SMB_STRDUP(tmp);
4135                         TALLOC_FREE(ctx);
4136                 }
4137                 if (info->matches[info->count] == NULL) {
4138                         return;
4139                 }
4140                 if (f->mode & aDIR) {
4141                         smb_readline_ca_char(0);
4142                 }
4143                 if (info->count == 1) {
4144                         info->samelen = strlen(info->matches[info->count]);
4145                 } else {
4146                         while (strncmp(info->matches[info->count],
4147                                                 info->matches[info->count-1],
4148                                                 info->samelen) != 0) {
4149                                 info->samelen--;
4150                         }
4151                 }
4152                 info->count++;
4153         }
4154 }
4155
4156 static char **remote_completion(const char *text, int len)
4157 {
4158         TALLOC_CTX *ctx = talloc_stackframe();
4159         char *dirmask = NULL;
4160         char *targetpath = NULL;
4161         struct cli_state *targetcli = NULL;
4162         int i;
4163         completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4164
4165         /* can't have non-static intialisation on Sun CC, so do it
4166            at run time here */
4167         info.samelen = len;
4168         info.text = text;
4169         info.len = len;
4170
4171         info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4172         if (!info.matches) {
4173                 TALLOC_FREE(ctx);
4174                 return NULL;
4175         }
4176
4177         /*
4178          * We're leaving matches[0] free to fill it later with the text to
4179          * display: Either the one single match or the longest common subset
4180          * of the matches.
4181          */
4182         info.matches[0] = NULL;
4183         info.count = 1;
4184
4185         for (i = len-1; i >= 0; i--) {
4186                 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4187                         break;
4188                 }
4189         }
4190
4191         info.text = text+i+1;
4192         info.samelen = info.len = len-i-1;
4193
4194         if (i > 0) {
4195                 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4196                 if (!info.dirmask) {
4197                         goto cleanup;
4198                 }
4199                 strncpy(info.dirmask, text, i+1);
4200                 info.dirmask[i+1] = 0;
4201                 dirmask = talloc_asprintf(ctx,
4202                                         "%s%*s*",
4203                                         client_get_cur_dir(),
4204                                         i-1,
4205                                         text);
4206         } else {
4207                 info.dirmask = SMB_STRDUP("");
4208                 if (!info.dirmask) {
4209                         goto cleanup;
4210                 }
4211                 dirmask = talloc_asprintf(ctx,
4212                                         "%s*",
4213                                         client_get_cur_dir());
4214         }
4215         if (!dirmask) {
4216                 goto cleanup;
4217         }
4218
4219         if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4220                 goto cleanup;
4221         }
4222         if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4223                                 completion_remote_filter, (void *)&info) < 0) {
4224                 goto cleanup;
4225         }
4226
4227         if (info.count == 1) {
4228                 /*
4229                  * No matches at all, NULL indicates there is nothing
4230                  */
4231                 SAFE_FREE(info.matches[0]);
4232                 SAFE_FREE(info.matches);
4233                 TALLOC_FREE(ctx);
4234                 return NULL;
4235         }
4236
4237         if (info.count == 2) {
4238                 /*
4239                  * Exactly one match in matches[1], indicate this is the one
4240                  * in matches[0].
4241                  */
4242                 info.matches[0] = info.matches[1];
4243                 info.matches[1] = NULL;
4244                 info.count -= 1;
4245                 TALLOC_FREE(ctx);
4246                 return info.matches;
4247         }
4248
4249         /*
4250          * We got more than one possible match, set the result to the maximum
4251          * common subset
4252          */
4253
4254         info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4255         info.matches[info.count] = NULL;
4256         return info.matches;
4257
4258 cleanup:
4259         for (i = 0; i < info.count; i++) {
4260                 SAFE_FREE(info.matches[i]);
4261         }
4262         SAFE_FREE(info.matches);
4263         SAFE_FREE(info.dirmask);
4264         TALLOC_FREE(ctx);
4265         return NULL;
4266 }
4267
4268 static char **completion_fn(const char *text, int start, int end)
4269 {
4270         smb_readline_ca_char(' ');
4271
4272         if (start) {
4273                 const char *buf, *sp;
4274                 int i;
4275                 char compl_type;
4276
4277                 buf = smb_readline_get_line_buffer();
4278                 if (buf == NULL)
4279                         return NULL;
4280
4281                 sp = strchr(buf, ' ');
4282                 if (sp == NULL)
4283                         return NULL;
4284
4285                 for (i = 0; commands[i].name; i++) {
4286                         if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4287                             (commands[i].name[sp - buf] == 0)) {
4288                                 break;
4289                         }
4290                 }
4291                 if (commands[i].name == NULL)
4292                         return NULL;
4293
4294                 while (*sp == ' ')
4295                         sp++;
4296
4297                 if (sp == (buf + start))
4298                         compl_type = commands[i].compl_args[0];
4299                 else
4300                         compl_type = commands[i].compl_args[1];
4301
4302                 if (compl_type == COMPL_REMOTE)
4303                         return remote_completion(text, end - start);
4304                 else /* fall back to local filename completion */
4305                         return NULL;
4306         } else {
4307                 char **matches;
4308                 int i, len, samelen = 0, count=1;
4309
4310                 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4311                 if (!matches) {
4312                         return NULL;
4313                 }
4314                 matches[0] = NULL;
4315
4316                 len = strlen(text);
4317                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4318                         if (strncmp(text, commands[i].name, len) == 0) {
4319                                 matches[count] = SMB_STRDUP(commands[i].name);
4320                                 if (!matches[count])
4321                                         goto cleanup;
4322                                 if (count == 1)
4323                                         samelen = strlen(matches[count]);
4324                                 else
4325                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
4326                                                 samelen--;
4327                                 count++;
4328                         }
4329                 }
4330
4331                 switch (count) {
4332                 case 0: /* should never happen */
4333                 case 1:
4334                         goto cleanup;
4335                 case 2:
4336                         matches[0] = SMB_STRDUP(matches[1]);
4337                         break;
4338                 default:
4339                         matches[0] = (char *)SMB_MALLOC(samelen+1);
4340                         if (!matches[0])
4341                                 goto cleanup;
4342                         strncpy(matches[0], matches[1], samelen);
4343                         matches[0][samelen] = 0;
4344                 }
4345                 matches[count] = NULL;
4346                 return matches;
4347
4348 cleanup:
4349                 for (i = 0; i < count; i++)
4350                         free(matches[i]);
4351
4352                 free(matches);
4353                 return NULL;
4354         }
4355 }
4356
4357 /****************************************************************************
4358  Make sure we swallow keepalives during idle time.
4359 ****************************************************************************/
4360
4361 static void readline_callback(void)
4362 {
4363         fd_set fds;
4364         struct timeval timeout;
4365         static time_t last_t;
4366         time_t t;
4367
4368         t = time(NULL);
4369
4370         if (t - last_t < 5)
4371                 return;
4372
4373         last_t = t;
4374
4375  again:
4376
4377         if (cli->fd == -1)
4378                 return;
4379
4380         FD_ZERO(&fds);
4381         FD_SET(cli->fd,&fds);
4382
4383         timeout.tv_sec = 0;
4384         timeout.tv_usec = 0;
4385         sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4386
4387         /* We deliberately use receive_smb_raw instead of
4388            client_receive_smb as we want to receive
4389            session keepalives and then drop them here.
4390         */
4391         if (FD_ISSET(cli->fd,&fds)) {
4392                 NTSTATUS status;
4393                 size_t len;
4394
4395                 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4396
4397                 status = receive_smb_raw(cli->fd, cli->inbuf, 0, 0, &len);
4398
4399                 if (!NT_STATUS_IS_OK(status)) {
4400                         DEBUG(0, ("Read from server failed, maybe it closed "
4401                                   "the connection\n"));
4402
4403                         if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4404                                 set_smb_read_error(&cli->smb_rw_error,
4405                                                    SMB_READ_EOF);
4406                                 return;
4407                         }
4408
4409                         if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4410                                 set_smb_read_error(&cli->smb_rw_error,
4411                                                    SMB_READ_TIMEOUT);
4412                                 return;
4413                         }
4414
4415                         set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4416                         return;
4417                 }
4418                 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4419                         DEBUG(0, ("Read from server "
4420                                 "returned unexpected packet!\n"));
4421                         return;
4422                 }
4423
4424                 goto again;
4425         }
4426
4427         /* Ping the server to keep the connection alive using SMBecho. */
4428         {
4429                 unsigned char garbage[16];
4430                 memset(garbage, 0xf0, sizeof(garbage));
4431                 cli_echo(cli, 1, garbage, sizeof(garbage));
4432         }
4433 }
4434
4435 /****************************************************************************
4436  Process commands on stdin.
4437 ****************************************************************************/
4438
4439 static int process_stdin(void)
4440 {
4441         int rc = 0;
4442
4443         while (1) {
4444                 TALLOC_CTX *frame = talloc_stackframe();
4445                 char *tok = NULL;
4446                 char *the_prompt = NULL;
4447                 char *line = NULL;
4448                 int i;
4449
4450                 /* display a prompt */
4451                 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4452                         TALLOC_FREE(frame);
4453                         break;
4454                 }
4455                 line = smb_readline(the_prompt, readline_callback, completion_fn);
4456                 SAFE_FREE(the_prompt);
4457                 if (!line) {
4458                         TALLOC_FREE(frame);
4459                         break;
4460                 }
4461
4462                 /* special case - first char is ! */
4463                 if (*line == '!') {
4464                         system(line + 1);
4465                         SAFE_FREE(line);
4466                         TALLOC_FREE(frame);
4467                         continue;
4468                 }
4469
4470                 /* and get the first part of the command */
4471                 cmd_ptr = line;
4472                 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4473                         TALLOC_FREE(frame);
4474                         SAFE_FREE(line);
4475                         continue;
4476                 }
4477
4478                 if ((i = process_tok(tok)) >= 0) {
4479                         rc = commands[i].fn();
4480                 } else if (i == -2) {
4481                         d_printf("%s: command abbreviation ambiguous\n",tok);
4482                 } else {
4483                         d_printf("%s: command not found\n",tok);
4484                 }
4485                 SAFE_FREE(line);
4486                 TALLOC_FREE(frame);
4487         }
4488         return rc;
4489 }
4490
4491 /****************************************************************************
4492  Process commands from the client.
4493 ****************************************************************************/
4494
4495 static int process(const char *base_directory)
4496 {
4497         int rc = 0;
4498
4499         cli = cli_cm_open(talloc_tos(), NULL,
4500                         desthost, service, true, smb_encrypt);
4501         if (!cli) {
4502                 return 1;
4503         }
4504
4505         if (base_directory && *base_directory) {
4506                 rc = do_cd(base_directory);
4507                 if (rc) {
4508                         cli_cm_shutdown();
4509                         return rc;
4510                 }
4511         }
4512
4513         if (cmdstr) {
4514                 rc = process_command_string(cmdstr);
4515         } else {
4516                 process_stdin();
4517         }
4518
4519         cli_cm_shutdown();
4520         return rc;
4521 }
4522
4523 /****************************************************************************
4524  Handle a -L query.
4525 ****************************************************************************/
4526
4527 static int do_host_query(const char *query_host)
4528 {
4529         cli = cli_cm_open(talloc_tos(), NULL,
4530                         query_host, "IPC$", true, smb_encrypt);
4531         if (!cli)
4532                 return 1;
4533
4534         browse_host(true);
4535
4536         if (port != 139) {
4537
4538                 /* Workgroups simply don't make sense over anything
4539                    else but port 139... */
4540
4541                 cli_cm_shutdown();
4542                 cli_cm_set_port( 139 );
4543                 cli = cli_cm_open(talloc_tos(), NULL,
4544                                 query_host, "IPC$", true, smb_encrypt);
4545         }
4546
4547         if (cli == NULL) {
4548                 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4549                 return 1;
4550         }
4551
4552         list_servers(lp_workgroup());
4553
4554         cli_cm_shutdown();
4555
4556         return(0);
4557 }
4558
4559 /****************************************************************************
4560  Handle a tar operation.
4561 ****************************************************************************/
4562
4563 static int do_tar_op(const char *base_directory)
4564 {
4565         int ret;
4566
4567         /* do we already have a connection? */
4568         if (!cli) {
4569                 cli = cli_cm_open(talloc_tos(), NULL,
4570                         desthost, service, true, smb_encrypt);
4571                 if (!cli)
4572                         return 1;
4573         }
4574
4575         recurse=true;
4576
4577         if (base_directory && *base_directory)  {
4578                 ret = do_cd(base_directory);
4579                 if (ret) {
4580                         cli_cm_shutdown();
4581                         return ret;
4582                 }
4583         }
4584
4585         ret=process_tar();
4586
4587         cli_cm_shutdown();
4588
4589         return(ret);
4590 }
4591
4592 /****************************************************************************
4593  Handle a message operation.
4594 ****************************************************************************/
4595
4596 static int do_message_op(void)
4597 {
4598         struct sockaddr_storage ss;
4599         struct nmb_name called, calling;
4600         fstring server_name;
4601         char name_type_hex[10];
4602         int msg_port;
4603         NTSTATUS status;
4604
4605         make_nmb_name(&calling, calling_name, 0x0);
4606         make_nmb_name(&called , desthost, name_type);
4607
4608         fstrcpy(server_name, desthost);
4609         snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4610         fstrcat(server_name, name_type_hex);
4611
4612         zero_addr(&ss);
4613         if (have_ip)
4614                 ss = dest_ss;
4615
4616         /* we can only do messages over port 139 (to windows clients at least) */
4617
4618         msg_port = port ? port : 139;
4619
4620         if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4621                 d_printf("Connection to %s failed\n", desthost);
4622                 return 1;
4623         }
4624
4625         status = cli_connect(cli, server_name, &ss);
4626         if (!NT_STATUS_IS_OK(status)) {
4627                 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4628                 return 1;
4629         }
4630
4631         if (!cli_session_request(cli, &calling, &called)) {
4632                 d_printf("session request failed\n");
4633                 cli_cm_shutdown();
4634                 return 1;
4635         }
4636
4637         send_message();
4638         cli_cm_shutdown();
4639
4640         return 0;
4641 }
4642
4643 /****************************************************************************
4644   main program
4645 ****************************************************************************/
4646
4647  int main(int argc,char *argv[])
4648 {
4649         char *base_directory = NULL;
4650         int opt;
4651         char *query_host = NULL;
4652         bool message = false;
4653         char *term_code = NULL;
4654         static const char *new_name_resolve_order = NULL;
4655         poptContext pc;
4656         char *p;
4657         int rc = 0;
4658         fstring new_workgroup;
4659         bool tar_opt = false;
4660         bool service_opt = false;
4661         struct poptOption long_options[] = {
4662                 POPT_AUTOHELP
4663
4664                 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4665                 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4666                 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4667                 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4668                 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4669                 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4670                 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4671                 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4672                 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4673                 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" }, 
4674                 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4675                 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4676                 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4677                 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4678                 POPT_COMMON_SAMBA
4679                 POPT_COMMON_CONNECTION
4680                 POPT_COMMON_CREDENTIALS
4681                 POPT_TABLEEND
4682         };
4683         TALLOC_CTX *frame = talloc_stackframe();
4684
4685         if (!client_set_cur_dir("\\")) {
4686                 exit(ENOMEM);
4687         }
4688
4689 #ifdef KANJI
4690         term_code = talloc_strdup(frame,KANJI);
4691 #else /* KANJI */
4692         term_code = talloc_strdup(frame,"");
4693 #endif /* KANJI */
4694         if (!term_code) {
4695                 exit(ENOMEM);
4696         }
4697
4698         /* initialize the workgroup name so we can determine whether or
4699            not it was set by a command line option */
4700
4701         set_global_myworkgroup( "" );
4702         set_global_myname( "" );
4703
4704         /* set default debug level to 1 regardless of what smb.conf sets */
4705         setup_logging( "smbclient", true );
4706         DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4707         if ((dbf = x_fdup(x_stderr))) {
4708                 x_setbuf( dbf, NULL );
4709         }
4710
4711         load_case_tables();
4712
4713         /* skip argv(0) */
4714         pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4715         poptSetOtherOptionHelp(pc, "service <password>");
4716
4717         in_client = true;   /* Make sure that we tell lp_load we are */
4718
4719         while ((opt = poptGetNextOpt(pc)) != -1) {
4720
4721                 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4722                 /* I see no other way to keep things sane --SSS */
4723                 if (tar_opt == true) {
4724                         while (poptPeekArg(pc)) {
4725                                 poptGetArg(pc);
4726                         }
4727                         tar_opt = false;
4728                 }
4729
4730                 /* if the service has not yet been specified lets see if it is available in the popt stack */
4731                 if (!service_opt && poptPeekArg(pc)) {
4732                         service = talloc_strdup(frame, poptGetArg(pc));
4733                         if (!service) {
4734                                 exit(ENOMEM);
4735                         }
4736                         service_opt = true;
4737                 }
4738
4739                 /* if the service has already been retrieved then check if we have also a password */
4740                 if (service_opt && (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc)) {
4741                         set_cmdline_auth_info_password(poptGetArg(pc));
4742                 }
4743
4744                 switch (opt) {
4745                 case 'M':
4746                         /* Messages are sent to NetBIOS name type 0x3
4747                          * (Messenger Service).  Make sure we default
4748                          * to port 139 instead of port 445. srl,crh
4749                          */
4750                         name_type = 0x03;
4751                         cli_cm_set_dest_name_type( name_type );
4752                         desthost = talloc_strdup(frame,poptGetOptArg(pc));
4753                         if (!desthost) {
4754                                 exit(ENOMEM);
4755                         }
4756                         if( !port )
4757                                 cli_cm_set_port( 139 );
4758                         message = true;
4759                         break;
4760                 case 'I':
4761                         {
4762                                 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4763                                         exit(1);
4764                                 }
4765                                 have_ip = true;
4766
4767                                 cli_cm_set_dest_ss(&dest_ss);
4768                         }
4769                         break;
4770                 case 'E':
4771                         if (dbf) {
4772                                 x_fclose(dbf);
4773                         }
4774                         dbf = x_stderr;
4775                         display_set_stderr();
4776                         break;
4777
4778                 case 'L':
4779                         query_host = talloc_strdup(frame, poptGetOptArg(pc));
4780                         if (!query_host) {
4781                                 exit(ENOMEM);
4782                         }
4783                         break;
4784                 case 't':
4785                         term_code = talloc_strdup(frame,poptGetOptArg(pc));
4786                         if (!term_code) {
4787                                 exit(ENOMEM);
4788                         }
4789                         break;
4790                 case 'm':
4791                         max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4792                         break;
4793                 case 'T':
4794                         /* We must use old option processing for this. Find the
4795                          * position of the -T option in the raw argv[]. */
4796                         {
4797                                 int i;
4798                                 for (i = 1; i < argc; i++) {
4799                                         if (strncmp("-T", argv[i],2)==0)
4800                                                 break;
4801                                 }
4802                                 i++;
4803                                 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4804                                         poptPrintUsage(pc, stderr, 0);
4805                                         exit(1);
4806                                 }
4807                         }
4808                         /* this must be the last option, mark we have parsed it so that we know we have */
4809                         tar_opt = true;
4810                         break;
4811                 case 'D':
4812                         base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4813                         if (!base_directory) {
4814                                 exit(ENOMEM);
4815                         }
4816                         break;
4817                 case 'g':
4818                         grepable=true;
4819                         break;
4820                 case 'e':
4821                         smb_encrypt=true;
4822                         break;
4823                 case 'B':
4824                         return(do_smb_browse());
4825
4826                 }
4827         }
4828
4829         /* We may still have some leftovers after the last popt option has been called */
4830         if (tar_opt == true) {
4831                 while (poptPeekArg(pc)) {
4832                         poptGetArg(pc);
4833                 }
4834                 tar_opt = false;
4835         }
4836
4837         /* if the service has not yet been specified lets see if it is available in the popt stack */
4838         if (!service_opt && poptPeekArg(pc)) {
4839                 service = talloc_strdup(frame,poptGetArg(pc));
4840                 if (!service) {
4841                         exit(ENOMEM);
4842                 }
4843                 service_opt = true;
4844         }
4845
4846         /* if the service has already been retrieved then check if we have also a password */
4847         if (service_opt && !get_cmdline_auth_info_got_pass() && poptPeekArg(pc)) {
4848                 set_cmdline_auth_info_password(poptGetArg(pc));
4849         }
4850
4851         /* check for the -P option */
4852
4853         if ( port != 0 )
4854                 cli_cm_set_port( port );
4855
4856         /*
4857          * Don't load debug level from smb.conf. It should be
4858          * set by cmdline arg or remain default (0)
4859          */
4860         AllowDebugChange = false;
4861
4862         /* save the workgroup...
4863
4864            FIXME!! do we need to do this for other options as well
4865            (or maybe a generic way to keep lp_load() from overwriting
4866            everything)?  */
4867
4868         fstrcpy( new_workgroup, lp_workgroup() );
4869         calling_name = talloc_strdup(frame, global_myname() );
4870         if (!calling_name) {
4871                 exit(ENOMEM);
4872         }
4873
4874         if ( override_logfile )
4875                 setup_logging( lp_logfile(), false );
4876
4877         if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4878                 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4879                         argv[0], get_dyn_CONFIGFILE());
4880         }
4881
4882         load_interfaces();
4883
4884         if (service_opt && service) {
4885                 size_t len;
4886
4887                 /* Convert any '/' characters in the service name to '\' characters */
4888                 string_replace(service, '/','\\');
4889                 if (count_chars(service,'\\') < 3) {
4890                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
4891                         poptPrintUsage(pc, stderr, 0);
4892                         exit(1);
4893                 }
4894                 /* Remove trailing slashes */
4895                 len = strlen(service);
4896                 while(len > 0 && service[len - 1] == '\\') {
4897                         --len;
4898                         service[len] = '\0';
4899                 }
4900         }
4901
4902         if ( strlen(new_workgroup) != 0 ) {
4903                 set_global_myworkgroup( new_workgroup );
4904         }
4905
4906         if ( strlen(calling_name) != 0 ) {
4907                 set_global_myname( calling_name );
4908         } else {
4909                 TALLOC_FREE(calling_name);
4910                 calling_name = talloc_strdup(frame, global_myname() );
4911         }
4912
4913         smb_encrypt = get_cmdline_auth_info_smb_encrypt();
4914         init_names();
4915
4916         if(new_name_resolve_order)
4917                 lp_set_name_resolve_order(new_name_resolve_order);
4918
4919         if (!tar_type && !query_host && !service && !message) {
4920                 poptPrintUsage(pc, stderr, 0);
4921                 exit(1);
4922         }
4923
4924         poptFreeContext(pc);
4925
4926         /* Store the username and password for dfs support */
4927
4928         cli_cm_set_credentials();
4929
4930         DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4931
4932         if (tar_type) {
4933                 if (cmdstr)
4934                         process_command_string(cmdstr);
4935                 return do_tar_op(base_directory);
4936         }
4937
4938         if (query_host && *query_host) {
4939                 char *qhost = query_host;
4940                 char *slash;
4941
4942                 while (*qhost == '\\' || *qhost == '/')
4943                         qhost++;
4944
4945                 if ((slash = strchr_m(qhost, '/'))
4946                     || (slash = strchr_m(qhost, '\\'))) {
4947                         *slash = 0;
4948                 }
4949
4950                 if ((p=strchr_m(qhost, '#'))) {
4951                         *p = 0;
4952                         p++;
4953                         sscanf(p, "%x", &name_type);
4954                         cli_cm_set_dest_name_type( name_type );
4955                 }
4956
4957                 return do_host_query(qhost);
4958         }
4959
4960         if (message) {
4961                 return do_message_op();
4962         }
4963
4964         if (process(base_directory)) {
4965                 return 1;
4966         }
4967
4968         TALLOC_FREE(frame);
4969         return rc;
4970 }