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