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