s3: Remove a "typedef struct"
[sfrench/samba-autobuild/.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->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                         SEC_DESC *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 /****************************************************************************
1530  Show all info we can get
1531 ****************************************************************************/
1532
1533 static int do_allinfo(const char *name)
1534 {
1535         fstring altname;
1536         struct timespec b_time, a_time, m_time, c_time;
1537         SMB_OFF_T size;
1538         uint16_t mode;
1539         SMB_INO_T ino;
1540         NTTIME tmp;
1541         unsigned int num_streams;
1542         struct stream_struct *streams;
1543         unsigned int i;
1544
1545         if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1546                 d_printf("%s getting alt name for %s\n",
1547                          cli_errstr(cli),name);
1548                 return false;
1549         }
1550         d_printf("altname: %s\n", altname);
1551
1552         if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1553                             &size, &mode, &ino)) {
1554                 d_printf("%s getting pathinfo for %s\n",
1555                          cli_errstr(cli),name);
1556                 return false;
1557         }
1558
1559         unix_timespec_to_nt_time(&tmp, b_time);
1560         d_printf("create_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1561
1562         unix_timespec_to_nt_time(&tmp, a_time);
1563         d_printf("access_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1564
1565         unix_timespec_to_nt_time(&tmp, m_time);
1566         d_printf("write_time:     %s\n", nt_time_string(talloc_tos(), tmp));
1567
1568         unix_timespec_to_nt_time(&tmp, c_time);
1569         d_printf("change_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1570
1571         if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1572                                    &streams)) {
1573                 d_printf("%s getting streams for %s\n",
1574                          cli_errstr(cli),name);
1575                 return false;
1576         }
1577
1578         for (i=0; i<num_streams; i++) {
1579                 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1580                          (unsigned long long)streams[i].size);
1581         }
1582
1583         return 0;
1584 }
1585
1586 /****************************************************************************
1587  Show all info we can get
1588 ****************************************************************************/
1589
1590 static int cmd_allinfo(void)
1591 {
1592         TALLOC_CTX *ctx = talloc_tos();
1593         char *name;
1594         char *buf;
1595
1596         name = talloc_strdup(ctx, client_get_cur_dir());
1597         if (!name) {
1598                 return 1;
1599         }
1600
1601         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1602                 d_printf("allinfo <file>\n");
1603                 return 1;
1604         }
1605         name = talloc_asprintf_append(name, "%s", buf);
1606         if (!name) {
1607                 return 1;
1608         }
1609
1610         do_allinfo(name);
1611
1612         return 0;
1613 }
1614
1615 /****************************************************************************
1616  Put a single file.
1617 ****************************************************************************/
1618
1619 static int do_put(const char *rname, const char *lname, bool reput)
1620 {
1621         TALLOC_CTX *ctx = talloc_tos();
1622         uint16_t fnum;
1623         XFILE *f;
1624         SMB_OFF_T start = 0;
1625         int rc = 0;
1626         struct timeval tp_start;
1627         struct cli_state *targetcli;
1628         char *targetname = NULL;
1629         struct push_state state;
1630         NTSTATUS status;
1631
1632         if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1633                 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1634                 return 1;
1635         }
1636
1637         GetTimeOfDay(&tp_start);
1638
1639         if (reput) {
1640                 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1641                 if (NT_STATUS_IS_OK(status)) {
1642                         if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1643                             !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1644                                 d_printf("getattrib: %s\n",cli_errstr(cli));
1645                                 return 1;
1646                         }
1647                 }
1648         } else {
1649                 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1650         }
1651
1652         if (!NT_STATUS_IS_OK(status)) {
1653                 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1654                 return 1;
1655         }
1656
1657         /* allow files to be piped into smbclient
1658            jdblair 24.jun.98
1659
1660            Note that in this case this function will exit(0) rather
1661            than returning. */
1662         if (!strcmp(lname, "-")) {
1663                 f = x_stdin;
1664                 /* size of file is not known */
1665         } else {
1666                 f = x_fopen(lname,O_RDONLY, 0);
1667                 if (f && reput) {
1668                         if (x_tseek(f, start, SEEK_SET) == -1) {
1669                                 d_printf("Error seeking local file\n");
1670                                 x_fclose(f);
1671                                 return 1;
1672                         }
1673                 }
1674         }
1675
1676         if (!f) {
1677                 d_printf("Error opening local file %s\n",lname);
1678                 return 1;
1679         }
1680
1681         DEBUG(1,("putting file %s as %s ",lname,
1682                  rname));
1683
1684         x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1685
1686         state.f = f;
1687         state.nread = 0;
1688
1689         status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1690                           &state);
1691         if (!NT_STATUS_IS_OK(status)) {
1692                 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1693         }
1694
1695         if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1696                 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1697                 if (f != x_stdin) {
1698                         x_fclose(f);
1699                 }
1700                 return 1;
1701         }
1702
1703         if (f != x_stdin) {
1704                 x_fclose(f);
1705         }
1706
1707         {
1708                 struct timeval tp_end;
1709                 int this_time;
1710
1711                 GetTimeOfDay(&tp_end);
1712                 this_time =
1713                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1714                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1715                 put_total_time_ms += this_time;
1716                 put_total_size += state.nread;
1717
1718                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1719                          state.nread / (1.024*this_time + 1.0e-4),
1720                          put_total_size / (1.024*put_total_time_ms)));
1721         }
1722
1723         if (f == x_stdin) {
1724                 cli_shutdown(cli);
1725                 exit(0);
1726         }
1727
1728         return rc;
1729 }
1730
1731 /****************************************************************************
1732  Put a file.
1733 ****************************************************************************/
1734
1735 static int cmd_put(void)
1736 {
1737         TALLOC_CTX *ctx = talloc_tos();
1738         char *lname;
1739         char *rname;
1740         char *buf;
1741
1742         rname = talloc_strdup(ctx, client_get_cur_dir());
1743         if (!rname) {
1744                 return 1;
1745         }
1746
1747         if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1748                 d_printf("put <filename>\n");
1749                 return 1;
1750         }
1751
1752         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1753                 rname = talloc_asprintf_append(rname, "%s", buf);
1754         } else {
1755                 rname = talloc_asprintf_append(rname, "%s", lname);
1756         }
1757         if (!rname) {
1758                 return 1;
1759         }
1760
1761         rname = clean_name(ctx, rname);
1762         if (!rname) {
1763                 return 1;
1764         }
1765
1766         {
1767                 SMB_STRUCT_STAT st;
1768                 /* allow '-' to represent stdin
1769                    jdblair, 24.jun.98 */
1770                 if (!file_exist_stat(lname, &st, false) &&
1771                     (strcmp(lname,"-"))) {
1772                         d_printf("%s does not exist\n",lname);
1773                         return 1;
1774                 }
1775         }
1776
1777         return do_put(rname, lname, false);
1778 }
1779
1780 /*************************************
1781  File list structure.
1782 *************************************/
1783
1784 static struct file_list {
1785         struct file_list *prev, *next;
1786         char *file_path;
1787         bool isdir;
1788 } *file_list;
1789
1790 /****************************************************************************
1791  Free a file_list structure.
1792 ****************************************************************************/
1793
1794 static void free_file_list (struct file_list *l_head)
1795 {
1796         struct file_list *list, *next;
1797
1798         for (list = l_head; list; list = next) {
1799                 next = list->next;
1800                 DLIST_REMOVE(l_head, list);
1801                 SAFE_FREE(list->file_path);
1802                 SAFE_FREE(list);
1803         }
1804 }
1805
1806 /****************************************************************************
1807  Seek in a directory/file list until you get something that doesn't start with
1808  the specified name.
1809 ****************************************************************************/
1810
1811 static bool seek_list(struct file_list *list, char *name)
1812 {
1813         while (list) {
1814                 trim_string(list->file_path,"./","\n");
1815                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1816                         return true;
1817                 }
1818                 list = list->next;
1819         }
1820
1821         return false;
1822 }
1823
1824 /****************************************************************************
1825  Set the file selection mask.
1826 ****************************************************************************/
1827
1828 static int cmd_select(void)
1829 {
1830         TALLOC_CTX *ctx = talloc_tos();
1831         char *new_fs = NULL;
1832         next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1833                 ;
1834         if (new_fs) {
1835                 client_set_fileselection(new_fs);
1836         } else {
1837                 client_set_fileselection("");
1838         }
1839         return 0;
1840 }
1841
1842 /****************************************************************************
1843   Recursive file matching function act as find
1844   match must be always set to true when calling this function
1845 ****************************************************************************/
1846
1847 static int file_find(struct file_list **list, const char *directory,
1848                       const char *expression, bool match)
1849 {
1850         SMB_STRUCT_DIR *dir;
1851         struct file_list *entry;
1852         struct stat statbuf;
1853         int ret;
1854         char *path;
1855         bool isdir;
1856         const char *dname;
1857
1858         dir = sys_opendir(directory);
1859         if (!dir)
1860                 return -1;
1861
1862         while ((dname = readdirname(dir))) {
1863                 if (!strcmp("..", dname))
1864                         continue;
1865                 if (!strcmp(".", dname))
1866                         continue;
1867
1868                 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1869                         continue;
1870                 }
1871
1872                 isdir = false;
1873                 if (!match || !gen_fnmatch(expression, dname)) {
1874                         if (recurse) {
1875                                 ret = stat(path, &statbuf);
1876                                 if (ret == 0) {
1877                                         if (S_ISDIR(statbuf.st_mode)) {
1878                                                 isdir = true;
1879                                                 ret = file_find(list, path, expression, false);
1880                                         }
1881                                 } else {
1882                                         d_printf("file_find: cannot stat file %s\n", path);
1883                                 }
1884
1885                                 if (ret == -1) {
1886                                         SAFE_FREE(path);
1887                                         sys_closedir(dir);
1888                                         return -1;
1889                                 }
1890                         }
1891                         entry = SMB_MALLOC_P(struct file_list);
1892                         if (!entry) {
1893                                 d_printf("Out of memory in file_find\n");
1894                                 sys_closedir(dir);
1895                                 return -1;
1896                         }
1897                         entry->file_path = path;
1898                         entry->isdir = isdir;
1899                         DLIST_ADD(*list, entry);
1900                 } else {
1901                         SAFE_FREE(path);
1902                 }
1903         }
1904
1905         sys_closedir(dir);
1906         return 0;
1907 }
1908
1909 /****************************************************************************
1910  mput some files.
1911 ****************************************************************************/
1912
1913 static int cmd_mput(void)
1914 {
1915         TALLOC_CTX *ctx = talloc_tos();
1916         char *p = NULL;
1917
1918         while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1919                 int ret;
1920                 struct file_list *temp_list;
1921                 char *quest, *lname, *rname;
1922
1923                 file_list = NULL;
1924
1925                 ret = file_find(&file_list, ".", p, true);
1926                 if (ret) {
1927                         free_file_list(file_list);
1928                         continue;
1929                 }
1930
1931                 quest = NULL;
1932                 lname = NULL;
1933                 rname = NULL;
1934
1935                 for (temp_list = file_list; temp_list;
1936                      temp_list = temp_list->next) {
1937
1938                         SAFE_FREE(lname);
1939                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1940                                 continue;
1941                         }
1942                         trim_string(lname, "./", "/");
1943
1944                         /* check if it's a directory */
1945                         if (temp_list->isdir) {
1946                                 /* if (!recurse) continue; */
1947
1948                                 SAFE_FREE(quest);
1949                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1950                                         break;
1951                                 }
1952                                 if (prompt && !yesno(quest)) { /* No */
1953                                         /* Skip the directory */
1954                                         lname[strlen(lname)-1] = '/';
1955                                         if (!seek_list(temp_list, lname))
1956                                                 break;
1957                                 } else { /* Yes */
1958                                         SAFE_FREE(rname);
1959                                         if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1960                                                 break;
1961                                         }
1962                                         normalize_name(rname);
1963                                         if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1964                                             !do_mkdir(rname)) {
1965                                                 DEBUG (0, ("Unable to make dir, skipping..."));
1966                                                 /* Skip the directory */
1967                                                 lname[strlen(lname)-1] = '/';
1968                                                 if (!seek_list(temp_list, lname)) {
1969                                                         break;
1970                                                 }
1971                                         }
1972                                 }
1973                                 continue;
1974                         } else {
1975                                 SAFE_FREE(quest);
1976                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1977                                         break;
1978                                 }
1979                                 if (prompt && !yesno(quest)) {
1980                                         /* No */
1981                                         continue;
1982                                 }
1983
1984                                 /* Yes */
1985                                 SAFE_FREE(rname);
1986                                 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1987                                         break;
1988                                 }
1989                         }
1990
1991                         normalize_name(rname);
1992
1993                         do_put(rname, lname, false);
1994                 }
1995                 free_file_list(file_list);
1996                 SAFE_FREE(quest);
1997                 SAFE_FREE(lname);
1998                 SAFE_FREE(rname);
1999         }
2000
2001         return 0;
2002 }
2003
2004 /****************************************************************************
2005  Cancel a print job.
2006 ****************************************************************************/
2007
2008 static int do_cancel(int job)
2009 {
2010         if (cli_printjob_del(cli, job)) {
2011                 d_printf("Job %d cancelled\n",job);
2012                 return 0;
2013         } else {
2014                 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2015                 return 1;
2016         }
2017 }
2018
2019 /****************************************************************************
2020  Cancel a print job.
2021 ****************************************************************************/
2022
2023 static int cmd_cancel(void)
2024 {
2025         TALLOC_CTX *ctx = talloc_tos();
2026         char *buf = NULL;
2027         int job;
2028
2029         if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2030                 d_printf("cancel <jobid> ...\n");
2031                 return 1;
2032         }
2033         do {
2034                 job = atoi(buf);
2035                 do_cancel(job);
2036         } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2037
2038         return 0;
2039 }
2040
2041 /****************************************************************************
2042  Print a file.
2043 ****************************************************************************/
2044
2045 static int cmd_print(void)
2046 {
2047         TALLOC_CTX *ctx = talloc_tos();
2048         char *lname = NULL;
2049         char *rname = NULL;
2050         char *p = NULL;
2051
2052         if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2053                 d_printf("print <filename>\n");
2054                 return 1;
2055         }
2056
2057         rname = talloc_strdup(ctx, lname);
2058         if (!rname) {
2059                 return 1;
2060         }
2061         p = strrchr_m(rname,'/');
2062         if (p) {
2063                 rname = talloc_asprintf(ctx,
2064                                         "%s-%d",
2065                                         p+1,
2066                                         (int)sys_getpid());
2067         }
2068         if (strequal(lname,"-")) {
2069                 rname = talloc_asprintf(ctx,
2070                                 "stdin-%d",
2071                                 (int)sys_getpid());
2072         }
2073         if (!rname) {
2074                 return 1;
2075         }
2076
2077         return do_put(rname, lname, false);
2078 }
2079
2080 /****************************************************************************
2081  Show a print queue entry.
2082 ****************************************************************************/
2083
2084 static void queue_fn(struct print_job_info *p)
2085 {
2086         d_printf("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name);
2087 }
2088
2089 /****************************************************************************
2090  Show a print queue.
2091 ****************************************************************************/
2092
2093 static int cmd_queue(void)
2094 {
2095         cli_print_queue(cli, queue_fn);
2096         return 0;
2097 }
2098
2099 /****************************************************************************
2100  Delete some files.
2101 ****************************************************************************/
2102
2103 static void do_del(file_info *finfo, const char *dir)
2104 {
2105         TALLOC_CTX *ctx = talloc_tos();
2106         char *mask = NULL;
2107
2108         mask = talloc_asprintf(ctx,
2109                                 "%s%c%s",
2110                                 dir,
2111                                 CLI_DIRSEP_CHAR,
2112                                 finfo->name);
2113         if (!mask) {
2114                 return;
2115         }
2116
2117         if (finfo->mode & aDIR) {
2118                 TALLOC_FREE(mask);
2119                 return;
2120         }
2121
2122         if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2123                 d_printf("%s deleting remote file %s\n",
2124                                 cli_errstr(finfo->cli),mask);
2125         }
2126         TALLOC_FREE(mask);
2127 }
2128
2129 /****************************************************************************
2130  Delete some files.
2131 ****************************************************************************/
2132
2133 static int cmd_del(void)
2134 {
2135         TALLOC_CTX *ctx = talloc_tos();
2136         char *mask = NULL;
2137         char *buf = NULL;
2138         uint16 attribute = aSYSTEM | aHIDDEN;
2139
2140         if (recurse) {
2141                 attribute |= aDIR;
2142         }
2143
2144         mask = talloc_strdup(ctx, client_get_cur_dir());
2145         if (!mask) {
2146                 return 1;
2147         }
2148         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2149                 d_printf("del <filename>\n");
2150                 return 1;
2151         }
2152         mask = talloc_asprintf_append(mask, "%s", buf);
2153         if (!mask) {
2154                 return 1;
2155         }
2156
2157         do_list(mask,attribute,do_del,false,false);
2158         return 0;
2159 }
2160
2161 /****************************************************************************
2162  Wildcard delete some files.
2163 ****************************************************************************/
2164
2165 static int cmd_wdel(void)
2166 {
2167         TALLOC_CTX *ctx = talloc_tos();
2168         char *mask = NULL;
2169         char *buf = NULL;
2170         uint16 attribute;
2171         struct cli_state *targetcli;
2172         char *targetname = NULL;
2173
2174         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2175                 d_printf("wdel 0x<attrib> <wcard>\n");
2176                 return 1;
2177         }
2178
2179         attribute = (uint16)strtol(buf, (char **)NULL, 16);
2180
2181         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2182                 d_printf("wdel 0x<attrib> <wcard>\n");
2183                 return 1;
2184         }
2185
2186         mask = talloc_asprintf(ctx, "%s%s",
2187                         client_get_cur_dir(),
2188                         buf);
2189         if (!mask) {
2190                 return 1;
2191         }
2192
2193         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2194                 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2195                 return 1;
2196         }
2197
2198         if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2199                 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2200         }
2201         return 0;
2202 }
2203
2204 /****************************************************************************
2205 ****************************************************************************/
2206
2207 static int cmd_open(void)
2208 {
2209         TALLOC_CTX *ctx = talloc_tos();
2210         char *mask = NULL;
2211         char *buf = NULL;
2212         char *targetname = NULL;
2213         struct cli_state *targetcli;
2214         uint16_t fnum = (uint16_t)-1;
2215
2216         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2217                 d_printf("open <filename>\n");
2218                 return 1;
2219         }
2220         mask = talloc_asprintf(ctx,
2221                         "%s%s",
2222                         client_get_cur_dir(),
2223                         buf);
2224         if (!mask) {
2225                 return 1;
2226         }
2227
2228         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2229                 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2230                 return 1;
2231         }
2232
2233         if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2234                         FILE_READ_DATA|FILE_WRITE_DATA, 0,
2235                         FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2236                 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2237                                 FILE_READ_DATA, 0,
2238                                 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2239                         d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2240                 } else {
2241                         d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2242                 }
2243         } else {
2244                 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2245         }
2246         return 0;
2247 }
2248
2249 static int cmd_posix_encrypt(void)
2250 {
2251         TALLOC_CTX *ctx = talloc_tos();
2252         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2253
2254         if (cli->use_kerberos) {
2255                 status = cli_gss_smb_encryption_start(cli);
2256         } else {
2257                 char *domain = NULL;
2258                 char *user = NULL;
2259                 char *password = NULL;
2260
2261                 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2262                         d_printf("posix_encrypt domain user password\n");
2263                         return 1;
2264                 }
2265
2266                 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2267                         d_printf("posix_encrypt domain user password\n");
2268                         return 1;
2269                 }
2270
2271                 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2272                         d_printf("posix_encrypt domain user password\n");
2273                         return 1;
2274                 }
2275
2276                 status = cli_raw_ntlm_smb_encryption_start(cli,
2277                                                         user,
2278                                                         password,
2279                                                         domain);
2280         }
2281
2282         if (!NT_STATUS_IS_OK(status)) {
2283                 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2284         } else {
2285                 d_printf("encryption on\n");
2286                 smb_encrypt = true;
2287         }
2288
2289         return 0;
2290 }
2291
2292 /****************************************************************************
2293 ****************************************************************************/
2294
2295 static int cmd_posix_open(void)
2296 {
2297         TALLOC_CTX *ctx = talloc_tos();
2298         char *mask = NULL;
2299         char *buf = NULL;
2300         char *targetname = NULL;
2301         struct cli_state *targetcli;
2302         mode_t mode;
2303         uint16_t fnum;
2304
2305         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2306                 d_printf("posix_open <filename> 0<mode>\n");
2307                 return 1;
2308         }
2309         mask = talloc_asprintf(ctx,
2310                         "%s%s",
2311                         client_get_cur_dir(),
2312                         buf);
2313         if (!mask) {
2314                 return 1;
2315         }
2316
2317         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2318                 d_printf("posix_open <filename> 0<mode>\n");
2319                 return 1;
2320         }
2321         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2322
2323         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2324                 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2325                 return 1;
2326         }
2327
2328         if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2329                 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2330                         d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2331                 } else {
2332                         d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2333                 }
2334         } else {
2335                 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2336         }
2337
2338         return 0;
2339 }
2340
2341 static int cmd_posix_mkdir(void)
2342 {
2343         TALLOC_CTX *ctx = talloc_tos();
2344         char *mask = NULL;
2345         char *buf = NULL;
2346         char *targetname = NULL;
2347         struct cli_state *targetcli;
2348         mode_t mode;
2349
2350         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2351                 d_printf("posix_mkdir <filename> 0<mode>\n");
2352                 return 1;
2353         }
2354         mask = talloc_asprintf(ctx,
2355                         "%s%s",
2356                         client_get_cur_dir(),
2357                         buf);
2358         if (!mask) {
2359                 return 1;
2360         }
2361
2362         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2363                 d_printf("posix_mkdir <filename> 0<mode>\n");
2364                 return 1;
2365         }
2366         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2367
2368         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2369                 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2370                 return 1;
2371         }
2372
2373         if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2374                 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2375         } else {
2376                 d_printf("posix_mkdir created directory %s\n", targetname);
2377         }
2378         return 0;
2379 }
2380
2381 static int cmd_posix_unlink(void)
2382 {
2383         TALLOC_CTX *ctx = talloc_tos();
2384         char *mask = NULL;
2385         char *buf = NULL;
2386         char *targetname = NULL;
2387         struct cli_state *targetcli;
2388
2389         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2390                 d_printf("posix_unlink <filename>\n");
2391                 return 1;
2392         }
2393         mask = talloc_asprintf(ctx,
2394                         "%s%s",
2395                         client_get_cur_dir(),
2396                         buf);
2397         if (!mask) {
2398                 return 1;
2399         }
2400
2401         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2402                 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2403                 return 1;
2404         }
2405
2406         if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2407                 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2408         } else {
2409                 d_printf("posix_unlink deleted file %s\n", targetname);
2410         }
2411
2412         return 0;
2413 }
2414
2415 static int cmd_posix_rmdir(void)
2416 {
2417         TALLOC_CTX *ctx = talloc_tos();
2418         char *mask = NULL;
2419         char *buf = NULL;
2420         char *targetname = NULL;
2421         struct cli_state *targetcli;
2422
2423         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2424                 d_printf("posix_rmdir <filename>\n");
2425                 return 1;
2426         }
2427         mask = talloc_asprintf(ctx,
2428                         "%s%s",
2429                         client_get_cur_dir(),
2430                         buf);
2431         if (!mask) {
2432                 return 1;
2433         }
2434
2435         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2436                 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2437                 return 1;
2438         }
2439
2440         if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2441                 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2442         } else {
2443                 d_printf("posix_rmdir deleted directory %s\n", targetname);
2444         }
2445
2446         return 0;
2447 }
2448
2449 static int cmd_close(void)
2450 {
2451         TALLOC_CTX *ctx = talloc_tos();
2452         char *buf = NULL;
2453         int fnum;
2454
2455         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2456                 d_printf("close <fnum>\n");
2457                 return 1;
2458         }
2459
2460         fnum = atoi(buf);
2461         /* We really should use the targetcli here.... */
2462         if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2463                 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2464                 return 1;
2465         }
2466         return 0;
2467 }
2468
2469 static int cmd_posix(void)
2470 {
2471         TALLOC_CTX *ctx = talloc_tos();
2472         uint16 major, minor;
2473         uint32 caplow, caphigh;
2474         char *caps;
2475         NTSTATUS status;
2476
2477         if (!SERVER_HAS_UNIX_CIFS(cli)) {
2478                 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2479                 return 1;
2480         }
2481
2482         status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2483                                              &caphigh);
2484         if (!NT_STATUS_IS_OK(status)) {
2485                 d_printf("Can't get UNIX CIFS extensions version from "
2486                          "server: %s\n", nt_errstr(status));
2487                 return 1;
2488         }
2489
2490         d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2491
2492         caps = talloc_strdup(ctx, "");
2493         if (!caps) {
2494                 return 1;
2495         }
2496         if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2497                 caps = talloc_asprintf_append(caps, "locks ");
2498                 if (!caps) {
2499                         return 1;
2500                 }
2501         }
2502         if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2503                 caps = talloc_asprintf_append(caps, "acls ");
2504                 if (!caps) {
2505                         return 1;
2506                 }
2507         }
2508         if (caplow & CIFS_UNIX_XATTTR_CAP) {
2509                 caps = talloc_asprintf_append(caps, "eas ");
2510                 if (!caps) {
2511                         return 1;
2512                 }
2513         }
2514         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2515                 caps = talloc_asprintf_append(caps, "pathnames ");
2516                 if (!caps) {
2517                         return 1;
2518                 }
2519         }
2520         if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2521                 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2522                 if (!caps) {
2523                         return 1;
2524                 }
2525         }
2526         if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2527                 caps = talloc_asprintf_append(caps, "large_read ");
2528                 if (!caps) {
2529                         return 1;
2530                 }
2531         }
2532         if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2533                 caps = talloc_asprintf_append(caps, "large_write ");
2534                 if (!caps) {
2535                         return 1;
2536                 }
2537         }
2538         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2539                 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2540                 if (!caps) {
2541                         return 1;
2542                 }
2543         }
2544         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2545                 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2546                 if (!caps) {
2547                         return 1;
2548                 }
2549         }
2550
2551         if (*caps && caps[strlen(caps)-1] == ' ') {
2552                 caps[strlen(caps)-1] = '\0';
2553         }
2554
2555         d_printf("Server supports CIFS capabilities %s\n", caps);
2556
2557         status = cli_set_unix_extensions_capabilities(cli, major, minor,
2558                                                       caplow, caphigh);
2559         if (!NT_STATUS_IS_OK(status)) {
2560                 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2561                          nt_errstr(status));
2562                 return 1;
2563         }
2564
2565         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2566                 CLI_DIRSEP_CHAR = '/';
2567                 *CLI_DIRSEP_STR = '/';
2568                 client_set_cur_dir(CLI_DIRSEP_STR);
2569         }
2570
2571         return 0;
2572 }
2573
2574 static int cmd_lock(void)
2575 {
2576         TALLOC_CTX *ctx = talloc_tos();
2577         char *buf = NULL;
2578         uint64_t start, len;
2579         enum brl_type lock_type;
2580         int fnum;
2581
2582         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2583                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2584                 return 1;
2585         }
2586         fnum = atoi(buf);
2587
2588         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2589                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2590                 return 1;
2591         }
2592
2593         if (*buf == 'r' || *buf == 'R') {
2594                 lock_type = READ_LOCK;
2595         } else if (*buf == 'w' || *buf == 'W') {
2596                 lock_type = WRITE_LOCK;
2597         } else {
2598                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2599                 return 1;
2600         }
2601
2602         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2603                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2604                 return 1;
2605         }
2606
2607         start = (uint64_t)strtol(buf, (char **)NULL, 16);
2608
2609         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2610                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2611                 return 1;
2612         }
2613
2614         len = (uint64_t)strtol(buf, (char **)NULL, 16);
2615
2616         if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2617                 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2618         }
2619
2620         return 0;
2621 }
2622
2623 static int cmd_unlock(void)
2624 {
2625         TALLOC_CTX *ctx = talloc_tos();
2626         char *buf = NULL;
2627         uint64_t start, len;
2628         int fnum;
2629
2630         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2631                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2632                 return 1;
2633         }
2634         fnum = atoi(buf);
2635
2636         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2637                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2638                 return 1;
2639         }
2640
2641         start = (uint64_t)strtol(buf, (char **)NULL, 16);
2642
2643         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2644                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2645                 return 1;
2646         }
2647
2648         len = (uint64_t)strtol(buf, (char **)NULL, 16);
2649
2650         if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2651                 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2652         }
2653
2654         return 0;
2655 }
2656
2657
2658 /****************************************************************************
2659  Remove a directory.
2660 ****************************************************************************/
2661
2662 static int cmd_rmdir(void)
2663 {
2664         TALLOC_CTX *ctx = talloc_tos();
2665         char *mask = NULL;
2666         char *buf = NULL;
2667         char *targetname = NULL;
2668         struct cli_state *targetcli;
2669
2670         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2671                 d_printf("rmdir <dirname>\n");
2672                 return 1;
2673         }
2674         mask = talloc_asprintf(ctx,
2675                         "%s%s",
2676                         client_get_cur_dir(),
2677                         buf);
2678         if (!mask) {
2679                 return 1;
2680         }
2681
2682         if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2683                 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2684                 return 1;
2685         }
2686
2687         if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2688                 d_printf("%s removing remote directory file %s\n",
2689                          cli_errstr(targetcli),mask);
2690         }
2691
2692         return 0;
2693 }
2694
2695 /****************************************************************************
2696  UNIX hardlink.
2697 ****************************************************************************/
2698
2699 static int cmd_link(void)
2700 {
2701         TALLOC_CTX *ctx = talloc_tos();
2702         char *oldname = NULL;
2703         char *newname = NULL;
2704         char *buf = NULL;
2705         char *buf2 = NULL;
2706         char *targetname = NULL;
2707         struct cli_state *targetcli;
2708
2709         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2710             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2711                 d_printf("link <oldname> <newname>\n");
2712                 return 1;
2713         }
2714         oldname = talloc_asprintf(ctx,
2715                         "%s%s",
2716                         client_get_cur_dir(),
2717                         buf);
2718         if (!oldname) {
2719                 return 1;
2720         }
2721         newname = talloc_asprintf(ctx,
2722                         "%s%s",
2723                         client_get_cur_dir(),
2724                         buf2);
2725         if (!newname) {
2726                 return 1;
2727         }
2728
2729         if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2730                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2731                 return 1;
2732         }
2733
2734         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2735                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2736                 return 1;
2737         }
2738
2739         if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2740                 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2741                 return 1;
2742         }
2743         return 0;
2744 }
2745
2746 /****************************************************************************
2747  UNIX readlink.
2748 ****************************************************************************/
2749
2750 static int cmd_readlink(void)
2751 {
2752         TALLOC_CTX *ctx = talloc_tos();
2753         char *name= NULL;
2754         char *buf = NULL;
2755         char *targetname = NULL;
2756         char linkname[PATH_MAX+1];
2757         struct cli_state *targetcli;
2758
2759         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2760                 d_printf("readlink <name>\n");
2761                 return 1;
2762         }
2763         name = talloc_asprintf(ctx,
2764                         "%s%s",
2765                         client_get_cur_dir(),
2766                         buf);
2767         if (!name) {
2768                 return 1;
2769         }
2770
2771         if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2772                 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2773                 return 1;
2774         }
2775
2776         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2777                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2778                 return 1;
2779         }
2780
2781         if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2782                         linkname, PATH_MAX+1))) {
2783                 d_printf("%s readlink on file %s\n",
2784                         cli_errstr(targetcli), name);
2785                 return 1;
2786         }
2787
2788         d_printf("%s -> %s\n", name, linkname);
2789
2790         return 0;
2791 }
2792
2793
2794 /****************************************************************************
2795  UNIX symlink.
2796 ****************************************************************************/
2797
2798 static int cmd_symlink(void)
2799 {
2800         TALLOC_CTX *ctx = talloc_tos();
2801         char *oldname = NULL;
2802         char *newname = NULL;
2803         char *buf = NULL;
2804         char *buf2 = NULL;
2805         char *targetname = NULL;
2806         struct cli_state *targetcli;
2807
2808         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2809             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2810                 d_printf("symlink <oldname> <newname>\n");
2811                 return 1;
2812         }
2813         oldname = talloc_asprintf(ctx,
2814                         "%s%s",
2815                         client_get_cur_dir(),
2816                         buf);
2817         if (!oldname) {
2818                 return 1;
2819         }
2820         newname = talloc_asprintf(ctx,
2821                         "%s%s",
2822                         client_get_cur_dir(),
2823                         buf2);
2824         if (!newname) {
2825                 return 1;
2826         }
2827
2828         if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2829                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2830                 return 1;
2831         }
2832
2833         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2834                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2835                 return 1;
2836         }
2837
2838         if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2839                 d_printf("%s symlinking files (%s -> %s)\n",
2840                         cli_errstr(targetcli), newname, targetname);
2841                 return 1;
2842         }
2843
2844         return 0;
2845 }
2846
2847 /****************************************************************************
2848  UNIX chmod.
2849 ****************************************************************************/
2850
2851 static int cmd_chmod(void)
2852 {
2853         TALLOC_CTX *ctx = talloc_tos();
2854         char *src = NULL;
2855         char *buf = NULL;
2856         char *buf2 = NULL;
2857         char *targetname = NULL;
2858         struct cli_state *targetcli;
2859         mode_t mode;
2860
2861         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2862             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2863                 d_printf("chmod mode file\n");
2864                 return 1;
2865         }
2866         src = talloc_asprintf(ctx,
2867                         "%s%s",
2868                         client_get_cur_dir(),
2869                         buf2);
2870         if (!src) {
2871                 return 1;
2872         }
2873
2874         mode = (mode_t)strtol(buf, NULL, 8);
2875
2876         if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2877                 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2878                 return 1;
2879         }
2880
2881         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2882                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2883                 return 1;
2884         }
2885
2886         if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2887                 d_printf("%s chmod file %s 0%o\n",
2888                         cli_errstr(targetcli), src, (unsigned int)mode);
2889                 return 1;
2890         }
2891
2892         return 0;
2893 }
2894
2895 static const char *filetype_to_str(mode_t mode)
2896 {
2897         if (S_ISREG(mode)) {
2898                 return "regular file";
2899         } else if (S_ISDIR(mode)) {
2900                 return "directory";
2901         } else
2902 #ifdef S_ISCHR
2903         if (S_ISCHR(mode)) {
2904                 return "character device";
2905         } else
2906 #endif
2907 #ifdef S_ISBLK
2908         if (S_ISBLK(mode)) {
2909                 return "block device";
2910         } else
2911 #endif
2912 #ifdef S_ISFIFO
2913         if (S_ISFIFO(mode)) {
2914                 return "fifo";
2915         } else
2916 #endif
2917 #ifdef S_ISLNK
2918         if (S_ISLNK(mode)) {
2919                 return "symbolic link";
2920         } else
2921 #endif
2922 #ifdef S_ISSOCK
2923         if (S_ISSOCK(mode)) {
2924                 return "socket";
2925         } else
2926 #endif
2927         return "";
2928 }
2929
2930 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2931 {
2932         if (m & bt) {
2933                 return ret;
2934         } else {
2935                 return '-';
2936         }
2937 }
2938
2939 static char *unix_mode_to_str(char *s, mode_t m)
2940 {
2941         char *p = s;
2942         const char *str = filetype_to_str(m);
2943
2944         switch(str[0]) {
2945                 case 'd':
2946                         *p++ = 'd';
2947                         break;
2948                 case 'c':
2949                         *p++ = 'c';
2950                         break;
2951                 case 'b':
2952                         *p++ = 'b';
2953                         break;
2954                 case 'f':
2955                         *p++ = 'p';
2956                         break;
2957                 case 's':
2958                         *p++ = str[1] == 'y' ? 'l' : 's';
2959                         break;
2960                 case 'r':
2961                 default:
2962                         *p++ = '-';
2963                         break;
2964         }
2965         *p++ = rwx_to_str(m, S_IRUSR, 'r');
2966         *p++ = rwx_to_str(m, S_IWUSR, 'w');
2967         *p++ = rwx_to_str(m, S_IXUSR, 'x');
2968         *p++ = rwx_to_str(m, S_IRGRP, 'r');
2969         *p++ = rwx_to_str(m, S_IWGRP, 'w');
2970         *p++ = rwx_to_str(m, S_IXGRP, 'x');
2971         *p++ = rwx_to_str(m, S_IROTH, 'r');
2972         *p++ = rwx_to_str(m, S_IWOTH, 'w');
2973         *p++ = rwx_to_str(m, S_IXOTH, 'x');
2974         *p++ = '\0';
2975         return s;
2976 }
2977
2978 /****************************************************************************
2979  Utility function for UNIX getfacl.
2980 ****************************************************************************/
2981
2982 static char *perms_to_string(fstring permstr, unsigned char perms)
2983 {
2984         fstrcpy(permstr, "---");
2985         if (perms & SMB_POSIX_ACL_READ) {
2986                 permstr[0] = 'r';
2987         }
2988         if (perms & SMB_POSIX_ACL_WRITE) {
2989                 permstr[1] = 'w';
2990         }
2991         if (perms & SMB_POSIX_ACL_EXECUTE) {
2992                 permstr[2] = 'x';
2993         }
2994         return permstr;
2995 }
2996
2997 /****************************************************************************
2998  UNIX getfacl.
2999 ****************************************************************************/
3000
3001 static int cmd_getfacl(void)
3002 {
3003         TALLOC_CTX *ctx = talloc_tos();
3004         char *src = NULL;
3005         char *name = NULL;
3006         char *targetname = NULL;
3007         struct cli_state *targetcli;
3008         uint16 major, minor;
3009         uint32 caplow, caphigh;
3010         char *retbuf = NULL;
3011         size_t rb_size = 0;
3012         SMB_STRUCT_STAT sbuf;
3013         uint16 num_file_acls = 0;
3014         uint16 num_dir_acls = 0;
3015         uint16 i;
3016         NTSTATUS status;
3017
3018         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3019                 d_printf("getfacl filename\n");
3020                 return 1;
3021         }
3022         src = talloc_asprintf(ctx,
3023                         "%s%s",
3024                         client_get_cur_dir(),
3025                         name);
3026         if (!src) {
3027                 return 1;
3028         }
3029
3030         if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3031                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3032                 return 1;
3033         }
3034
3035         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3036                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3037                 return 1;
3038         }
3039
3040         status = cli_unix_extensions_version(targetcli, &major, &minor,
3041                                              &caplow, &caphigh);
3042         if (!NT_STATUS_IS_OK(status)) {
3043                 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3044                          nt_errstr(status));
3045                 return 1;
3046         }
3047
3048         if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3049                 d_printf("This server supports UNIX extensions "
3050                         "but doesn't support POSIX ACLs.\n");
3051                 return 1;
3052         }
3053
3054         if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3055                 d_printf("%s getfacl doing a stat on file %s\n",
3056                         cli_errstr(targetcli), src);
3057                 return 1;
3058         }
3059
3060         if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3061                 d_printf("%s getfacl file %s\n",
3062                         cli_errstr(targetcli), src);
3063                 return 1;
3064         }
3065
3066         /* ToDo : Print out the ACL values. */
3067         if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3068                 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3069                         src, (unsigned int)CVAL(retbuf,0) );
3070                 return 1;
3071         }
3072
3073         num_file_acls = SVAL(retbuf,2);
3074         num_dir_acls = SVAL(retbuf,4);
3075         if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3076                 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3077                         src,
3078                         (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3079                         (unsigned int)rb_size);
3080                 return 1;
3081         }
3082
3083         d_printf("# file: %s\n", src);
3084         d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3085
3086         if (num_file_acls == 0 && num_dir_acls == 0) {
3087                 d_printf("No acls found.\n");
3088         }
3089
3090         for (i = 0; i < num_file_acls; i++) {
3091                 uint32 uorg;
3092                 fstring permstring;
3093                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3094                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3095
3096                 switch(tagtype) {
3097                         case SMB_POSIX_ACL_USER_OBJ:
3098                                 d_printf("user::");
3099                                 break;
3100                         case SMB_POSIX_ACL_USER:
3101                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3102                                 d_printf("user:%u:", uorg);
3103                                 break;
3104                         case SMB_POSIX_ACL_GROUP_OBJ:
3105                                 d_printf("group::");
3106                                 break;
3107                         case SMB_POSIX_ACL_GROUP:
3108                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3109                                 d_printf("group:%u:", uorg);
3110                                 break;
3111                         case SMB_POSIX_ACL_MASK:
3112                                 d_printf("mask::");
3113                                 break;
3114                         case SMB_POSIX_ACL_OTHER:
3115                                 d_printf("other::");
3116                                 break;
3117                         default:
3118                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3119                                         src, (unsigned int)tagtype );
3120                                 SAFE_FREE(retbuf);
3121                                 return 1;
3122                 }
3123
3124                 d_printf("%s\n", perms_to_string(permstring, perms));
3125         }
3126
3127         for (i = 0; i < num_dir_acls; i++) {
3128                 uint32 uorg;
3129                 fstring permstring;
3130                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3131                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3132
3133                 switch(tagtype) {
3134                         case SMB_POSIX_ACL_USER_OBJ:
3135                                 d_printf("default:user::");
3136                                 break;
3137                         case SMB_POSIX_ACL_USER:
3138                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3139                                 d_printf("default:user:%u:", uorg);
3140                                 break;
3141                         case SMB_POSIX_ACL_GROUP_OBJ:
3142                                 d_printf("default:group::");
3143                                 break;
3144                         case SMB_POSIX_ACL_GROUP:
3145                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3146                                 d_printf("default:group:%u:", uorg);
3147                                 break;
3148                         case SMB_POSIX_ACL_MASK:
3149                                 d_printf("default:mask::");
3150                                 break;
3151                         case SMB_POSIX_ACL_OTHER:
3152                                 d_printf("default:other::");
3153                                 break;
3154                         default:
3155                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3156                                         src, (unsigned int)tagtype );
3157                                 SAFE_FREE(retbuf);
3158                                 return 1;
3159                 }
3160
3161                 d_printf("%s\n", perms_to_string(permstring, perms));
3162         }
3163
3164         return 0;
3165 }
3166
3167 /****************************************************************************
3168  UNIX stat.
3169 ****************************************************************************/
3170
3171 static int cmd_stat(void)
3172 {
3173         TALLOC_CTX *ctx = talloc_tos();
3174         char *src = NULL;
3175         char *name = NULL;
3176         char *targetname = NULL;
3177         struct cli_state *targetcli;
3178         fstring mode_str;
3179         SMB_STRUCT_STAT sbuf;
3180         struct tm *lt;
3181         time_t tmp_time;
3182
3183         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3184                 d_printf("stat file\n");
3185                 return 1;
3186         }
3187         src = talloc_asprintf(ctx,
3188                         "%s%s",
3189                         client_get_cur_dir(),
3190                         name);
3191         if (!src) {
3192                 return 1;
3193         }
3194
3195         if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3196                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3197                 return 1;
3198         }
3199
3200         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3201                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3202                 return 1;
3203         }
3204
3205         if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3206                 d_printf("%s stat file %s\n",
3207                         cli_errstr(targetcli), src);
3208                 return 1;
3209         }
3210
3211         /* Print out the stat values. */
3212         d_printf("File: %s\n", src);
3213         d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3214                 (double)sbuf.st_ex_size,
3215                 (unsigned int)sbuf.st_ex_blocks,
3216                 filetype_to_str(sbuf.st_ex_mode));
3217
3218 #if defined(S_ISCHR) && defined(S_ISBLK)
3219         if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3220                 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3221                         (double)sbuf.st_ex_ino,
3222                         (unsigned int)sbuf.st_ex_nlink,
3223                         unix_dev_major(sbuf.st_ex_rdev),
3224                         unix_dev_minor(sbuf.st_ex_rdev));
3225         } else
3226 #endif
3227                 d_printf("Inode: %.0f\tLinks: %u\n",
3228                         (double)sbuf.st_ex_ino,
3229                         (unsigned int)sbuf.st_ex_nlink);
3230
3231         d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3232                 ((int)sbuf.st_ex_mode & 0777),
3233                 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3234                 (unsigned int)sbuf.st_ex_uid,
3235                 (unsigned int)sbuf.st_ex_gid);
3236
3237         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3238         lt = localtime(&tmp_time);
3239         if (lt) {
3240                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3241         } else {
3242                 fstrcpy(mode_str, "unknown");
3243         }
3244         d_printf("Access: %s\n", mode_str);
3245
3246         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3247         lt = localtime(&tmp_time);
3248         if (lt) {
3249                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3250         } else {
3251                 fstrcpy(mode_str, "unknown");
3252         }
3253         d_printf("Modify: %s\n", mode_str);
3254
3255         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3256         lt = localtime(&tmp_time);
3257         if (lt) {
3258                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3259         } else {
3260                 fstrcpy(mode_str, "unknown");
3261         }
3262         d_printf("Change: %s\n", mode_str);
3263
3264         return 0;
3265 }
3266
3267
3268 /****************************************************************************
3269  UNIX chown.
3270 ****************************************************************************/
3271
3272 static int cmd_chown(void)
3273 {
3274         TALLOC_CTX *ctx = talloc_tos();
3275         char *src = NULL;
3276         uid_t uid;
3277         gid_t gid;
3278         char *buf, *buf2, *buf3;
3279         struct cli_state *targetcli;
3280         char *targetname = NULL;
3281
3282         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3283             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3284             !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3285                 d_printf("chown uid gid file\n");
3286                 return 1;
3287         }
3288
3289         uid = (uid_t)atoi(buf);
3290         gid = (gid_t)atoi(buf2);
3291
3292         src = talloc_asprintf(ctx,
3293                         "%s%s",
3294                         client_get_cur_dir(),
3295                         buf3);
3296         if (!src) {
3297                 return 1;
3298         }
3299         if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3300                 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3301                 return 1;
3302         }
3303
3304         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3305                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3306                 return 1;
3307         }
3308
3309         if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3310                 d_printf("%s chown file %s uid=%d, gid=%d\n",
3311                         cli_errstr(targetcli), src, (int)uid, (int)gid);
3312                 return 1;
3313         }
3314
3315         return 0;
3316 }
3317
3318 /****************************************************************************
3319  Rename some file.
3320 ****************************************************************************/
3321
3322 static int cmd_rename(void)
3323 {
3324         TALLOC_CTX *ctx = talloc_tos();
3325         char *src, *dest;
3326         char *buf, *buf2;
3327         struct cli_state *targetcli;
3328         char *targetsrc;
3329         char *targetdest;
3330
3331         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3332             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3333                 d_printf("rename <src> <dest>\n");
3334                 return 1;
3335         }
3336
3337         src = talloc_asprintf(ctx,
3338                         "%s%s",
3339                         client_get_cur_dir(),
3340                         buf);
3341         if (!src) {
3342                 return 1;
3343         }
3344
3345         dest = talloc_asprintf(ctx,
3346                         "%s%s",
3347                         client_get_cur_dir(),
3348                         buf2);
3349         if (!dest) {
3350                 return 1;
3351         }
3352
3353         if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3354                 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3355                 return 1;
3356         }
3357
3358         if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3359                 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3360                 return 1;
3361         }
3362
3363         if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3364                 d_printf("%s renaming files %s -> %s \n",
3365                         cli_errstr(targetcli),
3366                         targetsrc,
3367                         targetdest);
3368                 return 1;
3369         }
3370
3371         return 0;
3372 }
3373
3374 /****************************************************************************
3375  Print the volume name.
3376 ****************************************************************************/
3377
3378 static int cmd_volume(void)
3379 {
3380         fstring volname;
3381         uint32 serial_num;
3382         time_t create_date;
3383         NTSTATUS status;
3384
3385         status = cli_get_fs_volume_info(cli, volname, &serial_num,
3386                                         &create_date);
3387         if (!NT_STATUS_IS_OK(status)) {
3388                 d_printf("Error %s getting volume info\n", nt_errstr(status));
3389                 return 1;
3390         }
3391
3392         d_printf("Volume: |%s| serial number 0x%x\n",
3393                         volname, (unsigned int)serial_num);
3394         return 0;
3395 }
3396
3397 /****************************************************************************
3398  Hard link files using the NT call.
3399 ****************************************************************************/
3400
3401 static int cmd_hardlink(void)
3402 {
3403         TALLOC_CTX *ctx = talloc_tos();
3404         char *src, *dest;
3405         char *buf, *buf2;
3406         struct cli_state *targetcli;
3407         char *targetname;
3408
3409         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3410             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3411                 d_printf("hardlink <src> <dest>\n");
3412                 return 1;
3413         }
3414
3415         src = talloc_asprintf(ctx,
3416                         "%s%s",
3417                         client_get_cur_dir(),
3418                         buf);
3419         if (!src) {
3420                 return 1;
3421         }
3422
3423         dest = talloc_asprintf(ctx,
3424                         "%s%s",
3425                         client_get_cur_dir(),
3426                         buf2);
3427         if (!dest) {
3428                 return 1;
3429         }
3430
3431         if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3432                 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3433                 return 1;
3434         }
3435
3436         if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3437                 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3438                 return 1;
3439         }
3440
3441         return 0;
3442 }
3443
3444 /****************************************************************************
3445  Toggle the prompt flag.
3446 ****************************************************************************/
3447
3448 static int cmd_prompt(void)
3449 {
3450         prompt = !prompt;
3451         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3452         return 1;
3453 }
3454
3455 /****************************************************************************
3456  Set the newer than time.
3457 ****************************************************************************/
3458
3459 static int cmd_newer(void)
3460 {
3461         TALLOC_CTX *ctx = talloc_tos();
3462         char *buf;
3463         bool ok;
3464         SMB_STRUCT_STAT sbuf;
3465
3466         ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3467         if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3468                 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3469                 DEBUG(1,("Getting files newer than %s",
3470                          time_to_asc(newer_than)));
3471         } else {
3472                 newer_than = 0;
3473         }
3474
3475         if (ok && newer_than == 0) {
3476                 d_printf("Error setting newer-than time\n");
3477                 return 1;
3478         }
3479
3480         return 0;
3481 }
3482
3483 /****************************************************************************
3484  Set the archive level.
3485 ****************************************************************************/
3486
3487 static int cmd_archive(void)
3488 {
3489         TALLOC_CTX *ctx = talloc_tos();
3490         char *buf;
3491
3492         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3493                 archive_level = atoi(buf);
3494         } else {
3495                 d_printf("Archive level is %d\n",archive_level);
3496         }
3497
3498         return 0;
3499 }
3500
3501 /****************************************************************************
3502  Toggle the lowercaseflag.
3503 ****************************************************************************/
3504
3505 static int cmd_lowercase(void)
3506 {
3507         lowercase = !lowercase;
3508         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3509         return 0;
3510 }
3511
3512 /****************************************************************************
3513  Toggle the case sensitive flag.
3514 ****************************************************************************/
3515
3516 static int cmd_setcase(void)
3517 {
3518         bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3519
3520         cli_set_case_sensitive(cli, !orig_case_sensitive);
3521         DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3522                 "on":"off"));
3523         return 0;
3524 }
3525
3526 /****************************************************************************
3527  Toggle the showacls flag.
3528 ****************************************************************************/
3529
3530 static int cmd_showacls(void)
3531 {
3532         showacls = !showacls;
3533         DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3534         return 0;
3535 }
3536
3537
3538 /****************************************************************************
3539  Toggle the recurse flag.
3540 ****************************************************************************/
3541
3542 static int cmd_recurse(void)
3543 {
3544         recurse = !recurse;
3545         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3546         return 0;
3547 }
3548
3549 /****************************************************************************
3550  Toggle the translate flag.
3551 ****************************************************************************/
3552
3553 static int cmd_translate(void)
3554 {
3555         translation = !translation;
3556         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3557                  translation?"on":"off"));
3558         return 0;
3559 }
3560
3561 /****************************************************************************
3562  Do the lcd command.
3563  ****************************************************************************/
3564
3565 static int cmd_lcd(void)
3566 {
3567         TALLOC_CTX *ctx = talloc_tos();
3568         char *buf;
3569         char *d;
3570
3571         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3572                 if (chdir(buf) == -1) {
3573                         d_printf("chdir to %s failed (%s)\n",
3574                                 buf, strerror(errno));
3575                 }
3576         }
3577         d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3578         if (!d) {
3579                 return 1;
3580         }
3581         DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3582         return 0;
3583 }
3584
3585 /****************************************************************************
3586  Get a file restarting at end of local file.
3587  ****************************************************************************/
3588
3589 static int cmd_reget(void)
3590 {
3591         TALLOC_CTX *ctx = talloc_tos();
3592         char *local_name = NULL;
3593         char *remote_name = NULL;
3594         char *fname = NULL;
3595         char *p = NULL;
3596
3597         remote_name = talloc_strdup(ctx, client_get_cur_dir());
3598         if (!remote_name) {
3599                 return 1;
3600         }
3601
3602         if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3603                 d_printf("reget <filename>\n");
3604                 return 1;
3605         }
3606         remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3607         if (!remote_name) {
3608                 return 1;
3609         }
3610         remote_name = clean_name(ctx,remote_name);
3611         if (!remote_name) {
3612                 return 1;
3613         }
3614
3615         local_name = fname;
3616         next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3617         if (p) {
3618                 local_name = p;
3619         }
3620
3621         return do_get(remote_name, local_name, true);
3622 }
3623
3624 /****************************************************************************
3625  Put a file restarting at end of local file.
3626  ****************************************************************************/
3627
3628 static int cmd_reput(void)
3629 {
3630         TALLOC_CTX *ctx = talloc_tos();
3631         char *local_name = NULL;
3632         char *remote_name = NULL;
3633         char *buf;
3634         SMB_STRUCT_STAT st;
3635
3636         remote_name = talloc_strdup(ctx, client_get_cur_dir());
3637         if (!remote_name) {
3638                 return 1;
3639         }
3640
3641         if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3642                 d_printf("reput <filename>\n");
3643                 return 1;
3644         }
3645
3646         if (!file_exist_stat(local_name, &st, false)) {
3647                 d_printf("%s does not exist\n", local_name);
3648                 return 1;
3649         }
3650
3651         if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3652                 remote_name = talloc_asprintf_append(remote_name,
3653                                                 "%s", buf);
3654         } else {
3655                 remote_name = talloc_asprintf_append(remote_name,
3656                                                 "%s", local_name);
3657         }
3658         if (!remote_name) {
3659                 return 1;
3660         }
3661
3662         remote_name = clean_name(ctx, remote_name);
3663         if (!remote_name) {
3664                 return 1;
3665         }
3666
3667         return do_put(remote_name, local_name, true);
3668 }
3669
3670 /****************************************************************************
3671  List a share name.
3672  ****************************************************************************/
3673
3674 static void browse_fn(const char *name, uint32 m,
3675                       const char *comment, void *state)
3676 {
3677         const char *typestr = "";
3678
3679         switch (m & 7) {
3680         case STYPE_DISKTREE:
3681                 typestr = "Disk";
3682                 break;
3683         case STYPE_PRINTQ:
3684                 typestr = "Printer";
3685                 break;
3686         case STYPE_DEVICE:
3687                 typestr = "Device";
3688                 break;
3689         case STYPE_IPC:
3690                 typestr = "IPC";
3691                 break;
3692         }
3693         /* FIXME: If the remote machine returns non-ascii characters
3694            in any of these fields, they can corrupt the output.  We
3695            should remove them. */
3696         if (!grepable) {
3697                 d_printf("\t%-15s %-10.10s%s\n",
3698                         name,typestr,comment);
3699         } else {
3700                 d_printf ("%s|%s|%s\n",typestr,name,comment);
3701         }
3702 }
3703
3704 static bool browse_host_rpc(bool sort)
3705 {
3706         NTSTATUS status;
3707         struct rpc_pipe_client *pipe_hnd = NULL;
3708         TALLOC_CTX *frame = talloc_stackframe();
3709         WERROR werr;
3710         struct srvsvc_NetShareInfoCtr info_ctr;
3711         struct srvsvc_NetShareCtr1 ctr1;
3712         uint32_t resume_handle = 0;
3713         uint32_t total_entries = 0;
3714         int i;
3715
3716         status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3717                                           &pipe_hnd);
3718
3719         if (!NT_STATUS_IS_OK(status)) {
3720                 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3721                            nt_errstr(status)));
3722                 TALLOC_FREE(frame);
3723                 return false;
3724         }
3725
3726         ZERO_STRUCT(info_ctr);
3727         ZERO_STRUCT(ctr1);
3728
3729         info_ctr.level = 1;
3730         info_ctr.ctr.ctr1 = &ctr1;
3731
3732         status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3733                                               pipe_hnd->desthost,
3734                                               &info_ctr,
3735                                               0xffffffff,
3736                                               &total_entries,
3737                                               &resume_handle,
3738                                               &werr);
3739
3740         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3741                 TALLOC_FREE(pipe_hnd);
3742                 TALLOC_FREE(frame);
3743                 return false;
3744         }
3745
3746         for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3747                 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3748                 browse_fn(info.name, info.type, info.comment, NULL);
3749         }
3750
3751         TALLOC_FREE(pipe_hnd);
3752         TALLOC_FREE(frame);
3753         return true;
3754 }
3755
3756 /****************************************************************************
3757  Try and browse available connections on a host.
3758 ****************************************************************************/
3759
3760 static bool browse_host(bool sort)
3761 {
3762         int ret;
3763         if (!grepable) {
3764                 d_printf("\n\tSharename       Type      Comment\n");
3765                 d_printf("\t---------       ----      -------\n");
3766         }
3767
3768         if (browse_host_rpc(sort)) {
3769                 return true;
3770         }
3771
3772         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3773                 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3774
3775         return (ret != -1);
3776 }
3777
3778 /****************************************************************************
3779  List a server name.
3780 ****************************************************************************/
3781
3782 static void server_fn(const char *name, uint32 m,
3783                       const char *comment, void *state)
3784 {
3785
3786         if (!grepable){
3787                 d_printf("\t%-16s     %s\n", name, comment);
3788         } else {
3789                 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3790         }
3791 }
3792
3793 /****************************************************************************
3794  Try and browse available connections on a host.
3795 ****************************************************************************/
3796
3797 static bool list_servers(const char *wk_grp)
3798 {
3799         fstring state;
3800
3801         if (!cli->server_domain)
3802                 return false;
3803
3804         if (!grepable) {
3805                 d_printf("\n\tServer               Comment\n");
3806                 d_printf("\t---------            -------\n");
3807         };
3808         fstrcpy( state, "Server" );
3809         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3810                           state);
3811
3812         if (!grepable) {
3813                 d_printf("\n\tWorkgroup            Master\n");
3814                 d_printf("\t---------            -------\n");
3815         };
3816
3817         fstrcpy( state, "Workgroup" );
3818         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3819                           server_fn, state);
3820         return true;
3821 }
3822
3823 /****************************************************************************
3824  Print or set current VUID
3825 ****************************************************************************/
3826
3827 static int cmd_vuid(void)
3828 {
3829         TALLOC_CTX *ctx = talloc_tos();
3830         char *buf;
3831
3832         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3833                 d_printf("Current VUID is %d\n", cli->vuid);
3834                 return 0;
3835         }
3836
3837         cli->vuid = atoi(buf);
3838         return 0;
3839 }
3840
3841 /****************************************************************************
3842  Setup a new VUID, by issuing a session setup
3843 ****************************************************************************/
3844
3845 static int cmd_logon(void)
3846 {
3847         TALLOC_CTX *ctx = talloc_tos();
3848         char *l_username, *l_password;
3849
3850         if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3851                 d_printf("logon <username> [<password>]\n");
3852                 return 0;
3853         }
3854
3855         if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3856                 char *pass = getpass("Password: ");
3857                 if (pass) {
3858                         l_password = talloc_strdup(ctx,pass);
3859                 }
3860         }
3861         if (!l_password) {
3862                 return 1;
3863         }
3864
3865         if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3866                                                l_password, strlen(l_password),
3867                                                l_password, strlen(l_password),
3868                                                lp_workgroup()))) {
3869                 d_printf("session setup failed: %s\n", cli_errstr(cli));
3870                 return -1;
3871         }
3872
3873         d_printf("Current VUID is %d\n", cli->vuid);
3874         return 0;
3875 }
3876
3877
3878 /****************************************************************************
3879  list active connections
3880 ****************************************************************************/
3881
3882 static int cmd_list_connect(void)
3883 {
3884         cli_cm_display(cli);
3885         return 0;
3886 }
3887
3888 /****************************************************************************
3889  display the current active client connection
3890 ****************************************************************************/
3891
3892 static int cmd_show_connect( void )
3893 {
3894         TALLOC_CTX *ctx = talloc_tos();
3895         struct cli_state *targetcli;
3896         char *targetpath;
3897
3898         if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3899                                 &targetcli, &targetpath ) ) {
3900                 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3901                 return 1;
3902         }
3903
3904         d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3905         return 0;
3906 }
3907
3908 /****************************************************************************
3909  iosize command
3910 ***************************************************************************/
3911
3912 int cmd_iosize(void)
3913 {
3914         TALLOC_CTX *ctx = talloc_tos();
3915         char *buf;
3916         int iosize;
3917
3918         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3919                 if (!smb_encrypt) {
3920                         d_printf("iosize <n> or iosize 0x<n>. "
3921                                 "Minimum is 16384 (0x4000), "
3922                                 "max is 16776960 (0xFFFF00)\n");
3923                 } else {
3924                         d_printf("iosize <n> or iosize 0x<n>. "
3925                                 "(Encrypted connection) ,"
3926                                 "Minimum is 16384 (0x4000), "
3927                                 "max is 130048 (0x1FC00)\n");
3928                 }
3929                 return 1;
3930         }
3931
3932         iosize = strtol(buf,NULL,0);
3933         if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3934                 d_printf("iosize out of range for encrypted "
3935                         "connection (min = 16384 (0x4000), "
3936                         "max = 130048 (0x1FC00)");
3937                 return 1;
3938         } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3939                 d_printf("iosize out of range (min = 16384 (0x4000), "
3940                         "max = 16776960 (0xFFFF00)");
3941                 return 1;
3942         }
3943
3944         io_bufsize = iosize;
3945         d_printf("iosize is now %d\n", io_bufsize);
3946         return 0;
3947 }
3948
3949
3950 /* Some constants for completing filename arguments */
3951
3952 #define COMPL_NONE        0          /* No completions */
3953 #define COMPL_REMOTE      1          /* Complete remote filename */
3954 #define COMPL_LOCAL       2          /* Complete local filename */
3955
3956 /* This defines the commands supported by this client.
3957  * NOTE: The "!" must be the last one in the list because it's fn pointer
3958  *       field is NULL, and NULL in that field is used in process_tok()
3959  *       (below) to indicate the end of the list.  crh
3960  */
3961 static struct {
3962         const char *name;
3963         int (*fn)(void);
3964         const char *description;
3965         char compl_args[2];      /* Completion argument info */
3966 } commands[] = {
3967   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3968   {"allinfo",cmd_allinfo,"<file> show all available info",
3969    {COMPL_NONE,COMPL_NONE}},
3970   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3971   {"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}},
3972   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3973   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3974   {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3975   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3976   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3977   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3978   {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3979   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3980   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3981   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3982   {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3983   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3984   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3985   {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3986   {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3987   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3988   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3989   {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3990   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3991   {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3992   {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3993   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
3994   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3995   {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3996   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3997   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3998   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3999   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4000   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
4001   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4002   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4003   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4004   {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4005   {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4006   {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4007   {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4008   {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4009   {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4010   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4011   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
4012   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4013   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4014   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4015   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4016   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4017   {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4018   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4019   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
4020   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4021   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4022   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4023   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4024   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4025   {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},  
4026   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4027   {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4028   {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4029   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4030   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4031   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4032   {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4033   {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4034   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4035   {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4036   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4037   {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4038   {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4039   {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4040
4041   /* Yes, this must be here, see crh's comment above. */
4042   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4043   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4044 };
4045
4046 /*******************************************************************
4047  Lookup a command string in the list of commands, including
4048  abbreviations.
4049 ******************************************************************/
4050
4051 static int process_tok(char *tok)
4052 {
4053         int i = 0, matches = 0;
4054         int cmd=0;
4055         int tok_len = strlen(tok);
4056
4057         while (commands[i].fn != NULL) {
4058                 if (strequal(commands[i].name,tok)) {
4059                         matches = 1;
4060                         cmd = i;
4061                         break;
4062                 } else if (strnequal(commands[i].name, tok, tok_len)) {
4063                         matches++;
4064                         cmd = i;
4065                 }
4066                 i++;
4067         }
4068
4069         if (matches == 0)
4070                 return(-1);
4071         else if (matches == 1)
4072                 return(cmd);
4073         else
4074                 return(-2);
4075 }
4076
4077 /****************************************************************************
4078  Help.
4079 ****************************************************************************/
4080
4081 static int cmd_help(void)
4082 {
4083         TALLOC_CTX *ctx = talloc_tos();
4084         int i=0,j;
4085         char *buf;
4086
4087         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4088                 if ((i = process_tok(buf)) >= 0)
4089                         d_printf("HELP %s:\n\t%s\n\n",
4090                                 commands[i].name,commands[i].description);
4091         } else {
4092                 while (commands[i].description) {
4093                         for (j=0; commands[i].description && (j<5); j++) {
4094                                 d_printf("%-15s",commands[i].name);
4095                                 i++;
4096                         }
4097                         d_printf("\n");
4098                 }
4099         }
4100         return 0;
4101 }
4102
4103 /****************************************************************************
4104  Process a -c command string.
4105 ****************************************************************************/
4106
4107 static int process_command_string(const char *cmd_in)
4108 {
4109         TALLOC_CTX *ctx = talloc_tos();
4110         char *cmd = talloc_strdup(ctx, cmd_in);
4111         int rc = 0;
4112
4113         if (!cmd) {
4114                 return 1;
4115         }
4116         /* establish the connection if not already */
4117
4118         if (!cli) {
4119                 cli = cli_cm_open(talloc_tos(), NULL,
4120                                 have_ip ? dest_ss_str : desthost,
4121                                 service, auth_info,
4122                                 true, smb_encrypt,
4123                                 max_protocol, port, name_type);
4124                 if (!cli) {
4125                         return 1;
4126                 }
4127         }
4128
4129         while (cmd[0] != '\0')    {
4130                 char *line;
4131                 char *p;
4132                 char *tok;
4133                 int i;
4134
4135                 if ((p = strchr_m(cmd, ';')) == 0) {
4136                         line = cmd;
4137                         cmd += strlen(cmd);
4138                 } else {
4139                         *p = '\0';
4140                         line = cmd;
4141                         cmd = p + 1;
4142                 }
4143
4144                 /* and get the first part of the command */
4145                 cmd_ptr = line;
4146                 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4147                         continue;
4148                 }
4149
4150                 if ((i = process_tok(tok)) >= 0) {
4151                         rc = commands[i].fn();
4152                 } else if (i == -2) {
4153                         d_printf("%s: command abbreviation ambiguous\n",tok);
4154                 } else {
4155                         d_printf("%s: command not found\n",tok);
4156                 }
4157         }
4158
4159         return rc;
4160 }
4161
4162 #define MAX_COMPLETIONS 100
4163
4164 struct completion_remote {
4165         char *dirmask;
4166         char **matches;
4167         int count, samelen;
4168         const char *text;
4169         int len;
4170 };
4171
4172 static void completion_remote_filter(const char *mnt,
4173                                 file_info *f,
4174                                 const char *mask,
4175                                 void *state)
4176 {
4177         struct completion_remote *info = (struct completion_remote *)state;
4178
4179         if ((info->count < MAX_COMPLETIONS - 1) &&
4180                         (strncmp(info->text, f->name, info->len) == 0) &&
4181                         (strcmp(f->name, ".") != 0) &&
4182                         (strcmp(f->name, "..") != 0)) {
4183                 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4184                         info->matches[info->count] = SMB_STRDUP(f->name);
4185                 else {
4186                         TALLOC_CTX *ctx = talloc_stackframe();
4187                         char *tmp;
4188
4189                         tmp = talloc_strdup(ctx,info->dirmask);
4190                         if (!tmp) {
4191                                 TALLOC_FREE(ctx);
4192                                 return;
4193                         }
4194                         tmp = talloc_asprintf_append(tmp, "%s", f->name);
4195                         if (!tmp) {
4196                                 TALLOC_FREE(ctx);
4197                                 return;
4198                         }
4199                         if (f->mode & aDIR) {
4200                                 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4201                         }
4202                         if (!tmp) {
4203                                 TALLOC_FREE(ctx);
4204                                 return;
4205                         }
4206                         info->matches[info->count] = SMB_STRDUP(tmp);
4207                         TALLOC_FREE(ctx);
4208                 }
4209                 if (info->matches[info->count] == NULL) {
4210                         return;
4211                 }
4212                 if (f->mode & aDIR) {
4213                         smb_readline_ca_char(0);
4214                 }
4215                 if (info->count == 1) {
4216                         info->samelen = strlen(info->matches[info->count]);
4217                 } else {
4218                         while (strncmp(info->matches[info->count],
4219                                                 info->matches[info->count-1],
4220                                                 info->samelen) != 0) {
4221                                 info->samelen--;
4222                         }
4223                 }
4224                 info->count++;
4225         }
4226 }
4227
4228 static char **remote_completion(const char *text, int len)
4229 {
4230         TALLOC_CTX *ctx = talloc_stackframe();
4231         char *dirmask = NULL;
4232         char *targetpath = NULL;
4233         struct cli_state *targetcli = NULL;
4234         int i;
4235         struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4236
4237         /* can't have non-static initialisation on Sun CC, so do it
4238            at run time here */
4239         info.samelen = len;
4240         info.text = text;
4241         info.len = len;
4242
4243         info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4244         if (!info.matches) {
4245                 TALLOC_FREE(ctx);
4246                 return NULL;
4247         }
4248
4249         /*
4250          * We're leaving matches[0] free to fill it later with the text to
4251          * display: Either the one single match or the longest common subset
4252          * of the matches.
4253          */
4254         info.matches[0] = NULL;
4255         info.count = 1;
4256
4257         for (i = len-1; i >= 0; i--) {
4258                 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4259                         break;
4260                 }
4261         }
4262
4263         info.text = text+i+1;
4264         info.samelen = info.len = len-i-1;
4265
4266         if (i > 0) {
4267                 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4268                 if (!info.dirmask) {
4269                         goto cleanup;
4270                 }
4271                 strncpy(info.dirmask, text, i+1);
4272                 info.dirmask[i+1] = 0;
4273                 dirmask = talloc_asprintf(ctx,
4274                                         "%s%*s*",
4275                                         client_get_cur_dir(),
4276                                         i-1,
4277                                         text);
4278         } else {
4279                 info.dirmask = SMB_STRDUP("");
4280                 if (!info.dirmask) {
4281                         goto cleanup;
4282                 }
4283                 dirmask = talloc_asprintf(ctx,
4284                                         "%s*",
4285                                         client_get_cur_dir());
4286         }
4287         if (!dirmask) {
4288                 goto cleanup;
4289         }
4290
4291         if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4292                 goto cleanup;
4293         }
4294         if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4295                                 completion_remote_filter, (void *)&info) < 0) {
4296                 goto cleanup;
4297         }
4298
4299         if (info.count == 1) {
4300                 /*
4301                  * No matches at all, NULL indicates there is nothing
4302                  */
4303                 SAFE_FREE(info.matches[0]);
4304                 SAFE_FREE(info.matches);
4305                 TALLOC_FREE(ctx);
4306                 return NULL;
4307         }
4308
4309         if (info.count == 2) {
4310                 /*
4311                  * Exactly one match in matches[1], indicate this is the one
4312                  * in matches[0].
4313                  */
4314                 info.matches[0] = info.matches[1];
4315                 info.matches[1] = NULL;
4316                 info.count -= 1;
4317                 TALLOC_FREE(ctx);
4318                 return info.matches;
4319         }
4320
4321         /*
4322          * We got more than one possible match, set the result to the maximum
4323          * common subset
4324          */
4325
4326         info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4327         info.matches[info.count] = NULL;
4328         return info.matches;
4329
4330 cleanup:
4331         for (i = 0; i < info.count; i++) {
4332                 SAFE_FREE(info.matches[i]);
4333         }
4334         SAFE_FREE(info.matches);
4335         SAFE_FREE(info.dirmask);
4336         TALLOC_FREE(ctx);
4337         return NULL;
4338 }
4339
4340 static char **completion_fn(const char *text, int start, int end)
4341 {
4342         smb_readline_ca_char(' ');
4343
4344         if (start) {
4345                 const char *buf, *sp;
4346                 int i;
4347                 char compl_type;
4348
4349                 buf = smb_readline_get_line_buffer();
4350                 if (buf == NULL)
4351                         return NULL;
4352
4353                 sp = strchr(buf, ' ');
4354                 if (sp == NULL)
4355                         return NULL;
4356
4357                 for (i = 0; commands[i].name; i++) {
4358                         if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4359                             (commands[i].name[sp - buf] == 0)) {
4360                                 break;
4361                         }
4362                 }
4363                 if (commands[i].name == NULL)
4364                         return NULL;
4365
4366                 while (*sp == ' ')
4367                         sp++;
4368
4369                 if (sp == (buf + start))
4370                         compl_type = commands[i].compl_args[0];
4371                 else
4372                         compl_type = commands[i].compl_args[1];
4373
4374                 if (compl_type == COMPL_REMOTE)
4375                         return remote_completion(text, end - start);
4376                 else /* fall back to local filename completion */
4377                         return NULL;
4378         } else {
4379                 char **matches;
4380                 int i, len, samelen = 0, count=1;
4381
4382                 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4383                 if (!matches) {
4384                         return NULL;
4385                 }
4386                 matches[0] = NULL;
4387
4388                 len = strlen(text);
4389                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4390                         if (strncmp(text, commands[i].name, len) == 0) {
4391                                 matches[count] = SMB_STRDUP(commands[i].name);
4392                                 if (!matches[count])
4393                                         goto cleanup;
4394                                 if (count == 1)
4395                                         samelen = strlen(matches[count]);
4396                                 else
4397                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
4398                                                 samelen--;
4399                                 count++;
4400                         }
4401                 }
4402
4403                 switch (count) {
4404                 case 0: /* should never happen */
4405                 case 1:
4406                         goto cleanup;
4407                 case 2:
4408                         matches[0] = SMB_STRDUP(matches[1]);
4409                         break;
4410                 default:
4411                         matches[0] = (char *)SMB_MALLOC(samelen+1);
4412                         if (!matches[0])
4413                                 goto cleanup;
4414                         strncpy(matches[0], matches[1], samelen);
4415                         matches[0][samelen] = 0;
4416                 }
4417                 matches[count] = NULL;
4418                 return matches;
4419
4420 cleanup:
4421                 for (i = 0; i < count; i++)
4422                         free(matches[i]);
4423
4424                 free(matches);
4425                 return NULL;
4426         }
4427 }
4428
4429 static bool finished;
4430
4431 /****************************************************************************
4432  Make sure we swallow keepalives during idle time.
4433 ****************************************************************************/
4434
4435 static void readline_callback(void)
4436 {
4437         fd_set fds;
4438         struct timeval timeout;
4439         static time_t last_t;
4440         time_t t;
4441
4442         t = time(NULL);
4443
4444         if (t - last_t < 5)
4445                 return;
4446
4447         last_t = t;
4448
4449  again:
4450
4451         if (cli->fd == -1)
4452                 return;
4453
4454         FD_ZERO(&fds);
4455         FD_SET(cli->fd,&fds);
4456
4457         timeout.tv_sec = 0;
4458         timeout.tv_usec = 0;
4459         sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4460
4461         /* We deliberately use receive_smb_raw instead of
4462            client_receive_smb as we want to receive
4463            session keepalives and then drop them here.
4464         */
4465         if (FD_ISSET(cli->fd,&fds)) {
4466                 NTSTATUS status;
4467                 size_t len;
4468
4469                 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4470
4471                 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4472
4473                 if (!NT_STATUS_IS_OK(status)) {
4474                         DEBUG(0, ("Read from server failed, maybe it closed "
4475                                   "the connection\n"));
4476
4477                         finished = true;
4478                         smb_readline_done();
4479                         if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4480                                 set_smb_read_error(&cli->smb_rw_error,
4481                                                    SMB_READ_EOF);
4482                                 return;
4483                         }
4484
4485                         if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4486                                 set_smb_read_error(&cli->smb_rw_error,
4487                                                    SMB_READ_TIMEOUT);
4488                                 return;
4489                         }
4490
4491                         set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4492                         return;
4493                 }
4494                 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4495                         DEBUG(0, ("Read from server "
4496                                 "returned unexpected packet!\n"));
4497                         return;
4498                 }
4499
4500                 goto again;
4501         }
4502
4503         /* Ping the server to keep the connection alive using SMBecho. */
4504         {
4505                 NTSTATUS status;
4506                 unsigned char garbage[16];
4507                 memset(garbage, 0xf0, sizeof(garbage));
4508                 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4509
4510                 if (!NT_STATUS_IS_OK(status)) {
4511                         DEBUG(0, ("SMBecho failed. Maybe server has closed "
4512                                 "the connection\n"));
4513                         finished = true;
4514                         smb_readline_done();
4515                 }
4516         }
4517 }
4518
4519 /****************************************************************************
4520  Process commands on stdin.
4521 ****************************************************************************/
4522
4523 static int process_stdin(void)
4524 {
4525         int rc = 0;
4526
4527         while (!finished) {
4528                 TALLOC_CTX *frame = talloc_stackframe();
4529                 char *tok = NULL;
4530                 char *the_prompt = NULL;
4531                 char *line = NULL;
4532                 int i;
4533
4534                 /* display a prompt */
4535                 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4536                         TALLOC_FREE(frame);
4537                         break;
4538                 }
4539                 line = smb_readline(the_prompt, readline_callback, completion_fn);
4540                 SAFE_FREE(the_prompt);
4541                 if (!line) {
4542                         TALLOC_FREE(frame);
4543                         break;
4544                 }
4545
4546                 /* special case - first char is ! */
4547                 if (*line == '!') {
4548                         if (system(line + 1) == -1) {
4549                                 d_printf("system() command %s failed.\n",
4550                                         line+1);
4551                         }
4552                         SAFE_FREE(line);
4553                         TALLOC_FREE(frame);
4554                         continue;
4555                 }
4556
4557                 /* and get the first part of the command */
4558                 cmd_ptr = line;
4559                 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4560                         TALLOC_FREE(frame);
4561                         SAFE_FREE(line);
4562                         continue;
4563                 }
4564
4565                 if ((i = process_tok(tok)) >= 0) {
4566                         rc = commands[i].fn();
4567                 } else if (i == -2) {
4568                         d_printf("%s: command abbreviation ambiguous\n",tok);
4569                 } else {
4570                         d_printf("%s: command not found\n",tok);
4571                 }
4572                 SAFE_FREE(line);
4573                 TALLOC_FREE(frame);
4574         }
4575         return rc;
4576 }
4577
4578 /****************************************************************************
4579  Process commands from the client.
4580 ****************************************************************************/
4581
4582 static int process(const char *base_directory)
4583 {
4584         int rc = 0;
4585
4586         cli = cli_cm_open(talloc_tos(), NULL,
4587                         have_ip ? dest_ss_str : desthost,
4588                         service, auth_info, true, smb_encrypt,
4589                         max_protocol, port, name_type);
4590         if (!cli) {
4591                 return 1;
4592         }
4593
4594         if (base_directory && *base_directory) {
4595                 rc = do_cd(base_directory);
4596                 if (rc) {
4597                         cli_shutdown(cli);
4598                         return rc;
4599                 }
4600         }
4601
4602         if (cmdstr) {
4603                 rc = process_command_string(cmdstr);
4604         } else {
4605                 process_stdin();
4606         }
4607
4608         cli_shutdown(cli);
4609         return rc;
4610 }
4611
4612 /****************************************************************************
4613  Handle a -L query.
4614 ****************************************************************************/
4615
4616 static int do_host_query(const char *query_host)
4617 {
4618         cli = cli_cm_open(talloc_tos(), NULL,
4619                         query_host, "IPC$", auth_info, true, smb_encrypt,
4620                         max_protocol, port, name_type);
4621         if (!cli)
4622                 return 1;
4623
4624         browse_host(true);
4625
4626         /* Ensure that the host can do IPv4 */
4627
4628         if (!interpret_addr(query_host)) {
4629                 struct sockaddr_storage ss;
4630                 if (interpret_string_addr(&ss, query_host, 0) &&
4631                                 (ss.ss_family != AF_INET)) {
4632                         d_printf("%s is an IPv6 address -- no workgroup available\n",
4633                                 query_host);
4634                         return 1;
4635                 }
4636         }
4637
4638         if (port != 139) {
4639
4640                 /* Workgroups simply don't make sense over anything
4641                    else but port 139... */
4642
4643                 cli_shutdown(cli);
4644                 cli = cli_cm_open(talloc_tos(), NULL,
4645                                 query_host, "IPC$", auth_info, true, smb_encrypt,
4646                                 max_protocol, 139, name_type);
4647         }
4648
4649         if (cli == NULL) {
4650                 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4651                 return 1;
4652         }
4653
4654         list_servers(lp_workgroup());
4655
4656         cli_shutdown(cli);
4657
4658         return(0);
4659 }
4660
4661 /****************************************************************************
4662  Handle a tar operation.
4663 ****************************************************************************/
4664
4665 static int do_tar_op(const char *base_directory)
4666 {
4667         int ret;
4668
4669         /* do we already have a connection? */
4670         if (!cli) {
4671                 cli = cli_cm_open(talloc_tos(), NULL,
4672                         have_ip ? dest_ss_str : desthost,
4673                         service, auth_info, true, smb_encrypt,
4674                         max_protocol, port, name_type);
4675                 if (!cli)
4676                         return 1;
4677         }
4678
4679         recurse=true;
4680
4681         if (base_directory && *base_directory)  {
4682                 ret = do_cd(base_directory);
4683                 if (ret) {
4684                         cli_shutdown(cli);
4685                         return ret;
4686                 }
4687         }
4688
4689         ret=process_tar();
4690
4691         cli_shutdown(cli);
4692
4693         return(ret);
4694 }
4695
4696 /****************************************************************************
4697  Handle a message operation.
4698 ****************************************************************************/
4699
4700 static int do_message_op(struct user_auth_info *a_info)
4701 {
4702         struct sockaddr_storage ss;
4703         struct nmb_name called, calling;
4704         fstring server_name;
4705         char name_type_hex[10];
4706         int msg_port;
4707         NTSTATUS status;
4708
4709         make_nmb_name(&calling, calling_name, 0x0);
4710         make_nmb_name(&called , desthost, name_type);
4711
4712         fstrcpy(server_name, desthost);
4713         snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4714         fstrcat(server_name, name_type_hex);
4715
4716         zero_sockaddr(&ss);
4717         if (have_ip)
4718                 ss = dest_ss;
4719
4720         /* we can only do messages over port 139 (to windows clients at least) */
4721
4722         msg_port = port ? port : 139;
4723
4724         if (!(cli=cli_initialise())) {
4725                 d_printf("Connection to %s failed\n", desthost);
4726                 return 1;
4727         }
4728         cli_set_port(cli, msg_port);
4729
4730         status = cli_connect(cli, server_name, &ss);
4731         if (!NT_STATUS_IS_OK(status)) {
4732                 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4733                 return 1;
4734         }
4735
4736         if (!cli_session_request(cli, &calling, &called)) {
4737                 d_printf("session request failed\n");
4738                 cli_shutdown(cli);
4739                 return 1;
4740         }
4741
4742         send_message(get_cmdline_auth_info_username(a_info));
4743         cli_shutdown(cli);
4744
4745         return 0;
4746 }
4747
4748 /****************************************************************************
4749   main program
4750 ****************************************************************************/
4751
4752  int main(int argc,char *argv[])
4753 {
4754         char *base_directory = NULL;
4755         int opt;
4756         char *query_host = NULL;
4757         bool message = false;
4758         static const char *new_name_resolve_order = NULL;
4759         poptContext pc;
4760         char *p;
4761         int rc = 0;
4762         fstring new_workgroup;
4763         bool tar_opt = false;
4764         bool service_opt = false;
4765         struct poptOption long_options[] = {
4766                 POPT_AUTOHELP
4767
4768                 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4769                 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4770                 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4771                 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4772                 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4773                 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4774                 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4775                 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4776                 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" }, 
4777                 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4778                 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4779                 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4780                 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4781                 POPT_COMMON_SAMBA
4782                 POPT_COMMON_CONNECTION
4783                 POPT_COMMON_CREDENTIALS
4784                 POPT_TABLEEND
4785         };
4786         TALLOC_CTX *frame = talloc_stackframe();
4787
4788         if (!client_set_cur_dir("\\")) {
4789                 exit(ENOMEM);
4790         }
4791
4792         /* initialize the workgroup name so we can determine whether or
4793            not it was set by a command line option */
4794
4795         set_global_myworkgroup( "" );
4796         set_global_myname( "" );
4797
4798         /* set default debug level to 1 regardless of what smb.conf sets */
4799         setup_logging( "smbclient", true );
4800         DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4801         if ((dbf = x_fdup(x_stderr))) {
4802                 x_setbuf( dbf, NULL );
4803         }
4804
4805         load_case_tables();
4806
4807         auth_info = user_auth_info_init(frame);
4808         if (auth_info == NULL) {
4809                 exit(1);
4810         }
4811         popt_common_set_auth_info(auth_info);
4812
4813         /* skip argv(0) */
4814         pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4815         poptSetOtherOptionHelp(pc, "service <password>");
4816
4817         lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4818
4819         while ((opt = poptGetNextOpt(pc)) != -1) {
4820
4821                 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4822                 /* I see no other way to keep things sane --SSS */
4823                 if (tar_opt == true) {
4824                         while (poptPeekArg(pc)) {
4825                                 poptGetArg(pc);
4826                         }
4827                         tar_opt = false;
4828                 }
4829
4830                 /* if the service has not yet been specified lets see if it is available in the popt stack */
4831                 if (!service_opt && poptPeekArg(pc)) {
4832                         service = talloc_strdup(frame, poptGetArg(pc));
4833                         if (!service) {
4834                                 exit(ENOMEM);
4835                         }
4836                         service_opt = true;
4837                 }
4838
4839                 /* if the service has already been retrieved then check if we have also a password */
4840                 if (service_opt
4841                     && (!get_cmdline_auth_info_got_pass(auth_info))
4842                     && poptPeekArg(pc)) {
4843                         set_cmdline_auth_info_password(auth_info,
4844                                                        poptGetArg(pc));
4845                 }
4846
4847                 switch (opt) {
4848                 case 'M':
4849                         /* Messages are sent to NetBIOS name type 0x3
4850                          * (Messenger Service).  Make sure we default
4851                          * to port 139 instead of port 445. srl,crh
4852                          */
4853                         name_type = 0x03;
4854                         desthost = talloc_strdup(frame,poptGetOptArg(pc));
4855                         if (!desthost) {
4856                                 exit(ENOMEM);
4857                         }
4858                         if( !port )
4859                                 port = 139;
4860                         message = true;
4861                         break;
4862                 case 'I':
4863                         {
4864                                 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4865                                         exit(1);
4866                                 }
4867                                 have_ip = true;
4868                                 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4869                         }
4870                         break;
4871                 case 'E':
4872                         if (dbf) {
4873                                 x_fclose(dbf);
4874                         }
4875                         dbf = x_stderr;
4876                         display_set_stderr();
4877                         break;
4878
4879                 case 'L':
4880                         query_host = talloc_strdup(frame, poptGetOptArg(pc));
4881                         if (!query_host) {
4882                                 exit(ENOMEM);
4883                         }
4884                         break;
4885                 case 'm':
4886                         max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4887                         break;
4888                 case 'T':
4889                         /* We must use old option processing for this. Find the
4890                          * position of the -T option in the raw argv[]. */
4891                         {
4892                                 int i;
4893                                 for (i = 1; i < argc; i++) {
4894                                         if (strncmp("-T", argv[i],2)==0)
4895                                                 break;
4896                                 }
4897                                 i++;
4898                                 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4899                                         poptPrintUsage(pc, stderr, 0);
4900                                         exit(1);
4901                                 }
4902                         }
4903                         /* this must be the last option, mark we have parsed it so that we know we have */
4904                         tar_opt = true;
4905                         break;
4906                 case 'D':
4907                         base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4908                         if (!base_directory) {
4909                                 exit(ENOMEM);
4910                         }
4911                         break;
4912                 case 'g':
4913                         grepable=true;
4914                         break;
4915                 case 'e':
4916                         smb_encrypt=true;
4917                         break;
4918                 case 'B':
4919                         return(do_smb_browse());
4920
4921                 }
4922         }
4923
4924         /* We may still have some leftovers after the last popt option has been called */
4925         if (tar_opt == true) {
4926                 while (poptPeekArg(pc)) {
4927                         poptGetArg(pc);
4928                 }
4929                 tar_opt = false;
4930         }
4931
4932         /* if the service has not yet been specified lets see if it is available in the popt stack */
4933         if (!service_opt && poptPeekArg(pc)) {
4934                 service = talloc_strdup(frame,poptGetArg(pc));
4935                 if (!service) {
4936                         exit(ENOMEM);
4937                 }
4938                 service_opt = true;
4939         }
4940
4941         /* if the service has already been retrieved then check if we have also a password */
4942         if (service_opt
4943             && !get_cmdline_auth_info_got_pass(auth_info)
4944             && poptPeekArg(pc)) {
4945                 set_cmdline_auth_info_password(auth_info,
4946                                                poptGetArg(pc));
4947         }
4948
4949         /*
4950          * Don't load debug level from smb.conf. It should be
4951          * set by cmdline arg or remain default (0)
4952          */
4953         AllowDebugChange = false;
4954
4955         /* save the workgroup...
4956
4957            FIXME!! do we need to do this for other options as well
4958            (or maybe a generic way to keep lp_load() from overwriting
4959            everything)?  */
4960
4961         fstrcpy( new_workgroup, lp_workgroup() );
4962         calling_name = talloc_strdup(frame, global_myname() );
4963         if (!calling_name) {
4964                 exit(ENOMEM);
4965         }
4966
4967         if ( override_logfile )
4968                 setup_logging( lp_logfile(), false );
4969
4970         if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4971                 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4972                         argv[0], get_dyn_CONFIGFILE());
4973         }
4974
4975         if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4976             !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4977                 exit(-1);
4978         }
4979
4980         load_interfaces();
4981
4982         if (service_opt && service) {
4983                 size_t len;
4984
4985                 /* Convert any '/' characters in the service name to '\' characters */
4986                 string_replace(service, '/','\\');
4987                 if (count_chars(service,'\\') < 3) {
4988                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
4989                         poptPrintUsage(pc, stderr, 0);
4990                         exit(1);
4991                 }
4992                 /* Remove trailing slashes */
4993                 len = strlen(service);
4994                 while(len > 0 && service[len - 1] == '\\') {
4995                         --len;
4996                         service[len] = '\0';
4997                 }
4998         }
4999
5000         if ( strlen(new_workgroup) != 0 ) {
5001                 set_global_myworkgroup( new_workgroup );
5002         }
5003
5004         if ( strlen(calling_name) != 0 ) {
5005                 set_global_myname( calling_name );
5006         } else {
5007                 TALLOC_FREE(calling_name);
5008                 calling_name = talloc_strdup(frame, global_myname() );
5009         }
5010
5011         smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5012         if (!init_names()) {
5013                 fprintf(stderr, "init_names() failed\n");
5014                 exit(1);
5015         }
5016
5017         if(new_name_resolve_order)
5018                 lp_set_name_resolve_order(new_name_resolve_order);
5019
5020         if (!tar_type && !query_host && !service && !message) {
5021                 poptPrintUsage(pc, stderr, 0);
5022                 exit(1);
5023         }
5024
5025         poptFreeContext(pc);
5026
5027         DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5028
5029         /* Ensure we have a password (or equivalent). */
5030         set_cmdline_auth_info_getpass(auth_info);
5031
5032         if (tar_type) {
5033                 if (cmdstr)
5034                         process_command_string(cmdstr);
5035                 return do_tar_op(base_directory);
5036         }
5037
5038         if (query_host && *query_host) {
5039                 char *qhost = query_host;
5040                 char *slash;
5041
5042                 while (*qhost == '\\' || *qhost == '/')
5043                         qhost++;
5044
5045                 if ((slash = strchr_m(qhost, '/'))
5046                     || (slash = strchr_m(qhost, '\\'))) {
5047                         *slash = 0;
5048                 }
5049
5050                 if ((p=strchr_m(qhost, '#'))) {
5051                         *p = 0;
5052                         p++;
5053                         sscanf(p, "%x", &name_type);
5054                 }
5055
5056                 return do_host_query(qhost);
5057         }
5058
5059         if (message) {
5060                 return do_message_op(auth_info);
5061         }
5062
5063         if (process(base_directory)) {
5064                 return 1;
5065         }
5066
5067         TALLOC_FREE(frame);
5068         return rc;
5069 }