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