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