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;
91 static bool backup_intent
= false;
93 static struct sockaddr_storage dest_ss
;
94 static char dest_ss_str
[INET6_ADDRSTRLEN
];
96 #define SEPARATORS " \t\n\r"
98 static bool abort_mget
= true;
101 uint64_t get_total_size
= 0;
102 unsigned int get_total_time_ms
= 0;
103 static uint64_t put_total_size
= 0;
104 static unsigned int put_total_time_ms
= 0;
107 static double dir_total
;
109 /* encrypted state. */
110 static bool smb_encrypt
;
112 /* root cli_state connection */
114 struct cli_state
*cli
;
116 static char CLI_DIRSEP_CHAR
= '\\';
117 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
119 /* Authentication for client connections. */
120 struct user_auth_info
*auth_info
;
122 /* Accessor functions for directory paths. */
123 static char *fileselection
;
124 static const char *client_get_fileselection(void)
127 return fileselection
;
132 static const char *client_set_fileselection(const char *new_fs
)
134 SAFE_FREE(fileselection
);
136 fileselection
= SMB_STRDUP(new_fs
);
138 return client_get_fileselection();
142 static const char *client_get_cwd(void)
147 return CLI_DIRSEP_STR
;
150 static const char *client_set_cwd(const char *new_cwd
)
154 cwd
= SMB_STRDUP(new_cwd
);
156 return client_get_cwd();
159 static char *cur_dir
;
160 const char *client_get_cur_dir(void)
165 return CLI_DIRSEP_STR
;
168 const char *client_set_cur_dir(const char *newdir
)
172 cur_dir
= SMB_STRDUP(newdir
);
174 return client_get_cur_dir();
177 /****************************************************************************
178 Put up a yes/no prompt.
179 ****************************************************************************/
181 static bool yesno(const char *p
)
186 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
189 if (*ans
== 'y' || *ans
== 'Y')
195 /****************************************************************************
196 Write to a local file with CR/LF->LF translation if appropriate. Return the
197 number taken from the buffer. This may not equal the number written.
198 ****************************************************************************/
200 static int writefile(int f
, char *b
, int n
)
210 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
213 if (write(f
, b
, 1) != 1) {
223 /****************************************************************************
224 Read from a file with LF->CR/LF translation if appropriate. Return the
225 number read. read approx n bytes.
226 ****************************************************************************/
228 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
234 return x_fread(b
,1,n
,f
);
237 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
238 if ((c
= x_getc(f
)) == EOF
) {
242 if (c
== '\n') { /* change all LFs to CR/LF */
257 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
259 struct push_state
*state
= (struct push_state
*)priv
;
262 if (x_feof(state
->f
)) {
266 result
= readfile(buf
, n
, state
->f
);
267 state
->nread
+= result
;
271 /****************************************************************************
273 ****************************************************************************/
275 static void send_message(const char *username
)
281 d_printf("Type your message, ending it with a Control-D\n");
284 while (i
<sizeof(buf
)-2) {
285 int c
= fgetc(stdin
);
296 status
= cli_message(cli
, desthost
, username
, buf
);
297 if (!NT_STATUS_IS_OK(status
)) {
298 d_fprintf(stderr
, "cli_message returned %s\n",
303 /****************************************************************************
304 Check the space on a device.
305 ****************************************************************************/
307 static int do_dskattr(void)
309 int total
, bsize
, avail
;
310 struct cli_state
*targetcli
= NULL
;
311 char *targetpath
= NULL
;
312 TALLOC_CTX
*ctx
= talloc_tos();
315 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
316 client_get_cur_dir(), &targetcli
,
318 if (!NT_STATUS_IS_OK(status
)) {
319 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
323 status
= cli_dskattr(targetcli
, &bsize
, &total
, &avail
);
324 if (!NT_STATUS_IS_OK(status
)) {
325 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
329 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
330 total
, bsize
, avail
);
335 /****************************************************************************
337 ****************************************************************************/
339 static int cmd_pwd(void)
341 d_printf("Current directory is %s",service
);
342 d_printf("%s\n",client_get_cur_dir());
346 /****************************************************************************
347 Ensure name has correct directory separators.
348 ****************************************************************************/
350 static void normalize_name(char *newdir
)
352 if (!(cli
->requested_posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
353 string_replace(newdir
,'/','\\');
357 /****************************************************************************
358 Change directory - inner section.
359 ****************************************************************************/
361 static int do_cd(const char *new_dir
)
364 char *saved_dir
= NULL
;
366 char *targetpath
= NULL
;
367 struct cli_state
*targetcli
= NULL
;
368 SMB_STRUCT_STAT sbuf
;
371 TALLOC_CTX
*ctx
= talloc_stackframe();
374 newdir
= talloc_strdup(ctx
, new_dir
);
380 normalize_name(newdir
);
382 /* Save the current directory in case the new directory is invalid */
384 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
390 if (*newdir
== CLI_DIRSEP_CHAR
) {
391 client_set_cur_dir(newdir
);
394 new_cd
= talloc_asprintf(ctx
, "%s%s",
395 client_get_cur_dir(),
402 /* Ensure cur_dir ends in a DIRSEP */
403 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
404 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
409 client_set_cur_dir(new_cd
);
411 new_cd
= clean_name(ctx
, new_cd
);
412 client_set_cur_dir(new_cd
);
414 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
,
415 &targetcli
, &targetpath
);
416 if (!NT_STATUS_IS_OK(status
)) {
417 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
418 client_set_cur_dir(saved_dir
);
422 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
427 /* Use a trans2_qpathinfo to test directories for modern servers.
428 Except Win9x doesn't support the qpathinfo_basic() call..... */
430 if (cli_state_protocol(targetcli
) > PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
432 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
434 if (!NT_STATUS_IS_OK(status
)) {
435 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
436 client_set_cur_dir(saved_dir
);
440 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
441 d_printf("cd %s: not a directory\n", new_cd
);
442 client_set_cur_dir(saved_dir
);
447 targetpath
= talloc_asprintf(ctx
,
452 client_set_cur_dir(saved_dir
);
455 targetpath
= clean_name(ctx
, targetpath
);
457 client_set_cur_dir(saved_dir
);
461 status
= cli_chkpath(targetcli
, targetpath
);
462 if (!NT_STATUS_IS_OK(status
)) {
463 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
464 client_set_cur_dir(saved_dir
);
477 /****************************************************************************
479 ****************************************************************************/
481 static int cmd_cd(void)
486 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
489 d_printf("Current directory is %s\n",client_get_cur_dir());
495 /****************************************************************************
497 ****************************************************************************/
499 static int cmd_cd_oneup(void)
504 /*******************************************************************
505 Decide if a file should be operated on.
506 ********************************************************************/
508 static bool do_this_one(struct file_info
*finfo
)
514 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
518 if (*client_get_fileselection() &&
519 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
520 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
524 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
525 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
529 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& FILE_ATTRIBUTE_ARCHIVE
)) {
530 DEBUG(3,("archive %s failed\n", finfo
->name
));
537 /****************************************************************************
538 Display info about a file.
539 ****************************************************************************/
541 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
545 TALLOC_CTX
*ctx
= talloc_tos();
546 NTSTATUS status
= NT_STATUS_OK
;
548 if (!do_this_one(finfo
)) {
552 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
554 d_printf(" %-30s%7.7s %8.0f %s",
556 attrib_string(talloc_tos(), finfo
->mode
),
559 dir_total
+= finfo
->size
;
564 /* skip if this is . or .. */
565 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
567 /* create absolute filename for cli_ntcreate() FIXME */
568 afname
= talloc_asprintf(ctx
,
574 return NT_STATUS_NO_MEMORY
;
576 /* print file meta date header */
577 d_printf( "FILENAME:%s\n", finfo
->name
);
578 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo
->mode
));
579 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
580 d_printf( "MTIME:%s", time_to_asc(t
));
581 status
= cli_ntcreate(cli_state
, afname
, 0,
582 CREATE_ACCESS_READ
, 0,
583 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
584 FILE_OPEN
, 0x0, 0x0, &fnum
);
585 if (!NT_STATUS_IS_OK(status
)) {
586 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
587 afname
, nt_errstr(status
)));
589 struct security_descriptor
*sd
= NULL
;
590 status
= cli_query_secdesc(cli_state
, fnum
,
592 if (!NT_STATUS_IS_OK(status
)) {
593 DEBUG( 0, ("display_finfo() failed to "
594 "get security descriptor: %s",
597 display_sec_desc(sd
);
606 /****************************************************************************
607 Accumulate size of a file.
608 ****************************************************************************/
610 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
613 if (do_this_one(finfo
)) {
614 dir_total
+= finfo
->size
;
619 static bool do_list_recurse
;
620 static bool do_list_dirs
;
621 static char *do_list_queue
= 0;
622 static long do_list_queue_size
= 0;
623 static long do_list_queue_start
= 0;
624 static long do_list_queue_end
= 0;
625 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
628 /****************************************************************************
629 Functions for do_list_queue.
630 ****************************************************************************/
633 * The do_list_queue is a NUL-separated list of strings stored in a
634 * char*. Since this is a FIFO, we keep track of the beginning and
635 * ending locations of the data in the queue. When we overflow, we
636 * double the size of the char*. When the start of the data passes
637 * the midpoint, we move everything back. This is logically more
638 * complex than a linked list, but easier from a memory management
639 * angle. In any memory error condition, do_list_queue is reset.
640 * Functions check to ensure that do_list_queue is non-NULL before
644 static void reset_do_list_queue(void)
646 SAFE_FREE(do_list_queue
);
647 do_list_queue_size
= 0;
648 do_list_queue_start
= 0;
649 do_list_queue_end
= 0;
652 static void init_do_list_queue(void)
654 reset_do_list_queue();
655 do_list_queue_size
= 1024;
656 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
657 if (do_list_queue
== 0) {
658 d_printf("malloc fail for size %d\n",
659 (int)do_list_queue_size
);
660 reset_do_list_queue();
662 memset(do_list_queue
, 0, do_list_queue_size
);
666 static void adjust_do_list_queue(void)
669 * If the starting point of the queue is more than half way through,
670 * move everything toward the beginning.
673 if (do_list_queue
== NULL
) {
674 DEBUG(4,("do_list_queue is empty\n"));
675 do_list_queue_start
= do_list_queue_end
= 0;
679 if (do_list_queue_start
== do_list_queue_end
) {
680 DEBUG(4,("do_list_queue is empty\n"));
681 do_list_queue_start
= do_list_queue_end
= 0;
682 *do_list_queue
= '\0';
683 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
684 DEBUG(4,("sliding do_list_queue backward\n"));
685 memmove(do_list_queue
,
686 do_list_queue
+ do_list_queue_start
,
687 do_list_queue_end
- do_list_queue_start
);
688 do_list_queue_end
-= do_list_queue_start
;
689 do_list_queue_start
= 0;
693 static void add_to_do_list_queue(const char *entry
)
695 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
696 while (new_end
> do_list_queue_size
) {
697 do_list_queue_size
*= 2;
698 DEBUG(4,("enlarging do_list_queue to %d\n",
699 (int)do_list_queue_size
));
700 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
701 if (! do_list_queue
) {
702 d_printf("failure enlarging do_list_queue to %d bytes\n",
703 (int)do_list_queue_size
);
704 reset_do_list_queue();
706 memset(do_list_queue
+ do_list_queue_size
/ 2,
707 0, do_list_queue_size
/ 2);
711 strlcpy_base(do_list_queue
+ do_list_queue_end
,
712 entry
, do_list_queue
, do_list_queue_size
);
713 do_list_queue_end
= new_end
;
714 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
715 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
719 static char *do_list_queue_head(void)
721 return do_list_queue
+ do_list_queue_start
;
724 static void remove_do_list_queue_head(void)
726 if (do_list_queue_end
> do_list_queue_start
) {
727 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
728 adjust_do_list_queue();
729 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
730 (int)do_list_queue_start
, (int)do_list_queue_end
));
734 static int do_list_queue_empty(void)
736 return (! (do_list_queue
&& *do_list_queue
));
739 /****************************************************************************
740 A helper for do_list.
741 ****************************************************************************/
743 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
744 const char *mask
, void *state
)
746 struct cli_state
*cli_state
= (struct cli_state
*)state
;
747 TALLOC_CTX
*ctx
= talloc_tos();
749 char *dir_end
= NULL
;
750 NTSTATUS status
= NT_STATUS_OK
;
752 /* Work out the directory. */
753 dir
= talloc_strdup(ctx
, mask
);
755 return NT_STATUS_NO_MEMORY
;
757 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
761 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
762 if (do_list_dirs
&& do_this_one(f
)) {
763 status
= do_list_fn(cli_state
, f
, dir
);
764 if (!NT_STATUS_IS_OK(status
)) {
768 if (do_list_recurse
&&
770 !strequal(f
->name
,".") &&
771 !strequal(f
->name
,"..")) {
776 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
778 return NT_STATUS_UNSUCCESSFUL
;
781 mask2
= talloc_asprintf(ctx
,
787 return NT_STATUS_NO_MEMORY
;
789 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
795 mask2
= talloc_asprintf_append(mask2
,
801 return NT_STATUS_NO_MEMORY
;
803 add_to_do_list_queue(mask2
);
810 if (do_this_one(f
)) {
811 status
= do_list_fn(cli_state
, f
, dir
);
817 /****************************************************************************
818 A wrapper around cli_list that adds recursion.
819 ****************************************************************************/
821 NTSTATUS
do_list(const char *mask
,
823 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
828 static int in_do_list
= 0;
829 TALLOC_CTX
*ctx
= talloc_tos();
830 struct cli_state
*targetcli
= NULL
;
831 char *targetpath
= NULL
;
832 NTSTATUS ret_status
= NT_STATUS_OK
;
833 NTSTATUS status
= NT_STATUS_OK
;
835 if (in_do_list
&& rec
) {
836 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
842 do_list_recurse
= rec
;
847 init_do_list_queue();
848 add_to_do_list_queue(mask
);
850 while (!do_list_queue_empty()) {
852 * Need to copy head so that it doesn't become
853 * invalid inside the call to cli_list. This
854 * would happen if the list were expanded
856 * Fix from E. Jay Berkenbilt (ejb@ql.org)
858 char *head
= talloc_strdup(ctx
, do_list_queue_head());
861 return NT_STATUS_NO_MEMORY
;
866 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
869 if (!NT_STATUS_IS_OK(status
)) {
870 d_printf("do_list: [%s] %s\n", head
,
872 remove_do_list_queue_head();
876 status
= cli_list(targetcli
, targetpath
, attribute
,
877 do_list_helper
, targetcli
);
878 if (!NT_STATUS_IS_OK(status
)) {
879 d_printf("%s listing %s\n",
880 nt_errstr(status
), targetpath
);
883 remove_do_list_queue_head();
884 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
885 char *next_file
= do_list_queue_head();
887 if ((strlen(next_file
) >= 2) &&
888 (next_file
[strlen(next_file
) - 1] == '*') &&
889 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
890 save_ch
= next_file
+
891 strlen(next_file
) - 2;
894 /* cwd is only used if showacls is on */
895 client_set_cwd(next_file
);
898 if (!showacls
) /* don't disturbe the showacls output */
899 d_printf("\n%s\n",next_file
);
901 *save_ch
= CLI_DIRSEP_CHAR
;
905 TALLOC_FREE(targetpath
);
909 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
910 &targetcli
, &targetpath
);
911 if (NT_STATUS_IS_OK(status
)) {
912 status
= cli_list(targetcli
, targetpath
, attribute
,
913 do_list_helper
, targetcli
);
914 if (!NT_STATUS_IS_OK(status
)) {
915 d_printf("%s listing %s\n",
916 nt_errstr(status
), targetpath
);
919 TALLOC_FREE(targetpath
);
921 d_printf("do_list: [%s] %s\n", mask
, nt_errstr(status
));
927 reset_do_list_queue();
931 /****************************************************************************
932 Get a directory listing.
933 ****************************************************************************/
935 static int cmd_dir(void)
937 TALLOC_CTX
*ctx
= talloc_tos();
938 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
945 mask
= talloc_strdup(ctx
, client_get_cur_dir());
950 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
952 if (*buf
== CLI_DIRSEP_CHAR
) {
953 mask
= talloc_strdup(ctx
, buf
);
955 mask
= talloc_asprintf_append(mask
, "%s", buf
);
958 mask
= talloc_asprintf_append(mask
, "*");
965 /* cwd is only used if showacls is on */
966 client_set_cwd(client_get_cur_dir());
969 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
970 if (!NT_STATUS_IS_OK(status
)) {
976 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
981 /****************************************************************************
982 Get a directory listing.
983 ****************************************************************************/
985 static int cmd_du(void)
987 TALLOC_CTX
*ctx
= talloc_tos();
988 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
995 mask
= talloc_strdup(ctx
, client_get_cur_dir());
999 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
1000 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
1006 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1007 normalize_name(buf
);
1008 if (*buf
== CLI_DIRSEP_CHAR
) {
1009 mask
= talloc_strdup(ctx
, buf
);
1011 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1014 mask
= talloc_strdup(ctx
, "*");
1017 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1018 if (!NT_STATUS_IS_OK(status
)) {
1024 d_printf("Total number of bytes: %.0f\n", dir_total
);
1029 static int cmd_echo(void)
1031 TALLOC_CTX
*ctx
= talloc_tos();
1036 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1037 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1038 d_printf("echo <num> <data>\n");
1042 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1044 if (!NT_STATUS_IS_OK(status
)) {
1045 d_printf("echo failed: %s\n", nt_errstr(status
));
1052 /****************************************************************************
1053 Get a file from rname to lname
1054 ****************************************************************************/
1056 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1058 int *pfd
= (int *)priv
;
1059 if (writefile(*pfd
, buf
, n
) == -1) {
1060 return map_nt_error_from_unix(errno
);
1062 return NT_STATUS_OK
;
1065 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1067 TALLOC_CTX
*ctx
= talloc_tos();
1070 bool newhandle
= false;
1071 struct timespec tp_start
;
1077 struct cli_state
*targetcli
= NULL
;
1078 char *targetname
= NULL
;
1082 lname
= talloc_strdup(ctx
, lname_in
);
1091 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
,
1093 if (!NT_STATUS_IS_OK(status
)) {
1094 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1098 clock_gettime_mono(&tp_start
);
1100 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1101 if (!NT_STATUS_IS_OK(status
)) {
1102 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1107 if(!strcmp(lname
,"-")) {
1108 handle
= fileno(stdout
);
1111 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
1113 start
= lseek(handle
, 0, SEEK_END
);
1115 d_printf("Error seeking local file\n");
1120 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1125 d_printf("Error opening local file %s\n",lname
);
1130 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1132 if (!NT_STATUS_IS_OK(status
)) {
1133 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1135 if(!NT_STATUS_IS_OK(status
)) {
1136 d_printf("getattrib: %s\n", nt_errstr(status
));
1141 DEBUG(1,("getting file %s of size %.0f as %s ",
1142 rname
, (double)size
, lname
));
1144 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1145 writefile_sink
, (void *)&handle
, &nread
);
1146 if (!NT_STATUS_IS_OK(status
)) {
1147 d_fprintf(stderr
, "parallel_read returned %s\n",
1149 cli_close(targetcli
, fnum
);
1153 status
= cli_close(targetcli
, fnum
);
1154 if (!NT_STATUS_IS_OK(status
)) {
1155 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1163 if (archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
1164 cli_setatr(cli
, rname
, attr
& ~(uint16
)FILE_ATTRIBUTE_ARCHIVE
, 0);
1168 struct timespec tp_end
;
1171 clock_gettime_mono(&tp_end
);
1172 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1173 get_total_time_ms
+= this_time
;
1174 get_total_size
+= nread
;
1176 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1177 nread
/ (1.024*this_time
+ 1.0e-4),
1178 get_total_size
/ (1.024*get_total_time_ms
)));
1181 TALLOC_FREE(targetname
);
1185 /****************************************************************************
1187 ****************************************************************************/
1189 static int cmd_get(void)
1191 TALLOC_CTX
*ctx
= talloc_tos();
1196 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1201 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1202 d_printf("get <filename> [localname]\n");
1205 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1209 rname
= clean_name(ctx
, rname
);
1214 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1219 return do_get(rname
, lname
, false);
1222 /****************************************************************************
1223 Do an mget operation on one file.
1224 ****************************************************************************/
1226 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1229 TALLOC_CTX
*ctx
= talloc_tos();
1230 NTSTATUS status
= NT_STATUS_OK
;
1233 char *saved_curdir
= NULL
;
1234 char *mget_mask
= NULL
;
1235 char *new_cd
= NULL
;
1238 return NT_STATUS_OK
;
1241 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1242 return NT_STATUS_OK
;
1245 d_printf("mget aborted\n");
1246 return NT_STATUS_UNSUCCESSFUL
;
1249 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1250 if (asprintf(&quest
,
1251 "Get directory %s? ",finfo
->name
) < 0) {
1252 return NT_STATUS_NO_MEMORY
;
1255 if (asprintf(&quest
,
1256 "Get file %s? ",finfo
->name
) < 0) {
1257 return NT_STATUS_NO_MEMORY
;
1261 if (prompt
&& !yesno(quest
)) {
1263 return NT_STATUS_OK
;
1267 if (!(finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
)) {
1268 rname
= talloc_asprintf(ctx
,
1270 client_get_cur_dir(),
1273 return NT_STATUS_NO_MEMORY
;
1275 do_get(rname
, finfo
->name
, false);
1277 return NT_STATUS_OK
;
1280 /* handle directories */
1281 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1282 if (!saved_curdir
) {
1283 return NT_STATUS_NO_MEMORY
;
1286 new_cd
= talloc_asprintf(ctx
,
1288 client_get_cur_dir(),
1292 return NT_STATUS_NO_MEMORY
;
1294 client_set_cur_dir(new_cd
);
1296 string_replace(finfo
->name
,'\\','/');
1298 strlower_m(finfo
->name
);
1301 if (!directory_exist(finfo
->name
) &&
1302 mkdir(finfo
->name
,0777) != 0) {
1303 d_printf("failed to create directory %s\n",finfo
->name
);
1304 client_set_cur_dir(saved_curdir
);
1305 return map_nt_error_from_unix(errno
);
1308 if (chdir(finfo
->name
) != 0) {
1309 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1310 client_set_cur_dir(saved_curdir
);
1311 return map_nt_error_from_unix(errno
);
1314 mget_mask
= talloc_asprintf(ctx
,
1316 client_get_cur_dir());
1319 return NT_STATUS_NO_MEMORY
;
1322 status
= do_list(mget_mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,do_mget
,false, true);
1323 if (!NT_STATUS_IS_OK(status
)) {
1327 if (chdir("..") == -1) {
1328 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1330 return map_nt_error_from_unix(errno
);
1332 client_set_cur_dir(saved_curdir
);
1333 TALLOC_FREE(mget_mask
);
1334 TALLOC_FREE(saved_curdir
);
1335 TALLOC_FREE(new_cd
);
1336 return NT_STATUS_OK
;
1339 /****************************************************************************
1340 View the file using the pager.
1341 ****************************************************************************/
1343 static int cmd_more(void)
1345 TALLOC_CTX
*ctx
= talloc_tos();
1349 char *pager_cmd
= NULL
;
1354 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1359 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1363 fd
= mkstemp(lname
);
1365 d_printf("failed to create temporary file for more\n");
1370 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1371 d_printf("more <filename>\n");
1375 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1379 rname
= clean_name(ctx
,rname
);
1384 rc
= do_get(rname
, lname
, false);
1386 pager
=getenv("PAGER");
1388 pager_cmd
= talloc_asprintf(ctx
,
1390 (pager
? pager
:PAGER
),
1395 if (system(pager_cmd
) == -1) {
1396 d_printf("system command '%s' returned -1\n",
1404 /****************************************************************************
1406 ****************************************************************************/
1408 static int cmd_mget(void)
1410 TALLOC_CTX
*ctx
= talloc_tos();
1411 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1412 char *mget_mask
= NULL
;
1414 NTSTATUS status
= NT_STATUS_OK
;
1417 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1422 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1424 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1428 if (*buf
== CLI_DIRSEP_CHAR
) {
1429 mget_mask
= talloc_strdup(ctx
, buf
);
1431 mget_mask
= talloc_asprintf_append(mget_mask
,
1437 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1438 if (!NT_STATUS_IS_OK(status
)) {
1443 if (mget_mask
== NULL
) {
1444 d_printf("nothing to mget\n");
1449 mget_mask
= talloc_asprintf(ctx
,
1451 client_get_cur_dir());
1455 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1456 if (!NT_STATUS_IS_OK(status
)) {
1464 /****************************************************************************
1465 Make a directory of name "name".
1466 ****************************************************************************/
1468 static bool do_mkdir(const char *name
)
1470 TALLOC_CTX
*ctx
= talloc_tos();
1471 struct cli_state
*targetcli
;
1472 char *targetname
= NULL
;
1475 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
1477 if (!NT_STATUS_IS_OK(status
)) {
1478 d_printf("mkdir %s: %s\n", name
, nt_errstr(status
));
1482 status
= cli_mkdir(targetcli
, targetname
);
1483 if (!NT_STATUS_IS_OK(status
)) {
1484 d_printf("%s making remote directory %s\n",
1485 nt_errstr(status
),name
);
1492 /****************************************************************************
1493 Show 8.3 name of a file.
1494 ****************************************************************************/
1496 static bool do_altname(const char *name
)
1501 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1502 if (!NT_STATUS_IS_OK(status
)) {
1503 d_printf("%s getting alt name for %s\n",
1504 nt_errstr(status
),name
);
1507 d_printf("%s\n", altname
);
1512 /****************************************************************************
1514 ****************************************************************************/
1516 static int cmd_quit(void)
1524 /****************************************************************************
1526 ****************************************************************************/
1528 static int cmd_mkdir(void)
1530 TALLOC_CTX
*ctx
= talloc_tos();
1535 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1540 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1542 d_printf("mkdir <dirname>\n");
1546 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1554 struct cli_state
*targetcli
;
1555 char *targetname
= NULL
;
1559 ddir2
= talloc_strdup(ctx
, "");
1564 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
1565 &targetcli
, &targetname
);
1566 if (!NT_STATUS_IS_OK(status
)) {
1570 ddir
= talloc_strdup(ctx
, targetname
);
1574 trim_char(ddir
,'.','\0');
1575 p
= strtok_r(ddir
, "/\\", &saveptr
);
1577 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1581 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1584 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1588 p
= strtok_r(NULL
, "/\\", &saveptr
);
1597 /****************************************************************************
1599 ****************************************************************************/
1601 static int cmd_altname(void)
1603 TALLOC_CTX
*ctx
= talloc_tos();
1607 name
= talloc_strdup(ctx
, client_get_cur_dir());
1612 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1613 d_printf("altname <file>\n");
1616 name
= talloc_asprintf_append(name
, "%s", buf
);
1624 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1626 char *attrs
= talloc_zero_array(mem_ctx
, char, 17);
1629 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1630 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1633 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1636 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1639 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1642 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1645 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1648 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1651 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1654 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1657 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1660 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1663 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1666 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1673 /****************************************************************************
1674 Show all info we can get
1675 ****************************************************************************/
1677 static int do_allinfo(const char *name
)
1680 struct timespec b_time
, a_time
, m_time
, c_time
;
1686 unsigned int num_streams
;
1687 struct stream_struct
*streams
;
1693 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1694 if (!NT_STATUS_IS_OK(status
)) {
1695 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1699 d_printf("altname: %s\n", altname
);
1701 status
= cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1702 &size
, &mode
, &ino
);
1703 if (!NT_STATUS_IS_OK(status
)) {
1704 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1709 unix_timespec_to_nt_time(&tmp
, b_time
);
1710 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1712 unix_timespec_to_nt_time(&tmp
, a_time
);
1713 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1715 unix_timespec_to_nt_time(&tmp
, m_time
);
1716 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1718 unix_timespec_to_nt_time(&tmp
, c_time
);
1719 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1721 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1723 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1725 if (!NT_STATUS_IS_OK(status
)) {
1726 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1731 for (i
=0; i
<num_streams
; i
++) {
1732 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1733 (unsigned long long)streams
[i
].size
);
1736 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1737 char *subst
, *print
;
1740 status
= cli_readlink(cli
, name
, talloc_tos(), &subst
, &print
,
1742 if (!NT_STATUS_IS_OK(status
)) {
1743 d_fprintf(stderr
, "cli_readlink returned %s\n",
1746 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1747 subst
, print
, flags
);
1753 status
= cli_ntcreate(cli
, name
, 0,
1754 CREATE_ACCESS_READ
, 0,
1755 FILE_SHARE_READ
|FILE_SHARE_WRITE
1757 FILE_OPEN
, 0x0, 0x0, &fnum
);
1758 if (!NT_STATUS_IS_OK(status
)) {
1760 * Ignore failure, it does not hurt if we can't list
1765 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1766 true, &snapshots
, &num_snapshots
);
1767 if (!NT_STATUS_IS_OK(status
)) {
1768 cli_close(cli
, fnum
);
1772 for (i
=0; i
<num_snapshots
; i
++) {
1775 d_printf("%s\n", snapshots
[i
]);
1776 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1777 snapshots
[i
], name
);
1778 status
= cli_qpathinfo2(cli
, snap_name
, &b_time
, &a_time
,
1779 &m_time
, &c_time
, &size
,
1781 if (!NT_STATUS_IS_OK(status
)) {
1782 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1783 snap_name
, nt_errstr(status
));
1784 TALLOC_FREE(snap_name
);
1787 unix_timespec_to_nt_time(&tmp
, b_time
);
1788 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1789 unix_timespec_to_nt_time(&tmp
, a_time
);
1790 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1791 unix_timespec_to_nt_time(&tmp
, m_time
);
1792 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1793 unix_timespec_to_nt_time(&tmp
, c_time
);
1794 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1795 d_printf("size: %d\n", (int)size
);
1798 TALLOC_FREE(snapshots
);
1803 /****************************************************************************
1804 Show all info we can get
1805 ****************************************************************************/
1807 static int cmd_allinfo(void)
1809 TALLOC_CTX
*ctx
= talloc_tos();
1813 name
= talloc_strdup(ctx
, client_get_cur_dir());
1818 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1819 d_printf("allinfo <file>\n");
1822 name
= talloc_asprintf_append(name
, "%s", buf
);
1832 /****************************************************************************
1834 ****************************************************************************/
1836 static int do_put(const char *rname
, const char *lname
, bool reput
)
1838 TALLOC_CTX
*ctx
= talloc_tos();
1843 struct timespec tp_start
;
1844 struct cli_state
*targetcli
;
1845 char *targetname
= NULL
;
1846 struct push_state state
;
1849 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
,
1850 &targetcli
, &targetname
);
1851 if (!NT_STATUS_IS_OK(status
)) {
1852 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1856 clock_gettime_mono(&tp_start
);
1859 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1860 if (NT_STATUS_IS_OK(status
)) {
1861 if (!NT_STATUS_IS_OK(status
= cli_qfileinfo_basic(
1862 targetcli
, fnum
, NULL
,
1864 NULL
, NULL
, NULL
)) &&
1865 !NT_STATUS_IS_OK(status
= cli_getattrE(
1866 targetcli
, fnum
, NULL
,
1869 d_printf("getattrib: %s\n", nt_errstr(status
));
1874 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1877 if (!NT_STATUS_IS_OK(status
)) {
1878 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1883 /* allow files to be piped into smbclient
1886 Note that in this case this function will exit(0) rather
1888 if (!strcmp(lname
, "-")) {
1890 /* size of file is not known */
1892 f
= x_fopen(lname
,O_RDONLY
, 0);
1894 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1895 d_printf("Error seeking local file\n");
1903 d_printf("Error opening local file %s\n",lname
);
1907 DEBUG(1,("putting file %s as %s ",lname
,
1910 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1915 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1917 if (!NT_STATUS_IS_OK(status
)) {
1918 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1922 status
= cli_close(targetcli
, fnum
);
1923 if (!NT_STATUS_IS_OK(status
)) {
1924 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1937 struct timespec tp_end
;
1940 clock_gettime_mono(&tp_end
);
1941 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1942 put_total_time_ms
+= this_time
;
1943 put_total_size
+= state
.nread
;
1945 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1946 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1947 put_total_size
/ (1.024*put_total_time_ms
)));
1958 /****************************************************************************
1960 ****************************************************************************/
1962 static int cmd_put(void)
1964 TALLOC_CTX
*ctx
= talloc_tos();
1969 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1974 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1975 d_printf("put <filename>\n");
1979 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1980 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1982 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1988 rname
= clean_name(ctx
, rname
);
1995 /* allow '-' to represent stdin
1996 jdblair, 24.jun.98 */
1997 if (!file_exist_stat(lname
, &st
, false) &&
1998 (strcmp(lname
,"-"))) {
1999 d_printf("%s does not exist\n",lname
);
2004 return do_put(rname
, lname
, false);
2007 /*************************************
2008 File list structure.
2009 *************************************/
2011 static struct file_list
{
2012 struct file_list
*prev
, *next
;
2017 /****************************************************************************
2018 Free a file_list structure.
2019 ****************************************************************************/
2021 static void free_file_list (struct file_list
*l_head
)
2023 struct file_list
*list
, *next
;
2025 for (list
= l_head
; list
; list
= next
) {
2027 DLIST_REMOVE(l_head
, list
);
2028 SAFE_FREE(list
->file_path
);
2033 /****************************************************************************
2034 Seek in a directory/file list until you get something that doesn't start with
2036 ****************************************************************************/
2038 static bool seek_list(struct file_list
*list
, char *name
)
2041 trim_string(list
->file_path
,"./","\n");
2042 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2051 /****************************************************************************
2052 Set the file selection mask.
2053 ****************************************************************************/
2055 static int cmd_select(void)
2057 TALLOC_CTX
*ctx
= talloc_tos();
2058 char *new_fs
= NULL
;
2059 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2062 client_set_fileselection(new_fs
);
2064 client_set_fileselection("");
2069 /****************************************************************************
2070 Recursive file matching function act as find
2071 match must be always set to true when calling this function
2072 ****************************************************************************/
2074 static int file_find(struct file_list
**list
, const char *directory
,
2075 const char *expression
, bool match
)
2078 struct file_list
*entry
;
2079 struct stat statbuf
;
2085 dir
= opendir(directory
);
2089 while ((dname
= readdirname(dir
))) {
2090 if (!strcmp("..", dname
))
2092 if (!strcmp(".", dname
))
2095 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2100 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2102 ret
= stat(path
, &statbuf
);
2104 if (S_ISDIR(statbuf
.st_mode
)) {
2106 ret
= file_find(list
, path
, expression
, false);
2109 d_printf("file_find: cannot stat file %s\n", path
);
2118 entry
= SMB_MALLOC_P(struct file_list
);
2120 d_printf("Out of memory in file_find\n");
2124 entry
->file_path
= path
;
2125 entry
->isdir
= isdir
;
2126 DLIST_ADD(*list
, entry
);
2136 /****************************************************************************
2138 ****************************************************************************/
2140 static int cmd_mput(void)
2142 TALLOC_CTX
*ctx
= talloc_tos();
2145 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2147 struct file_list
*temp_list
;
2148 char *quest
, *lname
, *rname
;
2152 ret
= file_find(&file_list
, ".", p
, true);
2154 free_file_list(file_list
);
2162 for (temp_list
= file_list
; temp_list
;
2163 temp_list
= temp_list
->next
) {
2166 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2169 trim_string(lname
, "./", "/");
2171 /* check if it's a directory */
2172 if (temp_list
->isdir
) {
2173 /* if (!recurse) continue; */
2176 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2179 if (prompt
&& !yesno(quest
)) { /* No */
2180 /* Skip the directory */
2181 lname
[strlen(lname
)-1] = '/';
2182 if (!seek_list(temp_list
, lname
))
2186 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2189 normalize_name(rname
);
2190 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2192 DEBUG (0, ("Unable to make dir, skipping..."));
2193 /* Skip the directory */
2194 lname
[strlen(lname
)-1] = '/';
2195 if (!seek_list(temp_list
, lname
)) {
2203 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2206 if (prompt
&& !yesno(quest
)) {
2213 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2218 normalize_name(rname
);
2220 do_put(rname
, lname
, false);
2222 free_file_list(file_list
);
2231 /****************************************************************************
2233 ****************************************************************************/
2235 static int do_cancel(int job
)
2237 if (cli_printjob_del(cli
, job
)) {
2238 d_printf("Job %d cancelled\n",job
);
2241 NTSTATUS status
= cli_nt_error(cli
);
2242 d_printf("Error cancelling job %d : %s\n",
2243 job
, nt_errstr(status
));
2248 /****************************************************************************
2250 ****************************************************************************/
2252 static int cmd_cancel(void)
2254 TALLOC_CTX
*ctx
= talloc_tos();
2258 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2259 d_printf("cancel <jobid> ...\n");
2265 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2270 /****************************************************************************
2272 ****************************************************************************/
2274 static int cmd_print(void)
2276 TALLOC_CTX
*ctx
= talloc_tos();
2281 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2282 d_printf("print <filename>\n");
2286 rname
= talloc_strdup(ctx
, lname
);
2290 p
= strrchr_m(rname
,'/');
2292 rname
= talloc_asprintf(ctx
,
2297 if (strequal(lname
,"-")) {
2298 rname
= talloc_asprintf(ctx
,
2306 return do_put(rname
, lname
, false);
2309 /****************************************************************************
2310 Show a print queue entry.
2311 ****************************************************************************/
2313 static void queue_fn(struct print_job_info
*p
)
2315 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2318 /****************************************************************************
2320 ****************************************************************************/
2322 static int cmd_queue(void)
2324 cli_print_queue(cli
, queue_fn
);
2328 /****************************************************************************
2330 ****************************************************************************/
2332 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2335 TALLOC_CTX
*ctx
= talloc_tos();
2339 mask
= talloc_asprintf(ctx
,
2345 return NT_STATUS_NO_MEMORY
;
2348 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
2350 return NT_STATUS_OK
;
2353 status
= cli_unlink(cli_state
, mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2354 if (!NT_STATUS_IS_OK(status
)) {
2355 d_printf("%s deleting remote file %s\n",
2356 nt_errstr(status
), mask
);
2362 /****************************************************************************
2364 ****************************************************************************/
2366 static int cmd_del(void)
2368 TALLOC_CTX
*ctx
= talloc_tos();
2371 NTSTATUS status
= NT_STATUS_OK
;
2372 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
2375 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
2378 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2382 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2383 d_printf("del <filename>\n");
2386 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2391 status
= do_list(mask
,attribute
,do_del
,false,false);
2392 if (!NT_STATUS_IS_OK(status
)) {
2398 /****************************************************************************
2399 Wildcard delete some files.
2400 ****************************************************************************/
2402 static int cmd_wdel(void)
2404 TALLOC_CTX
*ctx
= talloc_tos();
2408 struct cli_state
*targetcli
;
2409 char *targetname
= NULL
;
2412 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2413 d_printf("wdel 0x<attrib> <wcard>\n");
2417 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2419 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2420 d_printf("wdel 0x<attrib> <wcard>\n");
2424 mask
= talloc_asprintf(ctx
, "%s%s",
2425 client_get_cur_dir(),
2431 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2433 if (!NT_STATUS_IS_OK(status
)) {
2434 d_printf("cmd_wdel %s: %s\n", mask
, nt_errstr(status
));
2438 status
= cli_unlink(targetcli
, targetname
, attribute
);
2439 if (!NT_STATUS_IS_OK(status
)) {
2440 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2446 /****************************************************************************
2447 ****************************************************************************/
2449 static int cmd_open(void)
2451 TALLOC_CTX
*ctx
= talloc_tos();
2454 char *targetname
= NULL
;
2455 struct cli_state
*targetcli
;
2456 uint16_t fnum
= (uint16_t)-1;
2459 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2460 d_printf("open <filename>\n");
2463 mask
= talloc_asprintf(ctx
,
2465 client_get_cur_dir(),
2471 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2473 if (!NT_STATUS_IS_OK(status
)) {
2474 d_printf("open %s: %s\n", mask
, nt_errstr(status
));
2478 status
= cli_ntcreate(targetcli
, targetname
, 0,
2479 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2480 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2482 if (!NT_STATUS_IS_OK(status
)) {
2483 status
= cli_ntcreate(targetcli
, targetname
, 0,
2485 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2487 if (NT_STATUS_IS_OK(status
)) {
2488 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2490 d_printf("Failed to open file %s. %s\n",
2491 targetname
, nt_errstr(status
));
2494 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2499 static int cmd_posix_encrypt(void)
2501 TALLOC_CTX
*ctx
= talloc_tos();
2502 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2504 if (cli
->use_kerberos
) {
2505 status
= cli_gss_smb_encryption_start(cli
);
2507 char *domain
= NULL
;
2509 char *password
= NULL
;
2511 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2512 d_printf("posix_encrypt domain user password\n");
2516 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2517 d_printf("posix_encrypt domain user password\n");
2521 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2522 d_printf("posix_encrypt domain user password\n");
2526 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2532 if (!NT_STATUS_IS_OK(status
)) {
2533 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2535 d_printf("encryption on\n");
2542 /****************************************************************************
2543 ****************************************************************************/
2545 static int cmd_posix_open(void)
2547 TALLOC_CTX
*ctx
= talloc_tos();
2550 char *targetname
= NULL
;
2551 struct cli_state
*targetcli
;
2556 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2557 d_printf("posix_open <filename> 0<mode>\n");
2560 mask
= talloc_asprintf(ctx
,
2562 client_get_cur_dir(),
2568 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2569 d_printf("posix_open <filename> 0<mode>\n");
2572 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2574 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2576 if (!NT_STATUS_IS_OK(status
)) {
2577 d_printf("posix_open %s: %s\n", mask
, nt_errstr(status
));
2581 status
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
,
2583 if (!NT_STATUS_IS_OK(status
)) {
2584 status
= cli_posix_open(targetcli
, targetname
,
2585 O_CREAT
|O_RDONLY
, mode
, &fnum
);
2586 if (!NT_STATUS_IS_OK(status
)) {
2587 d_printf("Failed to open file %s. %s\n", targetname
,
2590 d_printf("posix_open file %s: for readonly fnum %d\n",
2594 d_printf("posix_open file %s: for read/write fnum %d\n",
2601 static int cmd_posix_mkdir(void)
2603 TALLOC_CTX
*ctx
= talloc_tos();
2606 char *targetname
= NULL
;
2607 struct cli_state
*targetcli
;
2611 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2612 d_printf("posix_mkdir <filename> 0<mode>\n");
2615 mask
= talloc_asprintf(ctx
,
2617 client_get_cur_dir(),
2623 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2624 d_printf("posix_mkdir <filename> 0<mode>\n");
2627 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2629 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2631 if (!NT_STATUS_IS_OK(status
)) {
2632 d_printf("posix_mkdir %s: %s\n", mask
, nt_errstr(status
));
2636 status
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2637 if (!NT_STATUS_IS_OK(status
)) {
2638 d_printf("Failed to open file %s. %s\n",
2639 targetname
, nt_errstr(status
));
2641 d_printf("posix_mkdir created directory %s\n", targetname
);
2646 static int cmd_posix_unlink(void)
2648 TALLOC_CTX
*ctx
= talloc_tos();
2651 char *targetname
= NULL
;
2652 struct cli_state
*targetcli
;
2655 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2656 d_printf("posix_unlink <filename>\n");
2659 mask
= talloc_asprintf(ctx
,
2661 client_get_cur_dir(),
2667 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2669 if (!NT_STATUS_IS_OK(status
)) {
2670 d_printf("posix_unlink %s: %s\n", mask
, nt_errstr(status
));
2674 status
= cli_posix_unlink(targetcli
, targetname
);
2675 if (!NT_STATUS_IS_OK(status
)) {
2676 d_printf("Failed to unlink file %s. %s\n",
2677 targetname
, nt_errstr(status
));
2679 d_printf("posix_unlink deleted file %s\n", targetname
);
2685 static int cmd_posix_rmdir(void)
2687 TALLOC_CTX
*ctx
= talloc_tos();
2690 char *targetname
= NULL
;
2691 struct cli_state
*targetcli
;
2694 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2695 d_printf("posix_rmdir <filename>\n");
2698 mask
= talloc_asprintf(ctx
,
2700 client_get_cur_dir(),
2706 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2708 if (!NT_STATUS_IS_OK(status
)) {
2709 d_printf("posix_rmdir %s: %s\n", mask
, nt_errstr(status
));
2713 status
= cli_posix_rmdir(targetcli
, targetname
);
2714 if (!NT_STATUS_IS_OK(status
)) {
2715 d_printf("Failed to unlink directory %s. %s\n",
2716 targetname
, nt_errstr(status
));
2718 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2724 static int cmd_close(void)
2726 TALLOC_CTX
*ctx
= talloc_tos();
2731 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2732 d_printf("close <fnum>\n");
2737 /* We really should use the targetcli here.... */
2738 status
= cli_close(cli
, fnum
);
2739 if (!NT_STATUS_IS_OK(status
)) {
2740 d_printf("close %d: %s\n", fnum
, nt_errstr(status
));
2746 static int cmd_posix(void)
2748 TALLOC_CTX
*ctx
= talloc_tos();
2749 uint16 major
, minor
;
2750 uint32 caplow
, caphigh
;
2754 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2755 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2759 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2761 if (!NT_STATUS_IS_OK(status
)) {
2762 d_printf("Can't get UNIX CIFS extensions version from "
2763 "server: %s\n", nt_errstr(status
));
2767 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2769 caps
= talloc_strdup(ctx
, "");
2773 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2774 caps
= talloc_asprintf_append(caps
, "locks ");
2779 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2780 caps
= talloc_asprintf_append(caps
, "acls ");
2785 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2786 caps
= talloc_asprintf_append(caps
, "eas ");
2791 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2792 caps
= talloc_asprintf_append(caps
, "pathnames ");
2797 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2798 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2803 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2804 caps
= talloc_asprintf_append(caps
, "large_read ");
2809 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2810 caps
= talloc_asprintf_append(caps
, "large_write ");
2815 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2816 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2821 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2822 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2828 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2829 caps
[strlen(caps
)-1] = '\0';
2832 d_printf("Server supports CIFS capabilities %s\n", caps
);
2834 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2836 if (!NT_STATUS_IS_OK(status
)) {
2837 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2842 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2843 CLI_DIRSEP_CHAR
= '/';
2844 *CLI_DIRSEP_STR
= '/';
2845 client_set_cur_dir(CLI_DIRSEP_STR
);
2851 static int cmd_lock(void)
2853 TALLOC_CTX
*ctx
= talloc_tos();
2855 uint64_t start
, len
;
2856 enum brl_type lock_type
;
2860 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2861 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2866 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2867 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2871 if (*buf
== 'r' || *buf
== 'R') {
2872 lock_type
= READ_LOCK
;
2873 } else if (*buf
== 'w' || *buf
== 'W') {
2874 lock_type
= WRITE_LOCK
;
2876 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2880 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2881 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2885 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2887 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2888 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2892 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2894 status
= cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
);
2895 if (!NT_STATUS_IS_OK(status
)) {
2896 d_printf("lock failed %d: %s\n", fnum
, nt_errstr(status
));
2902 static int cmd_unlock(void)
2904 TALLOC_CTX
*ctx
= talloc_tos();
2906 uint64_t start
, len
;
2910 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2911 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2916 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2917 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2921 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2923 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2924 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2928 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2930 status
= cli_posix_unlock(cli
, fnum
, start
, len
);
2931 if (!NT_STATUS_IS_OK(status
)) {
2932 d_printf("unlock failed %d: %s\n", fnum
, nt_errstr(status
));
2939 /****************************************************************************
2941 ****************************************************************************/
2943 static int cmd_rmdir(void)
2945 TALLOC_CTX
*ctx
= talloc_tos();
2948 char *targetname
= NULL
;
2949 struct cli_state
*targetcli
;
2952 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2953 d_printf("rmdir <dirname>\n");
2956 mask
= talloc_asprintf(ctx
,
2958 client_get_cur_dir(),
2964 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2966 if (!NT_STATUS_IS_OK(status
)) {
2967 d_printf("rmdir %s: %s\n", mask
, nt_errstr(status
));
2971 status
= cli_rmdir(targetcli
, targetname
);
2972 if (!NT_STATUS_IS_OK(status
)) {
2973 d_printf("%s removing remote directory file %s\n",
2974 nt_errstr(status
), mask
);
2980 /****************************************************************************
2982 ****************************************************************************/
2984 static int cmd_link(void)
2986 TALLOC_CTX
*ctx
= talloc_tos();
2987 char *oldname
= NULL
;
2988 char *newname
= NULL
;
2991 char *targetname
= NULL
;
2992 struct cli_state
*targetcli
;
2995 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2996 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2997 d_printf("link <oldname> <newname>\n");
3000 oldname
= talloc_asprintf(ctx
,
3002 client_get_cur_dir(),
3007 newname
= talloc_asprintf(ctx
,
3009 client_get_cur_dir(),
3015 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
,
3017 if (!NT_STATUS_IS_OK(status
)) {
3018 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3022 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3023 d_printf("Server doesn't support UNIX CIFS calls.\n");
3027 status
= cli_posix_hardlink(targetcli
, targetname
, newname
);
3028 if (!NT_STATUS_IS_OK(status
)) {
3029 d_printf("%s linking files (%s -> %s)\n",
3030 nt_errstr(status
), newname
, oldname
);
3036 /****************************************************************************
3038 ****************************************************************************/
3040 static int cmd_readlink(void)
3042 TALLOC_CTX
*ctx
= talloc_tos();
3045 char *targetname
= NULL
;
3046 char linkname
[PATH_MAX
+1];
3047 struct cli_state
*targetcli
;
3050 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3051 d_printf("readlink <name>\n");
3054 name
= talloc_asprintf(ctx
,
3056 client_get_cur_dir(),
3062 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
3064 if (!NT_STATUS_IS_OK(status
)) {
3065 d_printf("readlink %s: %s\n", name
, nt_errstr(status
));
3069 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3070 d_printf("Server doesn't support UNIX CIFS calls.\n");
3074 status
= cli_posix_readlink(targetcli
, name
, linkname
, PATH_MAX
+1);
3075 if (!NT_STATUS_IS_OK(status
)) {
3076 d_printf("%s readlink on file %s\n",
3077 nt_errstr(status
), name
);
3081 d_printf("%s -> %s\n", name
, linkname
);
3087 /****************************************************************************
3089 ****************************************************************************/
3091 static int cmd_symlink(void)
3093 TALLOC_CTX
*ctx
= talloc_tos();
3094 char *oldname
= NULL
;
3095 char *newname
= NULL
;
3098 struct cli_state
*newcli
;
3101 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3102 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3103 d_printf("symlink <oldname> <newname>\n");
3106 /* Oldname (link target) must be an untouched blob. */
3109 if (SERVER_HAS_UNIX_CIFS(cli
)) {
3110 newname
= talloc_asprintf(ctx
, "%s%s", client_get_cur_dir(),
3115 /* New name must be present in share namespace. */
3116 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, newname
,
3118 if (!NT_STATUS_IS_OK(status
)) {
3119 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3122 status
= cli_posix_symlink(newcli
, oldname
, newname
);
3124 status
= cli_symlink(
3126 buf2
[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE
);
3129 if (!NT_STATUS_IS_OK(status
)) {
3130 d_printf("%s symlinking files (%s -> %s)\n",
3131 nt_errstr(status
), oldname
, newname
);
3138 /****************************************************************************
3140 ****************************************************************************/
3142 static int cmd_chmod(void)
3144 TALLOC_CTX
*ctx
= talloc_tos();
3148 char *targetname
= NULL
;
3149 struct cli_state
*targetcli
;
3153 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3154 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3155 d_printf("chmod mode file\n");
3158 src
= talloc_asprintf(ctx
,
3160 client_get_cur_dir(),
3166 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3168 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3170 if (!NT_STATUS_IS_OK(status
)) {
3171 d_printf("chmod %s: %s\n", src
, nt_errstr(status
));
3175 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3176 d_printf("Server doesn't support UNIX CIFS calls.\n");
3180 status
= cli_posix_chmod(targetcli
, targetname
, mode
);
3181 if (!NT_STATUS_IS_OK(status
)) {
3182 d_printf("%s chmod file %s 0%o\n",
3183 nt_errstr(status
), src
, (unsigned int)mode
);
3190 static const char *filetype_to_str(mode_t mode
)
3192 if (S_ISREG(mode
)) {
3193 return "regular file";
3194 } else if (S_ISDIR(mode
)) {
3198 if (S_ISCHR(mode
)) {
3199 return "character device";
3203 if (S_ISBLK(mode
)) {
3204 return "block device";
3208 if (S_ISFIFO(mode
)) {
3213 if (S_ISLNK(mode
)) {
3214 return "symbolic link";
3218 if (S_ISSOCK(mode
)) {
3225 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3234 static char *unix_mode_to_str(char *s
, mode_t m
)
3237 const char *str
= filetype_to_str(m
);
3253 *p
++ = str
[1] == 'y' ? 'l' : 's';
3260 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3261 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3262 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3263 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3264 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3265 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3266 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3267 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3268 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3273 /****************************************************************************
3274 Utility function for UNIX getfacl.
3275 ****************************************************************************/
3277 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3279 fstrcpy(permstr
, "---");
3280 if (perms
& SMB_POSIX_ACL_READ
) {
3283 if (perms
& SMB_POSIX_ACL_WRITE
) {
3286 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3292 /****************************************************************************
3294 ****************************************************************************/
3296 static int cmd_getfacl(void)
3298 TALLOC_CTX
*ctx
= talloc_tos();
3301 char *targetname
= NULL
;
3302 struct cli_state
*targetcli
;
3303 uint16 major
, minor
;
3304 uint32 caplow
, caphigh
;
3305 char *retbuf
= NULL
;
3307 SMB_STRUCT_STAT sbuf
;
3308 uint16 num_file_acls
= 0;
3309 uint16 num_dir_acls
= 0;
3313 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3314 d_printf("getfacl filename\n");
3317 src
= talloc_asprintf(ctx
,
3319 client_get_cur_dir(),
3325 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3327 if (!NT_STATUS_IS_OK(status
)) {
3328 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3332 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3333 d_printf("Server doesn't support UNIX CIFS calls.\n");
3337 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3339 if (!NT_STATUS_IS_OK(status
)) {
3340 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3345 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3346 d_printf("This server supports UNIX extensions "
3347 "but doesn't support POSIX ACLs.\n");
3351 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3352 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3353 d_printf("%s getfacl doing a stat on file %s\n",
3354 nt_errstr(status
), src
);
3358 status
= cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
);
3359 if (!NT_STATUS_IS_OK(status
)) {
3360 d_printf("%s getfacl file %s\n",
3361 nt_errstr(status
), src
);
3365 /* ToDo : Print out the ACL values. */
3366 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3367 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3368 src
, (unsigned int)CVAL(retbuf
,0) );
3372 num_file_acls
= SVAL(retbuf
,2);
3373 num_dir_acls
= SVAL(retbuf
,4);
3374 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3375 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3377 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3378 (unsigned int)rb_size
);
3382 d_printf("# file: %s\n", src
);
3383 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3385 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3386 d_printf("No acls found.\n");
3389 for (i
= 0; i
< num_file_acls
; i
++) {
3392 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3393 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3396 case SMB_POSIX_ACL_USER_OBJ
:
3399 case SMB_POSIX_ACL_USER
:
3400 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3401 d_printf("user:%u:", uorg
);
3403 case SMB_POSIX_ACL_GROUP_OBJ
:
3404 d_printf("group::");
3406 case SMB_POSIX_ACL_GROUP
:
3407 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3408 d_printf("group:%u:", uorg
);
3410 case SMB_POSIX_ACL_MASK
:
3413 case SMB_POSIX_ACL_OTHER
:
3414 d_printf("other::");
3417 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3418 src
, (unsigned int)tagtype
);
3423 d_printf("%s\n", perms_to_string(permstring
, perms
));
3426 for (i
= 0; i
< num_dir_acls
; i
++) {
3429 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3430 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3433 case SMB_POSIX_ACL_USER_OBJ
:
3434 d_printf("default:user::");
3436 case SMB_POSIX_ACL_USER
:
3437 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3438 d_printf("default:user:%u:", uorg
);
3440 case SMB_POSIX_ACL_GROUP_OBJ
:
3441 d_printf("default:group::");
3443 case SMB_POSIX_ACL_GROUP
:
3444 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3445 d_printf("default:group:%u:", uorg
);
3447 case SMB_POSIX_ACL_MASK
:
3448 d_printf("default:mask::");
3450 case SMB_POSIX_ACL_OTHER
:
3451 d_printf("default:other::");
3454 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3455 src
, (unsigned int)tagtype
);
3460 d_printf("%s\n", perms_to_string(permstring
, perms
));
3466 /****************************************************************************
3467 Get the EA list of a file
3468 ****************************************************************************/
3470 static int cmd_geteas(void)
3472 TALLOC_CTX
*ctx
= talloc_tos();
3475 char *targetname
= NULL
;
3476 struct cli_state
*targetcli
;
3479 struct ea_struct
*eas
;
3481 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3482 d_printf("geteas filename\n");
3485 src
= talloc_asprintf(ctx
,
3487 client_get_cur_dir(),
3493 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3495 if (!NT_STATUS_IS_OK(status
)) {
3496 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3500 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3502 if (!NT_STATUS_IS_OK(status
)) {
3503 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3507 for (i
=0; i
<num_eas
; i
++) {
3508 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3509 dump_data_file(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3519 /****************************************************************************
3521 ****************************************************************************/
3523 static int cmd_setea(void)
3525 TALLOC_CTX
*ctx
= talloc_tos();
3528 char *eaname
= NULL
;
3529 char *eavalue
= NULL
;
3530 char *targetname
= NULL
;
3531 struct cli_state
*targetcli
;
3534 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3535 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3536 d_printf("setea filename eaname value\n");
3539 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3540 eavalue
= talloc_strdup(ctx
, "");
3542 src
= talloc_asprintf(ctx
,
3544 client_get_cur_dir(),
3550 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3552 if (!NT_STATUS_IS_OK(status
)) {
3553 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3557 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3559 if (!NT_STATUS_IS_OK(status
)) {
3560 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3567 /****************************************************************************
3569 ****************************************************************************/
3571 static int cmd_stat(void)
3573 TALLOC_CTX
*ctx
= talloc_tos();
3576 char *targetname
= NULL
;
3577 struct cli_state
*targetcli
;
3579 SMB_STRUCT_STAT sbuf
;
3584 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3585 d_printf("stat file\n");
3588 src
= talloc_asprintf(ctx
,
3590 client_get_cur_dir(),
3596 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3598 if (!NT_STATUS_IS_OK(status
)) {
3599 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3603 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3604 d_printf("Server doesn't support UNIX CIFS calls.\n");
3608 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3609 if (!NT_STATUS_IS_OK(status
)) {
3610 d_printf("%s stat file %s\n",
3611 nt_errstr(status
), src
);
3615 /* Print out the stat values. */
3616 d_printf("File: %s\n", src
);
3617 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3618 (double)sbuf
.st_ex_size
,
3619 (unsigned int)sbuf
.st_ex_blocks
,
3620 filetype_to_str(sbuf
.st_ex_mode
));
3622 #if defined(S_ISCHR) && defined(S_ISBLK)
3623 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3624 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3625 (double)sbuf
.st_ex_ino
,
3626 (unsigned int)sbuf
.st_ex_nlink
,
3627 unix_dev_major(sbuf
.st_ex_rdev
),
3628 unix_dev_minor(sbuf
.st_ex_rdev
));
3631 d_printf("Inode: %.0f\tLinks: %u\n",
3632 (double)sbuf
.st_ex_ino
,
3633 (unsigned int)sbuf
.st_ex_nlink
);
3635 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3636 ((int)sbuf
.st_ex_mode
& 0777),
3637 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3638 (unsigned int)sbuf
.st_ex_uid
,
3639 (unsigned int)sbuf
.st_ex_gid
);
3641 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3642 lt
= localtime(&tmp_time
);
3644 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3646 fstrcpy(mode_str
, "unknown");
3648 d_printf("Access: %s\n", mode_str
);
3650 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3651 lt
= localtime(&tmp_time
);
3653 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3655 fstrcpy(mode_str
, "unknown");
3657 d_printf("Modify: %s\n", mode_str
);
3659 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3660 lt
= localtime(&tmp_time
);
3662 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3664 fstrcpy(mode_str
, "unknown");
3666 d_printf("Change: %s\n", mode_str
);
3672 /****************************************************************************
3674 ****************************************************************************/
3676 static int cmd_chown(void)
3678 TALLOC_CTX
*ctx
= talloc_tos();
3682 char *buf
, *buf2
, *buf3
;
3683 struct cli_state
*targetcli
;
3684 char *targetname
= NULL
;
3687 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3688 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3689 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3690 d_printf("chown uid gid file\n");
3694 uid
= (uid_t
)atoi(buf
);
3695 gid
= (gid_t
)atoi(buf2
);
3697 src
= talloc_asprintf(ctx
,
3699 client_get_cur_dir(),
3704 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3706 if (!NT_STATUS_IS_OK(status
)) {
3707 d_printf("chown %s: %s\n", src
, nt_errstr(status
));
3711 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3712 d_printf("Server doesn't support UNIX CIFS calls.\n");
3716 status
= cli_posix_chown(targetcli
, targetname
, uid
, gid
);
3717 if (!NT_STATUS_IS_OK(status
)) {
3718 d_printf("%s chown file %s uid=%d, gid=%d\n",
3719 nt_errstr(status
), src
, (int)uid
, (int)gid
);
3726 /****************************************************************************
3728 ****************************************************************************/
3730 static int cmd_rename(void)
3732 TALLOC_CTX
*ctx
= talloc_tos();
3735 struct cli_state
*targetcli
;
3740 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3741 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3742 d_printf("rename <src> <dest>\n");
3746 src
= talloc_asprintf(ctx
,
3748 client_get_cur_dir(),
3754 dest
= talloc_asprintf(ctx
,
3756 client_get_cur_dir(),
3762 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3764 if (!NT_STATUS_IS_OK(status
)) {
3765 d_printf("rename %s: %s\n", src
, nt_errstr(status
));
3769 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
,
3771 if (!NT_STATUS_IS_OK(status
)) {
3772 d_printf("rename %s: %s\n", dest
, nt_errstr(status
));
3776 status
= cli_rename(targetcli
, targetsrc
, targetdest
);
3777 if (!NT_STATUS_IS_OK(status
)) {
3778 d_printf("%s renaming files %s -> %s \n",
3788 /****************************************************************************
3789 Print the volume name.
3790 ****************************************************************************/
3792 static int cmd_volume(void)
3795 uint32_t serial_num
;
3799 status
= cli_get_fs_volume_info(cli
, talloc_tos(),
3800 &volname
, &serial_num
,
3802 if (!NT_STATUS_IS_OK(status
)) {
3803 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3807 d_printf("Volume: |%s| serial number 0x%x\n",
3808 volname
, (unsigned int)serial_num
);
3812 /****************************************************************************
3813 Hard link files using the NT call.
3814 ****************************************************************************/
3816 static int cmd_hardlink(void)
3818 TALLOC_CTX
*ctx
= talloc_tos();
3821 struct cli_state
*targetcli
;
3825 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3826 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3827 d_printf("hardlink <src> <dest>\n");
3831 src
= talloc_asprintf(ctx
,
3833 client_get_cur_dir(),
3839 dest
= talloc_asprintf(ctx
,
3841 client_get_cur_dir(),
3847 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3849 if (!NT_STATUS_IS_OK(status
)) {
3850 d_printf("hardlink %s: %s\n", src
, nt_errstr(status
));
3854 status
= cli_nt_hardlink(targetcli
, targetname
, dest
);
3855 if (!NT_STATUS_IS_OK(status
)) {
3856 d_printf("%s doing an NT hard link of files\n",
3864 /****************************************************************************
3865 Toggle the prompt flag.
3866 ****************************************************************************/
3868 static int cmd_prompt(void)
3871 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3875 /****************************************************************************
3876 Set the newer than time.
3877 ****************************************************************************/
3879 static int cmd_newer(void)
3881 TALLOC_CTX
*ctx
= talloc_tos();
3884 SMB_STRUCT_STAT sbuf
;
3886 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3887 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3888 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3889 DEBUG(1,("Getting files newer than %s",
3890 time_to_asc(newer_than
)));
3895 if (ok
&& newer_than
== 0) {
3896 d_printf("Error setting newer-than time\n");
3903 /****************************************************************************
3904 Watch directory changes
3905 ****************************************************************************/
3907 static int cmd_notify(void)
3909 TALLOC_CTX
*frame
= talloc_stackframe();
3914 name
= talloc_strdup(talloc_tos(), client_get_cur_dir());
3918 if (!next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
, NULL
)) {
3921 name
= talloc_asprintf_append(name
, "%s", buf
);
3925 status
= cli_ntcreate(
3926 cli
, name
, 0, FILE_READ_DATA
, 0,
3927 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3928 FILE_OPEN
, 0, 0, &fnum
);
3929 if (!NT_STATUS_IS_OK(status
)) {
3930 d_printf("Could not open file: %s\n", nt_errstr(status
));
3935 uint32_t i
, num_changes
;
3936 struct notify_change
*changes
;
3938 status
= cli_notify(cli
, fnum
, 1000, FILE_NOTIFY_CHANGE_ALL
,
3940 talloc_tos(), &num_changes
, &changes
);
3941 if (!NT_STATUS_IS_OK(status
)) {
3942 d_printf("notify returned %s\n",
3946 for (i
=0; i
<num_changes
; i
++) {
3947 printf("%4.4x %s\n", changes
[i
].action
,
3950 TALLOC_FREE(changes
);
3953 d_printf("notify <file>\n");
3959 /****************************************************************************
3960 Set the archive level.
3961 ****************************************************************************/
3963 static int cmd_archive(void)
3965 TALLOC_CTX
*ctx
= talloc_tos();
3968 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3969 archive_level
= atoi(buf
);
3971 d_printf("Archive level is %d\n",archive_level
);
3977 /****************************************************************************
3978 Toggle the backup_intent state.
3979 ****************************************************************************/
3981 static int cmd_backup(void)
3983 backup_intent
= !backup_intent
;
3984 cli_set_backup_intent(cli
, backup_intent
);
3985 DEBUG(2,("backup intent is now %s\n",backup_intent
?"on":"off"));
3989 /****************************************************************************
3990 Toggle the lowercaseflag.
3991 ****************************************************************************/
3993 static int cmd_lowercase(void)
3995 lowercase
= !lowercase
;
3996 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
4000 /****************************************************************************
4001 Toggle the case sensitive flag.
4002 ****************************************************************************/
4004 static int cmd_setcase(void)
4006 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
4008 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
4009 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
4014 /****************************************************************************
4015 Toggle the showacls flag.
4016 ****************************************************************************/
4018 static int cmd_showacls(void)
4020 showacls
= !showacls
;
4021 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
4026 /****************************************************************************
4027 Toggle the recurse flag.
4028 ****************************************************************************/
4030 static int cmd_recurse(void)
4033 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
4037 /****************************************************************************
4038 Toggle the translate flag.
4039 ****************************************************************************/
4041 static int cmd_translate(void)
4043 translation
= !translation
;
4044 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4045 translation
?"on":"off"));
4049 /****************************************************************************
4051 ****************************************************************************/
4053 static int cmd_lcd(void)
4055 TALLOC_CTX
*ctx
= talloc_tos();
4059 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4060 if (chdir(buf
) == -1) {
4061 d_printf("chdir to %s failed (%s)\n",
4062 buf
, strerror(errno
));
4069 DEBUG(2,("the local directory is now %s\n",d
));
4074 /****************************************************************************
4075 Get a file restarting at end of local file.
4076 ****************************************************************************/
4078 static int cmd_reget(void)
4080 TALLOC_CTX
*ctx
= talloc_tos();
4081 char *local_name
= NULL
;
4082 char *remote_name
= NULL
;
4086 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4091 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
4092 d_printf("reget <filename>\n");
4095 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
4099 remote_name
= clean_name(ctx
,remote_name
);
4105 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
4110 return do_get(remote_name
, local_name
, true);
4113 /****************************************************************************
4114 Put a file restarting at end of local file.
4115 ****************************************************************************/
4117 static int cmd_reput(void)
4119 TALLOC_CTX
*ctx
= talloc_tos();
4120 char *local_name
= NULL
;
4121 char *remote_name
= NULL
;
4125 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4130 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
4131 d_printf("reput <filename>\n");
4135 if (!file_exist_stat(local_name
, &st
, false)) {
4136 d_printf("%s does not exist\n", local_name
);
4140 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
4141 remote_name
= talloc_asprintf_append(remote_name
,
4144 remote_name
= talloc_asprintf_append(remote_name
,
4151 remote_name
= clean_name(ctx
, remote_name
);
4156 return do_put(remote_name
, local_name
, true);
4159 /****************************************************************************
4161 ****************************************************************************/
4163 static void browse_fn(const char *name
, uint32 m
,
4164 const char *comment
, void *state
)
4166 const char *typestr
= "";
4169 case STYPE_DISKTREE
:
4173 typestr
= "Printer";
4182 /* FIXME: If the remote machine returns non-ascii characters
4183 in any of these fields, they can corrupt the output. We
4184 should remove them. */
4186 d_printf("\t%-15s %-10.10s%s\n",
4187 name
,typestr
,comment
);
4189 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
4193 static bool browse_host_rpc(bool sort
)
4196 struct rpc_pipe_client
*pipe_hnd
= NULL
;
4197 TALLOC_CTX
*frame
= talloc_stackframe();
4199 struct srvsvc_NetShareInfoCtr info_ctr
;
4200 struct srvsvc_NetShareCtr1 ctr1
;
4201 uint32_t resume_handle
= 0;
4202 uint32_t total_entries
= 0;
4204 struct dcerpc_binding_handle
*b
;
4206 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
4209 if (!NT_STATUS_IS_OK(status
)) {
4210 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4211 nt_errstr(status
)));
4216 b
= pipe_hnd
->binding_handle
;
4218 ZERO_STRUCT(info_ctr
);
4222 info_ctr
.ctr
.ctr1
= &ctr1
;
4224 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4232 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4233 TALLOC_FREE(pipe_hnd
);
4238 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4239 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4240 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4243 TALLOC_FREE(pipe_hnd
);
4248 /****************************************************************************
4249 Try and browse available connections on a host.
4250 ****************************************************************************/
4252 static bool browse_host(bool sort
)
4256 d_printf("\n\tSharename Type Comment\n");
4257 d_printf("\t--------- ---- -------\n");
4260 if (browse_host_rpc(sort
)) {
4264 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1) {
4265 NTSTATUS status
= cli_nt_error(cli
);
4266 d_printf("Error returning browse list: %s\n",
4273 /****************************************************************************
4275 ****************************************************************************/
4277 static void server_fn(const char *name
, uint32 m
,
4278 const char *comment
, void *state
)
4282 d_printf("\t%-16s %s\n", name
, comment
);
4284 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4288 /****************************************************************************
4289 Try and browse available connections on a host.
4290 ****************************************************************************/
4292 static bool list_servers(const char *wk_grp
)
4296 if (!cli
->server_domain
)
4300 d_printf("\n\tServer Comment\n");
4301 d_printf("\t--------- -------\n");
4303 fstrcpy( state
, "Server" );
4304 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4308 d_printf("\n\tWorkgroup Master\n");
4309 d_printf("\t--------- -------\n");
4312 fstrcpy( state
, "Workgroup" );
4313 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4318 /****************************************************************************
4319 Print or set current VUID
4320 ****************************************************************************/
4322 static int cmd_vuid(void)
4324 TALLOC_CTX
*ctx
= talloc_tos();
4327 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4328 d_printf("Current VUID is %d\n",
4329 cli_state_get_uid(cli
));
4333 cli_state_set_uid(cli
, atoi(buf
));
4337 /****************************************************************************
4338 Setup a new VUID, by issuing a session setup
4339 ****************************************************************************/
4341 static int cmd_logon(void)
4343 TALLOC_CTX
*ctx
= talloc_tos();
4344 char *l_username
, *l_password
;
4347 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4348 d_printf("logon <username> [<password>]\n");
4352 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4353 char *pass
= getpass("Password: ");
4355 l_password
= talloc_strdup(ctx
,pass
);
4362 nt_status
= cli_session_setup(cli
, l_username
,
4363 l_password
, strlen(l_password
),
4364 l_password
, strlen(l_password
),
4366 if (!NT_STATUS_IS_OK(nt_status
)) {
4367 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4371 d_printf("Current VUID is %d\n", cli_state_get_uid(cli
));
4379 static int cmd_logoff(void)
4383 status
= cli_ulogoff(cli
);
4384 if (!NT_STATUS_IS_OK(status
)) {
4385 d_printf("logoff failed: %s\n", nt_errstr(status
));
4389 d_printf("logoff successful\n");
4395 * tree connect (connect to a share)
4398 static int cmd_tcon(void)
4400 TALLOC_CTX
*ctx
= talloc_tos();
4404 if (!next_token_talloc(ctx
, &cmd_ptr
, &sharename
, NULL
)) {
4405 d_printf("tcon <sharename>\n");
4413 status
= cli_tree_connect(cli
, sharename
, "?????", "", 0);
4414 if (!NT_STATUS_IS_OK(status
)) {
4415 d_printf("tcon failed: %s\n", nt_errstr(status
));
4419 talloc_free(sharename
);
4421 d_printf("tcon to %s successful, tid: %u\n", sharename
,
4422 cli_state_get_tid(cli
));
4427 * tree disconnect (disconnect from a share)
4430 static int cmd_tdis(void)
4434 status
= cli_tdis(cli
);
4435 if (!NT_STATUS_IS_OK(status
)) {
4436 d_printf("tdis failed: %s\n", nt_errstr(status
));
4440 d_printf("tdis successful\n");
4449 static int cmd_tid(void)
4451 TALLOC_CTX
*ctx
= talloc_tos();
4454 if (!next_token_talloc(ctx
, &cmd_ptr
, &tid_str
, NULL
)) {
4455 if (cli_state_has_tcon(cli
)) {
4456 d_printf("current tid is %d\n", cli_state_get_tid(cli
));
4458 d_printf("no tcon currently\n");
4461 uint16_t tid
= atoi(tid_str
);
4462 cli_state_set_tid(cli
, tid
);
4469 /****************************************************************************
4470 list active connections
4471 ****************************************************************************/
4473 static int cmd_list_connect(void)
4475 cli_cm_display(cli
);
4479 /****************************************************************************
4480 display the current active client connection
4481 ****************************************************************************/
4483 static int cmd_show_connect( void )
4485 TALLOC_CTX
*ctx
= talloc_tos();
4486 struct cli_state
*targetcli
;
4490 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
4491 client_get_cur_dir(), &targetcli
,
4493 if (!NT_STATUS_IS_OK(status
)) {
4494 d_printf("showconnect %s: %s\n", cur_dir
, nt_errstr(status
));
4498 d_printf("//%s/%s\n", cli_state_remote_name(targetcli
), targetcli
->share
);
4502 /****************************************************************************
4504 ***************************************************************************/
4506 int cmd_iosize(void)
4508 TALLOC_CTX
*ctx
= talloc_tos();
4512 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4514 d_printf("iosize <n> or iosize 0x<n>. "
4515 "Minimum is 16384 (0x4000), "
4516 "max is 16776960 (0xFFFF00)\n");
4518 d_printf("iosize <n> or iosize 0x<n>. "
4519 "(Encrypted connection) ,"
4520 "Minimum is 16384 (0x4000), "
4521 "max is 130048 (0x1FC00)\n");
4526 iosize
= strtol(buf
,NULL
,0);
4527 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
4528 d_printf("iosize out of range for encrypted "
4529 "connection (min = 16384 (0x4000), "
4530 "max = 130048 (0x1FC00)");
4532 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
4533 d_printf("iosize out of range (min = 16384 (0x4000), "
4534 "max = 16776960 (0xFFFF00)");
4538 io_bufsize
= iosize
;
4539 d_printf("iosize is now %d\n", io_bufsize
);
4543 /****************************************************************************
4545 ****************************************************************************/
4546 static int cmd_history(void)
4548 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4552 hlist
= history_list();
4554 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4555 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4558 DEBUG(0,("no history without readline support\n"));
4564 /* Some constants for completing filename arguments */
4566 #define COMPL_NONE 0 /* No completions */
4567 #define COMPL_REMOTE 1 /* Complete remote filename */
4568 #define COMPL_LOCAL 2 /* Complete local filename */
4570 /* This defines the commands supported by this client.
4571 * NOTE: The "!" must be the last one in the list because it's fn pointer
4572 * field is NULL, and NULL in that field is used in process_tok()
4573 * (below) to indicate the end of the list. crh
4578 const char *description
;
4579 char compl_args
[2]; /* Completion argument info */
4581 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4582 {"allinfo",cmd_allinfo
,"<file> show all available info",
4583 {COMPL_NONE
,COMPL_NONE
}},
4584 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4585 {"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
}},
4586 {"backup",cmd_backup
,"toggle backup intent state",{COMPL_NONE
,COMPL_NONE
}},
4587 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4588 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4589 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4590 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4591 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
4592 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
4593 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
4594 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4595 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4596 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4597 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4598 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4599 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4600 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
4601 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4602 {COMPL_REMOTE
, COMPL_LOCAL
}},
4603 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4604 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4605 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4606 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4607 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4608 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4609 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4610 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4611 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4612 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4613 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4614 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4615 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4616 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4617 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4618 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4619 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4620 {"notify",cmd_notify
,"<file>Get notified of dir changes",{COMPL_REMOTE
,COMPL_NONE
}},
4621 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4622 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4623 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4624 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4625 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4626 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4627 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4628 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4629 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4630 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4631 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4632 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4633 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4634 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4635 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4636 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4637 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4638 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4639 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4640 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4641 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4642 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4643 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4644 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4645 {COMPL_REMOTE
, COMPL_LOCAL
}},
4646 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4647 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
4648 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4649 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4650 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4651 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4652 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4653 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4654 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4655 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4656 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4657 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4658 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4659 {"tcon",cmd_tcon
,"connect to a share" ,{COMPL_NONE
,COMPL_NONE
}},
4660 {"tdis",cmd_tdis
,"disconnect from a share",{COMPL_NONE
,COMPL_NONE
}},
4661 {"tid",cmd_tid
,"show or set the current tid (tree-id)",{COMPL_NONE
,COMPL_NONE
}},
4662 {"logoff",cmd_logoff
,"log off (close the session)",{COMPL_NONE
,COMPL_NONE
}},
4663 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4665 /* Yes, this must be here, see crh's comment above. */
4666 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4667 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4670 /*******************************************************************
4671 Lookup a command string in the list of commands, including
4673 ******************************************************************/
4675 static int process_tok(char *tok
)
4677 int i
= 0, matches
= 0;
4679 int tok_len
= strlen(tok
);
4681 while (commands
[i
].fn
!= NULL
) {
4682 if (strequal(commands
[i
].name
,tok
)) {
4686 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4695 else if (matches
== 1)
4701 /****************************************************************************
4703 ****************************************************************************/
4705 static int cmd_help(void)
4707 TALLOC_CTX
*ctx
= talloc_tos();
4711 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4712 if ((i
= process_tok(buf
)) >= 0)
4713 d_printf("HELP %s:\n\t%s\n\n",
4714 commands
[i
].name
,commands
[i
].description
);
4716 while (commands
[i
].description
) {
4717 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4718 d_printf("%-15s",commands
[i
].name
);
4727 /****************************************************************************
4728 Process a -c command string.
4729 ****************************************************************************/
4731 static int process_command_string(const char *cmd_in
)
4733 TALLOC_CTX
*ctx
= talloc_tos();
4734 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4740 /* establish the connection if not already */
4745 status
= cli_cm_open(talloc_tos(), NULL
,
4746 have_ip
? dest_ss_str
: desthost
,
4749 max_protocol
, port
, name_type
,
4751 if (!NT_STATUS_IS_OK(status
)) {
4756 while (cmd
[0] != '\0') {
4762 if ((p
= strchr_m(cmd
, ';')) == 0) {
4771 /* and get the first part of the command */
4773 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4777 if ((i
= process_tok(tok
)) >= 0) {
4778 rc
= commands
[i
].fn();
4779 } else if (i
== -2) {
4780 d_printf("%s: command abbreviation ambiguous\n",tok
);
4782 d_printf("%s: command not found\n",tok
);
4789 #define MAX_COMPLETIONS 100
4791 struct completion_remote
{
4799 static NTSTATUS
completion_remote_filter(const char *mnt
,
4800 struct file_info
*f
,
4804 struct completion_remote
*info
= (struct completion_remote
*)state
;
4806 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4807 return NT_STATUS_OK
;
4809 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4810 return NT_STATUS_OK
;
4812 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4813 return NT_STATUS_OK
;
4816 if ((info
->dirmask
[0] == 0) && !(f
->mode
& FILE_ATTRIBUTE_DIRECTORY
))
4817 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4819 TALLOC_CTX
*ctx
= talloc_stackframe();
4822 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4825 return NT_STATUS_NO_MEMORY
;
4827 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4830 return NT_STATUS_NO_MEMORY
;
4832 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4833 tmp
= talloc_asprintf_append(tmp
, "%s",
4838 return NT_STATUS_NO_MEMORY
;
4840 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4843 if (info
->matches
[info
->count
] == NULL
) {
4844 return NT_STATUS_OK
;
4846 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4847 smb_readline_ca_char(0);
4849 if (info
->count
== 1) {
4850 info
->samelen
= strlen(info
->matches
[info
->count
]);
4852 while (strncmp(info
->matches
[info
->count
],
4853 info
->matches
[info
->count
-1],
4854 info
->samelen
) != 0) {
4859 return NT_STATUS_OK
;
4862 static char **remote_completion(const char *text
, int len
)
4864 TALLOC_CTX
*ctx
= talloc_stackframe();
4865 char *dirmask
= NULL
;
4866 char *targetpath
= NULL
;
4867 struct cli_state
*targetcli
= NULL
;
4869 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4872 /* can't have non-static initialisation on Sun CC, so do it
4878 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4879 if (!info
.matches
) {
4885 * We're leaving matches[0] free to fill it later with the text to
4886 * display: Either the one single match or the longest common subset
4889 info
.matches
[0] = NULL
;
4892 for (i
= len
-1; i
>= 0; i
--) {
4893 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4898 info
.text
= text
+i
+1;
4899 info
.samelen
= info
.len
= len
-i
-1;
4902 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4903 if (!info
.dirmask
) {
4906 strncpy(info
.dirmask
, text
, i
+1);
4907 info
.dirmask
[i
+1] = 0;
4908 dirmask
= talloc_asprintf(ctx
,
4910 client_get_cur_dir(),
4914 info
.dirmask
= SMB_STRDUP("");
4915 if (!info
.dirmask
) {
4918 dirmask
= talloc_asprintf(ctx
,
4920 client_get_cur_dir());
4926 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
,
4928 if (!NT_STATUS_IS_OK(status
)) {
4931 status
= cli_list(targetcli
, targetpath
, FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
4932 completion_remote_filter
, (void *)&info
);
4933 if (!NT_STATUS_IS_OK(status
)) {
4937 if (info
.count
== 1) {
4939 * No matches at all, NULL indicates there is nothing
4941 SAFE_FREE(info
.matches
[0]);
4942 SAFE_FREE(info
.matches
);
4947 if (info
.count
== 2) {
4949 * Exactly one match in matches[1], indicate this is the one
4952 info
.matches
[0] = info
.matches
[1];
4953 info
.matches
[1] = NULL
;
4956 return info
.matches
;
4960 * We got more than one possible match, set the result to the maximum
4964 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4965 info
.matches
[info
.count
] = NULL
;
4966 return info
.matches
;
4969 for (i
= 0; i
< info
.count
; i
++) {
4970 SAFE_FREE(info
.matches
[i
]);
4972 SAFE_FREE(info
.matches
);
4973 SAFE_FREE(info
.dirmask
);
4978 static char **completion_fn(const char *text
, int start
, int end
)
4980 smb_readline_ca_char(' ');
4983 const char *buf
, *sp
;
4987 buf
= smb_readline_get_line_buffer();
4991 sp
= strchr(buf
, ' ');
4995 for (i
= 0; commands
[i
].name
; i
++) {
4996 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4997 (commands
[i
].name
[sp
- buf
] == 0)) {
5001 if (commands
[i
].name
== NULL
)
5007 if (sp
== (buf
+ start
))
5008 compl_type
= commands
[i
].compl_args
[0];
5010 compl_type
= commands
[i
].compl_args
[1];
5012 if (compl_type
== COMPL_REMOTE
)
5013 return remote_completion(text
, end
- start
);
5014 else /* fall back to local filename completion */
5018 int i
, len
, samelen
= 0, count
=1;
5020 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
5027 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
5028 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
5029 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
5030 if (!matches
[count
])
5033 samelen
= strlen(matches
[count
]);
5035 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
5042 case 0: /* should never happen */
5046 matches
[0] = SMB_STRDUP(matches
[1]);
5049 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
5052 strncpy(matches
[0], matches
[1], samelen
);
5053 matches
[0][samelen
] = 0;
5055 matches
[count
] = NULL
;
5059 for (i
= 0; i
< count
; i
++)
5067 static bool finished
;
5069 /****************************************************************************
5070 Make sure we swallow keepalives during idle time.
5071 ****************************************************************************/
5073 static void readline_callback(void)
5075 static time_t last_t
;
5076 struct timespec now
;
5079 unsigned char garbage
[16];
5081 clock_gettime_mono(&now
);
5089 /* Ping the server to keep the connection alive using SMBecho. */
5090 memset(garbage
, 0xf0, sizeof(garbage
));
5091 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
5092 if (NT_STATUS_IS_OK(status
)) {
5096 if (!cli_state_is_connected(cli
)) {
5097 DEBUG(0,("SMBecho failed (%s). The connection is "
5098 "disconnected now\n", nt_errstr(status
)));
5100 smb_readline_done();
5104 /****************************************************************************
5105 Process commands on stdin.
5106 ****************************************************************************/
5108 static int process_stdin(void)
5113 TALLOC_CTX
*frame
= talloc_stackframe();
5115 char *the_prompt
= NULL
;
5119 /* display a prompt */
5120 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
5124 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
5125 SAFE_FREE(the_prompt
);
5131 /* special case - first char is ! */
5133 if (system(line
+ 1) == -1) {
5134 d_printf("system() command %s failed.\n",
5142 /* and get the first part of the command */
5144 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
5150 if ((i
= process_tok(tok
)) >= 0) {
5151 rc
= commands
[i
].fn();
5152 } else if (i
== -2) {
5153 d_printf("%s: command abbreviation ambiguous\n",tok
);
5155 d_printf("%s: command not found\n",tok
);
5163 /****************************************************************************
5164 Process commands from the client.
5165 ****************************************************************************/
5167 static int process(const char *base_directory
)
5172 status
= cli_cm_open(talloc_tos(), NULL
,
5173 have_ip
? dest_ss_str
: desthost
,
5174 service
, auth_info
, true, smb_encrypt
,
5175 max_protocol
, port
, name_type
, &cli
);
5176 if (!NT_STATUS_IS_OK(status
)) {
5180 if (base_directory
&& *base_directory
) {
5181 rc
= do_cd(base_directory
);
5189 rc
= process_command_string(cmdstr
);
5198 /****************************************************************************
5200 ****************************************************************************/
5202 static int do_host_query(const char *query_host
)
5206 status
= cli_cm_open(talloc_tos(), NULL
,
5207 have_ip
? dest_ss_str
: query_host
,
5208 "IPC$", auth_info
, true, smb_encrypt
,
5209 max_protocol
, port
, name_type
, &cli
);
5210 if (!NT_STATUS_IS_OK(status
)) {
5216 /* Ensure that the host can do IPv4 */
5218 if (!interpret_addr(query_host
)) {
5219 struct sockaddr_storage ss
;
5220 if (interpret_string_addr(&ss
, query_host
, 0) &&
5221 (ss
.ss_family
!= AF_INET
)) {
5222 d_printf("%s is an IPv6 address -- no workgroup available\n",
5228 if (port
!= NBT_SMB_PORT
) {
5230 /* Workgroups simply don't make sense over anything
5231 else but port 139... */
5234 status
= cli_cm_open(talloc_tos(), NULL
,
5235 have_ip
? dest_ss_str
: query_host
,
5236 "IPC$", auth_info
, true, smb_encrypt
,
5237 max_protocol
, NBT_SMB_PORT
, name_type
,
5239 if (!NT_STATUS_IS_OK(status
)) {
5245 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5249 list_servers(lp_workgroup());
5256 /****************************************************************************
5257 Handle a tar operation.
5258 ****************************************************************************/
5260 static int do_tar_op(const char *base_directory
)
5264 /* do we already have a connection? */
5268 status
= cli_cm_open(talloc_tos(), NULL
,
5269 have_ip
? dest_ss_str
: desthost
,
5270 service
, auth_info
, true, smb_encrypt
,
5271 max_protocol
, port
, name_type
, &cli
);
5272 if (!NT_STATUS_IS_OK(status
)) {
5279 if (base_directory
&& *base_directory
) {
5280 ret
= do_cd(base_directory
);
5294 /****************************************************************************
5295 Handle a message operation.
5296 ****************************************************************************/
5298 static int do_message_op(struct user_auth_info
*a_info
)
5302 status
= cli_connect_nb(desthost
, have_ip
? &dest_ss
: NULL
,
5303 port
? port
: NBT_SMB_PORT
, name_type
,
5304 lp_netbios_name(), SMB_SIGNING_DEFAULT
, 0, &cli
);
5305 if (!NT_STATUS_IS_OK(status
)) {
5306 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5310 send_message(get_cmdline_auth_info_username(a_info
));
5316 /****************************************************************************
5318 ****************************************************************************/
5320 int main(int argc
,char *argv
[])
5322 char *base_directory
= NULL
;
5324 char *query_host
= NULL
;
5325 bool message
= false;
5326 static const char *new_name_resolve_order
= NULL
;
5330 bool tar_opt
= false;
5331 bool service_opt
= false;
5332 struct poptOption long_options
[] = {
5335 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5336 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
5337 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
5338 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
5339 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
5340 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
5341 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5342 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
5343 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
5344 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
5345 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
5346 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
5347 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
5349 POPT_COMMON_CONNECTION
5350 POPT_COMMON_CREDENTIALS
5353 TALLOC_CTX
*frame
= talloc_stackframe();
5355 if (!client_set_cur_dir("\\")) {
5359 /* set default debug level to 1 regardless of what smb.conf sets */
5360 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR
);
5363 lp_set_cmdline("log level", "1");
5365 auth_info
= user_auth_info_init(frame
);
5366 if (auth_info
== NULL
) {
5369 popt_common_set_auth_info(auth_info
);
5372 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
5373 poptSetOtherOptionHelp(pc
, "service <password>");
5375 while ((opt
= poptGetNextOpt(pc
)) != -1) {
5377 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5378 /* I see no other way to keep things sane --SSS */
5379 if (tar_opt
== true) {
5380 while (poptPeekArg(pc
)) {
5386 /* if the service has not yet been specified lets see if it is available in the popt stack */
5387 if (!service_opt
&& poptPeekArg(pc
)) {
5388 service
= talloc_strdup(frame
, poptGetArg(pc
));
5395 /* if the service has already been retrieved then check if we have also a password */
5397 && (!get_cmdline_auth_info_got_pass(auth_info
))
5398 && poptPeekArg(pc
)) {
5399 set_cmdline_auth_info_password(auth_info
,
5405 /* Messages are sent to NetBIOS name type 0x3
5406 * (Messenger Service). Make sure we default
5407 * to port 139 instead of port 445. srl,crh
5410 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
5415 port
= NBT_SMB_PORT
;
5420 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
5424 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
5428 setup_logging("smbclient", DEBUG_STDERR
);
5429 display_set_stderr();
5433 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
5439 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
5442 /* We must use old option processing for this. Find the
5443 * position of the -T option in the raw argv[]. */
5446 for (i
= 1; i
< argc
; i
++) {
5447 if (strncmp("-T", argv
[i
],2)==0)
5451 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
5452 poptPrintUsage(pc
, stderr
, 0);
5456 /* this must be the last option, mark we have parsed it so that we know we have */
5460 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5461 if (!base_directory
) {
5472 return(do_smb_browse());
5477 /* We may still have some leftovers after the last popt option has been called */
5478 if (tar_opt
== true) {
5479 while (poptPeekArg(pc
)) {
5485 /* if the service has not yet been specified lets see if it is available in the popt stack */
5486 if (!service_opt
&& poptPeekArg(pc
)) {
5487 service
= talloc_strdup(frame
,poptGetArg(pc
));
5494 /* if the service has already been retrieved then check if we have also a password */
5496 && !get_cmdline_auth_info_got_pass(auth_info
)
5497 && poptPeekArg(pc
)) {
5498 set_cmdline_auth_info_password(auth_info
,
5502 if ( override_logfile
)
5503 setup_logging( lp_logfile(), DEBUG_FILE
);
5505 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5506 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5507 argv
[0], get_dyn_CONFIGFILE());
5510 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5511 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5517 if (service_opt
&& service
) {
5520 /* Convert any '/' characters in the service name to '\' characters */
5521 string_replace(service
, '/','\\');
5522 if (count_chars(service
,'\\') < 3) {
5523 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5524 poptPrintUsage(pc
, stderr
, 0);
5527 /* Remove trailing slashes */
5528 len
= strlen(service
);
5529 while(len
> 0 && service
[len
- 1] == '\\') {
5531 service
[len
] = '\0';
5535 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5536 if (!init_names()) {
5537 fprintf(stderr
, "init_names() failed\n");
5541 if(new_name_resolve_order
)
5542 lp_set_name_resolve_order(new_name_resolve_order
);
5544 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5545 poptPrintUsage(pc
, stderr
, 0);
5549 poptFreeContext(pc
);
5551 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5553 /* Ensure we have a password (or equivalent). */
5554 set_cmdline_auth_info_getpass(auth_info
);
5558 process_command_string(cmdstr
);
5559 return do_tar_op(base_directory
);
5562 if (query_host
&& *query_host
) {
5563 char *qhost
= query_host
;
5566 while (*qhost
== '\\' || *qhost
== '/')
5569 if ((slash
= strchr_m(qhost
, '/'))
5570 || (slash
= strchr_m(qhost
, '\\'))) {
5574 if ((p
=strchr_m(qhost
, '#'))) {
5577 sscanf(p
, "%x", &name_type
);
5580 return do_host_query(qhost
);
5584 return do_message_op(auth_info
);
5587 if (process(base_directory
)) {