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