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