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