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 "popt_common.h"
26 #include "rpc_client/cli_pipe.h"
27 #include "client/client_proto.h"
28 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
29 #include "../lib/util/select.h"
30 #include "system/readline.h"
31 #include "../libcli/smbreadline/smbreadline.h"
32 #include "../libcli/security/security.h"
33 #include "system/select.h"
34 #include "libsmb/clirap.h"
40 extern int do_smb_browse(void); /* mDNS browsing */
42 extern bool override_logfile
;
47 static char *desthost
;
48 static char *calling_name
;
49 static bool grepable
= false;
50 static char *cmdstr
= NULL
;
51 const char *cmd_ptr
= NULL
;
53 static int io_bufsize
= 524288;
55 static int name_type
= 0x20;
56 static int max_protocol
= PROTOCOL_NT1
;
58 static int process_tok(char *tok
);
59 static int cmd_help(void);
61 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
63 /* 30 second timeout on most commands */
64 #define CLIENT_TIMEOUT (30*1000)
65 #define SHORT_TIMEOUT (5*1000)
67 /* value for unused fid field in trans2 secondary request */
68 #define FID_UNUSED (0xFFFF)
70 time_t newer_than
= 0;
71 static int archive_level
= 0;
73 static bool translation
= false;
76 /* clitar bits insert */
79 extern bool tar_reset
;
82 static bool prompt
= true;
84 static bool recurse
= false;
85 static bool showacls
= false;
86 bool lowercase
= false;
88 static struct sockaddr_storage dest_ss
;
89 static char dest_ss_str
[INET6_ADDRSTRLEN
];
91 #define SEPARATORS " \t\n\r"
93 static bool abort_mget
= true;
96 uint64_t get_total_size
= 0;
97 unsigned int get_total_time_ms
= 0;
98 static uint64_t put_total_size
= 0;
99 static unsigned int put_total_time_ms
= 0;
102 static double dir_total
;
104 /* encrypted state. */
105 static bool smb_encrypt
;
107 /* root cli_state connection */
109 struct cli_state
*cli
;
111 static char CLI_DIRSEP_CHAR
= '\\';
112 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
114 /* Authentication for client connections. */
115 struct user_auth_info
*auth_info
;
117 /* Accessor functions for directory paths. */
118 static char *fileselection
;
119 static const char *client_get_fileselection(void)
122 return fileselection
;
127 static const char *client_set_fileselection(const char *new_fs
)
129 SAFE_FREE(fileselection
);
131 fileselection
= SMB_STRDUP(new_fs
);
133 return client_get_fileselection();
137 static const char *client_get_cwd(void)
142 return CLI_DIRSEP_STR
;
145 static const char *client_set_cwd(const char *new_cwd
)
149 cwd
= SMB_STRDUP(new_cwd
);
151 return client_get_cwd();
154 static char *cur_dir
;
155 const char *client_get_cur_dir(void)
160 return CLI_DIRSEP_STR
;
163 const char *client_set_cur_dir(const char *newdir
)
167 cur_dir
= SMB_STRDUP(newdir
);
169 return client_get_cur_dir();
172 /****************************************************************************
173 Put up a yes/no prompt.
174 ****************************************************************************/
176 static bool yesno(const char *p
)
181 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
184 if (*ans
== 'y' || *ans
== 'Y')
190 /****************************************************************************
191 Write to a local file with CR/LF->LF translation if appropriate. Return the
192 number taken from the buffer. This may not equal the number written.
193 ****************************************************************************/
195 static int writefile(int f
, char *b
, int n
)
205 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
208 if (write(f
, b
, 1) != 1) {
218 /****************************************************************************
219 Read from a file with LF->CR/LF translation if appropriate. Return the
220 number read. read approx n bytes.
221 ****************************************************************************/
223 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
229 return x_fread(b
,1,n
,f
);
232 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
233 if ((c
= x_getc(f
)) == EOF
) {
237 if (c
== '\n') { /* change all LFs to CR/LF */
252 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
254 struct push_state
*state
= (struct push_state
*)priv
;
257 if (x_feof(state
->f
)) {
261 result
= readfile(buf
, n
, state
->f
);
262 state
->nread
+= result
;
266 /****************************************************************************
268 ****************************************************************************/
270 static void send_message(const char *username
)
276 d_printf("Type your message, ending it with a Control-D\n");
279 while (i
<sizeof(buf
)-2) {
280 int c
= fgetc(stdin
);
291 status
= cli_message(cli
, desthost
, username
, buf
);
292 if (!NT_STATUS_IS_OK(status
)) {
293 d_fprintf(stderr
, "cli_message returned %s\n",
298 /****************************************************************************
299 Check the space on a device.
300 ****************************************************************************/
302 static int do_dskattr(void)
304 int total
, bsize
, avail
;
305 struct cli_state
*targetcli
= NULL
;
306 char *targetpath
= NULL
;
307 TALLOC_CTX
*ctx
= talloc_tos();
310 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, client_get_cur_dir(), &targetcli
, &targetpath
)) {
311 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
315 status
= cli_dskattr(targetcli
, &bsize
, &total
, &avail
);
316 if (!NT_STATUS_IS_OK(status
)) {
317 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
321 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
322 total
, bsize
, avail
);
327 /****************************************************************************
329 ****************************************************************************/
331 static int cmd_pwd(void)
333 d_printf("Current directory is %s",service
);
334 d_printf("%s\n",client_get_cur_dir());
338 /****************************************************************************
339 Ensure name has correct directory separators.
340 ****************************************************************************/
342 static void normalize_name(char *newdir
)
344 if (!(cli
->requested_posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
345 string_replace(newdir
,'/','\\');
349 /****************************************************************************
350 Change directory - inner section.
351 ****************************************************************************/
353 static int do_cd(const char *new_dir
)
356 char *saved_dir
= NULL
;
358 char *targetpath
= NULL
;
359 struct cli_state
*targetcli
= NULL
;
360 SMB_STRUCT_STAT sbuf
;
363 TALLOC_CTX
*ctx
= talloc_stackframe();
365 newdir
= talloc_strdup(ctx
, new_dir
);
371 normalize_name(newdir
);
373 /* Save the current directory in case the new directory is invalid */
375 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
381 if (*newdir
== CLI_DIRSEP_CHAR
) {
382 client_set_cur_dir(newdir
);
385 new_cd
= talloc_asprintf(ctx
, "%s%s",
386 client_get_cur_dir(),
393 /* Ensure cur_dir ends in a DIRSEP */
394 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
395 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
400 client_set_cur_dir(new_cd
);
402 new_cd
= clean_name(ctx
, new_cd
);
403 client_set_cur_dir(new_cd
);
405 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
, &targetcli
, &targetpath
)) {
406 d_printf("cd %s: %s\n", new_cd
, cli_errstr(cli
));
407 client_set_cur_dir(saved_dir
);
411 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
416 /* Use a trans2_qpathinfo to test directories for modern servers.
417 Except Win9x doesn't support the qpathinfo_basic() call..... */
419 if (targetcli
->protocol
> PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
422 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
424 if (!NT_STATUS_IS_OK(status
)) {
425 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
426 client_set_cur_dir(saved_dir
);
430 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
431 d_printf("cd %s: not a directory\n", new_cd
);
432 client_set_cur_dir(saved_dir
);
438 targetpath
= talloc_asprintf(ctx
,
443 client_set_cur_dir(saved_dir
);
446 targetpath
= clean_name(ctx
, targetpath
);
448 client_set_cur_dir(saved_dir
);
452 status
= cli_chkpath(targetcli
, targetpath
);
453 if (!NT_STATUS_IS_OK(status
)) {
454 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
455 client_set_cur_dir(saved_dir
);
468 /****************************************************************************
470 ****************************************************************************/
472 static int cmd_cd(void)
477 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
480 d_printf("Current directory is %s\n",client_get_cur_dir());
486 /****************************************************************************
488 ****************************************************************************/
490 static int cmd_cd_oneup(void)
495 /*******************************************************************
496 Decide if a file should be operated on.
497 ********************************************************************/
499 static bool do_this_one(struct file_info
*finfo
)
505 if (finfo
->mode
& aDIR
) {
509 if (*client_get_fileselection() &&
510 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
511 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
515 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
516 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
520 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
521 DEBUG(3,("archive %s failed\n", finfo
->name
));
528 /****************************************************************************
529 Display info about a file.
530 ****************************************************************************/
532 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
536 TALLOC_CTX
*ctx
= talloc_tos();
537 NTSTATUS status
= NT_STATUS_OK
;
539 if (!do_this_one(finfo
)) {
543 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
545 d_printf(" %-30s%7.7s %8.0f %s",
547 attrib_string(finfo
->mode
),
550 dir_total
+= finfo
->size
;
555 /* skip if this is . or .. */
556 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
558 /* create absolute filename for cli_ntcreate() FIXME */
559 afname
= talloc_asprintf(ctx
,
565 return NT_STATUS_NO_MEMORY
;
567 /* print file meta date header */
568 d_printf( "FILENAME:%s\n", finfo
->name
);
569 d_printf( "MODE:%s\n", attrib_string(finfo
->mode
));
570 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
571 d_printf( "MTIME:%s", time_to_asc(t
));
572 status
= cli_ntcreate(cli_state
, afname
, 0,
573 CREATE_ACCESS_READ
, 0,
574 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
575 FILE_OPEN
, 0x0, 0x0, &fnum
);
576 if (!NT_STATUS_IS_OK(status
)) {
577 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
578 afname
, nt_errstr(status
)));
580 struct security_descriptor
*sd
= NULL
;
581 sd
= cli_query_secdesc(cli_state
, fnum
, ctx
);
583 DEBUG( 0, ("display_finfo() failed to "
584 "get security descriptor: %s",
585 cli_errstr(cli_state
)));
586 status
= cli_nt_error(cli_state
);
588 display_sec_desc(sd
);
597 /****************************************************************************
598 Accumulate size of a file.
599 ****************************************************************************/
601 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
604 if (do_this_one(finfo
)) {
605 dir_total
+= finfo
->size
;
610 static bool do_list_recurse
;
611 static bool do_list_dirs
;
612 static char *do_list_queue
= 0;
613 static long do_list_queue_size
= 0;
614 static long do_list_queue_start
= 0;
615 static long do_list_queue_end
= 0;
616 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
619 /****************************************************************************
620 Functions for do_list_queue.
621 ****************************************************************************/
624 * The do_list_queue is a NUL-separated list of strings stored in a
625 * char*. Since this is a FIFO, we keep track of the beginning and
626 * ending locations of the data in the queue. When we overflow, we
627 * double the size of the char*. When the start of the data passes
628 * the midpoint, we move everything back. This is logically more
629 * complex than a linked list, but easier from a memory management
630 * angle. In any memory error condition, do_list_queue is reset.
631 * Functions check to ensure that do_list_queue is non-NULL before
635 static void reset_do_list_queue(void)
637 SAFE_FREE(do_list_queue
);
638 do_list_queue_size
= 0;
639 do_list_queue_start
= 0;
640 do_list_queue_end
= 0;
643 static void init_do_list_queue(void)
645 reset_do_list_queue();
646 do_list_queue_size
= 1024;
647 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
648 if (do_list_queue
== 0) {
649 d_printf("malloc fail for size %d\n",
650 (int)do_list_queue_size
);
651 reset_do_list_queue();
653 memset(do_list_queue
, 0, do_list_queue_size
);
657 static void adjust_do_list_queue(void)
660 * If the starting point of the queue is more than half way through,
661 * move everything toward the beginning.
664 if (do_list_queue
== NULL
) {
665 DEBUG(4,("do_list_queue is empty\n"));
666 do_list_queue_start
= do_list_queue_end
= 0;
670 if (do_list_queue_start
== do_list_queue_end
) {
671 DEBUG(4,("do_list_queue is empty\n"));
672 do_list_queue_start
= do_list_queue_end
= 0;
673 *do_list_queue
= '\0';
674 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
675 DEBUG(4,("sliding do_list_queue backward\n"));
676 memmove(do_list_queue
,
677 do_list_queue
+ do_list_queue_start
,
678 do_list_queue_end
- do_list_queue_start
);
679 do_list_queue_end
-= do_list_queue_start
;
680 do_list_queue_start
= 0;
684 static void add_to_do_list_queue(const char *entry
)
686 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
687 while (new_end
> do_list_queue_size
) {
688 do_list_queue_size
*= 2;
689 DEBUG(4,("enlarging do_list_queue to %d\n",
690 (int)do_list_queue_size
));
691 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
692 if (! do_list_queue
) {
693 d_printf("failure enlarging do_list_queue to %d bytes\n",
694 (int)do_list_queue_size
);
695 reset_do_list_queue();
697 memset(do_list_queue
+ do_list_queue_size
/ 2,
698 0, do_list_queue_size
/ 2);
702 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
703 entry
, do_list_queue
, do_list_queue_size
);
704 do_list_queue_end
= new_end
;
705 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
706 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
710 static char *do_list_queue_head(void)
712 return do_list_queue
+ do_list_queue_start
;
715 static void remove_do_list_queue_head(void)
717 if (do_list_queue_end
> do_list_queue_start
) {
718 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
719 adjust_do_list_queue();
720 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
721 (int)do_list_queue_start
, (int)do_list_queue_end
));
725 static int do_list_queue_empty(void)
727 return (! (do_list_queue
&& *do_list_queue
));
730 /****************************************************************************
731 A helper for do_list.
732 ****************************************************************************/
734 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
735 const char *mask
, void *state
)
737 struct cli_state
*cli_state
= (struct cli_state
*)state
;
738 TALLOC_CTX
*ctx
= talloc_tos();
740 char *dir_end
= NULL
;
741 NTSTATUS status
= NT_STATUS_OK
;
743 /* Work out the directory. */
744 dir
= talloc_strdup(ctx
, mask
);
746 return NT_STATUS_NO_MEMORY
;
748 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
752 if (f
->mode
& aDIR
) {
753 if (do_list_dirs
&& do_this_one(f
)) {
754 status
= do_list_fn(cli_state
, f
, dir
);
755 if (!NT_STATUS_IS_OK(status
)) {
759 if (do_list_recurse
&&
761 !strequal(f
->name
,".") &&
762 !strequal(f
->name
,"..")) {
767 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
769 return NT_STATUS_UNSUCCESSFUL
;
772 mask2
= talloc_asprintf(ctx
,
778 return NT_STATUS_NO_MEMORY
;
780 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
786 mask2
= talloc_asprintf_append(mask2
,
792 return NT_STATUS_NO_MEMORY
;
794 add_to_do_list_queue(mask2
);
801 if (do_this_one(f
)) {
802 status
= do_list_fn(cli_state
, f
, dir
);
808 /****************************************************************************
809 A wrapper around cli_list that adds recursion.
810 ****************************************************************************/
812 NTSTATUS
do_list(const char *mask
,
814 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
819 static int in_do_list
= 0;
820 TALLOC_CTX
*ctx
= talloc_tos();
821 struct cli_state
*targetcli
= NULL
;
822 char *targetpath
= NULL
;
823 NTSTATUS ret_status
= NT_STATUS_OK
;
824 NTSTATUS status
= NT_STATUS_OK
;
826 if (in_do_list
&& rec
) {
827 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
833 do_list_recurse
= rec
;
838 init_do_list_queue();
839 add_to_do_list_queue(mask
);
841 while (!do_list_queue_empty()) {
843 * Need to copy head so that it doesn't become
844 * invalid inside the call to cli_list. This
845 * would happen if the list were expanded
847 * Fix from E. Jay Berkenbilt (ejb@ql.org)
849 char *head
= talloc_strdup(ctx
, do_list_queue_head());
852 return NT_STATUS_NO_MEMORY
;
857 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, head
, &targetcli
, &targetpath
) ) {
858 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
859 remove_do_list_queue_head();
863 status
= cli_list(targetcli
, targetpath
, attribute
,
864 do_list_helper
, targetcli
);
865 if (!NT_STATUS_IS_OK(status
)) {
866 d_printf("%s listing %s\n",
867 nt_errstr(status
), targetpath
);
870 remove_do_list_queue_head();
871 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
872 char *next_file
= do_list_queue_head();
874 if ((strlen(next_file
) >= 2) &&
875 (next_file
[strlen(next_file
) - 1] == '*') &&
876 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
877 save_ch
= next_file
+
878 strlen(next_file
) - 2;
881 /* cwd is only used if showacls is on */
882 client_set_cwd(next_file
);
885 if (!showacls
) /* don't disturbe the showacls output */
886 d_printf("\n%s\n",next_file
);
888 *save_ch
= CLI_DIRSEP_CHAR
;
892 TALLOC_FREE(targetpath
);
896 if (cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetpath
)) {
898 status
= cli_list(targetcli
, targetpath
, attribute
,
899 do_list_helper
, targetcli
);
900 if (!NT_STATUS_IS_OK(status
)) {
901 d_printf("%s listing %s\n",
902 nt_errstr(status
), targetpath
);
905 TALLOC_FREE(targetpath
);
907 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
908 ret_status
= cli_nt_error(cli
);
913 reset_do_list_queue();
917 /****************************************************************************
918 Get a directory listing.
919 ****************************************************************************/
921 static int cmd_dir(void)
923 TALLOC_CTX
*ctx
= talloc_tos();
924 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
931 mask
= talloc_strdup(ctx
, client_get_cur_dir());
936 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
938 if (*buf
== CLI_DIRSEP_CHAR
) {
939 mask
= talloc_strdup(ctx
, buf
);
941 mask
= talloc_asprintf_append(mask
, "%s", buf
);
944 mask
= talloc_asprintf_append(mask
, "*");
951 /* cwd is only used if showacls is on */
952 client_set_cwd(client_get_cur_dir());
955 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
956 if (!NT_STATUS_IS_OK(status
)) {
962 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
967 /****************************************************************************
968 Get a directory listing.
969 ****************************************************************************/
971 static int cmd_du(void)
973 TALLOC_CTX
*ctx
= talloc_tos();
974 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
981 mask
= talloc_strdup(ctx
, client_get_cur_dir());
985 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
986 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
992 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
994 if (*buf
== CLI_DIRSEP_CHAR
) {
995 mask
= talloc_strdup(ctx
, buf
);
997 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1000 mask
= talloc_strdup(ctx
, "*");
1003 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1004 if (!NT_STATUS_IS_OK(status
)) {
1010 d_printf("Total number of bytes: %.0f\n", dir_total
);
1015 static int cmd_echo(void)
1017 TALLOC_CTX
*ctx
= talloc_tos();
1022 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1023 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1024 d_printf("echo <num> <data>\n");
1028 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1030 if (!NT_STATUS_IS_OK(status
)) {
1031 d_printf("echo failed: %s\n", nt_errstr(status
));
1038 /****************************************************************************
1039 Get a file from rname to lname
1040 ****************************************************************************/
1042 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1044 int *pfd
= (int *)priv
;
1045 if (writefile(*pfd
, buf
, n
) == -1) {
1046 return map_nt_error_from_unix(errno
);
1048 return NT_STATUS_OK
;
1051 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1053 TALLOC_CTX
*ctx
= talloc_tos();
1056 bool newhandle
= false;
1057 struct timespec tp_start
;
1061 SMB_OFF_T nread
= 0;
1063 struct cli_state
*targetcli
= NULL
;
1064 char *targetname
= NULL
;
1068 lname
= talloc_strdup(ctx
, lname_in
);
1077 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
, &targetname
) ) {
1078 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1082 clock_gettime_mono(&tp_start
);
1084 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1085 if (!NT_STATUS_IS_OK(status
)) {
1086 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1091 if(!strcmp(lname
,"-")) {
1092 handle
= fileno(stdout
);
1095 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1097 start
= sys_lseek(handle
, 0, SEEK_END
);
1099 d_printf("Error seeking local file\n");
1104 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1109 d_printf("Error opening local file %s\n",lname
);
1114 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1116 if (!NT_STATUS_IS_OK(status
)) {
1117 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1119 if(!NT_STATUS_IS_OK(status
)) {
1120 d_printf("getattrib: %s\n", nt_errstr(status
));
1125 DEBUG(1,("getting file %s of size %.0f as %s ",
1126 rname
, (double)size
, lname
));
1128 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1129 writefile_sink
, (void *)&handle
, &nread
);
1130 if (!NT_STATUS_IS_OK(status
)) {
1131 d_fprintf(stderr
, "parallel_read returned %s\n",
1133 cli_close(targetcli
, fnum
);
1137 status
= cli_close(targetcli
, fnum
);
1138 if (!NT_STATUS_IS_OK(status
)) {
1139 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1147 if (archive_level
>= 2 && (attr
& aARCH
)) {
1148 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
1152 struct timespec tp_end
;
1155 clock_gettime_mono(&tp_end
);
1156 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1157 get_total_time_ms
+= this_time
;
1158 get_total_size
+= nread
;
1160 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1161 nread
/ (1.024*this_time
+ 1.0e-4),
1162 get_total_size
/ (1.024*get_total_time_ms
)));
1165 TALLOC_FREE(targetname
);
1169 /****************************************************************************
1171 ****************************************************************************/
1173 static int cmd_get(void)
1175 TALLOC_CTX
*ctx
= talloc_tos();
1180 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1185 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1186 d_printf("get <filename> [localname]\n");
1189 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1193 rname
= clean_name(ctx
, rname
);
1198 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1203 return do_get(rname
, lname
, false);
1206 /****************************************************************************
1207 Do an mget operation on one file.
1208 ****************************************************************************/
1210 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1213 TALLOC_CTX
*ctx
= talloc_tos();
1214 NTSTATUS status
= NT_STATUS_OK
;
1217 char *saved_curdir
= NULL
;
1218 char *mget_mask
= NULL
;
1219 char *new_cd
= NULL
;
1222 return NT_STATUS_OK
;
1225 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1226 return NT_STATUS_OK
;
1229 d_printf("mget aborted\n");
1230 return NT_STATUS_UNSUCCESSFUL
;
1233 if (finfo
->mode
& aDIR
) {
1234 if (asprintf(&quest
,
1235 "Get directory %s? ",finfo
->name
) < 0) {
1236 return NT_STATUS_NO_MEMORY
;
1239 if (asprintf(&quest
,
1240 "Get file %s? ",finfo
->name
) < 0) {
1241 return NT_STATUS_NO_MEMORY
;
1245 if (prompt
&& !yesno(quest
)) {
1247 return NT_STATUS_OK
;
1251 if (!(finfo
->mode
& aDIR
)) {
1252 rname
= talloc_asprintf(ctx
,
1254 client_get_cur_dir(),
1257 return NT_STATUS_NO_MEMORY
;
1259 do_get(rname
, finfo
->name
, false);
1261 return NT_STATUS_OK
;
1264 /* handle directories */
1265 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1266 if (!saved_curdir
) {
1267 return NT_STATUS_NO_MEMORY
;
1270 new_cd
= talloc_asprintf(ctx
,
1272 client_get_cur_dir(),
1276 return NT_STATUS_NO_MEMORY
;
1278 client_set_cur_dir(new_cd
);
1280 string_replace(finfo
->name
,'\\','/');
1282 strlower_m(finfo
->name
);
1285 if (!directory_exist(finfo
->name
) &&
1286 mkdir(finfo
->name
,0777) != 0) {
1287 d_printf("failed to create directory %s\n",finfo
->name
);
1288 client_set_cur_dir(saved_curdir
);
1289 return map_nt_error_from_unix(errno
);
1292 if (chdir(finfo
->name
) != 0) {
1293 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1294 client_set_cur_dir(saved_curdir
);
1295 return map_nt_error_from_unix(errno
);
1298 mget_mask
= talloc_asprintf(ctx
,
1300 client_get_cur_dir());
1303 return NT_STATUS_NO_MEMORY
;
1306 status
= do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,false, true);
1307 if (!NT_STATUS_IS_OK(status
)) {
1311 if (chdir("..") == -1) {
1312 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1314 return map_nt_error_from_unix(errno
);
1316 client_set_cur_dir(saved_curdir
);
1317 TALLOC_FREE(mget_mask
);
1318 TALLOC_FREE(saved_curdir
);
1319 TALLOC_FREE(new_cd
);
1320 return NT_STATUS_OK
;
1323 /****************************************************************************
1324 View the file using the pager.
1325 ****************************************************************************/
1327 static int cmd_more(void)
1329 TALLOC_CTX
*ctx
= talloc_tos();
1333 char *pager_cmd
= NULL
;
1338 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1343 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1347 fd
= mkstemp(lname
);
1349 d_printf("failed to create temporary file for more\n");
1354 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1355 d_printf("more <filename>\n");
1359 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1363 rname
= clean_name(ctx
,rname
);
1368 rc
= do_get(rname
, lname
, false);
1370 pager
=getenv("PAGER");
1372 pager_cmd
= talloc_asprintf(ctx
,
1374 (pager
? pager
:PAGER
),
1379 if (system(pager_cmd
) == -1) {
1380 d_printf("system command '%s' returned -1\n",
1388 /****************************************************************************
1390 ****************************************************************************/
1392 static int cmd_mget(void)
1394 TALLOC_CTX
*ctx
= talloc_tos();
1395 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1396 char *mget_mask
= NULL
;
1398 NTSTATUS status
= NT_STATUS_OK
;
1406 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1408 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1412 if (*buf
== CLI_DIRSEP_CHAR
) {
1413 mget_mask
= talloc_strdup(ctx
, buf
);
1415 mget_mask
= talloc_asprintf_append(mget_mask
,
1421 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1422 if (!NT_STATUS_IS_OK(status
)) {
1427 if (mget_mask
== NULL
) {
1428 d_printf("nothing to mget\n");
1433 mget_mask
= talloc_asprintf(ctx
,
1435 client_get_cur_dir());
1439 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1440 if (!NT_STATUS_IS_OK(status
)) {
1448 /****************************************************************************
1449 Make a directory of name "name".
1450 ****************************************************************************/
1452 static bool do_mkdir(const char *name
)
1454 TALLOC_CTX
*ctx
= talloc_tos();
1455 struct cli_state
*targetcli
;
1456 char *targetname
= NULL
;
1459 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
, &targetname
)) {
1460 d_printf("mkdir %s: %s\n", name
, cli_errstr(cli
));
1464 status
= cli_mkdir(targetcli
, targetname
);
1465 if (!NT_STATUS_IS_OK(status
)) {
1466 d_printf("%s making remote directory %s\n",
1467 nt_errstr(status
),name
);
1474 /****************************************************************************
1475 Show 8.3 name of a file.
1476 ****************************************************************************/
1478 static bool do_altname(const char *name
)
1483 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1484 if (!NT_STATUS_IS_OK(status
)) {
1485 d_printf("%s getting alt name for %s\n",
1486 nt_errstr(status
),name
);
1489 d_printf("%s\n", altname
);
1494 /****************************************************************************
1496 ****************************************************************************/
1498 static int cmd_quit(void)
1506 /****************************************************************************
1508 ****************************************************************************/
1510 static int cmd_mkdir(void)
1512 TALLOC_CTX
*ctx
= talloc_tos();
1516 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1521 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1523 d_printf("mkdir <dirname>\n");
1527 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1535 struct cli_state
*targetcli
;
1536 char *targetname
= NULL
;
1540 ddir2
= talloc_strdup(ctx
, "");
1545 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
1549 ddir
= talloc_strdup(ctx
, targetname
);
1553 trim_char(ddir
,'.','\0');
1554 p
= strtok_r(ddir
, "/\\", &saveptr
);
1556 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1560 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1563 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1567 p
= strtok_r(NULL
, "/\\", &saveptr
);
1576 /****************************************************************************
1578 ****************************************************************************/
1580 static int cmd_altname(void)
1582 TALLOC_CTX
*ctx
= talloc_tos();
1586 name
= talloc_strdup(ctx
, client_get_cur_dir());
1591 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1592 d_printf("altname <file>\n");
1595 name
= talloc_asprintf_append(name
, "%s", buf
);
1603 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1605 char *attrs
= TALLOC_ZERO_ARRAY(mem_ctx
, char, 17);
1608 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1609 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1612 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1615 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1618 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1621 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1624 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1627 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1630 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1633 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1636 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1639 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1642 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1645 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1652 /****************************************************************************
1653 Show all info we can get
1654 ****************************************************************************/
1656 static int do_allinfo(const char *name
)
1659 struct timespec b_time
, a_time
, m_time
, c_time
;
1665 unsigned int num_streams
;
1666 struct stream_struct
*streams
;
1672 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1673 if (!NT_STATUS_IS_OK(status
)) {
1674 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1678 d_printf("altname: %s\n", altname
);
1680 status
= cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1681 &size
, &mode
, &ino
);
1682 if (!NT_STATUS_IS_OK(status
)) {
1683 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1688 unix_timespec_to_nt_time(&tmp
, b_time
);
1689 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1691 unix_timespec_to_nt_time(&tmp
, a_time
);
1692 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1694 unix_timespec_to_nt_time(&tmp
, m_time
);
1695 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1697 unix_timespec_to_nt_time(&tmp
, c_time
);
1698 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1700 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1702 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1704 if (!NT_STATUS_IS_OK(status
)) {
1705 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1710 for (i
=0; i
<num_streams
; i
++) {
1711 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1712 (unsigned long long)streams
[i
].size
);
1715 status
= cli_open(cli
, name
, O_RDONLY
, DENY_NONE
, &fnum
);
1716 if (!NT_STATUS_IS_OK(status
)) {
1718 * Ignore failure, it does not hurt if we can't list
1723 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1724 true, &snapshots
, &num_snapshots
);
1725 if (!NT_STATUS_IS_OK(status
)) {
1726 cli_close(cli
, fnum
);
1730 for (i
=0; i
<num_snapshots
; i
++) {
1733 d_printf("%s\n", snapshots
[i
]);
1734 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1735 snapshots
[i
], name
);
1736 status
= cli_qpathinfo2(cli
, snap_name
, &b_time
, &a_time
,
1737 &m_time
, &c_time
, &size
,
1739 if (!NT_STATUS_IS_OK(status
)) {
1740 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1741 snap_name
, nt_errstr(status
));
1742 TALLOC_FREE(snap_name
);
1745 unix_timespec_to_nt_time(&tmp
, b_time
);
1746 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1747 unix_timespec_to_nt_time(&tmp
, a_time
);
1748 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1749 unix_timespec_to_nt_time(&tmp
, m_time
);
1750 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1751 unix_timespec_to_nt_time(&tmp
, c_time
);
1752 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1753 d_printf("size: %d\n", (int)size
);
1756 TALLOC_FREE(snapshots
);
1761 /****************************************************************************
1762 Show all info we can get
1763 ****************************************************************************/
1765 static int cmd_allinfo(void)
1767 TALLOC_CTX
*ctx
= talloc_tos();
1771 name
= talloc_strdup(ctx
, client_get_cur_dir());
1776 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1777 d_printf("allinfo <file>\n");
1780 name
= talloc_asprintf_append(name
, "%s", buf
);
1790 /****************************************************************************
1792 ****************************************************************************/
1794 static int do_put(const char *rname
, const char *lname
, bool reput
)
1796 TALLOC_CTX
*ctx
= talloc_tos();
1799 SMB_OFF_T start
= 0;
1801 struct timespec tp_start
;
1802 struct cli_state
*targetcli
;
1803 char *targetname
= NULL
;
1804 struct push_state state
;
1807 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
, &targetname
)) {
1808 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1812 clock_gettime_mono(&tp_start
);
1815 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1816 if (NT_STATUS_IS_OK(status
)) {
1817 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1818 targetcli
, fnum
, NULL
,
1820 NULL
, NULL
, NULL
)) &&
1821 !NT_STATUS_IS_OK(cli_getattrE(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
))) {
1822 d_printf("getattrib: %s\n",cli_errstr(cli
));
1827 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1830 if (!NT_STATUS_IS_OK(status
)) {
1831 d_printf("%s opening remote file %s\n",cli_errstr(targetcli
),rname
);
1835 /* allow files to be piped into smbclient
1838 Note that in this case this function will exit(0) rather
1840 if (!strcmp(lname
, "-")) {
1842 /* size of file is not known */
1844 f
= x_fopen(lname
,O_RDONLY
, 0);
1846 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1847 d_printf("Error seeking local file\n");
1855 d_printf("Error opening local file %s\n",lname
);
1859 DEBUG(1,("putting file %s as %s ",lname
,
1862 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1867 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1869 if (!NT_STATUS_IS_OK(status
)) {
1870 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1874 status
= cli_close(targetcli
, fnum
);
1875 if (!NT_STATUS_IS_OK(status
)) {
1876 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1889 struct timespec tp_end
;
1892 clock_gettime_mono(&tp_end
);
1893 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1894 put_total_time_ms
+= this_time
;
1895 put_total_size
+= state
.nread
;
1897 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1898 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1899 put_total_size
/ (1.024*put_total_time_ms
)));
1910 /****************************************************************************
1912 ****************************************************************************/
1914 static int cmd_put(void)
1916 TALLOC_CTX
*ctx
= talloc_tos();
1921 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1926 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1927 d_printf("put <filename>\n");
1931 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1932 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1934 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1940 rname
= clean_name(ctx
, rname
);
1947 /* allow '-' to represent stdin
1948 jdblair, 24.jun.98 */
1949 if (!file_exist_stat(lname
, &st
, false) &&
1950 (strcmp(lname
,"-"))) {
1951 d_printf("%s does not exist\n",lname
);
1956 return do_put(rname
, lname
, false);
1959 /*************************************
1960 File list structure.
1961 *************************************/
1963 static struct file_list
{
1964 struct file_list
*prev
, *next
;
1969 /****************************************************************************
1970 Free a file_list structure.
1971 ****************************************************************************/
1973 static void free_file_list (struct file_list
*l_head
)
1975 struct file_list
*list
, *next
;
1977 for (list
= l_head
; list
; list
= next
) {
1979 DLIST_REMOVE(l_head
, list
);
1980 SAFE_FREE(list
->file_path
);
1985 /****************************************************************************
1986 Seek in a directory/file list until you get something that doesn't start with
1988 ****************************************************************************/
1990 static bool seek_list(struct file_list
*list
, char *name
)
1993 trim_string(list
->file_path
,"./","\n");
1994 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2003 /****************************************************************************
2004 Set the file selection mask.
2005 ****************************************************************************/
2007 static int cmd_select(void)
2009 TALLOC_CTX
*ctx
= talloc_tos();
2010 char *new_fs
= NULL
;
2011 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2014 client_set_fileselection(new_fs
);
2016 client_set_fileselection("");
2021 /****************************************************************************
2022 Recursive file matching function act as find
2023 match must be always set to true when calling this function
2024 ****************************************************************************/
2026 static int file_find(struct file_list
**list
, const char *directory
,
2027 const char *expression
, bool match
)
2029 SMB_STRUCT_DIR
*dir
;
2030 struct file_list
*entry
;
2031 struct stat statbuf
;
2037 dir
= sys_opendir(directory
);
2041 while ((dname
= readdirname(dir
))) {
2042 if (!strcmp("..", dname
))
2044 if (!strcmp(".", dname
))
2047 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2052 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2054 ret
= stat(path
, &statbuf
);
2056 if (S_ISDIR(statbuf
.st_mode
)) {
2058 ret
= file_find(list
, path
, expression
, false);
2061 d_printf("file_find: cannot stat file %s\n", path
);
2070 entry
= SMB_MALLOC_P(struct file_list
);
2072 d_printf("Out of memory in file_find\n");
2076 entry
->file_path
= path
;
2077 entry
->isdir
= isdir
;
2078 DLIST_ADD(*list
, entry
);
2088 /****************************************************************************
2090 ****************************************************************************/
2092 static int cmd_mput(void)
2094 TALLOC_CTX
*ctx
= talloc_tos();
2097 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2099 struct file_list
*temp_list
;
2100 char *quest
, *lname
, *rname
;
2104 ret
= file_find(&file_list
, ".", p
, true);
2106 free_file_list(file_list
);
2114 for (temp_list
= file_list
; temp_list
;
2115 temp_list
= temp_list
->next
) {
2118 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2121 trim_string(lname
, "./", "/");
2123 /* check if it's a directory */
2124 if (temp_list
->isdir
) {
2125 /* if (!recurse) continue; */
2128 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2131 if (prompt
&& !yesno(quest
)) { /* No */
2132 /* Skip the directory */
2133 lname
[strlen(lname
)-1] = '/';
2134 if (!seek_list(temp_list
, lname
))
2138 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2141 normalize_name(rname
);
2142 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2144 DEBUG (0, ("Unable to make dir, skipping..."));
2145 /* Skip the directory */
2146 lname
[strlen(lname
)-1] = '/';
2147 if (!seek_list(temp_list
, lname
)) {
2155 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2158 if (prompt
&& !yesno(quest
)) {
2165 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2170 normalize_name(rname
);
2172 do_put(rname
, lname
, false);
2174 free_file_list(file_list
);
2183 /****************************************************************************
2185 ****************************************************************************/
2187 static int do_cancel(int job
)
2189 if (cli_printjob_del(cli
, job
)) {
2190 d_printf("Job %d cancelled\n",job
);
2193 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2198 /****************************************************************************
2200 ****************************************************************************/
2202 static int cmd_cancel(void)
2204 TALLOC_CTX
*ctx
= talloc_tos();
2208 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2209 d_printf("cancel <jobid> ...\n");
2215 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2220 /****************************************************************************
2222 ****************************************************************************/
2224 static int cmd_print(void)
2226 TALLOC_CTX
*ctx
= talloc_tos();
2231 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2232 d_printf("print <filename>\n");
2236 rname
= talloc_strdup(ctx
, lname
);
2240 p
= strrchr_m(rname
,'/');
2242 rname
= talloc_asprintf(ctx
,
2247 if (strequal(lname
,"-")) {
2248 rname
= talloc_asprintf(ctx
,
2256 return do_put(rname
, lname
, false);
2259 /****************************************************************************
2260 Show a print queue entry.
2261 ****************************************************************************/
2263 static void queue_fn(struct print_job_info
*p
)
2265 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2268 /****************************************************************************
2270 ****************************************************************************/
2272 static int cmd_queue(void)
2274 cli_print_queue(cli
, queue_fn
);
2278 /****************************************************************************
2280 ****************************************************************************/
2282 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2285 TALLOC_CTX
*ctx
= talloc_tos();
2289 mask
= talloc_asprintf(ctx
,
2295 return NT_STATUS_NO_MEMORY
;
2298 if (finfo
->mode
& aDIR
) {
2300 return NT_STATUS_OK
;
2303 status
= cli_unlink(cli_state
, mask
, aSYSTEM
| aHIDDEN
);
2304 if (!NT_STATUS_IS_OK(status
)) {
2305 d_printf("%s deleting remote file %s\n",
2306 nt_errstr(status
), mask
);
2312 /****************************************************************************
2314 ****************************************************************************/
2316 static int cmd_del(void)
2318 TALLOC_CTX
*ctx
= talloc_tos();
2321 NTSTATUS status
= NT_STATUS_OK
;
2322 uint16 attribute
= aSYSTEM
| aHIDDEN
;
2328 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2332 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2333 d_printf("del <filename>\n");
2336 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2341 status
= do_list(mask
,attribute
,do_del
,false,false);
2342 if (!NT_STATUS_IS_OK(status
)) {
2348 /****************************************************************************
2349 Wildcard delete some files.
2350 ****************************************************************************/
2352 static int cmd_wdel(void)
2354 TALLOC_CTX
*ctx
= talloc_tos();
2358 struct cli_state
*targetcli
;
2359 char *targetname
= NULL
;
2362 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2363 d_printf("wdel 0x<attrib> <wcard>\n");
2367 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2369 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2370 d_printf("wdel 0x<attrib> <wcard>\n");
2374 mask
= talloc_asprintf(ctx
, "%s%s",
2375 client_get_cur_dir(),
2381 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2382 d_printf("cmd_wdel %s: %s\n", mask
, cli_errstr(cli
));
2386 status
= cli_unlink(targetcli
, targetname
, attribute
);
2387 if (!NT_STATUS_IS_OK(status
)) {
2388 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2394 /****************************************************************************
2395 ****************************************************************************/
2397 static int cmd_open(void)
2399 TALLOC_CTX
*ctx
= talloc_tos();
2402 char *targetname
= NULL
;
2403 struct cli_state
*targetcli
;
2404 uint16_t fnum
= (uint16_t)-1;
2406 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2407 d_printf("open <filename>\n");
2410 mask
= talloc_asprintf(ctx
,
2412 client_get_cur_dir(),
2418 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2419 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
2423 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli
, targetname
, 0,
2424 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2425 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
2426 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli
, targetname
, 0,
2428 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
2429 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2431 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2434 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2439 static int cmd_posix_encrypt(void)
2441 TALLOC_CTX
*ctx
= talloc_tos();
2442 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2444 if (cli
->use_kerberos
) {
2445 status
= cli_gss_smb_encryption_start(cli
);
2447 char *domain
= NULL
;
2449 char *password
= NULL
;
2451 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2452 d_printf("posix_encrypt domain user password\n");
2456 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2457 d_printf("posix_encrypt domain user password\n");
2461 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2462 d_printf("posix_encrypt domain user password\n");
2466 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2472 if (!NT_STATUS_IS_OK(status
)) {
2473 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2475 d_printf("encryption on\n");
2482 /****************************************************************************
2483 ****************************************************************************/
2485 static int cmd_posix_open(void)
2487 TALLOC_CTX
*ctx
= talloc_tos();
2490 char *targetname
= NULL
;
2491 struct cli_state
*targetcli
;
2495 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2496 d_printf("posix_open <filename> 0<mode>\n");
2499 mask
= talloc_asprintf(ctx
,
2501 client_get_cur_dir(),
2507 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2508 d_printf("posix_open <filename> 0<mode>\n");
2511 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2513 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2514 d_printf("posix_open %s: %s\n", mask
, cli_errstr(cli
));
2518 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
, &fnum
))) {
2519 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDONLY
, mode
, &fnum
))) {
2520 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2522 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2525 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2531 static int cmd_posix_mkdir(void)
2533 TALLOC_CTX
*ctx
= talloc_tos();
2536 char *targetname
= NULL
;
2537 struct cli_state
*targetcli
;
2540 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2541 d_printf("posix_mkdir <filename> 0<mode>\n");
2544 mask
= talloc_asprintf(ctx
,
2546 client_get_cur_dir(),
2552 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2553 d_printf("posix_mkdir <filename> 0<mode>\n");
2556 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2558 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2559 d_printf("posix_mkdir %s: %s\n", mask
, cli_errstr(cli
));
2563 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli
, targetname
, mode
))) {
2564 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2566 d_printf("posix_mkdir created directory %s\n", targetname
);
2571 static int cmd_posix_unlink(void)
2573 TALLOC_CTX
*ctx
= talloc_tos();
2576 char *targetname
= NULL
;
2577 struct cli_state
*targetcli
;
2579 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2580 d_printf("posix_unlink <filename>\n");
2583 mask
= talloc_asprintf(ctx
,
2585 client_get_cur_dir(),
2591 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2592 d_printf("posix_unlink %s: %s\n", mask
, cli_errstr(cli
));
2596 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli
, targetname
))) {
2597 d_printf("Failed to unlink file %s. %s\n", targetname
, cli_errstr(cli
));
2599 d_printf("posix_unlink deleted file %s\n", targetname
);
2605 static int cmd_posix_rmdir(void)
2607 TALLOC_CTX
*ctx
= talloc_tos();
2610 char *targetname
= NULL
;
2611 struct cli_state
*targetcli
;
2613 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2614 d_printf("posix_rmdir <filename>\n");
2617 mask
= talloc_asprintf(ctx
,
2619 client_get_cur_dir(),
2625 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2626 d_printf("posix_rmdir %s: %s\n", mask
, cli_errstr(cli
));
2630 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli
, targetname
))) {
2631 d_printf("Failed to unlink directory %s. %s\n", targetname
, cli_errstr(cli
));
2633 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2639 static int cmd_close(void)
2641 TALLOC_CTX
*ctx
= talloc_tos();
2645 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2646 d_printf("close <fnum>\n");
2651 /* We really should use the targetcli here.... */
2652 if (!NT_STATUS_IS_OK(cli_close(cli
, fnum
))) {
2653 d_printf("close %d: %s\n", fnum
, cli_errstr(cli
));
2659 static int cmd_posix(void)
2661 TALLOC_CTX
*ctx
= talloc_tos();
2662 uint16 major
, minor
;
2663 uint32 caplow
, caphigh
;
2667 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2668 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2672 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2674 if (!NT_STATUS_IS_OK(status
)) {
2675 d_printf("Can't get UNIX CIFS extensions version from "
2676 "server: %s\n", nt_errstr(status
));
2680 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2682 caps
= talloc_strdup(ctx
, "");
2686 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2687 caps
= talloc_asprintf_append(caps
, "locks ");
2692 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2693 caps
= talloc_asprintf_append(caps
, "acls ");
2698 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2699 caps
= talloc_asprintf_append(caps
, "eas ");
2704 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2705 caps
= talloc_asprintf_append(caps
, "pathnames ");
2710 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2711 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2716 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2717 caps
= talloc_asprintf_append(caps
, "large_read ");
2722 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2723 caps
= talloc_asprintf_append(caps
, "large_write ");
2728 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2729 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2734 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2735 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2741 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2742 caps
[strlen(caps
)-1] = '\0';
2745 d_printf("Server supports CIFS capabilities %s\n", caps
);
2747 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2749 if (!NT_STATUS_IS_OK(status
)) {
2750 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2755 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2756 CLI_DIRSEP_CHAR
= '/';
2757 *CLI_DIRSEP_STR
= '/';
2758 client_set_cur_dir(CLI_DIRSEP_STR
);
2764 static int cmd_lock(void)
2766 TALLOC_CTX
*ctx
= talloc_tos();
2768 uint64_t start
, len
;
2769 enum brl_type lock_type
;
2772 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2773 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2778 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2779 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2783 if (*buf
== 'r' || *buf
== 'R') {
2784 lock_type
= READ_LOCK
;
2785 } else if (*buf
== 'w' || *buf
== 'W') {
2786 lock_type
= WRITE_LOCK
;
2788 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2792 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2793 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2797 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2799 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2800 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2804 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2806 if (!NT_STATUS_IS_OK(cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
))) {
2807 d_printf("lock failed %d: %s\n", fnum
, cli_errstr(cli
));
2813 static int cmd_unlock(void)
2815 TALLOC_CTX
*ctx
= talloc_tos();
2817 uint64_t start
, len
;
2820 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2821 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2826 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2827 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2831 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2833 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2834 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2838 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2840 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli
, fnum
, start
, len
))) {
2841 d_printf("unlock failed %d: %s\n", fnum
, cli_errstr(cli
));
2848 /****************************************************************************
2850 ****************************************************************************/
2852 static int cmd_rmdir(void)
2854 TALLOC_CTX
*ctx
= talloc_tos();
2857 char *targetname
= NULL
;
2858 struct cli_state
*targetcli
;
2860 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2861 d_printf("rmdir <dirname>\n");
2864 mask
= talloc_asprintf(ctx
,
2866 client_get_cur_dir(),
2872 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2873 d_printf("rmdir %s: %s\n", mask
, cli_errstr(cli
));
2877 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli
, targetname
))) {
2878 d_printf("%s removing remote directory file %s\n",
2879 cli_errstr(targetcli
),mask
);
2885 /****************************************************************************
2887 ****************************************************************************/
2889 static int cmd_link(void)
2891 TALLOC_CTX
*ctx
= talloc_tos();
2892 char *oldname
= NULL
;
2893 char *newname
= NULL
;
2896 char *targetname
= NULL
;
2897 struct cli_state
*targetcli
;
2899 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2900 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2901 d_printf("link <oldname> <newname>\n");
2904 oldname
= talloc_asprintf(ctx
,
2906 client_get_cur_dir(),
2911 newname
= talloc_asprintf(ctx
,
2913 client_get_cur_dir(),
2919 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
, &targetname
)) {
2920 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2924 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2925 d_printf("Server doesn't support UNIX CIFS calls.\n");
2929 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli
, targetname
, newname
))) {
2930 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
2936 /****************************************************************************
2938 ****************************************************************************/
2940 static int cmd_readlink(void)
2942 TALLOC_CTX
*ctx
= talloc_tos();
2945 char *targetname
= NULL
;
2946 char linkname
[PATH_MAX
+1];
2947 struct cli_state
*targetcli
;
2949 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2950 d_printf("readlink <name>\n");
2953 name
= talloc_asprintf(ctx
,
2955 client_get_cur_dir(),
2961 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
, &targetname
)) {
2962 d_printf("readlink %s: %s\n", name
, cli_errstr(cli
));
2966 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2967 d_printf("Server doesn't support UNIX CIFS calls.\n");
2971 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli
, name
,
2972 linkname
, PATH_MAX
+1))) {
2973 d_printf("%s readlink on file %s\n",
2974 cli_errstr(targetcli
), name
);
2978 d_printf("%s -> %s\n", name
, linkname
);
2984 /****************************************************************************
2986 ****************************************************************************/
2988 static int cmd_symlink(void)
2990 TALLOC_CTX
*ctx
= talloc_tos();
2991 char *oldname
= NULL
;
2992 char *newname
= NULL
;
2995 struct cli_state
*newcli
;
2997 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2998 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2999 d_printf("symlink <oldname> <newname>\n");
3002 /* Oldname (link target) must be an untouched blob. */
3005 newname
= talloc_asprintf(ctx
,
3007 client_get_cur_dir(),
3013 /* New name must be present in share namespace. */
3014 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, newname
, &newcli
, &newname
)) {
3015 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
3019 if (!SERVER_HAS_UNIX_CIFS(newcli
)) {
3020 d_printf("Server doesn't support UNIX CIFS calls.\n");
3024 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli
, oldname
, newname
))) {
3025 d_printf("%s symlinking files (%s -> %s)\n",
3026 cli_errstr(newcli
), newname
, newname
);
3033 /****************************************************************************
3035 ****************************************************************************/
3037 static int cmd_chmod(void)
3039 TALLOC_CTX
*ctx
= talloc_tos();
3043 char *targetname
= NULL
;
3044 struct cli_state
*targetcli
;
3047 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3048 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3049 d_printf("chmod mode file\n");
3052 src
= talloc_asprintf(ctx
,
3054 client_get_cur_dir(),
3060 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3062 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3063 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
3067 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3068 d_printf("Server doesn't support UNIX CIFS calls.\n");
3072 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli
, targetname
, mode
))) {
3073 d_printf("%s chmod file %s 0%o\n",
3074 cli_errstr(targetcli
), src
, (unsigned int)mode
);
3081 static const char *filetype_to_str(mode_t mode
)
3083 if (S_ISREG(mode
)) {
3084 return "regular file";
3085 } else if (S_ISDIR(mode
)) {
3089 if (S_ISCHR(mode
)) {
3090 return "character device";
3094 if (S_ISBLK(mode
)) {
3095 return "block device";
3099 if (S_ISFIFO(mode
)) {
3104 if (S_ISLNK(mode
)) {
3105 return "symbolic link";
3109 if (S_ISSOCK(mode
)) {
3116 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3125 static char *unix_mode_to_str(char *s
, mode_t m
)
3128 const char *str
= filetype_to_str(m
);
3144 *p
++ = str
[1] == 'y' ? 'l' : 's';
3151 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3152 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3153 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3154 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3155 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3156 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3157 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3158 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3159 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3164 /****************************************************************************
3165 Utility function for UNIX getfacl.
3166 ****************************************************************************/
3168 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3170 fstrcpy(permstr
, "---");
3171 if (perms
& SMB_POSIX_ACL_READ
) {
3174 if (perms
& SMB_POSIX_ACL_WRITE
) {
3177 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3183 /****************************************************************************
3185 ****************************************************************************/
3187 static int cmd_getfacl(void)
3189 TALLOC_CTX
*ctx
= talloc_tos();
3192 char *targetname
= NULL
;
3193 struct cli_state
*targetcli
;
3194 uint16 major
, minor
;
3195 uint32 caplow
, caphigh
;
3196 char *retbuf
= NULL
;
3198 SMB_STRUCT_STAT sbuf
;
3199 uint16 num_file_acls
= 0;
3200 uint16 num_dir_acls
= 0;
3204 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3205 d_printf("getfacl filename\n");
3208 src
= talloc_asprintf(ctx
,
3210 client_get_cur_dir(),
3216 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3217 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3221 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3222 d_printf("Server doesn't support UNIX CIFS calls.\n");
3226 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3228 if (!NT_STATUS_IS_OK(status
)) {
3229 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3234 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3235 d_printf("This server supports UNIX extensions "
3236 "but doesn't support POSIX ACLs.\n");
3240 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3241 d_printf("%s getfacl doing a stat on file %s\n",
3242 cli_errstr(targetcli
), src
);
3246 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
))) {
3247 d_printf("%s getfacl file %s\n",
3248 cli_errstr(targetcli
), src
);
3252 /* ToDo : Print out the ACL values. */
3253 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3254 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3255 src
, (unsigned int)CVAL(retbuf
,0) );
3259 num_file_acls
= SVAL(retbuf
,2);
3260 num_dir_acls
= SVAL(retbuf
,4);
3261 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3262 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3264 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3265 (unsigned int)rb_size
);
3269 d_printf("# file: %s\n", src
);
3270 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3272 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3273 d_printf("No acls found.\n");
3276 for (i
= 0; i
< num_file_acls
; i
++) {
3279 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3280 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3283 case SMB_POSIX_ACL_USER_OBJ
:
3286 case SMB_POSIX_ACL_USER
:
3287 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3288 d_printf("user:%u:", uorg
);
3290 case SMB_POSIX_ACL_GROUP_OBJ
:
3291 d_printf("group::");
3293 case SMB_POSIX_ACL_GROUP
:
3294 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3295 d_printf("group:%u:", uorg
);
3297 case SMB_POSIX_ACL_MASK
:
3300 case SMB_POSIX_ACL_OTHER
:
3301 d_printf("other::");
3304 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3305 src
, (unsigned int)tagtype
);
3310 d_printf("%s\n", perms_to_string(permstring
, perms
));
3313 for (i
= 0; i
< num_dir_acls
; i
++) {
3316 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3317 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3320 case SMB_POSIX_ACL_USER_OBJ
:
3321 d_printf("default:user::");
3323 case SMB_POSIX_ACL_USER
:
3324 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3325 d_printf("default:user:%u:", uorg
);
3327 case SMB_POSIX_ACL_GROUP_OBJ
:
3328 d_printf("default:group::");
3330 case SMB_POSIX_ACL_GROUP
:
3331 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3332 d_printf("default:group:%u:", uorg
);
3334 case SMB_POSIX_ACL_MASK
:
3335 d_printf("default:mask::");
3337 case SMB_POSIX_ACL_OTHER
:
3338 d_printf("default:other::");
3341 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3342 src
, (unsigned int)tagtype
);
3347 d_printf("%s\n", perms_to_string(permstring
, perms
));
3353 static void printf_cb(const char *buf
, void *private_data
)
3358 /****************************************************************************
3359 Get the EA list of a file
3360 ****************************************************************************/
3362 static int cmd_geteas(void)
3364 TALLOC_CTX
*ctx
= talloc_tos();
3367 char *targetname
= NULL
;
3368 struct cli_state
*targetcli
;
3371 struct ea_struct
*eas
;
3373 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3374 d_printf("geteas filename\n");
3377 src
= talloc_asprintf(ctx
,
3379 client_get_cur_dir(),
3385 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3387 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3391 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3393 if (!NT_STATUS_IS_OK(status
)) {
3394 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3398 for (i
=0; i
<num_eas
; i
++) {
3399 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3400 dump_data_cb(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3410 /****************************************************************************
3412 ****************************************************************************/
3414 static int cmd_setea(void)
3416 TALLOC_CTX
*ctx
= talloc_tos();
3419 char *eaname
= NULL
;
3420 char *eavalue
= NULL
;
3421 char *targetname
= NULL
;
3422 struct cli_state
*targetcli
;
3425 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3426 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3427 d_printf("setea filename eaname value\n");
3430 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3431 eavalue
= talloc_strdup(ctx
, "");
3433 src
= talloc_asprintf(ctx
,
3435 client_get_cur_dir(),
3441 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3443 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3447 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3449 if (!NT_STATUS_IS_OK(status
)) {
3450 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3457 /****************************************************************************
3459 ****************************************************************************/
3461 static int cmd_stat(void)
3463 TALLOC_CTX
*ctx
= talloc_tos();
3466 char *targetname
= NULL
;
3467 struct cli_state
*targetcli
;
3469 SMB_STRUCT_STAT sbuf
;
3473 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3474 d_printf("stat file\n");
3477 src
= talloc_asprintf(ctx
,
3479 client_get_cur_dir(),
3485 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3486 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3490 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3491 d_printf("Server doesn't support UNIX CIFS calls.\n");
3495 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3496 d_printf("%s stat file %s\n",
3497 cli_errstr(targetcli
), src
);
3501 /* Print out the stat values. */
3502 d_printf("File: %s\n", src
);
3503 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3504 (double)sbuf
.st_ex_size
,
3505 (unsigned int)sbuf
.st_ex_blocks
,
3506 filetype_to_str(sbuf
.st_ex_mode
));
3508 #if defined(S_ISCHR) && defined(S_ISBLK)
3509 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3510 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3511 (double)sbuf
.st_ex_ino
,
3512 (unsigned int)sbuf
.st_ex_nlink
,
3513 unix_dev_major(sbuf
.st_ex_rdev
),
3514 unix_dev_minor(sbuf
.st_ex_rdev
));
3517 d_printf("Inode: %.0f\tLinks: %u\n",
3518 (double)sbuf
.st_ex_ino
,
3519 (unsigned int)sbuf
.st_ex_nlink
);
3521 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3522 ((int)sbuf
.st_ex_mode
& 0777),
3523 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3524 (unsigned int)sbuf
.st_ex_uid
,
3525 (unsigned int)sbuf
.st_ex_gid
);
3527 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3528 lt
= localtime(&tmp_time
);
3530 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3532 fstrcpy(mode_str
, "unknown");
3534 d_printf("Access: %s\n", mode_str
);
3536 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3537 lt
= localtime(&tmp_time
);
3539 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3541 fstrcpy(mode_str
, "unknown");
3543 d_printf("Modify: %s\n", mode_str
);
3545 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3546 lt
= localtime(&tmp_time
);
3548 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3550 fstrcpy(mode_str
, "unknown");
3552 d_printf("Change: %s\n", mode_str
);
3558 /****************************************************************************
3560 ****************************************************************************/
3562 static int cmd_chown(void)
3564 TALLOC_CTX
*ctx
= talloc_tos();
3568 char *buf
, *buf2
, *buf3
;
3569 struct cli_state
*targetcli
;
3570 char *targetname
= NULL
;
3572 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3573 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3574 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3575 d_printf("chown uid gid file\n");
3579 uid
= (uid_t
)atoi(buf
);
3580 gid
= (gid_t
)atoi(buf2
);
3582 src
= talloc_asprintf(ctx
,
3584 client_get_cur_dir(),
3589 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
) ) {
3590 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
3594 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3595 d_printf("Server doesn't support UNIX CIFS calls.\n");
3599 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli
, targetname
, uid
, gid
))) {
3600 d_printf("%s chown file %s uid=%d, gid=%d\n",
3601 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
3608 /****************************************************************************
3610 ****************************************************************************/
3612 static int cmd_rename(void)
3614 TALLOC_CTX
*ctx
= talloc_tos();
3617 struct cli_state
*targetcli
;
3621 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3622 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3623 d_printf("rename <src> <dest>\n");
3627 src
= talloc_asprintf(ctx
,
3629 client_get_cur_dir(),
3635 dest
= talloc_asprintf(ctx
,
3637 client_get_cur_dir(),
3643 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetsrc
)) {
3644 d_printf("rename %s: %s\n", src
, cli_errstr(cli
));
3648 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
, &targetdest
)) {
3649 d_printf("rename %s: %s\n", dest
, cli_errstr(cli
));
3653 if (!NT_STATUS_IS_OK(cli_rename(targetcli
, targetsrc
, targetdest
))) {
3654 d_printf("%s renaming files %s -> %s \n",
3655 cli_errstr(targetcli
),
3664 /****************************************************************************
3665 Print the volume name.
3666 ****************************************************************************/
3668 static int cmd_volume(void)
3675 status
= cli_get_fs_volume_info(cli
, volname
, &serial_num
,
3677 if (!NT_STATUS_IS_OK(status
)) {
3678 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3682 d_printf("Volume: |%s| serial number 0x%x\n",
3683 volname
, (unsigned int)serial_num
);
3687 /****************************************************************************
3688 Hard link files using the NT call.
3689 ****************************************************************************/
3691 static int cmd_hardlink(void)
3693 TALLOC_CTX
*ctx
= talloc_tos();
3696 struct cli_state
*targetcli
;
3699 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3700 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3701 d_printf("hardlink <src> <dest>\n");
3705 src
= talloc_asprintf(ctx
,
3707 client_get_cur_dir(),
3713 dest
= talloc_asprintf(ctx
,
3715 client_get_cur_dir(),
3721 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3722 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
3726 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli
, targetname
, dest
))) {
3727 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
3734 /****************************************************************************
3735 Toggle the prompt flag.
3736 ****************************************************************************/
3738 static int cmd_prompt(void)
3741 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3745 /****************************************************************************
3746 Set the newer than time.
3747 ****************************************************************************/
3749 static int cmd_newer(void)
3751 TALLOC_CTX
*ctx
= talloc_tos();
3754 SMB_STRUCT_STAT sbuf
;
3756 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3757 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3758 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3759 DEBUG(1,("Getting files newer than %s",
3760 time_to_asc(newer_than
)));
3765 if (ok
&& newer_than
== 0) {
3766 d_printf("Error setting newer-than time\n");
3773 /****************************************************************************
3774 Set the archive level.
3775 ****************************************************************************/
3777 static int cmd_archive(void)
3779 TALLOC_CTX
*ctx
= talloc_tos();
3782 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3783 archive_level
= atoi(buf
);
3785 d_printf("Archive level is %d\n",archive_level
);
3791 /****************************************************************************
3792 Toggle the lowercaseflag.
3793 ****************************************************************************/
3795 static int cmd_lowercase(void)
3797 lowercase
= !lowercase
;
3798 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3802 /****************************************************************************
3803 Toggle the case sensitive flag.
3804 ****************************************************************************/
3806 static int cmd_setcase(void)
3808 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3810 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3811 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3816 /****************************************************************************
3817 Toggle the showacls flag.
3818 ****************************************************************************/
3820 static int cmd_showacls(void)
3822 showacls
= !showacls
;
3823 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3828 /****************************************************************************
3829 Toggle the recurse flag.
3830 ****************************************************************************/
3832 static int cmd_recurse(void)
3835 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3839 /****************************************************************************
3840 Toggle the translate flag.
3841 ****************************************************************************/
3843 static int cmd_translate(void)
3845 translation
= !translation
;
3846 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3847 translation
?"on":"off"));
3851 /****************************************************************************
3853 ****************************************************************************/
3855 static int cmd_lcd(void)
3857 TALLOC_CTX
*ctx
= talloc_tos();
3861 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3862 if (chdir(buf
) == -1) {
3863 d_printf("chdir to %s failed (%s)\n",
3864 buf
, strerror(errno
));
3867 d
= TALLOC_ARRAY(ctx
, char, PATH_MAX
+1);
3871 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
3875 /****************************************************************************
3876 Get a file restarting at end of local file.
3877 ****************************************************************************/
3879 static int cmd_reget(void)
3881 TALLOC_CTX
*ctx
= talloc_tos();
3882 char *local_name
= NULL
;
3883 char *remote_name
= NULL
;
3887 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3892 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
3893 d_printf("reget <filename>\n");
3896 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
3900 remote_name
= clean_name(ctx
,remote_name
);
3906 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
3911 return do_get(remote_name
, local_name
, true);
3914 /****************************************************************************
3915 Put a file restarting at end of local file.
3916 ****************************************************************************/
3918 static int cmd_reput(void)
3920 TALLOC_CTX
*ctx
= talloc_tos();
3921 char *local_name
= NULL
;
3922 char *remote_name
= NULL
;
3926 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3931 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
3932 d_printf("reput <filename>\n");
3936 if (!file_exist_stat(local_name
, &st
, false)) {
3937 d_printf("%s does not exist\n", local_name
);
3941 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
3942 remote_name
= talloc_asprintf_append(remote_name
,
3945 remote_name
= talloc_asprintf_append(remote_name
,
3952 remote_name
= clean_name(ctx
, remote_name
);
3957 return do_put(remote_name
, local_name
, true);
3960 /****************************************************************************
3962 ****************************************************************************/
3964 static void browse_fn(const char *name
, uint32 m
,
3965 const char *comment
, void *state
)
3967 const char *typestr
= "";
3970 case STYPE_DISKTREE
:
3974 typestr
= "Printer";
3983 /* FIXME: If the remote machine returns non-ascii characters
3984 in any of these fields, they can corrupt the output. We
3985 should remove them. */
3987 d_printf("\t%-15s %-10.10s%s\n",
3988 name
,typestr
,comment
);
3990 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
3994 static bool browse_host_rpc(bool sort
)
3997 struct rpc_pipe_client
*pipe_hnd
= NULL
;
3998 TALLOC_CTX
*frame
= talloc_stackframe();
4000 struct srvsvc_NetShareInfoCtr info_ctr
;
4001 struct srvsvc_NetShareCtr1 ctr1
;
4002 uint32_t resume_handle
= 0;
4003 uint32_t total_entries
= 0;
4005 struct dcerpc_binding_handle
*b
;
4007 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
4010 if (!NT_STATUS_IS_OK(status
)) {
4011 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4012 nt_errstr(status
)));
4017 b
= pipe_hnd
->binding_handle
;
4019 ZERO_STRUCT(info_ctr
);
4023 info_ctr
.ctr
.ctr1
= &ctr1
;
4025 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4033 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4034 TALLOC_FREE(pipe_hnd
);
4039 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4040 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4041 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4044 TALLOC_FREE(pipe_hnd
);
4049 /****************************************************************************
4050 Try and browse available connections on a host.
4051 ****************************************************************************/
4053 static bool browse_host(bool sort
)
4057 d_printf("\n\tSharename Type Comment\n");
4058 d_printf("\t--------- ---- -------\n");
4061 if (browse_host_rpc(sort
)) {
4065 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
4066 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
4071 /****************************************************************************
4073 ****************************************************************************/
4075 static void server_fn(const char *name
, uint32 m
,
4076 const char *comment
, void *state
)
4080 d_printf("\t%-16s %s\n", name
, comment
);
4082 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4086 /****************************************************************************
4087 Try and browse available connections on a host.
4088 ****************************************************************************/
4090 static bool list_servers(const char *wk_grp
)
4094 if (!cli
->server_domain
)
4098 d_printf("\n\tServer Comment\n");
4099 d_printf("\t--------- -------\n");
4101 fstrcpy( state
, "Server" );
4102 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4106 d_printf("\n\tWorkgroup Master\n");
4107 d_printf("\t--------- -------\n");
4110 fstrcpy( state
, "Workgroup" );
4111 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4116 /****************************************************************************
4117 Print or set current VUID
4118 ****************************************************************************/
4120 static int cmd_vuid(void)
4122 TALLOC_CTX
*ctx
= talloc_tos();
4125 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4126 d_printf("Current VUID is %d\n", cli
->vuid
);
4130 cli
->vuid
= atoi(buf
);
4134 /****************************************************************************
4135 Setup a new VUID, by issuing a session setup
4136 ****************************************************************************/
4138 static int cmd_logon(void)
4140 TALLOC_CTX
*ctx
= talloc_tos();
4141 char *l_username
, *l_password
;
4144 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4145 d_printf("logon <username> [<password>]\n");
4149 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4150 char *pass
= getpass("Password: ");
4152 l_password
= talloc_strdup(ctx
,pass
);
4159 nt_status
= cli_session_setup(cli
, l_username
,
4160 l_password
, strlen(l_password
),
4161 l_password
, strlen(l_password
),
4163 if (!NT_STATUS_IS_OK(nt_status
)) {
4164 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4168 d_printf("Current VUID is %d\n", cli
->vuid
);
4173 /****************************************************************************
4174 list active connections
4175 ****************************************************************************/
4177 static int cmd_list_connect(void)
4179 cli_cm_display(cli
);
4183 /****************************************************************************
4184 display the current active client connection
4185 ****************************************************************************/
4187 static int cmd_show_connect( void )
4189 TALLOC_CTX
*ctx
= talloc_tos();
4190 struct cli_state
*targetcli
;
4193 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, client_get_cur_dir(),
4194 &targetcli
, &targetpath
) ) {
4195 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
4199 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
4203 /****************************************************************************
4205 ***************************************************************************/
4207 int cmd_iosize(void)
4209 TALLOC_CTX
*ctx
= talloc_tos();
4213 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4215 d_printf("iosize <n> or iosize 0x<n>. "
4216 "Minimum is 16384 (0x4000), "
4217 "max is 16776960 (0xFFFF00)\n");
4219 d_printf("iosize <n> or iosize 0x<n>. "
4220 "(Encrypted connection) ,"
4221 "Minimum is 16384 (0x4000), "
4222 "max is 130048 (0x1FC00)\n");
4227 iosize
= strtol(buf
,NULL
,0);
4228 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
4229 d_printf("iosize out of range for encrypted "
4230 "connection (min = 16384 (0x4000), "
4231 "max = 130048 (0x1FC00)");
4233 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
4234 d_printf("iosize out of range (min = 16384 (0x4000), "
4235 "max = 16776960 (0xFFFF00)");
4239 io_bufsize
= iosize
;
4240 d_printf("iosize is now %d\n", io_bufsize
);
4244 /****************************************************************************
4246 ****************************************************************************/
4247 static int cmd_history(void)
4249 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4253 hlist
= history_list();
4255 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4256 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4259 DEBUG(0,("no history without readline support\n"));
4265 /* Some constants for completing filename arguments */
4267 #define COMPL_NONE 0 /* No completions */
4268 #define COMPL_REMOTE 1 /* Complete remote filename */
4269 #define COMPL_LOCAL 2 /* Complete local filename */
4271 /* This defines the commands supported by this client.
4272 * NOTE: The "!" must be the last one in the list because it's fn pointer
4273 * field is NULL, and NULL in that field is used in process_tok()
4274 * (below) to indicate the end of the list. crh
4279 const char *description
;
4280 char compl_args
[2]; /* Completion argument info */
4282 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4283 {"allinfo",cmd_allinfo
,"<file> show all available info",
4284 {COMPL_NONE
,COMPL_NONE
}},
4285 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4286 {"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
}},
4287 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4288 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4289 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4290 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4291 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
4292 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
4293 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
4294 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4295 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4296 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4297 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4298 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4299 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4300 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
4301 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4302 {COMPL_REMOTE
, COMPL_LOCAL
}},
4303 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4304 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4305 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4306 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4307 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4308 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4309 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4310 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4311 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4312 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4313 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4314 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4315 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4316 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4317 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4318 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4319 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4320 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4321 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4322 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4323 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4324 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4325 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4326 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4327 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4328 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4329 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4330 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4331 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4332 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4333 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4334 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4335 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4336 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4337 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4338 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4339 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4340 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4341 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4342 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4343 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4344 {COMPL_REMOTE
, COMPL_LOCAL
}},
4345 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4346 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
4347 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4348 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4349 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4350 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4351 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4352 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4353 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4354 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4355 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4356 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4357 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4358 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4360 /* Yes, this must be here, see crh's comment above. */
4361 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4362 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4365 /*******************************************************************
4366 Lookup a command string in the list of commands, including
4368 ******************************************************************/
4370 static int process_tok(char *tok
)
4372 int i
= 0, matches
= 0;
4374 int tok_len
= strlen(tok
);
4376 while (commands
[i
].fn
!= NULL
) {
4377 if (strequal(commands
[i
].name
,tok
)) {
4381 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4390 else if (matches
== 1)
4396 /****************************************************************************
4398 ****************************************************************************/
4400 static int cmd_help(void)
4402 TALLOC_CTX
*ctx
= talloc_tos();
4406 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4407 if ((i
= process_tok(buf
)) >= 0)
4408 d_printf("HELP %s:\n\t%s\n\n",
4409 commands
[i
].name
,commands
[i
].description
);
4411 while (commands
[i
].description
) {
4412 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4413 d_printf("%-15s",commands
[i
].name
);
4422 /****************************************************************************
4423 Process a -c command string.
4424 ****************************************************************************/
4426 static int process_command_string(const char *cmd_in
)
4428 TALLOC_CTX
*ctx
= talloc_tos();
4429 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4435 /* establish the connection if not already */
4438 cli
= cli_cm_open(talloc_tos(), NULL
,
4439 have_ip
? dest_ss_str
: desthost
,
4442 max_protocol
, port
, name_type
);
4448 while (cmd
[0] != '\0') {
4454 if ((p
= strchr_m(cmd
, ';')) == 0) {
4463 /* and get the first part of the command */
4465 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4469 if ((i
= process_tok(tok
)) >= 0) {
4470 rc
= commands
[i
].fn();
4471 } else if (i
== -2) {
4472 d_printf("%s: command abbreviation ambiguous\n",tok
);
4474 d_printf("%s: command not found\n",tok
);
4481 #define MAX_COMPLETIONS 100
4483 struct completion_remote
{
4491 static NTSTATUS
completion_remote_filter(const char *mnt
,
4492 struct file_info
*f
,
4496 struct completion_remote
*info
= (struct completion_remote
*)state
;
4498 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4499 return NT_STATUS_OK
;
4501 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4502 return NT_STATUS_OK
;
4504 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4505 return NT_STATUS_OK
;
4508 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
4509 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4511 TALLOC_CTX
*ctx
= talloc_stackframe();
4514 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4517 return NT_STATUS_NO_MEMORY
;
4519 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4522 return NT_STATUS_NO_MEMORY
;
4524 if (f
->mode
& aDIR
) {
4525 tmp
= talloc_asprintf_append(tmp
, "%s",
4530 return NT_STATUS_NO_MEMORY
;
4532 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4535 if (info
->matches
[info
->count
] == NULL
) {
4536 return NT_STATUS_OK
;
4538 if (f
->mode
& aDIR
) {
4539 smb_readline_ca_char(0);
4541 if (info
->count
== 1) {
4542 info
->samelen
= strlen(info
->matches
[info
->count
]);
4544 while (strncmp(info
->matches
[info
->count
],
4545 info
->matches
[info
->count
-1],
4546 info
->samelen
) != 0) {
4551 return NT_STATUS_OK
;
4554 static char **remote_completion(const char *text
, int len
)
4556 TALLOC_CTX
*ctx
= talloc_stackframe();
4557 char *dirmask
= NULL
;
4558 char *targetpath
= NULL
;
4559 struct cli_state
*targetcli
= NULL
;
4561 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4564 /* can't have non-static initialisation on Sun CC, so do it
4570 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4571 if (!info
.matches
) {
4577 * We're leaving matches[0] free to fill it later with the text to
4578 * display: Either the one single match or the longest common subset
4581 info
.matches
[0] = NULL
;
4584 for (i
= len
-1; i
>= 0; i
--) {
4585 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4590 info
.text
= text
+i
+1;
4591 info
.samelen
= info
.len
= len
-i
-1;
4594 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4595 if (!info
.dirmask
) {
4598 strncpy(info
.dirmask
, text
, i
+1);
4599 info
.dirmask
[i
+1] = 0;
4600 dirmask
= talloc_asprintf(ctx
,
4602 client_get_cur_dir(),
4606 info
.dirmask
= SMB_STRDUP("");
4607 if (!info
.dirmask
) {
4610 dirmask
= talloc_asprintf(ctx
,
4612 client_get_cur_dir());
4618 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
, &targetpath
)) {
4621 status
= cli_list(targetcli
, targetpath
, aDIR
| aSYSTEM
| aHIDDEN
,
4622 completion_remote_filter
, (void *)&info
);
4623 if (!NT_STATUS_IS_OK(status
)) {
4627 if (info
.count
== 1) {
4629 * No matches at all, NULL indicates there is nothing
4631 SAFE_FREE(info
.matches
[0]);
4632 SAFE_FREE(info
.matches
);
4637 if (info
.count
== 2) {
4639 * Exactly one match in matches[1], indicate this is the one
4642 info
.matches
[0] = info
.matches
[1];
4643 info
.matches
[1] = NULL
;
4646 return info
.matches
;
4650 * We got more than one possible match, set the result to the maximum
4654 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4655 info
.matches
[info
.count
] = NULL
;
4656 return info
.matches
;
4659 for (i
= 0; i
< info
.count
; i
++) {
4660 SAFE_FREE(info
.matches
[i
]);
4662 SAFE_FREE(info
.matches
);
4663 SAFE_FREE(info
.dirmask
);
4668 static char **completion_fn(const char *text
, int start
, int end
)
4670 smb_readline_ca_char(' ');
4673 const char *buf
, *sp
;
4677 buf
= smb_readline_get_line_buffer();
4681 sp
= strchr(buf
, ' ');
4685 for (i
= 0; commands
[i
].name
; i
++) {
4686 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4687 (commands
[i
].name
[sp
- buf
] == 0)) {
4691 if (commands
[i
].name
== NULL
)
4697 if (sp
== (buf
+ start
))
4698 compl_type
= commands
[i
].compl_args
[0];
4700 compl_type
= commands
[i
].compl_args
[1];
4702 if (compl_type
== COMPL_REMOTE
)
4703 return remote_completion(text
, end
- start
);
4704 else /* fall back to local filename completion */
4708 int i
, len
, samelen
= 0, count
=1;
4710 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4717 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4718 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4719 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4720 if (!matches
[count
])
4723 samelen
= strlen(matches
[count
]);
4725 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4732 case 0: /* should never happen */
4736 matches
[0] = SMB_STRDUP(matches
[1]);
4739 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4742 strncpy(matches
[0], matches
[1], samelen
);
4743 matches
[0][samelen
] = 0;
4745 matches
[count
] = NULL
;
4749 for (i
= 0; i
< count
; i
++)
4757 static bool finished
;
4759 /****************************************************************************
4760 Make sure we swallow keepalives during idle time.
4761 ****************************************************************************/
4763 static void readline_callback(void)
4765 static time_t last_t
;
4766 struct timespec now
;
4770 clock_gettime_mono(&now
);
4783 /* We deliberately use receive_smb_raw instead of
4784 client_receive_smb as we want to receive
4785 session keepalives and then drop them here.
4788 ret
= poll_intr_one_fd(cli
->fd
, POLLIN
|POLLHUP
, 0, &revents
);
4790 if ((ret
> 0) && (revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
4794 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4796 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4798 if (!NT_STATUS_IS_OK(status
)) {
4799 DEBUG(0, ("Read from server failed, maybe it closed "
4800 "the connection\n"));
4803 smb_readline_done();
4804 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4805 set_smb_read_error(&cli
->smb_rw_error
,
4810 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4811 set_smb_read_error(&cli
->smb_rw_error
,
4816 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4819 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4820 DEBUG(0, ("Read from server "
4821 "returned unexpected packet!\n"));
4828 /* Ping the server to keep the connection alive using SMBecho. */
4831 unsigned char garbage
[16];
4832 memset(garbage
, 0xf0, sizeof(garbage
));
4833 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4835 if (!NT_STATUS_IS_OK(status
)) {
4836 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4837 "the connection\n"));
4839 smb_readline_done();
4844 /****************************************************************************
4845 Process commands on stdin.
4846 ****************************************************************************/
4848 static int process_stdin(void)
4853 TALLOC_CTX
*frame
= talloc_stackframe();
4855 char *the_prompt
= NULL
;
4859 /* display a prompt */
4860 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
4864 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
4865 SAFE_FREE(the_prompt
);
4871 /* special case - first char is ! */
4873 if (system(line
+ 1) == -1) {
4874 d_printf("system() command %s failed.\n",
4882 /* and get the first part of the command */
4884 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
4890 if ((i
= process_tok(tok
)) >= 0) {
4891 rc
= commands
[i
].fn();
4892 } else if (i
== -2) {
4893 d_printf("%s: command abbreviation ambiguous\n",tok
);
4895 d_printf("%s: command not found\n",tok
);
4903 /****************************************************************************
4904 Process commands from the client.
4905 ****************************************************************************/
4907 static int process(const char *base_directory
)
4911 cli
= cli_cm_open(talloc_tos(), NULL
,
4912 have_ip
? dest_ss_str
: desthost
,
4913 service
, auth_info
, true, smb_encrypt
,
4914 max_protocol
, port
, name_type
);
4919 if (base_directory
&& *base_directory
) {
4920 rc
= do_cd(base_directory
);
4928 rc
= process_command_string(cmdstr
);
4937 /****************************************************************************
4939 ****************************************************************************/
4941 static int do_host_query(const char *query_host
)
4943 cli
= cli_cm_open(talloc_tos(), NULL
,
4944 have_ip
? dest_ss_str
: query_host
, "IPC$", auth_info
, true, smb_encrypt
,
4945 max_protocol
, port
, name_type
);
4951 /* Ensure that the host can do IPv4 */
4953 if (!interpret_addr(query_host
)) {
4954 struct sockaddr_storage ss
;
4955 if (interpret_string_addr(&ss
, query_host
, 0) &&
4956 (ss
.ss_family
!= AF_INET
)) {
4957 d_printf("%s is an IPv6 address -- no workgroup available\n",
4965 /* Workgroups simply don't make sense over anything
4966 else but port 139... */
4969 cli
= cli_cm_open(talloc_tos(), NULL
,
4970 have_ip
? dest_ss_str
: query_host
, "IPC$",
4971 auth_info
, true, smb_encrypt
,
4972 max_protocol
, 139, name_type
);
4976 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4980 list_servers(lp_workgroup());
4987 /****************************************************************************
4988 Handle a tar operation.
4989 ****************************************************************************/
4991 static int do_tar_op(const char *base_directory
)
4995 /* do we already have a connection? */
4997 cli
= cli_cm_open(talloc_tos(), NULL
,
4998 have_ip
? dest_ss_str
: desthost
,
4999 service
, auth_info
, true, smb_encrypt
,
5000 max_protocol
, port
, name_type
);
5007 if (base_directory
&& *base_directory
) {
5008 ret
= do_cd(base_directory
);
5022 /****************************************************************************
5023 Handle a message operation.
5024 ****************************************************************************/
5026 static int do_message_op(struct user_auth_info
*a_info
)
5028 struct sockaddr_storage ss
;
5029 struct nmb_name called
, calling
;
5030 fstring server_name
;
5031 char name_type_hex
[10];
5035 make_nmb_name(&calling
, calling_name
, 0x0);
5036 make_nmb_name(&called
, desthost
, name_type
);
5038 fstrcpy(server_name
, desthost
);
5039 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
5040 fstrcat(server_name
, name_type_hex
);
5046 /* we can only do messages over port 139 (to windows clients at least) */
5048 msg_port
= port
? port
: 139;
5050 if (!(cli
=cli_initialise())) {
5051 d_printf("Connection to %s failed\n", desthost
);
5054 cli_set_port(cli
, msg_port
);
5056 status
= cli_connect(cli
, server_name
, &ss
);
5057 if (!NT_STATUS_IS_OK(status
)) {
5058 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5062 if (!cli_session_request(cli
, &calling
, &called
)) {
5063 d_printf("session request failed\n");
5068 send_message(get_cmdline_auth_info_username(a_info
));
5074 /****************************************************************************
5076 ****************************************************************************/
5078 int main(int argc
,char *argv
[])
5080 char *base_directory
= NULL
;
5082 char *query_host
= NULL
;
5083 bool message
= false;
5084 static const char *new_name_resolve_order
= NULL
;
5088 fstring new_workgroup
;
5089 bool tar_opt
= false;
5090 bool service_opt
= false;
5091 struct poptOption long_options
[] = {
5094 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5095 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
5096 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
5097 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
5098 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
5099 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
5100 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5101 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
5102 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
5103 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
5104 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
5105 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
5106 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
5108 POPT_COMMON_CONNECTION
5109 POPT_COMMON_CREDENTIALS
5112 TALLOC_CTX
*frame
= talloc_stackframe();
5114 if (!client_set_cur_dir("\\")) {
5118 /* initialize the workgroup name so we can determine whether or
5119 not it was set by a command line option */
5121 set_global_myworkgroup( "" );
5122 set_global_myname( "" );
5124 /* set default debug level to 1 regardless of what smb.conf sets */
5125 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR
);
5128 lp_set_cmdline("log level", "1");
5130 auth_info
= user_auth_info_init(frame
);
5131 if (auth_info
== NULL
) {
5134 popt_common_set_auth_info(auth_info
);
5137 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
5138 poptSetOtherOptionHelp(pc
, "service <password>");
5140 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5142 while ((opt
= poptGetNextOpt(pc
)) != -1) {
5144 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5145 /* I see no other way to keep things sane --SSS */
5146 if (tar_opt
== true) {
5147 while (poptPeekArg(pc
)) {
5153 /* if the service has not yet been specified lets see if it is available in the popt stack */
5154 if (!service_opt
&& poptPeekArg(pc
)) {
5155 service
= talloc_strdup(frame
, poptGetArg(pc
));
5162 /* if the service has already been retrieved then check if we have also a password */
5164 && (!get_cmdline_auth_info_got_pass(auth_info
))
5165 && poptPeekArg(pc
)) {
5166 set_cmdline_auth_info_password(auth_info
,
5172 /* Messages are sent to NetBIOS name type 0x3
5173 * (Messenger Service). Make sure we default
5174 * to port 139 instead of port 445. srl,crh
5177 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
5187 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
5191 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
5195 setup_logging("smbclient", DEBUG_STDERR
);
5196 display_set_stderr();
5200 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
5206 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
5209 /* We must use old option processing for this. Find the
5210 * position of the -T option in the raw argv[]. */
5213 for (i
= 1; i
< argc
; i
++) {
5214 if (strncmp("-T", argv
[i
],2)==0)
5218 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
5219 poptPrintUsage(pc
, stderr
, 0);
5223 /* this must be the last option, mark we have parsed it so that we know we have */
5227 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5228 if (!base_directory
) {
5239 return(do_smb_browse());
5244 /* We may still have some leftovers after the last popt option has been called */
5245 if (tar_opt
== true) {
5246 while (poptPeekArg(pc
)) {
5252 /* if the service has not yet been specified lets see if it is available in the popt stack */
5253 if (!service_opt
&& poptPeekArg(pc
)) {
5254 service
= talloc_strdup(frame
,poptGetArg(pc
));
5261 /* if the service has already been retrieved then check if we have also a password */
5263 && !get_cmdline_auth_info_got_pass(auth_info
)
5264 && poptPeekArg(pc
)) {
5265 set_cmdline_auth_info_password(auth_info
,
5269 /* save the workgroup...
5271 FIXME!! do we need to do this for other options as well
5272 (or maybe a generic way to keep lp_load() from overwriting
5275 fstrcpy( new_workgroup
, lp_workgroup() );
5276 calling_name
= talloc_strdup(frame
, global_myname() );
5277 if (!calling_name
) {
5281 if ( override_logfile
)
5282 setup_logging( lp_logfile(), DEBUG_FILE
);
5284 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5285 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5286 argv
[0], get_dyn_CONFIGFILE());
5289 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5290 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5296 if (service_opt
&& service
) {
5299 /* Convert any '/' characters in the service name to '\' characters */
5300 string_replace(service
, '/','\\');
5301 if (count_chars(service
,'\\') < 3) {
5302 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5303 poptPrintUsage(pc
, stderr
, 0);
5306 /* Remove trailing slashes */
5307 len
= strlen(service
);
5308 while(len
> 0 && service
[len
- 1] == '\\') {
5310 service
[len
] = '\0';
5314 if ( strlen(new_workgroup
) != 0 ) {
5315 set_global_myworkgroup( new_workgroup
);
5318 if ( strlen(calling_name
) != 0 ) {
5319 set_global_myname( calling_name
);
5321 TALLOC_FREE(calling_name
);
5322 calling_name
= talloc_strdup(frame
, global_myname() );
5325 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5326 if (!init_names()) {
5327 fprintf(stderr
, "init_names() failed\n");
5331 if(new_name_resolve_order
)
5332 lp_set_name_resolve_order(new_name_resolve_order
);
5334 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5335 poptPrintUsage(pc
, stderr
, 0);
5339 poptFreeContext(pc
);
5341 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5343 /* Ensure we have a password (or equivalent). */
5344 set_cmdline_auth_info_getpass(auth_info
);
5348 process_command_string(cmdstr
);
5349 return do_tar_op(base_directory
);
5352 if (query_host
&& *query_host
) {
5353 char *qhost
= query_host
;
5356 while (*qhost
== '\\' || *qhost
== '/')
5359 if ((slash
= strchr_m(qhost
, '/'))
5360 || (slash
= strchr_m(qhost
, '\\'))) {
5364 if ((p
=strchr_m(qhost
, '#'))) {
5367 sscanf(p
, "%x", &name_type
);
5370 return do_host_query(qhost
);
5374 return do_message_op(auth_info
);
5377 if (process(base_directory
)) {