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