2 Unix SMB/CIFS implementation.
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/>.
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"
38 #include "libsmb/nmblib.h"
39 #include "include/ntioctl.h"
45 extern int do_smb_browse(void); /* mDNS browsing */
47 extern bool override_logfile
;
52 static char *desthost
;
53 static bool grepable
= false;
54 static char *cmdstr
= NULL
;
55 const char *cmd_ptr
= NULL
;
57 static int io_bufsize
= 524288;
59 static int name_type
= 0x20;
60 static int max_protocol
= PROTOCOL_NT1
;
62 static int process_tok(char *tok
);
63 static int cmd_help(void);
65 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
67 /* 30 second timeout on most commands */
68 #define CLIENT_TIMEOUT (30*1000)
69 #define SHORT_TIMEOUT (5*1000)
71 /* value for unused fid field in trans2 secondary request */
72 #define FID_UNUSED (0xFFFF)
74 time_t newer_than
= 0;
75 static int archive_level
= 0;
77 static bool translation
= false;
80 /* clitar bits insert */
83 extern bool tar_reset
;
86 static bool prompt
= true;
88 static bool recurse
= false;
89 static bool showacls
= false;
90 bool lowercase
= false;
92 static struct sockaddr_storage dest_ss
;
93 static char dest_ss_str
[INET6_ADDRSTRLEN
];
95 #define SEPARATORS " \t\n\r"
97 static bool abort_mget
= true;
100 uint64_t get_total_size
= 0;
101 unsigned int get_total_time_ms
= 0;
102 static uint64_t put_total_size
= 0;
103 static unsigned int put_total_time_ms
= 0;
106 static double dir_total
;
108 /* encrypted state. */
109 static bool smb_encrypt
;
111 /* root cli_state connection */
113 struct cli_state
*cli
;
115 static char CLI_DIRSEP_CHAR
= '\\';
116 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
118 /* Authentication for client connections. */
119 struct user_auth_info
*auth_info
;
121 /* Accessor functions for directory paths. */
122 static char *fileselection
;
123 static const char *client_get_fileselection(void)
126 return fileselection
;
131 static const char *client_set_fileselection(const char *new_fs
)
133 SAFE_FREE(fileselection
);
135 fileselection
= SMB_STRDUP(new_fs
);
137 return client_get_fileselection();
141 static const char *client_get_cwd(void)
146 return CLI_DIRSEP_STR
;
149 static const char *client_set_cwd(const char *new_cwd
)
153 cwd
= SMB_STRDUP(new_cwd
);
155 return client_get_cwd();
158 static char *cur_dir
;
159 const char *client_get_cur_dir(void)
164 return CLI_DIRSEP_STR
;
167 const char *client_set_cur_dir(const char *newdir
)
171 cur_dir
= SMB_STRDUP(newdir
);
173 return client_get_cur_dir();
176 /****************************************************************************
177 Put up a yes/no prompt.
178 ****************************************************************************/
180 static bool yesno(const char *p
)
185 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
188 if (*ans
== 'y' || *ans
== 'Y')
194 /****************************************************************************
195 Write to a local file with CR/LF->LF translation if appropriate. Return the
196 number taken from the buffer. This may not equal the number written.
197 ****************************************************************************/
199 static int writefile(int f
, char *b
, int n
)
209 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
212 if (write(f
, b
, 1) != 1) {
222 /****************************************************************************
223 Read from a file with LF->CR/LF translation if appropriate. Return the
224 number read. read approx n bytes.
225 ****************************************************************************/
227 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
233 return x_fread(b
,1,n
,f
);
236 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
237 if ((c
= x_getc(f
)) == EOF
) {
241 if (c
== '\n') { /* change all LFs to CR/LF */
256 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
258 struct push_state
*state
= (struct push_state
*)priv
;
261 if (x_feof(state
->f
)) {
265 result
= readfile(buf
, n
, state
->f
);
266 state
->nread
+= result
;
270 /****************************************************************************
272 ****************************************************************************/
274 static void send_message(const char *username
)
280 d_printf("Type your message, ending it with a Control-D\n");
283 while (i
<sizeof(buf
)-2) {
284 int c
= fgetc(stdin
);
295 status
= cli_message(cli
, desthost
, username
, buf
);
296 if (!NT_STATUS_IS_OK(status
)) {
297 d_fprintf(stderr
, "cli_message returned %s\n",
302 /****************************************************************************
303 Check the space on a device.
304 ****************************************************************************/
306 static int do_dskattr(void)
308 int total
, bsize
, avail
;
309 struct cli_state
*targetcli
= NULL
;
310 char *targetpath
= NULL
;
311 TALLOC_CTX
*ctx
= talloc_tos();
314 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
315 client_get_cur_dir(), &targetcli
,
317 if (!NT_STATUS_IS_OK(status
)) {
318 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
322 status
= cli_dskattr(targetcli
, &bsize
, &total
, &avail
);
323 if (!NT_STATUS_IS_OK(status
)) {
324 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
328 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
329 total
, bsize
, avail
);
334 /****************************************************************************
336 ****************************************************************************/
338 static int cmd_pwd(void)
340 d_printf("Current directory is %s",service
);
341 d_printf("%s\n",client_get_cur_dir());
345 /****************************************************************************
346 Ensure name has correct directory separators.
347 ****************************************************************************/
349 static void normalize_name(char *newdir
)
351 if (!(cli
->requested_posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
352 string_replace(newdir
,'/','\\');
356 /****************************************************************************
357 Change directory - inner section.
358 ****************************************************************************/
360 static int do_cd(const char *new_dir
)
363 char *saved_dir
= NULL
;
365 char *targetpath
= NULL
;
366 struct cli_state
*targetcli
= NULL
;
367 SMB_STRUCT_STAT sbuf
;
370 TALLOC_CTX
*ctx
= talloc_stackframe();
373 newdir
= talloc_strdup(ctx
, new_dir
);
379 normalize_name(newdir
);
381 /* Save the current directory in case the new directory is invalid */
383 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
389 if (*newdir
== CLI_DIRSEP_CHAR
) {
390 client_set_cur_dir(newdir
);
393 new_cd
= talloc_asprintf(ctx
, "%s%s",
394 client_get_cur_dir(),
401 /* Ensure cur_dir ends in a DIRSEP */
402 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
403 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
408 client_set_cur_dir(new_cd
);
410 new_cd
= clean_name(ctx
, new_cd
);
411 client_set_cur_dir(new_cd
);
413 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
,
414 &targetcli
, &targetpath
);
415 if (!NT_STATUS_IS_OK(status
)) {
416 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
417 client_set_cur_dir(saved_dir
);
421 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
426 /* Use a trans2_qpathinfo to test directories for modern servers.
427 Except Win9x doesn't support the qpathinfo_basic() call..... */
429 if (targetcli
->protocol
> PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
431 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
433 if (!NT_STATUS_IS_OK(status
)) {
434 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
435 client_set_cur_dir(saved_dir
);
439 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
440 d_printf("cd %s: not a directory\n", new_cd
);
441 client_set_cur_dir(saved_dir
);
446 targetpath
= talloc_asprintf(ctx
,
451 client_set_cur_dir(saved_dir
);
454 targetpath
= clean_name(ctx
, targetpath
);
456 client_set_cur_dir(saved_dir
);
460 status
= cli_chkpath(targetcli
, targetpath
);
461 if (!NT_STATUS_IS_OK(status
)) {
462 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
463 client_set_cur_dir(saved_dir
);
476 /****************************************************************************
478 ****************************************************************************/
480 static int cmd_cd(void)
485 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
488 d_printf("Current directory is %s\n",client_get_cur_dir());
494 /****************************************************************************
496 ****************************************************************************/
498 static int cmd_cd_oneup(void)
503 /*******************************************************************
504 Decide if a file should be operated on.
505 ********************************************************************/
507 static bool do_this_one(struct file_info
*finfo
)
513 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
517 if (*client_get_fileselection() &&
518 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
519 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
523 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
524 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
528 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& FILE_ATTRIBUTE_ARCHIVE
)) {
529 DEBUG(3,("archive %s failed\n", finfo
->name
));
536 /****************************************************************************
537 Display info about a file.
538 ****************************************************************************/
540 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
544 TALLOC_CTX
*ctx
= talloc_tos();
545 NTSTATUS status
= NT_STATUS_OK
;
547 if (!do_this_one(finfo
)) {
551 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
553 d_printf(" %-30s%7.7s %8.0f %s",
555 attrib_string(talloc_tos(), finfo
->mode
),
558 dir_total
+= finfo
->size
;
563 /* skip if this is . or .. */
564 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
566 /* create absolute filename for cli_ntcreate() FIXME */
567 afname
= talloc_asprintf(ctx
,
573 return NT_STATUS_NO_MEMORY
;
575 /* print file meta date header */
576 d_printf( "FILENAME:%s\n", finfo
->name
);
577 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo
->mode
));
578 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
579 d_printf( "MTIME:%s", time_to_asc(t
));
580 status
= cli_ntcreate(cli_state
, afname
, 0,
581 CREATE_ACCESS_READ
, 0,
582 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
583 FILE_OPEN
, 0x0, 0x0, &fnum
);
584 if (!NT_STATUS_IS_OK(status
)) {
585 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
586 afname
, nt_errstr(status
)));
588 struct security_descriptor
*sd
= NULL
;
589 sd
= cli_query_secdesc(cli_state
, fnum
, ctx
);
591 status
= cli_nt_error(cli_state
);
592 DEBUG( 0, ("display_finfo() failed to "
593 "get security descriptor: %s",
596 display_sec_desc(sd
);
605 /****************************************************************************
606 Accumulate size of a file.
607 ****************************************************************************/
609 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
612 if (do_this_one(finfo
)) {
613 dir_total
+= finfo
->size
;
618 static bool do_list_recurse
;
619 static bool do_list_dirs
;
620 static char *do_list_queue
= 0;
621 static long do_list_queue_size
= 0;
622 static long do_list_queue_start
= 0;
623 static long do_list_queue_end
= 0;
624 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
627 /****************************************************************************
628 Functions for do_list_queue.
629 ****************************************************************************/
632 * The do_list_queue is a NUL-separated list of strings stored in a
633 * char*. Since this is a FIFO, we keep track of the beginning and
634 * ending locations of the data in the queue. When we overflow, we
635 * double the size of the char*. When the start of the data passes
636 * the midpoint, we move everything back. This is logically more
637 * complex than a linked list, but easier from a memory management
638 * angle. In any memory error condition, do_list_queue is reset.
639 * Functions check to ensure that do_list_queue is non-NULL before
643 static void reset_do_list_queue(void)
645 SAFE_FREE(do_list_queue
);
646 do_list_queue_size
= 0;
647 do_list_queue_start
= 0;
648 do_list_queue_end
= 0;
651 static void init_do_list_queue(void)
653 reset_do_list_queue();
654 do_list_queue_size
= 1024;
655 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
656 if (do_list_queue
== 0) {
657 d_printf("malloc fail for size %d\n",
658 (int)do_list_queue_size
);
659 reset_do_list_queue();
661 memset(do_list_queue
, 0, do_list_queue_size
);
665 static void adjust_do_list_queue(void)
668 * If the starting point of the queue is more than half way through,
669 * move everything toward the beginning.
672 if (do_list_queue
== NULL
) {
673 DEBUG(4,("do_list_queue is empty\n"));
674 do_list_queue_start
= do_list_queue_end
= 0;
678 if (do_list_queue_start
== do_list_queue_end
) {
679 DEBUG(4,("do_list_queue is empty\n"));
680 do_list_queue_start
= do_list_queue_end
= 0;
681 *do_list_queue
= '\0';
682 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
683 DEBUG(4,("sliding do_list_queue backward\n"));
684 memmove(do_list_queue
,
685 do_list_queue
+ do_list_queue_start
,
686 do_list_queue_end
- do_list_queue_start
);
687 do_list_queue_end
-= do_list_queue_start
;
688 do_list_queue_start
= 0;
692 static void add_to_do_list_queue(const char *entry
)
694 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
695 while (new_end
> do_list_queue_size
) {
696 do_list_queue_size
*= 2;
697 DEBUG(4,("enlarging do_list_queue to %d\n",
698 (int)do_list_queue_size
));
699 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
700 if (! do_list_queue
) {
701 d_printf("failure enlarging do_list_queue to %d bytes\n",
702 (int)do_list_queue_size
);
703 reset_do_list_queue();
705 memset(do_list_queue
+ do_list_queue_size
/ 2,
706 0, do_list_queue_size
/ 2);
710 strlcpy_base(do_list_queue
+ do_list_queue_end
,
711 entry
, do_list_queue
, do_list_queue_size
);
712 do_list_queue_end
= new_end
;
713 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
714 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
718 static char *do_list_queue_head(void)
720 return do_list_queue
+ do_list_queue_start
;
723 static void remove_do_list_queue_head(void)
725 if (do_list_queue_end
> do_list_queue_start
) {
726 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
727 adjust_do_list_queue();
728 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
729 (int)do_list_queue_start
, (int)do_list_queue_end
));
733 static int do_list_queue_empty(void)
735 return (! (do_list_queue
&& *do_list_queue
));
738 /****************************************************************************
739 A helper for do_list.
740 ****************************************************************************/
742 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
743 const char *mask
, void *state
)
745 struct cli_state
*cli_state
= (struct cli_state
*)state
;
746 TALLOC_CTX
*ctx
= talloc_tos();
748 char *dir_end
= NULL
;
749 NTSTATUS status
= NT_STATUS_OK
;
751 /* Work out the directory. */
752 dir
= talloc_strdup(ctx
, mask
);
754 return NT_STATUS_NO_MEMORY
;
756 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
760 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
761 if (do_list_dirs
&& do_this_one(f
)) {
762 status
= do_list_fn(cli_state
, f
, dir
);
763 if (!NT_STATUS_IS_OK(status
)) {
767 if (do_list_recurse
&&
769 !strequal(f
->name
,".") &&
770 !strequal(f
->name
,"..")) {
775 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
777 return NT_STATUS_UNSUCCESSFUL
;
780 mask2
= talloc_asprintf(ctx
,
786 return NT_STATUS_NO_MEMORY
;
788 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
794 mask2
= talloc_asprintf_append(mask2
,
800 return NT_STATUS_NO_MEMORY
;
802 add_to_do_list_queue(mask2
);
809 if (do_this_one(f
)) {
810 status
= do_list_fn(cli_state
, f
, dir
);
816 /****************************************************************************
817 A wrapper around cli_list that adds recursion.
818 ****************************************************************************/
820 NTSTATUS
do_list(const char *mask
,
822 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
827 static int in_do_list
= 0;
828 TALLOC_CTX
*ctx
= talloc_tos();
829 struct cli_state
*targetcli
= NULL
;
830 char *targetpath
= NULL
;
831 NTSTATUS ret_status
= NT_STATUS_OK
;
832 NTSTATUS status
= NT_STATUS_OK
;
834 if (in_do_list
&& rec
) {
835 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
841 do_list_recurse
= rec
;
846 init_do_list_queue();
847 add_to_do_list_queue(mask
);
849 while (!do_list_queue_empty()) {
851 * Need to copy head so that it doesn't become
852 * invalid inside the call to cli_list. This
853 * would happen if the list were expanded
855 * Fix from E. Jay Berkenbilt (ejb@ql.org)
857 char *head
= talloc_strdup(ctx
, do_list_queue_head());
860 return NT_STATUS_NO_MEMORY
;
865 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
868 if (!NT_STATUS_IS_OK(status
)) {
869 d_printf("do_list: [%s] %s\n", head
,
871 remove_do_list_queue_head();
875 status
= cli_list(targetcli
, targetpath
, attribute
,
876 do_list_helper
, targetcli
);
877 if (!NT_STATUS_IS_OK(status
)) {
878 d_printf("%s listing %s\n",
879 nt_errstr(status
), targetpath
);
882 remove_do_list_queue_head();
883 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
884 char *next_file
= do_list_queue_head();
886 if ((strlen(next_file
) >= 2) &&
887 (next_file
[strlen(next_file
) - 1] == '*') &&
888 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
889 save_ch
= next_file
+
890 strlen(next_file
) - 2;
893 /* cwd is only used if showacls is on */
894 client_set_cwd(next_file
);
897 if (!showacls
) /* don't disturbe the showacls output */
898 d_printf("\n%s\n",next_file
);
900 *save_ch
= CLI_DIRSEP_CHAR
;
904 TALLOC_FREE(targetpath
);
908 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
909 &targetcli
, &targetpath
);
910 if (NT_STATUS_IS_OK(status
)) {
911 status
= cli_list(targetcli
, targetpath
, attribute
,
912 do_list_helper
, targetcli
);
913 if (!NT_STATUS_IS_OK(status
)) {
914 d_printf("%s listing %s\n",
915 nt_errstr(status
), targetpath
);
918 TALLOC_FREE(targetpath
);
920 d_printf("do_list: [%s] %s\n", mask
, nt_errstr(status
));
926 reset_do_list_queue();
930 /****************************************************************************
931 Get a directory listing.
932 ****************************************************************************/
934 static int cmd_dir(void)
936 TALLOC_CTX
*ctx
= talloc_tos();
937 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
944 mask
= talloc_strdup(ctx
, client_get_cur_dir());
949 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
951 if (*buf
== CLI_DIRSEP_CHAR
) {
952 mask
= talloc_strdup(ctx
, buf
);
954 mask
= talloc_asprintf_append(mask
, "%s", buf
);
957 mask
= talloc_asprintf_append(mask
, "*");
964 /* cwd is only used if showacls is on */
965 client_set_cwd(client_get_cur_dir());
968 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
969 if (!NT_STATUS_IS_OK(status
)) {
975 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
980 /****************************************************************************
981 Get a directory listing.
982 ****************************************************************************/
984 static int cmd_du(void)
986 TALLOC_CTX
*ctx
= talloc_tos();
987 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
994 mask
= talloc_strdup(ctx
, client_get_cur_dir());
998 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
999 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
1005 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1006 normalize_name(buf
);
1007 if (*buf
== CLI_DIRSEP_CHAR
) {
1008 mask
= talloc_strdup(ctx
, buf
);
1010 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1013 mask
= talloc_strdup(ctx
, "*");
1016 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1017 if (!NT_STATUS_IS_OK(status
)) {
1023 d_printf("Total number of bytes: %.0f\n", dir_total
);
1028 static int cmd_echo(void)
1030 TALLOC_CTX
*ctx
= talloc_tos();
1035 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1036 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1037 d_printf("echo <num> <data>\n");
1041 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1043 if (!NT_STATUS_IS_OK(status
)) {
1044 d_printf("echo failed: %s\n", nt_errstr(status
));
1051 /****************************************************************************
1052 Get a file from rname to lname
1053 ****************************************************************************/
1055 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1057 int *pfd
= (int *)priv
;
1058 if (writefile(*pfd
, buf
, n
) == -1) {
1059 return map_nt_error_from_unix(errno
);
1061 return NT_STATUS_OK
;
1064 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1066 TALLOC_CTX
*ctx
= talloc_tos();
1069 bool newhandle
= false;
1070 struct timespec tp_start
;
1074 SMB_OFF_T nread
= 0;
1076 struct cli_state
*targetcli
= NULL
;
1077 char *targetname
= NULL
;
1081 lname
= talloc_strdup(ctx
, lname_in
);
1090 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
,
1092 if (!NT_STATUS_IS_OK(status
)) {
1093 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1097 clock_gettime_mono(&tp_start
);
1099 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1100 if (!NT_STATUS_IS_OK(status
)) {
1101 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1106 if(!strcmp(lname
,"-")) {
1107 handle
= fileno(stdout
);
1110 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1112 start
= sys_lseek(handle
, 0, SEEK_END
);
1114 d_printf("Error seeking local file\n");
1119 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1124 d_printf("Error opening local file %s\n",lname
);
1129 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1131 if (!NT_STATUS_IS_OK(status
)) {
1132 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1134 if(!NT_STATUS_IS_OK(status
)) {
1135 d_printf("getattrib: %s\n", nt_errstr(status
));
1140 DEBUG(1,("getting file %s of size %.0f as %s ",
1141 rname
, (double)size
, lname
));
1143 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1144 writefile_sink
, (void *)&handle
, &nread
);
1145 if (!NT_STATUS_IS_OK(status
)) {
1146 d_fprintf(stderr
, "parallel_read returned %s\n",
1148 cli_close(targetcli
, fnum
);
1152 status
= cli_close(targetcli
, fnum
);
1153 if (!NT_STATUS_IS_OK(status
)) {
1154 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1162 if (archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
1163 cli_setatr(cli
, rname
, attr
& ~(uint16
)FILE_ATTRIBUTE_ARCHIVE
, 0);
1167 struct timespec tp_end
;
1170 clock_gettime_mono(&tp_end
);
1171 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1172 get_total_time_ms
+= this_time
;
1173 get_total_size
+= nread
;
1175 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1176 nread
/ (1.024*this_time
+ 1.0e-4),
1177 get_total_size
/ (1.024*get_total_time_ms
)));
1180 TALLOC_FREE(targetname
);
1184 /****************************************************************************
1186 ****************************************************************************/
1188 static int cmd_get(void)
1190 TALLOC_CTX
*ctx
= talloc_tos();
1195 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1200 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1201 d_printf("get <filename> [localname]\n");
1204 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1208 rname
= clean_name(ctx
, rname
);
1213 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1218 return do_get(rname
, lname
, false);
1221 /****************************************************************************
1222 Do an mget operation on one file.
1223 ****************************************************************************/
1225 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1228 TALLOC_CTX
*ctx
= talloc_tos();
1229 NTSTATUS status
= NT_STATUS_OK
;
1232 char *saved_curdir
= NULL
;
1233 char *mget_mask
= NULL
;
1234 char *new_cd
= NULL
;
1237 return NT_STATUS_OK
;
1240 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1241 return NT_STATUS_OK
;
1244 d_printf("mget aborted\n");
1245 return NT_STATUS_UNSUCCESSFUL
;
1248 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1249 if (asprintf(&quest
,
1250 "Get directory %s? ",finfo
->name
) < 0) {
1251 return NT_STATUS_NO_MEMORY
;
1254 if (asprintf(&quest
,
1255 "Get file %s? ",finfo
->name
) < 0) {
1256 return NT_STATUS_NO_MEMORY
;
1260 if (prompt
&& !yesno(quest
)) {
1262 return NT_STATUS_OK
;
1266 if (!(finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
)) {
1267 rname
= talloc_asprintf(ctx
,
1269 client_get_cur_dir(),
1272 return NT_STATUS_NO_MEMORY
;
1274 do_get(rname
, finfo
->name
, false);
1276 return NT_STATUS_OK
;
1279 /* handle directories */
1280 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1281 if (!saved_curdir
) {
1282 return NT_STATUS_NO_MEMORY
;
1285 new_cd
= talloc_asprintf(ctx
,
1287 client_get_cur_dir(),
1291 return NT_STATUS_NO_MEMORY
;
1293 client_set_cur_dir(new_cd
);
1295 string_replace(finfo
->name
,'\\','/');
1297 strlower_m(finfo
->name
);
1300 if (!directory_exist(finfo
->name
) &&
1301 mkdir(finfo
->name
,0777) != 0) {
1302 d_printf("failed to create directory %s\n",finfo
->name
);
1303 client_set_cur_dir(saved_curdir
);
1304 return map_nt_error_from_unix(errno
);
1307 if (chdir(finfo
->name
) != 0) {
1308 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1309 client_set_cur_dir(saved_curdir
);
1310 return map_nt_error_from_unix(errno
);
1313 mget_mask
= talloc_asprintf(ctx
,
1315 client_get_cur_dir());
1318 return NT_STATUS_NO_MEMORY
;
1321 status
= do_list(mget_mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,do_mget
,false, true);
1322 if (!NT_STATUS_IS_OK(status
)) {
1326 if (chdir("..") == -1) {
1327 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1329 return map_nt_error_from_unix(errno
);
1331 client_set_cur_dir(saved_curdir
);
1332 TALLOC_FREE(mget_mask
);
1333 TALLOC_FREE(saved_curdir
);
1334 TALLOC_FREE(new_cd
);
1335 return NT_STATUS_OK
;
1338 /****************************************************************************
1339 View the file using the pager.
1340 ****************************************************************************/
1342 static int cmd_more(void)
1344 TALLOC_CTX
*ctx
= talloc_tos();
1348 char *pager_cmd
= NULL
;
1353 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1358 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1362 fd
= mkstemp(lname
);
1364 d_printf("failed to create temporary file for more\n");
1369 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1370 d_printf("more <filename>\n");
1374 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1378 rname
= clean_name(ctx
,rname
);
1383 rc
= do_get(rname
, lname
, false);
1385 pager
=getenv("PAGER");
1387 pager_cmd
= talloc_asprintf(ctx
,
1389 (pager
? pager
:PAGER
),
1394 if (system(pager_cmd
) == -1) {
1395 d_printf("system command '%s' returned -1\n",
1403 /****************************************************************************
1405 ****************************************************************************/
1407 static int cmd_mget(void)
1409 TALLOC_CTX
*ctx
= talloc_tos();
1410 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1411 char *mget_mask
= NULL
;
1413 NTSTATUS status
= NT_STATUS_OK
;
1416 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1421 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1423 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1427 if (*buf
== CLI_DIRSEP_CHAR
) {
1428 mget_mask
= talloc_strdup(ctx
, buf
);
1430 mget_mask
= talloc_asprintf_append(mget_mask
,
1436 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1437 if (!NT_STATUS_IS_OK(status
)) {
1442 if (mget_mask
== NULL
) {
1443 d_printf("nothing to mget\n");
1448 mget_mask
= talloc_asprintf(ctx
,
1450 client_get_cur_dir());
1454 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1455 if (!NT_STATUS_IS_OK(status
)) {
1463 /****************************************************************************
1464 Make a directory of name "name".
1465 ****************************************************************************/
1467 static bool do_mkdir(const char *name
)
1469 TALLOC_CTX
*ctx
= talloc_tos();
1470 struct cli_state
*targetcli
;
1471 char *targetname
= NULL
;
1474 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
1476 if (!NT_STATUS_IS_OK(status
)) {
1477 d_printf("mkdir %s: %s\n", name
, nt_errstr(status
));
1481 status
= cli_mkdir(targetcli
, targetname
);
1482 if (!NT_STATUS_IS_OK(status
)) {
1483 d_printf("%s making remote directory %s\n",
1484 nt_errstr(status
),name
);
1491 /****************************************************************************
1492 Show 8.3 name of a file.
1493 ****************************************************************************/
1495 static bool do_altname(const char *name
)
1500 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1501 if (!NT_STATUS_IS_OK(status
)) {
1502 d_printf("%s getting alt name for %s\n",
1503 nt_errstr(status
),name
);
1506 d_printf("%s\n", altname
);
1511 /****************************************************************************
1513 ****************************************************************************/
1515 static int cmd_quit(void)
1523 /****************************************************************************
1525 ****************************************************************************/
1527 static int cmd_mkdir(void)
1529 TALLOC_CTX
*ctx
= talloc_tos();
1534 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1539 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1541 d_printf("mkdir <dirname>\n");
1545 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1553 struct cli_state
*targetcli
;
1554 char *targetname
= NULL
;
1558 ddir2
= talloc_strdup(ctx
, "");
1563 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
1564 &targetcli
, &targetname
);
1565 if (!NT_STATUS_IS_OK(status
)) {
1569 ddir
= talloc_strdup(ctx
, targetname
);
1573 trim_char(ddir
,'.','\0');
1574 p
= strtok_r(ddir
, "/\\", &saveptr
);
1576 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1580 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1583 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1587 p
= strtok_r(NULL
, "/\\", &saveptr
);
1596 /****************************************************************************
1598 ****************************************************************************/
1600 static int cmd_altname(void)
1602 TALLOC_CTX
*ctx
= talloc_tos();
1606 name
= talloc_strdup(ctx
, client_get_cur_dir());
1611 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1612 d_printf("altname <file>\n");
1615 name
= talloc_asprintf_append(name
, "%s", buf
);
1623 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1625 char *attrs
= talloc_zero_array(mem_ctx
, char, 17);
1628 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1629 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1632 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1635 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1638 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1641 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1644 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1647 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1650 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1653 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1656 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1659 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1662 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1665 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1672 /****************************************************************************
1673 Show all info we can get
1674 ****************************************************************************/
1676 static int do_allinfo(const char *name
)
1679 struct timespec b_time
, a_time
, m_time
, c_time
;
1685 unsigned int num_streams
;
1686 struct stream_struct
*streams
;
1692 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1693 if (!NT_STATUS_IS_OK(status
)) {
1694 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1698 d_printf("altname: %s\n", altname
);
1700 status
= cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1701 &size
, &mode
, &ino
);
1702 if (!NT_STATUS_IS_OK(status
)) {
1703 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1708 unix_timespec_to_nt_time(&tmp
, b_time
);
1709 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1711 unix_timespec_to_nt_time(&tmp
, a_time
);
1712 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1714 unix_timespec_to_nt_time(&tmp
, m_time
);
1715 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1717 unix_timespec_to_nt_time(&tmp
, c_time
);
1718 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1720 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1722 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1724 if (!NT_STATUS_IS_OK(status
)) {
1725 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1730 for (i
=0; i
<num_streams
; i
++) {
1731 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1732 (unsigned long long)streams
[i
].size
);
1735 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1736 char *subst
, *print
;
1739 status
= cli_readlink(cli
, name
, talloc_tos(), &subst
, &print
,
1741 if (!NT_STATUS_IS_OK(status
)) {
1742 d_fprintf(stderr
, "cli_readlink returned %s\n",
1745 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1746 subst
, print
, flags
);
1752 status
= cli_ntcreate(cli
, name
, 0,
1753 CREATE_ACCESS_READ
, 0,
1754 FILE_SHARE_READ
|FILE_SHARE_WRITE
1756 FILE_OPEN
, 0x0, 0x0, &fnum
);
1757 if (!NT_STATUS_IS_OK(status
)) {
1759 * Ignore failure, it does not hurt if we can't list
1764 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1765 true, &snapshots
, &num_snapshots
);
1766 if (!NT_STATUS_IS_OK(status
)) {
1767 cli_close(cli
, fnum
);
1771 for (i
=0; i
<num_snapshots
; i
++) {
1774 d_printf("%s\n", snapshots
[i
]);
1775 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1776 snapshots
[i
], name
);
1777 status
= cli_qpathinfo2(cli
, snap_name
, &b_time
, &a_time
,
1778 &m_time
, &c_time
, &size
,
1780 if (!NT_STATUS_IS_OK(status
)) {
1781 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1782 snap_name
, nt_errstr(status
));
1783 TALLOC_FREE(snap_name
);
1786 unix_timespec_to_nt_time(&tmp
, b_time
);
1787 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1788 unix_timespec_to_nt_time(&tmp
, a_time
);
1789 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1790 unix_timespec_to_nt_time(&tmp
, m_time
);
1791 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1792 unix_timespec_to_nt_time(&tmp
, c_time
);
1793 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1794 d_printf("size: %d\n", (int)size
);
1797 TALLOC_FREE(snapshots
);
1802 /****************************************************************************
1803 Show all info we can get
1804 ****************************************************************************/
1806 static int cmd_allinfo(void)
1808 TALLOC_CTX
*ctx
= talloc_tos();
1812 name
= talloc_strdup(ctx
, client_get_cur_dir());
1817 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1818 d_printf("allinfo <file>\n");
1821 name
= talloc_asprintf_append(name
, "%s", buf
);
1831 /****************************************************************************
1833 ****************************************************************************/
1835 static int do_put(const char *rname
, const char *lname
, bool reput
)
1837 TALLOC_CTX
*ctx
= talloc_tos();
1840 SMB_OFF_T start
= 0;
1842 struct timespec tp_start
;
1843 struct cli_state
*targetcli
;
1844 char *targetname
= NULL
;
1845 struct push_state state
;
1848 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
,
1849 &targetcli
, &targetname
);
1850 if (!NT_STATUS_IS_OK(status
)) {
1851 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1855 clock_gettime_mono(&tp_start
);
1858 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1859 if (NT_STATUS_IS_OK(status
)) {
1860 if (!NT_STATUS_IS_OK(status
= cli_qfileinfo_basic(
1861 targetcli
, fnum
, NULL
,
1863 NULL
, NULL
, NULL
)) &&
1864 !NT_STATUS_IS_OK(status
= cli_getattrE(
1865 targetcli
, fnum
, NULL
,
1868 d_printf("getattrib: %s\n", nt_errstr(status
));
1873 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1876 if (!NT_STATUS_IS_OK(status
)) {
1877 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1882 /* allow files to be piped into smbclient
1885 Note that in this case this function will exit(0) rather
1887 if (!strcmp(lname
, "-")) {
1889 /* size of file is not known */
1891 f
= x_fopen(lname
,O_RDONLY
, 0);
1893 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1894 d_printf("Error seeking local file\n");
1902 d_printf("Error opening local file %s\n",lname
);
1906 DEBUG(1,("putting file %s as %s ",lname
,
1909 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1914 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1916 if (!NT_STATUS_IS_OK(status
)) {
1917 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1921 status
= cli_close(targetcli
, fnum
);
1922 if (!NT_STATUS_IS_OK(status
)) {
1923 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1936 struct timespec tp_end
;
1939 clock_gettime_mono(&tp_end
);
1940 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1941 put_total_time_ms
+= this_time
;
1942 put_total_size
+= state
.nread
;
1944 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1945 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1946 put_total_size
/ (1.024*put_total_time_ms
)));
1957 /****************************************************************************
1959 ****************************************************************************/
1961 static int cmd_put(void)
1963 TALLOC_CTX
*ctx
= talloc_tos();
1968 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1973 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1974 d_printf("put <filename>\n");
1978 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1979 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1981 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1987 rname
= clean_name(ctx
, rname
);
1994 /* allow '-' to represent stdin
1995 jdblair, 24.jun.98 */
1996 if (!file_exist_stat(lname
, &st
, false) &&
1997 (strcmp(lname
,"-"))) {
1998 d_printf("%s does not exist\n",lname
);
2003 return do_put(rname
, lname
, false);
2006 /*************************************
2007 File list structure.
2008 *************************************/
2010 static struct file_list
{
2011 struct file_list
*prev
, *next
;
2016 /****************************************************************************
2017 Free a file_list structure.
2018 ****************************************************************************/
2020 static void free_file_list (struct file_list
*l_head
)
2022 struct file_list
*list
, *next
;
2024 for (list
= l_head
; list
; list
= next
) {
2026 DLIST_REMOVE(l_head
, list
);
2027 SAFE_FREE(list
->file_path
);
2032 /****************************************************************************
2033 Seek in a directory/file list until you get something that doesn't start with
2035 ****************************************************************************/
2037 static bool seek_list(struct file_list
*list
, char *name
)
2040 trim_string(list
->file_path
,"./","\n");
2041 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2050 /****************************************************************************
2051 Set the file selection mask.
2052 ****************************************************************************/
2054 static int cmd_select(void)
2056 TALLOC_CTX
*ctx
= talloc_tos();
2057 char *new_fs
= NULL
;
2058 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2061 client_set_fileselection(new_fs
);
2063 client_set_fileselection("");
2068 /****************************************************************************
2069 Recursive file matching function act as find
2070 match must be always set to true when calling this function
2071 ****************************************************************************/
2073 static int file_find(struct file_list
**list
, const char *directory
,
2074 const char *expression
, bool match
)
2076 SMB_STRUCT_DIR
*dir
;
2077 struct file_list
*entry
;
2078 struct stat statbuf
;
2084 dir
= sys_opendir(directory
);
2088 while ((dname
= readdirname(dir
))) {
2089 if (!strcmp("..", dname
))
2091 if (!strcmp(".", dname
))
2094 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2099 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2101 ret
= stat(path
, &statbuf
);
2103 if (S_ISDIR(statbuf
.st_mode
)) {
2105 ret
= file_find(list
, path
, expression
, false);
2108 d_printf("file_find: cannot stat file %s\n", path
);
2117 entry
= SMB_MALLOC_P(struct file_list
);
2119 d_printf("Out of memory in file_find\n");
2123 entry
->file_path
= path
;
2124 entry
->isdir
= isdir
;
2125 DLIST_ADD(*list
, entry
);
2135 /****************************************************************************
2137 ****************************************************************************/
2139 static int cmd_mput(void)
2141 TALLOC_CTX
*ctx
= talloc_tos();
2144 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2146 struct file_list
*temp_list
;
2147 char *quest
, *lname
, *rname
;
2151 ret
= file_find(&file_list
, ".", p
, true);
2153 free_file_list(file_list
);
2161 for (temp_list
= file_list
; temp_list
;
2162 temp_list
= temp_list
->next
) {
2165 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2168 trim_string(lname
, "./", "/");
2170 /* check if it's a directory */
2171 if (temp_list
->isdir
) {
2172 /* if (!recurse) continue; */
2175 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2178 if (prompt
&& !yesno(quest
)) { /* No */
2179 /* Skip the directory */
2180 lname
[strlen(lname
)-1] = '/';
2181 if (!seek_list(temp_list
, lname
))
2185 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2188 normalize_name(rname
);
2189 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2191 DEBUG (0, ("Unable to make dir, skipping..."));
2192 /* Skip the directory */
2193 lname
[strlen(lname
)-1] = '/';
2194 if (!seek_list(temp_list
, lname
)) {
2202 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2205 if (prompt
&& !yesno(quest
)) {
2212 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2217 normalize_name(rname
);
2219 do_put(rname
, lname
, false);
2221 free_file_list(file_list
);
2230 /****************************************************************************
2232 ****************************************************************************/
2234 static int do_cancel(int job
)
2236 if (cli_printjob_del(cli
, job
)) {
2237 d_printf("Job %d cancelled\n",job
);
2240 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2245 /****************************************************************************
2247 ****************************************************************************/
2249 static int cmd_cancel(void)
2251 TALLOC_CTX
*ctx
= talloc_tos();
2255 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2256 d_printf("cancel <jobid> ...\n");
2262 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2267 /****************************************************************************
2269 ****************************************************************************/
2271 static int cmd_print(void)
2273 TALLOC_CTX
*ctx
= talloc_tos();
2278 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2279 d_printf("print <filename>\n");
2283 rname
= talloc_strdup(ctx
, lname
);
2287 p
= strrchr_m(rname
,'/');
2289 rname
= talloc_asprintf(ctx
,
2294 if (strequal(lname
,"-")) {
2295 rname
= talloc_asprintf(ctx
,
2303 return do_put(rname
, lname
, false);
2306 /****************************************************************************
2307 Show a print queue entry.
2308 ****************************************************************************/
2310 static void queue_fn(struct print_job_info
*p
)
2312 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2315 /****************************************************************************
2317 ****************************************************************************/
2319 static int cmd_queue(void)
2321 cli_print_queue(cli
, queue_fn
);
2325 /****************************************************************************
2327 ****************************************************************************/
2329 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2332 TALLOC_CTX
*ctx
= talloc_tos();
2336 mask
= talloc_asprintf(ctx
,
2342 return NT_STATUS_NO_MEMORY
;
2345 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
2347 return NT_STATUS_OK
;
2350 status
= cli_unlink(cli_state
, mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2351 if (!NT_STATUS_IS_OK(status
)) {
2352 d_printf("%s deleting remote file %s\n",
2353 nt_errstr(status
), mask
);
2359 /****************************************************************************
2361 ****************************************************************************/
2363 static int cmd_del(void)
2365 TALLOC_CTX
*ctx
= talloc_tos();
2368 NTSTATUS status
= NT_STATUS_OK
;
2369 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
2372 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
2375 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2379 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2380 d_printf("del <filename>\n");
2383 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2388 status
= do_list(mask
,attribute
,do_del
,false,false);
2389 if (!NT_STATUS_IS_OK(status
)) {
2395 /****************************************************************************
2396 Wildcard delete some files.
2397 ****************************************************************************/
2399 static int cmd_wdel(void)
2401 TALLOC_CTX
*ctx
= talloc_tos();
2405 struct cli_state
*targetcli
;
2406 char *targetname
= NULL
;
2409 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2410 d_printf("wdel 0x<attrib> <wcard>\n");
2414 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2416 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2417 d_printf("wdel 0x<attrib> <wcard>\n");
2421 mask
= talloc_asprintf(ctx
, "%s%s",
2422 client_get_cur_dir(),
2428 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2430 if (!NT_STATUS_IS_OK(status
)) {
2431 d_printf("cmd_wdel %s: %s\n", mask
, nt_errstr(status
));
2435 status
= cli_unlink(targetcli
, targetname
, attribute
);
2436 if (!NT_STATUS_IS_OK(status
)) {
2437 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2443 /****************************************************************************
2444 ****************************************************************************/
2446 static int cmd_open(void)
2448 TALLOC_CTX
*ctx
= talloc_tos();
2451 char *targetname
= NULL
;
2452 struct cli_state
*targetcli
;
2453 uint16_t fnum
= (uint16_t)-1;
2456 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2457 d_printf("open <filename>\n");
2460 mask
= talloc_asprintf(ctx
,
2462 client_get_cur_dir(),
2468 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2470 if (!NT_STATUS_IS_OK(status
)) {
2471 d_printf("open %s: %s\n", mask
, nt_errstr(status
));
2475 status
= cli_ntcreate(targetcli
, targetname
, 0,
2476 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2477 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2479 if (!NT_STATUS_IS_OK(status
)) {
2480 status
= cli_ntcreate(targetcli
, targetname
, 0,
2482 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2484 if (NT_STATUS_IS_OK(status
)) {
2485 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2487 d_printf("Failed to open file %s. %s\n",
2488 targetname
, nt_errstr(status
));
2491 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2496 static int cmd_posix_encrypt(void)
2498 TALLOC_CTX
*ctx
= talloc_tos();
2499 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2501 if (cli
->use_kerberos
) {
2502 status
= cli_gss_smb_encryption_start(cli
);
2504 char *domain
= NULL
;
2506 char *password
= NULL
;
2508 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2509 d_printf("posix_encrypt domain user password\n");
2513 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2514 d_printf("posix_encrypt domain user password\n");
2518 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2519 d_printf("posix_encrypt domain user password\n");
2523 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2529 if (!NT_STATUS_IS_OK(status
)) {
2530 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2532 d_printf("encryption on\n");
2539 /****************************************************************************
2540 ****************************************************************************/
2542 static int cmd_posix_open(void)
2544 TALLOC_CTX
*ctx
= talloc_tos();
2547 char *targetname
= NULL
;
2548 struct cli_state
*targetcli
;
2553 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2554 d_printf("posix_open <filename> 0<mode>\n");
2557 mask
= talloc_asprintf(ctx
,
2559 client_get_cur_dir(),
2565 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2566 d_printf("posix_open <filename> 0<mode>\n");
2569 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2571 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2573 if (!NT_STATUS_IS_OK(status
)) {
2574 d_printf("posix_open %s: %s\n", mask
, nt_errstr(status
));
2578 status
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
,
2580 if (!NT_STATUS_IS_OK(status
)) {
2581 status
= cli_posix_open(targetcli
, targetname
,
2582 O_CREAT
|O_RDONLY
, mode
, &fnum
);
2583 if (!NT_STATUS_IS_OK(status
)) {
2584 d_printf("Failed to open file %s. %s\n", targetname
,
2587 d_printf("posix_open file %s: for readonly fnum %d\n",
2591 d_printf("posix_open file %s: for read/write fnum %d\n",
2598 static int cmd_posix_mkdir(void)
2600 TALLOC_CTX
*ctx
= talloc_tos();
2603 char *targetname
= NULL
;
2604 struct cli_state
*targetcli
;
2608 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2609 d_printf("posix_mkdir <filename> 0<mode>\n");
2612 mask
= talloc_asprintf(ctx
,
2614 client_get_cur_dir(),
2620 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2621 d_printf("posix_mkdir <filename> 0<mode>\n");
2624 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2626 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2628 if (!NT_STATUS_IS_OK(status
)) {
2629 d_printf("posix_mkdir %s: %s\n", mask
, nt_errstr(status
));
2633 status
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2634 if (!NT_STATUS_IS_OK(status
)) {
2635 d_printf("Failed to open file %s. %s\n",
2636 targetname
, nt_errstr(status
));
2638 d_printf("posix_mkdir created directory %s\n", targetname
);
2643 static int cmd_posix_unlink(void)
2645 TALLOC_CTX
*ctx
= talloc_tos();
2648 char *targetname
= NULL
;
2649 struct cli_state
*targetcli
;
2652 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2653 d_printf("posix_unlink <filename>\n");
2656 mask
= talloc_asprintf(ctx
,
2658 client_get_cur_dir(),
2664 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2666 if (!NT_STATUS_IS_OK(status
)) {
2667 d_printf("posix_unlink %s: %s\n", mask
, nt_errstr(status
));
2671 status
= cli_posix_unlink(targetcli
, targetname
);
2672 if (!NT_STATUS_IS_OK(status
)) {
2673 d_printf("Failed to unlink file %s. %s\n",
2674 targetname
, nt_errstr(status
));
2676 d_printf("posix_unlink deleted file %s\n", targetname
);
2682 static int cmd_posix_rmdir(void)
2684 TALLOC_CTX
*ctx
= talloc_tos();
2687 char *targetname
= NULL
;
2688 struct cli_state
*targetcli
;
2691 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2692 d_printf("posix_rmdir <filename>\n");
2695 mask
= talloc_asprintf(ctx
,
2697 client_get_cur_dir(),
2703 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2705 if (!NT_STATUS_IS_OK(status
)) {
2706 d_printf("posix_rmdir %s: %s\n", mask
, nt_errstr(status
));
2710 status
= cli_posix_rmdir(targetcli
, targetname
);
2711 if (!NT_STATUS_IS_OK(status
)) {
2712 d_printf("Failed to unlink directory %s. %s\n",
2713 targetname
, nt_errstr(status
));
2715 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2721 static int cmd_close(void)
2723 TALLOC_CTX
*ctx
= talloc_tos();
2728 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2729 d_printf("close <fnum>\n");
2734 /* We really should use the targetcli here.... */
2735 status
= cli_close(cli
, fnum
);
2736 if (!NT_STATUS_IS_OK(status
)) {
2737 d_printf("close %d: %s\n", fnum
, nt_errstr(status
));
2743 static int cmd_posix(void)
2745 TALLOC_CTX
*ctx
= talloc_tos();
2746 uint16 major
, minor
;
2747 uint32 caplow
, caphigh
;
2751 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2752 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2756 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2758 if (!NT_STATUS_IS_OK(status
)) {
2759 d_printf("Can't get UNIX CIFS extensions version from "
2760 "server: %s\n", nt_errstr(status
));
2764 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2766 caps
= talloc_strdup(ctx
, "");
2770 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2771 caps
= talloc_asprintf_append(caps
, "locks ");
2776 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2777 caps
= talloc_asprintf_append(caps
, "acls ");
2782 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2783 caps
= talloc_asprintf_append(caps
, "eas ");
2788 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2789 caps
= talloc_asprintf_append(caps
, "pathnames ");
2794 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2795 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2800 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2801 caps
= talloc_asprintf_append(caps
, "large_read ");
2806 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2807 caps
= talloc_asprintf_append(caps
, "large_write ");
2812 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2813 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2818 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2819 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2825 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2826 caps
[strlen(caps
)-1] = '\0';
2829 d_printf("Server supports CIFS capabilities %s\n", caps
);
2831 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2833 if (!NT_STATUS_IS_OK(status
)) {
2834 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2839 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2840 CLI_DIRSEP_CHAR
= '/';
2841 *CLI_DIRSEP_STR
= '/';
2842 client_set_cur_dir(CLI_DIRSEP_STR
);
2848 static int cmd_lock(void)
2850 TALLOC_CTX
*ctx
= talloc_tos();
2852 uint64_t start
, len
;
2853 enum brl_type lock_type
;
2857 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2858 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2863 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2864 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2868 if (*buf
== 'r' || *buf
== 'R') {
2869 lock_type
= READ_LOCK
;
2870 } else if (*buf
== 'w' || *buf
== 'W') {
2871 lock_type
= WRITE_LOCK
;
2873 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2877 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2878 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2882 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2884 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2885 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2889 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2891 status
= cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
);
2892 if (!NT_STATUS_IS_OK(status
)) {
2893 d_printf("lock failed %d: %s\n", fnum
, nt_errstr(status
));
2899 static int cmd_unlock(void)
2901 TALLOC_CTX
*ctx
= talloc_tos();
2903 uint64_t start
, len
;
2907 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2908 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2913 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2914 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2918 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2920 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2921 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2925 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2927 status
= cli_posix_unlock(cli
, fnum
, start
, len
);
2928 if (!NT_STATUS_IS_OK(status
)) {
2929 d_printf("unlock failed %d: %s\n", fnum
, nt_errstr(status
));
2936 /****************************************************************************
2938 ****************************************************************************/
2940 static int cmd_rmdir(void)
2942 TALLOC_CTX
*ctx
= talloc_tos();
2945 char *targetname
= NULL
;
2946 struct cli_state
*targetcli
;
2949 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2950 d_printf("rmdir <dirname>\n");
2953 mask
= talloc_asprintf(ctx
,
2955 client_get_cur_dir(),
2961 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2963 if (!NT_STATUS_IS_OK(status
)) {
2964 d_printf("rmdir %s: %s\n", mask
, nt_errstr(status
));
2968 status
= cli_rmdir(targetcli
, targetname
);
2969 if (!NT_STATUS_IS_OK(status
)) {
2970 d_printf("%s removing remote directory file %s\n",
2971 nt_errstr(status
), mask
);
2977 /****************************************************************************
2979 ****************************************************************************/
2981 static int cmd_link(void)
2983 TALLOC_CTX
*ctx
= talloc_tos();
2984 char *oldname
= NULL
;
2985 char *newname
= NULL
;
2988 char *targetname
= NULL
;
2989 struct cli_state
*targetcli
;
2992 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2993 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2994 d_printf("link <oldname> <newname>\n");
2997 oldname
= talloc_asprintf(ctx
,
2999 client_get_cur_dir(),
3004 newname
= talloc_asprintf(ctx
,
3006 client_get_cur_dir(),
3012 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
,
3014 if (!NT_STATUS_IS_OK(status
)) {
3015 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3019 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3020 d_printf("Server doesn't support UNIX CIFS calls.\n");
3024 status
= cli_posix_hardlink(targetcli
, targetname
, newname
);
3025 if (!NT_STATUS_IS_OK(status
)) {
3026 d_printf("%s linking files (%s -> %s)\n",
3027 nt_errstr(status
), newname
, oldname
);
3033 /****************************************************************************
3035 ****************************************************************************/
3037 static int cmd_readlink(void)
3039 TALLOC_CTX
*ctx
= talloc_tos();
3042 char *targetname
= NULL
;
3043 char linkname
[PATH_MAX
+1];
3044 struct cli_state
*targetcli
;
3047 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3048 d_printf("readlink <name>\n");
3051 name
= talloc_asprintf(ctx
,
3053 client_get_cur_dir(),
3059 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
3061 if (!NT_STATUS_IS_OK(status
)) {
3062 d_printf("readlink %s: %s\n", name
, nt_errstr(status
));
3066 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3067 d_printf("Server doesn't support UNIX CIFS calls.\n");
3071 status
= cli_posix_readlink(targetcli
, name
, linkname
, PATH_MAX
+1);
3072 if (!NT_STATUS_IS_OK(status
)) {
3073 d_printf("%s readlink on file %s\n",
3074 nt_errstr(status
), name
);
3078 d_printf("%s -> %s\n", name
, linkname
);
3084 /****************************************************************************
3086 ****************************************************************************/
3088 static int cmd_symlink(void)
3090 TALLOC_CTX
*ctx
= talloc_tos();
3091 char *oldname
= NULL
;
3092 char *newname
= NULL
;
3095 struct cli_state
*newcli
;
3098 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3099 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3100 d_printf("symlink <oldname> <newname>\n");
3103 /* Oldname (link target) must be an untouched blob. */
3106 if (SERVER_HAS_UNIX_CIFS(cli
)) {
3107 newname
= talloc_asprintf(ctx
, "%s%s", client_get_cur_dir(),
3112 /* New name must be present in share namespace. */
3113 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, newname
,
3115 if (!NT_STATUS_IS_OK(status
)) {
3116 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3119 status
= cli_posix_symlink(newcli
, oldname
, newname
);
3121 status
= cli_symlink(
3123 buf2
[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE
);
3126 if (!NT_STATUS_IS_OK(status
)) {
3127 d_printf("%s symlinking files (%s -> %s)\n",
3128 nt_errstr(status
), oldname
, newname
);
3135 /****************************************************************************
3137 ****************************************************************************/
3139 static int cmd_chmod(void)
3141 TALLOC_CTX
*ctx
= talloc_tos();
3145 char *targetname
= NULL
;
3146 struct cli_state
*targetcli
;
3150 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3151 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3152 d_printf("chmod mode file\n");
3155 src
= talloc_asprintf(ctx
,
3157 client_get_cur_dir(),
3163 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3165 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3167 if (!NT_STATUS_IS_OK(status
)) {
3168 d_printf("chmod %s: %s\n", src
, nt_errstr(status
));
3172 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3173 d_printf("Server doesn't support UNIX CIFS calls.\n");
3177 status
= cli_posix_chmod(targetcli
, targetname
, mode
);
3178 if (!NT_STATUS_IS_OK(status
)) {
3179 d_printf("%s chmod file %s 0%o\n",
3180 nt_errstr(status
), src
, (unsigned int)mode
);
3187 static const char *filetype_to_str(mode_t mode
)
3189 if (S_ISREG(mode
)) {
3190 return "regular file";
3191 } else if (S_ISDIR(mode
)) {
3195 if (S_ISCHR(mode
)) {
3196 return "character device";
3200 if (S_ISBLK(mode
)) {
3201 return "block device";
3205 if (S_ISFIFO(mode
)) {
3210 if (S_ISLNK(mode
)) {
3211 return "symbolic link";
3215 if (S_ISSOCK(mode
)) {
3222 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3231 static char *unix_mode_to_str(char *s
, mode_t m
)
3234 const char *str
= filetype_to_str(m
);
3250 *p
++ = str
[1] == 'y' ? 'l' : 's';
3257 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3258 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3259 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3260 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3261 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3262 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3263 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3264 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3265 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3270 /****************************************************************************
3271 Utility function for UNIX getfacl.
3272 ****************************************************************************/
3274 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3276 fstrcpy(permstr
, "---");
3277 if (perms
& SMB_POSIX_ACL_READ
) {
3280 if (perms
& SMB_POSIX_ACL_WRITE
) {
3283 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3289 /****************************************************************************
3291 ****************************************************************************/
3293 static int cmd_getfacl(void)
3295 TALLOC_CTX
*ctx
= talloc_tos();
3298 char *targetname
= NULL
;
3299 struct cli_state
*targetcli
;
3300 uint16 major
, minor
;
3301 uint32 caplow
, caphigh
;
3302 char *retbuf
= NULL
;
3304 SMB_STRUCT_STAT sbuf
;
3305 uint16 num_file_acls
= 0;
3306 uint16 num_dir_acls
= 0;
3310 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3311 d_printf("getfacl filename\n");
3314 src
= talloc_asprintf(ctx
,
3316 client_get_cur_dir(),
3322 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3324 if (!NT_STATUS_IS_OK(status
)) {
3325 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3329 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3330 d_printf("Server doesn't support UNIX CIFS calls.\n");
3334 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3336 if (!NT_STATUS_IS_OK(status
)) {
3337 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3342 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3343 d_printf("This server supports UNIX extensions "
3344 "but doesn't support POSIX ACLs.\n");
3348 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3349 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3350 d_printf("%s getfacl doing a stat on file %s\n",
3351 nt_errstr(status
), src
);
3355 status
= cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
);
3356 if (!NT_STATUS_IS_OK(status
)) {
3357 d_printf("%s getfacl file %s\n",
3358 nt_errstr(status
), src
);
3362 /* ToDo : Print out the ACL values. */
3363 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3364 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3365 src
, (unsigned int)CVAL(retbuf
,0) );
3369 num_file_acls
= SVAL(retbuf
,2);
3370 num_dir_acls
= SVAL(retbuf
,4);
3371 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3372 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3374 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3375 (unsigned int)rb_size
);
3379 d_printf("# file: %s\n", src
);
3380 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3382 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3383 d_printf("No acls found.\n");
3386 for (i
= 0; i
< num_file_acls
; i
++) {
3389 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3390 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3393 case SMB_POSIX_ACL_USER_OBJ
:
3396 case SMB_POSIX_ACL_USER
:
3397 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3398 d_printf("user:%u:", uorg
);
3400 case SMB_POSIX_ACL_GROUP_OBJ
:
3401 d_printf("group::");
3403 case SMB_POSIX_ACL_GROUP
:
3404 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3405 d_printf("group:%u:", uorg
);
3407 case SMB_POSIX_ACL_MASK
:
3410 case SMB_POSIX_ACL_OTHER
:
3411 d_printf("other::");
3414 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3415 src
, (unsigned int)tagtype
);
3420 d_printf("%s\n", perms_to_string(permstring
, perms
));
3423 for (i
= 0; i
< num_dir_acls
; i
++) {
3426 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3427 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3430 case SMB_POSIX_ACL_USER_OBJ
:
3431 d_printf("default:user::");
3433 case SMB_POSIX_ACL_USER
:
3434 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3435 d_printf("default:user:%u:", uorg
);
3437 case SMB_POSIX_ACL_GROUP_OBJ
:
3438 d_printf("default:group::");
3440 case SMB_POSIX_ACL_GROUP
:
3441 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3442 d_printf("default:group:%u:", uorg
);
3444 case SMB_POSIX_ACL_MASK
:
3445 d_printf("default:mask::");
3447 case SMB_POSIX_ACL_OTHER
:
3448 d_printf("default:other::");
3451 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3452 src
, (unsigned int)tagtype
);
3457 d_printf("%s\n", perms_to_string(permstring
, perms
));
3463 static void printf_cb(const char *buf
, void *private_data
)
3468 /****************************************************************************
3469 Get the EA list of a file
3470 ****************************************************************************/
3472 static int cmd_geteas(void)
3474 TALLOC_CTX
*ctx
= talloc_tos();
3477 char *targetname
= NULL
;
3478 struct cli_state
*targetcli
;
3481 struct ea_struct
*eas
;
3483 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3484 d_printf("geteas filename\n");
3487 src
= talloc_asprintf(ctx
,
3489 client_get_cur_dir(),
3495 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3497 if (!NT_STATUS_IS_OK(status
)) {
3498 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3502 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3504 if (!NT_STATUS_IS_OK(status
)) {
3505 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3509 for (i
=0; i
<num_eas
; i
++) {
3510 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3511 dump_data_cb(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3521 /****************************************************************************
3523 ****************************************************************************/
3525 static int cmd_setea(void)
3527 TALLOC_CTX
*ctx
= talloc_tos();
3530 char *eaname
= NULL
;
3531 char *eavalue
= NULL
;
3532 char *targetname
= NULL
;
3533 struct cli_state
*targetcli
;
3536 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3537 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3538 d_printf("setea filename eaname value\n");
3541 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3542 eavalue
= talloc_strdup(ctx
, "");
3544 src
= talloc_asprintf(ctx
,
3546 client_get_cur_dir(),
3552 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3554 if (!NT_STATUS_IS_OK(status
)) {
3555 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3559 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3561 if (!NT_STATUS_IS_OK(status
)) {
3562 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3569 /****************************************************************************
3571 ****************************************************************************/
3573 static int cmd_stat(void)
3575 TALLOC_CTX
*ctx
= talloc_tos();
3578 char *targetname
= NULL
;
3579 struct cli_state
*targetcli
;
3581 SMB_STRUCT_STAT sbuf
;
3586 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3587 d_printf("stat file\n");
3590 src
= talloc_asprintf(ctx
,
3592 client_get_cur_dir(),
3598 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3600 if (!NT_STATUS_IS_OK(status
)) {
3601 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3605 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3606 d_printf("Server doesn't support UNIX CIFS calls.\n");
3610 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3611 if (!NT_STATUS_IS_OK(status
)) {
3612 d_printf("%s stat file %s\n",
3613 nt_errstr(status
), src
);
3617 /* Print out the stat values. */
3618 d_printf("File: %s\n", src
);
3619 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3620 (double)sbuf
.st_ex_size
,
3621 (unsigned int)sbuf
.st_ex_blocks
,
3622 filetype_to_str(sbuf
.st_ex_mode
));
3624 #if defined(S_ISCHR) && defined(S_ISBLK)
3625 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3626 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3627 (double)sbuf
.st_ex_ino
,
3628 (unsigned int)sbuf
.st_ex_nlink
,
3629 unix_dev_major(sbuf
.st_ex_rdev
),
3630 unix_dev_minor(sbuf
.st_ex_rdev
));
3633 d_printf("Inode: %.0f\tLinks: %u\n",
3634 (double)sbuf
.st_ex_ino
,
3635 (unsigned int)sbuf
.st_ex_nlink
);
3637 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3638 ((int)sbuf
.st_ex_mode
& 0777),
3639 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3640 (unsigned int)sbuf
.st_ex_uid
,
3641 (unsigned int)sbuf
.st_ex_gid
);
3643 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3644 lt
= localtime(&tmp_time
);
3646 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3648 fstrcpy(mode_str
, "unknown");
3650 d_printf("Access: %s\n", mode_str
);
3652 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3653 lt
= localtime(&tmp_time
);
3655 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3657 fstrcpy(mode_str
, "unknown");
3659 d_printf("Modify: %s\n", mode_str
);
3661 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3662 lt
= localtime(&tmp_time
);
3664 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3666 fstrcpy(mode_str
, "unknown");
3668 d_printf("Change: %s\n", mode_str
);
3674 /****************************************************************************
3676 ****************************************************************************/
3678 static int cmd_chown(void)
3680 TALLOC_CTX
*ctx
= talloc_tos();
3684 char *buf
, *buf2
, *buf3
;
3685 struct cli_state
*targetcli
;
3686 char *targetname
= NULL
;
3689 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3690 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3691 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3692 d_printf("chown uid gid file\n");
3696 uid
= (uid_t
)atoi(buf
);
3697 gid
= (gid_t
)atoi(buf2
);
3699 src
= talloc_asprintf(ctx
,
3701 client_get_cur_dir(),
3706 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3708 if (!NT_STATUS_IS_OK(status
)) {
3709 d_printf("chown %s: %s\n", src
, nt_errstr(status
));
3713 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3714 d_printf("Server doesn't support UNIX CIFS calls.\n");
3718 status
= cli_posix_chown(targetcli
, targetname
, uid
, gid
);
3719 if (!NT_STATUS_IS_OK(status
)) {
3720 d_printf("%s chown file %s uid=%d, gid=%d\n",
3721 nt_errstr(status
), src
, (int)uid
, (int)gid
);
3728 /****************************************************************************
3730 ****************************************************************************/
3732 static int cmd_rename(void)
3734 TALLOC_CTX
*ctx
= talloc_tos();
3737 struct cli_state
*targetcli
;
3742 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3743 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3744 d_printf("rename <src> <dest>\n");
3748 src
= talloc_asprintf(ctx
,
3750 client_get_cur_dir(),
3756 dest
= talloc_asprintf(ctx
,
3758 client_get_cur_dir(),
3764 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3766 if (!NT_STATUS_IS_OK(status
)) {
3767 d_printf("rename %s: %s\n", src
, nt_errstr(status
));
3771 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
,
3773 if (!NT_STATUS_IS_OK(status
)) {
3774 d_printf("rename %s: %s\n", dest
, nt_errstr(status
));
3778 status
= cli_rename(targetcli
, targetsrc
, targetdest
);
3779 if (!NT_STATUS_IS_OK(status
)) {
3780 d_printf("%s renaming files %s -> %s \n",
3790 /****************************************************************************
3791 Print the volume name.
3792 ****************************************************************************/
3794 static int cmd_volume(void)
3797 uint32_t serial_num
;
3801 status
= cli_get_fs_volume_info(cli
, talloc_tos(),
3802 &volname
, &serial_num
,
3804 if (!NT_STATUS_IS_OK(status
)) {
3805 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3809 d_printf("Volume: |%s| serial number 0x%x\n",
3810 volname
, (unsigned int)serial_num
);
3814 /****************************************************************************
3815 Hard link files using the NT call.
3816 ****************************************************************************/
3818 static int cmd_hardlink(void)
3820 TALLOC_CTX
*ctx
= talloc_tos();
3823 struct cli_state
*targetcli
;
3827 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3828 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3829 d_printf("hardlink <src> <dest>\n");
3833 src
= talloc_asprintf(ctx
,
3835 client_get_cur_dir(),
3841 dest
= talloc_asprintf(ctx
,
3843 client_get_cur_dir(),
3849 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3851 if (!NT_STATUS_IS_OK(status
)) {
3852 d_printf("hardlink %s: %s\n", src
, nt_errstr(status
));
3856 status
= cli_nt_hardlink(targetcli
, targetname
, dest
);
3857 if (!NT_STATUS_IS_OK(status
)) {
3858 d_printf("%s doing an NT hard link of files\n",
3866 /****************************************************************************
3867 Toggle the prompt flag.
3868 ****************************************************************************/
3870 static int cmd_prompt(void)
3873 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3877 /****************************************************************************
3878 Set the newer than time.
3879 ****************************************************************************/
3881 static int cmd_newer(void)
3883 TALLOC_CTX
*ctx
= talloc_tos();
3886 SMB_STRUCT_STAT sbuf
;
3888 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3889 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3890 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3891 DEBUG(1,("Getting files newer than %s",
3892 time_to_asc(newer_than
)));
3897 if (ok
&& newer_than
== 0) {
3898 d_printf("Error setting newer-than time\n");
3905 /****************************************************************************
3906 Set the archive level.
3907 ****************************************************************************/
3909 static int cmd_archive(void)
3911 TALLOC_CTX
*ctx
= talloc_tos();
3914 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3915 archive_level
= atoi(buf
);
3917 d_printf("Archive level is %d\n",archive_level
);
3923 /****************************************************************************
3924 Toggle the lowercaseflag.
3925 ****************************************************************************/
3927 static int cmd_lowercase(void)
3929 lowercase
= !lowercase
;
3930 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3934 /****************************************************************************
3935 Toggle the case sensitive flag.
3936 ****************************************************************************/
3938 static int cmd_setcase(void)
3940 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3942 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3943 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3948 /****************************************************************************
3949 Toggle the showacls flag.
3950 ****************************************************************************/
3952 static int cmd_showacls(void)
3954 showacls
= !showacls
;
3955 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3960 /****************************************************************************
3961 Toggle the recurse flag.
3962 ****************************************************************************/
3964 static int cmd_recurse(void)
3967 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3971 /****************************************************************************
3972 Toggle the translate flag.
3973 ****************************************************************************/
3975 static int cmd_translate(void)
3977 translation
= !translation
;
3978 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3979 translation
?"on":"off"));
3983 /****************************************************************************
3985 ****************************************************************************/
3987 static int cmd_lcd(void)
3989 TALLOC_CTX
*ctx
= talloc_tos();
3993 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3994 if (chdir(buf
) == -1) {
3995 d_printf("chdir to %s failed (%s)\n",
3996 buf
, strerror(errno
));
4003 DEBUG(2,("the local directory is now %s\n",d
));
4008 /****************************************************************************
4009 Get a file restarting at end of local file.
4010 ****************************************************************************/
4012 static int cmd_reget(void)
4014 TALLOC_CTX
*ctx
= talloc_tos();
4015 char *local_name
= NULL
;
4016 char *remote_name
= NULL
;
4020 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4025 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
4026 d_printf("reget <filename>\n");
4029 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
4033 remote_name
= clean_name(ctx
,remote_name
);
4039 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
4044 return do_get(remote_name
, local_name
, true);
4047 /****************************************************************************
4048 Put a file restarting at end of local file.
4049 ****************************************************************************/
4051 static int cmd_reput(void)
4053 TALLOC_CTX
*ctx
= talloc_tos();
4054 char *local_name
= NULL
;
4055 char *remote_name
= NULL
;
4059 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4064 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
4065 d_printf("reput <filename>\n");
4069 if (!file_exist_stat(local_name
, &st
, false)) {
4070 d_printf("%s does not exist\n", local_name
);
4074 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
4075 remote_name
= talloc_asprintf_append(remote_name
,
4078 remote_name
= talloc_asprintf_append(remote_name
,
4085 remote_name
= clean_name(ctx
, remote_name
);
4090 return do_put(remote_name
, local_name
, true);
4093 /****************************************************************************
4095 ****************************************************************************/
4097 static void browse_fn(const char *name
, uint32 m
,
4098 const char *comment
, void *state
)
4100 const char *typestr
= "";
4103 case STYPE_DISKTREE
:
4107 typestr
= "Printer";
4116 /* FIXME: If the remote machine returns non-ascii characters
4117 in any of these fields, they can corrupt the output. We
4118 should remove them. */
4120 d_printf("\t%-15s %-10.10s%s\n",
4121 name
,typestr
,comment
);
4123 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
4127 static bool browse_host_rpc(bool sort
)
4130 struct rpc_pipe_client
*pipe_hnd
= NULL
;
4131 TALLOC_CTX
*frame
= talloc_stackframe();
4133 struct srvsvc_NetShareInfoCtr info_ctr
;
4134 struct srvsvc_NetShareCtr1 ctr1
;
4135 uint32_t resume_handle
= 0;
4136 uint32_t total_entries
= 0;
4138 struct dcerpc_binding_handle
*b
;
4140 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
4143 if (!NT_STATUS_IS_OK(status
)) {
4144 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4145 nt_errstr(status
)));
4150 b
= pipe_hnd
->binding_handle
;
4152 ZERO_STRUCT(info_ctr
);
4156 info_ctr
.ctr
.ctr1
= &ctr1
;
4158 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4166 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4167 TALLOC_FREE(pipe_hnd
);
4172 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4173 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4174 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4177 TALLOC_FREE(pipe_hnd
);
4182 /****************************************************************************
4183 Try and browse available connections on a host.
4184 ****************************************************************************/
4186 static bool browse_host(bool sort
)
4190 d_printf("\n\tSharename Type Comment\n");
4191 d_printf("\t--------- ---- -------\n");
4194 if (browse_host_rpc(sort
)) {
4198 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
4199 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
4204 /****************************************************************************
4206 ****************************************************************************/
4208 static void server_fn(const char *name
, uint32 m
,
4209 const char *comment
, void *state
)
4213 d_printf("\t%-16s %s\n", name
, comment
);
4215 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4219 /****************************************************************************
4220 Try and browse available connections on a host.
4221 ****************************************************************************/
4223 static bool list_servers(const char *wk_grp
)
4227 if (!cli
->server_domain
)
4231 d_printf("\n\tServer Comment\n");
4232 d_printf("\t--------- -------\n");
4234 fstrcpy( state
, "Server" );
4235 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4239 d_printf("\n\tWorkgroup Master\n");
4240 d_printf("\t--------- -------\n");
4243 fstrcpy( state
, "Workgroup" );
4244 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4249 /****************************************************************************
4250 Print or set current VUID
4251 ****************************************************************************/
4253 static int cmd_vuid(void)
4255 TALLOC_CTX
*ctx
= talloc_tos();
4258 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4259 d_printf("Current VUID is %d\n", cli
->vuid
);
4263 cli
->vuid
= atoi(buf
);
4267 /****************************************************************************
4268 Setup a new VUID, by issuing a session setup
4269 ****************************************************************************/
4271 static int cmd_logon(void)
4273 TALLOC_CTX
*ctx
= talloc_tos();
4274 char *l_username
, *l_password
;
4277 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4278 d_printf("logon <username> [<password>]\n");
4282 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4283 char *pass
= getpass("Password: ");
4285 l_password
= talloc_strdup(ctx
,pass
);
4292 nt_status
= cli_session_setup(cli
, l_username
,
4293 l_password
, strlen(l_password
),
4294 l_password
, strlen(l_password
),
4296 if (!NT_STATUS_IS_OK(nt_status
)) {
4297 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4301 d_printf("Current VUID is %d\n", cli
->vuid
);
4306 /****************************************************************************
4307 list active connections
4308 ****************************************************************************/
4310 static int cmd_list_connect(void)
4312 cli_cm_display(cli
);
4316 /****************************************************************************
4317 display the current active client connection
4318 ****************************************************************************/
4320 static int cmd_show_connect( void )
4322 TALLOC_CTX
*ctx
= talloc_tos();
4323 struct cli_state
*targetcli
;
4327 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
4328 client_get_cur_dir(), &targetcli
,
4330 if (!NT_STATUS_IS_OK(status
)) {
4331 d_printf("showconnect %s: %s\n", cur_dir
, nt_errstr(status
));
4335 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
4339 /****************************************************************************
4341 ***************************************************************************/
4343 int cmd_iosize(void)
4345 TALLOC_CTX
*ctx
= talloc_tos();
4349 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4351 d_printf("iosize <n> or iosize 0x<n>. "
4352 "Minimum is 16384 (0x4000), "
4353 "max is 16776960 (0xFFFF00)\n");
4355 d_printf("iosize <n> or iosize 0x<n>. "
4356 "(Encrypted connection) ,"
4357 "Minimum is 16384 (0x4000), "
4358 "max is 130048 (0x1FC00)\n");
4363 iosize
= strtol(buf
,NULL
,0);
4364 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
4365 d_printf("iosize out of range for encrypted "
4366 "connection (min = 16384 (0x4000), "
4367 "max = 130048 (0x1FC00)");
4369 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
4370 d_printf("iosize out of range (min = 16384 (0x4000), "
4371 "max = 16776960 (0xFFFF00)");
4375 io_bufsize
= iosize
;
4376 d_printf("iosize is now %d\n", io_bufsize
);
4380 /****************************************************************************
4382 ****************************************************************************/
4383 static int cmd_history(void)
4385 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4389 hlist
= history_list();
4391 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4392 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4395 DEBUG(0,("no history without readline support\n"));
4401 /* Some constants for completing filename arguments */
4403 #define COMPL_NONE 0 /* No completions */
4404 #define COMPL_REMOTE 1 /* Complete remote filename */
4405 #define COMPL_LOCAL 2 /* Complete local filename */
4407 /* This defines the commands supported by this client.
4408 * NOTE: The "!" must be the last one in the list because it's fn pointer
4409 * field is NULL, and NULL in that field is used in process_tok()
4410 * (below) to indicate the end of the list. crh
4415 const char *description
;
4416 char compl_args
[2]; /* Completion argument info */
4418 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4419 {"allinfo",cmd_allinfo
,"<file> show all available info",
4420 {COMPL_NONE
,COMPL_NONE
}},
4421 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4422 {"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
}},
4423 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4424 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4425 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4426 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4427 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
4428 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
4429 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
4430 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4431 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4432 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4433 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4434 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4435 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4436 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
4437 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4438 {COMPL_REMOTE
, COMPL_LOCAL
}},
4439 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4440 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4441 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4442 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4443 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4444 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4445 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4446 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4447 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4448 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4449 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4450 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4451 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4452 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4453 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4454 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4455 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4456 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4457 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4458 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4459 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4460 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4461 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4462 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4463 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4464 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4465 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4466 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4467 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4468 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4469 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4470 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4471 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4472 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4473 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4474 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4475 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4476 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4477 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4478 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4479 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4480 {COMPL_REMOTE
, COMPL_LOCAL
}},
4481 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4482 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
4483 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4484 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4485 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4486 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4487 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4488 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4489 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4490 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4491 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4492 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4493 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4494 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4496 /* Yes, this must be here, see crh's comment above. */
4497 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4498 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4501 /*******************************************************************
4502 Lookup a command string in the list of commands, including
4504 ******************************************************************/
4506 static int process_tok(char *tok
)
4508 int i
= 0, matches
= 0;
4510 int tok_len
= strlen(tok
);
4512 while (commands
[i
].fn
!= NULL
) {
4513 if (strequal(commands
[i
].name
,tok
)) {
4517 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4526 else if (matches
== 1)
4532 /****************************************************************************
4534 ****************************************************************************/
4536 static int cmd_help(void)
4538 TALLOC_CTX
*ctx
= talloc_tos();
4542 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4543 if ((i
= process_tok(buf
)) >= 0)
4544 d_printf("HELP %s:\n\t%s\n\n",
4545 commands
[i
].name
,commands
[i
].description
);
4547 while (commands
[i
].description
) {
4548 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4549 d_printf("%-15s",commands
[i
].name
);
4558 /****************************************************************************
4559 Process a -c command string.
4560 ****************************************************************************/
4562 static int process_command_string(const char *cmd_in
)
4564 TALLOC_CTX
*ctx
= talloc_tos();
4565 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4571 /* establish the connection if not already */
4576 status
= cli_cm_open(talloc_tos(), NULL
,
4577 have_ip
? dest_ss_str
: desthost
,
4580 max_protocol
, port
, name_type
,
4582 if (!NT_STATUS_IS_OK(status
)) {
4587 while (cmd
[0] != '\0') {
4593 if ((p
= strchr_m(cmd
, ';')) == 0) {
4602 /* and get the first part of the command */
4604 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4608 if ((i
= process_tok(tok
)) >= 0) {
4609 rc
= commands
[i
].fn();
4610 } else if (i
== -2) {
4611 d_printf("%s: command abbreviation ambiguous\n",tok
);
4613 d_printf("%s: command not found\n",tok
);
4620 #define MAX_COMPLETIONS 100
4622 struct completion_remote
{
4630 static NTSTATUS
completion_remote_filter(const char *mnt
,
4631 struct file_info
*f
,
4635 struct completion_remote
*info
= (struct completion_remote
*)state
;
4637 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4638 return NT_STATUS_OK
;
4640 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4641 return NT_STATUS_OK
;
4643 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4644 return NT_STATUS_OK
;
4647 if ((info
->dirmask
[0] == 0) && !(f
->mode
& FILE_ATTRIBUTE_DIRECTORY
))
4648 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4650 TALLOC_CTX
*ctx
= talloc_stackframe();
4653 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4656 return NT_STATUS_NO_MEMORY
;
4658 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4661 return NT_STATUS_NO_MEMORY
;
4663 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4664 tmp
= talloc_asprintf_append(tmp
, "%s",
4669 return NT_STATUS_NO_MEMORY
;
4671 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4674 if (info
->matches
[info
->count
] == NULL
) {
4675 return NT_STATUS_OK
;
4677 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4678 smb_readline_ca_char(0);
4680 if (info
->count
== 1) {
4681 info
->samelen
= strlen(info
->matches
[info
->count
]);
4683 while (strncmp(info
->matches
[info
->count
],
4684 info
->matches
[info
->count
-1],
4685 info
->samelen
) != 0) {
4690 return NT_STATUS_OK
;
4693 static char **remote_completion(const char *text
, int len
)
4695 TALLOC_CTX
*ctx
= talloc_stackframe();
4696 char *dirmask
= NULL
;
4697 char *targetpath
= NULL
;
4698 struct cli_state
*targetcli
= NULL
;
4700 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4703 /* can't have non-static initialisation on Sun CC, so do it
4709 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4710 if (!info
.matches
) {
4716 * We're leaving matches[0] free to fill it later with the text to
4717 * display: Either the one single match or the longest common subset
4720 info
.matches
[0] = NULL
;
4723 for (i
= len
-1; i
>= 0; i
--) {
4724 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4729 info
.text
= text
+i
+1;
4730 info
.samelen
= info
.len
= len
-i
-1;
4733 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4734 if (!info
.dirmask
) {
4737 strncpy(info
.dirmask
, text
, i
+1);
4738 info
.dirmask
[i
+1] = 0;
4739 dirmask
= talloc_asprintf(ctx
,
4741 client_get_cur_dir(),
4745 info
.dirmask
= SMB_STRDUP("");
4746 if (!info
.dirmask
) {
4749 dirmask
= talloc_asprintf(ctx
,
4751 client_get_cur_dir());
4757 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
,
4759 if (!NT_STATUS_IS_OK(status
)) {
4762 status
= cli_list(targetcli
, targetpath
, FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
4763 completion_remote_filter
, (void *)&info
);
4764 if (!NT_STATUS_IS_OK(status
)) {
4768 if (info
.count
== 1) {
4770 * No matches at all, NULL indicates there is nothing
4772 SAFE_FREE(info
.matches
[0]);
4773 SAFE_FREE(info
.matches
);
4778 if (info
.count
== 2) {
4780 * Exactly one match in matches[1], indicate this is the one
4783 info
.matches
[0] = info
.matches
[1];
4784 info
.matches
[1] = NULL
;
4787 return info
.matches
;
4791 * We got more than one possible match, set the result to the maximum
4795 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4796 info
.matches
[info
.count
] = NULL
;
4797 return info
.matches
;
4800 for (i
= 0; i
< info
.count
; i
++) {
4801 SAFE_FREE(info
.matches
[i
]);
4803 SAFE_FREE(info
.matches
);
4804 SAFE_FREE(info
.dirmask
);
4809 static char **completion_fn(const char *text
, int start
, int end
)
4811 smb_readline_ca_char(' ');
4814 const char *buf
, *sp
;
4818 buf
= smb_readline_get_line_buffer();
4822 sp
= strchr(buf
, ' ');
4826 for (i
= 0; commands
[i
].name
; i
++) {
4827 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4828 (commands
[i
].name
[sp
- buf
] == 0)) {
4832 if (commands
[i
].name
== NULL
)
4838 if (sp
== (buf
+ start
))
4839 compl_type
= commands
[i
].compl_args
[0];
4841 compl_type
= commands
[i
].compl_args
[1];
4843 if (compl_type
== COMPL_REMOTE
)
4844 return remote_completion(text
, end
- start
);
4845 else /* fall back to local filename completion */
4849 int i
, len
, samelen
= 0, count
=1;
4851 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4858 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4859 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4860 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4861 if (!matches
[count
])
4864 samelen
= strlen(matches
[count
]);
4866 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4873 case 0: /* should never happen */
4877 matches
[0] = SMB_STRDUP(matches
[1]);
4880 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4883 strncpy(matches
[0], matches
[1], samelen
);
4884 matches
[0][samelen
] = 0;
4886 matches
[count
] = NULL
;
4890 for (i
= 0; i
< count
; i
++)
4898 static bool finished
;
4900 /****************************************************************************
4901 Make sure we swallow keepalives during idle time.
4902 ****************************************************************************/
4904 static void readline_callback(void)
4906 static time_t last_t
;
4907 struct timespec now
;
4911 clock_gettime_mono(&now
);
4924 /* We deliberately use receive_smb_raw instead of
4925 client_receive_smb as we want to receive
4926 session keepalives and then drop them here.
4929 ret
= poll_intr_one_fd(cli
->fd
, POLLIN
|POLLHUP
, 0, &revents
);
4931 if ((ret
> 0) && (revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
4935 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4937 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4939 if (!NT_STATUS_IS_OK(status
)) {
4940 DEBUG(0, ("Read from server failed, maybe it closed "
4941 "the connection\n"));
4944 smb_readline_done();
4945 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4946 set_smb_read_error(&cli
->smb_rw_error
,
4951 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4952 set_smb_read_error(&cli
->smb_rw_error
,
4957 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4960 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4961 DEBUG(0, ("Read from server "
4962 "returned unexpected packet!\n"));
4969 /* Ping the server to keep the connection alive using SMBecho. */
4972 unsigned char garbage
[16];
4973 memset(garbage
, 0xf0, sizeof(garbage
));
4974 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4976 if (!NT_STATUS_IS_OK(status
)) {
4977 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4978 "the connection\n"));
4980 smb_readline_done();
4985 /****************************************************************************
4986 Process commands on stdin.
4987 ****************************************************************************/
4989 static int process_stdin(void)
4994 TALLOC_CTX
*frame
= talloc_stackframe();
4996 char *the_prompt
= NULL
;
5000 /* display a prompt */
5001 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
5005 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
5006 SAFE_FREE(the_prompt
);
5012 /* special case - first char is ! */
5014 if (system(line
+ 1) == -1) {
5015 d_printf("system() command %s failed.\n",
5023 /* and get the first part of the command */
5025 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
5031 if ((i
= process_tok(tok
)) >= 0) {
5032 rc
= commands
[i
].fn();
5033 } else if (i
== -2) {
5034 d_printf("%s: command abbreviation ambiguous\n",tok
);
5036 d_printf("%s: command not found\n",tok
);
5044 /****************************************************************************
5045 Process commands from the client.
5046 ****************************************************************************/
5048 static int process(const char *base_directory
)
5053 status
= cli_cm_open(talloc_tos(), NULL
,
5054 have_ip
? dest_ss_str
: desthost
,
5055 service
, auth_info
, true, smb_encrypt
,
5056 max_protocol
, port
, name_type
, &cli
);
5057 if (!NT_STATUS_IS_OK(status
)) {
5061 if (base_directory
&& *base_directory
) {
5062 rc
= do_cd(base_directory
);
5070 rc
= process_command_string(cmdstr
);
5079 /****************************************************************************
5081 ****************************************************************************/
5083 static int do_host_query(const char *query_host
)
5087 status
= cli_cm_open(talloc_tos(), NULL
,
5088 have_ip
? dest_ss_str
: query_host
,
5089 "IPC$", auth_info
, true, smb_encrypt
,
5090 max_protocol
, port
, name_type
, &cli
);
5091 if (!NT_STATUS_IS_OK(status
)) {
5097 /* Ensure that the host can do IPv4 */
5099 if (!interpret_addr(query_host
)) {
5100 struct sockaddr_storage ss
;
5101 if (interpret_string_addr(&ss
, query_host
, 0) &&
5102 (ss
.ss_family
!= AF_INET
)) {
5103 d_printf("%s is an IPv6 address -- no workgroup available\n",
5111 /* Workgroups simply don't make sense over anything
5112 else but port 139... */
5115 status
= cli_cm_open(talloc_tos(), NULL
,
5116 have_ip
? dest_ss_str
: query_host
,
5117 "IPC$", auth_info
, true, smb_encrypt
,
5118 max_protocol
, 139, name_type
, &cli
);
5119 if (!NT_STATUS_IS_OK(status
)) {
5125 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5129 list_servers(lp_workgroup());
5136 /****************************************************************************
5137 Handle a tar operation.
5138 ****************************************************************************/
5140 static int do_tar_op(const char *base_directory
)
5144 /* do we already have a connection? */
5148 status
= cli_cm_open(talloc_tos(), NULL
,
5149 have_ip
? dest_ss_str
: desthost
,
5150 service
, auth_info
, true, smb_encrypt
,
5151 max_protocol
, port
, name_type
, &cli
);
5152 if (!NT_STATUS_IS_OK(status
)) {
5159 if (base_directory
&& *base_directory
) {
5160 ret
= do_cd(base_directory
);
5174 /****************************************************************************
5175 Handle a message operation.
5176 ****************************************************************************/
5178 static int do_message_op(struct user_auth_info
*a_info
)
5182 status
= cli_connect_nb(desthost
, have_ip
? &dest_ss
: NULL
,
5183 port
? port
: 139, name_type
,
5184 lp_netbios_name(), Undefined
, &cli
);
5185 if (!NT_STATUS_IS_OK(status
)) {
5186 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5190 send_message(get_cmdline_auth_info_username(a_info
));
5196 /****************************************************************************
5198 ****************************************************************************/
5200 int main(int argc
,char *argv
[])
5202 char *base_directory
= NULL
;
5204 char *query_host
= NULL
;
5205 bool message
= false;
5206 static const char *new_name_resolve_order
= NULL
;
5210 bool tar_opt
= false;
5211 bool service_opt
= false;
5212 struct poptOption long_options
[] = {
5215 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5216 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
5217 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
5218 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
5219 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
5220 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
5221 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5222 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
5223 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
5224 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
5225 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
5226 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
5227 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
5229 POPT_COMMON_CONNECTION
5230 POPT_COMMON_CREDENTIALS
5233 TALLOC_CTX
*frame
= talloc_stackframe();
5235 if (!client_set_cur_dir("\\")) {
5239 /* set default debug level to 1 regardless of what smb.conf sets */
5240 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR
);
5243 lp_set_cmdline("log level", "1");
5245 auth_info
= user_auth_info_init(frame
);
5246 if (auth_info
== NULL
) {
5249 popt_common_set_auth_info(auth_info
);
5252 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
5253 poptSetOtherOptionHelp(pc
, "service <password>");
5255 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5257 while ((opt
= poptGetNextOpt(pc
)) != -1) {
5259 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5260 /* I see no other way to keep things sane --SSS */
5261 if (tar_opt
== true) {
5262 while (poptPeekArg(pc
)) {
5268 /* if the service has not yet been specified lets see if it is available in the popt stack */
5269 if (!service_opt
&& poptPeekArg(pc
)) {
5270 service
= talloc_strdup(frame
, poptGetArg(pc
));
5277 /* if the service has already been retrieved then check if we have also a password */
5279 && (!get_cmdline_auth_info_got_pass(auth_info
))
5280 && poptPeekArg(pc
)) {
5281 set_cmdline_auth_info_password(auth_info
,
5287 /* Messages are sent to NetBIOS name type 0x3
5288 * (Messenger Service). Make sure we default
5289 * to port 139 instead of port 445. srl,crh
5292 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
5302 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
5306 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
5310 setup_logging("smbclient", DEBUG_STDERR
);
5311 display_set_stderr();
5315 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
5321 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
5324 /* We must use old option processing for this. Find the
5325 * position of the -T option in the raw argv[]. */
5328 for (i
= 1; i
< argc
; i
++) {
5329 if (strncmp("-T", argv
[i
],2)==0)
5333 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
5334 poptPrintUsage(pc
, stderr
, 0);
5338 /* this must be the last option, mark we have parsed it so that we know we have */
5342 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5343 if (!base_directory
) {
5354 return(do_smb_browse());
5359 /* We may still have some leftovers after the last popt option has been called */
5360 if (tar_opt
== true) {
5361 while (poptPeekArg(pc
)) {
5367 /* if the service has not yet been specified lets see if it is available in the popt stack */
5368 if (!service_opt
&& poptPeekArg(pc
)) {
5369 service
= talloc_strdup(frame
,poptGetArg(pc
));
5376 /* if the service has already been retrieved then check if we have also a password */
5378 && !get_cmdline_auth_info_got_pass(auth_info
)
5379 && poptPeekArg(pc
)) {
5380 set_cmdline_auth_info_password(auth_info
,
5384 if ( override_logfile
)
5385 setup_logging( lp_logfile(), DEBUG_FILE
);
5387 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5388 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5389 argv
[0], get_dyn_CONFIGFILE());
5392 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5393 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5399 if (service_opt
&& service
) {
5402 /* Convert any '/' characters in the service name to '\' characters */
5403 string_replace(service
, '/','\\');
5404 if (count_chars(service
,'\\') < 3) {
5405 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5406 poptPrintUsage(pc
, stderr
, 0);
5409 /* Remove trailing slashes */
5410 len
= strlen(service
);
5411 while(len
> 0 && service
[len
- 1] == '\\') {
5413 service
[len
] = '\0';
5417 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5418 if (!init_names()) {
5419 fprintf(stderr
, "init_names() failed\n");
5423 if(new_name_resolve_order
)
5424 lp_set_name_resolve_order(new_name_resolve_order
);
5426 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5427 poptPrintUsage(pc
, stderr
, 0);
5431 poptFreeContext(pc
);
5433 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5435 /* Ensure we have a password (or equivalent). */
5436 set_cmdline_auth_info_getpass(auth_info
);
5440 process_command_string(cmdstr
);
5441 return do_tar_op(base_directory
);
5444 if (query_host
&& *query_host
) {
5445 char *qhost
= query_host
;
5448 while (*qhost
== '\\' || *qhost
== '/')
5451 if ((slash
= strchr_m(qhost
, '/'))
5452 || (slash
= strchr_m(qhost
, '\\'))) {
5456 if ((p
=strchr_m(qhost
, '#'))) {
5459 sscanf(p
, "%x", &name_type
);
5462 return do_host_query(qhost
);
5466 return do_message_op(auth_info
);
5469 if (process(base_directory
)) {