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