Convert receive_smb_raw to NTSTATUS
[tprouty/samba.git] / source / 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                 char *saveptr;
1467
1468                 ddir2 = talloc_strdup(ctx, "");
1469                 if (!ddir2) {
1470                         return 1;
1471                 }
1472
1473                 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1474                         return 1;
1475                 }
1476
1477                 ddir = talloc_strdup(ctx, targetname);
1478                 if (!ddir) {
1479                         return 1;
1480                 }
1481                 trim_char(ddir,'.','\0');
1482                 p = strtok_r(ddir, "/\\", &saveptr);
1483                 while (p) {
1484                         ddir2 = talloc_asprintf_append(ddir2, p);
1485                         if (!ddir2) {
1486                                 return 1;
1487                         }
1488                         if (!cli_chkpath(targetcli, ddir2)) {
1489                                 do_mkdir(ddir2);
1490                         }
1491                         ddir2 = talloc_asprintf_append(ddir2, CLI_DIRSEP_STR);
1492                         if (!ddir2) {
1493                                 return 1;
1494                         }
1495                         p = strtok_r(NULL, "/\\", &saveptr);
1496                 }
1497         } else {
1498                 do_mkdir(mask);
1499         }
1500
1501         return 0;
1502 }
1503
1504 /****************************************************************************
1505  Show alt name.
1506 ****************************************************************************/
1507
1508 static int cmd_altname(void)
1509 {
1510         TALLOC_CTX *ctx = talloc_tos();
1511         char *name;
1512         char *buf;
1513
1514         name = talloc_strdup(ctx, client_get_cur_dir());
1515         if (!name) {
1516                 return 1;
1517         }
1518
1519         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1520                 d_printf("altname <file>\n");
1521                 return 1;
1522         }
1523         name = talloc_asprintf_append(name, buf);
1524         if (!name) {
1525                 return 1;
1526         }
1527         do_altname(name);
1528         return 0;
1529 }
1530
1531 /****************************************************************************
1532  Show all info we can get
1533 ****************************************************************************/
1534
1535 static int do_allinfo(const char *name)
1536 {
1537         fstring altname;
1538         struct timespec b_time, a_time, m_time, c_time;
1539         SMB_OFF_T size;
1540         uint16_t mode;
1541         SMB_INO_T ino;
1542         NTTIME tmp;
1543         unsigned int num_streams;
1544         struct stream_struct *streams;
1545         unsigned int i;
1546
1547         if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1548                 d_printf("%s getting alt name for %s\n",
1549                          cli_errstr(cli),name);
1550                 return false;
1551         }
1552         d_printf("altname: %s\n", altname);
1553
1554         if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1555                             &size, &mode, &ino)) {
1556                 d_printf("%s getting pathinfo for %s\n",
1557                          cli_errstr(cli),name);
1558                 return false;
1559         }
1560
1561         unix_timespec_to_nt_time(&tmp, b_time);
1562         d_printf("create_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1563
1564         unix_timespec_to_nt_time(&tmp, a_time);
1565         d_printf("access_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1566
1567         unix_timespec_to_nt_time(&tmp, m_time);
1568         d_printf("write_time:     %s\n", nt_time_string(talloc_tos(), tmp));
1569
1570         unix_timespec_to_nt_time(&tmp, c_time);
1571         d_printf("change_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1572
1573         if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1574                                    &streams)) {
1575                 d_printf("%s getting streams for %s\n",
1576                          cli_errstr(cli),name);
1577                 return false;
1578         }
1579
1580         for (i=0; i<num_streams; i++) {
1581                 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1582                          (unsigned long long)streams[i].size);
1583         }
1584
1585         return 0;
1586 }
1587
1588 /****************************************************************************
1589  Show all info we can get
1590 ****************************************************************************/
1591
1592 static int cmd_allinfo(void)
1593 {
1594         TALLOC_CTX *ctx = talloc_tos();
1595         char *name;
1596         char *buf;
1597
1598         name = talloc_strdup(ctx, client_get_cur_dir());
1599         if (!name) {
1600                 return 1;
1601         }
1602
1603         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1604                 d_printf("allinfo <file>\n");
1605                 return 1;
1606         }
1607         name = talloc_asprintf_append(name, buf);
1608         if (!name) {
1609                 return 1;
1610         }
1611
1612         do_allinfo(name);
1613
1614         return 0;
1615 }
1616
1617 /****************************************************************************
1618  Put a single file.
1619 ****************************************************************************/
1620
1621 static int do_put(const char *rname, const char *lname, bool reput)
1622 {
1623         TALLOC_CTX *ctx = talloc_tos();
1624         int fnum;
1625         XFILE *f;
1626         SMB_OFF_T start = 0;
1627         off_t nread = 0;
1628         char *buf = NULL;
1629         int maxwrite = io_bufsize;
1630         int rc = 0;
1631         struct timeval tp_start;
1632         struct cli_state *targetcli;
1633         char *targetname = NULL;
1634
1635         if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1636                 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1637                 return 1;
1638         }
1639
1640         GetTimeOfDay(&tp_start);
1641
1642         if (reput) {
1643                 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1644                 if (fnum >= 0) {
1645                         if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1646                             !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1647                                 d_printf("getattrib: %s\n",cli_errstr(cli));
1648                                 return 1;
1649                         }
1650                 }
1651         } else {
1652                 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1653         }
1654
1655         if (fnum == -1) {
1656                 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1657                 return 1;
1658         }
1659
1660         /* allow files to be piped into smbclient
1661            jdblair 24.jun.98
1662
1663            Note that in this case this function will exit(0) rather
1664            than returning. */
1665         if (!strcmp(lname, "-")) {
1666                 f = x_stdin;
1667                 /* size of file is not known */
1668         } else {
1669                 f = x_fopen(lname,O_RDONLY, 0);
1670                 if (f && reput) {
1671                         if (x_tseek(f, start, SEEK_SET) == -1) {
1672                                 d_printf("Error seeking local file\n");
1673                                 return 1;
1674                         }
1675                 }
1676         }
1677
1678         if (!f) {
1679                 d_printf("Error opening local file %s\n",lname);
1680                 return 1;
1681         }
1682
1683         DEBUG(1,("putting file %s as %s ",lname,
1684                  rname));
1685
1686         buf = (char *)SMB_MALLOC(maxwrite);
1687         if (!buf) {
1688                 d_printf("ERROR: Not enough memory!\n");
1689                 return 1;
1690         }
1691         while (!x_feof(f)) {
1692                 int n = maxwrite;
1693                 int ret;
1694
1695                 if ((n = readfile(buf,n,f)) < 1) {
1696                         if((n == 0) && x_feof(f))
1697                                 break; /* Empty local file. */
1698
1699                         d_printf("Error reading local file: %s\n", strerror(errno));
1700                         rc = 1;
1701                         break;
1702                 }
1703
1704                 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1705
1706                 if (n != ret) {
1707                         d_printf("Error writing file: %s\n", cli_errstr(cli));
1708                         rc = 1;
1709                         break;
1710                 }
1711
1712                 nread += n;
1713         }
1714
1715         if (!cli_close(targetcli, fnum)) {
1716                 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1717                 x_fclose(f);
1718                 SAFE_FREE(buf);
1719                 return 1;
1720         }
1721
1722         if (f != x_stdin) {
1723                 x_fclose(f);
1724         }
1725
1726         SAFE_FREE(buf);
1727
1728         {
1729                 struct timeval tp_end;
1730                 int this_time;
1731
1732                 GetTimeOfDay(&tp_end);
1733                 this_time =
1734                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1735                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1736                 put_total_time_ms += this_time;
1737                 put_total_size += nread;
1738
1739                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1740                          nread / (1.024*this_time + 1.0e-4),
1741                          put_total_size / (1.024*put_total_time_ms)));
1742         }
1743
1744         if (f == x_stdin) {
1745                 cli_cm_shutdown();
1746                 exit(0);
1747         }
1748
1749         return rc;
1750 }
1751
1752 /****************************************************************************
1753  Put a file.
1754 ****************************************************************************/
1755
1756 static int cmd_put(void)
1757 {
1758         TALLOC_CTX *ctx = talloc_tos();
1759         char *lname;
1760         char *rname;
1761         char *buf;
1762
1763         rname = talloc_asprintf(ctx,
1764                         "%s%s",
1765                         client_get_cur_dir(),
1766                         CLI_DIRSEP_STR);
1767         if (!rname) {
1768                 return 1;
1769         }
1770
1771         if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1772                 d_printf("put <filename>\n");
1773                 return 1;
1774         }
1775
1776         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1777                 rname = talloc_asprintf_append(rname, buf);
1778         } else {
1779                 rname = talloc_asprintf_append(rname, lname);
1780         }
1781         if (!rname) {
1782                 return 1;
1783         }
1784
1785         rname = clean_name(ctx, rname);
1786         if (!rname) {
1787                 return 1;
1788         }
1789
1790         {
1791                 SMB_STRUCT_STAT st;
1792                 /* allow '-' to represent stdin
1793                    jdblair, 24.jun.98 */
1794                 if (!file_exist(lname,&st) &&
1795                     (strcmp(lname,"-"))) {
1796                         d_printf("%s does not exist\n",lname);
1797                         return 1;
1798                 }
1799         }
1800
1801         return do_put(rname, lname, false);
1802 }
1803
1804 /*************************************
1805  File list structure.
1806 *************************************/
1807
1808 static struct file_list {
1809         struct file_list *prev, *next;
1810         char *file_path;
1811         bool isdir;
1812 } *file_list;
1813
1814 /****************************************************************************
1815  Free a file_list structure.
1816 ****************************************************************************/
1817
1818 static void free_file_list (struct file_list *list_head)
1819 {
1820         struct file_list *list, *next;
1821
1822         for (list = list_head; list; list = next) {
1823                 next = list->next;
1824                 DLIST_REMOVE(list_head, list);
1825                 SAFE_FREE(list->file_path);
1826                 SAFE_FREE(list);
1827         }
1828 }
1829
1830 /****************************************************************************
1831  Seek in a directory/file list until you get something that doesn't start with
1832  the specified name.
1833 ****************************************************************************/
1834
1835 static bool seek_list(struct file_list *list, char *name)
1836 {
1837         while (list) {
1838                 trim_string(list->file_path,"./","\n");
1839                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1840                         return true;
1841                 }
1842                 list = list->next;
1843         }
1844
1845         return false;
1846 }
1847
1848 /****************************************************************************
1849  Set the file selection mask.
1850 ****************************************************************************/
1851
1852 static int cmd_select(void)
1853 {
1854         TALLOC_CTX *ctx = talloc_tos();
1855         char *new_fs = NULL;
1856         next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1857                 ;
1858         if (new_fs) {
1859                 client_set_fileselection(new_fs);
1860         } else {
1861                 client_set_fileselection("");
1862         }
1863         return 0;
1864 }
1865
1866 /****************************************************************************
1867   Recursive file matching function act as find
1868   match must be always set to true when calling this function
1869 ****************************************************************************/
1870
1871 static int file_find(struct file_list **list, const char *directory,
1872                       const char *expression, bool match)
1873 {
1874         SMB_STRUCT_DIR *dir;
1875         struct file_list *entry;
1876         struct stat statbuf;
1877         int ret;
1878         char *path;
1879         bool isdir;
1880         const char *dname;
1881
1882         dir = sys_opendir(directory);
1883         if (!dir)
1884                 return -1;
1885
1886         while ((dname = readdirname(dir))) {
1887                 if (!strcmp("..", dname))
1888                         continue;
1889                 if (!strcmp(".", dname))
1890                         continue;
1891
1892                 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1893                         continue;
1894                 }
1895
1896                 isdir = false;
1897                 if (!match || !gen_fnmatch(expression, dname)) {
1898                         if (recurse) {
1899                                 ret = stat(path, &statbuf);
1900                                 if (ret == 0) {
1901                                         if (S_ISDIR(statbuf.st_mode)) {
1902                                                 isdir = true;
1903                                                 ret = file_find(list, path, expression, false);
1904                                         }
1905                                 } else {
1906                                         d_printf("file_find: cannot stat file %s\n", path);
1907                                 }
1908
1909                                 if (ret == -1) {
1910                                         SAFE_FREE(path);
1911                                         sys_closedir(dir);
1912                                         return -1;
1913                                 }
1914                         }
1915                         entry = SMB_MALLOC_P(struct file_list);
1916                         if (!entry) {
1917                                 d_printf("Out of memory in file_find\n");
1918                                 sys_closedir(dir);
1919                                 return -1;
1920                         }
1921                         entry->file_path = path;
1922                         entry->isdir = isdir;
1923                         DLIST_ADD(*list, entry);
1924                 } else {
1925                         SAFE_FREE(path);
1926                 }
1927         }
1928
1929         sys_closedir(dir);
1930         return 0;
1931 }
1932
1933 /****************************************************************************
1934  mput some files.
1935 ****************************************************************************/
1936
1937 static int cmd_mput(void)
1938 {
1939         TALLOC_CTX *ctx = talloc_tos();
1940         char *p = NULL;
1941
1942         while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1943                 int ret;
1944                 struct file_list *temp_list;
1945                 char *quest, *lname, *rname;
1946
1947                 file_list = NULL;
1948
1949                 ret = file_find(&file_list, ".", p, true);
1950                 if (ret) {
1951                         free_file_list(file_list);
1952                         continue;
1953                 }
1954
1955                 quest = NULL;
1956                 lname = NULL;
1957                 rname = NULL;
1958
1959                 for (temp_list = file_list; temp_list;
1960                      temp_list = temp_list->next) {
1961
1962                         SAFE_FREE(lname);
1963                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1964                                 continue;
1965                         }
1966                         trim_string(lname, "./", "/");
1967
1968                         /* check if it's a directory */
1969                         if (temp_list->isdir) {
1970                                 /* if (!recurse) continue; */
1971
1972                                 SAFE_FREE(quest);
1973                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1974                                         break;
1975                                 }
1976                                 if (prompt && !yesno(quest)) { /* No */
1977                                         /* Skip the directory */
1978                                         lname[strlen(lname)-1] = '/';
1979                                         if (!seek_list(temp_list, lname))
1980                                                 break;
1981                                 } else { /* Yes */
1982                                         SAFE_FREE(rname);
1983                                         if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) {
1984                                                 break;
1985                                         }
1986                                         string_replace(rname,'/','\\');
1987                                         if (!cli_chkpath(cli, rname) &&
1988                                             !do_mkdir(rname)) {
1989                                                 DEBUG (0, ("Unable to make dir, skipping..."));
1990                                                 /* Skip the directory */
1991                                                 lname[strlen(lname)-1] = '/';
1992                                                 if (!seek_list(temp_list, lname)) {
1993                                                         break;
1994                                                 }
1995                                         }
1996                                 }
1997                                 continue;
1998                         } else {
1999                                 SAFE_FREE(quest);
2000                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2001                                         break;
2002                                 }
2003                                 if (prompt && !yesno(quest)) {
2004                                         /* No */
2005                                         continue;
2006                                 }
2007
2008                                 /* Yes */
2009                                 SAFE_FREE(rname);
2010                                 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) {
2011                                         break;
2012                                 }
2013                         }
2014
2015                         string_replace(rname,'/','\\');
2016
2017                         do_put(rname, lname, false);
2018                 }
2019                 free_file_list(file_list);
2020                 SAFE_FREE(quest);
2021                 SAFE_FREE(lname);
2022                 SAFE_FREE(rname);
2023         }
2024
2025         return 0;
2026 }
2027
2028 /****************************************************************************
2029  Cancel a print job.
2030 ****************************************************************************/
2031
2032 static int do_cancel(int job)
2033 {
2034         if (cli_printjob_del(cli, job)) {
2035                 d_printf("Job %d cancelled\n",job);
2036                 return 0;
2037         } else {
2038                 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2039                 return 1;
2040         }
2041 }
2042
2043 /****************************************************************************
2044  Cancel a print job.
2045 ****************************************************************************/
2046
2047 static int cmd_cancel(void)
2048 {
2049         TALLOC_CTX *ctx = talloc_tos();
2050         char *buf = NULL;
2051         int job;
2052
2053         if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2054                 d_printf("cancel <jobid> ...\n");
2055                 return 1;
2056         }
2057         do {
2058                 job = atoi(buf);
2059                 do_cancel(job);
2060         } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2061
2062         return 0;
2063 }
2064
2065 /****************************************************************************
2066  Print a file.
2067 ****************************************************************************/
2068
2069 static int cmd_print(void)
2070 {
2071         TALLOC_CTX *ctx = talloc_tos();
2072         char *lname = NULL;
2073         char *rname = NULL;
2074         char *p = NULL;
2075
2076         if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2077                 d_printf("print <filename>\n");
2078                 return 1;
2079         }
2080
2081         rname = talloc_strdup(ctx, lname);
2082         if (!rname) {
2083                 return 1;
2084         }
2085         p = strrchr_m(rname,'/');
2086         if (p) {
2087                 rname = talloc_asprintf(ctx,
2088                                         "%s-%d",
2089                                         p+1,
2090                                         (int)sys_getpid());
2091         }
2092         if (strequal(lname,"-")) {
2093                 rname = talloc_asprintf(ctx,
2094                                 "stdin-%d",
2095                                 (int)sys_getpid());
2096         }
2097         if (!rname) {
2098                 return 1;
2099         }
2100
2101         return do_put(rname, lname, false);
2102 }
2103
2104 /****************************************************************************
2105  Show a print queue entry.
2106 ****************************************************************************/
2107
2108 static void queue_fn(struct print_job_info *p)
2109 {
2110         d_printf("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name);
2111 }
2112
2113 /****************************************************************************
2114  Show a print queue.
2115 ****************************************************************************/
2116
2117 static int cmd_queue(void)
2118 {
2119         cli_print_queue(cli, queue_fn);
2120         return 0;
2121 }
2122
2123 /****************************************************************************
2124  Delete some files.
2125 ****************************************************************************/
2126
2127 static void do_del(file_info *finfo, const char *dir)
2128 {
2129         TALLOC_CTX *ctx = talloc_tos();
2130         char *mask = NULL;
2131
2132         mask = talloc_asprintf(ctx,
2133                                 "%s%c%s",
2134                                 dir,
2135                                 CLI_DIRSEP_CHAR,
2136                                 finfo->name);
2137         if (!mask) {
2138                 return;
2139         }
2140
2141         if (finfo->mode & aDIR) {
2142                 TALLOC_FREE(mask);
2143                 return;
2144         }
2145
2146         if (!cli_unlink(finfo->cli, mask)) {
2147                 d_printf("%s deleting remote file %s\n",
2148                                 cli_errstr(finfo->cli),mask);
2149         }
2150         TALLOC_FREE(mask);
2151 }
2152
2153 /****************************************************************************
2154  Delete some files.
2155 ****************************************************************************/
2156
2157 static int cmd_del(void)
2158 {
2159         TALLOC_CTX *ctx = talloc_tos();
2160         char *mask = NULL;
2161         char *buf = NULL;
2162         uint16 attribute = aSYSTEM | aHIDDEN;
2163
2164         if (recurse) {
2165                 attribute |= aDIR;
2166         }
2167
2168         mask = talloc_strdup(ctx, client_get_cur_dir());
2169         if (!mask) {
2170                 return 1;
2171         }
2172         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2173                 d_printf("del <filename>\n");
2174                 return 1;
2175         }
2176         mask = talloc_asprintf_append(mask, buf);
2177         if (!mask) {
2178                 return 1;
2179         }
2180
2181         do_list(mask,attribute,do_del,false,false);
2182         return 0;
2183 }
2184
2185 /****************************************************************************
2186  Wildcard delete some files.
2187 ****************************************************************************/
2188
2189 static int cmd_wdel(void)
2190 {
2191         TALLOC_CTX *ctx = talloc_tos();
2192         char *mask = NULL;
2193         char *buf = NULL;
2194         uint16 attribute;
2195         struct cli_state *targetcli;
2196         char *targetname = NULL;
2197
2198         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2199                 d_printf("wdel 0x<attrib> <wcard>\n");
2200                 return 1;
2201         }
2202
2203         attribute = (uint16)strtol(buf, (char **)NULL, 16);
2204
2205         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2206                 d_printf("wdel 0x<attrib> <wcard>\n");
2207                 return 1;
2208         }
2209
2210         mask = talloc_asprintf(ctx, "%s%s",
2211                         client_get_cur_dir(),
2212                         buf);
2213         if (!mask) {
2214                 return 1;
2215         }
2216
2217         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2218                 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2219                 return 1;
2220         }
2221
2222         if (!cli_unlink_full(targetcli, targetname, attribute)) {
2223                 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2224         }
2225         return 0;
2226 }
2227
2228 /****************************************************************************
2229 ****************************************************************************/
2230
2231 static int cmd_open(void)
2232 {
2233         TALLOC_CTX *ctx = talloc_tos();
2234         char *mask = NULL;
2235         char *buf = NULL;
2236         char *targetname = NULL;
2237         struct cli_state *targetcli;
2238         int fnum;
2239
2240         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2241                 d_printf("open <filename>\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 (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2253                 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2254                 return 1;
2255         }
2256
2257         fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2258         if (fnum == -1) {
2259                 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2260                 if (fnum != -1) {
2261                         d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2262                 } else {
2263                         d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2264                 }
2265         } else {
2266                 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2267         }
2268         return 0;
2269 }
2270
2271 static int cmd_posix_encrypt(void)
2272 {
2273         TALLOC_CTX *ctx = talloc_tos();
2274         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2275
2276         if (cli->use_kerberos) {
2277                 status = cli_gss_smb_encryption_start(cli);
2278         } else {
2279                 char *domain = NULL;
2280                 char *user = NULL;
2281                 char *password = NULL;
2282
2283                 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2284                         d_printf("posix_encrypt domain user password\n");
2285                         return 1;
2286                 }
2287
2288                 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2289                         d_printf("posix_encrypt domain user password\n");
2290                         return 1;
2291                 }
2292
2293                 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2294                         d_printf("posix_encrypt domain user password\n");
2295                         return 1;
2296                 }
2297
2298                 status = cli_raw_ntlm_smb_encryption_start(cli,
2299                                                         user,
2300                                                         password,
2301                                                         domain);
2302         }
2303
2304         if (!NT_STATUS_IS_OK(status)) {
2305                 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2306         } else {
2307                 d_printf("encryption on\n");
2308                 smb_encrypt = true;
2309         }
2310
2311         return 0;
2312 }
2313
2314 /****************************************************************************
2315 ****************************************************************************/
2316
2317 static int cmd_posix_open(void)
2318 {
2319         TALLOC_CTX *ctx = talloc_tos();
2320         char *mask = NULL;
2321         char *buf = NULL;
2322         char *targetname = NULL;
2323         struct cli_state *targetcli;
2324         mode_t mode;
2325         int fnum;
2326
2327         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2328                 d_printf("posix_open <filename> 0<mode>\n");
2329                 return 1;
2330         }
2331         mask = talloc_asprintf(ctx,
2332                         "%s%s",
2333                         client_get_cur_dir(),
2334                         buf);
2335         if (!mask) {
2336                 return 1;
2337         }
2338
2339         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2340                 d_printf("posix_open <filename> 0<mode>\n");
2341                 return 1;
2342         }
2343         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2344
2345         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2346                 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2347                 return 1;
2348         }
2349
2350         fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2351         if (fnum == -1) {
2352                 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2353                 if (fnum != -1) {
2354                         d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2355                 } else {
2356                         d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2357                 }
2358         } else {
2359                 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2360         }
2361
2362         return 0;
2363 }
2364
2365 static int cmd_posix_mkdir(void)
2366 {
2367         TALLOC_CTX *ctx = talloc_tos();
2368         char *mask = NULL;
2369         char *buf = NULL;
2370         char *targetname = NULL;
2371         struct cli_state *targetcli;
2372         mode_t mode;
2373         int fnum;
2374
2375         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2376                 d_printf("posix_mkdir <filename> 0<mode>\n");
2377                 return 1;
2378         }
2379         mask = talloc_asprintf(ctx,
2380                         "%s%s",
2381                         client_get_cur_dir(),
2382                         buf);
2383         if (!mask) {
2384                 return 1;
2385         }
2386
2387         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2388                 d_printf("posix_mkdir <filename> 0<mode>\n");
2389                 return 1;
2390         }
2391         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2392
2393         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2394                 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2395                 return 1;
2396         }
2397
2398         fnum = cli_posix_mkdir(targetcli, targetname, mode);
2399         if (fnum == -1) {
2400                 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2401         } else {
2402                 d_printf("posix_mkdir created directory %s\n", targetname);
2403         }
2404         return 0;
2405 }
2406
2407 static int cmd_posix_unlink(void)
2408 {
2409         TALLOC_CTX *ctx = talloc_tos();
2410         char *mask = NULL;
2411         char *buf = NULL;
2412         char *targetname = NULL;
2413         struct cli_state *targetcli;
2414
2415         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2416                 d_printf("posix_unlink <filename>\n");
2417                 return 1;
2418         }
2419         mask = talloc_asprintf(ctx,
2420                         "%s%s",
2421                         client_get_cur_dir(),
2422                         buf);
2423         if (!mask) {
2424                 return 1;
2425         }
2426
2427         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2428                 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2429                 return 1;
2430         }
2431
2432         if (!cli_posix_unlink(targetcli, targetname)) {
2433                 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2434         } else {
2435                 d_printf("posix_unlink deleted file %s\n", targetname);
2436         }
2437
2438         return 0;
2439 }
2440
2441 static int cmd_posix_rmdir(void)
2442 {
2443         TALLOC_CTX *ctx = talloc_tos();
2444         char *mask = NULL;
2445         char *buf = NULL;
2446         char *targetname = NULL;
2447         struct cli_state *targetcli;
2448
2449         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2450                 d_printf("posix_rmdir <filename>\n");
2451                 return 1;
2452         }
2453         mask = talloc_asprintf(ctx,
2454                         "%s%s",
2455                         client_get_cur_dir(),
2456                         buf);
2457         if (!mask) {
2458                 return 1;
2459         }
2460
2461         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2462                 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2463                 return 1;
2464         }
2465
2466         if (!cli_posix_rmdir(targetcli, targetname)) {
2467                 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2468         } else {
2469                 d_printf("posix_rmdir deleted directory %s\n", targetname);
2470         }
2471
2472         return 0;
2473 }
2474
2475 static int cmd_close(void)
2476 {
2477         TALLOC_CTX *ctx = talloc_tos();
2478         char *buf = NULL;
2479         int fnum;
2480
2481         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2482                 d_printf("close <fnum>\n");
2483                 return 1;
2484         }
2485
2486         fnum = atoi(buf);
2487         /* We really should use the targetcli here.... */
2488         if (!cli_close(cli, fnum)) {
2489                 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2490                 return 1;
2491         }
2492         return 0;
2493 }
2494
2495 static int cmd_posix(void)
2496 {
2497         TALLOC_CTX *ctx = talloc_tos();
2498         uint16 major, minor;
2499         uint32 caplow, caphigh;
2500         char *caps;
2501
2502         if (!SERVER_HAS_UNIX_CIFS(cli)) {
2503                 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2504                 return 1;
2505         }
2506
2507         if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2508                 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2509                 return 1;
2510         }
2511
2512         d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2513
2514         caps = talloc_strdup(ctx, "");
2515         if (!caps) {
2516                 return 1;
2517         }
2518         if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2519                 caps = talloc_asprintf_append(caps, "locks ");
2520                 if (!caps) {
2521                         return 1;
2522                 }
2523         }
2524         if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2525                 caps = talloc_asprintf_append(caps, "acls ");
2526                 if (!caps) {
2527                         return 1;
2528                 }
2529         }
2530         if (caplow & CIFS_UNIX_XATTTR_CAP) {
2531                 caps = talloc_asprintf_append(caps, "eas ");
2532                 if (!caps) {
2533                         return 1;
2534                 }
2535         }
2536         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2537                 caps = talloc_asprintf_append(caps, "pathnames ");
2538                 if (!caps) {
2539                         return 1;
2540                 }
2541         }
2542         if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2543                 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2544                 if (!caps) {
2545                         return 1;
2546                 }
2547         }
2548         if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2549                 caps = talloc_asprintf_append(caps, "large_read ");
2550                 if (!caps) {
2551                         return 1;
2552                 }
2553         }
2554         if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2555                 caps = talloc_asprintf_append(caps, "large_write ");
2556                 if (!caps) {
2557                         return 1;
2558                 }
2559         }
2560         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2561                 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2562                 if (!caps) {
2563                         return 1;
2564                 }
2565         }
2566         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2567                 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2568                 if (!caps) {
2569                         return 1;
2570                 }
2571         }
2572
2573         if (*caps && caps[strlen(caps)-1] == ' ') {
2574                 caps[strlen(caps)-1] = '\0';
2575         }
2576
2577         d_printf("Server supports CIFS capabilities %s\n", caps);
2578
2579         if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2580                 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2581                 return 1;
2582         }
2583
2584         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2585                 CLI_DIRSEP_CHAR = '/';
2586                 *CLI_DIRSEP_STR = '/';
2587                 client_set_cur_dir(CLI_DIRSEP_STR);
2588         }
2589
2590         return 0;
2591 }
2592
2593 static int cmd_lock(void)
2594 {
2595         TALLOC_CTX *ctx = talloc_tos();
2596         char *buf = NULL;
2597         SMB_BIG_UINT start, len;
2598         enum brl_type lock_type;
2599         int fnum;
2600
2601         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2602                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2603                 return 1;
2604         }
2605         fnum = atoi(buf);
2606
2607         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2608                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2609                 return 1;
2610         }
2611
2612         if (*buf == 'r' || *buf == 'R') {
2613                 lock_type = READ_LOCK;
2614         } else if (*buf == 'w' || *buf == 'W') {
2615                 lock_type = WRITE_LOCK;
2616         } else {
2617                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2618                 return 1;
2619         }
2620
2621         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2622                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2623                 return 1;
2624         }
2625
2626         start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2627
2628         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2629                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2630                 return 1;
2631         }
2632
2633         len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2634
2635         if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2636                 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2637         }
2638
2639         return 0;
2640 }
2641
2642 static int cmd_unlock(void)
2643 {
2644         TALLOC_CTX *ctx = talloc_tos();
2645         char *buf = NULL;
2646         SMB_BIG_UINT start, len;
2647         int fnum;
2648
2649         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2650                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2651                 return 1;
2652         }
2653         fnum = atoi(buf);
2654
2655         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2656                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2657                 return 1;
2658         }
2659
2660         start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2661
2662         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2663                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2664                 return 1;
2665         }
2666
2667         len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2668
2669         if (!cli_posix_unlock(cli, fnum, start, len)) {
2670                 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2671         }
2672
2673         return 0;
2674 }
2675
2676
2677 /****************************************************************************
2678  Remove a directory.
2679 ****************************************************************************/
2680
2681 static int cmd_rmdir(void)
2682 {
2683         TALLOC_CTX *ctx = talloc_tos();
2684         char *mask = NULL;
2685         char *buf = NULL;
2686         char *targetname = NULL;
2687         struct cli_state *targetcli;
2688
2689         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2690                 d_printf("rmdir <dirname>\n");
2691                 return 1;
2692         }
2693         mask = talloc_asprintf(ctx,
2694                         "%s%s",
2695                         client_get_cur_dir(),
2696                         buf);
2697         if (!mask) {
2698                 return 1;
2699         }
2700
2701         if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2702                 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2703                 return 1;
2704         }
2705
2706         if (!cli_rmdir(targetcli, targetname)) {
2707                 d_printf("%s removing remote directory file %s\n",
2708                          cli_errstr(targetcli),mask);
2709         }
2710
2711         return 0;
2712 }
2713
2714 /****************************************************************************
2715  UNIX hardlink.
2716 ****************************************************************************/
2717
2718 static int cmd_link(void)
2719 {
2720         TALLOC_CTX *ctx = talloc_tos();
2721         char *oldname = NULL;
2722         char *newname = NULL;
2723         char *buf = NULL;
2724         char *buf2 = NULL;
2725         char *targetname = NULL;
2726         struct cli_state *targetcli;
2727
2728         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2729             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2730                 d_printf("link <oldname> <newname>\n");
2731                 return 1;
2732         }
2733         oldname = talloc_asprintf(ctx,
2734                         "%s%s",
2735                         client_get_cur_dir(),
2736                         buf);
2737         if (!oldname) {
2738                 return 1;
2739         }
2740         newname = talloc_asprintf(ctx,
2741                         "%s%s",
2742                         client_get_cur_dir(),
2743                         buf2);
2744         if (!newname) {
2745                 return 1;
2746         }
2747
2748         if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2749                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2750                 return 1;
2751         }
2752
2753         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2754                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2755                 return 1;
2756         }
2757
2758         if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2759                 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2760                 return 1;
2761         }
2762         return 0;
2763 }
2764
2765 /****************************************************************************
2766  UNIX symlink.
2767 ****************************************************************************/
2768
2769 static int cmd_symlink(void)
2770 {
2771         TALLOC_CTX *ctx = talloc_tos();
2772         char *oldname = NULL;
2773         char *newname = NULL;
2774         char *buf = NULL;
2775         char *buf2 = NULL;
2776         char *targetname = NULL;
2777         struct cli_state *targetcli;
2778
2779         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2780             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2781                 d_printf("symlink <oldname> <newname>\n");
2782                 return 1;
2783         }
2784         oldname = talloc_asprintf(ctx,
2785                         "%s%s",
2786                         client_get_cur_dir(),
2787                         buf);
2788         if (!oldname) {
2789                 return 1;
2790         }
2791         newname = talloc_asprintf(ctx,
2792                         "%s%s",
2793                         client_get_cur_dir(),
2794                         buf2);
2795         if (!newname) {
2796                 return 1;
2797         }
2798
2799         if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2800                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2801                 return 1;
2802         }
2803
2804         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2805                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2806                 return 1;
2807         }
2808
2809         if (!cli_unix_symlink(targetcli, targetname, newname)) {
2810                 d_printf("%s symlinking files (%s -> %s)\n",
2811                         cli_errstr(targetcli), newname, targetname);
2812                 return 1;
2813         }
2814
2815         return 0;
2816 }
2817
2818 /****************************************************************************
2819  UNIX chmod.
2820 ****************************************************************************/
2821
2822 static int cmd_chmod(void)
2823 {
2824         TALLOC_CTX *ctx = talloc_tos();
2825         char *src = NULL;
2826         char *buf = NULL;
2827         char *buf2 = NULL;
2828         char *targetname = NULL;
2829         struct cli_state *targetcli;
2830         mode_t mode;
2831
2832         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2833             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2834                 d_printf("chmod mode file\n");
2835                 return 1;
2836         }
2837         src = talloc_asprintf(ctx,
2838                         "%s%s",
2839                         client_get_cur_dir(),
2840                         buf2);
2841         if (!src) {
2842                 return 1;
2843         }
2844
2845         mode = (mode_t)strtol(buf, NULL, 8);
2846
2847         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2848                 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2849                 return 1;
2850         }
2851
2852         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2853                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2854                 return 1;
2855         }
2856
2857         if (!cli_unix_chmod(targetcli, targetname, mode)) {
2858                 d_printf("%s chmod file %s 0%o\n",
2859                         cli_errstr(targetcli), src, (unsigned int)mode);
2860                 return 1;
2861         }
2862
2863         return 0;
2864 }
2865
2866 static const char *filetype_to_str(mode_t mode)
2867 {
2868         if (S_ISREG(mode)) {
2869                 return "regular file";
2870         } else if (S_ISDIR(mode)) {
2871                 return "directory";
2872         } else
2873 #ifdef S_ISCHR
2874         if (S_ISCHR(mode)) {
2875                 return "character device";
2876         } else
2877 #endif
2878 #ifdef S_ISBLK
2879         if (S_ISBLK(mode)) {
2880                 return "block device";
2881         } else
2882 #endif
2883 #ifdef S_ISFIFO
2884         if (S_ISFIFO(mode)) {
2885                 return "fifo";
2886         } else
2887 #endif
2888 #ifdef S_ISLNK
2889         if (S_ISLNK(mode)) {
2890                 return "symbolic link";
2891         } else
2892 #endif
2893 #ifdef S_ISSOCK
2894         if (S_ISSOCK(mode)) {
2895                 return "socket";
2896         } else
2897 #endif
2898         return "";
2899 }
2900
2901 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2902 {
2903         if (m & bt) {
2904                 return ret;
2905         } else {
2906                 return '-';
2907         }
2908 }
2909
2910 static char *unix_mode_to_str(char *s, mode_t m)
2911 {
2912         char *p = s;
2913         const char *str = filetype_to_str(m);
2914
2915         switch(str[0]) {
2916                 case 'd':
2917                         *p++ = 'd';
2918                         break;
2919                 case 'c':
2920                         *p++ = 'c';
2921                         break;
2922                 case 'b':
2923                         *p++ = 'b';
2924                         break;
2925                 case 'f':
2926                         *p++ = 'p';
2927                         break;
2928                 case 's':
2929                         *p++ = str[1] == 'y' ? 'l' : 's';
2930                         break;
2931                 case 'r':
2932                 default:
2933                         *p++ = '-';
2934                         break;
2935         }
2936         *p++ = rwx_to_str(m, S_IRUSR, 'r');
2937         *p++ = rwx_to_str(m, S_IWUSR, 'w');
2938         *p++ = rwx_to_str(m, S_IXUSR, 'x');
2939         *p++ = rwx_to_str(m, S_IRGRP, 'r');
2940         *p++ = rwx_to_str(m, S_IWGRP, 'w');
2941         *p++ = rwx_to_str(m, S_IXGRP, 'x');
2942         *p++ = rwx_to_str(m, S_IROTH, 'r');
2943         *p++ = rwx_to_str(m, S_IWOTH, 'w');
2944         *p++ = rwx_to_str(m, S_IXOTH, 'x');
2945         *p++ = '\0';
2946         return s;
2947 }
2948
2949 /****************************************************************************
2950  Utility function for UNIX getfacl.
2951 ****************************************************************************/
2952
2953 static char *perms_to_string(fstring permstr, unsigned char perms)
2954 {
2955         fstrcpy(permstr, "---");
2956         if (perms & SMB_POSIX_ACL_READ) {
2957                 permstr[0] = 'r';
2958         }
2959         if (perms & SMB_POSIX_ACL_WRITE) {
2960                 permstr[1] = 'w';
2961         }
2962         if (perms & SMB_POSIX_ACL_EXECUTE) {
2963                 permstr[2] = 'x';
2964         }
2965         return permstr;
2966 }
2967
2968 /****************************************************************************
2969  UNIX getfacl.
2970 ****************************************************************************/
2971
2972 static int cmd_getfacl(void)
2973 {
2974         TALLOC_CTX *ctx = talloc_tos();
2975         char *src = NULL;
2976         char *name = NULL;
2977         char *targetname = NULL;
2978         struct cli_state *targetcli;
2979         uint16 major, minor;
2980         uint32 caplow, caphigh;
2981         char *retbuf = NULL;
2982         size_t rb_size = 0;
2983         SMB_STRUCT_STAT sbuf;
2984         uint16 num_file_acls = 0;
2985         uint16 num_dir_acls = 0;
2986         uint16 i;
2987
2988         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2989                 d_printf("getfacl filename\n");
2990                 return 1;
2991         }
2992         src = talloc_asprintf(ctx,
2993                         "%s%s",
2994                         client_get_cur_dir(),
2995                         name);
2996         if (!src) {
2997                 return 1;
2998         }
2999
3000         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3001                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3002                 return 1;
3003         }
3004
3005         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3006                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3007                 return 1;
3008         }
3009
3010         if (!cli_unix_extensions_version(targetcli, &major, &minor,
3011                                 &caplow, &caphigh)) {
3012                 d_printf("Can't get UNIX CIFS version from server.\n");
3013                 return 1;
3014         }
3015
3016         if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3017                 d_printf("This server supports UNIX extensions "
3018                         "but doesn't support POSIX ACLs.\n");
3019                 return 1;
3020         }
3021
3022         if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3023                 d_printf("%s getfacl doing a stat on file %s\n",
3024                         cli_errstr(targetcli), src);
3025                 return 1;
3026         }
3027
3028         if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
3029                 d_printf("%s getfacl file %s\n",
3030                         cli_errstr(targetcli), src);
3031                 return 1;
3032         }
3033
3034         /* ToDo : Print out the ACL values. */
3035         if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3036                 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3037                         src, (unsigned int)CVAL(retbuf,0) );
3038                 SAFE_FREE(retbuf);
3039                 return 1;
3040         }
3041
3042         num_file_acls = SVAL(retbuf,2);
3043         num_dir_acls = SVAL(retbuf,4);
3044         if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3045                 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3046                         src,
3047                         (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3048                         (unsigned int)rb_size);
3049
3050                 SAFE_FREE(retbuf);
3051                 return 1;
3052         }
3053
3054         d_printf("# file: %s\n", src);
3055         d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3056
3057         if (num_file_acls == 0 && num_dir_acls == 0) {
3058                 d_printf("No acls found.\n");
3059         }
3060
3061         for (i = 0; i < num_file_acls; i++) {
3062                 uint32 uorg;
3063                 fstring permstring;
3064                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3065                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3066
3067                 switch(tagtype) {
3068                         case SMB_POSIX_ACL_USER_OBJ:
3069                                 d_printf("user::");
3070                                 break;
3071                         case SMB_POSIX_ACL_USER:
3072                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3073                                 d_printf("user:%u:", uorg);
3074                                 break;
3075                         case SMB_POSIX_ACL_GROUP_OBJ:
3076                                 d_printf("group::");
3077                                 break;
3078                         case SMB_POSIX_ACL_GROUP:
3079                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3080                                 d_printf("group:%u", uorg);
3081                                 break;
3082                         case SMB_POSIX_ACL_MASK:
3083                                 d_printf("mask::");
3084                                 break;
3085                         case SMB_POSIX_ACL_OTHER:
3086                                 d_printf("other::");
3087                                 break;
3088                         default:
3089                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3090                                         src, (unsigned int)tagtype );
3091                                 SAFE_FREE(retbuf);
3092                                 return 1;
3093                 }
3094
3095                 d_printf("%s\n", perms_to_string(permstring, perms));
3096         }
3097
3098         for (i = 0; i < num_dir_acls; i++) {
3099                 uint32 uorg;
3100                 fstring permstring;
3101                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3102                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3103
3104                 switch(tagtype) {
3105                         case SMB_POSIX_ACL_USER_OBJ:
3106                                 d_printf("default:user::");
3107                                 break;
3108                         case SMB_POSIX_ACL_USER:
3109                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3110                                 d_printf("default:user:%u:", uorg);
3111                                 break;
3112                         case SMB_POSIX_ACL_GROUP_OBJ:
3113                                 d_printf("default:group::");
3114                                 break;
3115                         case SMB_POSIX_ACL_GROUP:
3116                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3117                                 d_printf("default:group:%u", uorg);
3118                                 break;
3119                         case SMB_POSIX_ACL_MASK:
3120                                 d_printf("default:mask::");
3121                                 break;
3122                         case SMB_POSIX_ACL_OTHER:
3123                                 d_printf("default:other::");
3124                                 break;
3125                         default:
3126                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3127                                         src, (unsigned int)tagtype );
3128                                 SAFE_FREE(retbuf);
3129                                 return 1;
3130                 }
3131
3132                 d_printf("%s\n", perms_to_string(permstring, perms));
3133         }
3134
3135         SAFE_FREE(retbuf);
3136         return 0;
3137 }
3138
3139 /****************************************************************************
3140  UNIX stat.
3141 ****************************************************************************/
3142
3143 static int cmd_stat(void)
3144 {
3145         TALLOC_CTX *ctx = talloc_tos();
3146         char *src = NULL;
3147         char *name = NULL;
3148         char *targetname = NULL;
3149         struct cli_state *targetcli;
3150         fstring mode_str;
3151         SMB_STRUCT_STAT sbuf;
3152         struct tm *lt;
3153
3154         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3155                 d_printf("stat file\n");
3156                 return 1;
3157         }
3158         src = talloc_asprintf(ctx,
3159                         "%s%s",
3160                         client_get_cur_dir(),
3161                         name);
3162         if (!src) {
3163                 return 1;
3164         }
3165
3166         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3167                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3168                 return 1;
3169         }
3170
3171         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3172                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3173                 return 1;
3174         }
3175
3176         if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3177                 d_printf("%s stat file %s\n",
3178                         cli_errstr(targetcli), src);
3179                 return 1;
3180         }
3181
3182         /* Print out the stat values. */
3183         d_printf("File: %s\n", src);
3184         d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3185                 (double)sbuf.st_size,
3186                 (unsigned int)sbuf.st_blocks,
3187                 filetype_to_str(sbuf.st_mode));
3188
3189 #if defined(S_ISCHR) && defined(S_ISBLK)
3190         if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3191                 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3192                         (double)sbuf.st_ino,
3193                         (unsigned int)sbuf.st_nlink,
3194                         unix_dev_major(sbuf.st_rdev),
3195                         unix_dev_minor(sbuf.st_rdev));
3196         } else
3197 #endif
3198                 d_printf("Inode: %.0f\tLinks: %u\n",
3199                         (double)sbuf.st_ino,
3200                         (unsigned int)sbuf.st_nlink);
3201
3202         d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3203                 ((int)sbuf.st_mode & 0777),
3204                 unix_mode_to_str(mode_str, sbuf.st_mode),
3205                 (unsigned int)sbuf.st_uid,
3206                 (unsigned int)sbuf.st_gid);
3207
3208         lt = localtime(&sbuf.st_atime);
3209         if (lt) {
3210                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3211         } else {
3212                 fstrcpy(mode_str, "unknown");
3213         }
3214         d_printf("Access: %s\n", mode_str);
3215
3216         lt = localtime(&sbuf.st_mtime);
3217         if (lt) {
3218                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3219         } else {
3220                 fstrcpy(mode_str, "unknown");
3221         }
3222         d_printf("Modify: %s\n", mode_str);
3223
3224         lt = localtime(&sbuf.st_ctime);
3225         if (lt) {
3226                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3227         } else {
3228                 fstrcpy(mode_str, "unknown");
3229         }
3230         d_printf("Change: %s\n", mode_str);
3231
3232         return 0;
3233 }
3234
3235
3236 /****************************************************************************
3237  UNIX chown.
3238 ****************************************************************************/
3239
3240 static int cmd_chown(void)
3241 {
3242         TALLOC_CTX *ctx = talloc_tos();
3243         char *src = NULL;
3244         uid_t uid;
3245         gid_t gid;
3246         char *buf, *buf2, *buf3;
3247         struct cli_state *targetcli;
3248         char *targetname = NULL;
3249
3250         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3251             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3252             !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3253                 d_printf("chown uid gid file\n");
3254                 return 1;
3255         }
3256
3257         uid = (uid_t)atoi(buf);
3258         gid = (gid_t)atoi(buf2);
3259
3260         src = talloc_asprintf(ctx,
3261                         "%s%s",
3262                         client_get_cur_dir(),
3263                         buf3);
3264         if (!src) {
3265                 return 1;
3266         }
3267         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3268                 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3269                 return 1;
3270         }
3271
3272         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3273                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3274                 return 1;
3275         }
3276
3277         if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3278                 d_printf("%s chown file %s uid=%d, gid=%d\n",
3279                         cli_errstr(targetcli), src, (int)uid, (int)gid);
3280                 return 1;
3281         }
3282
3283         return 0;
3284 }
3285
3286 /****************************************************************************
3287  Rename some file.
3288 ****************************************************************************/
3289
3290 static int cmd_rename(void)
3291 {
3292         TALLOC_CTX *ctx = talloc_tos();
3293         char *src, *dest;
3294         char *buf, *buf2;
3295         struct cli_state *targetcli;
3296         char *targetsrc;
3297         char *targetdest;
3298
3299         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3300             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3301                 d_printf("rename <src> <dest>\n");
3302                 return 1;
3303         }
3304
3305         src = talloc_asprintf(ctx,
3306                         "%s%s",
3307                         client_get_cur_dir(),
3308                         buf);
3309         if (!src) {
3310                 return 1;
3311         }
3312
3313         dest = talloc_asprintf(ctx,
3314                         "%s%s",
3315                         client_get_cur_dir(),
3316                         buf2);
3317         if (!dest) {
3318                 return 1;
3319         }
3320
3321         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3322                 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3323                 return 1;
3324         }
3325
3326         if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3327                 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3328                 return 1;
3329         }
3330
3331         if (!cli_rename(targetcli, targetsrc, targetdest)) {
3332                 d_printf("%s renaming files %s -> %s \n",
3333                         cli_errstr(targetcli),
3334                         targetsrc,
3335                         targetdest);
3336                 return 1;
3337         }
3338
3339         return 0;
3340 }
3341
3342 /****************************************************************************
3343  Print the volume name.
3344 ****************************************************************************/
3345
3346 static int cmd_volume(void)
3347 {
3348         fstring volname;
3349         uint32 serial_num;
3350         time_t create_date;
3351
3352         if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3353                 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3354                 return 1;
3355         }
3356
3357         d_printf("Volume: |%s| serial number 0x%x\n",
3358                         volname, (unsigned int)serial_num);
3359         return 0;
3360 }
3361
3362 /****************************************************************************
3363  Hard link files using the NT call.
3364 ****************************************************************************/
3365
3366 static int cmd_hardlink(void)
3367 {
3368         TALLOC_CTX *ctx = talloc_tos();
3369         char *src, *dest;
3370         char *buf, *buf2;
3371         struct cli_state *targetcli;
3372         char *targetname;
3373
3374         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3375             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3376                 d_printf("hardlink <src> <dest>\n");
3377                 return 1;
3378         }
3379
3380         src = talloc_asprintf(ctx,
3381                         "%s%s",
3382                         client_get_cur_dir(),
3383                         buf);
3384         if (!src) {
3385                 return 1;
3386         }
3387
3388         dest = talloc_asprintf(ctx,
3389                         "%s%s",
3390                         client_get_cur_dir(),
3391                         buf2);
3392         if (!dest) {
3393                 return 1;
3394         }
3395
3396         if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3397                 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3398                 return 1;
3399         }
3400
3401         if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3402                 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3403                 return 1;
3404         }
3405
3406         return 0;
3407 }
3408
3409 /****************************************************************************
3410  Toggle the prompt flag.
3411 ****************************************************************************/
3412
3413 static int cmd_prompt(void)
3414 {
3415         prompt = !prompt;
3416         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3417         return 1;
3418 }
3419
3420 /****************************************************************************
3421  Set the newer than time.
3422 ****************************************************************************/
3423
3424 static int cmd_newer(void)
3425 {
3426         TALLOC_CTX *ctx = talloc_tos();
3427         char *buf;
3428         bool ok;
3429         SMB_STRUCT_STAT sbuf;
3430
3431         ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3432         if (ok && (sys_stat(buf,&sbuf) == 0)) {
3433                 newer_than = sbuf.st_mtime;
3434                 DEBUG(1,("Getting files newer than %s",
3435                          time_to_asc(newer_than)));
3436         } else {
3437                 newer_than = 0;
3438         }
3439
3440         if (ok && newer_than == 0) {
3441                 d_printf("Error setting newer-than time\n");
3442                 return 1;
3443         }
3444
3445         return 0;
3446 }
3447
3448 /****************************************************************************
3449  Set the archive level.
3450 ****************************************************************************/
3451
3452 static int cmd_archive(void)
3453 {
3454         TALLOC_CTX *ctx = talloc_tos();
3455         char *buf;
3456
3457         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3458                 archive_level = atoi(buf);
3459         } else {
3460                 d_printf("Archive level is %d\n",archive_level);
3461         }
3462
3463         return 0;
3464 }
3465
3466 /****************************************************************************
3467  Toggle the lowercaseflag.
3468 ****************************************************************************/
3469
3470 static int cmd_lowercase(void)
3471 {
3472         lowercase = !lowercase;
3473         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3474         return 0;
3475 }
3476
3477 /****************************************************************************
3478  Toggle the case sensitive flag.
3479 ****************************************************************************/
3480
3481 static int cmd_setcase(void)
3482 {
3483         bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3484
3485         cli_set_case_sensitive(cli, !orig_case_sensitive);
3486         DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3487                 "on":"off"));
3488         return 0;
3489 }
3490
3491 /****************************************************************************
3492  Toggle the showacls flag.
3493 ****************************************************************************/
3494
3495 static int cmd_showacls(void)
3496 {
3497         showacls = !showacls;
3498         DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3499         return 0;
3500 }
3501
3502
3503 /****************************************************************************
3504  Toggle the recurse flag.
3505 ****************************************************************************/
3506
3507 static int cmd_recurse(void)
3508 {
3509         recurse = !recurse;
3510         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3511         return 0;
3512 }
3513
3514 /****************************************************************************
3515  Toggle the translate flag.
3516 ****************************************************************************/
3517
3518 static int cmd_translate(void)
3519 {
3520         translation = !translation;
3521         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3522                  translation?"on":"off"));
3523         return 0;
3524 }
3525
3526 /****************************************************************************
3527  Do the lcd command.
3528  ****************************************************************************/
3529
3530 static int cmd_lcd(void)
3531 {
3532         TALLOC_CTX *ctx = talloc_tos();
3533         char *buf;
3534         char *d;
3535
3536         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3537                 chdir(buf);
3538         }
3539         d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3540         if (!d) {
3541                 return 1;
3542         }
3543         DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3544         return 0;
3545 }
3546
3547 /****************************************************************************
3548  Get a file restarting at end of local file.
3549  ****************************************************************************/
3550
3551 static int cmd_reget(void)
3552 {
3553         TALLOC_CTX *ctx = talloc_tos();
3554         char *local_name = NULL;
3555         char *remote_name = NULL;
3556         char *fname = NULL;
3557         char *p = NULL;
3558
3559         remote_name = talloc_asprintf(ctx,
3560                                 "%s%s",
3561                                 client_get_cur_dir(),
3562                                 CLI_DIRSEP_STR);
3563         if (!remote_name) {
3564                 return 1;
3565         }
3566
3567         if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3568                 d_printf("reget <filename>\n");
3569                 return 1;
3570         }
3571         remote_name = talloc_asprintf_append(remote_name, fname);
3572         if (!remote_name) {
3573                 return 1;
3574         }
3575         remote_name = clean_name(ctx,remote_name);
3576         if (!remote_name) {
3577                 return 1;
3578         }
3579
3580         local_name = fname;
3581         next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3582         if (p) {
3583                 local_name = p;
3584         }
3585
3586         return do_get(remote_name, local_name, true);
3587 }
3588
3589 /****************************************************************************
3590  Put a file restarting at end of local file.
3591  ****************************************************************************/
3592
3593 static int cmd_reput(void)
3594 {
3595         TALLOC_CTX *ctx = talloc_tos();
3596         char *local_name = NULL;
3597         char *remote_name = NULL;
3598         char *buf;
3599         SMB_STRUCT_STAT st;
3600
3601         remote_name = talloc_asprintf(ctx,
3602                                 "%s%s",
3603                                 client_get_cur_dir(),
3604                                 CLI_DIRSEP_STR);
3605         if (!remote_name) {
3606                 return 1;
3607         }
3608
3609         if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3610                 d_printf("reput <filename>\n");
3611                 return 1;
3612         }
3613
3614         if (!file_exist(local_name, &st)) {
3615                 d_printf("%s does not exist\n", local_name);
3616                 return 1;
3617         }
3618
3619         if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3620                 remote_name = talloc_asprintf_append(remote_name,
3621                                                 buf);
3622         } else {
3623                 remote_name = talloc_asprintf_append(remote_name,
3624                                                 local_name);
3625         }
3626         if (!remote_name) {
3627                 return 1;
3628         }
3629
3630         remote_name = clean_name(ctx, remote_name);
3631         if (!remote_name) {
3632                 return 1;
3633         }
3634
3635         return do_put(remote_name, local_name, true);
3636 }
3637
3638 /****************************************************************************
3639  List a share name.
3640  ****************************************************************************/
3641
3642 static void browse_fn(const char *name, uint32 m,
3643                       const char *comment, void *state)
3644 {
3645         const char *typestr = "";
3646
3647         switch (m & 7) {
3648         case STYPE_DISKTREE:
3649                 typestr = "Disk";
3650                 break;
3651         case STYPE_PRINTQ:
3652                 typestr = "Printer";
3653                 break;
3654         case STYPE_DEVICE:
3655                 typestr = "Device";
3656                 break;
3657         case STYPE_IPC:
3658                 typestr = "IPC";
3659                 break;
3660         }
3661         /* FIXME: If the remote machine returns non-ascii characters
3662            in any of these fields, they can corrupt the output.  We
3663            should remove them. */
3664         if (!grepable) {
3665                 d_printf("\t%-15s %-10.10s%s\n",
3666                         name,typestr,comment);
3667         } else {
3668                 d_printf ("%s|%s|%s\n",typestr,name,comment);
3669         }
3670 }
3671
3672 static bool browse_host_rpc(bool sort)
3673 {
3674         NTSTATUS status;
3675         struct rpc_pipe_client *pipe_hnd;
3676         TALLOC_CTX *frame = talloc_stackframe();
3677         ENUM_HND enum_hnd;
3678         WERROR werr;
3679         SRV_SHARE_INFO_CTR ctr;
3680         int i;
3681
3682         init_enum_hnd(&enum_hnd, 0);
3683
3684         pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SRVSVC, &status);
3685
3686         if (pipe_hnd == NULL) {
3687                 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3688                            nt_errstr(status)));
3689                 TALLOC_FREE(frame);
3690                 return false;
3691         }
3692
3693         werr = rpccli_srvsvc_net_share_enum(pipe_hnd, frame, 1, &ctr,
3694                                             0xffffffff, &enum_hnd);
3695
3696         if (!W_ERROR_IS_OK(werr)) {
3697                 cli_rpc_pipe_close(pipe_hnd);
3698                 TALLOC_FREE(frame);
3699                 return false;
3700         }
3701
3702         for (i=0; i<ctr.num_entries; i++) {
3703                 SRV_SHARE_INFO_1 *info = &ctr.share.info1[i];
3704                 char *name, *comment;
3705                 name = rpcstr_pull_unistr2_talloc(
3706                         frame, &info->info_1_str.uni_netname);
3707                 comment = rpcstr_pull_unistr2_talloc(
3708                         frame, &info->info_1_str.uni_remark);
3709                 browse_fn(name, info->info_1.type, comment, NULL);
3710         }
3711
3712         cli_rpc_pipe_close(pipe_hnd);
3713         TALLOC_FREE(frame);
3714         return true;
3715 }
3716
3717 /****************************************************************************
3718  Try and browse available connections on a host.
3719 ****************************************************************************/
3720
3721 static bool browse_host(bool sort)
3722 {
3723         int ret;
3724         if (!grepable) {
3725                 d_printf("\n\tSharename       Type      Comment\n");
3726                 d_printf("\t---------       ----      -------\n");
3727         }
3728
3729         if (browse_host_rpc(sort)) {
3730                 return true;
3731         }
3732
3733         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3734                 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3735
3736         return (ret != -1);
3737 }
3738
3739 /****************************************************************************
3740  List a server name.
3741 ****************************************************************************/
3742
3743 static void server_fn(const char *name, uint32 m,
3744                       const char *comment, void *state)
3745 {
3746
3747         if (!grepable){
3748                 d_printf("\t%-16s     %s\n", name, comment);
3749         } else {
3750                 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3751         }
3752 }
3753
3754 /****************************************************************************
3755  Try and browse available connections on a host.
3756 ****************************************************************************/
3757
3758 static bool list_servers(const char *wk_grp)
3759 {
3760         fstring state;
3761
3762         if (!cli->server_domain)
3763                 return false;
3764
3765         if (!grepable) {
3766                 d_printf("\n\tServer               Comment\n");
3767                 d_printf("\t---------            -------\n");
3768         };
3769         fstrcpy( state, "Server" );
3770         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3771                           state);
3772
3773         if (!grepable) {
3774                 d_printf("\n\tWorkgroup            Master\n");
3775                 d_printf("\t---------            -------\n");
3776         };
3777
3778         fstrcpy( state, "Workgroup" );
3779         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3780                           server_fn, state);
3781         return true;
3782 }
3783
3784 /****************************************************************************
3785  Print or set current VUID
3786 ****************************************************************************/
3787
3788 static int cmd_vuid(void)
3789 {
3790         TALLOC_CTX *ctx = talloc_tos();
3791         char *buf;
3792
3793         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3794                 d_printf("Current VUID is %d\n", cli->vuid);
3795                 return 0;
3796         }
3797
3798         cli->vuid = atoi(buf);
3799         return 0;
3800 }
3801
3802 /****************************************************************************
3803  Setup a new VUID, by issuing a session setup
3804 ****************************************************************************/
3805
3806 static int cmd_logon(void)
3807 {
3808         TALLOC_CTX *ctx = talloc_tos();
3809         char *l_username, *l_password;
3810
3811         if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3812                 d_printf("logon <username> [<password>]\n");
3813                 return 0;
3814         }
3815
3816         if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3817                 char *pass = getpass("Password: ");
3818                 if (pass) {
3819                         l_password = talloc_strdup(ctx,pass);
3820                 }
3821         }
3822         if (!l_password) {
3823                 return 1;
3824         }
3825
3826         if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3827                                                l_password, strlen(l_password),
3828                                                l_password, strlen(l_password),
3829                                                lp_workgroup()))) {
3830                 d_printf("session setup failed: %s\n", cli_errstr(cli));
3831                 return -1;
3832         }
3833
3834         d_printf("Current VUID is %d\n", cli->vuid);
3835         return 0;
3836 }
3837
3838
3839 /****************************************************************************
3840  list active connections
3841 ****************************************************************************/
3842
3843 static int cmd_list_connect(void)
3844 {
3845         cli_cm_display();
3846         return 0;
3847 }
3848
3849 /****************************************************************************
3850  display the current active client connection
3851 ****************************************************************************/
3852
3853 static int cmd_show_connect( void )
3854 {
3855         TALLOC_CTX *ctx = talloc_tos();
3856         struct cli_state *targetcli;
3857         char *targetpath;
3858
3859         if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3860                                 &targetcli, &targetpath ) ) {
3861                 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3862                 return 1;
3863         }
3864
3865         d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3866         return 0;
3867 }
3868
3869 /****************************************************************************
3870  iosize command
3871 ***************************************************************************/
3872
3873 int cmd_iosize(void)
3874 {
3875         TALLOC_CTX *ctx = talloc_tos();
3876         char *buf;
3877         int iosize;
3878
3879         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3880                 if (!smb_encrypt) {
3881                         d_printf("iosize <n> or iosize 0x<n>. "
3882                                 "Minimum is 16384 (0x4000), "
3883                                 "max is 16776960 (0xFFFF00)\n");
3884                 } else {
3885                         d_printf("iosize <n> or iosize 0x<n>. "
3886                                 "(Encrypted connection) ,"
3887                                 "Minimum is 16384 (0x4000), "
3888                                 "max is 130048 (0x1FC00)\n");
3889                 }
3890                 return 1;
3891         }
3892
3893         iosize = strtol(buf,NULL,0);
3894         if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3895                 d_printf("iosize out of range for encrypted "
3896                         "connection (min = 16384 (0x4000), "
3897                         "max = 130048 (0x1FC00)");
3898                 return 1;
3899         } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3900                 d_printf("iosize out of range (min = 16384 (0x4000), "
3901                         "max = 16776960 (0xFFFF00)");
3902                 return 1;
3903         }
3904
3905         io_bufsize = iosize;
3906         d_printf("iosize is now %d\n", io_bufsize);
3907         return 0;
3908 }
3909
3910
3911 /* Some constants for completing filename arguments */
3912
3913 #define COMPL_NONE        0          /* No completions */
3914 #define COMPL_REMOTE      1          /* Complete remote filename */
3915 #define COMPL_LOCAL       2          /* Complete local filename */
3916
3917 /* This defines the commands supported by this client.
3918  * NOTE: The "!" must be the last one in the list because it's fn pointer
3919  *       field is NULL, and NULL in that field is used in process_tok()
3920  *       (below) to indicate the end of the list.  crh
3921  */
3922 static struct {
3923         const char *name;
3924         int (*fn)(void);
3925         const char *description;
3926         char compl_args[2];      /* Completion argument info */
3927 } commands[] = {
3928   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3929   {"allinfo",cmd_allinfo,"<file> show all available info",
3930    {COMPL_NONE,COMPL_NONE}},
3931   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3932   {"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}},
3933   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3934   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3935   {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3936   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3937   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3938   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3939   {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3940   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3941   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3942   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3943   {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3944   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3945   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3946   {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3947   {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3948   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3949   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3950   {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3951   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3952   {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3953   {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3954   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
3955   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3956   {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3957   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3958   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3959   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3960   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3961   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
3962   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3963   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3964   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3965   {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3966   {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3967   {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3968   {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3969   {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3970   {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3971   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3972   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
3973   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3974   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3975   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3976   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3977   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3978   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3979   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
3980   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3981   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3982   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3983   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3984   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3985   {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},  
3986   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3987   {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3988   {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3989   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3990   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3991   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3992   {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3993   {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3994   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3995   {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3996   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3997   {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3998   {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3999   {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4000
4001   /* Yes, this must be here, see crh's comment above. */
4002   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4003   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4004 };
4005
4006 /*******************************************************************
4007  Lookup a command string in the list of commands, including
4008  abbreviations.
4009 ******************************************************************/
4010
4011 static int process_tok(char *tok)
4012 {
4013         int i = 0, matches = 0;
4014         int cmd=0;
4015         int tok_len = strlen(tok);
4016
4017         while (commands[i].fn != NULL) {
4018                 if (strequal(commands[i].name,tok)) {
4019                         matches = 1;
4020                         cmd = i;
4021                         break;
4022                 } else if (strnequal(commands[i].name, tok, tok_len)) {
4023                         matches++;
4024                         cmd = i;
4025                 }
4026                 i++;
4027         }
4028
4029         if (matches == 0)
4030                 return(-1);
4031         else if (matches == 1)
4032                 return(cmd);
4033         else
4034                 return(-2);
4035 }
4036
4037 /****************************************************************************
4038  Help.
4039 ****************************************************************************/
4040
4041 static int cmd_help(void)
4042 {
4043         TALLOC_CTX *ctx = talloc_tos();
4044         int i=0,j;
4045         char *buf;
4046
4047         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4048                 if ((i = process_tok(buf)) >= 0)
4049                         d_printf("HELP %s:\n\t%s\n\n",
4050                                 commands[i].name,commands[i].description);
4051         } else {
4052                 while (commands[i].description) {
4053                         for (j=0; commands[i].description && (j<5); j++) {
4054                                 d_printf("%-15s",commands[i].name);
4055                                 i++;
4056                         }
4057                         d_printf("\n");
4058                 }
4059         }
4060         return 0;
4061 }
4062
4063 /****************************************************************************
4064  Process a -c command string.
4065 ****************************************************************************/
4066
4067 static int process_command_string(const char *cmd_in)
4068 {
4069         TALLOC_CTX *ctx = talloc_tos();
4070         char *cmd = talloc_strdup(ctx, cmd_in);
4071         int rc = 0;
4072
4073         if (!cmd) {
4074                 return 1;
4075         }
4076         /* establish the connection if not already */
4077
4078         if (!cli) {
4079                 cli = cli_cm_open(talloc_tos(), NULL, desthost,
4080                                 service, true, smb_encrypt);
4081                 if (!cli) {
4082                         return 1;
4083                 }
4084         }
4085
4086         while (cmd[0] != '\0')    {
4087                 char *line;
4088                 char *p;
4089                 char *tok;
4090                 int i;
4091
4092                 if ((p = strchr_m(cmd, ';')) == 0) {
4093                         line = cmd;
4094                         cmd += strlen(cmd);
4095                 } else {
4096                         *p = '\0';
4097                         line = cmd;
4098                         cmd = p + 1;
4099                 }
4100
4101                 /* and get the first part of the command */
4102                 cmd_ptr = line;
4103                 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4104                         continue;
4105                 }
4106
4107                 if ((i = process_tok(tok)) >= 0) {
4108                         rc = commands[i].fn();
4109                 } else if (i == -2) {
4110                         d_printf("%s: command abbreviation ambiguous\n",tok);
4111                 } else {
4112                         d_printf("%s: command not found\n",tok);
4113                 }
4114         }
4115
4116         return rc;
4117 }
4118
4119 #define MAX_COMPLETIONS 100
4120
4121 typedef struct {
4122         char *dirmask;
4123         char **matches;
4124         int count, samelen;
4125         const char *text;
4126         int len;
4127 } completion_remote_t;
4128
4129 static void completion_remote_filter(const char *mnt,
4130                                 file_info *f,
4131                                 const char *mask,
4132                                 void *state)
4133 {
4134         completion_remote_t *info = (completion_remote_t *)state;
4135
4136         if ((info->count < MAX_COMPLETIONS - 1) &&
4137                         (strncmp(info->text, f->name, info->len) == 0) &&
4138                         (strcmp(f->name, ".") != 0) &&
4139                         (strcmp(f->name, "..") != 0)) {
4140                 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4141                         info->matches[info->count] = SMB_STRDUP(f->name);
4142                 else {
4143                         TALLOC_CTX *ctx = talloc_stackframe();
4144                         char *tmp;
4145
4146                         if (info->dirmask && info->dirmask[0] != 0) {
4147                                 tmp = talloc_strdup(ctx,info->dirmask);
4148                         } else {
4149                                 tmp = talloc_strdup(ctx,"");
4150                         }
4151                         if (!tmp) {
4152                                 TALLOC_FREE(ctx);
4153                                 return;
4154                         }
4155                         tmp = talloc_asprintf_append(tmp, f->name);
4156                         if (!tmp) {
4157                                 TALLOC_FREE(ctx);
4158                                 return;
4159                         }
4160                         if (f->mode & aDIR) {
4161                                 tmp = talloc_asprintf_append(tmp, "/");
4162                         }
4163                         if (!tmp) {
4164                                 TALLOC_FREE(ctx);
4165                                 return;
4166                         }
4167                         info->matches[info->count] = SMB_STRDUP(tmp);
4168                         TALLOC_FREE(ctx);
4169                 }
4170                 if (info->matches[info->count] == NULL) {
4171                         return;
4172                 }
4173                 if (f->mode & aDIR) {
4174                         smb_readline_ca_char(0);
4175                 }
4176                 if (info->count == 1) {
4177                         info->samelen = strlen(info->matches[info->count]);
4178                 } else {
4179                         while (strncmp(info->matches[info->count],
4180                                                 info->matches[info->count-1],
4181                                                 info->samelen) != 0) {
4182                                 info->samelen--;
4183                         }
4184                 }
4185                 info->count++;
4186         }
4187 }
4188
4189 static char **remote_completion(const char *text, int len)
4190 {
4191         TALLOC_CTX *ctx = talloc_stackframe();
4192         char *dirmask = NULL;
4193         char *targetpath = NULL;
4194         struct cli_state *targetcli = NULL;
4195         int i;
4196         completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4197
4198         /* can't have non-static intialisation on Sun CC, so do it
4199            at run time here */
4200         info.samelen = len;
4201         info.text = text;
4202         info.len = len;
4203
4204         info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4205         if (!info.matches) {
4206                 TALLOC_FREE(ctx);
4207                 return NULL;
4208         }
4209
4210         /*
4211          * We're leaving matches[0] free to fill it later with the text to
4212          * display: Either the one single match or the longest common subset
4213          * of the matches.
4214          */
4215         info.matches[0] = NULL;
4216         info.count = 1;
4217
4218         for (i = len-1; i >= 0; i--) {
4219                 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4220                         break;
4221                 }
4222         }
4223
4224         info.text = text+i+1;
4225         info.samelen = info.len = len-i-1;
4226
4227         if (i > 0) {
4228                 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4229                 if (!info.dirmask) {
4230                         goto cleanup;
4231                 }
4232                 strncpy(info.dirmask, text, i+1);
4233                 info.dirmask[i+1] = 0;
4234                 dirmask = talloc_asprintf(ctx,
4235                                         "%s%*s*",
4236                                         client_get_cur_dir(),
4237                                         i-1,
4238                                         text);
4239         } else {
4240                 info.dirmask = SMB_STRDUP("");
4241                 if (!info.dirmask) {
4242                         goto cleanup;
4243                 }
4244                 dirmask = talloc_asprintf(ctx,
4245                                         "%s*",
4246                                         client_get_cur_dir());
4247         }
4248         if (!dirmask) {
4249                 goto cleanup;
4250         }
4251
4252         if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4253                 goto cleanup;
4254         }
4255         if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4256                                 completion_remote_filter, (void *)&info) < 0) {
4257                 goto cleanup;
4258         }
4259
4260         if (info.count == 1) {
4261                 /*
4262                  * No matches at all, NULL indicates there is nothing
4263                  */
4264                 SAFE_FREE(info.matches[0]);
4265                 SAFE_FREE(info.matches);
4266                 TALLOC_FREE(ctx);
4267                 return NULL;
4268         }
4269
4270         if (info.count == 2) {
4271                 /*
4272                  * Exactly one match in matches[1], indicate this is the one
4273                  * in matches[0].
4274                  */
4275                 info.matches[0] = info.matches[1];
4276                 info.matches[1] = NULL;
4277                 info.count -= 1;
4278                 TALLOC_FREE(ctx);
4279                 return info.matches;
4280         }
4281
4282         /*
4283          * We got more than one possible match, set the result to the maximum
4284          * common subset
4285          */
4286
4287         info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4288         info.matches[info.count] = NULL;
4289         return info.matches;
4290
4291 cleanup:
4292         for (i = 0; i < info.count; i++) {
4293                 SAFE_FREE(info.matches[i]);
4294         }
4295         SAFE_FREE(info.matches);
4296         SAFE_FREE(info.dirmask);
4297         TALLOC_FREE(ctx);
4298         return NULL;
4299 }
4300
4301 static char **completion_fn(const char *text, int start, int end)
4302 {
4303         smb_readline_ca_char(' ');
4304
4305         if (start) {
4306                 const char *buf, *sp;
4307                 int i;
4308                 char compl_type;
4309
4310                 buf = smb_readline_get_line_buffer();
4311                 if (buf == NULL)
4312                         return NULL;
4313
4314                 sp = strchr(buf, ' ');
4315                 if (sp == NULL)
4316                         return NULL;
4317
4318                 for (i = 0; commands[i].name; i++) {
4319                         if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4320                             (commands[i].name[sp - buf] == 0)) {
4321                                 break;
4322                         }
4323                 }
4324                 if (commands[i].name == NULL)
4325                         return NULL;
4326
4327                 while (*sp == ' ')
4328                         sp++;
4329
4330                 if (sp == (buf + start))
4331                         compl_type = commands[i].compl_args[0];
4332                 else
4333                         compl_type = commands[i].compl_args[1];
4334
4335                 if (compl_type == COMPL_REMOTE)
4336                         return remote_completion(text, end - start);
4337                 else /* fall back to local filename completion */
4338                         return NULL;
4339         } else {
4340                 char **matches;
4341                 int i, len, samelen = 0, count=1;
4342
4343                 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4344                 if (!matches) {
4345                         return NULL;
4346                 }
4347                 matches[0] = NULL;
4348
4349                 len = strlen(text);
4350                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4351                         if (strncmp(text, commands[i].name, len) == 0) {
4352                                 matches[count] = SMB_STRDUP(commands[i].name);
4353                                 if (!matches[count])
4354                                         goto cleanup;
4355                                 if (count == 1)
4356                                         samelen = strlen(matches[count]);
4357                                 else
4358                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
4359                                                 samelen--;
4360                                 count++;
4361                         }
4362                 }
4363
4364                 switch (count) {
4365                 case 0: /* should never happen */
4366                 case 1:
4367                         goto cleanup;
4368                 case 2:
4369                         matches[0] = SMB_STRDUP(matches[1]);
4370                         break;
4371                 default:
4372                         matches[0] = (char *)SMB_MALLOC(samelen+1);
4373                         if (!matches[0])
4374                                 goto cleanup;
4375                         strncpy(matches[0], matches[1], samelen);
4376                         matches[0][samelen] = 0;
4377                 }
4378                 matches[count] = NULL;
4379                 return matches;
4380
4381 cleanup:
4382                 for (i = 0; i < count; i++)
4383                         free(matches[i]);
4384
4385                 free(matches);
4386                 return NULL;
4387         }
4388 }
4389
4390 /****************************************************************************
4391  Make sure we swallow keepalives during idle time.
4392 ****************************************************************************/
4393
4394 static void readline_callback(void)
4395 {
4396         fd_set fds;
4397         struct timeval timeout;
4398         static time_t last_t;
4399         time_t t;
4400
4401         t = time(NULL);
4402
4403         if (t - last_t < 5)
4404                 return;
4405
4406         last_t = t;
4407
4408  again:
4409
4410         if (cli->fd == -1)
4411                 return;
4412
4413         FD_ZERO(&fds);
4414         FD_SET(cli->fd,&fds);
4415
4416         timeout.tv_sec = 0;
4417         timeout.tv_usec = 0;
4418         sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4419
4420         /* We deliberately use receive_smb_raw instead of
4421            client_receive_smb as we want to receive
4422            session keepalives and then drop them here.
4423         */
4424         if (FD_ISSET(cli->fd,&fds)) {
4425                 NTSTATUS status;
4426                 size_t len;
4427
4428                 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4429
4430                 status = receive_smb_raw(cli->fd, cli->inbuf, 0, 0, &len);
4431
4432                 if (!NT_STATUS_IS_OK(status)) {
4433                         DEBUG(0, ("Read from server failed, maybe it closed "
4434                                   "the connection\n"));
4435
4436                         if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4437                                 set_smb_read_error(&cli->smb_rw_error,
4438                                                    SMB_READ_EOF);
4439                                 return;
4440                         }
4441
4442                         if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4443                                 set_smb_read_error(&cli->smb_rw_error,
4444                                                    SMB_READ_TIMEOUT);
4445                                 return;
4446                         }
4447
4448                         set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4449                         return;
4450                 }
4451                 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4452                         DEBUG(0, ("Read from server "
4453                                 "returned unexpected packet!\n"));
4454                         return;
4455                 }
4456
4457                 goto again;
4458         }
4459
4460         /* Ping the server to keep the connection alive using SMBecho. */
4461         {
4462                 unsigned char garbage[16];
4463                 memset(garbage, 0xf0, sizeof(garbage));
4464                 cli_echo(cli, 1, garbage, sizeof(garbage));
4465         }
4466 }
4467
4468 /****************************************************************************
4469  Process commands on stdin.
4470 ****************************************************************************/
4471
4472 static int process_stdin(void)
4473 {
4474         int rc = 0;
4475
4476         while (1) {
4477                 TALLOC_CTX *frame = talloc_stackframe();
4478                 char *tok = NULL;
4479                 char *the_prompt = NULL;
4480                 char *line = NULL;
4481                 int i;
4482
4483                 /* display a prompt */
4484                 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4485                         TALLOC_FREE(frame);
4486                         break;
4487                 }
4488                 line = smb_readline(the_prompt, readline_callback, completion_fn);
4489                 SAFE_FREE(the_prompt);
4490                 if (!line) {
4491                         TALLOC_FREE(frame);
4492                         break;
4493                 }
4494
4495                 /* special case - first char is ! */
4496                 if (*line == '!') {
4497                         system(line + 1);
4498                         SAFE_FREE(line);
4499                         TALLOC_FREE(frame);
4500                         continue;
4501                 }
4502
4503                 /* and get the first part of the command */
4504                 cmd_ptr = line;
4505                 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4506                         TALLOC_FREE(frame);
4507                         SAFE_FREE(line);
4508                         continue;
4509                 }
4510
4511                 if ((i = process_tok(tok)) >= 0) {
4512                         rc = commands[i].fn();
4513                 } else if (i == -2) {
4514                         d_printf("%s: command abbreviation ambiguous\n",tok);
4515                 } else {
4516                         d_printf("%s: command not found\n",tok);
4517                 }
4518                 SAFE_FREE(line);
4519                 TALLOC_FREE(frame);
4520         }
4521         return rc;
4522 }
4523
4524 /****************************************************************************
4525  Process commands from the client.
4526 ****************************************************************************/
4527
4528 static int process(const char *base_directory)
4529 {
4530         int rc = 0;
4531
4532         cli = cli_cm_open(talloc_tos(), NULL,
4533                         desthost, service, true, smb_encrypt);
4534         if (!cli) {
4535                 return 1;
4536         }
4537
4538         if (base_directory && *base_directory) {
4539                 rc = do_cd(base_directory);
4540                 if (rc) {
4541                         cli_cm_shutdown();
4542                         return rc;
4543                 }
4544         }
4545
4546         if (cmdstr) {
4547                 rc = process_command_string(cmdstr);
4548         } else {
4549                 process_stdin();
4550         }
4551
4552         cli_cm_shutdown();
4553         return rc;
4554 }
4555
4556 /****************************************************************************
4557  Handle a -L query.
4558 ****************************************************************************/
4559
4560 static int do_host_query(const char *query_host)
4561 {
4562         cli = cli_cm_open(talloc_tos(), NULL,
4563                         query_host, "IPC$", true, smb_encrypt);
4564         if (!cli)
4565                 return 1;
4566
4567         browse_host(true);
4568
4569         if (port != 139) {
4570
4571                 /* Workgroups simply don't make sense over anything
4572                    else but port 139... */
4573
4574                 cli_cm_shutdown();
4575                 cli_cm_set_port( 139 );
4576                 cli = cli_cm_open(talloc_tos(), NULL,
4577                                 query_host, "IPC$", true, smb_encrypt);
4578         }
4579
4580         if (cli == NULL) {
4581                 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4582                 return 1;
4583         }
4584
4585         list_servers(lp_workgroup());
4586
4587         cli_cm_shutdown();
4588
4589         return(0);
4590 }
4591
4592 /****************************************************************************
4593  Handle a tar operation.
4594 ****************************************************************************/
4595
4596 static int do_tar_op(const char *base_directory)
4597 {
4598         int ret;
4599
4600         /* do we already have a connection? */
4601         if (!cli) {
4602                 cli = cli_cm_open(talloc_tos(), NULL,
4603                         desthost, service, true, smb_encrypt);
4604                 if (!cli)
4605                         return 1;
4606         }
4607
4608         recurse=true;
4609
4610         if (base_directory && *base_directory)  {
4611                 ret = do_cd(base_directory);
4612                 if (ret) {
4613                         cli_cm_shutdown();
4614                         return ret;
4615                 }
4616         }
4617
4618         ret=process_tar();
4619
4620         cli_cm_shutdown();
4621
4622         return(ret);
4623 }
4624
4625 /****************************************************************************
4626  Handle a message operation.
4627 ****************************************************************************/
4628
4629 static int do_message_op(void)
4630 {
4631         struct sockaddr_storage ss;
4632         struct nmb_name called, calling;
4633         fstring server_name;
4634         char name_type_hex[10];
4635         int msg_port;
4636         NTSTATUS status;
4637
4638         make_nmb_name(&calling, calling_name, 0x0);
4639         make_nmb_name(&called , desthost, name_type);
4640
4641         fstrcpy(server_name, desthost);
4642         snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4643         fstrcat(server_name, name_type_hex);
4644
4645         zero_addr(&ss);
4646         if (have_ip)
4647                 ss = dest_ss;
4648
4649         /* we can only do messages over port 139 (to windows clients at least) */
4650
4651         msg_port = port ? port : 139;
4652
4653         if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4654                 d_printf("Connection to %s failed\n", desthost);
4655                 return 1;
4656         }
4657
4658         status = cli_connect(cli, server_name, &ss);
4659         if (!NT_STATUS_IS_OK(status)) {
4660                 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4661                 return 1;
4662         }
4663
4664         if (!cli_session_request(cli, &calling, &called)) {
4665                 d_printf("session request failed\n");
4666                 cli_cm_shutdown();
4667                 return 1;
4668         }
4669
4670         send_message();
4671         cli_cm_shutdown();
4672
4673         return 0;
4674 }
4675
4676 /****************************************************************************
4677   main program
4678 ****************************************************************************/
4679
4680  int main(int argc,char *argv[])
4681 {
4682         char *base_directory = NULL;
4683         int opt;
4684         char *query_host = NULL;
4685         bool message = false;
4686         char *term_code = NULL;
4687         static const char *new_name_resolve_order = NULL;
4688         poptContext pc;
4689         char *p;
4690         int rc = 0;
4691         fstring new_workgroup;
4692         bool tar_opt = false;
4693         bool service_opt = false;
4694         struct poptOption long_options[] = {
4695                 POPT_AUTOHELP
4696
4697                 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4698                 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4699                 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4700                 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4701                 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4702                 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4703                 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4704                 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4705                 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4706                 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" }, 
4707                 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4708                 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4709                 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4710                 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4711                 POPT_COMMON_SAMBA
4712                 POPT_COMMON_CONNECTION
4713                 POPT_COMMON_CREDENTIALS
4714                 POPT_TABLEEND
4715         };
4716         TALLOC_CTX *frame = talloc_stackframe();
4717
4718         if (!client_set_cur_dir("\\")) {
4719                 exit(ENOMEM);
4720         }
4721
4722 #ifdef KANJI
4723         term_code = talloc_strdup(frame,KANJI);
4724 #else /* KANJI */
4725         term_code = talloc_strdup(frame,"");
4726 #endif /* KANJI */
4727         if (!term_code) {
4728                 exit(ENOMEM);
4729         }
4730
4731         /* initialize the workgroup name so we can determine whether or
4732            not it was set by a command line option */
4733
4734         set_global_myworkgroup( "" );
4735         set_global_myname( "" );
4736
4737         /* set default debug level to 1 regardless of what smb.conf sets */
4738         setup_logging( "smbclient", true );
4739         DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4740         if ((dbf = x_fdup(x_stderr))) {
4741                 x_setbuf( dbf, NULL );
4742         }
4743
4744         load_case_tables();
4745
4746         /* skip argv(0) */
4747         pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4748         poptSetOtherOptionHelp(pc, "service <password>");
4749
4750         in_client = true;   /* Make sure that we tell lp_load we are */
4751
4752         while ((opt = poptGetNextOpt(pc)) != -1) {
4753
4754                 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4755                 /* I see no other way to keep things sane --SSS */
4756                 if (tar_opt == true) {
4757                         while (poptPeekArg(pc)) {
4758                                 poptGetArg(pc);
4759                         }
4760                         tar_opt = false;
4761                 }
4762
4763                 /* if the service has not yet been specified lets see if it is available in the popt stack */
4764                 if (!service_opt && poptPeekArg(pc)) {
4765                         service = talloc_strdup(frame, poptGetArg(pc));
4766                         if (!service) {
4767                                 exit(ENOMEM);
4768                         }
4769                         service_opt = true;
4770                 }
4771
4772                 /* if the service has already been retrieved then check if we have also a password */
4773                 if (service_opt && (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc)) {
4774                         set_cmdline_auth_info_password(poptGetArg(pc));
4775                 }
4776
4777                 switch (opt) {
4778                 case 'M':
4779                         /* Messages are sent to NetBIOS name type 0x3
4780                          * (Messenger Service).  Make sure we default
4781                          * to port 139 instead of port 445. srl,crh
4782                          */
4783                         name_type = 0x03;
4784                         cli_cm_set_dest_name_type( name_type );
4785                         desthost = talloc_strdup(frame,poptGetOptArg(pc));
4786                         if (!desthost) {
4787                                 exit(ENOMEM);
4788                         }
4789                         if( !port )
4790                                 cli_cm_set_port( 139 );
4791                         message = true;
4792                         break;
4793                 case 'I':
4794                         {
4795                                 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4796                                         exit(1);
4797                                 }
4798                                 have_ip = true;
4799
4800                                 cli_cm_set_dest_ss(&dest_ss);
4801                         }
4802                         break;
4803                 case 'E':
4804                         if (dbf) {
4805                                 x_fclose(dbf);
4806                         }
4807                         dbf = x_stderr;
4808                         display_set_stderr();
4809                         break;
4810
4811                 case 'L':
4812                         query_host = talloc_strdup(frame, poptGetOptArg(pc));
4813                         if (!query_host) {
4814                                 exit(ENOMEM);
4815                         }
4816                         break;
4817                 case 't':
4818                         term_code = talloc_strdup(frame,poptGetOptArg(pc));
4819                         if (!term_code) {
4820                                 exit(ENOMEM);
4821                         }
4822                         break;
4823                 case 'm':
4824                         max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4825                         break;
4826                 case 'T':
4827                         /* We must use old option processing for this. Find the
4828                          * position of the -T option in the raw argv[]. */
4829                         {
4830                                 int i;
4831                                 for (i = 1; i < argc; i++) {
4832                                         if (strncmp("-T", argv[i],2)==0)
4833                                                 break;
4834                                 }
4835                                 i++;
4836                                 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4837                                         poptPrintUsage(pc, stderr, 0);
4838                                         exit(1);
4839                                 }
4840                         }
4841                         /* this must be the last option, mark we have parsed it so that we know we have */
4842                         tar_opt = true;
4843                         break;
4844                 case 'D':
4845                         base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4846                         if (!base_directory) {
4847                                 exit(ENOMEM);
4848                         }
4849                         break;
4850                 case 'g':
4851                         grepable=true;
4852                         break;
4853                 case 'e':
4854                         smb_encrypt=true;
4855                         break;
4856                 case 'B':
4857                         return(do_smb_browse());
4858
4859                 }
4860         }
4861
4862         /* We may still have some leftovers after the last popt option has been called */
4863         if (tar_opt == true) {
4864                 while (poptPeekArg(pc)) {
4865                         poptGetArg(pc);
4866                 }
4867                 tar_opt = false;
4868         }
4869
4870         /* if the service has not yet been specified lets see if it is available in the popt stack */
4871         if (!service_opt && poptPeekArg(pc)) {
4872                 service = talloc_strdup(frame,poptGetArg(pc));
4873                 if (!service) {
4874                         exit(ENOMEM);
4875                 }
4876                 service_opt = true;
4877         }
4878
4879         /* if the service has already been retrieved then check if we have also a password */
4880         if (service_opt && !get_cmdline_auth_info_got_pass() && poptPeekArg(pc)) {
4881                 set_cmdline_auth_info_password(poptGetArg(pc));
4882         }
4883
4884         /* check for the -P option */
4885
4886         if ( port != 0 )
4887                 cli_cm_set_port( port );
4888
4889         /*
4890          * Don't load debug level from smb.conf. It should be
4891          * set by cmdline arg or remain default (0)
4892          */
4893         AllowDebugChange = false;
4894
4895         /* save the workgroup...
4896
4897            FIXME!! do we need to do this for other options as well
4898            (or maybe a generic way to keep lp_load() from overwriting
4899            everything)?  */
4900
4901         fstrcpy( new_workgroup, lp_workgroup() );
4902         calling_name = talloc_strdup(frame, global_myname() );
4903         if (!calling_name) {
4904                 exit(ENOMEM);
4905         }
4906
4907         if ( override_logfile )
4908                 setup_logging( lp_logfile(), false );
4909
4910         if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4911                 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4912                         argv[0], get_dyn_CONFIGFILE());
4913         }
4914
4915         load_interfaces();
4916
4917         if (service_opt && service) {
4918                 size_t len;
4919
4920                 /* Convert any '/' characters in the service name to '\' characters */
4921                 string_replace(service, '/','\\');
4922                 if (count_chars(service,'\\') < 3) {
4923                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
4924                         poptPrintUsage(pc, stderr, 0);
4925                         exit(1);
4926                 }
4927                 /* Remove trailing slashes */
4928                 len = strlen(service);
4929                 while(len > 0 && service[len - 1] == '\\') {
4930                         --len;
4931                         service[len] = '\0';
4932                 }
4933         }
4934
4935         if ( strlen(new_workgroup) != 0 ) {
4936                 set_global_myworkgroup( new_workgroup );
4937         }
4938
4939         if ( strlen(calling_name) != 0 ) {
4940                 set_global_myname( calling_name );
4941         } else {
4942                 TALLOC_FREE(calling_name);
4943                 calling_name = talloc_strdup(frame, global_myname() );
4944         }
4945
4946         smb_encrypt = get_cmdline_auth_info_smb_encrypt();
4947         init_names();
4948
4949         if(new_name_resolve_order)
4950                 lp_set_name_resolve_order(new_name_resolve_order);
4951
4952         if (!tar_type && !query_host && !service && !message) {
4953                 poptPrintUsage(pc, stderr, 0);
4954                 exit(1);
4955         }
4956
4957         poptFreeContext(pc);
4958
4959         /* Store the username and password for dfs support */
4960
4961         cli_cm_set_credentials();
4962
4963         DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4964
4965         if (tar_type) {
4966                 if (cmdstr)
4967                         process_command_string(cmdstr);
4968                 return do_tar_op(base_directory);
4969         }
4970
4971         if (query_host && *query_host) {
4972                 char *qhost = query_host;
4973                 char *slash;
4974
4975                 while (*qhost == '\\' || *qhost == '/')
4976                         qhost++;
4977
4978                 if ((slash = strchr_m(qhost, '/'))
4979                     || (slash = strchr_m(qhost, '\\'))) {
4980                         *slash = 0;
4981                 }
4982
4983                 if ((p=strchr_m(qhost, '#'))) {
4984                         *p = 0;
4985                         p++;
4986                         sscanf(p, "%x", &name_type);
4987                         cli_cm_set_dest_name_type( name_type );
4988                 }
4989
4990                 return do_host_query(qhost);
4991         }
4992
4993         if (message) {
4994                 return do_message_op();
4995         }
4996
4997         if (process(base_directory)) {
4998                 return 1;
4999         }
5000
5001         TALLOC_FREE(frame);
5002         return rc;
5003 }