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