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