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