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