build: Remove SMB_STRUCT_DIR define
[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 = open(lname, O_WRONLY|O_CREAT, 0644);
1112                         if (handle >= 0) {
1113                                 start = 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 = 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         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 = 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                                         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                                 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         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)getpid());
2296         }
2297         if (strequal(lname,"-")) {
2298                 rname = talloc_asprintf(ctx,
2299                                 "stdin-%d",
2300                                 (int)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 /****************************************************************************
3467  Get the EA list of a file
3468 ****************************************************************************/
3469
3470 static int cmd_geteas(void)
3471 {
3472         TALLOC_CTX *ctx = talloc_tos();
3473         char *src = NULL;
3474         char *name = NULL;
3475         char *targetname = NULL;
3476         struct cli_state *targetcli;
3477         NTSTATUS status;
3478         size_t i, num_eas;
3479         struct ea_struct *eas;
3480
3481         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3482                 d_printf("geteas filename\n");
3483                 return 1;
3484         }
3485         src = talloc_asprintf(ctx,
3486                         "%s%s",
3487                         client_get_cur_dir(),
3488                         name);
3489         if (!src) {
3490                 return 1;
3491         }
3492
3493         status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3494                                   &targetname);
3495         if (!NT_STATUS_IS_OK(status)) {
3496                 d_printf("stat %s: %s\n", src, nt_errstr(status));
3497                 return 1;
3498         }
3499
3500         status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3501                                       &num_eas, &eas);
3502         if (!NT_STATUS_IS_OK(status)) {
3503                 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3504                 return 1;
3505         }
3506
3507         for (i=0; i<num_eas; i++) {
3508                 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3509                 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3510                                stdout);
3511                 d_printf("\n");
3512         }
3513
3514         TALLOC_FREE(eas);
3515
3516         return 0;
3517 }
3518
3519 /****************************************************************************
3520  Set an EA of a file
3521 ****************************************************************************/
3522
3523 static int cmd_setea(void)
3524 {
3525         TALLOC_CTX *ctx = talloc_tos();
3526         char *src = NULL;
3527         char *name = NULL;
3528         char *eaname = NULL;
3529         char *eavalue = NULL;
3530         char *targetname = NULL;
3531         struct cli_state *targetcli;
3532         NTSTATUS status;
3533
3534         if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3535             || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3536                 d_printf("setea filename eaname value\n");
3537                 return 1;
3538         }
3539         if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3540                 eavalue = talloc_strdup(ctx, "");
3541         }
3542         src = talloc_asprintf(ctx,
3543                         "%s%s",
3544                         client_get_cur_dir(),
3545                         name);
3546         if (!src) {
3547                 return 1;
3548         }
3549
3550         status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3551                                   &targetname);
3552         if (!NT_STATUS_IS_OK(status)) {
3553                 d_printf("stat %s: %s\n", src, nt_errstr(status));
3554                 return 1;
3555         }
3556
3557         status =  cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3558                                   strlen(eavalue));
3559         if (!NT_STATUS_IS_OK(status)) {
3560                 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3561                 return 1;
3562         }
3563
3564         return 0;
3565 }
3566
3567 /****************************************************************************
3568  UNIX stat.
3569 ****************************************************************************/
3570
3571 static int cmd_stat(void)
3572 {
3573         TALLOC_CTX *ctx = talloc_tos();
3574         char *src = NULL;
3575         char *name = NULL;
3576         char *targetname = NULL;
3577         struct cli_state *targetcli;
3578         fstring mode_str;
3579         SMB_STRUCT_STAT sbuf;
3580         struct tm *lt;
3581         time_t tmp_time;
3582         NTSTATUS status;
3583
3584         if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3585                 d_printf("stat file\n");
3586                 return 1;
3587         }
3588         src = talloc_asprintf(ctx,
3589                         "%s%s",
3590                         client_get_cur_dir(),
3591                         name);
3592         if (!src) {
3593                 return 1;
3594         }
3595
3596         status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3597                                   &targetname);
3598         if (!NT_STATUS_IS_OK(status)) {
3599                 d_printf("stat %s: %s\n", src, nt_errstr(status));
3600                 return 1;
3601         }
3602
3603         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3604                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3605                 return 1;
3606         }
3607
3608         status = cli_posix_stat(targetcli, targetname, &sbuf);
3609         if (!NT_STATUS_IS_OK(status)) {
3610                 d_printf("%s stat file %s\n",
3611                          nt_errstr(status), src);
3612                 return 1;
3613         }
3614
3615         /* Print out the stat values. */
3616         d_printf("File: %s\n", src);
3617         d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3618                 (double)sbuf.st_ex_size,
3619                 (unsigned int)sbuf.st_ex_blocks,
3620                 filetype_to_str(sbuf.st_ex_mode));
3621
3622 #if defined(S_ISCHR) && defined(S_ISBLK)
3623         if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3624                 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3625                         (double)sbuf.st_ex_ino,
3626                         (unsigned int)sbuf.st_ex_nlink,
3627                         unix_dev_major(sbuf.st_ex_rdev),
3628                         unix_dev_minor(sbuf.st_ex_rdev));
3629         } else
3630 #endif
3631                 d_printf("Inode: %.0f\tLinks: %u\n",
3632                         (double)sbuf.st_ex_ino,
3633                         (unsigned int)sbuf.st_ex_nlink);
3634
3635         d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3636                 ((int)sbuf.st_ex_mode & 0777),
3637                 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3638                 (unsigned int)sbuf.st_ex_uid,
3639                 (unsigned int)sbuf.st_ex_gid);
3640
3641         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3642         lt = localtime(&tmp_time);
3643         if (lt) {
3644                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3645         } else {
3646                 fstrcpy(mode_str, "unknown");
3647         }
3648         d_printf("Access: %s\n", mode_str);
3649
3650         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3651         lt = localtime(&tmp_time);
3652         if (lt) {
3653                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3654         } else {
3655                 fstrcpy(mode_str, "unknown");
3656         }
3657         d_printf("Modify: %s\n", mode_str);
3658
3659         tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3660         lt = localtime(&tmp_time);
3661         if (lt) {
3662                 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3663         } else {
3664                 fstrcpy(mode_str, "unknown");
3665         }
3666         d_printf("Change: %s\n", mode_str);
3667
3668         return 0;
3669 }
3670
3671
3672 /****************************************************************************
3673  UNIX chown.
3674 ****************************************************************************/
3675
3676 static int cmd_chown(void)
3677 {
3678         TALLOC_CTX *ctx = talloc_tos();
3679         char *src = NULL;
3680         uid_t uid;
3681         gid_t gid;
3682         char *buf, *buf2, *buf3;
3683         struct cli_state *targetcli;
3684         char *targetname = NULL;
3685         NTSTATUS status;
3686
3687         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3688             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3689             !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3690                 d_printf("chown uid gid file\n");
3691                 return 1;
3692         }
3693
3694         uid = (uid_t)atoi(buf);
3695         gid = (gid_t)atoi(buf2);
3696
3697         src = talloc_asprintf(ctx,
3698                         "%s%s",
3699                         client_get_cur_dir(),
3700                         buf3);
3701         if (!src) {
3702                 return 1;
3703         }
3704         status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3705                                   &targetname);
3706         if (!NT_STATUS_IS_OK(status)) {
3707                 d_printf("chown %s: %s\n", src, nt_errstr(status));
3708                 return 1;
3709         }
3710
3711         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3712                 d_printf("Server doesn't support UNIX CIFS calls.\n");
3713                 return 1;
3714         }
3715
3716         status = cli_posix_chown(targetcli, targetname, uid, gid);
3717         if (!NT_STATUS_IS_OK(status)) {
3718                 d_printf("%s chown file %s uid=%d, gid=%d\n",
3719                          nt_errstr(status), src, (int)uid, (int)gid);
3720                 return 1;
3721         }
3722
3723         return 0;
3724 }
3725
3726 /****************************************************************************
3727  Rename some file.
3728 ****************************************************************************/
3729
3730 static int cmd_rename(void)
3731 {
3732         TALLOC_CTX *ctx = talloc_tos();
3733         char *src, *dest;
3734         char *buf, *buf2;
3735         struct cli_state *targetcli;
3736         char *targetsrc;
3737         char *targetdest;
3738         NTSTATUS status;
3739
3740         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3741             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3742                 d_printf("rename <src> <dest>\n");
3743                 return 1;
3744         }
3745
3746         src = talloc_asprintf(ctx,
3747                         "%s%s",
3748                         client_get_cur_dir(),
3749                         buf);
3750         if (!src) {
3751                 return 1;
3752         }
3753
3754         dest = talloc_asprintf(ctx,
3755                         "%s%s",
3756                         client_get_cur_dir(),
3757                         buf2);
3758         if (!dest) {
3759                 return 1;
3760         }
3761
3762         status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3763                                   &targetsrc);
3764         if (!NT_STATUS_IS_OK(status)) {
3765                 d_printf("rename %s: %s\n", src, nt_errstr(status));
3766                 return 1;
3767         }
3768
3769         status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3770                                   &targetdest);
3771         if (!NT_STATUS_IS_OK(status)) {
3772                 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3773                 return 1;
3774         }
3775
3776         status = cli_rename(targetcli, targetsrc, targetdest);
3777         if (!NT_STATUS_IS_OK(status)) {
3778                 d_printf("%s renaming files %s -> %s \n",
3779                         nt_errstr(status),
3780                         targetsrc,
3781                         targetdest);
3782                 return 1;
3783         }
3784
3785         return 0;
3786 }
3787
3788 /****************************************************************************
3789  Print the volume name.
3790 ****************************************************************************/
3791
3792 static int cmd_volume(void)
3793 {
3794         char *volname;
3795         uint32_t serial_num;
3796         time_t create_date;
3797         NTSTATUS status;
3798
3799         status = cli_get_fs_volume_info(cli, talloc_tos(),
3800                                         &volname, &serial_num,
3801                                         &create_date);
3802         if (!NT_STATUS_IS_OK(status)) {
3803                 d_printf("Error %s getting volume info\n", nt_errstr(status));
3804                 return 1;
3805         }
3806
3807         d_printf("Volume: |%s| serial number 0x%x\n",
3808                         volname, (unsigned int)serial_num);
3809         return 0;
3810 }
3811
3812 /****************************************************************************
3813  Hard link files using the NT call.
3814 ****************************************************************************/
3815
3816 static int cmd_hardlink(void)
3817 {
3818         TALLOC_CTX *ctx = talloc_tos();
3819         char *src, *dest;
3820         char *buf, *buf2;
3821         struct cli_state *targetcli;
3822         char *targetname;
3823         NTSTATUS status;
3824
3825         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3826             !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3827                 d_printf("hardlink <src> <dest>\n");
3828                 return 1;
3829         }
3830
3831         src = talloc_asprintf(ctx,
3832                         "%s%s",
3833                         client_get_cur_dir(),
3834                         buf);
3835         if (!src) {
3836                 return 1;
3837         }
3838
3839         dest = talloc_asprintf(ctx,
3840                         "%s%s",
3841                         client_get_cur_dir(),
3842                         buf2);
3843         if (!dest) {
3844                 return 1;
3845         }
3846
3847         status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3848                                   &targetname);
3849         if (!NT_STATUS_IS_OK(status)) {
3850                 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
3851                 return 1;
3852         }
3853
3854         status = cli_nt_hardlink(targetcli, targetname, dest);
3855         if (!NT_STATUS_IS_OK(status)) {
3856                 d_printf("%s doing an NT hard link of files\n",
3857                          nt_errstr(status));
3858                 return 1;
3859         }
3860
3861         return 0;
3862 }
3863
3864 /****************************************************************************
3865  Toggle the prompt flag.
3866 ****************************************************************************/
3867
3868 static int cmd_prompt(void)
3869 {
3870         prompt = !prompt;
3871         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3872         return 1;
3873 }
3874
3875 /****************************************************************************
3876  Set the newer than time.
3877 ****************************************************************************/
3878
3879 static int cmd_newer(void)
3880 {
3881         TALLOC_CTX *ctx = talloc_tos();
3882         char *buf;
3883         bool ok;
3884         SMB_STRUCT_STAT sbuf;
3885
3886         ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3887         if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3888                 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3889                 DEBUG(1,("Getting files newer than %s",
3890                          time_to_asc(newer_than)));
3891         } else {
3892                 newer_than = 0;
3893         }
3894
3895         if (ok && newer_than == 0) {
3896                 d_printf("Error setting newer-than time\n");
3897                 return 1;
3898         }
3899
3900         return 0;
3901 }
3902
3903 /****************************************************************************
3904  Watch directory changes
3905 ****************************************************************************/
3906
3907 static int cmd_notify(void)
3908 {
3909         TALLOC_CTX *frame = talloc_stackframe();
3910         char *name, *buf;
3911         NTSTATUS status;
3912         uint16_t fnum;
3913
3914         name = talloc_strdup(talloc_tos(), client_get_cur_dir());
3915         if (name == NULL) {
3916                 goto fail;
3917         }
3918         if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
3919                 goto usage;
3920         }
3921         name = talloc_asprintf_append(name, "%s", buf);
3922         if (name == NULL) {
3923                 goto fail;
3924         }
3925         status = cli_ntcreate(
3926                 cli, name, 0, READ_CONTROL_ACCESS, 0,
3927                 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3928                 FILE_OPEN, 0, 0, &fnum);
3929         if (!NT_STATUS_IS_OK(status)) {
3930                 d_printf("Could not open file: %s\n", nt_errstr(status));
3931                 goto fail;
3932         }
3933
3934         while (1) {
3935                 uint32_t i, num_changes;
3936                 struct notify_change *changes;
3937
3938                 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
3939                                     true,
3940                                     talloc_tos(), &num_changes, &changes);
3941                 if (!NT_STATUS_IS_OK(status)) {
3942                         d_printf("notify returned %s\n",
3943                                  nt_errstr(status));
3944                         goto fail;
3945                 }
3946                 for (i=0; i<num_changes; i++) {
3947                         printf("%4.4x %s\n", changes[i].action,
3948                                changes[i].name);
3949                 }
3950                 TALLOC_FREE(changes);
3951         }
3952 usage:
3953         d_printf("notify <file>\n");
3954 fail:
3955         TALLOC_FREE(frame);
3956         return 1;
3957 }
3958
3959 /****************************************************************************
3960  Set the archive level.
3961 ****************************************************************************/
3962
3963 static int cmd_archive(void)
3964 {
3965         TALLOC_CTX *ctx = talloc_tos();
3966         char *buf;
3967
3968         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3969                 archive_level = atoi(buf);
3970         } else {
3971                 d_printf("Archive level is %d\n",archive_level);
3972         }
3973
3974         return 0;
3975 }
3976
3977 /****************************************************************************
3978  Toggle the backup_intent state.
3979 ****************************************************************************/
3980
3981 static int cmd_backup(void)
3982 {
3983         backup_intent = !backup_intent;
3984         cli_set_backup_intent(cli, backup_intent);
3985         DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
3986         return 1;
3987 }
3988
3989 /****************************************************************************
3990  Toggle the lowercaseflag.
3991 ****************************************************************************/
3992
3993 static int cmd_lowercase(void)
3994 {
3995         lowercase = !lowercase;
3996         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3997         return 0;
3998 }
3999
4000 /****************************************************************************
4001  Toggle the case sensitive flag.
4002 ****************************************************************************/
4003
4004 static int cmd_setcase(void)
4005 {
4006         bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4007
4008         cli_set_case_sensitive(cli, !orig_case_sensitive);
4009         DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4010                 "on":"off"));
4011         return 0;
4012 }
4013
4014 /****************************************************************************
4015  Toggle the showacls flag.
4016 ****************************************************************************/
4017
4018 static int cmd_showacls(void)
4019 {
4020         showacls = !showacls;
4021         DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4022         return 0;
4023 }
4024
4025
4026 /****************************************************************************
4027  Toggle the recurse flag.
4028 ****************************************************************************/
4029
4030 static int cmd_recurse(void)
4031 {
4032         recurse = !recurse;
4033         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4034         return 0;
4035 }
4036
4037 /****************************************************************************
4038  Toggle the translate flag.
4039 ****************************************************************************/
4040
4041 static int cmd_translate(void)
4042 {
4043         translation = !translation;
4044         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4045                  translation?"on":"off"));
4046         return 0;
4047 }
4048
4049 /****************************************************************************
4050  Do the lcd command.
4051  ****************************************************************************/
4052
4053 static int cmd_lcd(void)
4054 {
4055         TALLOC_CTX *ctx = talloc_tos();
4056         char *buf;
4057         char *d;
4058
4059         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4060                 if (chdir(buf) == -1) {
4061                         d_printf("chdir to %s failed (%s)\n",
4062                                 buf, strerror(errno));
4063                 }
4064         }
4065         d = sys_getwd();
4066         if (!d) {
4067                 return 1;
4068         }
4069         DEBUG(2,("the local directory is now %s\n",d));
4070         SAFE_FREE(d);
4071         return 0;
4072 }
4073
4074 /****************************************************************************
4075  Get a file restarting at end of local file.
4076  ****************************************************************************/
4077
4078 static int cmd_reget(void)
4079 {
4080         TALLOC_CTX *ctx = talloc_tos();
4081         char *local_name = NULL;
4082         char *remote_name = NULL;
4083         char *fname = NULL;
4084         char *p = NULL;
4085
4086         remote_name = talloc_strdup(ctx, client_get_cur_dir());
4087         if (!remote_name) {
4088                 return 1;
4089         }
4090
4091         if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4092                 d_printf("reget <filename>\n");
4093                 return 1;
4094         }
4095         remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4096         if (!remote_name) {
4097                 return 1;
4098         }
4099         remote_name = clean_name(ctx,remote_name);
4100         if (!remote_name) {
4101                 return 1;
4102         }
4103
4104         local_name = fname;
4105         next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4106         if (p) {
4107                 local_name = p;
4108         }
4109
4110         return do_get(remote_name, local_name, true);
4111 }
4112
4113 /****************************************************************************
4114  Put a file restarting at end of local file.
4115  ****************************************************************************/
4116
4117 static int cmd_reput(void)
4118 {
4119         TALLOC_CTX *ctx = talloc_tos();
4120         char *local_name = NULL;
4121         char *remote_name = NULL;
4122         char *buf;
4123         SMB_STRUCT_STAT st;
4124
4125         remote_name = talloc_strdup(ctx, client_get_cur_dir());
4126         if (!remote_name) {
4127                 return 1;
4128         }
4129
4130         if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4131                 d_printf("reput <filename>\n");
4132                 return 1;
4133         }
4134
4135         if (!file_exist_stat(local_name, &st, false)) {
4136                 d_printf("%s does not exist\n", local_name);
4137                 return 1;
4138         }
4139
4140         if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4141                 remote_name = talloc_asprintf_append(remote_name,
4142                                                 "%s", buf);
4143         } else {
4144                 remote_name = talloc_asprintf_append(remote_name,
4145                                                 "%s", local_name);
4146         }
4147         if (!remote_name) {
4148                 return 1;
4149         }
4150
4151         remote_name = clean_name(ctx, remote_name);
4152         if (!remote_name) {
4153                 return 1;
4154         }
4155
4156         return do_put(remote_name, local_name, true);
4157 }
4158
4159 /****************************************************************************
4160  List a share name.
4161  ****************************************************************************/
4162
4163 static void browse_fn(const char *name, uint32 m,
4164                       const char *comment, void *state)
4165 {
4166         const char *typestr = "";
4167
4168         switch (m & 7) {
4169         case STYPE_DISKTREE:
4170                 typestr = "Disk";
4171                 break;
4172         case STYPE_PRINTQ:
4173                 typestr = "Printer";
4174                 break;
4175         case STYPE_DEVICE:
4176                 typestr = "Device";
4177                 break;
4178         case STYPE_IPC:
4179                 typestr = "IPC";
4180                 break;
4181         }
4182         /* FIXME: If the remote machine returns non-ascii characters
4183            in any of these fields, they can corrupt the output.  We
4184            should remove them. */
4185         if (!grepable) {
4186                 d_printf("\t%-15s %-10.10s%s\n",
4187                         name,typestr,comment);
4188         } else {
4189                 d_printf ("%s|%s|%s\n",typestr,name,comment);
4190         }
4191 }
4192
4193 static bool browse_host_rpc(bool sort)
4194 {
4195         NTSTATUS status;
4196         struct rpc_pipe_client *pipe_hnd = NULL;
4197         TALLOC_CTX *frame = talloc_stackframe();
4198         WERROR werr;
4199         struct srvsvc_NetShareInfoCtr info_ctr;
4200         struct srvsvc_NetShareCtr1 ctr1;
4201         uint32_t resume_handle = 0;
4202         uint32_t total_entries = 0;
4203         int i;
4204         struct dcerpc_binding_handle *b;
4205
4206         status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4207                                           &pipe_hnd);
4208
4209         if (!NT_STATUS_IS_OK(status)) {
4210                 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4211                            nt_errstr(status)));
4212                 TALLOC_FREE(frame);
4213                 return false;
4214         }
4215
4216         b = pipe_hnd->binding_handle;
4217
4218         ZERO_STRUCT(info_ctr);
4219         ZERO_STRUCT(ctr1);
4220
4221         info_ctr.level = 1;
4222         info_ctr.ctr.ctr1 = &ctr1;
4223
4224         status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4225                                               pipe_hnd->desthost,
4226                                               &info_ctr,
4227                                               0xffffffff,
4228                                               &total_entries,
4229                                               &resume_handle,
4230                                               &werr);
4231
4232         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4233                 TALLOC_FREE(pipe_hnd);
4234                 TALLOC_FREE(frame);
4235                 return false;
4236         }
4237
4238         for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4239                 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4240                 browse_fn(info.name, info.type, info.comment, NULL);
4241         }
4242
4243         TALLOC_FREE(pipe_hnd);
4244         TALLOC_FREE(frame);
4245         return true;
4246 }
4247
4248 /****************************************************************************
4249  Try and browse available connections on a host.
4250 ****************************************************************************/
4251
4252 static bool browse_host(bool sort)
4253 {
4254         int ret;
4255         if (!grepable) {
4256                 d_printf("\n\tSharename       Type      Comment\n");
4257                 d_printf("\t---------       ----      -------\n");
4258         }
4259
4260         if (browse_host_rpc(sort)) {
4261                 return true;
4262         }
4263
4264         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4265                 NTSTATUS status = cli_nt_error(cli);
4266                 d_printf("Error returning browse list: %s\n",
4267                          nt_errstr(status));
4268         }
4269
4270         return (ret != -1);
4271 }
4272
4273 /****************************************************************************
4274  List a server name.
4275 ****************************************************************************/
4276
4277 static void server_fn(const char *name, uint32 m,
4278                       const char *comment, void *state)
4279 {
4280
4281         if (!grepable){
4282                 d_printf("\t%-16s     %s\n", name, comment);
4283         } else {
4284                 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4285         }
4286 }
4287
4288 /****************************************************************************
4289  Try and browse available connections on a host.
4290 ****************************************************************************/
4291
4292 static bool list_servers(const char *wk_grp)
4293 {
4294         fstring state;
4295
4296         if (!cli->server_domain)
4297                 return false;
4298
4299         if (!grepable) {
4300                 d_printf("\n\tServer               Comment\n");
4301                 d_printf("\t---------            -------\n");
4302         };
4303         fstrcpy( state, "Server" );
4304         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4305                           state);
4306
4307         if (!grepable) {
4308                 d_printf("\n\tWorkgroup            Master\n");
4309                 d_printf("\t---------            -------\n");
4310         };
4311
4312         fstrcpy( state, "Workgroup" );
4313         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4314                           server_fn, state);
4315         return true;
4316 }
4317
4318 /****************************************************************************
4319  Print or set current VUID
4320 ****************************************************************************/
4321
4322 static int cmd_vuid(void)
4323 {
4324         TALLOC_CTX *ctx = talloc_tos();
4325         char *buf;
4326
4327         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4328                 d_printf("Current VUID is %d\n",
4329                          cli_state_get_uid(cli));
4330                 return 0;
4331         }
4332
4333         cli_state_set_uid(cli, atoi(buf));
4334         return 0;
4335 }
4336
4337 /****************************************************************************
4338  Setup a new VUID, by issuing a session setup
4339 ****************************************************************************/
4340
4341 static int cmd_logon(void)
4342 {
4343         TALLOC_CTX *ctx = talloc_tos();
4344         char *l_username, *l_password;
4345         NTSTATUS nt_status;
4346
4347         if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4348                 d_printf("logon <username> [<password>]\n");
4349                 return 0;
4350         }
4351
4352         if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4353                 char *pass = getpass("Password: ");
4354                 if (pass) {
4355                         l_password = talloc_strdup(ctx,pass);
4356                 }
4357         }
4358         if (!l_password) {
4359                 return 1;
4360         }
4361
4362         nt_status = cli_session_setup(cli, l_username,
4363                                       l_password, strlen(l_password),
4364                                       l_password, strlen(l_password),
4365                                       lp_workgroup());
4366         if (!NT_STATUS_IS_OK(nt_status)) {
4367                 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4368                 return -1;
4369         }
4370
4371         d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4372         return 0;
4373 }
4374
4375 /**
4376  * close the session
4377  */
4378
4379 static int cmd_logoff(void)
4380 {
4381         NTSTATUS status;
4382
4383         status = cli_ulogoff(cli);
4384         if (!NT_STATUS_IS_OK(status)) {
4385                 d_printf("logoff failed: %s\n", nt_errstr(status));
4386                 return -1;
4387         }
4388
4389         d_printf("logoff successful\n");
4390         return 0;
4391 }
4392
4393
4394 /**
4395  * tree connect (connect to a share)
4396  */
4397
4398 static int cmd_tcon(void)
4399 {
4400         TALLOC_CTX *ctx = talloc_tos();
4401         char *sharename;
4402         NTSTATUS status;
4403
4404         if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4405                 d_printf("tcon <sharename>\n");
4406                 return 0;
4407         }
4408
4409         if (!sharename) {
4410                 return 1;
4411         }
4412
4413         status = cli_tree_connect(cli, sharename, "?????", "", 0);
4414         if (!NT_STATUS_IS_OK(status)) {
4415                 d_printf("tcon failed: %s\n", nt_errstr(status));
4416                 return -1;
4417         }
4418
4419         talloc_free(sharename);
4420
4421         d_printf("tcon to %s successful, tid: %u\n", sharename,
4422                  cli_state_get_tid(cli));
4423         return 0;
4424 }
4425
4426 /**
4427  * tree disconnect (disconnect from a share)
4428  */
4429
4430 static int cmd_tdis(void)
4431 {
4432         NTSTATUS status;
4433
4434         status = cli_tdis(cli);
4435         if (!NT_STATUS_IS_OK(status)) {
4436                 d_printf("tdis failed: %s\n", nt_errstr(status));
4437                 return -1;
4438         }
4439
4440         d_printf("tdis successful\n");
4441         return 0;
4442 }
4443
4444
4445 /**
4446  * get or set tid
4447  */
4448
4449 static int cmd_tid(void)
4450 {
4451         TALLOC_CTX *ctx = talloc_tos();
4452         char *tid_str;
4453
4454         if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4455                 if (cli_state_has_tcon(cli)) {
4456                         d_printf("current tid is %d\n", cli_state_get_tid(cli));
4457                 } else {
4458                         d_printf("no tcon currently\n");
4459                 }
4460         } else {
4461                 uint16_t tid = atoi(tid_str);
4462                 cli_state_set_tid(cli, tid);
4463         }
4464
4465         return 0;
4466 }
4467
4468
4469 /****************************************************************************
4470  list active connections
4471 ****************************************************************************/
4472
4473 static int cmd_list_connect(void)
4474 {
4475         cli_cm_display(cli);
4476         return 0;
4477 }
4478
4479 /****************************************************************************
4480  display the current active client connection
4481 ****************************************************************************/
4482
4483 static int cmd_show_connect( void )
4484 {
4485         TALLOC_CTX *ctx = talloc_tos();
4486         struct cli_state *targetcli;
4487         char *targetpath;
4488         NTSTATUS status;
4489
4490         status = cli_resolve_path(ctx, "", auth_info, cli,
4491                                   client_get_cur_dir(), &targetcli,
4492                                   &targetpath);
4493         if (!NT_STATUS_IS_OK(status)) {
4494                 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4495                 return 1;
4496         }
4497
4498         d_printf("//%s/%s\n", cli_state_remote_name(targetcli), targetcli->share);
4499         return 0;
4500 }
4501
4502 /****************************************************************************
4503  iosize command
4504 ***************************************************************************/
4505
4506 int cmd_iosize(void)
4507 {
4508         TALLOC_CTX *ctx = talloc_tos();
4509         char *buf;
4510         int iosize;
4511
4512         if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4513                 if (!smb_encrypt) {
4514                         d_printf("iosize <n> or iosize 0x<n>. "
4515                                 "Minimum is 16384 (0x4000), "
4516                                 "max is 16776960 (0xFFFF00)\n");
4517                 } else {
4518                         d_printf("iosize <n> or iosize 0x<n>. "
4519                                 "(Encrypted connection) ,"
4520                                 "Minimum is 16384 (0x4000), "
4521                                 "max is 130048 (0x1FC00)\n");
4522                 }
4523                 return 1;
4524         }
4525
4526         iosize = strtol(buf,NULL,0);
4527         if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4528                 d_printf("iosize out of range for encrypted "
4529                         "connection (min = 16384 (0x4000), "
4530                         "max = 130048 (0x1FC00)");
4531                 return 1;
4532         } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4533                 d_printf("iosize out of range (min = 16384 (0x4000), "
4534                         "max = 16776960 (0xFFFF00)");
4535                 return 1;
4536         }
4537
4538         io_bufsize = iosize;
4539         d_printf("iosize is now %d\n", io_bufsize);
4540         return 0;
4541 }
4542
4543 /****************************************************************************
4544 history
4545 ****************************************************************************/
4546 static int cmd_history(void)
4547 {
4548 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4549         HIST_ENTRY **hlist;
4550         int i;
4551
4552         hlist = history_list();
4553
4554         for (i = 0; hlist && hlist[i]; i++) {
4555                 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4556         }
4557 #else
4558         DEBUG(0,("no history without readline support\n"));
4559 #endif
4560
4561         return 0;
4562 }
4563
4564 /* Some constants for completing filename arguments */
4565
4566 #define COMPL_NONE        0          /* No completions */
4567 #define COMPL_REMOTE      1          /* Complete remote filename */
4568 #define COMPL_LOCAL       2          /* Complete local filename */
4569
4570 /* This defines the commands supported by this client.
4571  * NOTE: The "!" must be the last one in the list because it's fn pointer
4572  *       field is NULL, and NULL in that field is used in process_tok()
4573  *       (below) to indicate the end of the list.  crh
4574  */
4575 static struct {
4576         const char *name;
4577         int (*fn)(void);
4578         const char *description;
4579         char compl_args[2];      /* Completion argument info */
4580 } commands[] = {
4581   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4582   {"allinfo",cmd_allinfo,"<file> show all available info",
4583    {COMPL_NONE,COMPL_NONE}},
4584   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4585   {"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}},
4586   {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},  
4587   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4588   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4589   {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4590   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4591   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4592   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4593   {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4594   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4595   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4596   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4597   {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4598   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4599   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4600   {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4601   {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4602    {COMPL_REMOTE, COMPL_LOCAL}},
4603   {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4604   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4605   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4606   {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4607   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4608   {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4609   {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4610   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
4611   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4612   {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4613   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4614   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4615   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4616   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4617   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
4618   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4619   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4620   {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4621   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4622   {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4623   {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4624   {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4625   {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4626   {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4627   {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4628   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4629   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
4630   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4631   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4632   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4633   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4634   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4635   {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4636   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4637   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
4638   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4639   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4640   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4641   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4642   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4643   {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},  
4644   {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4645    {COMPL_REMOTE, COMPL_LOCAL}},
4646   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4647   {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4648   {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4649   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4650   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4651   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4652   {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4653   {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4654   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4655   {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4656   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4657   {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4658   {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4659   {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
4660   {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
4661   {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
4662   {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
4663   {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4664
4665   /* Yes, this must be here, see crh's comment above. */
4666   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4667   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4668 };
4669
4670 /*******************************************************************
4671  Lookup a command string in the list of commands, including
4672  abbreviations.
4673 ******************************************************************/
4674
4675 static int process_tok(char *tok)
4676 {
4677         int i = 0, matches = 0;
4678         int cmd=0;
4679         int tok_len = strlen(tok);
4680
4681         while (commands[i].fn != NULL) {
4682                 if (strequal(commands[i].name,tok)) {
4683                         matches = 1;
4684                         cmd = i;
4685                         break;
4686                 } else if (strnequal(commands[i].name, tok, tok_len)) {
4687                         matches++;
4688                         cmd = i;
4689                 }
4690                 i++;
4691         }
4692
4693         if (matches == 0)
4694                 return(-1);
4695         else if (matches == 1)
4696                 return(cmd);
4697         else
4698                 return(-2);
4699 }
4700
4701 /****************************************************************************
4702  Help.
4703 ****************************************************************************/
4704
4705 static int cmd_help(void)
4706 {
4707         TALLOC_CTX *ctx = talloc_tos();
4708         int i=0,j;
4709         char *buf;
4710
4711         if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4712                 if ((i = process_tok(buf)) >= 0)
4713                         d_printf("HELP %s:\n\t%s\n\n",
4714                                 commands[i].name,commands[i].description);
4715         } else {
4716                 while (commands[i].description) {
4717                         for (j=0; commands[i].description && (j<5); j++) {
4718                                 d_printf("%-15s",commands[i].name);
4719                                 i++;
4720                         }
4721                         d_printf("\n");
4722                 }
4723         }
4724         return 0;
4725 }
4726
4727 /****************************************************************************
4728  Process a -c command string.
4729 ****************************************************************************/
4730
4731 static int process_command_string(const char *cmd_in)
4732 {
4733         TALLOC_CTX *ctx = talloc_tos();
4734         char *cmd = talloc_strdup(ctx, cmd_in);
4735         int rc = 0;
4736
4737         if (!cmd) {
4738                 return 1;
4739         }
4740         /* establish the connection if not already */
4741
4742         if (!cli) {
4743                 NTSTATUS status;
4744
4745                 status = cli_cm_open(talloc_tos(), NULL,
4746                                      have_ip ? dest_ss_str : desthost,
4747                                      service, auth_info,
4748                                      true, smb_encrypt,
4749                                      max_protocol, port, name_type,
4750                                      &cli);
4751                 if (!NT_STATUS_IS_OK(status)) {
4752                         return 1;
4753                 }
4754         }
4755
4756         while (cmd[0] != '\0')    {
4757                 char *line;
4758                 char *p;
4759                 char *tok;
4760                 int i;
4761
4762                 if ((p = strchr_m(cmd, ';')) == 0) {
4763                         line = cmd;
4764                         cmd += strlen(cmd);
4765                 } else {
4766                         *p = '\0';
4767                         line = cmd;
4768                         cmd = p + 1;
4769                 }
4770
4771                 /* and get the first part of the command */
4772                 cmd_ptr = line;
4773                 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4774                         continue;
4775                 }
4776
4777                 if ((i = process_tok(tok)) >= 0) {
4778                         rc = commands[i].fn();
4779                 } else if (i == -2) {
4780                         d_printf("%s: command abbreviation ambiguous\n",tok);
4781                 } else {
4782                         d_printf("%s: command not found\n",tok);
4783                 }
4784         }
4785
4786         return rc;
4787 }
4788
4789 #define MAX_COMPLETIONS 100
4790
4791 struct completion_remote {
4792         char *dirmask;
4793         char **matches;
4794         int count, samelen;
4795         const char *text;
4796         int len;
4797 };
4798
4799 static NTSTATUS completion_remote_filter(const char *mnt,
4800                                 struct file_info *f,
4801                                 const char *mask,
4802                                 void *state)
4803 {
4804         struct completion_remote *info = (struct completion_remote *)state;
4805
4806         if (info->count >= MAX_COMPLETIONS - 1) {
4807                 return NT_STATUS_OK;
4808         }
4809         if (strncmp(info->text, f->name, info->len) != 0) {
4810                 return NT_STATUS_OK;
4811         }
4812         if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4813                 return NT_STATUS_OK;
4814         }
4815
4816         if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4817                 info->matches[info->count] = SMB_STRDUP(f->name);
4818         else {
4819                 TALLOC_CTX *ctx = talloc_stackframe();
4820                 char *tmp;
4821
4822                 tmp = talloc_strdup(ctx,info->dirmask);
4823                 if (!tmp) {
4824                         TALLOC_FREE(ctx);
4825                         return NT_STATUS_NO_MEMORY;
4826                 }
4827                 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4828                 if (!tmp) {
4829                         TALLOC_FREE(ctx);
4830                         return NT_STATUS_NO_MEMORY;
4831                 }
4832                 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4833                         tmp = talloc_asprintf_append(tmp, "%s",
4834                                                      CLI_DIRSEP_STR);
4835                 }
4836                 if (!tmp) {
4837                         TALLOC_FREE(ctx);
4838                         return NT_STATUS_NO_MEMORY;
4839                 }
4840                 info->matches[info->count] = SMB_STRDUP(tmp);
4841                 TALLOC_FREE(ctx);
4842         }
4843         if (info->matches[info->count] == NULL) {
4844                 return NT_STATUS_OK;
4845         }
4846         if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4847                 smb_readline_ca_char(0);
4848         }
4849         if (info->count == 1) {
4850                 info->samelen = strlen(info->matches[info->count]);
4851         } else {
4852                 while (strncmp(info->matches[info->count],
4853                                info->matches[info->count-1],
4854                                info->samelen) != 0) {
4855                         info->samelen--;
4856                 }
4857         }
4858         info->count++;
4859         return NT_STATUS_OK;
4860 }
4861
4862 static char **remote_completion(const char *text, int len)
4863 {
4864         TALLOC_CTX *ctx = talloc_stackframe();
4865         char *dirmask = NULL;
4866         char *targetpath = NULL;
4867         struct cli_state *targetcli = NULL;
4868         int i;
4869         struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4870         NTSTATUS status;
4871
4872         /* can't have non-static initialisation on Sun CC, so do it
4873            at run time here */
4874         info.samelen = len;
4875         info.text = text;
4876         info.len = len;
4877
4878         info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4879         if (!info.matches) {
4880                 TALLOC_FREE(ctx);
4881                 return NULL;
4882         }
4883
4884         /*
4885          * We're leaving matches[0] free to fill it later with the text to
4886          * display: Either the one single match or the longest common subset
4887          * of the matches.
4888          */
4889         info.matches[0] = NULL;
4890         info.count = 1;
4891
4892         for (i = len-1; i >= 0; i--) {
4893                 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4894                         break;
4895                 }
4896         }
4897
4898         info.text = text+i+1;
4899         info.samelen = info.len = len-i-1;
4900
4901         if (i > 0) {
4902                 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4903                 if (!info.dirmask) {
4904                         goto cleanup;
4905                 }
4906                 strncpy(info.dirmask, text, i+1);
4907                 info.dirmask[i+1] = 0;
4908                 dirmask = talloc_asprintf(ctx,
4909                                         "%s%*s*",
4910                                         client_get_cur_dir(),
4911                                         i-1,
4912                                         text);
4913         } else {
4914                 info.dirmask = SMB_STRDUP("");
4915                 if (!info.dirmask) {
4916                         goto cleanup;
4917                 }
4918                 dirmask = talloc_asprintf(ctx,
4919                                         "%s*",
4920                                         client_get_cur_dir());
4921         }
4922         if (!dirmask) {
4923                 goto cleanup;
4924         }
4925
4926         status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
4927                                   &targetpath);
4928         if (!NT_STATUS_IS_OK(status)) {
4929                 goto cleanup;
4930         }
4931         status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4932                           completion_remote_filter, (void *)&info);
4933         if (!NT_STATUS_IS_OK(status)) {
4934                 goto cleanup;
4935         }
4936
4937         if (info.count == 1) {
4938                 /*
4939                  * No matches at all, NULL indicates there is nothing
4940                  */
4941                 SAFE_FREE(info.matches[0]);
4942                 SAFE_FREE(info.matches);
4943                 TALLOC_FREE(ctx);
4944                 return NULL;
4945         }
4946
4947         if (info.count == 2) {
4948                 /*
4949                  * Exactly one match in matches[1], indicate this is the one
4950                  * in matches[0].
4951                  */
4952                 info.matches[0] = info.matches[1];
4953                 info.matches[1] = NULL;
4954                 info.count -= 1;
4955                 TALLOC_FREE(ctx);
4956                 return info.matches;
4957         }
4958
4959         /*
4960          * We got more than one possible match, set the result to the maximum
4961          * common subset
4962          */
4963
4964         info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4965         info.matches[info.count] = NULL;
4966         return info.matches;
4967
4968 cleanup:
4969         for (i = 0; i < info.count; i++) {
4970                 SAFE_FREE(info.matches[i]);
4971         }
4972         SAFE_FREE(info.matches);
4973         SAFE_FREE(info.dirmask);
4974         TALLOC_FREE(ctx);
4975         return NULL;
4976 }
4977
4978 static char **completion_fn(const char *text, int start, int end)
4979 {
4980         smb_readline_ca_char(' ');
4981
4982         if (start) {
4983                 const char *buf, *sp;
4984                 int i;
4985                 char compl_type;
4986
4987                 buf = smb_readline_get_line_buffer();
4988                 if (buf == NULL)
4989                         return NULL;
4990
4991                 sp = strchr(buf, ' ');
4992                 if (sp == NULL)
4993                         return NULL;
4994
4995                 for (i = 0; commands[i].name; i++) {
4996                         if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4997                             (commands[i].name[sp - buf] == 0)) {
4998                                 break;
4999                         }
5000                 }
5001                 if (commands[i].name == NULL)
5002                         return NULL;
5003
5004                 while (*sp == ' ')
5005                         sp++;
5006
5007                 if (sp == (buf + start))
5008                         compl_type = commands[i].compl_args[0];
5009                 else
5010                         compl_type = commands[i].compl_args[1];
5011
5012                 if (compl_type == COMPL_REMOTE)
5013                         return remote_completion(text, end - start);
5014                 else /* fall back to local filename completion */
5015                         return NULL;
5016         } else {
5017                 char **matches;
5018                 int i, len, samelen = 0, count=1;
5019
5020                 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5021                 if (!matches) {
5022                         return NULL;
5023                 }
5024                 matches[0] = NULL;
5025
5026                 len = strlen(text);
5027                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5028                         if (strncmp(text, commands[i].name, len) == 0) {
5029                                 matches[count] = SMB_STRDUP(commands[i].name);
5030                                 if (!matches[count])
5031                                         goto cleanup;
5032                                 if (count == 1)
5033                                         samelen = strlen(matches[count]);
5034                                 else
5035                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
5036                                                 samelen--;
5037                                 count++;
5038                         }
5039                 }
5040
5041                 switch (count) {
5042                 case 0: /* should never happen */
5043                 case 1:
5044                         goto cleanup;
5045                 case 2:
5046                         matches[0] = SMB_STRDUP(matches[1]);
5047                         break;
5048                 default:
5049                         matches[0] = (char *)SMB_MALLOC(samelen+1);
5050                         if (!matches[0])
5051                                 goto cleanup;
5052                         strncpy(matches[0], matches[1], samelen);
5053                         matches[0][samelen] = 0;
5054                 }
5055                 matches[count] = NULL;
5056                 return matches;
5057
5058 cleanup:
5059                 for (i = 0; i < count; i++)
5060                         free(matches[i]);
5061
5062                 free(matches);
5063                 return NULL;
5064         }
5065 }
5066
5067 static bool finished;
5068
5069 /****************************************************************************
5070  Make sure we swallow keepalives during idle time.
5071 ****************************************************************************/
5072
5073 static void readline_callback(void)
5074 {
5075         static time_t last_t;
5076         struct timespec now;
5077         time_t t;
5078         NTSTATUS status;
5079         unsigned char garbage[16];
5080
5081         clock_gettime_mono(&now);
5082         t = now.tv_sec;
5083
5084         if (t - last_t < 5)
5085                 return;
5086
5087         last_t = t;
5088
5089         /* Ping the server to keep the connection alive using SMBecho. */
5090         memset(garbage, 0xf0, sizeof(garbage));
5091         status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5092         if (NT_STATUS_IS_OK(status)) {
5093                 return;
5094         }
5095
5096         if (!cli_state_is_connected(cli)) {
5097                 DEBUG(0,("SMBecho failed (%s). The connection is "
5098                          "disconnected now\n", nt_errstr(status)));
5099                 finished = true;
5100                 smb_readline_done();
5101         }
5102 }
5103
5104 /****************************************************************************
5105  Process commands on stdin.
5106 ****************************************************************************/
5107
5108 static int process_stdin(void)
5109 {
5110         int rc = 0;
5111
5112         while (!finished) {
5113                 TALLOC_CTX *frame = talloc_stackframe();
5114                 char *tok = NULL;
5115                 char *the_prompt = NULL;
5116                 char *line = NULL;
5117                 int i;
5118
5119                 /* display a prompt */
5120                 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5121                         TALLOC_FREE(frame);
5122                         break;
5123                 }
5124                 line = smb_readline(the_prompt, readline_callback, completion_fn);
5125                 SAFE_FREE(the_prompt);
5126                 if (!line) {
5127                         TALLOC_FREE(frame);
5128                         break;
5129                 }
5130
5131                 /* special case - first char is ! */
5132                 if (*line == '!') {
5133                         if (system(line + 1) == -1) {
5134                                 d_printf("system() command %s failed.\n",
5135                                         line+1);
5136                         }
5137                         SAFE_FREE(line);
5138                         TALLOC_FREE(frame);
5139                         continue;
5140                 }
5141
5142                 /* and get the first part of the command */
5143                 cmd_ptr = line;
5144                 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5145                         TALLOC_FREE(frame);
5146                         SAFE_FREE(line);
5147                         continue;
5148                 }
5149
5150                 if ((i = process_tok(tok)) >= 0) {
5151                         rc = commands[i].fn();
5152                 } else if (i == -2) {
5153                         d_printf("%s: command abbreviation ambiguous\n",tok);
5154                 } else {
5155                         d_printf("%s: command not found\n",tok);
5156                 }
5157                 SAFE_FREE(line);
5158                 TALLOC_FREE(frame);
5159         }
5160         return rc;
5161 }
5162
5163 /****************************************************************************
5164  Process commands from the client.
5165 ****************************************************************************/
5166
5167 static int process(const char *base_directory)
5168 {
5169         int rc = 0;
5170         NTSTATUS status;
5171
5172         status = cli_cm_open(talloc_tos(), NULL,
5173                              have_ip ? dest_ss_str : desthost,
5174                              service, auth_info, true, smb_encrypt,
5175                              max_protocol, port, name_type, &cli);
5176         if (!NT_STATUS_IS_OK(status)) {
5177                 return 1;
5178         }
5179
5180         if (base_directory && *base_directory) {
5181                 rc = do_cd(base_directory);
5182                 if (rc) {
5183                         cli_shutdown(cli);
5184                         return rc;
5185                 }
5186         }
5187
5188         if (cmdstr) {
5189                 rc = process_command_string(cmdstr);
5190         } else {
5191                 process_stdin();
5192         }
5193
5194         cli_shutdown(cli);
5195         return rc;
5196 }
5197
5198 /****************************************************************************
5199  Handle a -L query.
5200 ****************************************************************************/
5201
5202 static int do_host_query(const char *query_host)
5203 {
5204         NTSTATUS status;
5205
5206         status = cli_cm_open(talloc_tos(), NULL,
5207                              have_ip ? dest_ss_str : query_host,
5208                              "IPC$", auth_info, true, smb_encrypt,
5209                              max_protocol, port, name_type, &cli);
5210         if (!NT_STATUS_IS_OK(status)) {
5211                 return 1;
5212         }
5213
5214         browse_host(true);
5215
5216         /* Ensure that the host can do IPv4 */
5217
5218         if (!interpret_addr(query_host)) {
5219                 struct sockaddr_storage ss;
5220                 if (interpret_string_addr(&ss, query_host, 0) &&
5221                                 (ss.ss_family != AF_INET)) {
5222                         d_printf("%s is an IPv6 address -- no workgroup available\n",
5223                                 query_host);
5224                         return 1;
5225                 }
5226         }
5227
5228         if (port != NBT_SMB_PORT) {
5229
5230                 /* Workgroups simply don't make sense over anything
5231                    else but port 139... */
5232
5233                 cli_shutdown(cli);
5234                 status = cli_cm_open(talloc_tos(), NULL,
5235                                      have_ip ? dest_ss_str : query_host,
5236                                      "IPC$", auth_info, true, smb_encrypt,
5237                                      max_protocol, NBT_SMB_PORT, name_type,
5238                                      &cli);
5239                 if (!NT_STATUS_IS_OK(status)) {
5240                         cli = NULL;
5241                 }
5242         }
5243
5244         if (cli == NULL) {
5245                 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5246                 return 1;
5247         }
5248
5249         list_servers(lp_workgroup());
5250
5251         cli_shutdown(cli);
5252
5253         return(0);
5254 }
5255
5256 /****************************************************************************
5257  Handle a tar operation.
5258 ****************************************************************************/
5259
5260 static int do_tar_op(const char *base_directory)
5261 {
5262         int ret;
5263
5264         /* do we already have a connection? */
5265         if (!cli) {
5266                 NTSTATUS status;
5267
5268                 status = cli_cm_open(talloc_tos(), NULL,
5269                                      have_ip ? dest_ss_str : desthost,
5270                                      service, auth_info, true, smb_encrypt,
5271                                      max_protocol, port, name_type, &cli);
5272                 if (!NT_STATUS_IS_OK(status)) {
5273                         return 1;
5274                 }
5275         }
5276
5277         recurse=true;
5278
5279         if (base_directory && *base_directory)  {
5280                 ret = do_cd(base_directory);
5281                 if (ret) {
5282                         cli_shutdown(cli);
5283                         return ret;
5284                 }
5285         }
5286
5287         ret=process_tar();
5288
5289         cli_shutdown(cli);
5290
5291         return(ret);
5292 }
5293
5294 /****************************************************************************
5295  Handle a message operation.
5296 ****************************************************************************/
5297
5298 static int do_message_op(struct user_auth_info *a_info)
5299 {
5300         NTSTATUS status;
5301
5302         status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5303                                 port ? port : NBT_SMB_PORT, name_type,
5304                                 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5305         if (!NT_STATUS_IS_OK(status)) {
5306                 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5307                 return 1;
5308         }
5309
5310         send_message(get_cmdline_auth_info_username(a_info));
5311         cli_shutdown(cli);
5312
5313         return 0;
5314 }
5315
5316 /****************************************************************************
5317   main program
5318 ****************************************************************************/
5319
5320  int main(int argc,char *argv[])
5321 {
5322         char *base_directory = NULL;
5323         int opt;
5324         char *query_host = NULL;
5325         bool message = false;
5326         static const char *new_name_resolve_order = NULL;
5327         poptContext pc;
5328         char *p;
5329         int rc = 0;
5330         bool tar_opt = false;
5331         bool service_opt = false;
5332         struct poptOption long_options[] = {
5333                 POPT_AUTOHELP
5334
5335                 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5336                 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5337                 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5338                 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5339                 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5340                 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5341                 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5342                 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5343                 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" }, 
5344                 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5345                 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5346                 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5347                 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5348                 POPT_COMMON_SAMBA
5349                 POPT_COMMON_CONNECTION
5350                 POPT_COMMON_CREDENTIALS
5351                 POPT_TABLEEND
5352         };
5353         TALLOC_CTX *frame = talloc_stackframe();
5354
5355         if (!client_set_cur_dir("\\")) {
5356                 exit(ENOMEM);
5357         }
5358
5359         /* set default debug level to 1 regardless of what smb.conf sets */
5360         setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5361         load_case_tables();
5362
5363         lp_set_cmdline("log level", "1");
5364
5365         auth_info = user_auth_info_init(frame);
5366         if (auth_info == NULL) {
5367                 exit(1);
5368         }
5369         popt_common_set_auth_info(auth_info);
5370
5371         /* skip argv(0) */
5372         pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5373         poptSetOtherOptionHelp(pc, "service <password>");
5374
5375         while ((opt = poptGetNextOpt(pc)) != -1) {
5376
5377                 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5378                 /* I see no other way to keep things sane --SSS */
5379                 if (tar_opt == true) {
5380                         while (poptPeekArg(pc)) {
5381                                 poptGetArg(pc);
5382                         }
5383                         tar_opt = false;
5384                 }
5385
5386                 /* if the service has not yet been specified lets see if it is available in the popt stack */
5387                 if (!service_opt && poptPeekArg(pc)) {
5388                         service = talloc_strdup(frame, poptGetArg(pc));
5389                         if (!service) {
5390                                 exit(ENOMEM);
5391                         }
5392                         service_opt = true;
5393                 }
5394
5395                 /* if the service has already been retrieved then check if we have also a password */
5396                 if (service_opt
5397                     && (!get_cmdline_auth_info_got_pass(auth_info))
5398                     && poptPeekArg(pc)) {
5399                         set_cmdline_auth_info_password(auth_info,
5400                                                        poptGetArg(pc));
5401                 }
5402
5403                 switch (opt) {
5404                 case 'M':
5405                         /* Messages are sent to NetBIOS name type 0x3
5406                          * (Messenger Service).  Make sure we default
5407                          * to port 139 instead of port 445. srl,crh
5408                          */
5409                         name_type = 0x03;
5410                         desthost = talloc_strdup(frame,poptGetOptArg(pc));
5411                         if (!desthost) {
5412                                 exit(ENOMEM);
5413                         }
5414                         if( !port )
5415                                 port = NBT_SMB_PORT;
5416                         message = true;
5417                         break;
5418                 case 'I':
5419                         {
5420                                 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5421                                         exit(1);
5422                                 }
5423                                 have_ip = true;
5424                                 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5425                         }
5426                         break;
5427                 case 'E':
5428                         setup_logging("smbclient", DEBUG_STDERR );
5429                         display_set_stderr();
5430                         break;
5431
5432                 case 'L':
5433                         query_host = talloc_strdup(frame, poptGetOptArg(pc));
5434                         if (!query_host) {
5435                                 exit(ENOMEM);
5436                         }
5437                         break;
5438                 case 'm':
5439                         max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5440                         break;
5441                 case 'T':
5442                         /* We must use old option processing for this. Find the
5443                          * position of the -T option in the raw argv[]. */
5444                         {
5445                                 int i;
5446                                 for (i = 1; i < argc; i++) {
5447                                         if (strncmp("-T", argv[i],2)==0)
5448                                                 break;
5449                                 }
5450                                 i++;
5451                                 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5452                                         poptPrintUsage(pc, stderr, 0);
5453                                         exit(1);
5454                                 }
5455                         }
5456                         /* this must be the last option, mark we have parsed it so that we know we have */
5457                         tar_opt = true;
5458                         break;
5459                 case 'D':
5460                         base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5461                         if (!base_directory) {
5462                                 exit(ENOMEM);
5463                         }
5464                         break;
5465                 case 'g':
5466                         grepable=true;
5467                         break;
5468                 case 'e':
5469                         smb_encrypt=true;
5470                         break;
5471                 case 'B':
5472                         return(do_smb_browse());
5473
5474                 }
5475         }
5476
5477         /* We may still have some leftovers after the last popt option has been called */
5478         if (tar_opt == true) {
5479                 while (poptPeekArg(pc)) {
5480                         poptGetArg(pc);
5481                 }
5482                 tar_opt = false;
5483         }
5484
5485         /* if the service has not yet been specified lets see if it is available in the popt stack */
5486         if (!service_opt && poptPeekArg(pc)) {
5487                 service = talloc_strdup(frame,poptGetArg(pc));
5488                 if (!service) {
5489                         exit(ENOMEM);
5490                 }
5491                 service_opt = true;
5492         }
5493
5494         /* if the service has already been retrieved then check if we have also a password */
5495         if (service_opt
5496             && !get_cmdline_auth_info_got_pass(auth_info)
5497             && poptPeekArg(pc)) {
5498                 set_cmdline_auth_info_password(auth_info,
5499                                                poptGetArg(pc));
5500         }
5501
5502         if ( override_logfile )
5503                 setup_logging( lp_logfile(), DEBUG_FILE );
5504
5505         if (!lp_load_client(get_dyn_CONFIGFILE())) {
5506                 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5507                         argv[0], get_dyn_CONFIGFILE());
5508         }
5509
5510         if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5511             !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5512                 exit(-1);
5513         }
5514
5515         load_interfaces();
5516
5517         if (service_opt && service) {
5518                 size_t len;
5519
5520                 /* Convert any '/' characters in the service name to '\' characters */
5521                 string_replace(service, '/','\\');
5522                 if (count_chars(service,'\\') < 3) {
5523                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
5524                         poptPrintUsage(pc, stderr, 0);
5525                         exit(1);
5526                 }
5527                 /* Remove trailing slashes */
5528                 len = strlen(service);
5529                 while(len > 0 && service[len - 1] == '\\') {
5530                         --len;
5531                         service[len] = '\0';
5532                 }
5533         }
5534
5535         smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5536         if (!init_names()) {
5537                 fprintf(stderr, "init_names() failed\n");
5538                 exit(1);
5539         }
5540
5541         if(new_name_resolve_order)
5542                 lp_set_name_resolve_order(new_name_resolve_order);
5543
5544         if (!tar_type && !query_host && !service && !message) {
5545                 poptPrintUsage(pc, stderr, 0);
5546                 exit(1);
5547         }
5548
5549         poptFreeContext(pc);
5550
5551         DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5552
5553         /* Ensure we have a password (or equivalent). */
5554         set_cmdline_auth_info_getpass(auth_info);
5555
5556         if (tar_type) {
5557                 if (cmdstr)
5558                         process_command_string(cmdstr);
5559                 return do_tar_op(base_directory);
5560         }
5561
5562         if (query_host && *query_host) {
5563                 char *qhost = query_host;
5564                 char *slash;
5565
5566                 while (*qhost == '\\' || *qhost == '/')
5567                         qhost++;
5568
5569                 if ((slash = strchr_m(qhost, '/'))
5570                     || (slash = strchr_m(qhost, '\\'))) {
5571                         *slash = 0;
5572                 }
5573
5574                 if ((p=strchr_m(qhost, '#'))) {
5575                         *p = 0;
5576                         p++;
5577                         sscanf(p, "%x", &name_type);
5578                 }
5579
5580                 return do_host_query(qhost);
5581         }
5582
5583         if (message) {
5584                 return do_message_op(auth_info);
5585         }
5586
5587         if (process(base_directory)) {
5588                 return 1;
5589         }
5590
5591         TALLOC_FREE(frame);
5592         return rc;
5593 }