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