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