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