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