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