talloc: Convert error cecking macros into fns
[Samba.git] / source3 / client / client.c
blob842b3b6185fda03140a8f0f917c0b65ddb620b0d
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
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.
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.
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/>.
24 #include "includes.h"
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
30 #include "../lib/util/select.h"
31 #include "system/readline.h"
32 #include "../libcli/smbreadline/smbreadline.h"
33 #include "../libcli/security/security.h"
34 #include "system/select.h"
35 #include "libsmb/libsmb.h"
36 #include "libsmb/clirap.h"
37 #include "trans2.h"
38 #include "libsmb/nmblib.h"
39 #include "include/ntioctl.h"
40 #include "../libcli/smb/smbXcli_base.h"
42 #ifndef REGISTER
43 #define REGISTER 0
44 #endif
46 extern int do_smb_browse(void); /* mDNS browsing */
48 extern bool override_logfile;
49 extern char tar_type;
51 static int port = 0;
52 static char *service;
53 static char *desthost;
54 static bool grepable = false;
55 static char *cmdstr = NULL;
56 const char *cmd_ptr = NULL;
58 static int io_bufsize = 524288;
60 static int name_type = 0x20;
61 static int max_protocol = PROTOCOL_NT1;
63 static int process_tok(char *tok);
64 static int cmd_help(void);
66 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
68 /* 30 second timeout on most commands */
69 #define CLIENT_TIMEOUT (30*1000)
70 #define SHORT_TIMEOUT (5*1000)
72 /* value for unused fid field in trans2 secondary request */
73 #define FID_UNUSED (0xFFFF)
75 time_t newer_than = 0;
76 static int archive_level = 0;
78 static bool translation = false;
79 static bool have_ip;
81 /* clitar bits insert */
82 extern int blocksize;
83 extern bool tar_inc;
84 extern bool tar_reset;
85 /* clitar bits end */
87 static bool prompt = true;
89 static bool recurse = false;
90 static bool showacls = false;
91 bool lowercase = false;
92 static bool backup_intent = false;
94 static struct sockaddr_storage dest_ss;
95 static char dest_ss_str[INET6_ADDRSTRLEN];
97 #define SEPARATORS " \t\n\r"
99 static bool abort_mget = true;
101 /* timing globals */
102 uint64_t get_total_size = 0;
103 unsigned int get_total_time_ms = 0;
104 static uint64_t put_total_size = 0;
105 static unsigned int put_total_time_ms = 0;
107 /* totals globals */
108 static double dir_total;
110 /* encrypted state. */
111 static bool smb_encrypt;
113 /* root cli_state connection */
115 struct cli_state *cli;
117 static char CLI_DIRSEP_CHAR = '\\';
118 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
120 /* Authentication for client connections. */
121 struct user_auth_info *auth_info;
123 /* Accessor functions for directory paths. */
124 static char *fileselection;
125 static const char *client_get_fileselection(void)
127 if (fileselection) {
128 return fileselection;
130 return "";
133 static const char *client_set_fileselection(const char *new_fs)
135 SAFE_FREE(fileselection);
136 if (new_fs) {
137 fileselection = SMB_STRDUP(new_fs);
139 return client_get_fileselection();
142 static char *cwd;
143 static const char *client_get_cwd(void)
145 if (cwd) {
146 return cwd;
148 return CLI_DIRSEP_STR;
151 static const char *client_set_cwd(const char *new_cwd)
153 SAFE_FREE(cwd);
154 if (new_cwd) {
155 cwd = SMB_STRDUP(new_cwd);
157 return client_get_cwd();
160 static char *cur_dir;
161 const char *client_get_cur_dir(void)
163 if (cur_dir) {
164 return cur_dir;
166 return CLI_DIRSEP_STR;
169 const char *client_set_cur_dir(const char *newdir)
171 SAFE_FREE(cur_dir);
172 if (newdir) {
173 cur_dir = SMB_STRDUP(newdir);
175 return client_get_cur_dir();
178 /****************************************************************************
179 Put up a yes/no prompt.
180 ****************************************************************************/
182 static bool yesno(const char *p)
184 char ans[20];
185 printf("%s",p);
187 if (!fgets(ans,sizeof(ans)-1,stdin))
188 return(False);
190 if (*ans == 'y' || *ans == 'Y')
191 return(True);
193 return(False);
196 /****************************************************************************
197 Write to a local file with CR/LF->LF translation if appropriate. Return the
198 number taken from the buffer. This may not equal the number written.
199 ****************************************************************************/
201 static int writefile(int f, char *b, int n)
203 int i;
205 if (!translation) {
206 return write(f,b,n);
209 i = 0;
210 while (i < n) {
211 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
212 b++;i++;
214 if (write(f, b, 1) != 1) {
215 break;
217 b++;
218 i++;
221 return(i);
224 /****************************************************************************
225 Read from a file with LF->CR/LF translation if appropriate. Return the
226 number read. read approx n bytes.
227 ****************************************************************************/
229 static int readfile(uint8_t *b, int n, XFILE *f)
231 int i;
232 int c;
234 if (!translation)
235 return x_fread(b,1,n,f);
237 i = 0;
238 while (i < (n - 1)) {
239 if ((c = x_getc(f)) == EOF) {
240 break;
243 if (c == '\n') { /* change all LFs to CR/LF */
244 b[i++] = '\r';
247 b[i++] = c;
250 return(i);
253 struct push_state {
254 XFILE *f;
255 off_t nread;
258 static size_t push_source(uint8_t *buf, size_t n, void *priv)
260 struct push_state *state = (struct push_state *)priv;
261 int result;
263 if (x_feof(state->f)) {
264 return 0;
267 result = readfile(buf, n, state->f);
268 state->nread += result;
269 return result;
272 /****************************************************************************
273 Send a message.
274 ****************************************************************************/
276 static void send_message(const char *username)
278 char buf[1600];
279 NTSTATUS status;
280 int i;
282 d_printf("Type your message, ending it with a Control-D\n");
284 i = 0;
285 while (i<sizeof(buf)-2) {
286 int c = fgetc(stdin);
287 if (c == EOF) {
288 break;
290 if (c == '\n') {
291 buf[i++] = '\r';
293 buf[i++] = c;
295 buf[i] = '\0';
297 status = cli_message(cli, desthost, username, buf);
298 if (!NT_STATUS_IS_OK(status)) {
299 d_fprintf(stderr, "cli_message returned %s\n",
300 nt_errstr(status));
304 /****************************************************************************
305 Check the space on a device.
306 ****************************************************************************/
308 static int do_dskattr(void)
310 int total, bsize, avail;
311 struct cli_state *targetcli = NULL;
312 char *targetpath = NULL;
313 TALLOC_CTX *ctx = talloc_tos();
314 NTSTATUS status;
316 status = cli_resolve_path(ctx, "", auth_info, cli,
317 client_get_cur_dir(), &targetcli,
318 &targetpath);
319 if (!NT_STATUS_IS_OK(status)) {
320 d_printf("Error in dskattr: %s\n", nt_errstr(status));
321 return 1;
324 status = cli_dskattr(targetcli, &bsize, &total, &avail);
325 if (!NT_STATUS_IS_OK(status)) {
326 d_printf("Error in dskattr: %s\n", nt_errstr(status));
327 return 1;
330 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
331 total, bsize, avail);
333 return 0;
336 /****************************************************************************
337 Show cd/pwd.
338 ****************************************************************************/
340 static int cmd_pwd(void)
342 d_printf("Current directory is %s",service);
343 d_printf("%s\n",client_get_cur_dir());
344 return 0;
347 /****************************************************************************
348 Ensure name has correct directory separators.
349 ****************************************************************************/
351 static void normalize_name(char *newdir)
353 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
354 string_replace(newdir,'/','\\');
358 /****************************************************************************
359 Change directory - inner section.
360 ****************************************************************************/
362 static int do_cd(const char *new_dir)
364 char *newdir = NULL;
365 char *saved_dir = NULL;
366 char *new_cd = NULL;
367 char *targetpath = NULL;
368 struct cli_state *targetcli = NULL;
369 SMB_STRUCT_STAT sbuf;
370 uint32 attributes;
371 int ret = 1;
372 TALLOC_CTX *ctx = talloc_stackframe();
373 NTSTATUS status;
375 newdir = talloc_strdup(ctx, new_dir);
376 if (!newdir) {
377 TALLOC_FREE(ctx);
378 return 1;
381 normalize_name(newdir);
383 /* Save the current directory in case the new directory is invalid */
385 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
386 if (!saved_dir) {
387 TALLOC_FREE(ctx);
388 return 1;
391 if (*newdir == CLI_DIRSEP_CHAR) {
392 client_set_cur_dir(newdir);
393 new_cd = newdir;
394 } else {
395 new_cd = talloc_asprintf(ctx, "%s%s",
396 client_get_cur_dir(),
397 newdir);
398 if (!new_cd) {
399 goto out;
403 /* Ensure cur_dir ends in a DIRSEP */
404 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
405 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
406 if (!new_cd) {
407 goto out;
410 client_set_cur_dir(new_cd);
412 new_cd = clean_name(ctx, new_cd);
413 client_set_cur_dir(new_cd);
415 status = cli_resolve_path(ctx, "", auth_info, cli, new_cd,
416 &targetcli, &targetpath);
417 if (!NT_STATUS_IS_OK(status)) {
418 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
419 client_set_cur_dir(saved_dir);
420 goto out;
423 if (strequal(targetpath,CLI_DIRSEP_STR )) {
424 TALLOC_FREE(ctx);
425 return 0;
428 /* Use a trans2_qpathinfo to test directories for modern servers.
429 Except Win9x doesn't support the qpathinfo_basic() call..... */
431 if (smbXcli_conn_protocol(targetcli->conn) > PROTOCOL_LANMAN2 && !targetcli->win95) {
433 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
434 &attributes);
435 if (!NT_STATUS_IS_OK(status)) {
436 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
437 client_set_cur_dir(saved_dir);
438 goto out;
441 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
442 d_printf("cd %s: not a directory\n", new_cd);
443 client_set_cur_dir(saved_dir);
444 goto out;
446 } else {
448 targetpath = talloc_asprintf(ctx,
449 "%s%s",
450 targetpath,
451 CLI_DIRSEP_STR );
452 if (!targetpath) {
453 client_set_cur_dir(saved_dir);
454 goto out;
456 targetpath = clean_name(ctx, targetpath);
457 if (!targetpath) {
458 client_set_cur_dir(saved_dir);
459 goto out;
462 status = cli_chkpath(targetcli, targetpath);
463 if (!NT_STATUS_IS_OK(status)) {
464 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
465 client_set_cur_dir(saved_dir);
466 goto out;
470 ret = 0;
472 out:
474 TALLOC_FREE(ctx);
475 return ret;
478 /****************************************************************************
479 Change directory.
480 ****************************************************************************/
482 static int cmd_cd(void)
484 char *buf = NULL;
485 int rc = 0;
487 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
488 rc = do_cd(buf);
489 } else {
490 d_printf("Current directory is %s\n",client_get_cur_dir());
493 return rc;
496 /****************************************************************************
497 Change directory.
498 ****************************************************************************/
500 static int cmd_cd_oneup(void)
502 return do_cd("..");
505 /*******************************************************************
506 Decide if a file should be operated on.
507 ********************************************************************/
509 static bool do_this_one(struct file_info *finfo)
511 if (!finfo->name) {
512 return false;
515 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
516 return true;
519 if (*client_get_fileselection() &&
520 !mask_match(finfo->name,client_get_fileselection(),false)) {
521 DEBUG(3,("mask_match %s failed\n", finfo->name));
522 return false;
525 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
526 DEBUG(3,("newer_than %s failed\n", finfo->name));
527 return false;
530 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
531 DEBUG(3,("archive %s failed\n", finfo->name));
532 return false;
535 return true;
538 /****************************************************************************
539 Display info about a file.
540 ****************************************************************************/
542 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
543 const char *dir)
545 time_t t;
546 TALLOC_CTX *ctx = talloc_tos();
547 NTSTATUS status = NT_STATUS_OK;
549 if (!do_this_one(finfo)) {
550 return NT_STATUS_OK;
553 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
554 if (!showacls) {
555 d_printf(" %-30s%7.7s %8.0f %s",
556 finfo->name,
557 attrib_string(talloc_tos(), finfo->mode),
558 (double)finfo->size,
559 time_to_asc(t));
560 dir_total += finfo->size;
561 } else {
562 char *afname = NULL;
563 uint16_t fnum;
565 /* skip if this is . or .. */
566 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
567 return NT_STATUS_OK;
568 /* create absolute filename for cli_ntcreate() FIXME */
569 afname = talloc_asprintf(ctx,
570 "%s%s%s",
571 dir,
572 CLI_DIRSEP_STR,
573 finfo->name);
574 if (!afname) {
575 return NT_STATUS_NO_MEMORY;
577 /* print file meta date header */
578 d_printf( "FILENAME:%s\n", finfo->name);
579 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
580 d_printf( "SIZE:%.0f\n", (double)finfo->size);
581 d_printf( "MTIME:%s", time_to_asc(t));
582 status = cli_ntcreate(cli_state, afname, 0,
583 CREATE_ACCESS_READ, 0,
584 FILE_SHARE_READ|FILE_SHARE_WRITE,
585 FILE_OPEN, 0x0, 0x0, &fnum);
586 if (!NT_STATUS_IS_OK(status)) {
587 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
588 afname, nt_errstr(status)));
589 } else {
590 struct security_descriptor *sd = NULL;
591 status = cli_query_secdesc(cli_state, fnum,
592 ctx, &sd);
593 if (!NT_STATUS_IS_OK(status)) {
594 DEBUG( 0, ("display_finfo() failed to "
595 "get security descriptor: %s",
596 nt_errstr(status)));
597 } else {
598 display_sec_desc(sd);
600 TALLOC_FREE(sd);
602 TALLOC_FREE(afname);
604 return status;
607 /****************************************************************************
608 Accumulate size of a file.
609 ****************************************************************************/
611 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
612 const char *dir)
614 if (do_this_one(finfo)) {
615 dir_total += finfo->size;
617 return NT_STATUS_OK;
620 static bool do_list_recurse;
621 static bool do_list_dirs;
622 static char *do_list_queue = 0;
623 static long do_list_queue_size = 0;
624 static long do_list_queue_start = 0;
625 static long do_list_queue_end = 0;
626 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
627 const char *dir);
629 /****************************************************************************
630 Functions for do_list_queue.
631 ****************************************************************************/
634 * The do_list_queue is a NUL-separated list of strings stored in a
635 * char*. Since this is a FIFO, we keep track of the beginning and
636 * ending locations of the data in the queue. When we overflow, we
637 * double the size of the char*. When the start of the data passes
638 * the midpoint, we move everything back. This is logically more
639 * complex than a linked list, but easier from a memory management
640 * angle. In any memory error condition, do_list_queue is reset.
641 * Functions check to ensure that do_list_queue is non-NULL before
642 * accessing it.
645 static void reset_do_list_queue(void)
647 SAFE_FREE(do_list_queue);
648 do_list_queue_size = 0;
649 do_list_queue_start = 0;
650 do_list_queue_end = 0;
653 static void init_do_list_queue(void)
655 reset_do_list_queue();
656 do_list_queue_size = 1024;
657 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
658 if (do_list_queue == 0) {
659 d_printf("malloc fail for size %d\n",
660 (int)do_list_queue_size);
661 reset_do_list_queue();
662 } else {
663 memset(do_list_queue, 0, do_list_queue_size);
667 static void adjust_do_list_queue(void)
670 * If the starting point of the queue is more than half way through,
671 * move everything toward the beginning.
674 if (do_list_queue == NULL) {
675 DEBUG(4,("do_list_queue is empty\n"));
676 do_list_queue_start = do_list_queue_end = 0;
677 return;
680 if (do_list_queue_start == do_list_queue_end) {
681 DEBUG(4,("do_list_queue is empty\n"));
682 do_list_queue_start = do_list_queue_end = 0;
683 *do_list_queue = '\0';
684 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
685 DEBUG(4,("sliding do_list_queue backward\n"));
686 memmove(do_list_queue,
687 do_list_queue + do_list_queue_start,
688 do_list_queue_end - do_list_queue_start);
689 do_list_queue_end -= do_list_queue_start;
690 do_list_queue_start = 0;
694 static void add_to_do_list_queue(const char *entry)
696 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
697 while (new_end > do_list_queue_size) {
698 do_list_queue_size *= 2;
699 DEBUG(4,("enlarging do_list_queue to %d\n",
700 (int)do_list_queue_size));
701 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
702 if (! do_list_queue) {
703 d_printf("failure enlarging do_list_queue to %d bytes\n",
704 (int)do_list_queue_size);
705 reset_do_list_queue();
706 } else {
707 memset(do_list_queue + do_list_queue_size / 2,
708 0, do_list_queue_size / 2);
711 if (do_list_queue) {
712 strlcpy_base(do_list_queue + do_list_queue_end,
713 entry, do_list_queue, do_list_queue_size);
714 do_list_queue_end = new_end;
715 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
716 entry, (int)do_list_queue_start, (int)do_list_queue_end));
720 static char *do_list_queue_head(void)
722 return do_list_queue + do_list_queue_start;
725 static void remove_do_list_queue_head(void)
727 if (do_list_queue_end > do_list_queue_start) {
728 do_list_queue_start += strlen(do_list_queue_head()) + 1;
729 adjust_do_list_queue();
730 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
731 (int)do_list_queue_start, (int)do_list_queue_end));
735 static int do_list_queue_empty(void)
737 return (! (do_list_queue && *do_list_queue));
740 /****************************************************************************
741 A helper for do_list.
742 ****************************************************************************/
744 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
745 const char *mask, void *state)
747 struct cli_state *cli_state = (struct cli_state *)state;
748 TALLOC_CTX *ctx = talloc_tos();
749 char *dir = NULL;
750 char *dir_end = NULL;
751 NTSTATUS status = NT_STATUS_OK;
753 /* Work out the directory. */
754 dir = talloc_strdup(ctx, mask);
755 if (!dir) {
756 return NT_STATUS_NO_MEMORY;
758 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
759 *dir_end = '\0';
762 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
763 if (do_list_dirs && do_this_one(f)) {
764 status = do_list_fn(cli_state, f, dir);
765 if (!NT_STATUS_IS_OK(status)) {
766 return status;
769 if (do_list_recurse &&
770 f->name &&
771 !strequal(f->name,".") &&
772 !strequal(f->name,"..")) {
773 char *mask2 = NULL;
774 char *p = NULL;
776 if (!f->name[0]) {
777 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
778 TALLOC_FREE(dir);
779 return NT_STATUS_UNSUCCESSFUL;
782 mask2 = talloc_asprintf(ctx,
783 "%s%s",
784 mntpoint,
785 mask);
786 if (!mask2) {
787 TALLOC_FREE(dir);
788 return NT_STATUS_NO_MEMORY;
790 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
791 if (p) {
792 p[1] = 0;
793 } else {
794 mask2[0] = '\0';
796 mask2 = talloc_asprintf_append(mask2,
797 "%s%s*",
798 f->name,
799 CLI_DIRSEP_STR);
800 if (!mask2) {
801 TALLOC_FREE(dir);
802 return NT_STATUS_NO_MEMORY;
804 add_to_do_list_queue(mask2);
805 TALLOC_FREE(mask2);
807 TALLOC_FREE(dir);
808 return NT_STATUS_OK;
811 if (do_this_one(f)) {
812 status = do_list_fn(cli_state, f, dir);
814 TALLOC_FREE(dir);
815 return status;
818 /****************************************************************************
819 A wrapper around cli_list that adds recursion.
820 ****************************************************************************/
822 NTSTATUS do_list(const char *mask,
823 uint16 attribute,
824 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
825 const char *dir),
826 bool rec,
827 bool dirs)
829 static int in_do_list = 0;
830 TALLOC_CTX *ctx = talloc_tos();
831 struct cli_state *targetcli = NULL;
832 char *targetpath = NULL;
833 NTSTATUS ret_status = NT_STATUS_OK;
834 NTSTATUS status = NT_STATUS_OK;
836 if (in_do_list && rec) {
837 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
838 exit(1);
841 in_do_list = 1;
843 do_list_recurse = rec;
844 do_list_dirs = dirs;
845 do_list_fn = fn;
847 if (rec) {
848 init_do_list_queue();
849 add_to_do_list_queue(mask);
851 while (!do_list_queue_empty()) {
853 * Need to copy head so that it doesn't become
854 * invalid inside the call to cli_list. This
855 * would happen if the list were expanded
856 * during the call.
857 * Fix from E. Jay Berkenbilt (ejb@ql.org)
859 char *head = talloc_strdup(ctx, do_list_queue_head());
861 if (!head) {
862 return NT_STATUS_NO_MEMORY;
865 /* check for dfs */
867 status = cli_resolve_path(ctx, "", auth_info, cli,
868 head, &targetcli,
869 &targetpath);
870 if (!NT_STATUS_IS_OK(status)) {
871 d_printf("do_list: [%s] %s\n", head,
872 nt_errstr(status));
873 remove_do_list_queue_head();
874 continue;
877 status = cli_list(targetcli, targetpath, attribute,
878 do_list_helper, targetcli);
879 if (!NT_STATUS_IS_OK(status)) {
880 d_printf("%s listing %s\n",
881 nt_errstr(status), targetpath);
882 ret_status = status;
884 remove_do_list_queue_head();
885 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
886 char *next_file = do_list_queue_head();
887 char *save_ch = 0;
888 if ((strlen(next_file) >= 2) &&
889 (next_file[strlen(next_file) - 1] == '*') &&
890 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
891 save_ch = next_file +
892 strlen(next_file) - 2;
893 *save_ch = '\0';
894 if (showacls) {
895 /* cwd is only used if showacls is on */
896 client_set_cwd(next_file);
899 if (!showacls) /* don't disturbe the showacls output */
900 d_printf("\n%s\n",next_file);
901 if (save_ch) {
902 *save_ch = CLI_DIRSEP_CHAR;
905 TALLOC_FREE(head);
906 TALLOC_FREE(targetpath);
908 } else {
909 /* check for dfs */
910 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
911 &targetcli, &targetpath);
912 if (NT_STATUS_IS_OK(status)) {
913 status = cli_list(targetcli, targetpath, attribute,
914 do_list_helper, targetcli);
915 if (!NT_STATUS_IS_OK(status)) {
916 d_printf("%s listing %s\n",
917 nt_errstr(status), targetpath);
918 ret_status = status;
920 TALLOC_FREE(targetpath);
921 } else {
922 d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
923 ret_status = status;
927 in_do_list = 0;
928 reset_do_list_queue();
929 return ret_status;
932 /****************************************************************************
933 Get a directory listing.
934 ****************************************************************************/
936 static int cmd_dir(void)
938 TALLOC_CTX *ctx = talloc_tos();
939 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
940 char *mask = NULL;
941 char *buf = NULL;
942 int rc = 1;
943 NTSTATUS status;
945 dir_total = 0;
946 mask = talloc_strdup(ctx, client_get_cur_dir());
947 if (!mask) {
948 return 1;
951 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
952 normalize_name(buf);
953 if (*buf == CLI_DIRSEP_CHAR) {
954 mask = talloc_strdup(ctx, buf);
955 } else {
956 mask = talloc_asprintf_append(mask, "%s", buf);
958 } else {
959 mask = talloc_asprintf_append(mask, "*");
961 if (!mask) {
962 return 1;
965 if (showacls) {
966 /* cwd is only used if showacls is on */
967 client_set_cwd(client_get_cur_dir());
970 status = do_list(mask, attribute, display_finfo, recurse, true);
971 if (!NT_STATUS_IS_OK(status)) {
972 return 1;
975 rc = do_dskattr();
977 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
979 return rc;
982 /****************************************************************************
983 Get a directory listing.
984 ****************************************************************************/
986 static int cmd_du(void)
988 TALLOC_CTX *ctx = talloc_tos();
989 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
990 char *mask = NULL;
991 char *buf = NULL;
992 NTSTATUS status;
993 int rc = 1;
995 dir_total = 0;
996 mask = talloc_strdup(ctx, client_get_cur_dir());
997 if (!mask) {
998 return 1;
1000 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
1001 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
1002 if (!mask) {
1003 return 1;
1007 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1008 normalize_name(buf);
1009 if (*buf == CLI_DIRSEP_CHAR) {
1010 mask = talloc_strdup(ctx, buf);
1011 } else {
1012 mask = talloc_asprintf_append(mask, "%s", buf);
1014 } else {
1015 mask = talloc_strdup(ctx, "*");
1018 status = do_list(mask, attribute, do_du, recurse, true);
1019 if (!NT_STATUS_IS_OK(status)) {
1020 return 1;
1023 rc = do_dskattr();
1025 d_printf("Total number of bytes: %.0f\n", dir_total);
1027 return rc;
1030 static int cmd_echo(void)
1032 TALLOC_CTX *ctx = talloc_tos();
1033 char *num;
1034 char *data;
1035 NTSTATUS status;
1037 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1038 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1039 d_printf("echo <num> <data>\n");
1040 return 1;
1043 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1045 if (!NT_STATUS_IS_OK(status)) {
1046 d_printf("echo failed: %s\n", nt_errstr(status));
1047 return 1;
1050 return 0;
1053 /****************************************************************************
1054 Get a file from rname to lname
1055 ****************************************************************************/
1057 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1059 int *pfd = (int *)priv;
1060 if (writefile(*pfd, buf, n) == -1) {
1061 return map_nt_error_from_unix(errno);
1063 return NT_STATUS_OK;
1066 static int do_get(const char *rname, const char *lname_in, bool reget)
1068 TALLOC_CTX *ctx = talloc_tos();
1069 int handle = 0;
1070 uint16_t fnum;
1071 bool newhandle = false;
1072 struct timespec tp_start;
1073 uint16 attr;
1074 off_t size;
1075 off_t start = 0;
1076 off_t nread = 0;
1077 int rc = 0;
1078 struct cli_state *targetcli = NULL;
1079 char *targetname = NULL;
1080 char *lname = NULL;
1081 NTSTATUS status;
1083 lname = talloc_strdup(ctx, lname_in);
1084 if (!lname) {
1085 return 1;
1088 if (lowercase) {
1089 if (!strlower_m(lname)) {
1090 d_printf("strlower_m %s failed\n", lname);
1091 return 1;
1095 status = cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli,
1096 &targetname);
1097 if (!NT_STATUS_IS_OK(status)) {
1098 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1099 return 1;
1102 clock_gettime_mono(&tp_start);
1104 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1105 if (!NT_STATUS_IS_OK(status)) {
1106 d_printf("%s opening remote file %s\n", nt_errstr(status),
1107 rname);
1108 return 1;
1111 if(!strcmp(lname,"-")) {
1112 handle = fileno(stdout);
1113 } else {
1114 if (reget) {
1115 handle = open(lname, O_WRONLY|O_CREAT, 0644);
1116 if (handle >= 0) {
1117 start = lseek(handle, 0, SEEK_END);
1118 if (start == -1) {
1119 d_printf("Error seeking local file\n");
1120 return 1;
1123 } else {
1124 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1126 newhandle = true;
1128 if (handle < 0) {
1129 d_printf("Error opening local file %s\n",lname);
1130 return 1;
1134 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1135 NULL, NULL, NULL);
1136 if (!NT_STATUS_IS_OK(status)) {
1137 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1138 NULL);
1139 if(!NT_STATUS_IS_OK(status)) {
1140 d_printf("getattrib: %s\n", nt_errstr(status));
1141 return 1;
1145 DEBUG(1,("getting file %s of size %.0f as %s ",
1146 rname, (double)size, lname));
1148 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1149 writefile_sink, (void *)&handle, &nread);
1150 if (!NT_STATUS_IS_OK(status)) {
1151 d_fprintf(stderr, "parallel_read returned %s\n",
1152 nt_errstr(status));
1153 cli_close(targetcli, fnum);
1154 return 1;
1157 status = cli_close(targetcli, fnum);
1158 if (!NT_STATUS_IS_OK(status)) {
1159 d_printf("Error %s closing remote file\n", nt_errstr(status));
1160 rc = 1;
1163 if (newhandle) {
1164 close(handle);
1167 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1168 cli_setatr(cli, rname, attr & ~(uint16)FILE_ATTRIBUTE_ARCHIVE, 0);
1172 struct timespec tp_end;
1173 int this_time;
1175 clock_gettime_mono(&tp_end);
1176 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1177 get_total_time_ms += this_time;
1178 get_total_size += nread;
1180 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1181 nread / (1.024*this_time + 1.0e-4),
1182 get_total_size / (1.024*get_total_time_ms)));
1185 TALLOC_FREE(targetname);
1186 return rc;
1189 /****************************************************************************
1190 Get a file.
1191 ****************************************************************************/
1193 static int cmd_get(void)
1195 TALLOC_CTX *ctx = talloc_tos();
1196 char *lname = NULL;
1197 char *rname = NULL;
1198 char *fname = NULL;
1200 rname = talloc_strdup(ctx, client_get_cur_dir());
1201 if (!rname) {
1202 return 1;
1205 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1206 d_printf("get <filename> [localname]\n");
1207 return 1;
1209 rname = talloc_asprintf_append(rname, "%s", fname);
1210 if (!rname) {
1211 return 1;
1213 rname = clean_name(ctx, rname);
1214 if (!rname) {
1215 return 1;
1218 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1219 if (!lname) {
1220 lname = fname;
1223 return do_get(rname, lname, false);
1226 /****************************************************************************
1227 Do an mget operation on one file.
1228 ****************************************************************************/
1230 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1231 const char *dir)
1233 TALLOC_CTX *ctx = talloc_tos();
1234 NTSTATUS status = NT_STATUS_OK;
1235 char *rname = NULL;
1236 char *quest = NULL;
1237 char *saved_curdir = NULL;
1238 char *mget_mask = NULL;
1239 char *new_cd = NULL;
1241 if (!finfo->name) {
1242 return NT_STATUS_OK;
1245 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1246 return NT_STATUS_OK;
1248 if (abort_mget) {
1249 d_printf("mget aborted\n");
1250 return NT_STATUS_UNSUCCESSFUL;
1253 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1254 if (asprintf(&quest,
1255 "Get directory %s? ",finfo->name) < 0) {
1256 return NT_STATUS_NO_MEMORY;
1258 } else {
1259 if (asprintf(&quest,
1260 "Get file %s? ",finfo->name) < 0) {
1261 return NT_STATUS_NO_MEMORY;
1265 if (prompt && !yesno(quest)) {
1266 SAFE_FREE(quest);
1267 return NT_STATUS_OK;
1269 SAFE_FREE(quest);
1271 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1272 rname = talloc_asprintf(ctx,
1273 "%s%s",
1274 client_get_cur_dir(),
1275 finfo->name);
1276 if (!rname) {
1277 return NT_STATUS_NO_MEMORY;
1279 do_get(rname, finfo->name, false);
1280 TALLOC_FREE(rname);
1281 return NT_STATUS_OK;
1284 /* handle directories */
1285 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1286 if (!saved_curdir) {
1287 return NT_STATUS_NO_MEMORY;
1290 new_cd = talloc_asprintf(ctx,
1291 "%s%s%s",
1292 client_get_cur_dir(),
1293 finfo->name,
1294 CLI_DIRSEP_STR);
1295 if (!new_cd) {
1296 return NT_STATUS_NO_MEMORY;
1298 client_set_cur_dir(new_cd);
1300 string_replace(finfo->name,'\\','/');
1301 if (lowercase) {
1302 if (!strlower_m(finfo->name)) {
1303 return NT_STATUS_INVALID_PARAMETER;
1307 if (!directory_exist(finfo->name) &&
1308 mkdir(finfo->name,0777) != 0) {
1309 d_printf("failed to create directory %s\n",finfo->name);
1310 client_set_cur_dir(saved_curdir);
1311 return map_nt_error_from_unix(errno);
1314 if (chdir(finfo->name) != 0) {
1315 d_printf("failed to chdir to directory %s\n",finfo->name);
1316 client_set_cur_dir(saved_curdir);
1317 return map_nt_error_from_unix(errno);
1320 mget_mask = talloc_asprintf(ctx,
1321 "%s*",
1322 client_get_cur_dir());
1324 if (!mget_mask) {
1325 return NT_STATUS_NO_MEMORY;
1328 status = do_list(mget_mask,
1329 (FILE_ATTRIBUTE_SYSTEM
1330 | FILE_ATTRIBUTE_HIDDEN
1331 | FILE_ATTRIBUTE_DIRECTORY),
1332 do_mget, false, true);
1333 if (!NT_STATUS_IS_OK(status)
1334 && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
1336 * Ignore access denied errors to ensure all permitted files are
1337 * pulled down.
1339 return status;
1342 if (chdir("..") == -1) {
1343 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1344 strerror(errno) );
1345 return map_nt_error_from_unix(errno);
1347 client_set_cur_dir(saved_curdir);
1348 TALLOC_FREE(mget_mask);
1349 TALLOC_FREE(saved_curdir);
1350 TALLOC_FREE(new_cd);
1351 return NT_STATUS_OK;
1354 /****************************************************************************
1355 View the file using the pager.
1356 ****************************************************************************/
1358 static int cmd_more(void)
1360 TALLOC_CTX *ctx = talloc_tos();
1361 char *rname = NULL;
1362 char *fname = NULL;
1363 char *lname = NULL;
1364 char *pager_cmd = NULL;
1365 const char *pager;
1366 int fd;
1367 int rc = 0;
1369 rname = talloc_strdup(ctx, client_get_cur_dir());
1370 if (!rname) {
1371 return 1;
1374 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1375 if (!lname) {
1376 return 1;
1378 fd = mkstemp(lname);
1379 if (fd == -1) {
1380 d_printf("failed to create temporary file for more\n");
1381 return 1;
1383 close(fd);
1385 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1386 d_printf("more <filename>\n");
1387 unlink(lname);
1388 return 1;
1390 rname = talloc_asprintf_append(rname, "%s", fname);
1391 if (!rname) {
1392 return 1;
1394 rname = clean_name(ctx,rname);
1395 if (!rname) {
1396 return 1;
1399 rc = do_get(rname, lname, false);
1401 pager=getenv("PAGER");
1403 pager_cmd = talloc_asprintf(ctx,
1404 "%s %s",
1405 (pager? pager:PAGER),
1406 lname);
1407 if (!pager_cmd) {
1408 return 1;
1410 if (system(pager_cmd) == -1) {
1411 d_printf("system command '%s' returned -1\n",
1412 pager_cmd);
1414 unlink(lname);
1416 return rc;
1419 /****************************************************************************
1420 Do a mget command.
1421 ****************************************************************************/
1423 static int cmd_mget(void)
1425 TALLOC_CTX *ctx = talloc_tos();
1426 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1427 char *mget_mask = NULL;
1428 char *buf = NULL;
1429 NTSTATUS status = NT_STATUS_OK;
1431 if (recurse) {
1432 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1435 abort_mget = false;
1437 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1439 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1440 if (!mget_mask) {
1441 return 1;
1443 if (*buf == CLI_DIRSEP_CHAR) {
1444 mget_mask = talloc_strdup(ctx, buf);
1445 } else {
1446 mget_mask = talloc_asprintf_append(mget_mask,
1447 "%s", buf);
1449 if (!mget_mask) {
1450 return 1;
1452 status = do_list(mget_mask, attribute, do_mget, false, true);
1453 if (!NT_STATUS_IS_OK(status)) {
1454 return 1;
1458 if (mget_mask == NULL) {
1459 d_printf("nothing to mget\n");
1460 return 0;
1463 if (!*mget_mask) {
1464 mget_mask = talloc_asprintf(ctx,
1465 "%s*",
1466 client_get_cur_dir());
1467 if (!mget_mask) {
1468 return 1;
1470 status = do_list(mget_mask, attribute, do_mget, false, true);
1471 if (!NT_STATUS_IS_OK(status)) {
1472 return 1;
1476 return 0;
1479 /****************************************************************************
1480 Make a directory of name "name".
1481 ****************************************************************************/
1483 static bool do_mkdir(const char *name)
1485 TALLOC_CTX *ctx = talloc_tos();
1486 struct cli_state *targetcli;
1487 char *targetname = NULL;
1488 NTSTATUS status;
1490 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
1491 &targetname);
1492 if (!NT_STATUS_IS_OK(status)) {
1493 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1494 return false;
1497 status = cli_mkdir(targetcli, targetname);
1498 if (!NT_STATUS_IS_OK(status)) {
1499 d_printf("%s making remote directory %s\n",
1500 nt_errstr(status),name);
1501 return false;
1504 return true;
1507 /****************************************************************************
1508 Show 8.3 name of a file.
1509 ****************************************************************************/
1511 static bool do_altname(const char *name)
1513 fstring altname;
1514 NTSTATUS status;
1516 status = cli_qpathinfo_alt_name(cli, name, altname);
1517 if (!NT_STATUS_IS_OK(status)) {
1518 d_printf("%s getting alt name for %s\n",
1519 nt_errstr(status),name);
1520 return false;
1522 d_printf("%s\n", altname);
1524 return true;
1527 /****************************************************************************
1528 Exit client.
1529 ****************************************************************************/
1531 static int cmd_quit(void)
1533 cli_shutdown(cli);
1534 exit(0);
1535 /* NOTREACHED */
1536 return 0;
1539 /****************************************************************************
1540 Make a directory.
1541 ****************************************************************************/
1543 static int cmd_mkdir(void)
1545 TALLOC_CTX *ctx = talloc_tos();
1546 char *mask = NULL;
1547 char *buf = NULL;
1548 NTSTATUS status;
1550 mask = talloc_strdup(ctx, client_get_cur_dir());
1551 if (!mask) {
1552 return 1;
1555 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1556 if (!recurse) {
1557 d_printf("mkdir <dirname>\n");
1559 return 1;
1561 mask = talloc_asprintf_append(mask, "%s", buf);
1562 if (!mask) {
1563 return 1;
1566 if (recurse) {
1567 char *ddir = NULL;
1568 char *ddir2 = NULL;
1569 struct cli_state *targetcli;
1570 char *targetname = NULL;
1571 char *p = NULL;
1572 char *saveptr;
1574 ddir2 = talloc_strdup(ctx, "");
1575 if (!ddir2) {
1576 return 1;
1579 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
1580 &targetcli, &targetname);
1581 if (!NT_STATUS_IS_OK(status)) {
1582 return 1;
1585 ddir = talloc_strdup(ctx, targetname);
1586 if (!ddir) {
1587 return 1;
1589 trim_char(ddir,'.','\0');
1590 p = strtok_r(ddir, "/\\", &saveptr);
1591 while (p) {
1592 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1593 if (!ddir2) {
1594 return 1;
1596 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1597 do_mkdir(ddir2);
1599 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1600 if (!ddir2) {
1601 return 1;
1603 p = strtok_r(NULL, "/\\", &saveptr);
1605 } else {
1606 do_mkdir(mask);
1609 return 0;
1612 /****************************************************************************
1613 Show alt name.
1614 ****************************************************************************/
1616 static int cmd_altname(void)
1618 TALLOC_CTX *ctx = talloc_tos();
1619 char *name;
1620 char *buf;
1622 name = talloc_strdup(ctx, client_get_cur_dir());
1623 if (!name) {
1624 return 1;
1627 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1628 d_printf("altname <file>\n");
1629 return 1;
1631 name = talloc_asprintf_append(name, "%s", buf);
1632 if (!name) {
1633 return 1;
1635 do_altname(name);
1636 return 0;
1639 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1641 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1642 int i = 0;
1644 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1645 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1646 attrs[i++] = 'E';
1648 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1649 attrs[i++] = 'N';
1651 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1652 attrs[i++] = 'O';
1654 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1655 attrs[i++] = 'C';
1657 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1658 attrs[i++] = 'r';
1660 if (mode & FILE_ATTRIBUTE_SPARSE) {
1661 attrs[i++] = 's';
1663 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1664 attrs[i++] = 'T';
1666 if (mode & FILE_ATTRIBUTE_NORMAL) {
1667 attrs[i++] = 'N';
1669 if (mode & FILE_ATTRIBUTE_READONLY) {
1670 attrs[i++] = 'R';
1672 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1673 attrs[i++] = 'H';
1675 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1676 attrs[i++] = 'S';
1678 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1679 attrs[i++] = 'D';
1681 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1682 attrs[i++] = 'A';
1685 return attrs;
1688 /****************************************************************************
1689 Show all info we can get
1690 ****************************************************************************/
1692 static int do_allinfo(const char *name)
1694 fstring altname;
1695 struct timespec b_time, a_time, m_time, c_time;
1696 off_t size;
1697 uint16_t mode;
1698 SMB_INO_T ino;
1699 NTTIME tmp;
1700 uint16_t fnum;
1701 unsigned int num_streams;
1702 struct stream_struct *streams;
1703 int num_snapshots;
1704 char **snapshots;
1705 unsigned int i;
1706 NTSTATUS status;
1708 status = cli_qpathinfo_alt_name(cli, name, altname);
1709 if (!NT_STATUS_IS_OK(status)) {
1710 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1711 name);
1712 return false;
1714 d_printf("altname: %s\n", altname);
1716 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1717 &size, &mode, &ino);
1718 if (!NT_STATUS_IS_OK(status)) {
1719 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1720 name);
1721 return false;
1724 unix_timespec_to_nt_time(&tmp, b_time);
1725 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1727 unix_timespec_to_nt_time(&tmp, a_time);
1728 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1730 unix_timespec_to_nt_time(&tmp, m_time);
1731 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1733 unix_timespec_to_nt_time(&tmp, c_time);
1734 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1736 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1738 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1739 &streams);
1740 if (!NT_STATUS_IS_OK(status)) {
1741 d_printf("%s getting streams for %s\n", nt_errstr(status),
1742 name);
1743 return false;
1746 for (i=0; i<num_streams; i++) {
1747 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1748 (unsigned long long)streams[i].size);
1751 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1752 char *subst, *print;
1753 uint32_t flags;
1755 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1756 &flags);
1757 if (!NT_STATUS_IS_OK(status)) {
1758 d_fprintf(stderr, "cli_readlink returned %s\n",
1759 nt_errstr(status));
1760 } else {
1761 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1762 subst, print, flags);
1763 TALLOC_FREE(subst);
1764 TALLOC_FREE(print);
1768 status = cli_ntcreate(cli, name, 0,
1769 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1770 SEC_STD_SYNCHRONIZE, 0,
1771 FILE_SHARE_READ|FILE_SHARE_WRITE
1772 |FILE_SHARE_DELETE,
1773 FILE_OPEN, 0x0, 0x0, &fnum);
1774 if (!NT_STATUS_IS_OK(status)) {
1776 * Ignore failure, it does not hurt if we can't list
1777 * snapshots
1779 return 0;
1781 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1782 true, &snapshots, &num_snapshots);
1783 if (!NT_STATUS_IS_OK(status)) {
1784 cli_close(cli, fnum);
1785 return 0;
1788 for (i=0; i<num_snapshots; i++) {
1789 char *snap_name;
1791 d_printf("%s\n", snapshots[i]);
1792 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1793 snapshots[i], name);
1794 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1795 &m_time, &c_time, &size,
1796 NULL, NULL);
1797 if (!NT_STATUS_IS_OK(status)) {
1798 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1799 snap_name, nt_errstr(status));
1800 TALLOC_FREE(snap_name);
1801 continue;
1803 unix_timespec_to_nt_time(&tmp, b_time);
1804 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1805 unix_timespec_to_nt_time(&tmp, a_time);
1806 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1807 unix_timespec_to_nt_time(&tmp, m_time);
1808 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1809 unix_timespec_to_nt_time(&tmp, c_time);
1810 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1811 d_printf("size: %d\n", (int)size);
1814 TALLOC_FREE(snapshots);
1815 cli_close(cli, fnum);
1817 return 0;
1820 /****************************************************************************
1821 Show all info we can get
1822 ****************************************************************************/
1824 static int cmd_allinfo(void)
1826 TALLOC_CTX *ctx = talloc_tos();
1827 char *name;
1828 char *buf;
1830 name = talloc_strdup(ctx, client_get_cur_dir());
1831 if (!name) {
1832 return 1;
1835 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1836 d_printf("allinfo <file>\n");
1837 return 1;
1839 name = talloc_asprintf_append(name, "%s", buf);
1840 if (!name) {
1841 return 1;
1844 do_allinfo(name);
1846 return 0;
1849 /****************************************************************************
1850 Put a single file.
1851 ****************************************************************************/
1853 static int do_put(const char *rname, const char *lname, bool reput)
1855 TALLOC_CTX *ctx = talloc_tos();
1856 uint16_t fnum;
1857 XFILE *f;
1858 off_t start = 0;
1859 int rc = 0;
1860 struct timespec tp_start;
1861 struct cli_state *targetcli;
1862 char *targetname = NULL;
1863 struct push_state state;
1864 NTSTATUS status;
1866 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1867 &targetcli, &targetname);
1868 if (!NT_STATUS_IS_OK(status)) {
1869 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1870 return 1;
1873 clock_gettime_mono(&tp_start);
1875 if (reput) {
1876 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1877 if (NT_STATUS_IS_OK(status)) {
1878 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1879 targetcli, fnum, NULL,
1880 &start, NULL, NULL,
1881 NULL, NULL, NULL)) &&
1882 !NT_STATUS_IS_OK(status = cli_getattrE(
1883 targetcli, fnum, NULL,
1884 &start, NULL, NULL,
1885 NULL))) {
1886 d_printf("getattrib: %s\n", nt_errstr(status));
1887 return 1;
1890 } else {
1891 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1894 if (!NT_STATUS_IS_OK(status)) {
1895 d_printf("%s opening remote file %s\n", nt_errstr(status),
1896 rname);
1897 return 1;
1900 /* allow files to be piped into smbclient
1901 jdblair 24.jun.98
1903 Note that in this case this function will exit(0) rather
1904 than returning. */
1905 if (!strcmp(lname, "-")) {
1906 f = x_stdin;
1907 /* size of file is not known */
1908 } else {
1909 f = x_fopen(lname,O_RDONLY, 0);
1910 if (f && reput) {
1911 if (x_tseek(f, start, SEEK_SET) == -1) {
1912 d_printf("Error seeking local file\n");
1913 x_fclose(f);
1914 return 1;
1919 if (!f) {
1920 d_printf("Error opening local file %s\n",lname);
1921 return 1;
1924 DEBUG(1,("putting file %s as %s ",lname,
1925 rname));
1927 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1929 state.f = f;
1930 state.nread = 0;
1932 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1933 &state);
1934 if (!NT_STATUS_IS_OK(status)) {
1935 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1936 rc = 1;
1939 status = cli_close(targetcli, fnum);
1940 if (!NT_STATUS_IS_OK(status)) {
1941 d_printf("%s closing remote file %s\n", nt_errstr(status),
1942 rname);
1943 if (f != x_stdin) {
1944 x_fclose(f);
1946 return 1;
1949 if (f != x_stdin) {
1950 x_fclose(f);
1954 struct timespec tp_end;
1955 int this_time;
1957 clock_gettime_mono(&tp_end);
1958 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1959 put_total_time_ms += this_time;
1960 put_total_size += state.nread;
1962 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1963 state.nread / (1.024*this_time + 1.0e-4),
1964 put_total_size / (1.024*put_total_time_ms)));
1967 if (f == x_stdin) {
1968 cli_shutdown(cli);
1969 exit(rc);
1972 return rc;
1975 /****************************************************************************
1976 Put a file.
1977 ****************************************************************************/
1979 static int cmd_put(void)
1981 TALLOC_CTX *ctx = talloc_tos();
1982 char *lname;
1983 char *rname;
1984 char *buf;
1986 rname = talloc_strdup(ctx, client_get_cur_dir());
1987 if (!rname) {
1988 return 1;
1991 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1992 d_printf("put <filename>\n");
1993 return 1;
1996 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1997 rname = talloc_asprintf_append(rname, "%s", buf);
1998 } else {
1999 rname = talloc_asprintf_append(rname, "%s", lname);
2001 if (!rname) {
2002 return 1;
2005 rname = clean_name(ctx, rname);
2006 if (!rname) {
2007 return 1;
2011 SMB_STRUCT_STAT st;
2012 /* allow '-' to represent stdin
2013 jdblair, 24.jun.98 */
2014 if (!file_exist_stat(lname, &st, false) &&
2015 (strcmp(lname,"-"))) {
2016 d_printf("%s does not exist\n",lname);
2017 return 1;
2021 return do_put(rname, lname, false);
2024 /*************************************
2025 File list structure.
2026 *************************************/
2028 static struct file_list {
2029 struct file_list *prev, *next;
2030 char *file_path;
2031 bool isdir;
2032 } *file_list;
2034 /****************************************************************************
2035 Free a file_list structure.
2036 ****************************************************************************/
2038 static void free_file_list (struct file_list *l_head)
2040 struct file_list *list, *next;
2042 for (list = l_head; list; list = next) {
2043 next = list->next;
2044 DLIST_REMOVE(l_head, list);
2045 SAFE_FREE(list->file_path);
2046 SAFE_FREE(list);
2050 /****************************************************************************
2051 Seek in a directory/file list until you get something that doesn't start with
2052 the specified name.
2053 ****************************************************************************/
2055 static bool seek_list(struct file_list *list, char *name)
2057 while (list) {
2058 trim_string(list->file_path,"./","\n");
2059 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2060 return true;
2062 list = list->next;
2065 return false;
2068 /****************************************************************************
2069 Set the file selection mask.
2070 ****************************************************************************/
2072 static int cmd_select(void)
2074 TALLOC_CTX *ctx = talloc_tos();
2075 char *new_fs = NULL;
2076 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2078 if (new_fs) {
2079 client_set_fileselection(new_fs);
2080 } else {
2081 client_set_fileselection("");
2083 return 0;
2086 /****************************************************************************
2087 Recursive file matching function act as find
2088 match must be always set to true when calling this function
2089 ****************************************************************************/
2091 static int file_find(struct file_list **list, const char *directory,
2092 const char *expression, bool match)
2094 DIR *dir;
2095 struct file_list *entry;
2096 struct stat statbuf;
2097 int ret;
2098 char *path;
2099 bool isdir;
2100 const char *dname;
2102 dir = opendir(directory);
2103 if (!dir)
2104 return -1;
2106 while ((dname = readdirname(dir))) {
2107 if (!strcmp("..", dname))
2108 continue;
2109 if (!strcmp(".", dname))
2110 continue;
2112 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2113 continue;
2116 isdir = false;
2117 if (!match || !gen_fnmatch(expression, dname)) {
2118 if (recurse) {
2119 ret = stat(path, &statbuf);
2120 if (ret == 0) {
2121 if (S_ISDIR(statbuf.st_mode)) {
2122 isdir = true;
2123 ret = file_find(list, path, expression, false);
2125 } else {
2126 d_printf("file_find: cannot stat file %s\n", path);
2129 if (ret == -1) {
2130 SAFE_FREE(path);
2131 closedir(dir);
2132 return -1;
2135 entry = SMB_MALLOC_P(struct file_list);
2136 if (!entry) {
2137 d_printf("Out of memory in file_find\n");
2138 closedir(dir);
2139 return -1;
2141 entry->file_path = path;
2142 entry->isdir = isdir;
2143 DLIST_ADD(*list, entry);
2144 } else {
2145 SAFE_FREE(path);
2149 closedir(dir);
2150 return 0;
2153 /****************************************************************************
2154 mput some files.
2155 ****************************************************************************/
2157 static int cmd_mput(void)
2159 TALLOC_CTX *ctx = talloc_tos();
2160 char *p = NULL;
2162 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2163 int ret;
2164 struct file_list *temp_list;
2165 char *quest, *lname, *rname;
2167 file_list = NULL;
2169 ret = file_find(&file_list, ".", p, true);
2170 if (ret) {
2171 free_file_list(file_list);
2172 continue;
2175 quest = NULL;
2176 lname = NULL;
2177 rname = NULL;
2179 for (temp_list = file_list; temp_list;
2180 temp_list = temp_list->next) {
2182 SAFE_FREE(lname);
2183 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2184 continue;
2186 trim_string(lname, "./", "/");
2188 /* check if it's a directory */
2189 if (temp_list->isdir) {
2190 /* if (!recurse) continue; */
2192 SAFE_FREE(quest);
2193 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2194 break;
2196 if (prompt && !yesno(quest)) { /* No */
2197 /* Skip the directory */
2198 lname[strlen(lname)-1] = '/';
2199 if (!seek_list(temp_list, lname))
2200 break;
2201 } else { /* Yes */
2202 SAFE_FREE(rname);
2203 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2204 break;
2206 normalize_name(rname);
2207 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2208 !do_mkdir(rname)) {
2209 DEBUG (0, ("Unable to make dir, skipping..."));
2210 /* Skip the directory */
2211 lname[strlen(lname)-1] = '/';
2212 if (!seek_list(temp_list, lname)) {
2213 break;
2217 continue;
2218 } else {
2219 SAFE_FREE(quest);
2220 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2221 break;
2223 if (prompt && !yesno(quest)) {
2224 /* No */
2225 continue;
2228 /* Yes */
2229 SAFE_FREE(rname);
2230 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2231 break;
2235 normalize_name(rname);
2237 do_put(rname, lname, false);
2239 free_file_list(file_list);
2240 SAFE_FREE(quest);
2241 SAFE_FREE(lname);
2242 SAFE_FREE(rname);
2245 return 0;
2248 /****************************************************************************
2249 Cancel a print job.
2250 ****************************************************************************/
2252 static int do_cancel(int job)
2254 if (cli_printjob_del(cli, job)) {
2255 d_printf("Job %d cancelled\n",job);
2256 return 0;
2257 } else {
2258 NTSTATUS status = cli_nt_error(cli);
2259 d_printf("Error cancelling job %d : %s\n",
2260 job, nt_errstr(status));
2261 return 1;
2265 /****************************************************************************
2266 Cancel a print job.
2267 ****************************************************************************/
2269 static int cmd_cancel(void)
2271 TALLOC_CTX *ctx = talloc_tos();
2272 char *buf = NULL;
2273 int job;
2275 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2276 d_printf("cancel <jobid> ...\n");
2277 return 1;
2279 do {
2280 job = atoi(buf);
2281 do_cancel(job);
2282 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2284 return 0;
2287 /****************************************************************************
2288 Print a file.
2289 ****************************************************************************/
2291 static int cmd_print(void)
2293 TALLOC_CTX *ctx = talloc_tos();
2294 char *lname = NULL;
2295 char *rname = NULL;
2296 char *p = NULL;
2298 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2299 d_printf("print <filename>\n");
2300 return 1;
2303 rname = talloc_strdup(ctx, lname);
2304 if (!rname) {
2305 return 1;
2307 p = strrchr_m(rname,'/');
2308 if (p) {
2309 rname = talloc_asprintf(ctx,
2310 "%s-%d",
2311 p+1,
2312 (int)getpid());
2314 if (strequal(lname,"-")) {
2315 rname = talloc_asprintf(ctx,
2316 "stdin-%d",
2317 (int)getpid());
2319 if (!rname) {
2320 return 1;
2323 return do_put(rname, lname, false);
2326 /****************************************************************************
2327 Show a print queue entry.
2328 ****************************************************************************/
2330 static void queue_fn(struct print_job_info *p)
2332 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2335 /****************************************************************************
2336 Show a print queue.
2337 ****************************************************************************/
2339 static int cmd_queue(void)
2341 cli_print_queue(cli, queue_fn);
2342 return 0;
2345 /****************************************************************************
2346 Delete some files.
2347 ****************************************************************************/
2349 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2350 const char *dir)
2352 TALLOC_CTX *ctx = talloc_tos();
2353 char *mask = NULL;
2354 NTSTATUS status;
2356 mask = talloc_asprintf(ctx,
2357 "%s%c%s",
2358 dir,
2359 CLI_DIRSEP_CHAR,
2360 finfo->name);
2361 if (!mask) {
2362 return NT_STATUS_NO_MEMORY;
2365 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2366 TALLOC_FREE(mask);
2367 return NT_STATUS_OK;
2370 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2371 if (!NT_STATUS_IS_OK(status)) {
2372 d_printf("%s deleting remote file %s\n",
2373 nt_errstr(status), mask);
2375 TALLOC_FREE(mask);
2376 return status;
2379 /****************************************************************************
2380 Delete some files.
2381 ****************************************************************************/
2383 static int cmd_del(void)
2385 TALLOC_CTX *ctx = talloc_tos();
2386 char *mask = NULL;
2387 char *buf = NULL;
2388 NTSTATUS status = NT_STATUS_OK;
2389 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2391 if (recurse) {
2392 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2395 mask = talloc_strdup(ctx, client_get_cur_dir());
2396 if (!mask) {
2397 return 1;
2399 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2400 d_printf("del <filename>\n");
2401 return 1;
2403 mask = talloc_asprintf_append(mask, "%s", buf);
2404 if (!mask) {
2405 return 1;
2408 status = do_list(mask,attribute,do_del,false,false);
2409 if (!NT_STATUS_IS_OK(status)) {
2410 return 1;
2412 return 0;
2415 /****************************************************************************
2416 Wildcard delete some files.
2417 ****************************************************************************/
2419 static int cmd_wdel(void)
2421 TALLOC_CTX *ctx = talloc_tos();
2422 char *mask = NULL;
2423 char *buf = NULL;
2424 uint16 attribute;
2425 struct cli_state *targetcli;
2426 char *targetname = NULL;
2427 NTSTATUS status;
2429 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2430 d_printf("wdel 0x<attrib> <wcard>\n");
2431 return 1;
2434 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2436 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2437 d_printf("wdel 0x<attrib> <wcard>\n");
2438 return 1;
2441 mask = talloc_asprintf(ctx, "%s%s",
2442 client_get_cur_dir(),
2443 buf);
2444 if (!mask) {
2445 return 1;
2448 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2449 &targetname);
2450 if (!NT_STATUS_IS_OK(status)) {
2451 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2452 return 1;
2455 status = cli_unlink(targetcli, targetname, attribute);
2456 if (!NT_STATUS_IS_OK(status)) {
2457 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2458 targetname);
2460 return 0;
2463 /****************************************************************************
2464 ****************************************************************************/
2466 static int cmd_open(void)
2468 TALLOC_CTX *ctx = talloc_tos();
2469 char *mask = NULL;
2470 char *buf = NULL;
2471 char *targetname = NULL;
2472 struct cli_state *targetcli;
2473 uint16_t fnum = (uint16_t)-1;
2474 NTSTATUS status;
2476 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2477 d_printf("open <filename>\n");
2478 return 1;
2480 mask = talloc_asprintf(ctx,
2481 "%s%s",
2482 client_get_cur_dir(),
2483 buf);
2484 if (!mask) {
2485 return 1;
2488 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2489 &targetname);
2490 if (!NT_STATUS_IS_OK(status)) {
2491 d_printf("open %s: %s\n", mask, nt_errstr(status));
2492 return 1;
2495 status = cli_ntcreate(targetcli, targetname, 0,
2496 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2497 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2498 0x0, 0x0, &fnum);
2499 if (!NT_STATUS_IS_OK(status)) {
2500 status = cli_ntcreate(targetcli, targetname, 0,
2501 FILE_READ_DATA, 0,
2502 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2503 0x0, 0x0, &fnum);
2504 if (NT_STATUS_IS_OK(status)) {
2505 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2506 } else {
2507 d_printf("Failed to open file %s. %s\n",
2508 targetname, nt_errstr(status));
2510 } else {
2511 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2513 return 0;
2516 static int cmd_posix_encrypt(void)
2518 TALLOC_CTX *ctx = talloc_tos();
2519 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2521 if (cli->use_kerberos) {
2522 status = cli_gss_smb_encryption_start(cli);
2523 } else {
2524 char *domain = NULL;
2525 char *user = NULL;
2526 char *password = NULL;
2528 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2529 d_printf("posix_encrypt domain user password\n");
2530 return 1;
2533 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2534 d_printf("posix_encrypt domain user password\n");
2535 return 1;
2538 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2539 d_printf("posix_encrypt domain user password\n");
2540 return 1;
2543 status = cli_raw_ntlm_smb_encryption_start(cli,
2544 user,
2545 password,
2546 domain);
2549 if (!NT_STATUS_IS_OK(status)) {
2550 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2551 } else {
2552 d_printf("encryption on\n");
2553 smb_encrypt = true;
2556 return 0;
2559 /****************************************************************************
2560 ****************************************************************************/
2562 static int cmd_posix_open(void)
2564 TALLOC_CTX *ctx = talloc_tos();
2565 char *mask = NULL;
2566 char *buf = NULL;
2567 char *targetname = NULL;
2568 struct cli_state *targetcli;
2569 mode_t mode;
2570 uint16_t fnum;
2571 NTSTATUS status;
2573 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2574 d_printf("posix_open <filename> 0<mode>\n");
2575 return 1;
2577 mask = talloc_asprintf(ctx,
2578 "%s%s",
2579 client_get_cur_dir(),
2580 buf);
2581 if (!mask) {
2582 return 1;
2585 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2586 d_printf("posix_open <filename> 0<mode>\n");
2587 return 1;
2589 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2591 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2592 &targetname);
2593 if (!NT_STATUS_IS_OK(status)) {
2594 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2595 return 1;
2598 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2599 &fnum);
2600 if (!NT_STATUS_IS_OK(status)) {
2601 status = cli_posix_open(targetcli, targetname,
2602 O_CREAT|O_RDONLY, mode, &fnum);
2603 if (!NT_STATUS_IS_OK(status)) {
2604 d_printf("Failed to open file %s. %s\n", targetname,
2605 nt_errstr(status));
2606 } else {
2607 d_printf("posix_open file %s: for readonly fnum %d\n",
2608 targetname, fnum);
2610 } else {
2611 d_printf("posix_open file %s: for read/write fnum %d\n",
2612 targetname, fnum);
2615 return 0;
2618 static int cmd_posix_mkdir(void)
2620 TALLOC_CTX *ctx = talloc_tos();
2621 char *mask = NULL;
2622 char *buf = NULL;
2623 char *targetname = NULL;
2624 struct cli_state *targetcli;
2625 mode_t mode;
2626 NTSTATUS status;
2628 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2629 d_printf("posix_mkdir <filename> 0<mode>\n");
2630 return 1;
2632 mask = talloc_asprintf(ctx,
2633 "%s%s",
2634 client_get_cur_dir(),
2635 buf);
2636 if (!mask) {
2637 return 1;
2640 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2641 d_printf("posix_mkdir <filename> 0<mode>\n");
2642 return 1;
2644 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2646 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2647 &targetname);
2648 if (!NT_STATUS_IS_OK(status)) {
2649 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2650 return 1;
2653 status = cli_posix_mkdir(targetcli, targetname, mode);
2654 if (!NT_STATUS_IS_OK(status)) {
2655 d_printf("Failed to open file %s. %s\n",
2656 targetname, nt_errstr(status));
2657 } else {
2658 d_printf("posix_mkdir created directory %s\n", targetname);
2660 return 0;
2663 static int cmd_posix_unlink(void)
2665 TALLOC_CTX *ctx = talloc_tos();
2666 char *mask = NULL;
2667 char *buf = NULL;
2668 char *targetname = NULL;
2669 struct cli_state *targetcli;
2670 NTSTATUS status;
2672 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2673 d_printf("posix_unlink <filename>\n");
2674 return 1;
2676 mask = talloc_asprintf(ctx,
2677 "%s%s",
2678 client_get_cur_dir(),
2679 buf);
2680 if (!mask) {
2681 return 1;
2684 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2685 &targetname);
2686 if (!NT_STATUS_IS_OK(status)) {
2687 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2688 return 1;
2691 status = cli_posix_unlink(targetcli, targetname);
2692 if (!NT_STATUS_IS_OK(status)) {
2693 d_printf("Failed to unlink file %s. %s\n",
2694 targetname, nt_errstr(status));
2695 } else {
2696 d_printf("posix_unlink deleted file %s\n", targetname);
2699 return 0;
2702 static int cmd_posix_rmdir(void)
2704 TALLOC_CTX *ctx = talloc_tos();
2705 char *mask = NULL;
2706 char *buf = NULL;
2707 char *targetname = NULL;
2708 struct cli_state *targetcli;
2709 NTSTATUS status;
2711 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2712 d_printf("posix_rmdir <filename>\n");
2713 return 1;
2715 mask = talloc_asprintf(ctx,
2716 "%s%s",
2717 client_get_cur_dir(),
2718 buf);
2719 if (!mask) {
2720 return 1;
2723 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2724 &targetname);
2725 if (!NT_STATUS_IS_OK(status)) {
2726 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2727 return 1;
2730 status = cli_posix_rmdir(targetcli, targetname);
2731 if (!NT_STATUS_IS_OK(status)) {
2732 d_printf("Failed to unlink directory %s. %s\n",
2733 targetname, nt_errstr(status));
2734 } else {
2735 d_printf("posix_rmdir deleted directory %s\n", targetname);
2738 return 0;
2741 static int cmd_close(void)
2743 TALLOC_CTX *ctx = talloc_tos();
2744 char *buf = NULL;
2745 int fnum;
2746 NTSTATUS status;
2748 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2749 d_printf("close <fnum>\n");
2750 return 1;
2753 fnum = atoi(buf);
2754 /* We really should use the targetcli here.... */
2755 status = cli_close(cli, fnum);
2756 if (!NT_STATUS_IS_OK(status)) {
2757 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2758 return 1;
2760 return 0;
2763 static int cmd_posix(void)
2765 TALLOC_CTX *ctx = talloc_tos();
2766 uint16 major, minor;
2767 uint32 caplow, caphigh;
2768 char *caps;
2769 NTSTATUS status;
2771 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2772 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2773 return 1;
2776 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2777 &caphigh);
2778 if (!NT_STATUS_IS_OK(status)) {
2779 d_printf("Can't get UNIX CIFS extensions version from "
2780 "server: %s\n", nt_errstr(status));
2781 return 1;
2784 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2786 caps = talloc_strdup(ctx, "");
2787 if (!caps) {
2788 return 1;
2790 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2791 caps = talloc_asprintf_append(caps, "locks ");
2792 if (!caps) {
2793 return 1;
2796 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2797 caps = talloc_asprintf_append(caps, "acls ");
2798 if (!caps) {
2799 return 1;
2802 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2803 caps = talloc_asprintf_append(caps, "eas ");
2804 if (!caps) {
2805 return 1;
2808 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2809 caps = talloc_asprintf_append(caps, "pathnames ");
2810 if (!caps) {
2811 return 1;
2814 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2815 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2816 if (!caps) {
2817 return 1;
2820 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2821 caps = talloc_asprintf_append(caps, "large_read ");
2822 if (!caps) {
2823 return 1;
2826 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2827 caps = talloc_asprintf_append(caps, "large_write ");
2828 if (!caps) {
2829 return 1;
2832 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2833 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2834 if (!caps) {
2835 return 1;
2838 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2839 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2840 if (!caps) {
2841 return 1;
2845 if (*caps && caps[strlen(caps)-1] == ' ') {
2846 caps[strlen(caps)-1] = '\0';
2849 d_printf("Server supports CIFS capabilities %s\n", caps);
2851 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2852 caplow, caphigh);
2853 if (!NT_STATUS_IS_OK(status)) {
2854 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2855 nt_errstr(status));
2856 return 1;
2859 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2860 CLI_DIRSEP_CHAR = '/';
2861 *CLI_DIRSEP_STR = '/';
2862 client_set_cur_dir(CLI_DIRSEP_STR);
2865 return 0;
2868 static int cmd_lock(void)
2870 TALLOC_CTX *ctx = talloc_tos();
2871 char *buf = NULL;
2872 uint64_t start, len;
2873 enum brl_type lock_type;
2874 int fnum;
2875 NTSTATUS status;
2877 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2878 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2879 return 1;
2881 fnum = atoi(buf);
2883 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2884 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2885 return 1;
2888 if (*buf == 'r' || *buf == 'R') {
2889 lock_type = READ_LOCK;
2890 } else if (*buf == 'w' || *buf == 'W') {
2891 lock_type = WRITE_LOCK;
2892 } else {
2893 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2894 return 1;
2897 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2898 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2899 return 1;
2902 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2904 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2905 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2906 return 1;
2909 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2911 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2912 if (!NT_STATUS_IS_OK(status)) {
2913 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2916 return 0;
2919 static int cmd_unlock(void)
2921 TALLOC_CTX *ctx = talloc_tos();
2922 char *buf = NULL;
2923 uint64_t start, len;
2924 int fnum;
2925 NTSTATUS status;
2927 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2928 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2929 return 1;
2931 fnum = atoi(buf);
2933 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2934 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2935 return 1;
2938 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2940 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2941 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2942 return 1;
2945 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2947 status = cli_posix_unlock(cli, fnum, start, len);
2948 if (!NT_STATUS_IS_OK(status)) {
2949 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2952 return 0;
2956 /****************************************************************************
2957 Remove a directory.
2958 ****************************************************************************/
2960 static int cmd_rmdir(void)
2962 TALLOC_CTX *ctx = talloc_tos();
2963 char *mask = NULL;
2964 char *buf = NULL;
2965 char *targetname = NULL;
2966 struct cli_state *targetcli;
2967 NTSTATUS status;
2969 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2970 d_printf("rmdir <dirname>\n");
2971 return 1;
2973 mask = talloc_asprintf(ctx,
2974 "%s%s",
2975 client_get_cur_dir(),
2976 buf);
2977 if (!mask) {
2978 return 1;
2981 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2982 &targetname);
2983 if (!NT_STATUS_IS_OK(status)) {
2984 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
2985 return 1;
2988 status = cli_rmdir(targetcli, targetname);
2989 if (!NT_STATUS_IS_OK(status)) {
2990 d_printf("%s removing remote directory file %s\n",
2991 nt_errstr(status), mask);
2994 return 0;
2997 /****************************************************************************
2998 UNIX hardlink.
2999 ****************************************************************************/
3001 static int cmd_link(void)
3003 TALLOC_CTX *ctx = talloc_tos();
3004 char *oldname = NULL;
3005 char *newname = NULL;
3006 char *buf = NULL;
3007 char *buf2 = NULL;
3008 char *targetname = NULL;
3009 struct cli_state *targetcli;
3010 NTSTATUS status;
3012 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3013 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3014 d_printf("link <oldname> <newname>\n");
3015 return 1;
3017 oldname = talloc_asprintf(ctx,
3018 "%s%s",
3019 client_get_cur_dir(),
3020 buf);
3021 if (!oldname) {
3022 return 1;
3024 newname = talloc_asprintf(ctx,
3025 "%s%s",
3026 client_get_cur_dir(),
3027 buf2);
3028 if (!newname) {
3029 return 1;
3032 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3033 &targetname);
3034 if (!NT_STATUS_IS_OK(status)) {
3035 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3036 return 1;
3039 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3040 d_printf("Server doesn't support UNIX CIFS calls.\n");
3041 return 1;
3044 status = cli_posix_hardlink(targetcli, targetname, newname);
3045 if (!NT_STATUS_IS_OK(status)) {
3046 d_printf("%s linking files (%s -> %s)\n",
3047 nt_errstr(status), newname, oldname);
3048 return 1;
3050 return 0;
3053 /****************************************************************************
3054 UNIX readlink.
3055 ****************************************************************************/
3057 static int cmd_readlink(void)
3059 TALLOC_CTX *ctx = talloc_tos();
3060 char *name= NULL;
3061 char *buf = NULL;
3062 char *targetname = NULL;
3063 char linkname[PATH_MAX+1];
3064 struct cli_state *targetcli;
3065 NTSTATUS status;
3067 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3068 d_printf("readlink <name>\n");
3069 return 1;
3071 name = talloc_asprintf(ctx,
3072 "%s%s",
3073 client_get_cur_dir(),
3074 buf);
3075 if (!name) {
3076 return 1;
3079 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3080 &targetname);
3081 if (!NT_STATUS_IS_OK(status)) {
3082 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3083 return 1;
3086 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3087 d_printf("Server doesn't support UNIX CIFS calls.\n");
3088 return 1;
3091 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3092 if (!NT_STATUS_IS_OK(status)) {
3093 d_printf("%s readlink on file %s\n",
3094 nt_errstr(status), name);
3095 return 1;
3098 d_printf("%s -> %s\n", name, linkname);
3100 return 0;
3104 /****************************************************************************
3105 UNIX symlink.
3106 ****************************************************************************/
3108 static int cmd_symlink(void)
3110 TALLOC_CTX *ctx = talloc_tos();
3111 char *oldname = NULL;
3112 char *newname = NULL;
3113 char *buf = NULL;
3114 char *buf2 = NULL;
3115 struct cli_state *newcli;
3116 NTSTATUS status;
3118 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3119 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3120 d_printf("symlink <oldname> <newname>\n");
3121 return 1;
3123 /* Oldname (link target) must be an untouched blob. */
3124 oldname = buf;
3126 if (SERVER_HAS_UNIX_CIFS(cli)) {
3127 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3128 buf2);
3129 if (!newname) {
3130 return 1;
3132 /* New name must be present in share namespace. */
3133 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3134 &newcli, &newname);
3135 if (!NT_STATUS_IS_OK(status)) {
3136 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3137 return 1;
3139 status = cli_posix_symlink(newcli, oldname, newname);
3140 } else {
3141 status = cli_symlink(
3142 cli, oldname, buf2,
3143 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3146 if (!NT_STATUS_IS_OK(status)) {
3147 d_printf("%s symlinking files (%s -> %s)\n",
3148 nt_errstr(status), oldname, newname);
3149 return 1;
3152 return 0;
3155 /****************************************************************************
3156 UNIX chmod.
3157 ****************************************************************************/
3159 static int cmd_chmod(void)
3161 TALLOC_CTX *ctx = talloc_tos();
3162 char *src = NULL;
3163 char *buf = NULL;
3164 char *buf2 = NULL;
3165 char *targetname = NULL;
3166 struct cli_state *targetcli;
3167 mode_t mode;
3168 NTSTATUS status;
3170 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3171 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3172 d_printf("chmod mode file\n");
3173 return 1;
3175 src = talloc_asprintf(ctx,
3176 "%s%s",
3177 client_get_cur_dir(),
3178 buf2);
3179 if (!src) {
3180 return 1;
3183 mode = (mode_t)strtol(buf, NULL, 8);
3185 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3186 &targetname);
3187 if (!NT_STATUS_IS_OK(status)) {
3188 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3189 return 1;
3192 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3193 d_printf("Server doesn't support UNIX CIFS calls.\n");
3194 return 1;
3197 status = cli_posix_chmod(targetcli, targetname, mode);
3198 if (!NT_STATUS_IS_OK(status)) {
3199 d_printf("%s chmod file %s 0%o\n",
3200 nt_errstr(status), src, (unsigned int)mode);
3201 return 1;
3204 return 0;
3207 static const char *filetype_to_str(mode_t mode)
3209 if (S_ISREG(mode)) {
3210 return "regular file";
3211 } else if (S_ISDIR(mode)) {
3212 return "directory";
3213 } else
3214 #ifdef S_ISCHR
3215 if (S_ISCHR(mode)) {
3216 return "character device";
3217 } else
3218 #endif
3219 #ifdef S_ISBLK
3220 if (S_ISBLK(mode)) {
3221 return "block device";
3222 } else
3223 #endif
3224 #ifdef S_ISFIFO
3225 if (S_ISFIFO(mode)) {
3226 return "fifo";
3227 } else
3228 #endif
3229 #ifdef S_ISLNK
3230 if (S_ISLNK(mode)) {
3231 return "symbolic link";
3232 } else
3233 #endif
3234 #ifdef S_ISSOCK
3235 if (S_ISSOCK(mode)) {
3236 return "socket";
3237 } else
3238 #endif
3239 return "";
3242 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3244 if (m & bt) {
3245 return ret;
3246 } else {
3247 return '-';
3251 static char *unix_mode_to_str(char *s, mode_t m)
3253 char *p = s;
3254 const char *str = filetype_to_str(m);
3256 switch(str[0]) {
3257 case 'd':
3258 *p++ = 'd';
3259 break;
3260 case 'c':
3261 *p++ = 'c';
3262 break;
3263 case 'b':
3264 *p++ = 'b';
3265 break;
3266 case 'f':
3267 *p++ = 'p';
3268 break;
3269 case 's':
3270 *p++ = str[1] == 'y' ? 'l' : 's';
3271 break;
3272 case 'r':
3273 default:
3274 *p++ = '-';
3275 break;
3277 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3278 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3279 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3280 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3281 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3282 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3283 *p++ = rwx_to_str(m, S_IROTH, 'r');
3284 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3285 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3286 *p++ = '\0';
3287 return s;
3290 /****************************************************************************
3291 Utility function for UNIX getfacl.
3292 ****************************************************************************/
3294 static char *perms_to_string(fstring permstr, unsigned char perms)
3296 fstrcpy(permstr, "---");
3297 if (perms & SMB_POSIX_ACL_READ) {
3298 permstr[0] = 'r';
3300 if (perms & SMB_POSIX_ACL_WRITE) {
3301 permstr[1] = 'w';
3303 if (perms & SMB_POSIX_ACL_EXECUTE) {
3304 permstr[2] = 'x';
3306 return permstr;
3309 /****************************************************************************
3310 UNIX getfacl.
3311 ****************************************************************************/
3313 static int cmd_getfacl(void)
3315 TALLOC_CTX *ctx = talloc_tos();
3316 char *src = NULL;
3317 char *name = NULL;
3318 char *targetname = NULL;
3319 struct cli_state *targetcli;
3320 uint16 major, minor;
3321 uint32 caplow, caphigh;
3322 char *retbuf = NULL;
3323 size_t rb_size = 0;
3324 SMB_STRUCT_STAT sbuf;
3325 uint16 num_file_acls = 0;
3326 uint16 num_dir_acls = 0;
3327 uint16 i;
3328 NTSTATUS status;
3330 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3331 d_printf("getfacl filename\n");
3332 return 1;
3334 src = talloc_asprintf(ctx,
3335 "%s%s",
3336 client_get_cur_dir(),
3337 name);
3338 if (!src) {
3339 return 1;
3342 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3343 &targetname);
3344 if (!NT_STATUS_IS_OK(status)) {
3345 d_printf("stat %s: %s\n", src, nt_errstr(status));
3346 return 1;
3349 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3350 d_printf("Server doesn't support UNIX CIFS calls.\n");
3351 return 1;
3354 status = cli_unix_extensions_version(targetcli, &major, &minor,
3355 &caplow, &caphigh);
3356 if (!NT_STATUS_IS_OK(status)) {
3357 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3358 nt_errstr(status));
3359 return 1;
3362 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3363 d_printf("This server supports UNIX extensions "
3364 "but doesn't support POSIX ACLs.\n");
3365 return 1;
3368 status = cli_posix_stat(targetcli, targetname, &sbuf);
3369 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3370 d_printf("%s getfacl doing a stat on file %s\n",
3371 nt_errstr(status), src);
3372 return 1;
3375 status = cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3376 if (!NT_STATUS_IS_OK(status)) {
3377 d_printf("%s getfacl file %s\n",
3378 nt_errstr(status), src);
3379 return 1;
3382 /* ToDo : Print out the ACL values. */
3383 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3384 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3385 src, (unsigned int)CVAL(retbuf,0) );
3386 return 1;
3389 num_file_acls = SVAL(retbuf,2);
3390 num_dir_acls = SVAL(retbuf,4);
3391 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3392 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3393 src,
3394 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3395 (unsigned int)rb_size);
3396 return 1;
3399 d_printf("# file: %s\n", src);
3400 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3402 if (num_file_acls == 0 && num_dir_acls == 0) {
3403 d_printf("No acls found.\n");
3406 for (i = 0; i < num_file_acls; i++) {
3407 uint32 uorg;
3408 fstring permstring;
3409 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3410 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3412 switch(tagtype) {
3413 case SMB_POSIX_ACL_USER_OBJ:
3414 d_printf("user::");
3415 break;
3416 case SMB_POSIX_ACL_USER:
3417 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3418 d_printf("user:%u:", uorg);
3419 break;
3420 case SMB_POSIX_ACL_GROUP_OBJ:
3421 d_printf("group::");
3422 break;
3423 case SMB_POSIX_ACL_GROUP:
3424 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3425 d_printf("group:%u:", uorg);
3426 break;
3427 case SMB_POSIX_ACL_MASK:
3428 d_printf("mask::");
3429 break;
3430 case SMB_POSIX_ACL_OTHER:
3431 d_printf("other::");
3432 break;
3433 default:
3434 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3435 src, (unsigned int)tagtype );
3436 SAFE_FREE(retbuf);
3437 return 1;
3440 d_printf("%s\n", perms_to_string(permstring, perms));
3443 for (i = 0; i < num_dir_acls; i++) {
3444 uint32 uorg;
3445 fstring permstring;
3446 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3447 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3449 switch(tagtype) {
3450 case SMB_POSIX_ACL_USER_OBJ:
3451 d_printf("default:user::");
3452 break;
3453 case SMB_POSIX_ACL_USER:
3454 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3455 d_printf("default:user:%u:", uorg);
3456 break;
3457 case SMB_POSIX_ACL_GROUP_OBJ:
3458 d_printf("default:group::");
3459 break;
3460 case SMB_POSIX_ACL_GROUP:
3461 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3462 d_printf("default:group:%u:", uorg);
3463 break;
3464 case SMB_POSIX_ACL_MASK:
3465 d_printf("default:mask::");
3466 break;
3467 case SMB_POSIX_ACL_OTHER:
3468 d_printf("default:other::");
3469 break;
3470 default:
3471 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3472 src, (unsigned int)tagtype );
3473 SAFE_FREE(retbuf);
3474 return 1;
3477 d_printf("%s\n", perms_to_string(permstring, perms));
3480 return 0;
3483 /****************************************************************************
3484 Get the EA list of a file
3485 ****************************************************************************/
3487 static int cmd_geteas(void)
3489 TALLOC_CTX *ctx = talloc_tos();
3490 char *src = NULL;
3491 char *name = NULL;
3492 char *targetname = NULL;
3493 struct cli_state *targetcli;
3494 NTSTATUS status;
3495 size_t i, num_eas;
3496 struct ea_struct *eas;
3498 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3499 d_printf("geteas filename\n");
3500 return 1;
3502 src = talloc_asprintf(ctx,
3503 "%s%s",
3504 client_get_cur_dir(),
3505 name);
3506 if (!src) {
3507 return 1;
3510 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3511 &targetname);
3512 if (!NT_STATUS_IS_OK(status)) {
3513 d_printf("stat %s: %s\n", src, nt_errstr(status));
3514 return 1;
3517 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3518 &num_eas, &eas);
3519 if (!NT_STATUS_IS_OK(status)) {
3520 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3521 return 1;
3524 for (i=0; i<num_eas; i++) {
3525 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3526 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3527 stdout);
3528 d_printf("\n");
3531 TALLOC_FREE(eas);
3533 return 0;
3536 /****************************************************************************
3537 Set an EA of a file
3538 ****************************************************************************/
3540 static int cmd_setea(void)
3542 TALLOC_CTX *ctx = talloc_tos();
3543 char *src = NULL;
3544 char *name = NULL;
3545 char *eaname = NULL;
3546 char *eavalue = NULL;
3547 char *targetname = NULL;
3548 struct cli_state *targetcli;
3549 NTSTATUS status;
3551 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3552 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3553 d_printf("setea filename eaname value\n");
3554 return 1;
3556 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3557 eavalue = talloc_strdup(ctx, "");
3559 src = talloc_asprintf(ctx,
3560 "%s%s",
3561 client_get_cur_dir(),
3562 name);
3563 if (!src) {
3564 return 1;
3567 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3568 &targetname);
3569 if (!NT_STATUS_IS_OK(status)) {
3570 d_printf("stat %s: %s\n", src, nt_errstr(status));
3571 return 1;
3574 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3575 strlen(eavalue));
3576 if (!NT_STATUS_IS_OK(status)) {
3577 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3578 return 1;
3581 return 0;
3584 /****************************************************************************
3585 UNIX stat.
3586 ****************************************************************************/
3588 static int cmd_stat(void)
3590 TALLOC_CTX *ctx = talloc_tos();
3591 char *src = NULL;
3592 char *name = NULL;
3593 char *targetname = NULL;
3594 struct cli_state *targetcli;
3595 fstring mode_str;
3596 SMB_STRUCT_STAT sbuf;
3597 struct tm *lt;
3598 time_t tmp_time;
3599 NTSTATUS status;
3601 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3602 d_printf("stat file\n");
3603 return 1;
3605 src = talloc_asprintf(ctx,
3606 "%s%s",
3607 client_get_cur_dir(),
3608 name);
3609 if (!src) {
3610 return 1;
3613 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3614 &targetname);
3615 if (!NT_STATUS_IS_OK(status)) {
3616 d_printf("stat %s: %s\n", src, nt_errstr(status));
3617 return 1;
3620 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3621 d_printf("Server doesn't support UNIX CIFS calls.\n");
3622 return 1;
3625 status = cli_posix_stat(targetcli, targetname, &sbuf);
3626 if (!NT_STATUS_IS_OK(status)) {
3627 d_printf("%s stat file %s\n",
3628 nt_errstr(status), src);
3629 return 1;
3632 /* Print out the stat values. */
3633 d_printf("File: %s\n", src);
3634 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3635 (double)sbuf.st_ex_size,
3636 (unsigned int)sbuf.st_ex_blocks,
3637 filetype_to_str(sbuf.st_ex_mode));
3639 #if defined(S_ISCHR) && defined(S_ISBLK)
3640 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3641 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3642 (double)sbuf.st_ex_ino,
3643 (unsigned int)sbuf.st_ex_nlink,
3644 unix_dev_major(sbuf.st_ex_rdev),
3645 unix_dev_minor(sbuf.st_ex_rdev));
3646 } else
3647 #endif
3648 d_printf("Inode: %.0f\tLinks: %u\n",
3649 (double)sbuf.st_ex_ino,
3650 (unsigned int)sbuf.st_ex_nlink);
3652 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3653 ((int)sbuf.st_ex_mode & 0777),
3654 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3655 (unsigned int)sbuf.st_ex_uid,
3656 (unsigned int)sbuf.st_ex_gid);
3658 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3659 lt = localtime(&tmp_time);
3660 if (lt) {
3661 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3662 } else {
3663 fstrcpy(mode_str, "unknown");
3665 d_printf("Access: %s\n", mode_str);
3667 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3668 lt = localtime(&tmp_time);
3669 if (lt) {
3670 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3671 } else {
3672 fstrcpy(mode_str, "unknown");
3674 d_printf("Modify: %s\n", mode_str);
3676 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3677 lt = localtime(&tmp_time);
3678 if (lt) {
3679 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3680 } else {
3681 fstrcpy(mode_str, "unknown");
3683 d_printf("Change: %s\n", mode_str);
3685 return 0;
3689 /****************************************************************************
3690 UNIX chown.
3691 ****************************************************************************/
3693 static int cmd_chown(void)
3695 TALLOC_CTX *ctx = talloc_tos();
3696 char *src = NULL;
3697 uid_t uid;
3698 gid_t gid;
3699 char *buf, *buf2, *buf3;
3700 struct cli_state *targetcli;
3701 char *targetname = NULL;
3702 NTSTATUS status;
3704 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3705 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3706 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3707 d_printf("chown uid gid file\n");
3708 return 1;
3711 uid = (uid_t)atoi(buf);
3712 gid = (gid_t)atoi(buf2);
3714 src = talloc_asprintf(ctx,
3715 "%s%s",
3716 client_get_cur_dir(),
3717 buf3);
3718 if (!src) {
3719 return 1;
3721 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3722 &targetname);
3723 if (!NT_STATUS_IS_OK(status)) {
3724 d_printf("chown %s: %s\n", src, nt_errstr(status));
3725 return 1;
3728 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3729 d_printf("Server doesn't support UNIX CIFS calls.\n");
3730 return 1;
3733 status = cli_posix_chown(targetcli, targetname, uid, gid);
3734 if (!NT_STATUS_IS_OK(status)) {
3735 d_printf("%s chown file %s uid=%d, gid=%d\n",
3736 nt_errstr(status), src, (int)uid, (int)gid);
3737 return 1;
3740 return 0;
3743 /****************************************************************************
3744 Rename some file.
3745 ****************************************************************************/
3747 static int cmd_rename(void)
3749 TALLOC_CTX *ctx = talloc_tos();
3750 char *src, *dest;
3751 char *buf, *buf2;
3752 struct cli_state *targetcli;
3753 char *targetsrc;
3754 char *targetdest;
3755 NTSTATUS status;
3757 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3758 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3759 d_printf("rename <src> <dest>\n");
3760 return 1;
3763 src = talloc_asprintf(ctx,
3764 "%s%s",
3765 client_get_cur_dir(),
3766 buf);
3767 if (!src) {
3768 return 1;
3771 dest = talloc_asprintf(ctx,
3772 "%s%s",
3773 client_get_cur_dir(),
3774 buf2);
3775 if (!dest) {
3776 return 1;
3779 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3780 &targetsrc);
3781 if (!NT_STATUS_IS_OK(status)) {
3782 d_printf("rename %s: %s\n", src, nt_errstr(status));
3783 return 1;
3786 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3787 &targetdest);
3788 if (!NT_STATUS_IS_OK(status)) {
3789 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3790 return 1;
3793 status = cli_rename(targetcli, targetsrc, targetdest);
3794 if (!NT_STATUS_IS_OK(status)) {
3795 d_printf("%s renaming files %s -> %s \n",
3796 nt_errstr(status),
3797 targetsrc,
3798 targetdest);
3799 return 1;
3802 return 0;
3805 /****************************************************************************
3806 Print the volume name.
3807 ****************************************************************************/
3809 static int cmd_volume(void)
3811 char *volname;
3812 uint32_t serial_num;
3813 time_t create_date;
3814 NTSTATUS status;
3816 status = cli_get_fs_volume_info(cli, talloc_tos(),
3817 &volname, &serial_num,
3818 &create_date);
3819 if (!NT_STATUS_IS_OK(status)) {
3820 d_printf("Error %s getting volume info\n", nt_errstr(status));
3821 return 1;
3824 d_printf("Volume: |%s| serial number 0x%x\n",
3825 volname, (unsigned int)serial_num);
3826 return 0;
3829 /****************************************************************************
3830 Hard link files using the NT call.
3831 ****************************************************************************/
3833 static int cmd_hardlink(void)
3835 TALLOC_CTX *ctx = talloc_tos();
3836 char *src, *dest;
3837 char *buf, *buf2;
3838 struct cli_state *targetcli;
3839 char *targetname;
3840 NTSTATUS status;
3842 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3843 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3844 d_printf("hardlink <src> <dest>\n");
3845 return 1;
3848 src = talloc_asprintf(ctx,
3849 "%s%s",
3850 client_get_cur_dir(),
3851 buf);
3852 if (!src) {
3853 return 1;
3856 dest = talloc_asprintf(ctx,
3857 "%s%s",
3858 client_get_cur_dir(),
3859 buf2);
3860 if (!dest) {
3861 return 1;
3864 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3865 &targetname);
3866 if (!NT_STATUS_IS_OK(status)) {
3867 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
3868 return 1;
3871 status = cli_nt_hardlink(targetcli, targetname, dest);
3872 if (!NT_STATUS_IS_OK(status)) {
3873 d_printf("%s doing an NT hard link of files\n",
3874 nt_errstr(status));
3875 return 1;
3878 return 0;
3881 /****************************************************************************
3882 Toggle the prompt flag.
3883 ****************************************************************************/
3885 static int cmd_prompt(void)
3887 prompt = !prompt;
3888 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3889 return 1;
3892 /****************************************************************************
3893 Set the newer than time.
3894 ****************************************************************************/
3896 static int cmd_newer(void)
3898 TALLOC_CTX *ctx = talloc_tos();
3899 char *buf;
3900 bool ok;
3901 SMB_STRUCT_STAT sbuf;
3903 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3904 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3905 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3906 DEBUG(1,("Getting files newer than %s",
3907 time_to_asc(newer_than)));
3908 } else {
3909 newer_than = 0;
3912 if (ok && newer_than == 0) {
3913 d_printf("Error setting newer-than time\n");
3914 return 1;
3917 return 0;
3920 /****************************************************************************
3921 Watch directory changes
3922 ****************************************************************************/
3924 static int cmd_notify(void)
3926 TALLOC_CTX *frame = talloc_stackframe();
3927 char *name, *buf;
3928 NTSTATUS status;
3929 uint16_t fnum;
3931 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
3932 if (name == NULL) {
3933 goto fail;
3935 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
3936 goto usage;
3938 name = talloc_asprintf_append(name, "%s", buf);
3939 if (name == NULL) {
3940 goto fail;
3942 status = cli_ntcreate(
3943 cli, name, 0, FILE_READ_DATA, 0,
3944 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3945 FILE_OPEN, 0, 0, &fnum);
3946 if (!NT_STATUS_IS_OK(status)) {
3947 d_printf("Could not open file: %s\n", nt_errstr(status));
3948 goto fail;
3951 while (1) {
3952 uint32_t i, num_changes;
3953 struct notify_change *changes;
3955 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
3956 true,
3957 talloc_tos(), &num_changes, &changes);
3958 if (!NT_STATUS_IS_OK(status)) {
3959 d_printf("notify returned %s\n",
3960 nt_errstr(status));
3961 goto fail;
3963 for (i=0; i<num_changes; i++) {
3964 printf("%4.4x %s\n", changes[i].action,
3965 changes[i].name);
3967 TALLOC_FREE(changes);
3969 usage:
3970 d_printf("notify <file>\n");
3971 fail:
3972 TALLOC_FREE(frame);
3973 return 1;
3976 /****************************************************************************
3977 Set the archive level.
3978 ****************************************************************************/
3980 static int cmd_archive(void)
3982 TALLOC_CTX *ctx = talloc_tos();
3983 char *buf;
3985 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3986 archive_level = atoi(buf);
3987 } else {
3988 d_printf("Archive level is %d\n",archive_level);
3991 return 0;
3994 /****************************************************************************
3995 Toggle the backup_intent state.
3996 ****************************************************************************/
3998 static int cmd_backup(void)
4000 backup_intent = !backup_intent;
4001 cli_set_backup_intent(cli, backup_intent);
4002 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
4003 return 1;
4006 /****************************************************************************
4007 Toggle the lowercaseflag.
4008 ****************************************************************************/
4010 static int cmd_lowercase(void)
4012 lowercase = !lowercase;
4013 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4014 return 0;
4017 /****************************************************************************
4018 Toggle the case sensitive flag.
4019 ****************************************************************************/
4021 static int cmd_setcase(void)
4023 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4025 cli_set_case_sensitive(cli, !orig_case_sensitive);
4026 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4027 "on":"off"));
4028 return 0;
4031 /****************************************************************************
4032 Toggle the showacls flag.
4033 ****************************************************************************/
4035 static int cmd_showacls(void)
4037 showacls = !showacls;
4038 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4039 return 0;
4043 /****************************************************************************
4044 Toggle the recurse flag.
4045 ****************************************************************************/
4047 static int cmd_recurse(void)
4049 recurse = !recurse;
4050 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4051 return 0;
4054 /****************************************************************************
4055 Toggle the translate flag.
4056 ****************************************************************************/
4058 static int cmd_translate(void)
4060 translation = !translation;
4061 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4062 translation?"on":"off"));
4063 return 0;
4066 /****************************************************************************
4067 Do the lcd command.
4068 ****************************************************************************/
4070 static int cmd_lcd(void)
4072 TALLOC_CTX *ctx = talloc_tos();
4073 char *buf;
4074 char *d;
4076 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4077 if (chdir(buf) == -1) {
4078 d_printf("chdir to %s failed (%s)\n",
4079 buf, strerror(errno));
4082 d = sys_getwd();
4083 if (!d) {
4084 return 1;
4086 DEBUG(2,("the local directory is now %s\n",d));
4087 SAFE_FREE(d);
4088 return 0;
4091 /****************************************************************************
4092 Get a file restarting at end of local file.
4093 ****************************************************************************/
4095 static int cmd_reget(void)
4097 TALLOC_CTX *ctx = talloc_tos();
4098 char *local_name = NULL;
4099 char *remote_name = NULL;
4100 char *fname = NULL;
4101 char *p = NULL;
4103 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4104 if (!remote_name) {
4105 return 1;
4108 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4109 d_printf("reget <filename>\n");
4110 return 1;
4112 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4113 if (!remote_name) {
4114 return 1;
4116 remote_name = clean_name(ctx,remote_name);
4117 if (!remote_name) {
4118 return 1;
4121 local_name = fname;
4122 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4123 if (p) {
4124 local_name = p;
4127 return do_get(remote_name, local_name, true);
4130 /****************************************************************************
4131 Put a file restarting at end of local file.
4132 ****************************************************************************/
4134 static int cmd_reput(void)
4136 TALLOC_CTX *ctx = talloc_tos();
4137 char *local_name = NULL;
4138 char *remote_name = NULL;
4139 char *buf;
4140 SMB_STRUCT_STAT st;
4142 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4143 if (!remote_name) {
4144 return 1;
4147 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4148 d_printf("reput <filename>\n");
4149 return 1;
4152 if (!file_exist_stat(local_name, &st, false)) {
4153 d_printf("%s does not exist\n", local_name);
4154 return 1;
4157 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4158 remote_name = talloc_asprintf_append(remote_name,
4159 "%s", buf);
4160 } else {
4161 remote_name = talloc_asprintf_append(remote_name,
4162 "%s", local_name);
4164 if (!remote_name) {
4165 return 1;
4168 remote_name = clean_name(ctx, remote_name);
4169 if (!remote_name) {
4170 return 1;
4173 return do_put(remote_name, local_name, true);
4176 /****************************************************************************
4177 List a share name.
4178 ****************************************************************************/
4180 static void browse_fn(const char *name, uint32 m,
4181 const char *comment, void *state)
4183 const char *typestr = "";
4185 switch (m & 7) {
4186 case STYPE_DISKTREE:
4187 typestr = "Disk";
4188 break;
4189 case STYPE_PRINTQ:
4190 typestr = "Printer";
4191 break;
4192 case STYPE_DEVICE:
4193 typestr = "Device";
4194 break;
4195 case STYPE_IPC:
4196 typestr = "IPC";
4197 break;
4199 /* FIXME: If the remote machine returns non-ascii characters
4200 in any of these fields, they can corrupt the output. We
4201 should remove them. */
4202 if (!grepable) {
4203 d_printf("\t%-15s %-10.10s%s\n",
4204 name,typestr,comment);
4205 } else {
4206 d_printf ("%s|%s|%s\n",typestr,name,comment);
4210 static bool browse_host_rpc(bool sort)
4212 NTSTATUS status;
4213 struct rpc_pipe_client *pipe_hnd = NULL;
4214 TALLOC_CTX *frame = talloc_stackframe();
4215 WERROR werr;
4216 struct srvsvc_NetShareInfoCtr info_ctr;
4217 struct srvsvc_NetShareCtr1 ctr1;
4218 uint32_t resume_handle = 0;
4219 uint32_t total_entries = 0;
4220 int i;
4221 struct dcerpc_binding_handle *b;
4223 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4224 &pipe_hnd);
4226 if (!NT_STATUS_IS_OK(status)) {
4227 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4228 nt_errstr(status)));
4229 TALLOC_FREE(frame);
4230 return false;
4233 b = pipe_hnd->binding_handle;
4235 ZERO_STRUCT(info_ctr);
4236 ZERO_STRUCT(ctr1);
4238 info_ctr.level = 1;
4239 info_ctr.ctr.ctr1 = &ctr1;
4241 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4242 pipe_hnd->desthost,
4243 &info_ctr,
4244 0xffffffff,
4245 &total_entries,
4246 &resume_handle,
4247 &werr);
4249 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4250 TALLOC_FREE(pipe_hnd);
4251 TALLOC_FREE(frame);
4252 return false;
4255 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4256 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4257 browse_fn(info.name, info.type, info.comment, NULL);
4260 TALLOC_FREE(pipe_hnd);
4261 TALLOC_FREE(frame);
4262 return true;
4265 /****************************************************************************
4266 Try and browse available connections on a host.
4267 ****************************************************************************/
4269 static bool browse_host(bool sort)
4271 int ret;
4272 if (!grepable) {
4273 d_printf("\n\tSharename Type Comment\n");
4274 d_printf("\t--------- ---- -------\n");
4277 if (browse_host_rpc(sort)) {
4278 return true;
4281 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4282 NTSTATUS status = cli_nt_error(cli);
4283 d_printf("Error returning browse list: %s\n",
4284 nt_errstr(status));
4287 return (ret != -1);
4290 /****************************************************************************
4291 List a server name.
4292 ****************************************************************************/
4294 static void server_fn(const char *name, uint32 m,
4295 const char *comment, void *state)
4298 if (!grepable){
4299 d_printf("\t%-16s %s\n", name, comment);
4300 } else {
4301 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4305 /****************************************************************************
4306 Try and browse available connections on a host.
4307 ****************************************************************************/
4309 static bool list_servers(const char *wk_grp)
4311 fstring state;
4313 if (!cli->server_domain)
4314 return false;
4316 if (!grepable) {
4317 d_printf("\n\tServer Comment\n");
4318 d_printf("\t--------- -------\n");
4320 fstrcpy( state, "Server" );
4321 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4322 state);
4324 if (!grepable) {
4325 d_printf("\n\tWorkgroup Master\n");
4326 d_printf("\t--------- -------\n");
4329 fstrcpy( state, "Workgroup" );
4330 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4331 server_fn, state);
4332 return true;
4335 /****************************************************************************
4336 Print or set current VUID
4337 ****************************************************************************/
4339 static int cmd_vuid(void)
4341 TALLOC_CTX *ctx = talloc_tos();
4342 char *buf;
4344 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4345 d_printf("Current VUID is %d\n",
4346 cli_state_get_uid(cli));
4347 return 0;
4350 cli_state_set_uid(cli, atoi(buf));
4351 return 0;
4354 /****************************************************************************
4355 Setup a new VUID, by issuing a session setup
4356 ****************************************************************************/
4358 static int cmd_logon(void)
4360 TALLOC_CTX *ctx = talloc_tos();
4361 char *l_username, *l_password;
4362 NTSTATUS nt_status;
4364 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4365 d_printf("logon <username> [<password>]\n");
4366 return 0;
4369 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4370 char *pass = getpass("Password: ");
4371 if (pass) {
4372 l_password = talloc_strdup(ctx,pass);
4375 if (!l_password) {
4376 return 1;
4379 nt_status = cli_session_setup(cli, l_username,
4380 l_password, strlen(l_password),
4381 l_password, strlen(l_password),
4382 lp_workgroup());
4383 if (!NT_STATUS_IS_OK(nt_status)) {
4384 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4385 return -1;
4388 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4389 return 0;
4393 * close the session
4396 static int cmd_logoff(void)
4398 NTSTATUS status;
4400 status = cli_ulogoff(cli);
4401 if (!NT_STATUS_IS_OK(status)) {
4402 d_printf("logoff failed: %s\n", nt_errstr(status));
4403 return -1;
4406 d_printf("logoff successful\n");
4407 return 0;
4412 * tree connect (connect to a share)
4415 static int cmd_tcon(void)
4417 TALLOC_CTX *ctx = talloc_tos();
4418 char *sharename;
4419 NTSTATUS status;
4421 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4422 d_printf("tcon <sharename>\n");
4423 return 0;
4426 if (!sharename) {
4427 return 1;
4430 status = cli_tree_connect(cli, sharename, "?????", "", 0);
4431 if (!NT_STATUS_IS_OK(status)) {
4432 d_printf("tcon failed: %s\n", nt_errstr(status));
4433 return -1;
4436 talloc_free(sharename);
4438 d_printf("tcon to %s successful, tid: %u\n", sharename,
4439 cli_state_get_tid(cli));
4440 return 0;
4444 * tree disconnect (disconnect from a share)
4447 static int cmd_tdis(void)
4449 NTSTATUS status;
4451 status = cli_tdis(cli);
4452 if (!NT_STATUS_IS_OK(status)) {
4453 d_printf("tdis failed: %s\n", nt_errstr(status));
4454 return -1;
4457 d_printf("tdis successful\n");
4458 return 0;
4463 * get or set tid
4466 static int cmd_tid(void)
4468 TALLOC_CTX *ctx = talloc_tos();
4469 char *tid_str;
4471 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4472 if (cli_state_has_tcon(cli)) {
4473 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4474 } else {
4475 d_printf("no tcon currently\n");
4477 } else {
4478 uint16_t tid = atoi(tid_str);
4479 cli_state_set_tid(cli, tid);
4482 return 0;
4486 /****************************************************************************
4487 list active connections
4488 ****************************************************************************/
4490 static int cmd_list_connect(void)
4492 cli_cm_display(cli);
4493 return 0;
4496 /****************************************************************************
4497 display the current active client connection
4498 ****************************************************************************/
4500 static int cmd_show_connect( void )
4502 TALLOC_CTX *ctx = talloc_tos();
4503 struct cli_state *targetcli;
4504 char *targetpath;
4505 NTSTATUS status;
4507 status = cli_resolve_path(ctx, "", auth_info, cli,
4508 client_get_cur_dir(), &targetcli,
4509 &targetpath);
4510 if (!NT_STATUS_IS_OK(status)) {
4511 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4512 return 1;
4515 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
4516 return 0;
4519 /****************************************************************************
4520 iosize command
4521 ***************************************************************************/
4523 int cmd_iosize(void)
4525 TALLOC_CTX *ctx = talloc_tos();
4526 char *buf;
4527 int iosize;
4529 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4530 if (!smb_encrypt) {
4531 d_printf("iosize <n> or iosize 0x<n>. "
4532 "Minimum is 16384 (0x4000), "
4533 "max is 16776960 (0xFFFF00)\n");
4534 } else {
4535 d_printf("iosize <n> or iosize 0x<n>. "
4536 "(Encrypted connection) ,"
4537 "Minimum is 16384 (0x4000), "
4538 "max is 130048 (0x1FC00)\n");
4540 return 1;
4543 iosize = strtol(buf,NULL,0);
4544 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4545 d_printf("iosize out of range for encrypted "
4546 "connection (min = 16384 (0x4000), "
4547 "max = 130048 (0x1FC00)");
4548 return 1;
4549 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4550 d_printf("iosize out of range (min = 16384 (0x4000), "
4551 "max = 16776960 (0xFFFF00)");
4552 return 1;
4555 io_bufsize = iosize;
4556 d_printf("iosize is now %d\n", io_bufsize);
4557 return 0;
4560 /****************************************************************************
4561 history
4562 ****************************************************************************/
4563 static int cmd_history(void)
4565 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4566 HIST_ENTRY **hlist;
4567 int i;
4569 hlist = history_list();
4571 for (i = 0; hlist && hlist[i]; i++) {
4572 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4574 #else
4575 DEBUG(0,("no history without readline support\n"));
4576 #endif
4578 return 0;
4581 /* Some constants for completing filename arguments */
4583 #define COMPL_NONE 0 /* No completions */
4584 #define COMPL_REMOTE 1 /* Complete remote filename */
4585 #define COMPL_LOCAL 2 /* Complete local filename */
4587 /* This defines the commands supported by this client.
4588 * NOTE: The "!" must be the last one in the list because it's fn pointer
4589 * field is NULL, and NULL in that field is used in process_tok()
4590 * (below) to indicate the end of the list. crh
4592 static struct {
4593 const char *name;
4594 int (*fn)(void);
4595 const char *description;
4596 char compl_args[2]; /* Completion argument info */
4597 } commands[] = {
4598 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4599 {"allinfo",cmd_allinfo,"<file> show all available info",
4600 {COMPL_NONE,COMPL_NONE}},
4601 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4602 {"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}},
4603 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4604 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4605 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4606 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4607 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4608 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4609 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4610 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4611 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4612 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4613 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4614 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4615 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4616 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4617 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4618 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4619 {COMPL_REMOTE, COMPL_LOCAL}},
4620 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4621 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4622 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4623 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4624 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4625 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4626 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4627 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4628 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4629 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4630 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4631 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4632 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4633 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4634 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4635 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4636 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4637 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4638 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4639 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4640 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4641 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4642 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4643 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4644 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4645 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4646 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4647 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4648 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4649 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4650 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4651 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4652 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4653 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4654 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4655 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4656 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4657 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4658 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4659 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4660 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4661 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4662 {COMPL_REMOTE, COMPL_LOCAL}},
4663 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4664 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4665 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4666 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4667 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4668 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4669 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4670 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4671 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4672 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4673 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4674 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4675 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4676 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
4677 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
4678 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
4679 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
4680 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4682 /* Yes, this must be here, see crh's comment above. */
4683 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4684 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4687 /*******************************************************************
4688 Lookup a command string in the list of commands, including
4689 abbreviations.
4690 ******************************************************************/
4692 static int process_tok(char *tok)
4694 int i = 0, matches = 0;
4695 int cmd=0;
4696 int tok_len = strlen(tok);
4698 while (commands[i].fn != NULL) {
4699 if (strequal(commands[i].name,tok)) {
4700 matches = 1;
4701 cmd = i;
4702 break;
4703 } else if (strnequal(commands[i].name, tok, tok_len)) {
4704 matches++;
4705 cmd = i;
4707 i++;
4710 if (matches == 0)
4711 return(-1);
4712 else if (matches == 1)
4713 return(cmd);
4714 else
4715 return(-2);
4718 /****************************************************************************
4719 Help.
4720 ****************************************************************************/
4722 static int cmd_help(void)
4724 TALLOC_CTX *ctx = talloc_tos();
4725 int i=0,j;
4726 char *buf;
4728 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4729 if ((i = process_tok(buf)) >= 0)
4730 d_printf("HELP %s:\n\t%s\n\n",
4731 commands[i].name,commands[i].description);
4732 } else {
4733 while (commands[i].description) {
4734 for (j=0; commands[i].description && (j<5); j++) {
4735 d_printf("%-15s",commands[i].name);
4736 i++;
4738 d_printf("\n");
4741 return 0;
4744 /****************************************************************************
4745 Process a -c command string.
4746 ****************************************************************************/
4748 static int process_command_string(const char *cmd_in)
4750 TALLOC_CTX *ctx = talloc_tos();
4751 char *cmd = talloc_strdup(ctx, cmd_in);
4752 int rc = 0;
4754 if (!cmd) {
4755 return 1;
4757 /* establish the connection if not already */
4759 if (!cli) {
4760 NTSTATUS status;
4762 status = cli_cm_open(talloc_tos(), NULL,
4763 have_ip ? dest_ss_str : desthost,
4764 service, auth_info,
4765 true, smb_encrypt,
4766 max_protocol, port, name_type,
4767 &cli);
4768 if (!NT_STATUS_IS_OK(status)) {
4769 return 1;
4773 while (cmd[0] != '\0') {
4774 char *line;
4775 char *p;
4776 char *tok;
4777 int i;
4779 if ((p = strchr_m(cmd, ';')) == 0) {
4780 line = cmd;
4781 cmd += strlen(cmd);
4782 } else {
4783 *p = '\0';
4784 line = cmd;
4785 cmd = p + 1;
4788 /* and get the first part of the command */
4789 cmd_ptr = line;
4790 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4791 continue;
4794 if ((i = process_tok(tok)) >= 0) {
4795 rc = commands[i].fn();
4796 } else if (i == -2) {
4797 d_printf("%s: command abbreviation ambiguous\n",tok);
4798 } else {
4799 d_printf("%s: command not found\n",tok);
4803 return rc;
4806 #define MAX_COMPLETIONS 100
4808 struct completion_remote {
4809 char *dirmask;
4810 char **matches;
4811 int count, samelen;
4812 const char *text;
4813 int len;
4816 static NTSTATUS completion_remote_filter(const char *mnt,
4817 struct file_info *f,
4818 const char *mask,
4819 void *state)
4821 struct completion_remote *info = (struct completion_remote *)state;
4823 if (info->count >= MAX_COMPLETIONS - 1) {
4824 return NT_STATUS_OK;
4826 if (strncmp(info->text, f->name, info->len) != 0) {
4827 return NT_STATUS_OK;
4829 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4830 return NT_STATUS_OK;
4833 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4834 info->matches[info->count] = SMB_STRDUP(f->name);
4835 else {
4836 TALLOC_CTX *ctx = talloc_stackframe();
4837 char *tmp;
4839 tmp = talloc_strdup(ctx,info->dirmask);
4840 if (!tmp) {
4841 TALLOC_FREE(ctx);
4842 return NT_STATUS_NO_MEMORY;
4844 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4845 if (!tmp) {
4846 TALLOC_FREE(ctx);
4847 return NT_STATUS_NO_MEMORY;
4849 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4850 tmp = talloc_asprintf_append(tmp, "%s",
4851 CLI_DIRSEP_STR);
4853 if (!tmp) {
4854 TALLOC_FREE(ctx);
4855 return NT_STATUS_NO_MEMORY;
4857 info->matches[info->count] = SMB_STRDUP(tmp);
4858 TALLOC_FREE(ctx);
4860 if (info->matches[info->count] == NULL) {
4861 return NT_STATUS_OK;
4863 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4864 smb_readline_ca_char(0);
4866 if (info->count == 1) {
4867 info->samelen = strlen(info->matches[info->count]);
4868 } else {
4869 while (strncmp(info->matches[info->count],
4870 info->matches[info->count-1],
4871 info->samelen) != 0) {
4872 info->samelen--;
4875 info->count++;
4876 return NT_STATUS_OK;
4879 static char **remote_completion(const char *text, int len)
4881 TALLOC_CTX *ctx = talloc_stackframe();
4882 char *dirmask = NULL;
4883 char *targetpath = NULL;
4884 struct cli_state *targetcli = NULL;
4885 int i;
4886 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4887 NTSTATUS status;
4889 /* can't have non-static initialisation on Sun CC, so do it
4890 at run time here */
4891 info.samelen = len;
4892 info.text = text;
4893 info.len = len;
4895 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4896 if (!info.matches) {
4897 TALLOC_FREE(ctx);
4898 return NULL;
4902 * We're leaving matches[0] free to fill it later with the text to
4903 * display: Either the one single match or the longest common subset
4904 * of the matches.
4906 info.matches[0] = NULL;
4907 info.count = 1;
4909 for (i = len-1; i >= 0; i--) {
4910 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4911 break;
4915 info.text = text+i+1;
4916 info.samelen = info.len = len-i-1;
4918 if (i > 0) {
4919 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4920 if (!info.dirmask) {
4921 goto cleanup;
4923 strncpy(info.dirmask, text, i+1);
4924 info.dirmask[i+1] = 0;
4925 dirmask = talloc_asprintf(ctx,
4926 "%s%*s*",
4927 client_get_cur_dir(),
4928 i-1,
4929 text);
4930 } else {
4931 info.dirmask = SMB_STRDUP("");
4932 if (!info.dirmask) {
4933 goto cleanup;
4935 dirmask = talloc_asprintf(ctx,
4936 "%s*",
4937 client_get_cur_dir());
4939 if (!dirmask) {
4940 goto cleanup;
4943 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
4944 &targetpath);
4945 if (!NT_STATUS_IS_OK(status)) {
4946 goto cleanup;
4948 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4949 completion_remote_filter, (void *)&info);
4950 if (!NT_STATUS_IS_OK(status)) {
4951 goto cleanup;
4954 if (info.count == 1) {
4956 * No matches at all, NULL indicates there is nothing
4958 SAFE_FREE(info.matches[0]);
4959 SAFE_FREE(info.matches);
4960 TALLOC_FREE(ctx);
4961 return NULL;
4964 if (info.count == 2) {
4966 * Exactly one match in matches[1], indicate this is the one
4967 * in matches[0].
4969 info.matches[0] = info.matches[1];
4970 info.matches[1] = NULL;
4971 info.count -= 1;
4972 TALLOC_FREE(ctx);
4973 return info.matches;
4977 * We got more than one possible match, set the result to the maximum
4978 * common subset
4981 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4982 info.matches[info.count] = NULL;
4983 TALLOC_FREE(ctx);
4984 return info.matches;
4986 cleanup:
4987 for (i = 0; i < info.count; i++) {
4988 SAFE_FREE(info.matches[i]);
4990 SAFE_FREE(info.matches);
4991 SAFE_FREE(info.dirmask);
4992 TALLOC_FREE(ctx);
4993 return NULL;
4996 static char **completion_fn(const char *text, int start, int end)
4998 smb_readline_ca_char(' ');
5000 if (start) {
5001 const char *buf, *sp;
5002 int i;
5003 char compl_type;
5005 buf = smb_readline_get_line_buffer();
5006 if (buf == NULL)
5007 return NULL;
5009 sp = strchr(buf, ' ');
5010 if (sp == NULL)
5011 return NULL;
5013 for (i = 0; commands[i].name; i++) {
5014 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5015 (commands[i].name[sp - buf] == 0)) {
5016 break;
5019 if (commands[i].name == NULL)
5020 return NULL;
5022 while (*sp == ' ')
5023 sp++;
5025 if (sp == (buf + start))
5026 compl_type = commands[i].compl_args[0];
5027 else
5028 compl_type = commands[i].compl_args[1];
5030 if (compl_type == COMPL_REMOTE)
5031 return remote_completion(text, end - start);
5032 else /* fall back to local filename completion */
5033 return NULL;
5034 } else {
5035 char **matches;
5036 int i, len, samelen = 0, count=1;
5038 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5039 if (!matches) {
5040 return NULL;
5042 matches[0] = NULL;
5044 len = strlen(text);
5045 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5046 if (strncmp(text, commands[i].name, len) == 0) {
5047 matches[count] = SMB_STRDUP(commands[i].name);
5048 if (!matches[count])
5049 goto cleanup;
5050 if (count == 1)
5051 samelen = strlen(matches[count]);
5052 else
5053 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5054 samelen--;
5055 count++;
5059 switch (count) {
5060 case 0: /* should never happen */
5061 case 1:
5062 goto cleanup;
5063 case 2:
5064 matches[0] = SMB_STRDUP(matches[1]);
5065 break;
5066 default:
5067 matches[0] = (char *)SMB_MALLOC(samelen+1);
5068 if (!matches[0])
5069 goto cleanup;
5070 strncpy(matches[0], matches[1], samelen);
5071 matches[0][samelen] = 0;
5073 matches[count] = NULL;
5074 return matches;
5076 cleanup:
5077 for (i = 0; i < count; i++)
5078 free(matches[i]);
5080 free(matches);
5081 return NULL;
5085 static bool finished;
5087 /****************************************************************************
5088 Make sure we swallow keepalives during idle time.
5089 ****************************************************************************/
5091 static void readline_callback(void)
5093 static time_t last_t;
5094 struct timespec now;
5095 time_t t;
5096 NTSTATUS status;
5097 unsigned char garbage[16];
5099 clock_gettime_mono(&now);
5100 t = now.tv_sec;
5102 if (t - last_t < 5)
5103 return;
5105 last_t = t;
5107 /* Ping the server to keep the connection alive using SMBecho. */
5108 memset(garbage, 0xf0, sizeof(garbage));
5109 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5110 if (NT_STATUS_IS_OK(status)) {
5111 return;
5114 if (!cli_state_is_connected(cli)) {
5115 DEBUG(0,("SMBecho failed (%s). The connection is "
5116 "disconnected now\n", nt_errstr(status)));
5117 finished = true;
5118 smb_readline_done();
5122 /****************************************************************************
5123 Process commands on stdin.
5124 ****************************************************************************/
5126 static int process_stdin(void)
5128 int rc = 0;
5130 while (!finished) {
5131 TALLOC_CTX *frame = talloc_stackframe();
5132 char *tok = NULL;
5133 char *the_prompt = NULL;
5134 char *line = NULL;
5135 int i;
5137 /* display a prompt */
5138 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5139 TALLOC_FREE(frame);
5140 break;
5142 line = smb_readline(the_prompt, readline_callback, completion_fn);
5143 SAFE_FREE(the_prompt);
5144 if (!line) {
5145 TALLOC_FREE(frame);
5146 break;
5149 /* special case - first char is ! */
5150 if (*line == '!') {
5151 if (system(line + 1) == -1) {
5152 d_printf("system() command %s failed.\n",
5153 line+1);
5155 SAFE_FREE(line);
5156 TALLOC_FREE(frame);
5157 continue;
5160 /* and get the first part of the command */
5161 cmd_ptr = line;
5162 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5163 TALLOC_FREE(frame);
5164 SAFE_FREE(line);
5165 continue;
5168 if ((i = process_tok(tok)) >= 0) {
5169 rc = commands[i].fn();
5170 } else if (i == -2) {
5171 d_printf("%s: command abbreviation ambiguous\n",tok);
5172 } else {
5173 d_printf("%s: command not found\n",tok);
5175 SAFE_FREE(line);
5176 TALLOC_FREE(frame);
5178 return rc;
5181 /****************************************************************************
5182 Process commands from the client.
5183 ****************************************************************************/
5185 static int process(const char *base_directory)
5187 int rc = 0;
5188 NTSTATUS status;
5190 status = cli_cm_open(talloc_tos(), NULL,
5191 have_ip ? dest_ss_str : desthost,
5192 service, auth_info, true, smb_encrypt,
5193 max_protocol, port, name_type, &cli);
5194 if (!NT_STATUS_IS_OK(status)) {
5195 return 1;
5198 if (base_directory && *base_directory) {
5199 rc = do_cd(base_directory);
5200 if (rc) {
5201 cli_shutdown(cli);
5202 return rc;
5206 if (cmdstr) {
5207 rc = process_command_string(cmdstr);
5208 } else {
5209 process_stdin();
5212 cli_shutdown(cli);
5213 return rc;
5216 /****************************************************************************
5217 Handle a -L query.
5218 ****************************************************************************/
5220 static int do_host_query(const char *query_host)
5222 NTSTATUS status;
5224 status = cli_cm_open(talloc_tos(), NULL,
5225 have_ip ? dest_ss_str : query_host,
5226 "IPC$", auth_info, true, smb_encrypt,
5227 max_protocol, port, name_type, &cli);
5228 if (!NT_STATUS_IS_OK(status)) {
5229 return 1;
5232 browse_host(true);
5234 /* Ensure that the host can do IPv4 */
5236 if (!interpret_addr(query_host)) {
5237 struct sockaddr_storage ss;
5238 if (interpret_string_addr(&ss, query_host, 0) &&
5239 (ss.ss_family != AF_INET)) {
5240 d_printf("%s is an IPv6 address -- no workgroup available\n",
5241 query_host);
5242 return 1;
5246 if (port != NBT_SMB_PORT) {
5248 /* Workgroups simply don't make sense over anything
5249 else but port 139... */
5251 cli_shutdown(cli);
5252 status = cli_cm_open(talloc_tos(), NULL,
5253 have_ip ? dest_ss_str : query_host,
5254 "IPC$", auth_info, true, smb_encrypt,
5255 max_protocol, NBT_SMB_PORT, name_type,
5256 &cli);
5257 if (!NT_STATUS_IS_OK(status)) {
5258 cli = NULL;
5262 if (cli == NULL) {
5263 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5264 return 1;
5267 list_servers(lp_workgroup());
5269 cli_shutdown(cli);
5271 return(0);
5274 /****************************************************************************
5275 Handle a tar operation.
5276 ****************************************************************************/
5278 static int do_tar_op(const char *base_directory)
5280 int ret;
5282 /* do we already have a connection? */
5283 if (!cli) {
5284 NTSTATUS status;
5286 status = cli_cm_open(talloc_tos(), NULL,
5287 have_ip ? dest_ss_str : desthost,
5288 service, auth_info, true, smb_encrypt,
5289 max_protocol, port, name_type, &cli);
5290 if (!NT_STATUS_IS_OK(status)) {
5291 return 1;
5295 recurse=true;
5297 if (base_directory && *base_directory) {
5298 ret = do_cd(base_directory);
5299 if (ret) {
5300 cli_shutdown(cli);
5301 return ret;
5305 ret=process_tar();
5307 cli_shutdown(cli);
5309 return(ret);
5312 /****************************************************************************
5313 Handle a message operation.
5314 ****************************************************************************/
5316 static int do_message_op(struct user_auth_info *a_info)
5318 NTSTATUS status;
5320 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5321 port ? port : NBT_SMB_PORT, name_type,
5322 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5323 if (!NT_STATUS_IS_OK(status)) {
5324 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5325 return 1;
5328 send_message(get_cmdline_auth_info_username(a_info));
5329 cli_shutdown(cli);
5331 return 0;
5334 /****************************************************************************
5335 main program
5336 ****************************************************************************/
5338 int main(int argc,char *argv[])
5340 char *base_directory = NULL;
5341 int opt;
5342 char *query_host = NULL;
5343 bool message = false;
5344 static const char *new_name_resolve_order = NULL;
5345 poptContext pc;
5346 char *p;
5347 int rc = 0;
5348 bool tar_opt = false;
5349 bool service_opt = false;
5350 struct poptOption long_options[] = {
5351 POPT_AUTOHELP
5353 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5354 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5355 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5356 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5357 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5358 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5359 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5360 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5361 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5362 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5363 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5364 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5365 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5366 POPT_COMMON_SAMBA
5367 POPT_COMMON_CONNECTION
5368 POPT_COMMON_CREDENTIALS
5369 POPT_TABLEEND
5371 TALLOC_CTX *frame = talloc_stackframe();
5373 if (!client_set_cur_dir("\\")) {
5374 exit(ENOMEM);
5377 /* set default debug level to 1 regardless of what smb.conf sets */
5378 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5379 load_case_tables();
5381 lp_set_cmdline("log level", "1");
5383 auth_info = user_auth_info_init(frame);
5384 if (auth_info == NULL) {
5385 exit(1);
5387 popt_common_set_auth_info(auth_info);
5389 /* skip argv(0) */
5390 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5391 poptSetOtherOptionHelp(pc, "service <password>");
5393 while ((opt = poptGetNextOpt(pc)) != -1) {
5395 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5396 /* I see no other way to keep things sane --SSS */
5397 if (tar_opt == true) {
5398 while (poptPeekArg(pc)) {
5399 poptGetArg(pc);
5401 tar_opt = false;
5404 /* if the service has not yet been specified lets see if it is available in the popt stack */
5405 if (!service_opt && poptPeekArg(pc)) {
5406 service = talloc_strdup(frame, poptGetArg(pc));
5407 if (!service) {
5408 exit(ENOMEM);
5410 service_opt = true;
5413 /* if the service has already been retrieved then check if we have also a password */
5414 if (service_opt
5415 && (!get_cmdline_auth_info_got_pass(auth_info))
5416 && poptPeekArg(pc)) {
5417 set_cmdline_auth_info_password(auth_info,
5418 poptGetArg(pc));
5421 switch (opt) {
5422 case 'M':
5423 /* Messages are sent to NetBIOS name type 0x3
5424 * (Messenger Service). Make sure we default
5425 * to port 139 instead of port 445. srl,crh
5427 name_type = 0x03;
5428 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5429 if (!desthost) {
5430 exit(ENOMEM);
5432 if( !port )
5433 port = NBT_SMB_PORT;
5434 message = true;
5435 break;
5436 case 'I':
5438 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5439 exit(1);
5441 have_ip = true;
5442 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5444 break;
5445 case 'E':
5446 setup_logging("smbclient", DEBUG_STDERR );
5447 display_set_stderr();
5448 break;
5450 case 'L':
5451 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5452 if (!query_host) {
5453 exit(ENOMEM);
5455 break;
5456 case 'm':
5457 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5458 break;
5459 case 'T':
5460 /* We must use old option processing for this. Find the
5461 * position of the -T option in the raw argv[]. */
5463 int i;
5464 for (i = 1; i < argc; i++) {
5465 if (strncmp("-T", argv[i],2)==0)
5466 break;
5468 i++;
5469 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5470 poptPrintUsage(pc, stderr, 0);
5471 exit(1);
5474 /* this must be the last option, mark we have parsed it so that we know we have */
5475 tar_opt = true;
5476 break;
5477 case 'D':
5478 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5479 if (!base_directory) {
5480 exit(ENOMEM);
5482 break;
5483 case 'g':
5484 grepable=true;
5485 break;
5486 case 'e':
5487 smb_encrypt=true;
5488 break;
5489 case 'B':
5490 return(do_smb_browse());
5495 /* We may still have some leftovers after the last popt option has been called */
5496 if (tar_opt == true) {
5497 while (poptPeekArg(pc)) {
5498 poptGetArg(pc);
5500 tar_opt = false;
5503 /* if the service has not yet been specified lets see if it is available in the popt stack */
5504 if (!service_opt && poptPeekArg(pc)) {
5505 service = talloc_strdup(frame,poptGetArg(pc));
5506 if (!service) {
5507 exit(ENOMEM);
5509 service_opt = true;
5512 /* if the service has already been retrieved then check if we have also a password */
5513 if (service_opt
5514 && !get_cmdline_auth_info_got_pass(auth_info)
5515 && poptPeekArg(pc)) {
5516 set_cmdline_auth_info_password(auth_info,
5517 poptGetArg(pc));
5520 if ( override_logfile )
5521 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE );
5523 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5524 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5525 argv[0], get_dyn_CONFIGFILE());
5528 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5529 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5530 exit(-1);
5533 load_interfaces();
5535 if (service_opt && service) {
5536 size_t len;
5538 /* Convert any '/' characters in the service name to '\' characters */
5539 string_replace(service, '/','\\');
5540 if (count_chars(service,'\\') < 3) {
5541 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5542 poptPrintUsage(pc, stderr, 0);
5543 exit(1);
5545 /* Remove trailing slashes */
5546 len = strlen(service);
5547 while(len > 0 && service[len - 1] == '\\') {
5548 --len;
5549 service[len] = '\0';
5553 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5554 if (!init_names()) {
5555 fprintf(stderr, "init_names() failed\n");
5556 exit(1);
5559 if(new_name_resolve_order)
5560 lp_set_cmdline("name resolve order", new_name_resolve_order);
5562 if (!tar_type && !query_host && !service && !message) {
5563 poptPrintUsage(pc, stderr, 0);
5564 exit(1);
5567 poptFreeContext(pc);
5569 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5571 /* Ensure we have a password (or equivalent). */
5572 set_cmdline_auth_info_getpass(auth_info);
5574 if (tar_type) {
5575 if (cmdstr)
5576 process_command_string(cmdstr);
5577 rc = do_tar_op(base_directory);
5578 } else if (query_host && *query_host) {
5579 char *qhost = query_host;
5580 char *slash;
5582 while (*qhost == '\\' || *qhost == '/')
5583 qhost++;
5585 if ((slash = strchr_m(qhost, '/'))
5586 || (slash = strchr_m(qhost, '\\'))) {
5587 *slash = 0;
5590 if ((p=strchr_m(qhost, '#'))) {
5591 *p = 0;
5592 p++;
5593 sscanf(p, "%x", &name_type);
5596 rc = do_host_query(qhost);
5597 } else if (message) {
5598 rc = do_message_op(auth_info);
5599 } else if (process(base_directory)) {
5600 rc = 1;
5603 TALLOC_FREE(frame);
5604 return rc;