smbclient: Remove some unnecessary declarations
[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 "system/filesys.h"
26 #include "popt_common_cmdline.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "client/clitar_proto.h"
30 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
31 #include "../lib/util/select.h"
32 #include "system/readline.h"
33 #include "../libcli/smbreadline/smbreadline.h"
34 #include "../libcli/security/security.h"
35 #include "system/select.h"
36 #include "libsmb/libsmb.h"
37 #include "libsmb/clirap.h"
38 #include "trans2.h"
39 #include "libsmb/nmblib.h"
40 #include "include/ntioctl.h"
41 #include "../libcli/smb/smbXcli_base.h"
42 #include "lib/util/time_basic.h"
43
44 #ifndef REGISTER
45 #define REGISTER 0
46 #endif
47
48 extern int do_smb_browse(void); /* mDNS browsing */
49
50 extern bool override_logfile;
51
52 static int port = 0;
53 static char *service;
54 static char *desthost;
55 static bool grepable = false;
56 static bool quiet = false;
57 static char *cmdstr = NULL;
58 const char *cmd_ptr = NULL;
59
60 static int io_bufsize = 0; /* we use the default size */
61 static int io_timeout = (CLIENT_TIMEOUT/1000); /* Per operation timeout (in seconds). */
62
63 static int name_type = 0x20;
64 static int max_protocol = -1;
65
66 static int process_tok(char *tok);
67 static int cmd_help(void);
68
69 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
70
71 /* value for unused fid field in trans2 secondary request */
72 #define FID_UNUSED (0xFFFF)
73
74 time_t newer_than = 0;
75 static int archive_level = 0;
76
77 static bool translation = false;
78 static bool have_ip;
79
80 static bool prompt = true;
81
82 static bool recurse = false;
83 static bool showacls = false;
84 bool lowercase = false;
85 static bool backup_intent = false;
86
87 static struct sockaddr_storage dest_ss;
88 static char dest_ss_str[INET6_ADDRSTRLEN];
89
90 #define SEPARATORS " \t\n\r"
91
92 static bool abort_mget = true;
93
94 /* timing globals */
95 uint64_t get_total_size = 0;
96 unsigned int get_total_time_ms = 0;
97 static uint64_t put_total_size = 0;
98 static unsigned int put_total_time_ms = 0;
99
100 /* totals globals */
101 static double dir_total;
102
103 /* encrypted state. */
104 static bool smb_encrypt;
105
106 /* root cli_state connection */
107
108 struct cli_state *cli;
109
110 static char CLI_DIRSEP_CHAR = '\\';
111 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
112
113 /* Accessor functions for directory paths. */
114 static char *fileselection;
115 static const char *client_get_fileselection(void)
116 {
117         if (fileselection) {
118                 return fileselection;
119         }
120         return "";
121 }
122
123 static const char *client_set_fileselection(const char *new_fs)
124 {
125         SAFE_FREE(fileselection);
126         if (new_fs) {
127                 fileselection = SMB_STRDUP(new_fs);
128         }
129         return client_get_fileselection();
130 }
131
132 static char *cwd;
133 static const char *client_get_cwd(void)
134 {
135         if (cwd) {
136                 return cwd;
137         }
138         return CLI_DIRSEP_STR;
139 }
140
141 static const char *client_set_cwd(const char *new_cwd)
142 {
143         SAFE_FREE(cwd);
144         if (new_cwd) {
145                 cwd = SMB_STRDUP(new_cwd);
146         }
147         return client_get_cwd();
148 }
149
150 static char *cur_dir;
151 const char *client_get_cur_dir(void)
152 {
153         if (cur_dir) {
154                 return cur_dir;
155         }
156         return CLI_DIRSEP_STR;
157 }
158
159 const char *client_set_cur_dir(const char *newdir)
160 {
161         SAFE_FREE(cur_dir);
162         if (newdir) {
163                 cur_dir = SMB_STRDUP(newdir);
164         }
165         return client_get_cur_dir();
166 }
167
168 /****************************************************************************
169  Put up a yes/no prompt.
170 ****************************************************************************/
171
172 static bool yesno(const char *p)
173 {
174         char ans[20];
175         printf("%s",p);
176
177         if (!fgets(ans,sizeof(ans)-1,stdin))
178                 return(False);
179
180         if (*ans == 'y' || *ans == 'Y')
181                 return(True);
182
183         return(False);
184 }
185
186 /****************************************************************************
187  Write to a local file with CR/LF->LF translation if appropriate. Return the
188  number taken from the buffer. This may not equal the number written.
189 ****************************************************************************/
190
191 static ssize_t writefile(int f, char *b, size_t n)
192 {
193         size_t i = 0;
194
195         if (n == 0) {
196                 errno = EINVAL;
197                 return -1;
198         }
199
200         if (!translation) {
201                 return write(f,b,n);
202         }
203
204         do {
205                 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
206                         b++;i++;
207                 }
208                 if (write(f, b, 1) != 1) {
209                         break;
210                 }
211                 b++;
212                 i++;
213         } while (i < n);
214
215         return (ssize_t)i;
216 }
217
218 /****************************************************************************
219  Read from a file with LF->CR/LF translation if appropriate. Return the
220  number read. read approx n bytes.
221 ****************************************************************************/
222
223 static int readfile(uint8_t *b, int n, FILE *f)
224 {
225         int i;
226         int c;
227
228         if (!translation)
229                 return fread(b,1,n,f);
230
231         i = 0;
232         while (i < (n - 1)) {
233                 if ((c = getc(f)) == EOF) {
234                         break;
235                 }
236
237                 if (c == '\n') { /* change all LFs to CR/LF */
238                         b[i++] = '\r';
239                 }
240
241                 b[i++] = c;
242         }
243
244         return(i);
245 }
246
247 struct push_state {
248         FILE *f;
249         off_t nread;
250 };
251
252 static size_t push_source(uint8_t *buf, size_t n, void *priv)
253 {
254         struct push_state *state = (struct push_state *)priv;
255         int result;
256
257         if (feof(state->f)) {
258                 return 0;
259         }
260
261         result = readfile(buf, n, state->f);
262         state->nread += result;
263         return result;
264 }
265
266 /****************************************************************************
267  Send a message.
268 ****************************************************************************/
269
270 static void send_message(const char *username)
271 {
272         char buf[1600];
273         NTSTATUS status;
274         int i;
275
276         d_printf("Type your message, ending it with a Control-D\n");
277
278         i = 0;
279         while (i<sizeof(buf)-2) {
280                 int c = fgetc(stdin);
281                 if (c == EOF) {
282                         break;
283                 }
284                 if (c == '\n') {
285                         buf[i++] = '\r';
286                 }
287                 buf[i++] = c;
288         }
289         buf[i] = '\0';
290
291         status = cli_message(cli, desthost, username, buf);
292         if (!NT_STATUS_IS_OK(status)) {
293                 d_fprintf(stderr, "cli_message returned %s\n",
294                           nt_errstr(status));
295         }
296 }
297
298 /****************************************************************************
299  Check the space on a device.
300 ****************************************************************************/
301
302 static int do_dskattr(void)
303 {
304         uint64_t total, bsize, avail;
305         struct cli_state *targetcli = NULL;
306         char *targetpath = NULL;
307         TALLOC_CTX *ctx = talloc_tos();
308         NTSTATUS status;
309
310         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(), cli,
311                                   client_get_cur_dir(), &targetcli,
312                                   &targetpath);
313         if (!NT_STATUS_IS_OK(status)) {
314                 d_printf("Error in dskattr: %s\n", nt_errstr(status));
315                 return 1;
316         }
317
318         status = cli_disk_size(targetcli, targetpath, &bsize, &total, &avail);
319         if (!NT_STATUS_IS_OK(status)) {
320                 d_printf("Error in dskattr: %s\n", nt_errstr(status));
321                 return 1;
322         }
323
324         d_printf("\n\t\t%" PRIu64
325                 " blocks of size %" PRIu64
326                 ". %" PRIu64 " blocks available\n",
327                 total, bsize, avail);
328
329         return 0;
330 }
331
332 /****************************************************************************
333  Show cd/pwd.
334 ****************************************************************************/
335
336 static int cmd_pwd(void)
337 {
338         d_printf("Current directory is %s",service);
339         d_printf("%s\n",client_get_cur_dir());
340         return 0;
341 }
342
343 /****************************************************************************
344  Ensure name has correct directory separators.
345 ****************************************************************************/
346
347 static void normalize_name(char *newdir)
348 {
349         if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
350                 string_replace(newdir,'/','\\');
351         }
352 }
353
354 /****************************************************************************
355  Local name cleanup before sending to server. SMB1 allows relative pathnames,
356  but SMB2 does not, so we need to resolve them locally.
357 ****************************************************************************/
358
359 char *client_clean_name(TALLOC_CTX *ctx, const char *name)
360 {
361         char *newname = NULL;
362         if (name == NULL) {
363                 return NULL;
364         }
365
366         /* First ensure any path separators are correct. */
367         newname = talloc_strdup(ctx, name);
368         if (newname == NULL) {
369                 return NULL;
370         }
371         normalize_name(newname);
372
373         /* Now remove any relative (..) path components. */
374         if (cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
375                 newname = unix_clean_name(ctx, newname);
376         } else {
377                 newname = clean_name(ctx, newname);
378         }
379         if (newname == NULL) {
380                 return NULL;
381         }
382         return newname;
383 }
384
385 /****************************************************************************
386  Change directory - inner section.
387 ****************************************************************************/
388
389 static int do_cd(const char *new_dir)
390 {
391         char *newdir = NULL;
392         char *saved_dir = NULL;
393         char *new_cd = NULL;
394         char *targetpath = NULL;
395         struct cli_state *targetcli = NULL;
396         SMB_STRUCT_STAT sbuf;
397         uint32_t attributes;
398         int ret = 1;
399         TALLOC_CTX *ctx = talloc_stackframe();
400         NTSTATUS status;
401
402         newdir = talloc_strdup(ctx, new_dir);
403         if (!newdir) {
404                 TALLOC_FREE(ctx);
405                 return 1;
406         }
407
408         normalize_name(newdir);
409
410         /* Save the current directory in case the new directory is invalid */
411
412         saved_dir = talloc_strdup(ctx, client_get_cur_dir());
413         if (!saved_dir) {
414                 TALLOC_FREE(ctx);
415                 return 1;
416         }
417
418         if (*newdir == CLI_DIRSEP_CHAR) {
419                 client_set_cur_dir(newdir);
420                 new_cd = newdir;
421         } else {
422                 new_cd = talloc_asprintf(ctx, "%s%s",
423                                 client_get_cur_dir(),
424                                 newdir);
425                 if (!new_cd) {
426                         goto out;
427                 }
428         }
429
430         /* Ensure cur_dir ends in a DIRSEP */
431         if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
432                 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
433                 if (!new_cd) {
434                         goto out;
435                 }
436         }
437         client_set_cur_dir(new_cd);
438
439         new_cd = client_clean_name(ctx, new_cd);
440         client_set_cur_dir(new_cd);
441
442         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
443                                 cli, new_cd, &targetcli, &targetpath);
444         if (!NT_STATUS_IS_OK(status)) {
445                 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
446                 client_set_cur_dir(saved_dir);
447                 goto out;
448         }
449
450         if (strequal(targetpath,CLI_DIRSEP_STR )) {
451                 TALLOC_FREE(ctx);
452                 return 0;
453         }
454
455         /* Use a trans2_qpathinfo to test directories for modern servers.
456            Except Win9x doesn't support the qpathinfo_basic() call..... */
457
458         if (smbXcli_conn_protocol(targetcli->conn) > PROTOCOL_LANMAN2 && !targetcli->win95) {
459
460                 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
461                                              &attributes);
462                 if (!NT_STATUS_IS_OK(status)) {
463                         d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
464                         client_set_cur_dir(saved_dir);
465                         goto out;
466                 }
467
468                 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
469                         d_printf("cd %s: not a directory\n", new_cd);
470                         client_set_cur_dir(saved_dir);
471                         goto out;
472                 }
473         } else {
474
475                 targetpath = talloc_asprintf(ctx,
476                                 "%s%s",
477                                 targetpath,
478                                 CLI_DIRSEP_STR );
479                 if (!targetpath) {
480                         client_set_cur_dir(saved_dir);
481                         goto out;
482                 }
483                 targetpath = client_clean_name(ctx, targetpath);
484                 if (!targetpath) {
485                         client_set_cur_dir(saved_dir);
486                         goto out;
487                 }
488
489                 status = cli_chkpath(targetcli, targetpath);
490                 if (!NT_STATUS_IS_OK(status)) {
491                         d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
492                         client_set_cur_dir(saved_dir);
493                         goto out;
494                 }
495         }
496
497         ret = 0;
498
499 out:
500
501         TALLOC_FREE(ctx);
502         return ret;
503 }
504
505 /****************************************************************************
506  Change directory.
507 ****************************************************************************/
508
509 static int cmd_cd(void)
510 {
511         char *buf = NULL;
512         int rc = 0;
513
514         if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
515                 rc = do_cd(buf);
516         } else {
517                 d_printf("Current directory is %s\n",client_get_cur_dir());
518         }
519
520         return rc;
521 }
522
523 /****************************************************************************
524  Change directory.
525 ****************************************************************************/
526
527 static int cmd_cd_oneup(void)
528 {
529         return do_cd("..");
530 }
531
532 /*******************************************************************
533  Decide if a file should be operated on.
534 ********************************************************************/
535
536 static bool do_this_one(struct file_info *finfo)
537 {
538         if (!finfo->name) {
539                 return false;
540         }
541
542         if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
543                 return true;
544         }
545
546         if (*client_get_fileselection() &&
547             !mask_match(finfo->name,client_get_fileselection(),false)) {
548                 DEBUG(3,("mask_match %s failed\n", finfo->name));
549                 return false;
550         }
551
552         if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
553                 DEBUG(3,("newer_than %s failed\n", finfo->name));
554                 return false;
555         }
556
557         if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
558                 DEBUG(3,("archive %s failed\n", finfo->name));
559                 return false;
560         }
561
562         return true;
563 }
564
565 /****************************************************************************
566  Display info about a file.
567 ****************************************************************************/
568
569 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
570                           const char *dir)
571 {
572         time_t t;
573         TALLOC_CTX *ctx = talloc_tos();
574         NTSTATUS status = NT_STATUS_OK;
575
576         if (!do_this_one(finfo)) {
577                 return NT_STATUS_OK;
578         }
579
580         t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
581         if (!showacls) {
582                 d_printf("  %-30s%7.7s %8.0f  %s",
583                          finfo->name,
584                          attrib_string(talloc_tos(), finfo->mode),
585                         (double)finfo->size,
586                         time_to_asc(t));
587                 dir_total += finfo->size;
588         } else {
589                 char *afname = NULL;
590                 uint16_t fnum;
591
592                 /* skip if this is . or .. */
593                 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
594                         return NT_STATUS_OK;
595                 /* create absolute filename for cli_ntcreate() FIXME */
596                 afname = talloc_asprintf(ctx,
597                                         "%s%s%s",
598                                         dir,
599                                         CLI_DIRSEP_STR,
600                                         finfo->name);
601                 if (!afname) {
602                         return NT_STATUS_NO_MEMORY;
603                 }
604                 /* print file meta date header */
605                 d_printf( "FILENAME:%s\n", finfo->name);
606                 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
607                 d_printf( "SIZE:%.0f\n", (double)finfo->size);
608                 d_printf( "MTIME:%s", time_to_asc(t));
609                 status = cli_ntcreate(cli_state, afname, 0,
610                                       CREATE_ACCESS_READ, 0,
611                                       FILE_SHARE_READ|FILE_SHARE_WRITE,
612                                       FILE_OPEN, 0x0, 0x0, &fnum, NULL);
613                 if (!NT_STATUS_IS_OK(status)) {
614                         DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
615                                    afname, nt_errstr(status)));
616                 } else {
617                         struct security_descriptor *sd = NULL;
618                         status = cli_query_secdesc(cli_state, fnum,
619                                                    ctx, &sd);
620                         if (!NT_STATUS_IS_OK(status)) {
621                                 DEBUG( 0, ("display_finfo() failed to "
622                                            "get security descriptor: %s",
623                                            nt_errstr(status)));
624                         } else {
625                                 display_sec_desc(sd);
626                         }
627                         TALLOC_FREE(sd);
628                 }
629                 TALLOC_FREE(afname);
630         }
631         return status;
632 }
633
634 /****************************************************************************
635  Accumulate size of a file.
636 ****************************************************************************/
637
638 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
639                   const char *dir)
640 {
641         if (do_this_one(finfo)) {
642                 dir_total += finfo->size;
643         }
644         return NT_STATUS_OK;
645 }
646
647 static bool do_list_recurse;
648 static bool do_list_dirs;
649 static char *do_list_queue = 0;
650 static long do_list_queue_size = 0;
651 static long do_list_queue_start = 0;
652 static long do_list_queue_end = 0;
653 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
654                           const char *dir);
655
656 /****************************************************************************
657  Functions for do_list_queue.
658 ****************************************************************************/
659
660 /*
661  * The do_list_queue is a NUL-separated list of strings stored in a
662  * char*.  Since this is a FIFO, we keep track of the beginning and
663  * ending locations of the data in the queue.  When we overflow, we
664  * double the size of the char*.  When the start of the data passes
665  * the midpoint, we move everything back.  This is logically more
666  * complex than a linked list, but easier from a memory management
667  * angle.  In any memory error condition, do_list_queue is reset.
668  * Functions check to ensure that do_list_queue is non-NULL before
669  * accessing it.
670  */
671
672 static void reset_do_list_queue(void)
673 {
674         SAFE_FREE(do_list_queue);
675         do_list_queue_size = 0;
676         do_list_queue_start = 0;
677         do_list_queue_end = 0;
678 }
679
680 static void init_do_list_queue(void)
681 {
682         reset_do_list_queue();
683         do_list_queue_size = 1024;
684         do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
685         if (do_list_queue == 0) {
686                 d_printf("malloc fail for size %d\n",
687                          (int)do_list_queue_size);
688                 reset_do_list_queue();
689         } else {
690                 memset(do_list_queue, 0, do_list_queue_size);
691         }
692 }
693
694 static void adjust_do_list_queue(void)
695 {
696         /*
697          * If the starting point of the queue is more than half way through,
698          * move everything toward the beginning.
699          */
700
701         if (do_list_queue == NULL) {
702                 DEBUG(4,("do_list_queue is empty\n"));
703                 do_list_queue_start = do_list_queue_end = 0;
704                 return;
705         }
706
707         if (do_list_queue_start == do_list_queue_end) {
708                 DEBUG(4,("do_list_queue is empty\n"));
709                 do_list_queue_start = do_list_queue_end = 0;
710                 *do_list_queue = '\0';
711         } else if (do_list_queue_start > (do_list_queue_size / 2)) {
712                 DEBUG(4,("sliding do_list_queue backward\n"));
713                 memmove(do_list_queue,
714                         do_list_queue + do_list_queue_start,
715                         do_list_queue_end - do_list_queue_start);
716                 do_list_queue_end -= do_list_queue_start;
717                 do_list_queue_start = 0;
718         }
719 }
720
721 static void add_to_do_list_queue(const char *entry)
722 {
723         long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
724         while (new_end > do_list_queue_size) {
725                 do_list_queue_size *= 2;
726                 DEBUG(4,("enlarging do_list_queue to %d\n",
727                          (int)do_list_queue_size));
728                 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
729                 if (! do_list_queue) {
730                         d_printf("failure enlarging do_list_queue to %d bytes\n",
731                                  (int)do_list_queue_size);
732                         reset_do_list_queue();
733                 } else {
734                         memset(do_list_queue + do_list_queue_size / 2,
735                                0, do_list_queue_size / 2);
736                 }
737         }
738         if (do_list_queue) {
739                 strlcpy_base(do_list_queue + do_list_queue_end,
740                                  entry, do_list_queue, do_list_queue_size);
741                 do_list_queue_end = new_end;
742                 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
743                          entry, (int)do_list_queue_start, (int)do_list_queue_end));
744         }
745 }
746
747 static char *do_list_queue_head(void)
748 {
749         return do_list_queue + do_list_queue_start;
750 }
751
752 static void remove_do_list_queue_head(void)
753 {
754         if (do_list_queue_end > do_list_queue_start) {
755                 do_list_queue_start += strlen(do_list_queue_head()) + 1;
756                 adjust_do_list_queue();
757                 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
758                          (int)do_list_queue_start, (int)do_list_queue_end));
759         }
760 }
761
762 static int do_list_queue_empty(void)
763 {
764         return (! (do_list_queue && *do_list_queue));
765 }
766
767 /****************************************************************************
768  A helper for do_list.
769 ****************************************************************************/
770
771 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
772                            const char *mask, void *state)
773 {
774         struct cli_state *cli_state = (struct cli_state *)state;
775         TALLOC_CTX *ctx = talloc_tos();
776         char *dir = NULL;
777         char *dir_end = NULL;
778         NTSTATUS status = NT_STATUS_OK;
779
780         /* Work out the directory. */
781         dir = talloc_strdup(ctx, mask);
782         if (!dir) {
783                 return NT_STATUS_NO_MEMORY;
784         }
785         if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
786                 *dir_end = '\0';
787         }
788
789         if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
790                 if (do_list_dirs && do_this_one(f)) {
791                         status = do_list_fn(cli_state, f, dir);
792                         if (!NT_STATUS_IS_OK(status)) {
793                                 return status;
794                         }
795                 }
796                 if (do_list_recurse &&
797                     f->name &&
798                     !strequal(f->name,".") &&
799                     !strequal(f->name,"..")) {
800                         char *mask2 = NULL;
801                         char *p = NULL;
802
803                         if (!f->name[0]) {
804                                 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
805                                 TALLOC_FREE(dir);
806                                 return NT_STATUS_UNSUCCESSFUL;
807                         }
808
809                         mask2 = talloc_asprintf(ctx,
810                                         "%s%s",
811                                         mntpoint,
812                                         mask);
813                         if (!mask2) {
814                                 TALLOC_FREE(dir);
815                                 return NT_STATUS_NO_MEMORY;
816                         }
817                         p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
818                         if (p) {
819                                 p[1] = 0;
820                         } else {
821                                 mask2[0] = '\0';
822                         }
823                         mask2 = talloc_asprintf_append(mask2,
824                                         "%s%s*",
825                                         f->name,
826                                         CLI_DIRSEP_STR);
827                         if (!mask2) {
828                                 TALLOC_FREE(dir);
829                                 return NT_STATUS_NO_MEMORY;
830                         }
831                         add_to_do_list_queue(mask2);
832                         TALLOC_FREE(mask2);
833                 }
834                 TALLOC_FREE(dir);
835                 return NT_STATUS_OK;
836         }
837
838         if (do_this_one(f)) {
839                 status = do_list_fn(cli_state, f, dir);
840         }
841         TALLOC_FREE(dir);
842         return status;
843 }
844
845 /****************************************************************************
846  A wrapper around cli_list that adds recursion.
847 ****************************************************************************/
848
849 NTSTATUS do_list(const char *mask,
850                         uint16_t attribute,
851                         NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
852                                    const char *dir),
853                         bool rec,
854                         bool dirs)
855 {
856         static int in_do_list = 0;
857         TALLOC_CTX *ctx = talloc_tos();
858         struct cli_state *targetcli = NULL;
859         char *targetpath = NULL;
860         NTSTATUS ret_status = NT_STATUS_OK;
861         NTSTATUS status = NT_STATUS_OK;
862
863         if (in_do_list && rec) {
864                 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
865                 exit(1);
866         }
867
868         in_do_list = 1;
869
870         do_list_recurse = rec;
871         do_list_dirs = dirs;
872         do_list_fn = fn;
873
874         if (rec) {
875                 init_do_list_queue();
876                 add_to_do_list_queue(mask);
877
878                 while (!do_list_queue_empty()) {
879                         /*
880                          * Need to copy head so that it doesn't become
881                          * invalid inside the call to cli_list.  This
882                          * would happen if the list were expanded
883                          * during the call.
884                          * Fix from E. Jay Berkenbilt (ejb@ql.org)
885                          */
886                         char *head = talloc_strdup(ctx, do_list_queue_head());
887
888                         if (!head) {
889                                 return NT_STATUS_NO_MEMORY;
890                         }
891
892                         /* check for dfs */
893
894                         status = cli_resolve_path(ctx, "",
895                                         popt_get_cmdline_auth_info(),
896                                         cli, head, &targetcli, &targetpath);
897                         if (!NT_STATUS_IS_OK(status)) {
898                                 d_printf("do_list: [%s] %s\n", head,
899                                          nt_errstr(status));
900                                 remove_do_list_queue_head();
901                                 continue;
902                         }
903
904                         status = cli_list(targetcli, targetpath, attribute,
905                                  do_list_helper, targetcli);
906                         if (!NT_STATUS_IS_OK(status)) {
907                                 d_printf("%s listing %s\n",
908                                          nt_errstr(status), targetpath);
909                                 ret_status = status;
910                         }
911                         remove_do_list_queue_head();
912                         if ((! do_list_queue_empty()) && (fn == display_finfo)) {
913                                 char *next_file = do_list_queue_head();
914                                 char *save_ch = 0;
915                                 if ((strlen(next_file) >= 2) &&
916                                     (next_file[strlen(next_file) - 1] == '*') &&
917                                     (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
918                                         save_ch = next_file +
919                                                 strlen(next_file) - 2;
920                                         *save_ch = '\0';
921                                         if (showacls) {
922                                                 /* cwd is only used if showacls is on */
923                                                 client_set_cwd(next_file);
924                                         }
925                                 }
926                                 if (!showacls) /* don't disturbe the showacls output */
927                                         d_printf("\n%s\n",next_file);
928                                 if (save_ch) {
929                                         *save_ch = CLI_DIRSEP_CHAR;
930                                 }
931                         }
932                         TALLOC_FREE(head);
933                         TALLOC_FREE(targetpath);
934                 }
935         } else {
936                 /* check for dfs */
937                 status = cli_resolve_path(ctx, "",
938                                 popt_get_cmdline_auth_info(), cli, mask,
939                                   &targetcli, &targetpath);
940                 if (NT_STATUS_IS_OK(status)) {
941                         status = cli_list(targetcli, targetpath, attribute,
942                                           do_list_helper, targetcli);
943                         if (!NT_STATUS_IS_OK(status)) {
944                                 d_printf("%s listing %s\n",
945                                          nt_errstr(status), targetpath);
946                                 ret_status = status;
947                         }
948                         TALLOC_FREE(targetpath);
949                 } else {
950                         d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
951                         ret_status = status;
952                 }
953         }
954
955         in_do_list = 0;
956         reset_do_list_queue();
957         return ret_status;
958 }
959
960 /****************************************************************************
961  Get a directory listing.
962 ****************************************************************************/
963
964 static int cmd_dir(void)
965 {
966         TALLOC_CTX *ctx = talloc_tos();
967         uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
968         char *mask = NULL;
969         char *buf = NULL;
970         int rc = 1;
971         NTSTATUS status;
972
973         dir_total = 0;
974         mask = talloc_strdup(ctx, client_get_cur_dir());
975         if (!mask) {
976                 return 1;
977         }
978
979         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
980                 normalize_name(buf);
981                 if (*buf == CLI_DIRSEP_CHAR) {
982                         mask = talloc_strdup(ctx, buf);
983                 } else {
984                         mask = talloc_asprintf_append(mask, "%s", buf);
985                 }
986         } else {
987                 mask = talloc_asprintf_append(mask, "*");
988         }
989         if (!mask) {
990                 return 1;
991         }
992
993         mask = client_clean_name(ctx, mask);
994         if (mask == NULL) {
995                 return 1;
996         }
997
998         if (showacls) {
999                 /* cwd is only used if showacls is on */
1000                 client_set_cwd(client_get_cur_dir());
1001         }
1002
1003         status = do_list(mask, attribute, display_finfo, recurse, true);
1004         if (!NT_STATUS_IS_OK(status)) {
1005                 return 1;
1006         }
1007
1008         rc = do_dskattr();
1009
1010         DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
1011
1012         return rc;
1013 }
1014
1015 /****************************************************************************
1016  Get a directory listing.
1017 ****************************************************************************/
1018
1019 static int cmd_du(void)
1020 {
1021         TALLOC_CTX *ctx = talloc_tos();
1022         uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1023         char *mask = NULL;
1024         char *buf = NULL;
1025         NTSTATUS status;
1026         int rc = 1;
1027
1028         dir_total = 0;
1029         mask = talloc_strdup(ctx, client_get_cur_dir());
1030         if (!mask) {
1031                 return 1;
1032         }
1033         if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
1034                 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
1035                 if (!mask) {
1036                         return 1;
1037                 }
1038         }
1039
1040         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1041                 normalize_name(buf);
1042                 if (*buf == CLI_DIRSEP_CHAR) {
1043                         mask = talloc_strdup(ctx, buf);
1044                 } else {
1045                         mask = talloc_asprintf_append(mask, "%s", buf);
1046                 }
1047         } else {
1048                 mask = talloc_strdup(ctx, "*");
1049         }
1050         if (!mask) {
1051                 return 1;
1052         }
1053
1054         mask = client_clean_name(ctx, mask);
1055         if (mask == NULL) {
1056                 return 1;
1057         }
1058
1059         status = do_list(mask, attribute, do_du, recurse, true);
1060         if (!NT_STATUS_IS_OK(status)) {
1061                 return 1;
1062         }
1063
1064         rc = do_dskattr();
1065
1066         d_printf("Total number of bytes: %.0f\n", dir_total);
1067
1068         return rc;
1069 }
1070
1071 static int cmd_echo(void)
1072 {
1073         TALLOC_CTX *ctx = talloc_tos();
1074         char *num;
1075         char *data;
1076         NTSTATUS status;
1077
1078         if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1079             || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1080                 d_printf("echo <num> <data>\n");
1081                 return 1;
1082         }
1083
1084         status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1085
1086         if (!NT_STATUS_IS_OK(status)) {
1087                 d_printf("echo failed: %s\n", nt_errstr(status));
1088                 return 1;
1089         }
1090
1091         return 0;
1092 }
1093
1094 /****************************************************************************
1095  Get a file from rname to lname
1096 ****************************************************************************/
1097
1098 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1099 {
1100         int *pfd = (int *)priv;
1101         ssize_t rc;
1102
1103         rc = writefile(*pfd, buf, n);
1104         if (rc == -1) {
1105                 return map_nt_error_from_unix(errno);
1106         }
1107         return NT_STATUS_OK;
1108 }
1109
1110 static int do_get(const char *rname, const char *lname_in, bool reget)
1111 {
1112         TALLOC_CTX *ctx = talloc_tos();
1113         int handle = 0;
1114         uint16_t fnum;
1115         bool newhandle = false;
1116         struct timespec tp_start;
1117         uint16_t attr;
1118         off_t size;
1119         off_t start = 0;
1120         off_t nread = 0;
1121         int rc = 0;
1122         struct cli_state *targetcli = NULL;
1123         char *targetname = NULL;
1124         char *lname = NULL;
1125         NTSTATUS status;
1126
1127         lname = talloc_strdup(ctx, lname_in);
1128         if (!lname) {
1129                 return 1;
1130         }
1131
1132         if (lowercase) {
1133                 if (!strlower_m(lname)) {
1134                         d_printf("strlower_m %s failed\n", lname);
1135                         return 1;
1136                 }
1137         }
1138
1139         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
1140                                 cli, rname, &targetcli, &targetname);
1141         if (!NT_STATUS_IS_OK(status)) {
1142                 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1143                 return 1;
1144         }
1145
1146         clock_gettime_mono(&tp_start);
1147
1148         status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1149         if (!NT_STATUS_IS_OK(status)) {
1150                 d_printf("%s opening remote file %s\n", nt_errstr(status),
1151                          rname);
1152                 return 1;
1153         }
1154
1155         if(!strcmp(lname,"-")) {
1156                 handle = fileno(stdout);
1157         } else {
1158                 if (reget) {
1159                         handle = open(lname, O_WRONLY|O_CREAT, 0644);
1160                         if (handle >= 0) {
1161                                 start = lseek(handle, 0, SEEK_END);
1162                                 if (start == -1) {
1163                                         d_printf("Error seeking local file\n");
1164                                         close(handle);
1165                                         return 1;
1166                                 }
1167                         }
1168                 } else {
1169                         handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1170                 }
1171                 newhandle = true;
1172         }
1173         if (handle < 0) {
1174                 d_printf("Error opening local file %s\n",lname);
1175                 return 1;
1176         }
1177
1178
1179         status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1180                                      NULL, NULL, NULL);
1181         if (!NT_STATUS_IS_OK(status)) {
1182                 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1183                                       NULL);
1184                 if(!NT_STATUS_IS_OK(status)) {
1185                         d_printf("getattrib: %s\n", nt_errstr(status));
1186                         if (newhandle) {
1187                                 close(handle);
1188                         }
1189                         return 1;
1190                 }
1191         }
1192
1193         DEBUG(1,("getting file %s of size %.0f as %s ",
1194                  rname, (double)size, lname));
1195
1196         status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1197                           writefile_sink, (void *)&handle, &nread);
1198         if (!NT_STATUS_IS_OK(status)) {
1199                 d_fprintf(stderr, "parallel_read returned %s\n",
1200                           nt_errstr(status));
1201                 if (newhandle) {
1202                         close(handle);
1203                 }
1204                 cli_close(targetcli, fnum);
1205                 return 1;
1206         }
1207
1208         status = cli_close(targetcli, fnum);
1209         if (!NT_STATUS_IS_OK(status)) {
1210                 d_printf("Error %s closing remote file\n", nt_errstr(status));
1211                 rc = 1;
1212         }
1213
1214         if (newhandle) {
1215                 close(handle);
1216         }
1217
1218         if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1219                 cli_setatr(cli, rname, attr & ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE, 0);
1220         }
1221
1222         {
1223                 struct timespec tp_end;
1224                 int this_time;
1225
1226                 clock_gettime_mono(&tp_end);
1227                 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1228                 get_total_time_ms += this_time;
1229                 get_total_size += nread;
1230
1231                 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1232                          nread / (1.024*this_time + 1.0e-4),
1233                          get_total_size / (1.024*get_total_time_ms)));
1234         }
1235
1236         TALLOC_FREE(targetname);
1237         return rc;
1238 }
1239
1240 /****************************************************************************
1241  Get a file.
1242 ****************************************************************************/
1243
1244 static int cmd_get(void)
1245 {
1246         TALLOC_CTX *ctx = talloc_tos();
1247         char *lname = NULL;
1248         char *rname = NULL;
1249         char *fname = NULL;
1250
1251         rname = talloc_strdup(ctx, client_get_cur_dir());
1252         if (!rname) {
1253                 return 1;
1254         }
1255
1256         if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1257                 d_printf("get <filename> [localname]\n");
1258                 return 1;
1259         }
1260         rname = talloc_asprintf_append(rname, "%s", fname);
1261         if (!rname) {
1262                 return 1;
1263         }
1264         rname = client_clean_name(ctx, rname);
1265         if (!rname) {
1266                 return 1;
1267         }
1268
1269         next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1270         if (!lname) {
1271                 lname = fname;
1272         }
1273
1274         return do_get(rname, lname, false);
1275 }
1276
1277 /****************************************************************************
1278  Do an mget operation on one file.
1279 ****************************************************************************/
1280
1281 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1282                     const char *dir)
1283 {
1284         TALLOC_CTX *ctx = talloc_tos();
1285         NTSTATUS status = NT_STATUS_OK;
1286         char *rname = NULL;
1287         char *quest = NULL;
1288         char *saved_curdir = NULL;
1289         char *mget_mask = NULL;
1290         char *new_cd = NULL;
1291
1292         if (!finfo->name) {
1293                 return NT_STATUS_OK;
1294         }
1295
1296         if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1297                 return NT_STATUS_OK;
1298
1299         if (abort_mget) {
1300                 d_printf("mget aborted\n");
1301                 return NT_STATUS_UNSUCCESSFUL;
1302         }
1303
1304         if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1305                 if (asprintf(&quest,
1306                          "Get directory %s? ",finfo->name) < 0) {
1307                         return NT_STATUS_NO_MEMORY;
1308                 }
1309         } else {
1310                 if (asprintf(&quest,
1311                          "Get file %s? ",finfo->name) < 0) {
1312                         return NT_STATUS_NO_MEMORY;
1313                 }
1314         }
1315
1316         if (prompt && !yesno(quest)) {
1317                 SAFE_FREE(quest);
1318                 return NT_STATUS_OK;
1319         }
1320         SAFE_FREE(quest);
1321
1322         if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1323                 rname = talloc_asprintf(ctx,
1324                                 "%s%s",
1325                                 client_get_cur_dir(),
1326                                 finfo->name);
1327                 if (!rname) {
1328                         return NT_STATUS_NO_MEMORY;
1329                 }
1330                 rname = client_clean_name(ctx, rname);
1331                 if (rname == NULL) {
1332                         return NT_STATUS_NO_MEMORY;
1333                 }
1334                 do_get(rname, finfo->name, false);
1335                 TALLOC_FREE(rname);
1336                 return NT_STATUS_OK;
1337         }
1338
1339         /* handle directories */
1340         saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1341         if (!saved_curdir) {
1342                 return NT_STATUS_NO_MEMORY;
1343         }
1344
1345         new_cd = talloc_asprintf(ctx,
1346                                 "%s%s%s",
1347                                 client_get_cur_dir(),
1348                                 finfo->name,
1349                                 CLI_DIRSEP_STR);
1350         if (!new_cd) {
1351                 return NT_STATUS_NO_MEMORY;
1352         }
1353         new_cd = client_clean_name(ctx, new_cd);
1354         if (new_cd == NULL) {
1355                 return NT_STATUS_NO_MEMORY;
1356         }
1357         client_set_cur_dir(new_cd);
1358
1359         string_replace(finfo->name,'\\','/');
1360         if (lowercase) {
1361                 if (!strlower_m(finfo->name)) {
1362                         return NT_STATUS_INVALID_PARAMETER;
1363                 }
1364         }
1365
1366         if (!directory_exist(finfo->name) &&
1367             mkdir(finfo->name,0777) != 0) {
1368                 d_printf("failed to create directory %s\n",finfo->name);
1369                 client_set_cur_dir(saved_curdir);
1370                 return map_nt_error_from_unix(errno);
1371         }
1372
1373         if (chdir(finfo->name) != 0) {
1374                 d_printf("failed to chdir to directory %s\n",finfo->name);
1375                 client_set_cur_dir(saved_curdir);
1376                 return map_nt_error_from_unix(errno);
1377         }
1378
1379         mget_mask = talloc_asprintf(ctx,
1380                         "%s*",
1381                         client_get_cur_dir());
1382
1383         if (!mget_mask) {
1384                 return NT_STATUS_NO_MEMORY;
1385         }
1386
1387         mget_mask = client_clean_name(ctx, mget_mask);
1388         if (mget_mask == NULL) {
1389                 return NT_STATUS_NO_MEMORY;
1390         }
1391         status = do_list(mget_mask,
1392                          (FILE_ATTRIBUTE_SYSTEM
1393                           | FILE_ATTRIBUTE_HIDDEN
1394                           | FILE_ATTRIBUTE_DIRECTORY),
1395                          do_mget, false, true);
1396         if (!NT_STATUS_IS_OK(status)
1397          && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
1398                 /*
1399                  * Ignore access denied errors to ensure all permitted files are
1400                  * pulled down.
1401                  */
1402                 return status;
1403         }
1404
1405         if (chdir("..") == -1) {
1406                 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1407                         strerror(errno) );
1408                 return map_nt_error_from_unix(errno);
1409         }
1410         client_set_cur_dir(saved_curdir);
1411         TALLOC_FREE(mget_mask);
1412         TALLOC_FREE(saved_curdir);
1413         TALLOC_FREE(new_cd);
1414         return NT_STATUS_OK;
1415 }
1416
1417 /****************************************************************************
1418  View the file using the pager.
1419 ****************************************************************************/
1420
1421 static int cmd_more(void)
1422 {
1423         TALLOC_CTX *ctx = talloc_tos();
1424         char *rname = NULL;
1425         char *fname = NULL;
1426         char *lname = NULL;
1427         char *pager_cmd = NULL;
1428         const char *pager;
1429         int fd;
1430         int rc = 0;
1431         mode_t mask;
1432
1433         rname = talloc_strdup(ctx, client_get_cur_dir());
1434         if (!rname) {
1435                 return 1;
1436         }
1437
1438         lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1439         if (!lname) {
1440                 return 1;
1441         }
1442         mask = umask(S_IRWXO | S_IRWXG);
1443         fd = mkstemp(lname);
1444         umask(mask);
1445         if (fd == -1) {
1446                 d_printf("failed to create temporary file for more\n");
1447                 return 1;
1448         }
1449         close(fd);
1450
1451         if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1452                 d_printf("more <filename>\n");
1453                 unlink(lname);
1454                 return 1;
1455         }
1456         rname = talloc_asprintf_append(rname, "%s", fname);
1457         if (!rname) {
1458                 return 1;
1459         }
1460         rname = client_clean_name(ctx,rname);
1461         if (!rname) {
1462                 return 1;
1463         }
1464
1465         rc = do_get(rname, lname, false);
1466
1467         pager=getenv("PAGER");
1468
1469         pager_cmd = talloc_asprintf(ctx,
1470                                 "%s %s",
1471                                 (pager? pager:PAGER),
1472                                 lname);
1473         if (!pager_cmd) {
1474                 return 1;
1475         }
1476         if (system(pager_cmd) == -1) {
1477                 d_printf("system command '%s' returned -1\n",
1478                         pager_cmd);
1479         }
1480         unlink(lname);
1481
1482         return rc;
1483 }
1484
1485 /****************************************************************************
1486  Do a mget command.
1487 ****************************************************************************/
1488
1489 static int cmd_mget(void)
1490 {
1491         TALLOC_CTX *ctx = talloc_tos();
1492         uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1493         char *mget_mask = NULL;
1494         char *buf = NULL;
1495         NTSTATUS status = NT_STATUS_OK;
1496
1497         if (recurse) {
1498                 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1499         }
1500
1501         abort_mget = false;
1502
1503         while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1504
1505                 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1506                 if (!mget_mask) {
1507                         return 1;
1508                 }
1509                 if (*buf == CLI_DIRSEP_CHAR) {
1510                         mget_mask = talloc_strdup(ctx, buf);
1511                 } else {
1512                         mget_mask = talloc_asprintf_append(mget_mask,
1513                                                         "%s", buf);
1514                 }
1515                 if (!mget_mask) {
1516                         return 1;
1517                 }
1518                 mget_mask = client_clean_name(ctx, mget_mask);
1519                 if (mget_mask == NULL) {
1520                         return 1;
1521                 }
1522                 status = do_list(mget_mask, attribute, do_mget, false, true);
1523                 if (!NT_STATUS_IS_OK(status)) {
1524                         return 1;
1525                 }
1526         }
1527
1528         if (mget_mask == NULL) {
1529                 d_printf("nothing to mget\n");
1530                 return 0;
1531         }
1532
1533         if (!*mget_mask) {
1534                 mget_mask = talloc_asprintf(ctx,
1535                                         "%s*",
1536                                         client_get_cur_dir());
1537                 if (!mget_mask) {
1538                         return 1;
1539                 }
1540                 mget_mask = client_clean_name(ctx, mget_mask);
1541                 if (mget_mask == NULL) {
1542                         return 1;
1543                 }
1544                 status = do_list(mget_mask, attribute, do_mget, false, true);
1545                 if (!NT_STATUS_IS_OK(status)) {
1546                         return 1;
1547                 }
1548         }
1549
1550         return 0;
1551 }
1552
1553 /****************************************************************************
1554  Make a directory of name "name".
1555 ****************************************************************************/
1556
1557 static bool do_mkdir(const char *name)
1558 {
1559         TALLOC_CTX *ctx = talloc_tos();
1560         struct cli_state *targetcli;
1561         char *targetname = NULL;
1562         NTSTATUS status;
1563
1564         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
1565                                 cli, name, &targetcli, &targetname);
1566         if (!NT_STATUS_IS_OK(status)) {
1567                 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1568                 return false;
1569         }
1570
1571         status = cli_mkdir(targetcli, targetname);
1572         if (!NT_STATUS_IS_OK(status)) {
1573                 d_printf("%s making remote directory %s\n",
1574                          nt_errstr(status),name);
1575                 return false;
1576         }
1577
1578         return true;
1579 }
1580
1581 /****************************************************************************
1582  Show 8.3 name of a file.
1583 ****************************************************************************/
1584
1585 static bool do_altname(const char *name)
1586 {
1587         fstring altname;
1588         NTSTATUS status;
1589
1590         status = cli_qpathinfo_alt_name(cli, name, altname);
1591         if (!NT_STATUS_IS_OK(status)) {
1592                 d_printf("%s getting alt name for %s\n",
1593                          nt_errstr(status),name);
1594                 return false;
1595         }
1596         d_printf("%s\n", altname);
1597
1598         return true;
1599 }
1600
1601 /****************************************************************************
1602  Exit client.
1603 ****************************************************************************/
1604
1605 static int cmd_quit(void)
1606 {
1607         cli_shutdown(cli);
1608         popt_free_cmdline_auth_info();
1609         exit(0);
1610         /* NOTREACHED */
1611         return 0;
1612 }
1613
1614 /****************************************************************************
1615  Make a directory.
1616 ****************************************************************************/
1617
1618 static int cmd_mkdir(void)
1619 {
1620         TALLOC_CTX *ctx = talloc_tos();
1621         char *mask = NULL;
1622         char *buf = NULL;
1623         NTSTATUS status;
1624
1625         mask = talloc_strdup(ctx, client_get_cur_dir());
1626         if (!mask) {
1627                 return 1;
1628         }
1629
1630         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1631                 if (!recurse) {
1632                         d_printf("mkdir <dirname>\n");
1633                 }
1634                 return 1;
1635         }
1636         mask = talloc_asprintf_append(mask, "%s", buf);
1637         if (!mask) {
1638                 return 1;
1639         }
1640         mask = client_clean_name(ctx, mask);
1641         if (mask == NULL) {
1642                 return 1;
1643         }
1644
1645         if (recurse) {
1646                 char *ddir = NULL;
1647                 char *ddir2 = NULL;
1648                 struct cli_state *targetcli;
1649                 char *targetname = NULL;
1650                 char *p = NULL;
1651                 char *saveptr;
1652
1653                 ddir2 = talloc_strdup(ctx, "");
1654                 if (!ddir2) {
1655                         return 1;
1656                 }
1657
1658                 status = cli_resolve_path(ctx, "",
1659                                 popt_get_cmdline_auth_info(), cli, mask,
1660                                 &targetcli, &targetname);
1661                 if (!NT_STATUS_IS_OK(status)) {
1662                         return 1;
1663                 }
1664
1665                 ddir = talloc_strdup(ctx, targetname);
1666                 if (!ddir) {
1667                         return 1;
1668                 }
1669                 trim_char(ddir,'.','\0');
1670                 p = strtok_r(ddir, "/\\", &saveptr);
1671                 while (p) {
1672                         ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1673                         if (!ddir2) {
1674                                 return 1;
1675                         }
1676                         if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1677                                 do_mkdir(ddir2);
1678                         }
1679                         ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1680                         if (!ddir2) {
1681                                 return 1;
1682                         }
1683                         p = strtok_r(NULL, "/\\", &saveptr);
1684                 }
1685         } else {
1686                 do_mkdir(mask);
1687         }
1688
1689         return 0;
1690 }
1691
1692 /****************************************************************************
1693  Show alt name.
1694 ****************************************************************************/
1695
1696 static int cmd_altname(void)
1697 {
1698         TALLOC_CTX *ctx = talloc_tos();
1699         char *name;
1700         char *buf;
1701
1702         name = talloc_strdup(ctx, client_get_cur_dir());
1703         if (!name) {
1704                 return 1;
1705         }
1706
1707         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1708                 d_printf("altname <file>\n");
1709                 return 1;
1710         }
1711         name = talloc_asprintf_append(name, "%s", buf);
1712         if (!name) {
1713                 return 1;
1714         }
1715         name = client_clean_name(ctx, name);
1716         if (name == NULL) {
1717                 return 1;
1718         }
1719         do_altname(name);
1720         return 0;
1721 }
1722
1723 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1724 {
1725         char *attrs = talloc_zero_array(mem_ctx, char, 17);
1726         int i = 0;
1727
1728         if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1729                 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1730                         attrs[i++] = 'E';
1731                 }
1732                 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1733                         attrs[i++] = 'N';
1734                 }
1735                 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1736                         attrs[i++] = 'O';
1737                 }
1738                 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1739                         attrs[i++] = 'C';
1740                 }
1741                 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1742                         attrs[i++] = 'r';
1743                 }
1744                 if (mode & FILE_ATTRIBUTE_SPARSE) {
1745                         attrs[i++] = 's';
1746                 }
1747                 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1748                         attrs[i++] = 'T';
1749                 }
1750                 if (mode & FILE_ATTRIBUTE_NORMAL) {
1751                         attrs[i++] = 'N';
1752                 }
1753                 if (mode & FILE_ATTRIBUTE_READONLY) {
1754                         attrs[i++] = 'R';
1755                 }
1756                 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1757                         attrs[i++] = 'H';
1758                 }
1759                 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1760                         attrs[i++] = 'S';
1761                 }
1762                 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1763                         attrs[i++] = 'D';
1764                 }
1765                 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1766                         attrs[i++] = 'A';
1767                 }
1768         }
1769         return attrs;
1770 }
1771
1772 /****************************************************************************
1773  Show all info we can get
1774 ****************************************************************************/
1775
1776 static int do_allinfo(const char *name)
1777 {
1778         fstring altname;
1779         struct timespec b_time, a_time, m_time, c_time;
1780         off_t size;
1781         uint16_t mode;
1782         NTTIME tmp;
1783         uint16_t fnum;
1784         unsigned int num_streams;
1785         struct stream_struct *streams;
1786         int num_snapshots;
1787         char **snapshots = NULL;
1788         unsigned int i;
1789         NTSTATUS status;
1790
1791         status = cli_qpathinfo_alt_name(cli, name, altname);
1792         if (!NT_STATUS_IS_OK(status)) {
1793                 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1794                          name);
1795                 /*
1796                  * Ignore not supported or not implemented, it does not
1797                  * hurt if we can't list alternate names.
1798                  */
1799                 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED) ||
1800                     NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) {
1801                         altname[0] = '\0';
1802                 } else {
1803                         return false;
1804                 }
1805         }
1806         d_printf("altname: %s\n", altname);
1807
1808         status = cli_qpathinfo3(cli, name, &b_time, &a_time, &m_time, &c_time,
1809                                 &size, &mode, NULL);
1810         if (!NT_STATUS_IS_OK(status)) {
1811                 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1812                          name);
1813                 return false;
1814         }
1815
1816         tmp = full_timespec_to_nt_time(&b_time);
1817         d_printf("create_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1818
1819         tmp = full_timespec_to_nt_time(&a_time);
1820         d_printf("access_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1821
1822         tmp = full_timespec_to_nt_time(&m_time);
1823         d_printf("write_time:     %s\n", nt_time_string(talloc_tos(), tmp));
1824
1825         tmp = full_timespec_to_nt_time(&c_time);
1826         d_printf("change_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1827
1828         d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1829
1830         status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1831                                        &streams);
1832         if (!NT_STATUS_IS_OK(status)) {
1833                 d_printf("%s getting streams for %s\n", nt_errstr(status),
1834                          name);
1835                 return false;
1836         }
1837
1838         for (i=0; i<num_streams; i++) {
1839                 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1840                          (unsigned long long)streams[i].size);
1841         }
1842
1843         if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1844                 char *subst, *print;
1845                 uint32_t flags;
1846
1847                 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1848                                       &flags);
1849                 if (!NT_STATUS_IS_OK(status)) {
1850                         d_fprintf(stderr, "cli_readlink returned %s\n",
1851                                   nt_errstr(status));
1852                 } else {
1853                         d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1854                                  subst, print, flags);
1855                         TALLOC_FREE(subst);
1856                         TALLOC_FREE(print);
1857                 }
1858         }
1859
1860         status = cli_ntcreate(cli, name, 0,
1861                               SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1862                               SEC_STD_SYNCHRONIZE, 0,
1863                               FILE_SHARE_READ|FILE_SHARE_WRITE
1864                               |FILE_SHARE_DELETE,
1865                               FILE_OPEN, 0x0, 0x0, &fnum, NULL);
1866         if (!NT_STATUS_IS_OK(status)) {
1867                 /*
1868                  * Ignore failure, it does not hurt if we can't list
1869                  * snapshots
1870                  */
1871                 return 0;
1872         }
1873         /*
1874          * In order to get shadow copy data over SMB1 we
1875          * must call twice, once with 'get_names = false'
1876          * to get the size, then again with 'get_names = true'
1877          * to get the data or a Windows server fails to return
1878          * valid info. Samba doesn't have this bug. JRA.
1879          */
1880
1881         status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1882                                       false, &snapshots, &num_snapshots);
1883         if (!NT_STATUS_IS_OK(status)) {
1884                 cli_close(cli, fnum);
1885                 return 0;
1886         }
1887         status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1888                                       true, &snapshots, &num_snapshots);
1889         if (!NT_STATUS_IS_OK(status)) {
1890                 cli_close(cli, fnum);
1891                 return 0;
1892         }
1893
1894         for (i=0; i<num_snapshots; i++) {
1895                 char *snap_name;
1896
1897                 d_printf("%s\n", snapshots[i]);
1898                 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1899                                             snapshots[i], name);
1900                 status = cli_qpathinfo3(cli, snap_name, &b_time, &a_time,
1901                                         &m_time, &c_time, &size,
1902                                         NULL, NULL);
1903                 if (!NT_STATUS_IS_OK(status)) {
1904                         d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1905                                   snap_name, nt_errstr(status));
1906                         TALLOC_FREE(snap_name);
1907                         continue;
1908                 }
1909                 tmp = unix_timespec_to_nt_time(b_time);
1910                 d_printf("create_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1911                 tmp = unix_timespec_to_nt_time(a_time);
1912                 d_printf("access_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1913                 tmp =unix_timespec_to_nt_time(m_time);
1914                 d_printf("write_time:     %s\n", nt_time_string(talloc_tos(), tmp));
1915                 tmp = unix_timespec_to_nt_time(c_time);
1916                 d_printf("change_time:    %s\n", nt_time_string(talloc_tos(), tmp));
1917                 d_printf("size: %d\n", (int)size);
1918         }
1919
1920         TALLOC_FREE(snapshots);
1921         cli_close(cli, fnum);
1922
1923         return 0;
1924 }
1925
1926 /****************************************************************************
1927  Show all info we can get
1928 ****************************************************************************/
1929
1930 static int cmd_allinfo(void)
1931 {
1932         TALLOC_CTX *ctx = talloc_tos();
1933         char *name;
1934         char *buf;
1935
1936         name = talloc_strdup(ctx, client_get_cur_dir());
1937         if (!name) {
1938                 return 1;
1939         }
1940
1941         if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1942                 d_printf("allinfo <file>\n");
1943                 return 1;
1944         }
1945         name = talloc_asprintf_append(name, "%s", buf);
1946         if (!name) {
1947                 return 1;
1948         }
1949         name = client_clean_name(ctx, name);
1950         if (name == NULL) {
1951                 return 1;
1952         }
1953         do_allinfo(name);
1954
1955         return 0;
1956 }
1957
1958 /****************************************************************************
1959  Put a single file.
1960 ****************************************************************************/
1961
1962 static int do_put(const char *rname, const char *lname, bool reput)
1963 {
1964         TALLOC_CTX *ctx = talloc_tos();
1965         uint16_t fnum;
1966         FILE *f;
1967         off_t start = 0;
1968         int rc = 0;
1969         struct timespec tp_start;
1970         struct cli_state *targetcli;
1971         char *targetname = NULL;
1972         struct push_state state;
1973         NTSTATUS status;
1974
1975         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
1976                                 cli, rname, &targetcli, &targetname);
1977         if (!NT_STATUS_IS_OK(status)) {
1978                 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1979                 return 1;
1980         }
1981
1982         clock_gettime_mono(&tp_start);
1983
1984         if (reput) {
1985                 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1986                 if (NT_STATUS_IS_OK(status)) {
1987                         if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1988                                                      targetcli, fnum, NULL,
1989                                                      &start, NULL, NULL,
1990                                                      NULL, NULL, NULL)) &&
1991                             !NT_STATUS_IS_OK(status = cli_getattrE(
1992                                                      targetcli, fnum, NULL,
1993                                                      &start, NULL, NULL,
1994                                                      NULL))) {
1995                                 d_printf("getattrib: %s\n", nt_errstr(status));
1996                                 return 1;
1997                         }
1998                 }
1999         } else {
2000                 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
2001         }
2002
2003         if (!NT_STATUS_IS_OK(status)) {
2004                 d_printf("%s opening remote file %s\n", nt_errstr(status),
2005                          rname);
2006                 return 1;
2007         }
2008
2009         /* allow files to be piped into smbclient
2010            jdblair 24.jun.98
2011
2012            Note that in this case this function will exit(0) rather
2013            than returning. */
2014         if (!strcmp(lname, "-")) {
2015                 f = stdin;
2016                 /* size of file is not known */
2017         } else {
2018                 f = fopen(lname, "r");
2019                 if (f && reput) {
2020                         if (fseek(f, start, SEEK_SET) == -1) {
2021                                 d_printf("Error seeking local file\n");
2022                                 fclose(f);
2023                                 return 1;
2024                         }
2025                 }
2026         }
2027
2028         if (!f) {
2029                 d_printf("Error opening local file %s\n",lname);
2030                 return 1;
2031         }
2032
2033         DEBUG(1,("putting file %s as %s ",lname,
2034                  rname));
2035
2036         setvbuf(f, NULL, _IOFBF, io_bufsize);
2037
2038         state.f = f;
2039         state.nread = 0;
2040
2041         status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
2042                           &state);
2043         if (!NT_STATUS_IS_OK(status)) {
2044                 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
2045                 rc = 1;
2046         }
2047
2048         status = cli_close(targetcli, fnum);
2049         if (!NT_STATUS_IS_OK(status)) {
2050                 d_printf("%s closing remote file %s\n", nt_errstr(status),
2051                          rname);
2052                 if (f != stdin) {
2053                         fclose(f);
2054                 }
2055                 return 1;
2056         }
2057
2058         if (f != stdin) {
2059                 fclose(f);
2060         }
2061
2062         {
2063                 struct timespec tp_end;
2064                 int this_time;
2065
2066                 clock_gettime_mono(&tp_end);
2067                 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
2068                 put_total_time_ms += this_time;
2069                 put_total_size += state.nread;
2070
2071                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
2072                          state.nread / (1.024*this_time + 1.0e-4),
2073                          put_total_size / (1.024*put_total_time_ms)));
2074         }
2075
2076         if (f == stdin) {
2077                 cli_shutdown(cli);
2078                 popt_free_cmdline_auth_info();
2079                 exit(rc);
2080         }
2081
2082         return rc;
2083 }
2084
2085 /****************************************************************************
2086  Put a file.
2087 ****************************************************************************/
2088
2089 static int cmd_put(void)
2090 {
2091         TALLOC_CTX *ctx = talloc_tos();
2092         char *lname;
2093         char *rname;
2094         char *buf;
2095
2096         rname = talloc_strdup(ctx, client_get_cur_dir());
2097         if (!rname) {
2098                 return 1;
2099         }
2100
2101         if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
2102                 d_printf("put <filename>\n");
2103                 return 1;
2104         }
2105
2106         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2107                 rname = talloc_asprintf_append(rname, "%s", buf);
2108         } else {
2109                 rname = talloc_asprintf_append(rname, "%s", lname);
2110         }
2111         if (!rname) {
2112                 return 1;
2113         }
2114
2115         rname = client_clean_name(ctx, rname);
2116         if (!rname) {
2117                 return 1;
2118         }
2119
2120         {
2121                 SMB_STRUCT_STAT st;
2122                 /* allow '-' to represent stdin
2123                    jdblair, 24.jun.98 */
2124                 if (!file_exist_stat(lname, &st, false) &&
2125                     (strcmp(lname,"-"))) {
2126                         d_printf("%s does not exist\n",lname);
2127                         return 1;
2128                 }
2129         }
2130
2131         return do_put(rname, lname, false);
2132 }
2133
2134 /*************************************
2135  File list structure.
2136 *************************************/
2137
2138 static struct file_list {
2139         struct file_list *prev, *next;
2140         char *file_path;
2141         bool isdir;
2142 } *file_list;
2143
2144 /****************************************************************************
2145  Free a file_list structure.
2146 ****************************************************************************/
2147
2148 static void free_file_list (struct file_list *l_head)
2149 {
2150         struct file_list *list, *next;
2151
2152         for (list = l_head; list; list = next) {
2153                 next = list->next;
2154                 DLIST_REMOVE(l_head, list);
2155                 TALLOC_FREE(list);
2156         }
2157 }
2158
2159 /****************************************************************************
2160  Seek in a directory/file list until you get something that doesn't start with
2161  the specified name.
2162 ****************************************************************************/
2163
2164 static bool seek_list(struct file_list *list, char *name)
2165 {
2166         while (list) {
2167                 trim_string(list->file_path,"./","\n");
2168                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2169                         return true;
2170                 }
2171                 list = list->next;
2172         }
2173
2174         return false;
2175 }
2176
2177 /****************************************************************************
2178  Set the file selection mask.
2179 ****************************************************************************/
2180
2181 static int cmd_select(void)
2182 {
2183         TALLOC_CTX *ctx = talloc_tos();
2184         char *new_fs = NULL;
2185         next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2186                 ;
2187         if (new_fs) {
2188                 client_set_fileselection(new_fs);
2189         } else {
2190                 client_set_fileselection("");
2191         }
2192         return 0;
2193 }
2194
2195 /****************************************************************************
2196   Recursive file matching function act as find
2197   match must be always set to true when calling this function
2198 ****************************************************************************/
2199
2200 static int file_find(TALLOC_CTX *ctx,
2201                         struct file_list **list,
2202                         const char *directory,
2203                         const char *expression,
2204                         bool match)
2205 {
2206         DIR *dir;
2207         struct file_list *entry;
2208         struct stat statbuf;
2209         int ret;
2210         char *path;
2211         bool isdir;
2212         const char *dname;
2213
2214         dir = opendir(directory);
2215         if (!dir)
2216                 return -1;
2217
2218         while ((dname = readdirname(dir))) {
2219                 if (!strcmp("..", dname))
2220                         continue;
2221                 if (!strcmp(".", dname))
2222                         continue;
2223
2224                 path = talloc_asprintf(ctx, "%s/%s", directory, dname);
2225                 if (path == NULL) {
2226                         continue;
2227                 }
2228
2229                 isdir = false;
2230                 if (!match || !gen_fnmatch(expression, dname)) {
2231                         if (recurse) {
2232                                 ret = stat(path, &statbuf);
2233                                 if (ret == 0) {
2234                                         if (S_ISDIR(statbuf.st_mode)) {
2235                                                 isdir = true;
2236                                                 ret = file_find(ctx,
2237                                                                 list,
2238                                                                 path,
2239                                                                 expression,
2240                                                                 false);
2241                                         }
2242                                 } else {
2243                                         d_printf("file_find: cannot stat file %s\n", path);
2244                                 }
2245
2246                                 if (ret == -1) {
2247                                         TALLOC_FREE(path);
2248                                         closedir(dir);
2249                                         return -1;
2250                                 }
2251                         }
2252                         entry = talloc_zero(ctx, struct file_list);
2253                         if (!entry) {
2254                                 d_printf("Out of memory in file_find\n");
2255                                 closedir(dir);
2256                                 return -1;
2257                         }
2258                         entry->file_path = talloc_move(entry, &path);
2259                         entry->isdir = isdir;
2260                         DLIST_ADD(*list, entry);
2261                 } else {
2262                         TALLOC_FREE(path);
2263                 }
2264         }
2265
2266         closedir(dir);
2267         return 0;
2268 }
2269
2270 /****************************************************************************
2271  mput some files.
2272 ****************************************************************************/
2273
2274 static int cmd_mput(void)
2275 {
2276         TALLOC_CTX *ctx = talloc_tos();
2277         char *p = NULL;
2278
2279         while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2280                 int ret;
2281                 struct file_list *temp_list;
2282                 char *quest, *lname, *rname;
2283
2284                 file_list = NULL;
2285
2286                 ret = file_find(ctx, &file_list, ".", p, true);
2287                 if (ret) {
2288                         free_file_list(file_list);
2289                         continue;
2290                 }
2291
2292                 quest = NULL;
2293                 lname = NULL;
2294                 rname = NULL;
2295
2296                 for (temp_list = file_list; temp_list;
2297                      temp_list = temp_list->next) {
2298
2299                         SAFE_FREE(lname);
2300                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2301                                 continue;
2302                         }
2303                         trim_string(lname, "./", "/");
2304
2305                         /* check if it's a directory */
2306                         if (temp_list->isdir) {
2307                                 /* if (!recurse) continue; */
2308
2309                                 SAFE_FREE(quest);
2310                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2311                                         break;
2312                                 }
2313                                 if (prompt && !yesno(quest)) { /* No */
2314                                         /* Skip the directory */
2315                                         lname[strlen(lname)-1] = '/';
2316                                         if (!seek_list(temp_list, lname))
2317                                                 break;
2318                                 } else { /* Yes */
2319                                         SAFE_FREE(rname);
2320                                         if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2321                                                 break;
2322                                         }
2323                                         normalize_name(rname);
2324                                         {
2325                                                 char *tmp_rname =
2326                                                         client_clean_name(ctx, rname);
2327                                                 if (tmp_rname == NULL) {
2328                                                         break;
2329                                                 }
2330                                                 SAFE_FREE(rname);
2331                                                 rname = smb_xstrdup(tmp_rname);
2332                                                 TALLOC_FREE(tmp_rname);
2333                                                 if (rname == NULL) {
2334                                                         break;
2335                                                 }
2336                                         }
2337                                         if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2338                                             !do_mkdir(rname)) {
2339                                                 DEBUG (0, ("Unable to make dir, skipping..."));
2340                                                 /* Skip the directory */
2341                                                 lname[strlen(lname)-1] = '/';
2342                                                 if (!seek_list(temp_list, lname)) {
2343                                                         break;
2344                                                 }
2345                                         }
2346                                 }
2347                                 continue;
2348                         } else {
2349                                 SAFE_FREE(quest);
2350                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2351                                         break;
2352                                 }
2353                                 if (prompt && !yesno(quest)) {
2354                                         /* No */
2355                                         continue;
2356                                 }
2357
2358                                 /* Yes */
2359                                 SAFE_FREE(rname);
2360                                 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2361                                         break;
2362                                 }
2363                         }
2364
2365                         normalize_name(rname);
2366
2367                         {
2368                                 char *tmp_rname = client_clean_name(ctx, rname);
2369                                 if (tmp_rname == NULL) {
2370                                         break;
2371                                 }
2372                                 SAFE_FREE(rname);
2373                                 rname = smb_xstrdup(tmp_rname);
2374                                 TALLOC_FREE(tmp_rname);
2375                                 if (rname == NULL) {
2376                                         break;
2377                                 }
2378                         }
2379                         do_put(rname, lname, false);
2380                 }
2381                 free_file_list(file_list);
2382                 SAFE_FREE(quest);
2383                 SAFE_FREE(lname);
2384                 SAFE_FREE(rname);
2385         }
2386
2387         return 0;
2388 }
2389
2390 /****************************************************************************
2391  Cancel a print job.
2392 ****************************************************************************/
2393
2394 static int do_cancel(int job)
2395 {
2396         if (cli_printjob_del(cli, job)) {
2397                 d_printf("Job %d cancelled\n",job);
2398                 return 0;
2399         } else {
2400                 NTSTATUS status = cli_nt_error(cli);
2401                 d_printf("Error cancelling job %d : %s\n",
2402                          job, nt_errstr(status));
2403                 return 1;
2404         }
2405 }
2406
2407 /****************************************************************************
2408  Cancel a print job.
2409 ****************************************************************************/
2410
2411 static int cmd_cancel(void)
2412 {
2413         TALLOC_CTX *ctx = talloc_tos();
2414         char *buf = NULL;
2415         int job;
2416
2417         if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2418                 d_printf("cancel <jobid> ...\n");
2419                 return 1;
2420         }
2421         do {
2422                 job = atoi(buf);
2423                 do_cancel(job);
2424         } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2425
2426         return 0;
2427 }
2428
2429 /****************************************************************************
2430  Print a file.
2431 ****************************************************************************/
2432
2433 static int cmd_print(void)
2434 {
2435         TALLOC_CTX *ctx = talloc_tos();
2436         char *lname = NULL;
2437         char *rname = NULL;
2438         char *p = NULL;
2439
2440         if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2441                 d_printf("print <filename>\n");
2442                 return 1;
2443         }
2444
2445         rname = talloc_strdup(ctx, lname);
2446         if (!rname) {
2447                 return 1;
2448         }
2449         p = strrchr_m(rname,'/');
2450         if (p) {
2451                 rname = talloc_asprintf(ctx,
2452                                         "%s-%d",
2453                                         p+1,
2454                                         (int)getpid());
2455         }
2456         if (strequal(lname,"-")) {
2457                 rname = talloc_asprintf(ctx,
2458                                 "stdin-%d",
2459                                 (int)getpid());
2460         }
2461         if (!rname) {
2462                 return 1;
2463         }
2464
2465         return do_put(rname, lname, false);
2466 }
2467
2468 /****************************************************************************
2469  Show a print queue entry.
2470 ****************************************************************************/
2471
2472 static void queue_fn(struct print_job_info *p)
2473 {
2474         d_printf("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name);
2475 }
2476
2477 /****************************************************************************
2478  Show a print queue.
2479 ****************************************************************************/
2480
2481 static int cmd_queue(void)
2482 {
2483         cli_print_queue(cli, queue_fn);
2484         return 0;
2485 }
2486
2487 /****************************************************************************
2488  Delete some files.
2489 ****************************************************************************/
2490
2491 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2492                    const char *dir)
2493 {
2494         TALLOC_CTX *ctx = talloc_tos();
2495         char *mask = NULL;
2496         NTSTATUS status;
2497
2498         mask = talloc_asprintf(ctx,
2499                                 "%s%c%s",
2500                                 dir,
2501                                 CLI_DIRSEP_CHAR,
2502                                 finfo->name);
2503         if (!mask) {
2504                 return NT_STATUS_NO_MEMORY;
2505         }
2506
2507         if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2508                 TALLOC_FREE(mask);
2509                 return NT_STATUS_OK;
2510         }
2511
2512         status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2513         if (!NT_STATUS_IS_OK(status)) {
2514                 d_printf("%s deleting remote file %s\n",
2515                          nt_errstr(status), mask);
2516         }
2517         TALLOC_FREE(mask);
2518         return status;
2519 }
2520
2521 /****************************************************************************
2522  Delete some files.
2523 ****************************************************************************/
2524
2525 static int cmd_del(void)
2526 {
2527         TALLOC_CTX *ctx = talloc_tos();
2528         char *mask = NULL;
2529         char *buf = NULL;
2530         NTSTATUS status = NT_STATUS_OK;
2531         uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2532
2533         if (recurse) {
2534                 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2535         }
2536
2537         mask = talloc_strdup(ctx, client_get_cur_dir());
2538         if (!mask) {
2539                 return 1;
2540         }
2541         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2542                 d_printf("del <filename>\n");
2543                 return 1;
2544         }
2545         mask = talloc_asprintf_append(mask, "%s", buf);
2546         if (!mask) {
2547                 return 1;
2548         }
2549         mask = client_clean_name(ctx, mask);
2550         if (mask == NULL) {
2551                 return 1;
2552         }
2553
2554         status = do_list(mask,attribute,do_del,false,false);
2555         if (!NT_STATUS_IS_OK(status)) {
2556                 return 1;
2557         }
2558         return 0;
2559 }
2560
2561 /****************************************************************************
2562  Delete some files.
2563 ****************************************************************************/
2564
2565 static NTSTATUS delete_remote_files_list(struct cli_state *cli_state,
2566                                          struct file_list *flist)
2567 {
2568         NTSTATUS status = NT_STATUS_OK;
2569         struct file_list *deltree_list_iter = NULL;
2570
2571         for (deltree_list_iter = flist;
2572                         deltree_list_iter != NULL;
2573                         deltree_list_iter = deltree_list_iter->next) {
2574                 if (CLI_DIRSEP_CHAR == '/') {
2575                         /* POSIX. */
2576                         status = cli_posix_unlink(cli_state,
2577                                         deltree_list_iter->file_path);
2578                 } else if (deltree_list_iter->isdir) {
2579                         status = cli_rmdir(cli_state,
2580                                         deltree_list_iter->file_path);
2581                 } else {
2582                         status = cli_unlink(cli_state,
2583                                         deltree_list_iter->file_path,
2584                                         FILE_ATTRIBUTE_SYSTEM |
2585                                         FILE_ATTRIBUTE_HIDDEN);
2586                 }
2587                 if (!NT_STATUS_IS_OK(status)) {
2588                         d_printf("%s deleting remote %s %s\n",
2589                                 nt_errstr(status),
2590                                 deltree_list_iter->isdir ?
2591                                 "directory" : "file",
2592                                 deltree_list_iter->file_path);
2593                         return status;
2594                 }
2595         }
2596         return NT_STATUS_OK;
2597 }
2598
2599 /****************************************************************************
2600  Save a list of files to delete.
2601 ****************************************************************************/
2602
2603 static struct file_list *deltree_list_head;
2604
2605 static NTSTATUS do_deltree_list(struct cli_state *cli_state,
2606                                 struct file_info *finfo,
2607                                 const char *dir)
2608 {
2609         struct file_list **file_list_head_pp = &deltree_list_head;
2610         struct file_list *dt = NULL;
2611
2612         if (!do_this_one(finfo)) {
2613                 return NT_STATUS_OK;
2614         }
2615
2616         /* skip if this is . or .. */
2617         if (ISDOT(finfo->name) || ISDOTDOT(finfo->name)) {
2618                 return NT_STATUS_OK;
2619         }
2620
2621         dt = talloc_zero(NULL, struct file_list);
2622         if (dt == NULL) {
2623                 return NT_STATUS_NO_MEMORY;
2624         }
2625
2626         /* create absolute filename for cli_ntcreate() */
2627         dt->file_path = talloc_asprintf(dt,
2628                                         "%s%s%s",
2629                                         dir,
2630                                         CLI_DIRSEP_STR,
2631                                         finfo->name);
2632         if (dt->file_path == NULL) {
2633                 TALLOC_FREE(dt);
2634                 return NT_STATUS_NO_MEMORY;
2635         }
2636
2637         if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2638                 dt->isdir = true;
2639         }
2640
2641         DLIST_ADD(*file_list_head_pp, dt);
2642         return NT_STATUS_OK;
2643 }
2644
2645 static int cmd_deltree(void)
2646 {
2647         TALLOC_CTX *ctx = talloc_tos();
2648         char *buf = NULL;
2649         NTSTATUS status = NT_STATUS_OK;
2650         struct file_list *deltree_list_norecurse = NULL;
2651         struct file_list *deltree_list_iter = NULL;
2652         uint16_t attribute = FILE_ATTRIBUTE_SYSTEM |
2653                              FILE_ATTRIBUTE_HIDDEN |
2654                              FILE_ATTRIBUTE_DIRECTORY;
2655         bool ok;
2656         char *mask = talloc_strdup(ctx, client_get_cur_dir());
2657         if (mask == NULL) {
2658                 return 1;
2659         }
2660         ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
2661         if (!ok) {
2662                 d_printf("deltree <filename>\n");
2663                 return 1;
2664         }
2665         mask = talloc_asprintf_append(mask, "%s", buf);
2666         if (mask == NULL) {
2667                 return 1;
2668         }
2669         mask = client_clean_name(ctx, mask);
2670         if (mask == NULL) {
2671                 return 1;
2672         }
2673
2674         deltree_list_head = NULL;
2675
2676         /*
2677          * Get the list of directories to
2678          * delete (in case mask has a wildcard).
2679          */
2680         status = do_list(mask, attribute, do_deltree_list, false, true);
2681         if (!NT_STATUS_IS_OK(status)) {
2682                 goto err;
2683         }
2684         deltree_list_norecurse = deltree_list_head;
2685         deltree_list_head = NULL;
2686
2687         for (deltree_list_iter = deltree_list_norecurse;
2688              deltree_list_iter != NULL;
2689              deltree_list_iter = deltree_list_iter->next) {
2690
2691                 if (deltree_list_iter->isdir == false) {
2692                         /* Just a regular file. */
2693                         if (CLI_DIRSEP_CHAR == '/') {
2694                                 /* POSIX. */
2695                                 status = cli_posix_unlink(cli,
2696                                         deltree_list_iter->file_path);
2697                         } else {
2698                                 status = cli_unlink(cli,
2699                                         deltree_list_iter->file_path,
2700                                         FILE_ATTRIBUTE_SYSTEM |
2701                                         FILE_ATTRIBUTE_HIDDEN);
2702                         }
2703                         if (!NT_STATUS_IS_OK(status)) {
2704                                 goto err;
2705                         }
2706                         continue;
2707                 }
2708
2709                 /*
2710                  * Get the list of files or directories to
2711                  * delete in depth order.
2712                  */
2713                 status = do_list(deltree_list_iter->file_path,
2714                                  attribute,
2715                                  do_deltree_list,
2716                                  true,
2717                                  true);
2718                 if (!NT_STATUS_IS_OK(status)) {
2719                         goto err;
2720                 }
2721                 status = delete_remote_files_list(cli, deltree_list_head);
2722                 free_file_list(deltree_list_head);
2723                 deltree_list_head = NULL;
2724                 if (!NT_STATUS_IS_OK(status)) {
2725                         goto err;
2726                 }
2727         }
2728
2729         free_file_list(deltree_list_norecurse);
2730         free_file_list(deltree_list_head);
2731         return 0;
2732
2733   err:
2734
2735         free_file_list(deltree_list_norecurse);
2736         free_file_list(deltree_list_head);
2737         deltree_list_head = NULL;
2738         return 1;
2739 }
2740
2741
2742 /****************************************************************************
2743  Wildcard delete some files.
2744 ****************************************************************************/
2745
2746 static int cmd_wdel(void)
2747 {
2748         TALLOC_CTX *ctx = talloc_tos();
2749         char *mask = NULL;
2750         char *buf = NULL;
2751         uint16_t attribute;
2752         struct cli_state *targetcli;
2753         char *targetname = NULL;
2754         NTSTATUS status;
2755
2756         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2757                 d_printf("wdel 0x<attrib> <wcard>\n");
2758                 return 1;
2759         }
2760
2761         attribute = (uint16_t)strtol(buf, (char **)NULL, 16);
2762
2763         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2764                 d_printf("wdel 0x<attrib> <wcard>\n");
2765                 return 1;
2766         }
2767
2768         mask = talloc_asprintf(ctx, "%s%s",
2769                         client_get_cur_dir(),
2770                         buf);
2771         if (!mask) {
2772                 return 1;
2773         }
2774         mask = client_clean_name(ctx, mask);
2775         if (mask == NULL) {
2776                 return 1;
2777         }
2778
2779         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2780                                 cli, mask, &targetcli, &targetname);
2781         if (!NT_STATUS_IS_OK(status)) {
2782                 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2783                 return 1;
2784         }
2785
2786         status = cli_unlink(targetcli, targetname, attribute);
2787         if (!NT_STATUS_IS_OK(status)) {
2788                 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2789                          targetname);
2790         }
2791         return 0;
2792 }
2793
2794 /****************************************************************************
2795 ****************************************************************************/
2796
2797 static int cmd_open(void)
2798 {
2799         TALLOC_CTX *ctx = talloc_tos();
2800         char *mask = NULL;
2801         char *buf = NULL;
2802         char *targetname = NULL;
2803         struct cli_state *targetcli;
2804         uint16_t fnum = (uint16_t)-1;
2805         NTSTATUS status;
2806
2807         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2808                 d_printf("open <filename>\n");
2809                 return 1;
2810         }
2811         mask = talloc_asprintf(ctx,
2812                         "%s%s",
2813                         client_get_cur_dir(),
2814                         buf);
2815         if (!mask) {
2816                 return 1;
2817         }
2818
2819         mask = client_clean_name(ctx, mask);
2820         if (mask == NULL) {
2821                 return 1;
2822         }
2823
2824         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2825                         cli, mask, &targetcli, &targetname);
2826         if (!NT_STATUS_IS_OK(status)) {
2827                 d_printf("open %s: %s\n", mask, nt_errstr(status));
2828                 return 1;
2829         }
2830
2831         status = cli_ntcreate(targetcli, targetname, 0,
2832                         FILE_READ_DATA|FILE_WRITE_DATA, 0,
2833                         FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2834                         0x0, 0x0, &fnum, NULL);
2835         if (!NT_STATUS_IS_OK(status)) {
2836                 status = cli_ntcreate(targetcli, targetname, 0,
2837                                 FILE_READ_DATA, 0,
2838                                 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2839                                 0x0, 0x0, &fnum, NULL);
2840                 if (NT_STATUS_IS_OK(status)) {
2841                         d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2842                 } else {
2843                         d_printf("Failed to open file %s. %s\n",
2844                                  targetname, nt_errstr(status));
2845                 }
2846         } else {
2847                 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2848         }
2849         return 0;
2850 }
2851
2852 static int cmd_posix_encrypt(void)
2853 {
2854         TALLOC_CTX *ctx = talloc_tos();
2855         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2856         char *domain = NULL;
2857         char *user = NULL;
2858         char *password = NULL;
2859         struct cli_credentials *creds = NULL;
2860         struct cli_credentials *lcreds = NULL;
2861
2862         if (next_token_talloc(ctx, &cmd_ptr, &domain, NULL)) {
2863
2864                 if (!next_token_talloc(ctx, &cmd_ptr, &user, NULL)) {
2865                         d_printf("posix_encrypt domain user password\n");
2866                         return 1;
2867                 }
2868
2869                 if (!next_token_talloc(ctx, &cmd_ptr, &password, NULL)) {
2870                         d_printf("posix_encrypt domain user password\n");
2871                         return 1;
2872                 }
2873
2874                 lcreds = cli_session_creds_init(ctx,
2875                                                 user,
2876                                                 domain,
2877                                                 NULL, /* realm */
2878                                                 password,
2879                                                 false, /* use_kerberos */
2880                                                 false, /* fallback_after_kerberos */
2881                                                 false, /* use_ccache */
2882                                                 false); /* password_is_nt_hash */
2883                 if (lcreds == NULL) {
2884                         d_printf("cli_session_creds_init() failed.\n");
2885                         return -1;
2886                 }
2887                 creds = lcreds;
2888         } else {
2889                 bool auth_requested = false;
2890
2891                 creds = get_cmdline_auth_info_creds(
2892                                 popt_get_cmdline_auth_info());
2893
2894                 auth_requested = cli_credentials_authentication_requested(creds);
2895                 if (!auth_requested) {
2896                         d_printf("posix_encrypt domain user password\n");
2897                         return 1;
2898                 }
2899         }
2900
2901         status = cli_smb1_setup_encryption(cli, creds);
2902         /* gensec currently references the creds so we can't free them here */
2903         talloc_unlink(ctx, lcreds);
2904         if (!NT_STATUS_IS_OK(status)) {
2905                 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2906         } else {
2907                 d_printf("encryption on\n");
2908                 smb_encrypt = true;
2909         }
2910
2911         return 0;
2912 }
2913
2914 /****************************************************************************
2915 ****************************************************************************/
2916
2917 static int cmd_posix_open(void)
2918 {
2919         TALLOC_CTX *ctx = talloc_tos();
2920         char *mask = NULL;
2921         char *buf = NULL;
2922         char *targetname = NULL;
2923         struct cli_state *targetcli;
2924         mode_t mode;
2925         uint16_t fnum;
2926         NTSTATUS status;
2927
2928         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2929                 d_printf("posix_open <filename> 0<mode>\n");
2930                 return 1;
2931         }
2932         mask = talloc_asprintf(ctx,
2933                         "%s%s",
2934                         client_get_cur_dir(),
2935                         buf);
2936         if (!mask) {
2937                 return 1;
2938         }
2939         mask = client_clean_name(ctx, mask);
2940         if (mask == NULL) {
2941                 return 1;
2942         }
2943
2944         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2945                 d_printf("posix_open <filename> 0<mode>\n");
2946                 return 1;
2947         }
2948         mode = (mode_t)strtol(buf, (char **)NULL, 8);
2949
2950         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2951                                 cli, mask, &targetcli, &targetname);
2952         if (!NT_STATUS_IS_OK(status)) {
2953                 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2954                 return 1;
2955         }
2956
2957         status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2958                                 &fnum);
2959         if (!NT_STATUS_IS_OK(status)) {
2960                 status = cli_posix_open(targetcli, targetname,
2961                                         O_CREAT|O_RDONLY, mode, &fnum);
2962                 if (!NT_STATUS_IS_OK(status)) {
2963                         d_printf("Failed to open file %s. %s\n", targetname,
2964                                  nt_errstr(status));
2965                 } else {
2966                         d_printf("posix_open file %s: for readonly fnum %d\n",
2967                                  targetname, fnum);
2968                 }
2969         } else {
2970                 d_printf("posix_open file %s: for read/write fnum %d\n",
2971                          targetname, fnum);
2972         }
2973
2974         return 0;
2975 }
2976
2977 static int cmd_posix_mkdir(void)
2978 {
2979         TALLOC_CTX *ctx = talloc_tos();
2980         char *mask = NULL;
2981         char *buf = NULL;
2982         char *targetname = NULL;
2983         struct cli_state *targetcli;
2984         mode_t mode;
2985         NTSTATUS status;
2986
2987         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2988                 d_printf("posix_mkdir <filename> 0<mode>\n");
2989                 return 1;
2990         }
2991         mask = talloc_asprintf(ctx,
2992                         "%s%s",
2993                         client_get_cur_dir(),
2994                         buf);
2995         if (!mask) {
2996                 return 1;
2997         }
2998         mask = client_clean_name(ctx, mask);
2999         if (mask == NULL) {
3000                 return 1;
3001         }
3002
3003         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3004                 d_printf("posix_mkdir <filename> 0<mode>\n");
3005                 return 1;
3006         }
3007         mode = (mode_t)strtol(buf, (char **)NULL, 8);
3008
3009         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3010                                 cli, mask, &targetcli, &targetname);
3011         if (!NT_STATUS_IS_OK(status)) {
3012                 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
3013                 return 1;
3014         }
3015
3016         status = cli_posix_mkdir(targetcli, targetname, mode);
3017         if (!NT_STATUS_IS_OK(status)) {
3018                 d_printf("Failed to open file %s. %s\n",
3019                          targetname, nt_errstr(status));
3020         } else {
3021                 d_printf("posix_mkdir created directory %s\n", targetname);
3022         }
3023         return 0;
3024 }
3025
3026 static int cmd_posix_unlink(void)
3027 {
3028         TALLOC_CTX *ctx = talloc_tos();
3029         char *mask = NULL;
3030         char *buf = NULL;
3031         char *targetname = NULL;
3032         struct cli_state *targetcli;
3033         NTSTATUS status;
3034
3035         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3036                 d_printf("posix_unlink <filename>\n");
3037                 return 1;
3038         }
3039         mask = talloc_asprintf(ctx,
3040                         "%s%s",
3041                         client_get_cur_dir(),
3042                         buf);
3043         if (!mask) {
3044                 return 1;
3045         }
3046         mask = client_clean_name(ctx, mask);
3047         if (mask == NULL) {
3048                 return 1;
3049         }
3050
3051         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3052                                 cli, mask, &targetcli, &targetname);
3053         if (!NT_STATUS_IS_OK(status)) {
3054                 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
3055                 return 1;
3056         }
3057
3058         status = cli_posix_unlink(targetcli, targetname);
3059         if (!NT_STATUS_IS_OK(status)) {
3060                 d_printf("Failed to unlink file %s. %s\n",
3061                          targetname, nt_errstr(status));
3062         } else {
3063                 d_printf("posix_unlink deleted file %s\n", targetname);
3064         }
3065
3066         return 0;
3067 }
3068
3069 static int cmd_posix_rmdir(void)
3070 {
3071         TALLOC_CTX *ctx = talloc_tos();
3072         char *mask = NULL;
3073         char *buf = NULL;
3074         char *targetname = NULL;
3075         struct cli_state *targetcli;
3076         NTSTATUS status;
3077
3078         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3079                 d_printf("posix_rmdir <filename>\n");
3080                 return 1;
3081         }
3082         mask = talloc_asprintf(ctx,
3083                         "%s%s",
3084                         client_get_cur_dir(),
3085                         buf);
3086         if (!mask) {
3087                 return 1;
3088         }
3089         mask = client_clean_name(ctx, mask);
3090         if (mask == NULL) {
3091                 return 1;
3092         }
3093
3094         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3095                         cli, mask, &targetcli, &targetname);
3096         if (!NT_STATUS_IS_OK(status)) {
3097                 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
3098                 return 1;
3099         }
3100
3101         status = cli_posix_rmdir(targetcli, targetname);
3102         if (!NT_STATUS_IS_OK(status)) {
3103                 d_printf("Failed to unlink directory %s. %s\n",
3104                          targetname, nt_errstr(status));
3105         } else {
3106                 d_printf("posix_rmdir deleted directory %s\n", targetname);
3107         }
3108
3109         return 0;
3110 }
3111
3112 static int cmd_close(void)
3113 {
3114         TALLOC_CTX *ctx = talloc_tos();
3115         char *buf = NULL;
3116         int fnum;
3117         NTSTATUS status;
3118
3119         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3120                 d_printf("close <fnum>\n");
3121                 return 1;
3122         }
3123
3124         fnum = atoi(buf);
3125         /* We really should use the targetcli here.... */
3126         status = cli_close(cli, fnum);
3127         if (!NT_STATUS_IS_OK(status)) {
3128                 d_printf("close %d: %s\n", fnum, nt_errstr(status));
3129                 return 1;
3130         }
3131         return 0;
3132 }
3133
3134 static int cmd_posix(void)
3135 {
3136         TALLOC_CTX *ctx = talloc_tos();
3137         uint16_t major, minor;
3138         uint32_t caplow, caphigh;
3139         char *caps;
3140         NTSTATUS status;
3141
3142         if (!SERVER_HAS_UNIX_CIFS(cli)) {
3143                 d_printf("Server doesn't support UNIX CIFS extensions.\n");
3144                 return 1;
3145         }
3146
3147         status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
3148                                              &caphigh);
3149         if (!NT_STATUS_IS_OK(status)) {
3150                 d_printf("Can't get UNIX CIFS extensions version from "
3151                          "server: %s\n", nt_errstr(status));
3152                 return 1;
3153         }
3154
3155         d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
3156
3157         caps = talloc_strdup(ctx, "");
3158         if (!caps) {
3159                 return 1;
3160         }
3161         if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
3162                 caps = talloc_asprintf_append(caps, "locks ");
3163                 if (!caps) {
3164                         return 1;
3165                 }
3166         }
3167         if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
3168                 caps = talloc_asprintf_append(caps, "acls ");
3169                 if (!caps) {
3170                         return 1;
3171                 }
3172         }
3173         if (caplow & CIFS_UNIX_XATTTR_CAP) {
3174                 caps = talloc_asprintf_append(caps, "eas ");
3175                 if (!caps) {
3176                         return 1;
3177                 }
3178         }
3179         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
3180                 caps = talloc_asprintf_append(caps, "pathnames ");
3181                 if (!caps) {
3182                         return 1;
3183                 }
3184         }
3185         if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
3186                 caps = talloc_asprintf_append(caps, "posix_path_operations ");
3187                 if (!caps) {
3188                         return 1;
3189                 }
3190         }
3191         if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
3192                 caps = talloc_asprintf_append(caps, "large_read ");
3193                 if (!caps) {
3194                         return 1;
3195                 }
3196         }
3197         if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
3198                 caps = talloc_asprintf_append(caps, "large_write ");
3199                 if (!caps) {
3200                         return 1;
3201                 }
3202         }
3203         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
3204                 caps = talloc_asprintf_append(caps, "posix_encrypt ");
3205                 if (!caps) {
3206                         return 1;
3207                 }
3208         }
3209         if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
3210                 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
3211                 if (!caps) {
3212                         return 1;
3213                 }
3214         }
3215
3216         if (*caps && caps[strlen(caps)-1] == ' ') {
3217                 caps[strlen(caps)-1] = '\0';
3218         }
3219
3220         d_printf("Server supports CIFS capabilities %s\n", caps);
3221
3222         status = cli_set_unix_extensions_capabilities(cli, major, minor,
3223                                                       caplow, caphigh);
3224         if (!NT_STATUS_IS_OK(status)) {
3225                 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
3226                          nt_errstr(status));
3227                 return 1;
3228         }
3229
3230         if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
3231                 CLI_DIRSEP_CHAR = '/';
3232                 *CLI_DIRSEP_STR = '/';
3233                 client_set_cur_dir(CLI_DIRSEP_STR);
3234         }
3235
3236         return 0;
3237 }
3238
3239 static int cmd_lock(void)
3240 {
3241         TALLOC_CTX *ctx = talloc_tos();
3242         char *buf = NULL;
3243         uint64_t start, len;
3244         enum brl_type lock_type;
3245         int fnum;
3246         NTSTATUS status;
3247
3248         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3249                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
3250                 return 1;
3251         }
3252         fnum = atoi(buf);
3253
3254         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3255                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
3256                 return 1;
3257         }
3258
3259         if (*buf == 'r' || *buf == 'R') {
3260                 lock_type = READ_LOCK;
3261         } else if (*buf == 'w' || *buf == 'W') {
3262                 lock_type = WRITE_LOCK;
3263         } else {
3264                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
3265                 return 1;
3266         }
3267
3268         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3269                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
3270                 return 1;
3271         }
3272
3273         start = (uint64_t)strtol(buf, (char **)NULL, 16);
3274
3275         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3276                 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
3277                 return 1;
3278         }
3279
3280         len = (uint64_t)strtol(buf, (char **)NULL, 16);
3281
3282         status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
3283         if (!NT_STATUS_IS_OK(status)) {
3284                 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
3285         }
3286
3287         return 0;
3288 }
3289
3290 static int cmd_unlock(void)
3291 {
3292         TALLOC_CTX *ctx = talloc_tos();
3293         char *buf = NULL;
3294         uint64_t start, len;
3295         int fnum;
3296         NTSTATUS status;
3297
3298         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3299                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
3300                 return 1;
3301         }
3302         fnum = atoi(buf);
3303
3304         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3305                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
3306                 return 1;
3307         }
3308
3309         start = (uint64_t)strtol(buf, (char **)NULL, 16);
3310
3311         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3312                 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
3313                 return 1;
3314         }
3315
3316         len = (uint64_t)strtol(buf, (char **)NULL, 16);
3317
3318         status = cli_posix_unlock(cli, fnum, start, len);
3319         if (!NT_STATUS_IS_OK(status)) {
3320                 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
3321         }
3322
3323         return 0;
3324 }
3325
3326 static int cmd_posix_whoami(void)
3327 {
3328         TALLOC_CTX *ctx = talloc_tos();
3329         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
3330         uint64_t uid = 0;
3331         uint64_t gid = 0;
3332         uint32_t num_gids = 0;
3333         uint32_t num_sids = 0;
3334         uint64_t *gids = NULL;
3335         struct dom_sid *sids = NULL;
3336         bool guest = false;
3337         uint32_t i;
3338
3339         status = cli_posix_whoami(cli,
3340                         ctx,
3341                         &uid,
3342                         &gid,
3343                         &num_gids,
3344                         &gids,
3345                         &num_sids,
3346                         &sids,
3347                         &guest);
3348
3349         if (!NT_STATUS_IS_OK(status)) {
3350                 d_printf("posix_whoami failed with error %s\n", nt_errstr(status));
3351                 return 1;
3352         }
3353
3354         d_printf("GUEST:%s\n", guest ? "True" : "False");
3355         d_printf("UID:%" PRIu64 "\n", uid);
3356         d_printf("GID:%" PRIu64 "\n", gid);
3357         d_printf("NUM_GIDS:%" PRIu32 "\n", num_gids);
3358         for (i = 0; i < num_gids; i++) {
3359                 d_printf("GIDS[%" PRIu32 "]:%" PRIu64 "\n", i, gids[i]);
3360         }
3361         d_printf("NUM_SIDS:%" PRIu32 "\n", num_sids);
3362         for (i = 0; i < num_sids; i++) {
3363                 struct dom_sid_buf buf;
3364                 d_printf("SIDS[%" PRIu32 "]:%s\n",
3365                          i,
3366                          dom_sid_str_buf(&sids[i], &buf));
3367         }
3368         return 0;
3369 }
3370
3371
3372 /****************************************************************************
3373  Remove a directory.
3374 ****************************************************************************/
3375
3376 static int cmd_rmdir(void)
3377 {
3378         TALLOC_CTX *ctx = talloc_tos();
3379         char *mask = NULL;
3380         char *buf = NULL;
3381         char *targetname = NULL;
3382         struct cli_state *targetcli;
3383         NTSTATUS status;
3384
3385         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3386                 d_printf("rmdir <dirname>\n");
3387                 return 1;
3388         }
3389         mask = talloc_asprintf(ctx,
3390                         "%s%s",
3391                         client_get_cur_dir(),
3392                         buf);
3393         if (!mask) {
3394                 return 1;
3395         }
3396         mask = client_clean_name(ctx, mask);
3397         if (mask == NULL) {
3398                 return 1;
3399         }
3400
3401         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3402                         cli, mask, &targetcli, &targetname);
3403         if (!NT_STATUS_IS_OK(status)) {
3404                 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
3405                 return 1;
3406         }
3407
3408         status = cli_rmdir(targetcli, targetname);
3409         if (!NT_STATUS_IS_OK(status)) {
3410                 d_printf("%s removing remote directory file %s\n",
3411                          nt_errstr(status), mask);
3412         }
3413
3414         return 0;
3415 }
3416
3417 /****************************************************************************
3418  UNIX hardlink.
3419 ****************************************************************************/
3420
3421 static int cmd_link(void)
3422 {
3423         TALLOC_CTX *ctx = talloc_tos();
3424         char *oldname = NULL;
3425         char *newname = NULL;
3426         char *buf = NULL;
3427         char *buf2 = NULL;
3428         char *targetname = NULL;
3429         struct cli_state *targetcli;
3430         NTSTATUS status;
3431
3432         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3433             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3434                 d_printf("link <oldname> <newname>\n");
3435                 return 1;
3436         }
3437         oldname = talloc_asprintf(ctx,
3438                         "%s%s",
3439                         client_get_cur_dir(),
3440                         buf);
3441         if (!oldname) {
3442                 return 1;
3443         }
3444         oldname = client_clean_name(ctx, oldname);
3445         if (oldname == NULL) {
3446                 return 1;
3447         }
3448         newname = talloc_asprintf(ctx,
3449                         "%s%s",
3450                         client_get_cur_dir(),
3451                         buf2);
3452         if (!newname) {
3453                 return 1;
3454         }
3455         newname = client_clean_name(ctx, newname);
3456         if (newname == NULL) {
3457                 return 1;
3458         }
3459
3460         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3461                         cli, oldname, &targetcli, &targetname);
3462         if (!NT_STATUS_IS_OK(status)) {
3463                 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3464                 return 1;
3465         }
3466
3467         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3468                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3469                 return 1;
3470         }
3471
3472         status = cli_posix_hardlink(targetcli, targetname, newname);
3473         if (!NT_STATUS_IS_OK(status)) {
3474                 d_printf("%s linking files (%s -> %s)\n",
3475                          nt_errstr(status), newname, oldname);
3476                 return 1;
3477         }
3478         return 0;
3479 }
3480
3481 /****************************************************************************
3482  UNIX readlink.
3483 ****************************************************************************/
3484
3485 static int cmd_readlink(void)
3486 {
3487         TALLOC_CTX *ctx = talloc_tos();
3488         char *name= NULL;
3489         char *buf = NULL;
3490         char *targetname = NULL;
3491         char *linkname = NULL;
3492         struct cli_state *targetcli;
3493         NTSTATUS status;
3494
3495         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3496                 d_printf("readlink <name>\n");
3497                 return 1;
3498         }
3499         name = talloc_asprintf(ctx,
3500                         "%s%s",
3501                         client_get_cur_dir(),
3502                         buf);
3503         if (!name) {
3504                 return 1;
3505         }
3506         name = client_clean_name(ctx, name);
3507         if (name == NULL) {
3508                 return 1;
3509         }
3510
3511         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3512                         cli, name, &targetcli, &targetname);
3513         if (!NT_STATUS_IS_OK(status)) {
3514                 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3515                 return 1;
3516         }
3517
3518         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3519                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3520                 return 1;
3521         }
3522
3523         status = cli_posix_readlink(targetcli, name, talloc_tos(), &linkname);
3524         if (!NT_STATUS_IS_OK(status)) {
3525                 d_printf("%s readlink on file %s\n",
3526                          nt_errstr(status), name);
3527                 return 1;
3528         }
3529
3530         d_printf("%s -> %s\n", name, linkname);
3531
3532         TALLOC_FREE(linkname);
3533
3534         return 0;
3535 }
3536
3537
3538 /****************************************************************************
3539  UNIX symlink.
3540 ****************************************************************************/
3541
3542 static int cmd_symlink(void)
3543 {
3544         TALLOC_CTX *ctx = talloc_tos();
3545         char *link_target = NULL;
3546         char *newname = NULL;
3547         char *buf = NULL;
3548         char *buf2 = NULL;
3549         struct cli_state *newcli;
3550         NTSTATUS status;
3551
3552         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3553             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3554                 d_printf("symlink <link_target> <newname>\n");
3555                 return 1;
3556         }
3557         /* Oldname (link target) must be an untouched blob. */
3558         link_target = buf;
3559
3560         if (SERVER_HAS_UNIX_CIFS(cli)) {
3561                 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3562                                           buf2);
3563                 if (!newname) {
3564                         return 1;
3565                 }
3566                 newname = client_clean_name(ctx, newname);
3567                 if (newname == NULL) {
3568                         return 1;
3569                 }
3570                 /* New name must be present in share namespace. */
3571                 status = cli_resolve_path(ctx, "",
3572                                 popt_get_cmdline_auth_info(), cli, newname,
3573                                 &newcli, &newname);
3574                 if (!NT_STATUS_IS_OK(status)) {
3575                         d_printf("link %s: %s\n", newname,
3576                                 nt_errstr(status));
3577                         return 1;
3578                 }
3579                 status = cli_posix_symlink(newcli, link_target, newname);
3580         } else {
3581                 status = cli_symlink(
3582                         cli, link_target, buf2,
3583                         buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3584         }
3585
3586         if (!NT_STATUS_IS_OK(status)) {
3587                 d_printf("%s symlinking files (%s -> %s)\n",
3588                          nt_errstr(status), newname, link_target);
3589                 return 1;
3590         }
3591
3592         return 0;
3593 }
3594
3595 /****************************************************************************
3596  UNIX chmod.
3597 ****************************************************************************/
3598
3599 static int cmd_chmod(void)
3600 {
3601         TALLOC_CTX *ctx = talloc_tos();
3602         char *src = NULL;
3603         char *buf = NULL;
3604         char *buf2 = NULL;
3605         char *targetname = NULL;
3606         struct cli_state *targetcli;
3607         mode_t mode;
3608         NTSTATUS status;
3609
3610         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3611             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3612                 d_printf("chmod mode file\n");
3613                 return 1;
3614         }
3615         src = talloc_asprintf(ctx,
3616                         "%s%s",
3617                         client_get_cur_dir(),
3618                         buf2);
3619         if (!src) {
3620                 return 1;
3621         }
3622         src = client_clean_name(ctx, src);
3623         if (src == NULL) {
3624                 return 1;
3625         }
3626
3627         mode = (mode_t)strtol(buf, NULL, 8);
3628
3629         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3630                         cli, src, &targetcli, &targetname);
3631         if (!NT_STATUS_IS_OK(status)) {
3632                 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3633                 return 1;
3634         }
3635
3636         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3637                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3638                 return 1;
3639         }
3640
3641         status = cli_posix_chmod(targetcli, targetname, mode);
3642         if (!NT_STATUS_IS_OK(status)) {
3643                 d_printf("%s chmod file %s 0%o\n",
3644                          nt_errstr(status), src, (unsigned int)mode);
3645                 return 1;
3646         }
3647
3648         return 0;
3649 }
3650
3651 static const char *filetype_to_str(mode_t mode)
3652 {
3653         if (S_ISREG(mode)) {
3654                 return "regular file";
3655         } else if (S_ISDIR(mode)) {
3656                 return "directory";
3657         } else
3658 #ifdef S_ISCHR
3659         if (S_ISCHR(mode)) {
3660                 return "character device";
3661         } else
3662 #endif
3663 #ifdef S_ISBLK
3664         if (S_ISBLK(mode)) {
3665                 return "block device";
3666         } else
3667 #endif
3668 #ifdef S_ISFIFO
3669         if (S_ISFIFO(mode)) {
3670                 return "fifo";
3671         } else
3672 #endif
3673 #ifdef S_ISLNK
3674         if (S_ISLNK(mode)) {
3675                 return "symbolic link";
3676         } else
3677 #endif
3678 #ifdef S_ISSOCK
3679         if (S_ISSOCK(mode)) {
3680                 return "socket";
3681         } else
3682 #endif
3683         return "";
3684 }
3685
3686 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3687 {
3688         if (m & bt) {
3689                 return ret;
3690         } else {
3691                 return '-';
3692         }
3693 }
3694
3695 static char *unix_mode_to_str(char *s, mode_t m)
3696 {
3697         char *p = s;
3698         const char *str = filetype_to_str(m);
3699
3700         switch(str[0]) {
3701                 case 'd':
3702                         *p++ = 'd';
3703                         break;
3704                 case 'c':
3705                         *p++ = 'c';
3706                         break;
3707                 case 'b':
3708                         *p++ = 'b';
3709                         break;
3710                 case 'f':
3711                         *p++ = 'p';
3712                         break;
3713                 case 's':
3714                         *p++ = str[1] == 'y' ? 'l' : 's';
3715                         break;
3716                 case 'r':
3717                 default:
3718                         *p++ = '-';
3719                         break;
3720         }
3721         *p++ = rwx_to_str(m, S_IRUSR, 'r');
3722         *p++ = rwx_to_str(m, S_IWUSR, 'w');
3723         *p++ = rwx_to_str(m, S_IXUSR, 'x');
3724         *p++ = rwx_to_str(m, S_IRGRP, 'r');
3725         *p++ = rwx_to_str(m, S_IWGRP, 'w');
3726         *p++ = rwx_to_str(m, S_IXGRP, 'x');
3727         *p++ = rwx_to_str(m, S_IROTH, 'r');
3728         *p++ = rwx_to_str(m, S_IWOTH, 'w');
3729         *p++ = rwx_to_str(m, S_IXOTH, 'x');
3730         *p++ = '\0';
3731         return s;
3732 }
3733
3734 /****************************************************************************
3735  Utility function for UNIX getfacl.
3736 ****************************************************************************/
3737
3738 static char *perms_to_string(fstring permstr, unsigned char perms)
3739 {
3740         fstrcpy(permstr, "---");
3741         if (perms & SMB_POSIX_ACL_READ) {
3742                 permstr[0] = 'r';
3743         }
3744         if (perms & SMB_POSIX_ACL_WRITE) {
3745                 permstr[1] = 'w';
3746         }
3747         if (perms & SMB_POSIX_ACL_EXECUTE) {
3748                 permstr[2] = 'x';
3749         }
3750         return permstr;
3751 }
3752
3753 /****************************************************************************
3754  UNIX getfacl.
3755 ****************************************************************************/
3756
3757 static int cmd_getfacl(void)
3758 {
3759         TALLOC_CTX *ctx = talloc_tos();
3760         char *src = NULL;
3761         char *name = NULL;
3762         char *targetname = NULL;
3763         struct cli_state *targetcli;
3764         uint16_t major, minor;
3765         uint32_t caplow, caphigh;
3766         char *retbuf = NULL;
3767         size_t rb_size = 0;
3768         SMB_STRUCT_STAT sbuf;
3769         uint16_t num_file_acls = 0;
3770         uint16_t num_dir_acls = 0;
3771         uint16_t i;
3772         NTSTATUS status;
3773
3774         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3775                 d_printf("getfacl filename\n");
3776                 return 1;
3777         }
3778         src = talloc_asprintf(ctx,
3779                         "%s%s",
3780                         client_get_cur_dir(),
3781                         name);
3782         if (!src) {
3783                 return 1;
3784         }
3785         src = client_clean_name(ctx, src);
3786         if (src == NULL) {
3787                 return 1;
3788         }
3789
3790         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3791                         cli, src, &targetcli, &targetname);
3792         if (!NT_STATUS_IS_OK(status)) {
3793                 d_printf("stat %s: %s\n", src, nt_errstr(status));
3794                 return 1;
3795         }
3796
3797         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3798                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3799                 return 1;
3800         }
3801
3802         status = cli_unix_extensions_version(targetcli, &major, &minor,
3803                                              &caplow, &caphigh);
3804         if (!NT_STATUS_IS_OK(status)) {
3805                 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3806                          nt_errstr(status));
3807                 return 1;
3808         }
3809
3810         if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3811                 d_printf("This server supports UNIX extensions "
3812                         "but doesn't support POSIX ACLs.\n");
3813                 return 1;
3814         }
3815
3816         status = cli_posix_stat(targetcli, targetname, &sbuf);
3817         if (!NT_STATUS_IS_OK(status)) {
3818                 d_printf("%s getfacl doing a stat on file %s\n",
3819                          nt_errstr(status), src);
3820                 return 1;
3821         }
3822
3823         status = cli_posix_getacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3824         if (!NT_STATUS_IS_OK(status)) {
3825                 d_printf("%s getfacl file %s\n",
3826                          nt_errstr(status), src);
3827                 return 1;
3828         }
3829
3830         /* ToDo : Print out the ACL values. */
3831         if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3832                 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3833                         src, (unsigned int)CVAL(retbuf,0) );
3834                 return 1;
3835         }
3836
3837         num_file_acls = SVAL(retbuf,2);
3838         num_dir_acls = SVAL(retbuf,4);
3839         if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3840                 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3841                         src,
3842                         (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3843                         (unsigned int)rb_size);
3844                 return 1;
3845         }
3846
3847         d_printf("# file: %s\n", src);
3848         d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3849
3850         if (num_file_acls == 0 && num_dir_acls == 0) {
3851                 d_printf("No acls found.\n");
3852         }
3853
3854         for (i = 0; i < num_file_acls; i++) {
3855                 uint32_t uorg;
3856                 fstring permstring;
3857                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3858                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3859
3860                 switch(tagtype) {
3861                         case SMB_POSIX_ACL_USER_OBJ:
3862                                 d_printf("user::");
3863                                 break;
3864                         case SMB_POSIX_ACL_USER:
3865                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3866                                 d_printf("user:%u:", uorg);
3867                                 break;
3868                         case SMB_POSIX_ACL_GROUP_OBJ:
3869                                 d_printf("group::");
3870                                 break;
3871                         case SMB_POSIX_ACL_GROUP:
3872                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3873                                 d_printf("group:%u:", uorg);
3874                                 break;
3875                         case SMB_POSIX_ACL_MASK:
3876                                 d_printf("mask::");
3877                                 break;
3878                         case SMB_POSIX_ACL_OTHER:
3879                                 d_printf("other::");
3880                                 break;
3881                         default:
3882                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3883                                         src, (unsigned int)tagtype );
3884                                 SAFE_FREE(retbuf);
3885                                 return 1;
3886                 }
3887
3888                 d_printf("%s\n", perms_to_string(permstring, perms));
3889         }
3890
3891         for (i = 0; i < num_dir_acls; i++) {
3892                 uint32_t uorg;
3893                 fstring permstring;
3894                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3895                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3896
3897                 switch(tagtype) {
3898                         case SMB_POSIX_ACL_USER_OBJ:
3899                                 d_printf("default:user::");
3900                                 break;
3901                         case SMB_POSIX_ACL_USER:
3902                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3903                                 d_printf("default:user:%u:", uorg);
3904                                 break;
3905                         case SMB_POSIX_ACL_GROUP_OBJ:
3906                                 d_printf("default:group::");
3907                                 break;
3908                         case SMB_POSIX_ACL_GROUP:
3909                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3910                                 d_printf("default:group:%u:", uorg);
3911                                 break;
3912                         case SMB_POSIX_ACL_MASK:
3913                                 d_printf("default:mask::");
3914                                 break;
3915                         case SMB_POSIX_ACL_OTHER:
3916                                 d_printf("default:other::");
3917                                 break;
3918                         default:
3919                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3920                                         src, (unsigned int)tagtype );
3921                                 SAFE_FREE(retbuf);
3922                                 return 1;
3923                 }
3924
3925                 d_printf("%s\n", perms_to_string(permstring, perms));
3926         }
3927
3928         return 0;
3929 }
3930
3931 /****************************************************************************
3932  Get the EA list of a file
3933 ****************************************************************************/
3934
3935 static int cmd_geteas(void)
3936 {
3937         TALLOC_CTX *ctx = talloc_tos();
3938         char *src = NULL;
3939         char *name = NULL;
3940         char *targetname = NULL;
3941         struct cli_state *targetcli;
3942         NTSTATUS status;
3943         size_t i, num_eas;
3944         struct ea_struct *eas;
3945
3946         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3947                 d_printf("geteas filename\n");
3948                 return 1;
3949         }
3950         src = talloc_asprintf(ctx,
3951                         "%s%s",
3952                         client_get_cur_dir(),
3953                         name);
3954         if (!src) {
3955                 return 1;
3956         }
3957         src = client_clean_name(ctx, src);
3958         if (src == NULL) {
3959                 return 1;
3960         }
3961
3962         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3963                         cli, src, &targetcli, &targetname);
3964         if (!NT_STATUS_IS_OK(status)) {
3965                 d_printf("stat %s: %s\n", src, nt_errstr(status));
3966                 return 1;
3967         }
3968
3969         status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3970                                       &num_eas, &eas);
3971         if (!NT_STATUS_IS_OK(status)) {
3972                 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3973                 return 1;
3974         }
3975
3976         for (i=0; i<num_eas; i++) {
3977                 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3978                 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3979                                stdout);
3980                 d_printf("\n");
3981         }
3982
3983         TALLOC_FREE(eas);
3984
3985         return 0;
3986 }
3987
3988 /****************************************************************************
3989  Set an EA of a file
3990 ****************************************************************************/
3991
3992 static int cmd_setea(void)
3993 {
3994         TALLOC_CTX *ctx = talloc_tos();
3995         char *src = NULL;
3996         char *name = NULL;
3997         char *eaname = NULL;
3998         char *eavalue = NULL;
3999         char *targetname = NULL;
4000         struct cli_state *targetcli;
4001         NTSTATUS status;
4002
4003         if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
4004             || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
4005                 d_printf("setea filename eaname value\n");
4006                 return 1;
4007         }
4008         if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
4009                 eavalue = talloc_strdup(ctx, "");
4010         }
4011         src = talloc_asprintf(ctx,
4012                         "%s%s",
4013                         client_get_cur_dir(),
4014                         name);
4015         if (!src) {
4016                 return 1;
4017         }
4018         src = client_clean_name(ctx, src);
4019         if (src == NULL) {
4020                 return 1;
4021         }
4022
4023         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4024                         cli, src, &targetcli, &targetname);
4025         if (!NT_STATUS_IS_OK(status)) {
4026                 d_printf("stat %s: %s\n", src, nt_errstr(status));
4027                 return 1;
4028         }
4029
4030         status =  cli_set_ea_path(targetcli, targetname, eaname, eavalue,
4031                                   strlen(eavalue));
4032         if (!NT_STATUS_IS_OK(status)) {
4033                 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
4034                 return 1;
4035         }
4036
4037         return 0;
4038 }
4039
4040 /****************************************************************************
4041  UNIX stat.
4042 ****************************************************************************/
4043
4044 static int cmd_stat(void)
4045 {
4046         TALLOC_CTX *ctx = talloc_tos();
4047         char *src = NULL;
4048         char *name = NULL;
4049         char *targetname = NULL;
4050         struct cli_state *targetcli;
4051         fstring mode_str;
4052         SMB_STRUCT_STAT sbuf;
4053         struct tm *lt;
4054         time_t tmp_time;
4055         NTSTATUS status;
4056
4057         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
4058                 d_printf("stat file\n");
4059                 return 1;
4060         }
4061         src = talloc_asprintf(ctx,
4062                         "%s%s",
4063                         client_get_cur_dir(),
4064                         name);
4065         if (!src) {
4066                 return 1;
4067         }
4068         src = client_clean_name(ctx, src);
4069         if (src == NULL) {
4070                 return 1;
4071         }
4072
4073         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4074                         cli, src, &targetcli, &targetname);
4075         if (!NT_STATUS_IS_OK(status)) {
4076                 d_printf("stat %s: %s\n", src, nt_errstr(status));
4077                 return 1;
4078         }
4079
4080         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
4081                 d_printf("Server doesn't support UNIX CIFS calls.\n");
4082                 return 1;
4083         }
4084
4085         status = cli_posix_stat(targetcli, targetname, &sbuf);
4086         if (!NT_STATUS_IS_OK(status)) {
4087                 d_printf("%s stat file %s\n",
4088                          nt_errstr(status), src);
4089                 return 1;
4090         }
4091
4092         /* Print out the stat values. */
4093         d_printf("File: %s\n", src);
4094         d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
4095                 (double)sbuf.st_ex_size,
4096                 (unsigned int)sbuf.st_ex_blocks,
4097                 filetype_to_str(sbuf.st_ex_mode));
4098
4099 #if defined(S_ISCHR) && defined(S_ISBLK)
4100         if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
4101                 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
4102                         (double)sbuf.st_ex_ino,
4103                         (unsigned int)sbuf.st_ex_nlink,
4104                         unix_dev_major(sbuf.st_ex_rdev),
4105                         unix_dev_minor(sbuf.st_ex_rdev));
4106         } else
4107 #endif
4108                 d_printf("Inode: %.0f\tLinks: %u\n",
4109                         (double)sbuf.st_ex_ino,
4110                         (unsigned int)sbuf.st_ex_nlink);
4111
4112         d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
4113                 ((int)sbuf.st_ex_mode & 0777),
4114                 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
4115                 (unsigned int)sbuf.st_ex_uid,
4116                 (unsigned int)sbuf.st_ex_gid);
4117
4118         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
4119         lt = localtime(&tmp_time);
4120         if (lt) {
4121                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
4122         } else {
4123                 fstrcpy(mode_str, "unknown");
4124         }
4125         d_printf("Access: %s\n", mode_str);
4126
4127         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
4128         lt = localtime(&tmp_time);
4129         if (lt) {
4130                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
4131         } else {
4132                 fstrcpy(mode_str, "unknown");
4133         }
4134         d_printf("Modify: %s\n", mode_str);
4135
4136         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
4137         lt = localtime(&tmp_time);
4138         if (lt) {
4139                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
4140         } else {
4141                 fstrcpy(mode_str, "unknown");
4142         }
4143         d_printf("Change: %s\n", mode_str);
4144
4145         return 0;
4146 }
4147
4148
4149 /****************************************************************************
4150  UNIX chown.
4151 ****************************************************************************/
4152
4153 static int cmd_chown(void)
4154 {
4155         TALLOC_CTX *ctx = talloc_tos();
4156         char *src = NULL;
4157         uid_t uid;
4158         gid_t gid;
4159         char *buf, *buf2, *buf3;
4160         struct cli_state *targetcli;
4161         char *targetname = NULL;
4162         NTSTATUS status;
4163
4164         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
4165             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
4166             !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
4167                 d_printf("chown uid gid file\n");
4168                 return 1;
4169         }
4170
4171         uid = (uid_t)atoi(buf);
4172         gid = (gid_t)atoi(buf2);
4173
4174         src = talloc_asprintf(ctx,
4175                         "%s%s",
4176                         client_get_cur_dir(),
4177                         buf3);
4178         if (!src) {
4179                 return 1;
4180         }
4181         src = client_clean_name(ctx, src);
4182         if (src == NULL) {
4183                 return 1;
4184         }
4185         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4186                         cli, src, &targetcli, &targetname);
4187         if (!NT_STATUS_IS_OK(status)) {
4188                 d_printf("chown %s: %s\n", src, nt_errstr(status));
4189                 return 1;
4190         }
4191
4192         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
4193                 d_printf("Server doesn't support UNIX CIFS calls.\n");
4194                 return 1;
4195         }
4196
4197         status = cli_posix_chown(targetcli, targetname, uid, gid);
4198         if (!NT_STATUS_IS_OK(status)) {
4199                 d_printf("%s chown file %s uid=%d, gid=%d\n",
4200                          nt_errstr(status), src, (int)uid, (int)gid);
4201                 return 1;
4202         }
4203
4204         return 0;
4205 }
4206
4207 /****************************************************************************
4208  Rename some file.
4209 ****************************************************************************/
4210
4211 static int cmd_rename(void)
4212 {
4213         TALLOC_CTX *ctx = talloc_tos();
4214         char *src, *dest;
4215         char *buf, *buf2;
4216         struct cli_state *targetcli;
4217         char *targetsrc;
4218         char *targetdest;
4219         NTSTATUS status;
4220         bool replace = false;
4221
4222         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
4223             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
4224                 d_printf("rename <src> <dest> [-f]\n");
4225                 return 1;
4226         }
4227
4228         src = talloc_asprintf(ctx,
4229                         "%s%s",
4230                         client_get_cur_dir(),
4231                         buf);
4232         if (!src) {
4233                 return 1;
4234         }
4235         src = client_clean_name(ctx, src);
4236         if (src == NULL) {
4237                 return 1;
4238         }
4239
4240         dest = talloc_asprintf(ctx,
4241                         "%s%s",
4242                         client_get_cur_dir(),
4243                         buf2);
4244         if (!dest) {
4245                 return 1;
4246         }
4247         dest = client_clean_name(ctx, dest);
4248         if (dest == NULL) {
4249                 return 1;
4250         }
4251
4252         if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL) &&
4253             strcsequal(buf, "-f")) {
4254                 replace = true;
4255         }
4256
4257         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4258                         cli, src, &targetcli, &targetsrc);
4259         if (!NT_STATUS_IS_OK(status)) {
4260                 d_printf("rename %s: %s\n", src, nt_errstr(status));
4261                 return 1;
4262         }
4263
4264         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4265                         cli, dest, &targetcli, &targetdest);
4266         if (!NT_STATUS_IS_OK(status)) {
4267                 d_printf("rename %s: %s\n", dest, nt_errstr(status));
4268                 return 1;
4269         }
4270
4271         status = cli_rename(targetcli, targetsrc, targetdest, replace);
4272         if (!NT_STATUS_IS_OK(status)) {
4273                 d_printf("%s renaming files %s -> %s \n",
4274                         nt_errstr(status),
4275                         targetsrc,
4276                         targetdest);
4277                 return 1;
4278         }
4279
4280         return 0;
4281 }
4282
4283 struct scopy_timing {
4284         struct timespec tp_start;
4285 };
4286
4287 static int scopy_status(off_t written, void *priv)
4288 {
4289         struct timespec tp_end;
4290         unsigned int scopy_total_time_ms;
4291         struct scopy_timing *st = priv;
4292
4293         clock_gettime_mono(&tp_end);
4294         scopy_total_time_ms = nsec_time_diff(&tp_end,&st->tp_start)/1000000;
4295
4296         DEBUG(5,("Copied %jd bytes at an average %3.1f kb/s\n",
4297                  (intmax_t)written, written / (1.024*scopy_total_time_ms)));
4298
4299         return true;
4300 }
4301
4302 /****************************************************************************
4303  Server-Side copy some file.
4304 ****************************************************************************/
4305
4306 static int cmd_scopy(void)
4307 {
4308         TALLOC_CTX *ctx = talloc_tos();
4309         char *src, *dest;
4310         char *buf, *buf2;
4311         struct cli_state *targetcli;
4312         char *targetsrc;
4313         char *targetdest;
4314         uint32_t DesiredAccess, ShareAccess, CreateDisposition, CreateOptions;
4315         struct smb_create_returns cr;
4316         uint16_t destfnum = (uint16_t)-1;
4317         uint16_t srcfnum = (uint16_t)-1;
4318         off_t written = 0;
4319         struct scopy_timing st;
4320         int rc = 0;
4321         NTSTATUS status;
4322
4323         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
4324                         !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
4325                 d_printf("scopy <src> <dest>\n");
4326                 return 1;
4327         }
4328
4329         src = talloc_asprintf(ctx,
4330                         "%s%s",
4331                         client_get_cur_dir(),
4332                         buf);
4333         if (!src) {
4334                 return 1;
4335         }
4336         src = client_clean_name(ctx, src);
4337         if (src == NULL) {
4338                 return 1;
4339         }
4340
4341         dest = talloc_asprintf(ctx,
4342                         "%s%s",
4343                         client_get_cur_dir(),
4344                         buf2);
4345         if (!dest) {
4346                 return 1;
4347         }
4348         dest = client_clean_name(ctx, dest);
4349         if (dest == NULL) {
4350                 return 1;
4351         }
4352
4353         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4354                         cli, src, &targetcli, &targetsrc);
4355         if (!NT_STATUS_IS_OK(status)) {
4356                 d_printf("scopy %s: %s\n", src, nt_errstr(status));
4357                 return 1;
4358         }
4359
4360         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4361                         cli, dest, &targetcli, &targetdest);
4362         if (!NT_STATUS_IS_OK(status)) {
4363                 d_printf("scopy %s: %s\n", dest, nt_errstr(status));
4364                 return 1;
4365         }
4366
4367
4368         DesiredAccess = (FILE_READ_DATA|FILE_READ_EA|FILE_READ_ATTRIBUTES|
4369                         READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS);
4370         ShareAccess = FILE_SHARE_READ|FILE_SHARE_DELETE;
4371         CreateDisposition = FILE_OPEN;
4372         CreateOptions = (FILE_SEQUENTIAL_ONLY|FILE_NON_DIRECTORY_FILE|
4373                         FILE_OPEN_REPARSE_POINT);
4374         status = cli_ntcreate(targetcli, targetsrc, 0, DesiredAccess, 0,
4375                         ShareAccess, CreateDisposition, CreateOptions, 0x0,
4376                         &srcfnum, &cr);
4377         if (!NT_STATUS_IS_OK(status)) {
4378                 d_printf("Failed to open file %s. %s\n",
4379                                 targetsrc, nt_errstr(status));
4380                 return 1;
4381         }
4382
4383         DesiredAccess = (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_READ_EA|
4384                         FILE_WRITE_EA|FILE_READ_ATTRIBUTES|FILE_WRITE_ATTRIBUTES|
4385                         DELETE_ACCESS|READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|SYNCHRONIZE_ACCESS);
4386         ShareAccess = FILE_SHARE_NONE;
4387         CreateDisposition = FILE_CREATE;
4388         CreateOptions = FILE_SEQUENTIAL_ONLY|FILE_NON_DIRECTORY_FILE;
4389         status = cli_ntcreate(targetcli, targetdest, 0, DesiredAccess,
4390                         FILE_ATTRIBUTE_ARCHIVE, ShareAccess, CreateDisposition,
4391                         CreateOptions, 0x0, &destfnum, NULL);
4392         if (!NT_STATUS_IS_OK(status)) {
4393                 d_printf("Failed to create file %s. %s\n",
4394                                 targetdest, nt_errstr(status));
4395                 cli_close(targetcli, srcfnum);
4396                 return 1;
4397         }
4398
4399         clock_gettime_mono(&st.tp_start);
4400         status = cli_splice(targetcli, targetcli, srcfnum, destfnum,
4401                         cr.end_of_file, 0, 0, &written, scopy_status, &st);
4402         if (!NT_STATUS_IS_OK(status)) {
4403                 d_printf("%s copying file %s -> %s \n",
4404                                 nt_errstr(status),
4405                                 targetsrc,
4406                                 targetdest);
4407                 rc = 1;
4408         }
4409
4410         status = cli_close(targetcli, srcfnum);
4411         if (!NT_STATUS_IS_OK(status)) {
4412                 d_printf("Error %s closing remote source file\n", nt_errstr(status));
4413                 rc = 1;
4414         }
4415         status = cli_close(targetcli, destfnum);
4416         if (!NT_STATUS_IS_OK(status)) {
4417                 d_printf("Error %s closing remote dest file\n", nt_errstr(status));
4418                 rc = 1;
4419         }
4420
4421         return rc;
4422 }
4423
4424 /****************************************************************************
4425  Print the volume name.
4426 ****************************************************************************/
4427
4428 static int cmd_volume(void)
4429 {
4430         char *volname;
4431         uint32_t serial_num;
4432         time_t create_date;
4433         NTSTATUS status;
4434
4435         status = cli_get_fs_volume_info(cli, talloc_tos(),
4436                                         &volname, &serial_num,
4437                                         &create_date);
4438         if (!NT_STATUS_IS_OK(status)) {
4439                 d_printf("Error %s getting volume info\n", nt_errstr(status));
4440                 return 1;
4441         }
4442
4443         d_printf("Volume: |%s| serial number 0x%x\n",
4444                         volname, (unsigned int)serial_num);
4445         return 0;
4446 }
4447
4448 /****************************************************************************
4449  Hard link files using the NT call.
4450 ****************************************************************************/
4451
4452 static int cmd_hardlink(void)
4453 {
4454         TALLOC_CTX *ctx = talloc_tos();
4455         char *src, *dest;
4456         char *buf, *buf2;
4457         struct cli_state *targetcli;
4458         char *targetname;
4459         NTSTATUS status;
4460
4461         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
4462             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
4463                 d_printf("hardlink <src> <dest>\n");
4464                 return 1;
4465         }
4466
4467         src = talloc_asprintf(ctx,
4468                         "%s%s",
4469                         client_get_cur_dir(),
4470                         buf);
4471         if (!src) {
4472                 return 1;
4473         }
4474         src = client_clean_name(ctx, src);
4475         if (src == NULL) {
4476                 return 1;
4477         }
4478
4479         dest = talloc_asprintf(ctx,
4480                         "%s%s",
4481                         client_get_cur_dir(),
4482                         buf2);
4483         if (!dest) {
4484                 return 1;
4485         }
4486         dest = client_clean_name(ctx, dest);
4487         if (dest == NULL) {
4488                 return 1;
4489         }
4490
4491         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
4492                                 cli, src, &targetcli, &targetname);
4493         if (!NT_STATUS_IS_OK(status)) {
4494                 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
4495                 return 1;
4496         }
4497
4498         status = cli_hardlink(targetcli, targetname, dest);
4499         if (!NT_STATUS_IS_OK(status)) {
4500                 d_printf("%s doing an NT hard link of files\n",
4501                          nt_errstr(status));
4502                 return 1;
4503         }
4504
4505         return 0;
4506 }
4507
4508 /****************************************************************************
4509  Toggle the prompt flag.
4510 ****************************************************************************/
4511
4512 static int cmd_prompt(void)
4513 {
4514         prompt = !prompt;
4515         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
4516         return 1;
4517 }
4518
4519 /****************************************************************************
4520  Set the newer than time.
4521 ****************************************************************************/
4522
4523 static int cmd_newer(void)
4524 {
4525         TALLOC_CTX *ctx = talloc_tos();
4526         char *buf;
4527         bool ok;
4528         SMB_STRUCT_STAT sbuf;
4529
4530         ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
4531         if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
4532                 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
4533                 DEBUG(1,("Getting files newer than %s",
4534                          time_to_asc(newer_than)));
4535         } else {
4536                 newer_than = 0;
4537         }
4538
4539         if (ok && newer_than == 0) {
4540                 d_printf("Error setting newer-than time\n");
4541                 return 1;
4542         }
4543
4544         return 0;
4545 }
4546
4547 /****************************************************************************
4548  Watch directory changes
4549 ****************************************************************************/
4550
4551 static int cmd_notify(void)
4552 {
4553         TALLOC_CTX *frame = talloc_stackframe();
4554         char *name, *buf;
4555         NTSTATUS status;
4556         uint16_t fnum;
4557
4558         name = talloc_strdup(talloc_tos(), client_get_cur_dir());
4559         if (name == NULL) {
4560                 goto fail;
4561         }
4562         if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
4563                 goto usage;
4564         }
4565         name = talloc_asprintf_append(name, "%s", buf);
4566         if (name == NULL) {
4567                 goto fail;
4568         }
4569         name = client_clean_name(talloc_tos(), name);
4570         if (name == NULL) {
4571                 return 1;
4572         }
4573         status = cli_ntcreate(
4574                 cli, name, 0, FILE_READ_DATA, 0,
4575                 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4576                 FILE_OPEN, 0, 0, &fnum, NULL);
4577         if (!NT_STATUS_IS_OK(status)) {
4578                 d_printf("Could not open file: %s\n", nt_errstr(status));
4579                 goto fail;
4580         }
4581
4582         while (1) {
4583                 uint32_t i;
4584                 uint32_t num_changes = 0;
4585                 struct notify_change *changes = NULL;
4586
4587                 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
4588                                     true,
4589                                     talloc_tos(), &num_changes, &changes);
4590                 if (NT_STATUS_EQUAL(status, STATUS_NOTIFY_ENUM_DIR)) {
4591                         printf("NOTIFY_ENUM_DIR\n");
4592                         status = NT_STATUS_OK;
4593                 }
4594                 if (!NT_STATUS_IS_OK(status)) {
4595                         d_printf("notify returned %s\n",
4596                                  nt_errstr(status));
4597                         goto fail;
4598                 }
4599                 for (i=0; i<num_changes; i++) {
4600                         printf("%4.4x %s\n", changes[i].action,
4601                                changes[i].name);
4602                 }
4603                 TALLOC_FREE(changes);
4604         }
4605 usage:
4606         d_printf("notify <dir name>\n");
4607 fail:
4608         TALLOC_FREE(frame);
4609         return 1;
4610 }
4611
4612 /****************************************************************************
4613  Set the archive level.
4614 ****************************************************************************/
4615
4616 static int cmd_archive(void)
4617 {
4618         TALLOC_CTX *ctx = talloc_tos();
4619         char *buf;
4620
4621         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4622                 archive_level = atoi(buf);
4623         } else {
4624                 d_printf("Archive level is %d\n",archive_level);
4625         }
4626
4627         return 0;
4628 }
4629
4630 /****************************************************************************
4631  Toggle the backup_intent state.
4632 ****************************************************************************/
4633
4634 static int cmd_backup(void)
4635 {
4636         backup_intent = !backup_intent;
4637         cli_set_backup_intent(cli, backup_intent);
4638         DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
4639         return 1;
4640 }
4641
4642 /****************************************************************************
4643  Toggle the lowercaseflag.
4644 ****************************************************************************/
4645
4646 static int cmd_lowercase(void)
4647 {
4648         lowercase = !lowercase;
4649         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4650         return 0;
4651 }
4652
4653 /****************************************************************************
4654  Toggle the case sensitive flag.
4655 ****************************************************************************/
4656
4657 static int cmd_setcase(void)
4658 {
4659         bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4660
4661         cli_set_case_sensitive(cli, !orig_case_sensitive);
4662         DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4663                 "on":"off"));
4664         return 0;
4665 }
4666
4667 /****************************************************************************
4668  Toggle the showacls flag.
4669 ****************************************************************************/
4670
4671 static int cmd_showacls(void)
4672 {
4673         showacls = !showacls;
4674         DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4675         return 0;
4676 }
4677
4678
4679 /****************************************************************************
4680  Toggle the recurse flag.
4681 ****************************************************************************/
4682
4683 static int cmd_recurse(void)
4684 {
4685         recurse = !recurse;
4686         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4687         return 0;
4688 }
4689
4690 /****************************************************************************
4691  Toggle the translate flag.
4692 ****************************************************************************/
4693
4694 static int cmd_translate(void)
4695 {
4696         translation = !translation;
4697         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4698                  translation?"on":"off"));
4699         return 0;
4700 }
4701
4702 /****************************************************************************
4703  Do the lcd command.
4704  ****************************************************************************/
4705
4706 static int cmd_lcd(void)
4707 {
4708         TALLOC_CTX *ctx = talloc_tos();
4709         char *buf;
4710         char *d;
4711
4712         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4713                 if (chdir(buf) == -1) {
4714                         d_printf("chdir to %s failed (%s)\n",
4715                                 buf, strerror(errno));
4716                 }
4717         }
4718         d = sys_getwd();
4719         if (!d) {
4720                 return 1;
4721         }
4722         DEBUG(2,("the local directory is now %s\n",d));
4723         SAFE_FREE(d);
4724         return 0;
4725 }
4726
4727 /****************************************************************************
4728  Get a file restarting at end of local file.
4729  ****************************************************************************/
4730
4731 static int cmd_reget(void)
4732 {
4733         TALLOC_CTX *ctx = talloc_tos();
4734         char *local_name = NULL;
4735         char *remote_name = NULL;
4736         char *fname = NULL;
4737         char *p = NULL;
4738
4739         remote_name = talloc_strdup(ctx, client_get_cur_dir());
4740         if (!remote_name) {
4741                 return 1;
4742         }
4743
4744         if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4745                 d_printf("reget <filename>\n");
4746                 return 1;
4747         }
4748         remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4749         if (!remote_name) {
4750                 return 1;
4751         }
4752         remote_name = client_clean_name(ctx,remote_name);
4753         if (!remote_name) {
4754                 return 1;
4755         }
4756
4757         local_name = fname;
4758         next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4759         if (p) {
4760                 local_name = p;
4761         }
4762
4763         return do_get(remote_name, local_name, true);
4764 }
4765
4766 /****************************************************************************
4767  Put a file restarting at end of local file.
4768  ****************************************************************************/
4769
4770 static int cmd_reput(void)
4771 {
4772         TALLOC_CTX *ctx = talloc_tos();
4773         char *local_name = NULL;
4774         char *remote_name = NULL;
4775         char *buf;
4776         SMB_STRUCT_STAT st;
4777
4778         remote_name = talloc_strdup(ctx, client_get_cur_dir());
4779         if (!remote_name) {
4780                 return 1;
4781         }
4782
4783         if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4784                 d_printf("reput <filename>\n");
4785                 return 1;
4786         }
4787
4788         if (!file_exist_stat(local_name, &st, false)) {
4789                 d_printf("%s does not exist\n", local_name);
4790                 return 1;
4791         }
4792
4793         if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4794                 remote_name = talloc_asprintf_append(remote_name,
4795                                                 "%s", buf);
4796         } else {
4797                 remote_name = talloc_asprintf_append(remote_name,
4798                                                 "%s", local_name);
4799         }
4800         if (!remote_name) {
4801                 return 1;
4802         }
4803
4804         remote_name = client_clean_name(ctx, remote_name);
4805         if (!remote_name) {
4806                 return 1;
4807         }
4808
4809         return do_put(remote_name, local_name, true);
4810 }
4811
4812 /****************************************************************************
4813  List a share name.
4814  ****************************************************************************/
4815
4816 static void browse_fn(const char *name, uint32_t m,
4817                       const char *comment, void *state)
4818 {
4819         const char *typestr = "";
4820
4821         switch (m & 7) {
4822         case STYPE_DISKTREE:
4823                 typestr = "Disk";
4824                 break;
4825         case STYPE_PRINTQ:
4826                 typestr = "Printer";
4827                 break;
4828         case STYPE_DEVICE:
4829                 typestr = "Device";
4830                 break;
4831         case STYPE_IPC:
4832                 typestr = "IPC";
4833                 break;
4834         }
4835         /* FIXME: If the remote machine returns non-ascii characters
4836            in any of these fields, they can corrupt the output.  We
4837            should remove them. */
4838         if (!grepable) {
4839                 d_printf("\t%-15s %-10.10s%s\n",
4840                         name,typestr,comment);
4841         } else {
4842                 d_printf ("%s|%s|%s\n",typestr,name,comment);
4843         }
4844 }
4845
4846 static bool browse_host_rpc(bool sort)
4847 {
4848         NTSTATUS status;
4849         struct rpc_pipe_client *pipe_hnd = NULL;
4850         TALLOC_CTX *frame = talloc_stackframe();
4851         WERROR werr;
4852         struct srvsvc_NetShareInfoCtr info_ctr;
4853         struct srvsvc_NetShareCtr1 ctr1;
4854         uint32_t resume_handle = 0;
4855         uint32_t total_entries = 0;
4856         int i;
4857         struct dcerpc_binding_handle *b;
4858
4859         status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc,
4860                                           &pipe_hnd);
4861
4862         if (!NT_STATUS_IS_OK(status)) {
4863                 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4864                            nt_errstr(status)));
4865                 TALLOC_FREE(frame);
4866                 return false;
4867         }
4868
4869         b = pipe_hnd->binding_handle;
4870
4871         ZERO_STRUCT(info_ctr);
4872         ZERO_STRUCT(ctr1);
4873
4874         info_ctr.level = 1;
4875         info_ctr.ctr.ctr1 = &ctr1;
4876
4877         status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4878                                               pipe_hnd->desthost,
4879                                               &info_ctr,
4880                                               0xffffffff,
4881                                               &total_entries,
4882                                               &resume_handle,
4883                                               &werr);
4884
4885         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4886                 TALLOC_FREE(pipe_hnd);
4887                 TALLOC_FREE(frame);
4888                 return false;
4889         }
4890
4891         for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4892                 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4893                 browse_fn(info.name, info.type, info.comment, NULL);
4894         }
4895
4896         TALLOC_FREE(pipe_hnd);
4897         TALLOC_FREE(frame);
4898         return true;
4899 }
4900
4901 /****************************************************************************
4902  Try and browse available connections on a host.
4903 ****************************************************************************/
4904
4905 static bool browse_host(bool sort)
4906 {
4907         int ret;
4908
4909         if (!grepable) {
4910                 d_printf("\n\tSharename       Type      Comment\n");
4911                 d_printf("\t---------       ----      -------\n");
4912         }
4913
4914         if (browse_host_rpc(sort)) {
4915                 return true;
4916         }
4917
4918         if (lp_client_min_protocol() > PROTOCOL_NT1) {
4919                 return false;
4920         }
4921
4922         if (smbXcli_conn_protocol(cli->conn) > PROTOCOL_NT1) {
4923                 return false;
4924         }
4925
4926         ret = cli_RNetShareEnum(cli, browse_fn, NULL);
4927         if (ret == -1) {
4928                 NTSTATUS status = cli_nt_error(cli);
4929                 d_printf("Error returning browse list: %s\n",
4930                          nt_errstr(status));
4931         }
4932
4933         return (ret != -1);
4934 }
4935
4936 /****************************************************************************
4937  List a server name.
4938 ****************************************************************************/
4939
4940 static void server_fn(const char *name, uint32_t m,
4941                       const char *comment, void *state)
4942 {
4943
4944         if (!grepable){
4945                 d_printf("\t%-16s     %s\n", name, comment);
4946         } else {
4947                 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4948         }
4949 }
4950
4951 /****************************************************************************
4952  Try and browse available connections on a host.
4953 ****************************************************************************/
4954
4955 static bool list_servers(const char *wk_grp)
4956 {
4957         fstring state;
4958
4959         if (!cli->server_domain)
4960                 return false;
4961
4962         if (!grepable) {
4963                 d_printf("\n\tServer               Comment\n");
4964                 d_printf("\t---------            -------\n");
4965         };
4966         fstrcpy( state, "Server" );
4967         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4968                           state);
4969
4970         if (!grepable) {
4971                 d_printf("\n\tWorkgroup            Master\n");
4972                 d_printf("\t---------            -------\n");
4973         };
4974
4975         fstrcpy( state, "Workgroup" );
4976         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4977                           server_fn, state);
4978         return true;
4979 }
4980
4981 /****************************************************************************
4982  Print or set current VUID
4983 ****************************************************************************/
4984
4985 static int cmd_vuid(void)
4986 {
4987         TALLOC_CTX *ctx = talloc_tos();
4988         char *buf;
4989
4990         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4991                 d_printf("Current VUID is %d\n",
4992                          cli_state_get_uid(cli));
4993                 return 0;
4994         }
4995
4996         cli_state_set_uid(cli, atoi(buf));
4997         return 0;
4998 }
4999
5000 /****************************************************************************
5001  Setup a new VUID, by issuing a session setup
5002 ****************************************************************************/
5003
5004 static int cmd_logon(void)
5005 {
5006         TALLOC_CTX *ctx = talloc_tos();
5007         char *l_username, *l_password;
5008         struct cli_credentials *creds = NULL;
5009         NTSTATUS nt_status;
5010
5011         if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
5012                 d_printf("logon <username> [<password>]\n");
5013                 return 0;
5014         }
5015
5016         if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
5017                 char pwd[256] = {0};
5018                 int rc;
5019
5020                 rc = samba_getpass("Password: ", pwd, sizeof(pwd), false, false);
5021                 if (rc == 0) {
5022                         l_password = talloc_strdup(ctx, pwd);
5023                 }
5024         }
5025         if (!l_password) {
5026                 return 1;
5027         }
5028
5029         creds = cli_session_creds_init(ctx,
5030                                        l_username,
5031                                        lp_workgroup(),
5032                                        NULL, /* realm */
5033                                        l_password,
5034                                        false, /* use_kerberos */
5035                                        false, /* fallback_after_kerberos */
5036                                        false, /* use_ccache */
5037                                        false); /* password_is_nt_hash */
5038         if (creds == NULL) {
5039                 d_printf("cli_session_creds_init() failed.\n");
5040                 return -1;
5041         }
5042         nt_status = cli_session_setup_creds(cli, creds);
5043         TALLOC_FREE(creds);
5044         if (!NT_STATUS_IS_OK(nt_status)) {
5045                 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
5046                 return -1;
5047         }
5048
5049         d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
5050         return 0;
5051 }
5052
5053 /**
5054  * close the session
5055  */
5056
5057 static int cmd_logoff(void)
5058 {
5059         NTSTATUS status;
5060
5061         status = cli_ulogoff(cli);
5062         if (!NT_STATUS_IS_OK(status)) {
5063                 d_printf("logoff failed: %s\n", nt_errstr(status));
5064                 return -1;
5065         }
5066
5067         d_printf("logoff successful\n");
5068         return 0;
5069 }
5070
5071
5072 /**
5073  * tree connect (connect to a share)
5074  */
5075
5076 static int cmd_tcon(void)
5077 {
5078         TALLOC_CTX *ctx = talloc_tos();
5079         char *sharename;
5080         NTSTATUS status;
5081
5082         if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
5083                 d_printf("tcon <sharename>\n");
5084                 return 0;
5085         }
5086
5087         if (!sharename) {
5088                 return 1;
5089         }
5090
5091         status = cli_tree_connect(cli, sharename, "?????", NULL);
5092         if (!NT_STATUS_IS_OK(status)) {
5093                 d_printf("tcon failed: %s\n", nt_errstr(status));
5094                 return -1;
5095         }
5096
5097         talloc_free(sharename);
5098
5099         d_printf("tcon to %s successful, tid: %u\n", sharename,
5100                  cli_state_get_tid(cli));
5101         return 0;
5102 }
5103
5104 /**
5105  * tree disconnect (disconnect from a share)
5106  */
5107
5108 static int cmd_tdis(void)
5109 {
5110         NTSTATUS status;
5111
5112         status = cli_tdis(cli);
5113         if (!NT_STATUS_IS_OK(status)) {
5114                 d_printf("tdis failed: %s\n", nt_errstr(status));
5115                 return -1;
5116         }
5117
5118         d_printf("tdis successful\n");
5119         return 0;
5120 }
5121
5122
5123 /**
5124  * get or set tid
5125  */
5126
5127 static int cmd_tid(void)
5128 {
5129         TALLOC_CTX *ctx = talloc_tos();
5130         char *tid_str;
5131
5132         if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
5133                 if (cli_state_has_tcon(cli)) {
5134                         d_printf("current tid is %d\n", cli_state_get_tid(cli));
5135                 } else {
5136                         d_printf("no tcon currently\n");
5137                 }
5138         } else {
5139                 uint32_t tid = atoi(tid_str);
5140                 if (!cli_state_has_tcon(cli)) {
5141                         d_printf("no tcon currently\n");
5142                 }
5143                 cli_state_set_tid(cli, tid);
5144         }
5145
5146         return 0;
5147 }
5148
5149
5150 /****************************************************************************
5151  list active connections
5152 ****************************************************************************/
5153
5154 static int cmd_list_connect(void)
5155 {
5156         cli_cm_display(cli);
5157         return 0;
5158 }
5159
5160 /****************************************************************************
5161  display the current active client connection
5162 ****************************************************************************/
5163
5164 static int cmd_show_connect( void )
5165 {
5166         TALLOC_CTX *ctx = talloc_tos();
5167         struct cli_state *targetcli;
5168         char *targetpath;
5169         NTSTATUS status;
5170
5171         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(), cli,
5172                                   client_get_cur_dir(), &targetcli,
5173                                   &targetpath);
5174         if (!NT_STATUS_IS_OK(status)) {
5175                 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
5176                 return 1;
5177         }
5178
5179         d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
5180         return 0;
5181 }
5182
5183 /**
5184  * set_remote_times - set times of a remote file
5185  * @filename: path to the file name
5186  * @create_time: New create time
5187  * @access_time: New access time
5188  * @write_time: New write time
5189  * @change_time: New metadata change time
5190  *
5191  * Update the file times with the ones provided.
5192  */
5193 static int set_remote_times(const char *filename,
5194                             struct timespec *create_time,
5195                             struct timespec *access_time,
5196                             struct timespec *write_time,
5197                             struct timespec *change_time)
5198 {
5199         extern struct cli_state *cli;
5200         NTSTATUS status;
5201
5202         status = cli_setpathinfo_ext(cli,
5203                                 filename,
5204                                 create_time,
5205                                 access_time,
5206                                 write_time,
5207                                 change_time,
5208                                 -1);
5209         if (!NT_STATUS_IS_OK(status)) {
5210                 d_printf("cli_setpathinfo_basic failed: %s\n",
5211                          nt_errstr(status));
5212                 return 1;
5213         }
5214
5215         return 0;
5216 }
5217
5218 /**
5219  * cmd_utimes - interactive command to set the four times
5220  *
5221  * Read a filename and four times from the client command line and update
5222  * the file times. A value of -1 for a time means don't change.
5223  */
5224 static int cmd_utimes(void)
5225 {
5226         char *buf;
5227         char *fname = NULL;
5228         struct timespec times[4] = {{0}};
5229         struct timeval_buf tbuf[4];
5230         int time_count = 0;
5231         int err = 0;
5232         bool ok;
5233         TALLOC_CTX *ctx = talloc_new(NULL);
5234         if (ctx == NULL) {
5235                 return 1;
5236         }
5237
5238         ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
5239         if (!ok) {
5240                 d_printf("utimes <filename> <create-time> <access-time> "
5241                          "<write-time> <change-time>\n");
5242                 d_printf("Dates should be in YY:MM:DD-HH:MM:SS format "
5243                         "or -1 for no change\n");
5244                 err = 1;
5245                 goto out;
5246         }
5247
5248         fname = talloc_asprintf(ctx,
5249                                 "%s%s",
5250                                 client_get_cur_dir(),
5251                                 buf);
5252         if (fname == NULL) {
5253                 err = 1;
5254                 goto out;
5255         }
5256         fname = client_clean_name(ctx, fname);
5257         if (fname == NULL) {
5258                 err = 1;
5259                 goto out;
5260         }
5261
5262         while (next_token_talloc(ctx, &cmd_ptr, &buf, NULL) &&
5263                 time_count < 4) {
5264                 const char *s = buf;
5265                 struct tm tm = {0,};
5266                 time_t t;
5267                 char *ret;
5268
5269                 if (strlen(s) == 2 && strcmp(s, "-1") == 0) {
5270                         times[time_count] = make_omit_timespec();
5271                         time_count++;
5272                         continue;
5273                 } else {
5274                         ret = strptime(s, "%y:%m:%d-%H:%M:%S", &tm);
5275                 }
5276
5277                 /* We could not match all the chars, so print error */
5278                 if (ret == NULL || *ret != 0) {
5279                         d_printf("Invalid date format: %s\n", s);
5280                         d_printf("utimes <filename> <create-time> "
5281                                 "<access-time> <write-time> <change-time>\n");
5282                         d_printf("Dates should be in YY:MM:DD-HH:MM:SS format "
5283                                 "or -1 for no change\n");
5284                         err = 1;
5285                         goto out;
5286                 }
5287
5288                 /* Convert tm to a time_t */
5289                 t = mktime(&tm);
5290                 times[time_count] = (struct timespec){.tv_sec = t};
5291                 time_count++;
5292         }
5293
5294         if (time_count < 4) {
5295                 d_printf("Insufficient dates: %d\n", time_count);
5296                 d_printf("utimes <filename> <create-time> <access-time> "
5297                         "<write-time> <change-time>\n");
5298                 d_printf("Dates should be in YY:MM:DD-HH:MM:SS format "
5299                         "or -1 for no change\n");
5300                 err = 1;
5301                 goto out;
5302         }
5303
5304         DEBUG(10, ("times\nCreate: %sAccess: %s Write: %sChange: %s\n",
5305                    timespec_string_buf(&times[0], false, &tbuf[0]),
5306                    timespec_string_buf(&times[1], false, &tbuf[1]),
5307                    timespec_string_buf(&times[2], false, &tbuf[2]),
5308                    timespec_string_buf(&times[3], false, &tbuf[3])));
5309
5310         set_remote_times(fname, &times[0], &times[1], &times[2], &times[3]);
5311 out:
5312         talloc_free(ctx);
5313         return err;
5314 }
5315
5316 /**
5317  * set_remote_attr - set DOS attributes of a remote file
5318  * @filename: path to the file name
5319  * @new_attr: attribute bit mask to use
5320  * @mode: one of ATTR_SET or ATTR_UNSET
5321  *
5322  * Update the file attributes with the one provided.
5323  */
5324 int set_remote_attr(const char *filename, uint16_t new_attr, int mode)
5325 {
5326         extern struct cli_state *cli;
5327         uint16_t old_attr;
5328         NTSTATUS status;
5329
5330         status = cli_getatr(cli, filename, &old_attr, NULL, NULL);
5331         if (!NT_STATUS_IS_OK(status)) {
5332                 d_printf("cli_getatr failed: %s\n", nt_errstr(status));
5333                 return 1;
5334         }
5335
5336         if (mode == ATTR_SET) {
5337                 new_attr |= old_attr;
5338         } else {
5339                 new_attr = old_attr & ~new_attr;
5340         }
5341
5342         status = cli_setatr(cli, filename, new_attr, 0);
5343         if (!NT_STATUS_IS_OK(status)) {
5344                 d_printf("cli_setatr failed: %s\n", nt_errstr(status));
5345                 return 1;
5346         }
5347
5348         return 0;
5349 }
5350
5351 /**
5352  * cmd_setmode - interactive command to set DOS attributes
5353  *
5354  * Read a filename and mode from the client command line and update
5355  * the file DOS attributes.
5356  */
5357 int cmd_setmode(void)
5358 {
5359         char *buf;
5360         char *fname = NULL;
5361         uint16_t attr[2] = {0};
5362         int mode = ATTR_SET;
5363         int err = 0;
5364         bool ok;
5365         TALLOC_CTX *ctx = talloc_new(NULL);
5366         if (ctx == NULL) {
5367                 return 1;
5368         }
5369
5370         ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
5371         if (!ok) {
5372                 d_printf("setmode <filename> <[+|-]rsha>\n");
5373                 err = 1;
5374                 goto out;
5375         }
5376
5377         fname = talloc_asprintf(ctx,
5378                                 "%s%s",
5379                                 client_get_cur_dir(),
5380                                 buf);
5381         if (fname == NULL) {
5382                 err = 1;
5383                 goto out;
5384         }
5385         fname = client_clean_name(ctx, fname);
5386         if (fname == NULL) {
5387                 err = 1;
5388                 goto out;
5389         }
5390
5391         while (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
5392                 const char *s = buf;
5393
5394                 while (*s) {
5395                         switch (*s++) {
5396                         case '+':
5397                                 mode = ATTR_SET;
5398                                 break;
5399                         case '-':
5400                                 mode = ATTR_UNSET;
5401                                 break;
5402                         case 'r':
5403                                 attr[mode] |= FILE_ATTRIBUTE_READONLY;
5404                                 break;
5405                         case 'h':
5406                                 attr[mode] |= FILE_ATTRIBUTE_HIDDEN;
5407                                 break;
5408                         case 's':
5409                                 attr[mode] |= FILE_ATTRIBUTE_SYSTEM;
5410                                 break;
5411                         case 'a':
5412                                 attr[mode] |= FILE_ATTRIBUTE_ARCHIVE;
5413                                 break;
5414                         default:
5415                                 d_printf("setmode <filename> <perm=[+|-]rsha>\n");
5416                                 err = 1;
5417                                 goto out;
5418                         }
5419                 }
5420         }
5421
5422         if (attr[ATTR_SET] == 0 && attr[ATTR_UNSET] == 0) {
5423                 d_printf("setmode <filename> <[+|-]rsha>\n");
5424                 err = 1;
5425                 goto out;
5426         }
5427
5428         DEBUG(2, ("perm set %d %d\n", attr[ATTR_SET], attr[ATTR_UNSET]));
5429
5430         /* ignore return value: server might not store DOS attributes */
5431         set_remote_attr(fname, attr[ATTR_SET], ATTR_SET);
5432         set_remote_attr(fname, attr[ATTR_UNSET], ATTR_UNSET);
5433 out:
5434         talloc_free(ctx);
5435         return err;
5436 }
5437
5438 /****************************************************************************
5439  iosize command
5440 ***************************************************************************/
5441
5442 int cmd_iosize(void)
5443 {
5444         TALLOC_CTX *ctx = talloc_tos();
5445         char *buf;
5446         int iosize;
5447
5448         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
5449                 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
5450                         if (!smb_encrypt) {
5451                                 d_printf("iosize <n> or iosize 0x<n>. "
5452                                         "Minimum is 0 (default), "
5453                                         "max is 16776960 (0xFFFF00)\n");
5454                         } else {
5455                                 d_printf("iosize <n> or iosize 0x<n>. "
5456                                         "(Encrypted connection) ,"
5457                                         "Minimum is 0 (default), "
5458                                         "max is 130048 (0x1FC00)\n");
5459                         }
5460                 } else {
5461                         d_printf("iosize <n> or iosize 0x<n>.\n");
5462                 }
5463                 return 1;
5464         }
5465
5466         iosize = strtol(buf,NULL,0);
5467         if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
5468                 if (smb_encrypt && (iosize < 0 || iosize > 0xFC00)) {
5469                         d_printf("iosize out of range for encrypted "
5470                                 "connection (min = 0 (default), "
5471                                 "max = 130048 (0x1FC00)\n");
5472                         return 1;
5473                 } else if (!smb_encrypt && (iosize < 0 || iosize > 0xFFFF00)) {
5474                         d_printf("iosize out of range (min = 0 (default), "
5475                                 "max = 16776960 (0xFFFF00)\n");
5476                         return 1;
5477                 }
5478         }
5479
5480         io_bufsize = iosize;
5481         d_printf("iosize is now %d\n", io_bufsize);
5482         return 0;
5483 }
5484
5485 /****************************************************************************
5486  timeout command
5487 ***************************************************************************/
5488
5489 static int cmd_timeout(void)
5490 {
5491         TALLOC_CTX *ctx = talloc_tos();
5492         char *buf;
5493
5494         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
5495                 unsigned int old_timeout = cli_set_timeout(cli, 0);
5496                 cli_set_timeout(cli, old_timeout);
5497                 d_printf("timeout <n> (per-operation timeout "
5498                         "in seconds - currently %u).\n",
5499                         old_timeout/1000);
5500                 return 1;
5501         }
5502
5503         io_timeout = strtol(buf,NULL,0);
5504         cli_set_timeout(cli, io_timeout*1000);
5505         d_printf("io_timeout per operation is now %d\n", io_timeout);
5506         return 0;
5507 }
5508
5509
5510 /****************************************************************************
5511 history
5512 ****************************************************************************/
5513 static int cmd_history(void)
5514 {
5515 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
5516         HIST_ENTRY **hlist;
5517         int i;
5518
5519         hlist = history_list();
5520
5521         for (i = 0; hlist && hlist[i]; i++) {
5522                 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
5523         }
5524 #else
5525         DEBUG(0,("no history without readline support\n"));
5526 #endif
5527
5528         return 0;
5529 }
5530
5531 /* Some constants for completing filename arguments */
5532
5533 #define COMPL_NONE        0          /* No completions */
5534 #define COMPL_REMOTE      1          /* Complete remote filename */
5535 #define COMPL_LOCAL       2          /* Complete local filename */
5536
5537 /* This defines the commands supported by this client.
5538  * NOTE: The "!" must be the last one in the list because it's fn pointer
5539  *       field is NULL, and NULL in that field is used in process_tok()
5540  *       (below) to indicate the end of the list.  crh
5541  */
5542 static struct {
5543         const char *name;
5544         int (*fn)(void);
5545         const char *description;
5546         char compl_args[2];      /* Completion argument info */
5547 } commands[] = {
5548   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
5549   {"allinfo",cmd_allinfo,"<file> show all available info",
5550    {COMPL_REMOTE,COMPL_NONE}},
5551   {"altname",cmd_altname,"<file> show alt name",{COMPL_REMOTE,COMPL_NONE}},
5552   {"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}},
5553   {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
5554   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
5555   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
5556   {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
5557   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
5558   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_NONE}},
5559   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_NONE}},
5560   {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_NONE}},
5561   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
5562   {"deltree",cmd_deltree,"<mask> recursively delete all matching files and directories",{COMPL_REMOTE,COMPL_NONE}},
5563   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
5564   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
5565   {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
5566   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
5567   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
5568   {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_NONE}},
5569   {"geteas", cmd_geteas, "<file name> get the EA list of a file",
5570    {COMPL_REMOTE, COMPL_NONE}},
5571   {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
5572   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
5573   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
5574   {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
5575   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
5576   {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
5577   {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
5578   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
5579   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
5580   {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
5581   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
5582   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
5583   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
5584   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
5585   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
5586   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
5587   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
5588   {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
5589   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
5590   {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
5591   {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
5592   {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5593   {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5594   {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5595   {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5596   {"posix_whoami",cmd_posix_whoami,"return logged on user information "
5597                         "using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5598   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
5599   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
5600   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
5601   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
5602   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
5603   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
5604   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
5605   {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
5606   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
5607   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
5608   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
5609   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
5610   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
5611   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
5612   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_REMOTE,COMPL_NONE}},
5613   {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
5614   {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
5615    {COMPL_REMOTE, COMPL_LOCAL}},
5616   {"setmode",cmd_setmode,"<file name> <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
5617   {"scopy",cmd_scopy,"<src> <dest> server-side copy file",{COMPL_REMOTE,COMPL_REMOTE}},
5618   {"stat",cmd_stat,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_NONE}},
5619   {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
5620   {"tar",cmd_tar,"tar <c|x>[IXFvbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
5621   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
5622   {"timeout",cmd_timeout,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE,COMPL_NONE}},
5623   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
5624   {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
5625   {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
5626   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
5627   {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
5628   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
5629   {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
5630   {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
5631   {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
5632   {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
5633   {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
5634   {"utimes", cmd_utimes,"<file name> <create_time> <access_time> <mod_time> "
5635         "<ctime> set times", {COMPL_REMOTE,COMPL_NONE}},
5636   {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
5637   {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
5638
5639   /* Yes, this must be here, see crh's comment above. */
5640   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
5641   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
5642 };
5643
5644 /*******************************************************************
5645  Lookup a command string in the list of commands, including
5646  abbreviations.
5647 ******************************************************************/
5648
5649 static int process_tok(char *tok)
5650 {
5651         size_t i = 0, matches = 0;
5652         size_t cmd=0;
5653         size_t tok_len = strlen(tok);
5654
5655         while (commands[i].fn != NULL) {
5656                 if (strequal(commands[i].name,tok)) {
5657                         matches = 1;
5658                         cmd = i;
5659                         break;
5660                 } else if (strnequal(commands[i].name, tok, tok_len)) {
5661                         matches++;
5662                         cmd = i;
5663                 }
5664                 i++;
5665         }
5666
5667         if (matches == 0)
5668                 return(-1);
5669         else if (matches == 1)
5670                 return(cmd);
5671         else
5672                 return(-2);
5673 }
5674
5675 /****************************************************************************
5676  Help.
5677 ****************************************************************************/
5678
5679 static int cmd_help(void)
5680 {
5681         TALLOC_CTX *ctx = talloc_tos();
5682         int i=0,j;
5683         char *buf;
5684
5685         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
5686                 if ((i = process_tok(buf)) >= 0)
5687                         d_printf("HELP %s:\n\t%s\n\n",
5688                                 commands[i].name,commands[i].description);
5689         } else {
5690                 while (commands[i].description) {
5691                         for (j=0; commands[i].description && (j<5); j++) {
5692                                 d_printf("%-15s",commands[i].name);
5693                                 i++;
5694                         }
5695                         d_printf("\n");
5696                 }
5697         }
5698         return 0;
5699 }
5700
5701 /****************************************************************************
5702  Process a -c command string.
5703 ****************************************************************************/
5704
5705 static int process_command_string(const char *cmd_in)
5706 {
5707         TALLOC_CTX *ctx = talloc_tos();
5708         char *cmd = talloc_strdup(ctx, cmd_in);
5709         int rc = 0;
5710
5711         if (!cmd) {
5712                 return 1;
5713         }
5714         /* establish the connection if not already */
5715
5716         if (!cli) {
5717                 NTSTATUS status;
5718
5719                 status = cli_cm_open(talloc_tos(), NULL,
5720                                      desthost,
5721                                      service, popt_get_cmdline_auth_info(),
5722                                      smb_encrypt,
5723                                      max_protocol,
5724                                      have_ip ? &dest_ss : NULL, port,
5725                                      name_type,
5726                                      &cli);
5727                 if (!NT_STATUS_IS_OK(status)) {
5728                         return 1;
5729                 }
5730                 cli_set_timeout(cli, io_timeout*1000);
5731         }
5732
5733         while (cmd[0] != '\0')    {
5734                 char *line;
5735                 char *p;
5736                 char *tok;
5737                 int i;
5738
5739                 if ((p = strchr_m(cmd, ';')) == 0) {
5740                         line = cmd;
5741                         cmd += strlen(cmd);
5742                 } else {
5743                         *p = '\0';
5744                         line = cmd;
5745                         cmd = p + 1;
5746                 }
5747
5748                 /* and get the first part of the command */
5749                 cmd_ptr = line;
5750                 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
5751                         continue;
5752                 }
5753
5754                 if ((i = process_tok(tok)) >= 0) {
5755                         rc = commands[i].fn();
5756                 } else if (i == -2) {
5757                         d_printf("%s: command abbreviation ambiguous\n",tok);
5758                 } else {
5759                         d_printf("%s: command not found\n",tok);
5760                 }
5761         }
5762
5763         return rc;
5764 }
5765
5766 #define MAX_COMPLETIONS 100
5767
5768 struct completion_remote {
5769         char *dirmask;
5770         char **matches;
5771         int count, samelen;
5772         const char *text;
5773         int len;
5774 };
5775
5776 static NTSTATUS completion_remote_filter(const char *mnt,
5777                                 struct file_info *f,
5778                                 const char *mask,
5779                                 void *state)
5780 {
5781         struct completion_remote *info = (struct completion_remote *)state;
5782
5783         if (info->count >= MAX_COMPLETIONS - 1) {
5784                 return NT_STATUS_OK;
5785         }
5786         if (strncmp(info->text, f->name, info->len) != 0) {
5787                 return NT_STATUS_OK;
5788         }
5789         if (ISDOT(f->name) || ISDOTDOT(f->name)) {
5790                 return NT_STATUS_OK;
5791         }
5792
5793         if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
5794                 info->matches[info->count] = SMB_STRDUP(f->name);
5795         else {
5796                 TALLOC_CTX *ctx = talloc_stackframe();
5797                 char *tmp;
5798
5799                 tmp = talloc_strdup(ctx,info->dirmask);
5800                 if (!tmp) {
5801                         TALLOC_FREE(ctx);
5802                         return NT_STATUS_NO_MEMORY;
5803                 }
5804                 tmp = talloc_asprintf_append(tmp, "%s", f->name);
5805                 if (!tmp) {
5806                         TALLOC_FREE(ctx);
5807                         return NT_STATUS_NO_MEMORY;
5808                 }
5809                 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
5810                         tmp = talloc_asprintf_append(tmp, "%s",
5811                                                      CLI_DIRSEP_STR);
5812                 }
5813                 if (!tmp) {
5814                         TALLOC_FREE(ctx);
5815                         return NT_STATUS_NO_MEMORY;
5816                 }
5817                 info->matches[info->count] = SMB_STRDUP(tmp);
5818                 TALLOC_FREE(ctx);
5819         }
5820         if (info->matches[info->count] == NULL) {
5821                 return NT_STATUS_OK;
5822         }
5823         if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
5824                 smb_readline_ca_char(0);
5825         }
5826         if (info->count == 1) {
5827                 info->samelen = strlen(info->matches[info->count]);
5828         } else {
5829                 while (strncmp(info->matches[info->count],
5830                                info->matches[info->count-1],
5831                                info->samelen) != 0) {
5832                         info->samelen--;
5833                 }
5834         }
5835         info->count++;
5836         return NT_STATUS_OK;
5837 }
5838
5839 static char **remote_completion(const char *text, int len)
5840 {
5841         TALLOC_CTX *ctx = talloc_stackframe();
5842         char *dirmask = NULL;
5843         char *targetpath = NULL;
5844         struct cli_state *targetcli = NULL;
5845         int i;
5846         struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
5847         NTSTATUS status;
5848
5849         /* can't have non-static initialisation on Sun CC, so do it
5850            at run time here */
5851         info.samelen = len;
5852         info.text = text;
5853         info.len = len;
5854
5855         info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
5856         if (!info.matches) {
5857                 TALLOC_FREE(ctx);
5858                 return NULL;
5859         }
5860
5861         /*
5862          * We're leaving matches[0] free to fill it later with the text to
5863          * display: Either the one single match or the longest common subset
5864          * of the matches.
5865          */
5866         info.matches[0] = NULL;
5867         info.count = 1;
5868
5869         for (i = len-1; i >= 0; i--) {
5870                 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
5871                         break;
5872                 }
5873         }
5874
5875         info.text = text+i+1;
5876         info.samelen = info.len = len-i-1;
5877
5878         if (i > 0) {
5879                 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
5880                 if (!info.dirmask) {
5881                         goto cleanup;
5882                 }
5883                 strncpy(info.dirmask, text, i+1);
5884                 info.dirmask[i+1] = 0;
5885                 dirmask = talloc_asprintf(ctx,
5886                                         "%s%*s*",
5887                                         client_get_cur_dir(),
5888                                         i-1,
5889                                         text);
5890         } else {
5891                 info.dirmask = SMB_STRDUP("");
5892                 if (!info.dirmask) {
5893                         goto cleanup;
5894                 }
5895                 dirmask = talloc_asprintf(ctx,
5896                                         "%s*",
5897                                         client_get_cur_dir());
5898         }
5899         if (!dirmask) {
5900                 goto cleanup;
5901         }
5902         dirmask = client_clean_name(ctx, dirmask);
5903         if (dirmask == NULL) {
5904                 goto cleanup;
5905         }
5906
5907         status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
5908                                 cli, dirmask, &targetcli, &targetpath);
5909         if (!NT_STATUS_IS_OK(status)) {
5910                 goto cleanup;
5911         }
5912         status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
5913                           completion_remote_filter, (void *)&info);
5914         if (!NT_STATUS_IS_OK(status)) {
5915                 goto cleanup;
5916         }
5917
5918         if (info.count == 1) {
5919                 /*
5920                  * No matches at all, NULL indicates there is nothing
5921                  */
5922                 SAFE_FREE(info.matches[0]);
5923                 SAFE_FREE(info.matches);
5924                 TALLOC_FREE(ctx);
5925                 return NULL;
5926         }
5927
5928         if (info.count == 2) {
5929                 /*
5930                  * Exactly one match in matches[1], indicate this is the one
5931                  * in matches[0].
5932                  */
5933                 info.matches[0] = info.matches[1];
5934                 info.matches[1] = NULL;
5935                 info.count -= 1;
5936                 TALLOC_FREE(ctx);
5937                 return info.matches;
5938         }
5939
5940         /*
5941          * We got more than one possible match, set the result to the maximum
5942          * common subset
5943          */
5944
5945         info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
5946         info.matches[info.count] = NULL;
5947         TALLOC_FREE(ctx);
5948         return info.matches;
5949
5950 cleanup:
5951         for (i = 0; i < info.count; i++) {
5952                 SAFE_FREE(info.matches[i]);
5953         }
5954         SAFE_FREE(info.matches);
5955         SAFE_FREE(info.dirmask);
5956         TALLOC_FREE(ctx);
5957         return NULL;
5958 }
5959
5960 static char **completion_fn(const char *text, int start, int end)
5961 {
5962         smb_readline_ca_char(' ');
5963
5964         if (start) {
5965                 const char *buf, *sp;
5966                 int i;
5967                 char compl_type;
5968
5969                 buf = smb_readline_get_line_buffer();
5970                 if (buf == NULL)
5971                         return NULL;
5972
5973                 sp = strchr(buf, ' ');
5974                 if (sp == NULL)
5975                         return NULL;
5976
5977                 for (i = 0; commands[i].name; i++) {
5978                         if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5979                             (commands[i].name[sp - buf] == 0)) {
5980                                 break;
5981                         }
5982                 }
5983                 if (commands[i].name == NULL)
5984                         return NULL;
5985
5986                 while (*sp == ' ')
5987                         sp++;
5988
5989                 if (sp == (buf + start))
5990                         compl_type = commands[i].compl_args[0];
5991                 else
5992                         compl_type = commands[i].compl_args[1];
5993
5994                 if (compl_type == COMPL_REMOTE)
5995                         return remote_completion(text, end - start);
5996                 else /* fall back to local filename completion */
5997                         return NULL;
5998         } else {
5999                 char **matches;
6000                 size_t i, len, samelen = 0, count=1;
6001
6002                 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
6003                 if (!matches) {
6004                         return NULL;
6005                 }
6006                 matches[0] = NULL;
6007
6008                 len = strlen(text);
6009                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
6010                         if (strncmp(text, commands[i].name, len) == 0) {
6011                                 matches[count] = SMB_STRDUP(commands[i].name);
6012                                 if (!matches[count])
6013                                         goto cleanup;
6014                                 if (count == 1)
6015                                         samelen = strlen(matches[count]);
6016                                 else
6017                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
6018                                                 samelen--;
6019                                 count++;
6020                         }
6021                 }
6022
6023                 switch (count) {
6024                 case 0: /* should never happen */
6025                 case 1:
6026                         goto cleanup;
6027                 case 2:
6028                         matches[0] = SMB_STRDUP(matches[1]);
6029                         break;
6030                 default:
6031                         matches[0] = (char *)SMB_MALLOC(samelen+1);
6032                         if (!matches[0])
6033                                 goto cleanup;
6034                         strncpy(matches[0], matches[1], samelen);
6035                         matches[0][samelen] = 0;
6036                 }
6037                 matches[count] = NULL;
6038                 return matches;
6039
6040 cleanup:
6041                 for (i = 0; i < count; i++)
6042                         free(matches[i]);
6043
6044                 free(matches);
6045                 return NULL;
6046         }
6047 }
6048
6049 static bool finished;
6050
6051 /****************************************************************************
6052  Make sure we swallow keepalives during idle time.
6053 ****************************************************************************/
6054
6055 static void readline_callback(void)
6056 {
6057         static time_t last_t;
6058         struct timespec now;
6059         time_t t;
6060         NTSTATUS status;
6061         unsigned char garbage[16];
6062
6063         clock_gettime_mono(&now);
6064         t = now.tv_sec;
6065
6066         if (t - last_t < 5)
6067                 return;
6068
6069         last_t = t;
6070
6071         /* Ping the server to keep the connection alive using SMBecho. */
6072         memset(garbage, 0xf0, sizeof(garbage));
6073         status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
6074         if (NT_STATUS_IS_OK(status) ||
6075                         NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
6076                 /*
6077                  * Even if server returns NT_STATUS_INVALID_PARAMETER
6078                  * it still responded.
6079                  * BUG: https://bugzilla.samba.org/show_bug.cgi?id=13007
6080                  */
6081                 return;
6082         }
6083
6084         if (!cli_state_is_connected(cli)) {
6085                 DEBUG(0,("SMBecho failed (%s). The connection is "
6086                          "disconnected now\n", nt_errstr(status)));
6087                 finished = true;
6088                 smb_readline_done();
6089         }
6090 }
6091
6092 /****************************************************************************
6093  Process commands on stdin.
6094 ****************************************************************************/
6095
6096 static int process_stdin(void)
6097 {
6098         int rc = 0;
6099
6100         if (!quiet) {
6101                 d_printf("Try \"help\" to get a list of possible commands.\n");
6102         }
6103
6104         while (!finished) {
6105                 TALLOC_CTX *frame = talloc_stackframe();
6106                 char *tok = NULL;
6107                 char *the_prompt = NULL;
6108                 char *line = NULL;
6109                 int i;
6110
6111                 /* display a prompt */
6112                 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
6113                         TALLOC_FREE(frame);
6114                         break;
6115                 }
6116                 line = smb_readline(the_prompt, readline_callback, completion_fn);
6117                 SAFE_FREE(the_prompt);
6118                 if (!line) {
6119                         TALLOC_FREE(frame);
6120                         break;
6121                 }
6122
6123                 /* special case - first char is ! */
6124                 if (*line == '!') {
6125                         if (system(line + 1) == -1) {
6126                                 d_printf("system() command %s failed.\n",
6127                                         line+1);
6128                         }
6129                         SAFE_FREE(line);
6130                         TALLOC_FREE(frame);
6131                         continue;
6132                 }
6133
6134                 /* and get the first part of the command */
6135                 cmd_ptr = line;
6136                 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
6137                         TALLOC_FREE(frame);
6138                         SAFE_FREE(line);
6139                         continue;
6140                 }
6141
6142                 if ((i = process_tok(tok)) >= 0) {
6143                         rc = commands[i].fn();
6144                 } else if (i == -2) {
6145                         d_printf("%s: command abbreviation ambiguous\n",tok);
6146                 } else {
6147                         d_printf("%s: command not found\n",tok);
6148                 }
6149                 SAFE_FREE(line);
6150                 TALLOC_FREE(frame);
6151         }
6152         return rc;
6153 }
6154
6155 /****************************************************************************
6156  Process commands from the client.
6157 ****************************************************************************/
6158
6159 static int process(const char *base_directory)
6160 {
6161         int rc = 0;
6162         NTSTATUS status;
6163
6164         status = cli_cm_open(talloc_tos(), NULL,
6165                              desthost,
6166                              service, popt_get_cmdline_auth_info(),
6167                              smb_encrypt, max_protocol,
6168                              have_ip ? &dest_ss : NULL, port,
6169                              name_type, &cli);
6170         if (!NT_STATUS_IS_OK(status)) {
6171                 return 1;
6172         }
6173
6174         cli_set_timeout(cli, io_timeout*1000);
6175
6176         if (base_directory && *base_directory) {
6177                 rc = do_cd(base_directory);
6178                 if (rc) {
6179                         cli_shutdown(cli);
6180                         return rc;
6181                 }
6182         }
6183
6184         if (cmdstr) {
6185                 rc = process_command_string(cmdstr);
6186         } else {
6187                 process_stdin();
6188         }
6189
6190         cli_shutdown(cli);
6191         return rc;
6192 }
6193
6194 /****************************************************************************
6195  Handle a -L query.
6196 ****************************************************************************/
6197
6198 static int do_host_query(const char *query_host)
6199 {
6200         NTSTATUS status;
6201
6202         status = cli_cm_open(talloc_tos(), NULL,
6203                              query_host,
6204                              "IPC$", popt_get_cmdline_auth_info(),
6205                              smb_encrypt, max_protocol,
6206                              have_ip ? &dest_ss : NULL, port,
6207                              name_type, &cli);
6208         if (!NT_STATUS_IS_OK(status)) {
6209                 return 1;
6210         }
6211
6212         cli_set_timeout(cli, io_timeout*1000);
6213         browse_host(true);
6214
6215         /* Ensure that the host can do IPv4 */
6216
6217         if (!interpret_addr(query_host)) {
6218                 struct sockaddr_storage ss;
6219                 if (interpret_string_addr(&ss, query_host, 0) &&
6220                                 (ss.ss_family != AF_INET)) {
6221                         d_printf("%s is an IPv6 address -- no workgroup available\n",
6222                                 query_host);
6223                         return 1;
6224                 }
6225         }
6226
6227         if (lp_client_min_protocol() > PROTOCOL_NT1) {
6228                 d_printf("SMB1 disabled -- no workgroup available\n");
6229                 goto out;
6230         }
6231
6232         if (lp_disable_netbios()) {
6233                 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
6234                 goto out;
6235         }
6236
6237         if (port != NBT_SMB_PORT ||
6238             smbXcli_conn_protocol(cli->conn) > PROTOCOL_NT1)
6239         {
6240                 int max_proto = MIN(max_protocol, PROTOCOL_NT1);
6241
6242                 /*
6243                  * Workgroups simply don't make sense over anything
6244                  * else but port 139 and SMB1.
6245                  */
6246
6247                 cli_shutdown(cli);
6248                 d_printf("Reconnecting with SMB1 for workgroup listing.\n");
6249                 status = cli_cm_open(talloc_tos(), NULL,
6250                                      query_host,
6251                                      "IPC$", popt_get_cmdline_auth_info(),
6252                                      smb_encrypt, max_proto,
6253                                      have_ip ? &dest_ss : NULL, NBT_SMB_PORT,
6254                                      name_type, &cli);
6255                 if (!NT_STATUS_IS_OK(status)) {
6256                         d_printf("Unable to connect with SMB1 "
6257                                  "-- no workgroup available\n");
6258                         return 0;
6259                 }
6260         }
6261
6262         cli_set_timeout(cli, io_timeout*1000);
6263         list_servers(lp_workgroup());
6264 out:
6265         cli_shutdown(cli);
6266
6267         return(0);
6268 }
6269
6270 /****************************************************************************
6271  Handle a tar operation.
6272 ****************************************************************************/
6273
6274 static int do_tar_op(const char *base_directory)
6275 {
6276         struct tar *tar_ctx = tar_get_ctx();
6277         int ret = 0;
6278
6279         /* do we already have a connection? */
6280         if (!cli) {
6281                 NTSTATUS status;
6282
6283                 status = cli_cm_open(talloc_tos(), NULL,
6284                                      desthost,
6285                                      service, popt_get_cmdline_auth_info(),
6286                                      smb_encrypt, max_protocol,
6287                                      have_ip ? &dest_ss : NULL, port,
6288                                      name_type, &cli);
6289                 if (!NT_STATUS_IS_OK(status)) {
6290             ret = 1;
6291             goto out;
6292                 }
6293                 cli_set_timeout(cli, io_timeout*1000);
6294         }
6295
6296         recurse = true;
6297
6298         if (base_directory && *base_directory)  {
6299                 ret = do_cd(base_directory);
6300                 if (ret) {
6301             goto out_cli;
6302                 }
6303         }
6304
6305         ret = tar_process(tar_ctx);
6306
6307  out_cli:
6308         cli_shutdown(cli);
6309  out:
6310         return ret;
6311 }
6312
6313 /****************************************************************************
6314  Handle a message operation.
6315 ****************************************************************************/
6316
6317 static int do_message_op(struct user_auth_info *a_info)
6318 {
6319         NTSTATUS status;
6320
6321         if (lp_disable_netbios()) {
6322                 d_printf("NetBIOS over TCP disabled.\n");
6323                 return 1;
6324         }
6325
6326         status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
6327                                 port ? port : NBT_SMB_PORT, name_type,
6328                                 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
6329         if (!NT_STATUS_IS_OK(status)) {
6330                 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
6331                 return 1;
6332         }
6333
6334         cli_set_timeout(cli, io_timeout*1000);
6335         send_message(get_cmdline_auth_info_username(a_info));
6336         cli_shutdown(cli);
6337
6338         return 0;
6339 }
6340
6341 /****************************************************************************
6342   main program
6343 ****************************************************************************/
6344
6345 int main(int argc,char *argv[])
6346 {
6347         const char **const_argv = discard_const_p(const char *, argv);
6348         char *base_directory = NULL;
6349         int opt;
6350         char *query_host = NULL;
6351         bool message = false;
6352         static const char *new_name_resolve_order = NULL;
6353         poptContext pc;
6354         char *p;
6355         int rc = 0;
6356         bool tar_opt = false;
6357         bool service_opt = false;
6358         struct tar *tar_ctx = tar_get_ctx();
6359
6360         struct poptOption long_options[] = {
6361                 POPT_AUTOHELP
6362
6363                 {
6364                         .longName   = "name-resolve",
6365                         .shortName  = 'R',
6366                         .argInfo    = POPT_ARG_STRING,
6367                         .arg        = &new_name_resolve_order,
6368                         .val        = 'R',
6369                         .descrip    = "Use these name resolution services only",
6370                         .argDescrip = "NAME-RESOLVE-ORDER",
6371                 },
6372                 {
6373                         .longName   = "message",
6374                         .shortName  = 'M',
6375                         .argInfo    = POPT_ARG_STRING,
6376                         .arg        = NULL,
6377                         .val        = 'M',
6378                         .descrip    = "Send message",
6379                         .argDescrip = "HOST",
6380                 },
6381                 {
6382                         .longName   = "ip-address",
6383                         .shortName  = 'I',
6384                         .argInfo    = POPT_ARG_STRING,
6385                         .arg        = NULL,
6386                         .val        = 'I',
6387                         .descrip    = "Use this IP to connect to",
6388                         .argDescrip = "IP",
6389                 },
6390                 {
6391                         .longName   = "stderr",
6392                         .shortName  = 'E',
6393                         .argInfo    = POPT_ARG_NONE,
6394                         .arg        = NULL,
6395                         .val        = 'E',
6396                         .descrip    = "Write messages to stderr instead of stdout",
6397                 },
6398                 {
6399                         .longName   = "list",
6400                         .shortName  = 'L',
6401                         .argInfo    = POPT_ARG_STRING,
6402                         .arg        = NULL,
6403                         .val        = 'L',
6404                         .descrip    = "Get a list of shares available on a host",
6405                         .argDescrip = "HOST",
6406                 },
6407                 {
6408                         .longName   = "max-protocol",
6409                         .shortName  = 'm',
6410                         .argInfo    = POPT_ARG_STRING,
6411                         .arg        = NULL,
6412                         .val        = 'm',
6413                         .descrip    = "Set the max protocol level",
6414                         .argDescrip = "LEVEL",
6415                 },
6416                 {
6417                         .longName   = "tar",
6418                         .shortName  = 'T',
6419                         .argInfo    = POPT_ARG_STRING,
6420                         .arg        = NULL,
6421                         .val        = 'T',
6422                         .descrip    = "Command line tar",
6423                         .argDescrip = "<c|x>IXFvgbNan",
6424                 },
6425                 {
6426                         .longName   = "directory",
6427                         .shortName  = 'D',
6428                         .argInfo    = POPT_ARG_STRING,
6429                         .arg        = NULL,
6430                         .val        = 'D',
6431                         .descrip    = "Start from directory",
6432                         .argDescrip = "DIR",
6433                 },
6434                 {
6435                         .longName   = "command",
6436                         .shortName  = 'c',
6437                         .argInfo    = POPT_ARG_STRING,
6438                         .arg        = &cmdstr,
6439                         .val        = 'c',
6440                         .descrip    = "Execute semicolon separated commands",
6441                 },
6442                 {
6443                         .longName   = "send-buffer",
6444                         .shortName  = 'b',
6445                         .argInfo    = POPT_ARG_INT,
6446                         .arg        = &io_bufsize,
6447                         .val        = 'b',
6448                         .descrip    = "Changes the transmit/send buffer",
6449                         .argDescrip = "BYTES",
6450                 },
6451                 {
6452                         .longName   = "timeout",
6453                         .shortName  = 't',
6454                         .argInfo    = POPT_ARG_INT,
6455                         .arg        = &io_timeout,
6456                         .val        = 'b',
6457                         .descrip    = "Changes the per-operation timeout",
6458                         .argDescrip = "SECONDS",
6459                 },
6460                 {
6461                         .longName   = "port",
6462                         .shortName  = 'p',
6463                         .argInfo    = POPT_ARG_INT,
6464                         .arg        = &port,
6465                         .val        = 'p',
6466                         .descrip    = "Port to connect to",
6467                         .argDescrip = "PORT",
6468                 },
6469                 {
6470                         .longName   = "grepable",
6471                         .shortName  = 'g',
6472                         .argInfo    = POPT_ARG_NONE,
6473                         .arg        = NULL,
6474                         .val        = 'g',
6475                         .descrip    = "Produce grepable output",
6476                 },
6477                 {
6478                         .longName   = "quiet",
6479                         .shortName  = 'q',
6480                         .argInfo    = POPT_ARG_NONE,
6481                         .arg        = NULL,
6482                         .val        = 'q',
6483                         .descrip    = "Suppress help message",
6484                 },
6485                 {
6486                         .longName   = "browse",
6487                         .shortName  = 'B',
6488                         .argInfo    = POPT_ARG_NONE,
6489                         .arg        = NULL,
6490                         .val        = 'B',
6491                         .descrip    = "Browse SMB servers using DNS",
6492                 },
6493                 POPT_COMMON_SAMBA
6494                 POPT_COMMON_CONNECTION
6495                 POPT_COMMON_CREDENTIALS
6496                 POPT_TABLEEND
6497         };
6498         TALLOC_CTX *frame = talloc_stackframe();
6499
6500         if (!client_set_cur_dir("\\")) {
6501                 exit(ENOMEM);
6502         }
6503
6504         /* set default debug level to 1 regardless of what smb.conf sets */
6505         setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
6506         smb_init_locale();
6507
6508         lp_set_cmdline("log level", "1");
6509
6510         popt_common_credentials_set_ignore_missing_conf();
6511         popt_common_credentials_set_delay_post();
6512
6513         /* skip argv(0) */
6514         pc = poptGetContext("smbclient", argc, const_argv, long_options, 0);
6515         poptSetOtherOptionHelp(pc, "service <password>");
6516
6517         while ((opt = poptGetNextOpt(pc)) != -1) {
6518
6519                 /*
6520                  * if the tar option has been called previously, now
6521                  * we need to eat out the leftovers
6522                  */
6523                 /* I see no other way to keep things sane --SSS */
6524                 if (tar_opt == true) {
6525                         while (poptPeekArg(pc)) {
6526                                 poptGetArg(pc);
6527                         }
6528                         tar_opt = false;
6529                 }
6530
6531                 /* if the service has not yet been specified lets see if it is available in the popt stack */
6532                 if (!service_opt && poptPeekArg(pc)) {
6533                         service = talloc_strdup(frame, poptGetArg(pc));
6534                         if (!service) {
6535                                 exit(ENOMEM);
6536                         }
6537                         service_opt = true;
6538                 }
6539
6540                 /* if the service has already been retrieved then check if we have also a password */
6541                 if (service_opt
6542                     && (!get_cmdline_auth_info_got_pass(
6543                                 popt_get_cmdline_auth_info()))
6544                     && poptPeekArg(pc)) {
6545                         set_cmdline_auth_info_password(
6546                                 popt_get_cmdline_auth_info(), poptGetArg(pc));
6547                 }
6548
6549
6550                 switch (opt) {
6551                 case 'M':
6552                         /* Messages are sent to NetBIOS name type 0x3
6553                          * (Messenger Service).  Make sure we default
6554                          * to port 139 instead of port 445. srl,crh
6555                          */
6556                         name_type = 0x03;
6557                         desthost = talloc_strdup(frame,poptGetOptArg(pc));
6558                         if (!desthost) {
6559                                 exit(ENOMEM);
6560                         }
6561                         if( !port )
6562                                 port = NBT_SMB_PORT;
6563                         message = true;
6564                         break;
6565                 case 'I':
6566                         {
6567                                 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
6568                                         exit(1);
6569                                 }
6570                                 have_ip = true;
6571                                 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
6572                         }
6573                         break;
6574                 case 'E':
6575                         setup_logging("smbclient", DEBUG_STDERR );
6576                         display_set_stderr();
6577                         break;
6578
6579                 case 'L':
6580                         query_host = talloc_strdup(frame, poptGetOptArg(pc));
6581                         if (!query_host) {
6582                                 exit(ENOMEM);
6583                         }
6584                         break;
6585                 case 'm':
6586                         lp_set_cmdline("client max protocol", poptGetOptArg(pc));
6587                         break;
6588                 case 'T':
6589                         /* We must use old option processing for this. Find the
6590                          * position of the -T option in the raw argv[]. */
6591                         {
6592                                 int i;
6593
6594                                 for (i = 1; i < argc; i++) {
6595                                         if (strncmp("-T", argv[i],2)==0)
6596                                                 break;
6597                                 }
6598                                 i++;
6599                                 if (tar_parse_args(tar_ctx, poptGetOptArg(pc),
6600                                                    const_argv + i, argc - i)) {
6601                                         poptPrintUsage(pc, stderr, 0);
6602                                         exit(1);
6603                                 }
6604                         }
6605                         /* this must be the last option, mark we have parsed it so that we know we have */
6606                         tar_opt = true;
6607                         break;
6608                 case 'D':
6609                         base_directory = talloc_strdup(frame, poptGetOptArg(pc));
6610                         if (!base_directory) {
6611                                 exit(ENOMEM);
6612                         }
6613                         break;
6614                 case 'g':
6615                         grepable=true;
6616                         break;
6617                 case 'q':
6618                         quiet=true;
6619                         break;
6620                 case 'e':
6621                         smb_encrypt=true;
6622                         break;
6623                 case 'B':
6624                         return(do_smb_browse());
6625
6626                 }
6627         }
6628
6629         /* We may still have some leftovers after the last popt option has been called */
6630         if (tar_opt == true) {
6631                 while (poptPeekArg(pc)) {
6632                         poptGetArg(pc);
6633                 }
6634                 tar_opt = false;
6635         }
6636
6637         /* if the service has not yet been specified lets see if it is available in the popt stack */
6638         if (!service_opt && poptPeekArg(pc)) {
6639                 service = talloc_strdup(frame,poptGetArg(pc));
6640                 if (!service) {
6641                         exit(ENOMEM);
6642                 }
6643                 service_opt = true;
6644         }
6645
6646         /* if the service has already been retrieved then check if we have also a password */
6647         if (service_opt
6648             && !get_cmdline_auth_info_got_pass(popt_get_cmdline_auth_info())
6649             && poptPeekArg(pc)) {
6650                 set_cmdline_auth_info_password(popt_get_cmdline_auth_info(),
6651                                                poptGetArg(pc));
6652         }
6653
6654         if (service_opt && service) {
6655                 size_t len;
6656
6657                 /* Convert any '/' characters in the service name to '\' characters */
6658                 string_replace(service, '/','\\');
6659                 if (count_chars(service,'\\') < 3) {
6660                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
6661                         poptPrintUsage(pc, stderr, 0);
6662                         exit(1);
6663                 }
6664                 /* Remove trailing slashes */
6665                 len = strlen(service);
6666                 while(len > 0 && service[len - 1] == '\\') {
6667                         --len;
6668                         service[len] = '\0';
6669                 }
6670         }
6671
6672         if (!init_names()) {
6673                 fprintf(stderr, "init_names() failed\n");
6674                 exit(1);
6675         }
6676
6677         if(new_name_resolve_order)
6678                 lp_set_cmdline("name resolve order", new_name_resolve_order);
6679
6680         if (!tar_to_process(tar_ctx) && !query_host && !service && !message) {
6681                 poptPrintUsage(pc, stderr, 0);
6682                 exit(1);
6683         }
6684
6685         poptFreeContext(pc);
6686         popt_burn_cmdline_password(argc, argv);
6687
6688         DEBUG(3,("Client started (version %s).\n", samba_version_string()));
6689
6690         /* Ensure we have a password (or equivalent). */
6691         popt_common_credentials_post();
6692         smb_encrypt = get_cmdline_auth_info_smb_encrypt(
6693                         popt_get_cmdline_auth_info());
6694
6695         max_protocol = lp_client_max_protocol();
6696
6697         if (tar_to_process(tar_ctx)) {
6698                 if (cmdstr)
6699                         process_command_string(cmdstr);
6700                 rc = do_tar_op(base_directory);
6701         } else if (query_host && *query_host) {
6702                 char *qhost = query_host;
6703                 char *slash;
6704
6705                 while (*qhost == '\\' || *qhost == '/')
6706                         qhost++;
6707
6708                 if ((slash = strchr_m(qhost, '/'))
6709                     || (slash = strchr_m(qhost, '\\'))) {
6710                         *slash = 0;
6711                 }
6712
6713                 if ((p=strchr_m(qhost, '#'))) {
6714                         *p = 0;
6715                         p++;
6716                         sscanf(p, "%x", &name_type);
6717                 }
6718
6719                 rc = do_host_query(qhost);
6720         } else if (message) {
6721                 rc = do_message_op(popt_get_cmdline_auth_info());
6722         } else if (process(base_directory)) {
6723                 rc = 1;
6724         }
6725
6726         popt_free_cmdline_auth_info();
6727         TALLOC_FREE(frame);
6728         return rc;
6729 }