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