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