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