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