2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "client/clitar_proto.h"
30 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
31 #include "../lib/util/select.h"
32 #include "system/readline.h"
33 #include "../libcli/smbreadline/smbreadline.h"
34 #include "../libcli/security/security.h"
35 #include "system/select.h"
36 #include "libsmb/libsmb.h"
37 #include "libsmb/clirap.h"
39 #include "libsmb/nmblib.h"
40 #include "include/ntioctl.h"
41 #include "../libcli/smb/smbXcli_base.h"
47 extern int do_smb_browse(void); /* mDNS browsing */
49 extern bool override_logfile
;
53 static char *desthost
;
54 static bool grepable
= false;
55 static char *cmdstr
= NULL
;
56 const char *cmd_ptr
= NULL
;
58 static int io_bufsize
= 0; /* we use the default size */
59 static int io_timeout
= (CLIENT_TIMEOUT
/1000); /* Per operation timeout (in seconds). */
61 static int name_type
= 0x20;
62 static int max_protocol
= -1;
64 static int process_tok(char *tok
);
65 static int cmd_help(void);
67 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
69 /* value for unused fid field in trans2 secondary request */
70 #define FID_UNUSED (0xFFFF)
72 time_t newer_than
= 0;
73 static int archive_level
= 0;
75 static bool translation
= false;
78 static bool prompt
= true;
80 static bool recurse
= false;
81 static bool showacls
= false;
82 bool lowercase
= false;
83 static bool backup_intent
= false;
85 static struct sockaddr_storage dest_ss
;
86 static char dest_ss_str
[INET6_ADDRSTRLEN
];
88 #define SEPARATORS " \t\n\r"
90 static bool abort_mget
= true;
93 uint64_t get_total_size
= 0;
94 unsigned int get_total_time_ms
= 0;
95 static uint64_t put_total_size
= 0;
96 static unsigned int put_total_time_ms
= 0;
99 static double dir_total
;
101 /* encrypted state. */
102 static bool smb_encrypt
;
104 /* root cli_state connection */
106 struct cli_state
*cli
;
108 static char CLI_DIRSEP_CHAR
= '\\';
109 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
111 /* Authentication for client connections. */
112 struct user_auth_info
*auth_info
;
114 /* Accessor functions for directory paths. */
115 static char *fileselection
;
116 static const char *client_get_fileselection(void)
119 return fileselection
;
124 static const char *client_set_fileselection(const char *new_fs
)
126 SAFE_FREE(fileselection
);
128 fileselection
= SMB_STRDUP(new_fs
);
130 return client_get_fileselection();
134 static const char *client_get_cwd(void)
139 return CLI_DIRSEP_STR
;
142 static const char *client_set_cwd(const char *new_cwd
)
146 cwd
= SMB_STRDUP(new_cwd
);
148 return client_get_cwd();
151 static char *cur_dir
;
152 const char *client_get_cur_dir(void)
157 return CLI_DIRSEP_STR
;
160 const char *client_set_cur_dir(const char *newdir
)
164 cur_dir
= SMB_STRDUP(newdir
);
166 return client_get_cur_dir();
169 /****************************************************************************
170 Put up a yes/no prompt.
171 ****************************************************************************/
173 static bool yesno(const char *p
)
178 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
181 if (*ans
== 'y' || *ans
== 'Y')
187 /****************************************************************************
188 Write to a local file with CR/LF->LF translation if appropriate. Return the
189 number taken from the buffer. This may not equal the number written.
190 ****************************************************************************/
192 static int writefile(int f
, char *b
, int n
)
202 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
205 if (write(f
, b
, 1) != 1) {
215 /****************************************************************************
216 Read from a file with LF->CR/LF translation if appropriate. Return the
217 number read. read approx n bytes.
218 ****************************************************************************/
220 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
226 return x_fread(b
,1,n
,f
);
229 while (i
< (n
- 1)) {
230 if ((c
= x_getc(f
)) == EOF
) {
234 if (c
== '\n') { /* change all LFs to CR/LF */
249 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
251 struct push_state
*state
= (struct push_state
*)priv
;
254 if (x_feof(state
->f
)) {
258 result
= readfile(buf
, n
, state
->f
);
259 state
->nread
+= result
;
263 /****************************************************************************
265 ****************************************************************************/
267 static void send_message(const char *username
)
273 d_printf("Type your message, ending it with a Control-D\n");
276 while (i
<sizeof(buf
)-2) {
277 int c
= fgetc(stdin
);
288 status
= cli_message(cli
, desthost
, username
, buf
);
289 if (!NT_STATUS_IS_OK(status
)) {
290 d_fprintf(stderr
, "cli_message returned %s\n",
295 /****************************************************************************
296 Check the space on a device.
297 ****************************************************************************/
299 static int do_dskattr(void)
301 int total
, bsize
, avail
;
302 struct cli_state
*targetcli
= NULL
;
303 char *targetpath
= NULL
;
304 TALLOC_CTX
*ctx
= talloc_tos();
307 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
308 client_get_cur_dir(), &targetcli
,
310 if (!NT_STATUS_IS_OK(status
)) {
311 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
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();
366 newdir
= talloc_strdup(ctx
, new_dir
);
372 normalize_name(newdir
);
374 /* Save the current directory in case the new directory is invalid */
376 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
382 if (*newdir
== CLI_DIRSEP_CHAR
) {
383 client_set_cur_dir(newdir
);
386 new_cd
= talloc_asprintf(ctx
, "%s%s",
387 client_get_cur_dir(),
394 /* Ensure cur_dir ends in a DIRSEP */
395 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
396 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
401 client_set_cur_dir(new_cd
);
403 new_cd
= clean_name(ctx
, new_cd
);
404 client_set_cur_dir(new_cd
);
406 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
,
407 &targetcli
, &targetpath
);
408 if (!NT_STATUS_IS_OK(status
)) {
409 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
410 client_set_cur_dir(saved_dir
);
414 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
419 /* Use a trans2_qpathinfo to test directories for modern servers.
420 Except Win9x doesn't support the qpathinfo_basic() call..... */
422 if (smbXcli_conn_protocol(targetcli
->conn
) > PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
424 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
426 if (!NT_STATUS_IS_OK(status
)) {
427 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
428 client_set_cur_dir(saved_dir
);
432 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
433 d_printf("cd %s: not a directory\n", new_cd
);
434 client_set_cur_dir(saved_dir
);
439 targetpath
= talloc_asprintf(ctx
,
444 client_set_cur_dir(saved_dir
);
447 targetpath
= clean_name(ctx
, targetpath
);
449 client_set_cur_dir(saved_dir
);
453 status
= cli_chkpath(targetcli
, targetpath
);
454 if (!NT_STATUS_IS_OK(status
)) {
455 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
456 client_set_cur_dir(saved_dir
);
469 /****************************************************************************
471 ****************************************************************************/
473 static int cmd_cd(void)
478 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
481 d_printf("Current directory is %s\n",client_get_cur_dir());
487 /****************************************************************************
489 ****************************************************************************/
491 static int cmd_cd_oneup(void)
496 /*******************************************************************
497 Decide if a file should be operated on.
498 ********************************************************************/
500 static bool do_this_one(struct file_info
*finfo
)
506 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
510 if (*client_get_fileselection() &&
511 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
512 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
516 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
517 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
521 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& FILE_ATTRIBUTE_ARCHIVE
)) {
522 DEBUG(3,("archive %s failed\n", finfo
->name
));
529 /****************************************************************************
530 Display info about a file.
531 ****************************************************************************/
533 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
537 TALLOC_CTX
*ctx
= talloc_tos();
538 NTSTATUS status
= NT_STATUS_OK
;
540 if (!do_this_one(finfo
)) {
544 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
546 d_printf(" %-30s%7.7s %8.0f %s",
548 attrib_string(talloc_tos(), finfo
->mode
),
551 dir_total
+= finfo
->size
;
556 /* skip if this is . or .. */
557 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
559 /* create absolute filename for cli_ntcreate() FIXME */
560 afname
= talloc_asprintf(ctx
,
566 return NT_STATUS_NO_MEMORY
;
568 /* print file meta date header */
569 d_printf( "FILENAME:%s\n", finfo
->name
);
570 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo
->mode
));
571 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
572 d_printf( "MTIME:%s", time_to_asc(t
));
573 status
= cli_ntcreate(cli_state
, afname
, 0,
574 CREATE_ACCESS_READ
, 0,
575 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
576 FILE_OPEN
, 0x0, 0x0, &fnum
);
577 if (!NT_STATUS_IS_OK(status
)) {
578 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
579 afname
, nt_errstr(status
)));
581 struct security_descriptor
*sd
= NULL
;
582 status
= cli_query_secdesc(cli_state
, fnum
,
584 if (!NT_STATUS_IS_OK(status
)) {
585 DEBUG( 0, ("display_finfo() failed to "
586 "get security descriptor: %s",
589 display_sec_desc(sd
);
598 /****************************************************************************
599 Accumulate size of a file.
600 ****************************************************************************/
602 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
605 if (do_this_one(finfo
)) {
606 dir_total
+= finfo
->size
;
611 static bool do_list_recurse
;
612 static bool do_list_dirs
;
613 static char *do_list_queue
= 0;
614 static long do_list_queue_size
= 0;
615 static long do_list_queue_start
= 0;
616 static long do_list_queue_end
= 0;
617 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
620 /****************************************************************************
621 Functions for do_list_queue.
622 ****************************************************************************/
625 * The do_list_queue is a NUL-separated list of strings stored in a
626 * char*. Since this is a FIFO, we keep track of the beginning and
627 * ending locations of the data in the queue. When we overflow, we
628 * double the size of the char*. When the start of the data passes
629 * the midpoint, we move everything back. This is logically more
630 * complex than a linked list, but easier from a memory management
631 * angle. In any memory error condition, do_list_queue is reset.
632 * Functions check to ensure that do_list_queue is non-NULL before
636 static void reset_do_list_queue(void)
638 SAFE_FREE(do_list_queue
);
639 do_list_queue_size
= 0;
640 do_list_queue_start
= 0;
641 do_list_queue_end
= 0;
644 static void init_do_list_queue(void)
646 reset_do_list_queue();
647 do_list_queue_size
= 1024;
648 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
649 if (do_list_queue
== 0) {
650 d_printf("malloc fail for size %d\n",
651 (int)do_list_queue_size
);
652 reset_do_list_queue();
654 memset(do_list_queue
, 0, do_list_queue_size
);
658 static void adjust_do_list_queue(void)
661 * If the starting point of the queue is more than half way through,
662 * move everything toward the beginning.
665 if (do_list_queue
== NULL
) {
666 DEBUG(4,("do_list_queue is empty\n"));
667 do_list_queue_start
= do_list_queue_end
= 0;
671 if (do_list_queue_start
== do_list_queue_end
) {
672 DEBUG(4,("do_list_queue is empty\n"));
673 do_list_queue_start
= do_list_queue_end
= 0;
674 *do_list_queue
= '\0';
675 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
676 DEBUG(4,("sliding do_list_queue backward\n"));
677 memmove(do_list_queue
,
678 do_list_queue
+ do_list_queue_start
,
679 do_list_queue_end
- do_list_queue_start
);
680 do_list_queue_end
-= do_list_queue_start
;
681 do_list_queue_start
= 0;
685 static void add_to_do_list_queue(const char *entry
)
687 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
688 while (new_end
> do_list_queue_size
) {
689 do_list_queue_size
*= 2;
690 DEBUG(4,("enlarging do_list_queue to %d\n",
691 (int)do_list_queue_size
));
692 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
693 if (! do_list_queue
) {
694 d_printf("failure enlarging do_list_queue to %d bytes\n",
695 (int)do_list_queue_size
);
696 reset_do_list_queue();
698 memset(do_list_queue
+ do_list_queue_size
/ 2,
699 0, do_list_queue_size
/ 2);
703 strlcpy_base(do_list_queue
+ do_list_queue_end
,
704 entry
, do_list_queue
, do_list_queue_size
);
705 do_list_queue_end
= new_end
;
706 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
707 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
711 static char *do_list_queue_head(void)
713 return do_list_queue
+ do_list_queue_start
;
716 static void remove_do_list_queue_head(void)
718 if (do_list_queue_end
> do_list_queue_start
) {
719 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
720 adjust_do_list_queue();
721 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
722 (int)do_list_queue_start
, (int)do_list_queue_end
));
726 static int do_list_queue_empty(void)
728 return (! (do_list_queue
&& *do_list_queue
));
731 /****************************************************************************
732 A helper for do_list.
733 ****************************************************************************/
735 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
736 const char *mask
, void *state
)
738 struct cli_state
*cli_state
= (struct cli_state
*)state
;
739 TALLOC_CTX
*ctx
= talloc_tos();
741 char *dir_end
= NULL
;
742 NTSTATUS status
= NT_STATUS_OK
;
744 /* Work out the directory. */
745 dir
= talloc_strdup(ctx
, mask
);
747 return NT_STATUS_NO_MEMORY
;
749 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
753 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
754 if (do_list_dirs
&& do_this_one(f
)) {
755 status
= do_list_fn(cli_state
, f
, dir
);
756 if (!NT_STATUS_IS_OK(status
)) {
760 if (do_list_recurse
&&
762 !strequal(f
->name
,".") &&
763 !strequal(f
->name
,"..")) {
768 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
770 return NT_STATUS_UNSUCCESSFUL
;
773 mask2
= talloc_asprintf(ctx
,
779 return NT_STATUS_NO_MEMORY
;
781 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
787 mask2
= talloc_asprintf_append(mask2
,
793 return NT_STATUS_NO_MEMORY
;
795 add_to_do_list_queue(mask2
);
802 if (do_this_one(f
)) {
803 status
= do_list_fn(cli_state
, f
, dir
);
809 /****************************************************************************
810 A wrapper around cli_list that adds recursion.
811 ****************************************************************************/
813 NTSTATUS
do_list(const char *mask
,
815 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
820 static int in_do_list
= 0;
821 TALLOC_CTX
*ctx
= talloc_tos();
822 struct cli_state
*targetcli
= NULL
;
823 char *targetpath
= NULL
;
824 NTSTATUS ret_status
= NT_STATUS_OK
;
825 NTSTATUS status
= NT_STATUS_OK
;
827 if (in_do_list
&& rec
) {
828 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
834 do_list_recurse
= rec
;
839 init_do_list_queue();
840 add_to_do_list_queue(mask
);
842 while (!do_list_queue_empty()) {
844 * Need to copy head so that it doesn't become
845 * invalid inside the call to cli_list. This
846 * would happen if the list were expanded
848 * Fix from E. Jay Berkenbilt (ejb@ql.org)
850 char *head
= talloc_strdup(ctx
, do_list_queue_head());
853 return NT_STATUS_NO_MEMORY
;
858 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
861 if (!NT_STATUS_IS_OK(status
)) {
862 d_printf("do_list: [%s] %s\n", head
,
864 remove_do_list_queue_head();
868 status
= cli_list(targetcli
, targetpath
, attribute
,
869 do_list_helper
, targetcli
);
870 if (!NT_STATUS_IS_OK(status
)) {
871 d_printf("%s listing %s\n",
872 nt_errstr(status
), targetpath
);
875 remove_do_list_queue_head();
876 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
877 char *next_file
= do_list_queue_head();
879 if ((strlen(next_file
) >= 2) &&
880 (next_file
[strlen(next_file
) - 1] == '*') &&
881 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
882 save_ch
= next_file
+
883 strlen(next_file
) - 2;
886 /* cwd is only used if showacls is on */
887 client_set_cwd(next_file
);
890 if (!showacls
) /* don't disturbe the showacls output */
891 d_printf("\n%s\n",next_file
);
893 *save_ch
= CLI_DIRSEP_CHAR
;
897 TALLOC_FREE(targetpath
);
901 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
902 &targetcli
, &targetpath
);
903 if (NT_STATUS_IS_OK(status
)) {
904 status
= cli_list(targetcli
, targetpath
, attribute
,
905 do_list_helper
, targetcli
);
906 if (!NT_STATUS_IS_OK(status
)) {
907 d_printf("%s listing %s\n",
908 nt_errstr(status
), targetpath
);
911 TALLOC_FREE(targetpath
);
913 d_printf("do_list: [%s] %s\n", mask
, nt_errstr(status
));
919 reset_do_list_queue();
923 /****************************************************************************
924 Get a directory listing.
925 ****************************************************************************/
927 static int cmd_dir(void)
929 TALLOC_CTX
*ctx
= talloc_tos();
930 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
937 mask
= talloc_strdup(ctx
, client_get_cur_dir());
942 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
944 if (*buf
== CLI_DIRSEP_CHAR
) {
945 mask
= talloc_strdup(ctx
, buf
);
947 mask
= talloc_asprintf_append(mask
, "%s", buf
);
950 mask
= talloc_asprintf_append(mask
, "*");
957 /* cwd is only used if showacls is on */
958 client_set_cwd(client_get_cur_dir());
961 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
962 if (!NT_STATUS_IS_OK(status
)) {
968 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
973 /****************************************************************************
974 Get a directory listing.
975 ****************************************************************************/
977 static int cmd_du(void)
979 TALLOC_CTX
*ctx
= talloc_tos();
980 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
987 mask
= talloc_strdup(ctx
, client_get_cur_dir());
991 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
992 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
998 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1000 if (*buf
== CLI_DIRSEP_CHAR
) {
1001 mask
= talloc_strdup(ctx
, buf
);
1003 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1006 mask
= talloc_strdup(ctx
, "*");
1009 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1010 if (!NT_STATUS_IS_OK(status
)) {
1016 d_printf("Total number of bytes: %.0f\n", dir_total
);
1021 static int cmd_echo(void)
1023 TALLOC_CTX
*ctx
= talloc_tos();
1028 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1029 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1030 d_printf("echo <num> <data>\n");
1034 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1036 if (!NT_STATUS_IS_OK(status
)) {
1037 d_printf("echo failed: %s\n", nt_errstr(status
));
1044 /****************************************************************************
1045 Get a file from rname to lname
1046 ****************************************************************************/
1048 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1050 int *pfd
= (int *)priv
;
1051 if (writefile(*pfd
, buf
, n
) == -1) {
1052 return map_nt_error_from_unix(errno
);
1054 return NT_STATUS_OK
;
1057 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1059 TALLOC_CTX
*ctx
= talloc_tos();
1062 bool newhandle
= false;
1063 struct timespec tp_start
;
1069 struct cli_state
*targetcli
= NULL
;
1070 char *targetname
= NULL
;
1074 lname
= talloc_strdup(ctx
, lname_in
);
1080 if (!strlower_m(lname
)) {
1081 d_printf("strlower_m %s failed\n", lname
);
1086 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
,
1088 if (!NT_STATUS_IS_OK(status
)) {
1089 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1093 clock_gettime_mono(&tp_start
);
1095 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1096 if (!NT_STATUS_IS_OK(status
)) {
1097 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1102 if(!strcmp(lname
,"-")) {
1103 handle
= fileno(stdout
);
1106 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
1108 start
= lseek(handle
, 0, SEEK_END
);
1110 d_printf("Error seeking local file\n");
1115 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1120 d_printf("Error opening local file %s\n",lname
);
1125 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1127 if (!NT_STATUS_IS_OK(status
)) {
1128 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1130 if(!NT_STATUS_IS_OK(status
)) {
1131 d_printf("getattrib: %s\n", nt_errstr(status
));
1136 DEBUG(1,("getting file %s of size %.0f as %s ",
1137 rname
, (double)size
, lname
));
1139 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1140 writefile_sink
, (void *)&handle
, &nread
);
1141 if (!NT_STATUS_IS_OK(status
)) {
1142 d_fprintf(stderr
, "parallel_read returned %s\n",
1144 cli_close(targetcli
, fnum
);
1148 status
= cli_close(targetcli
, fnum
);
1149 if (!NT_STATUS_IS_OK(status
)) {
1150 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1158 if (archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
1159 cli_setatr(cli
, rname
, attr
& ~(uint16
)FILE_ATTRIBUTE_ARCHIVE
, 0);
1163 struct timespec tp_end
;
1166 clock_gettime_mono(&tp_end
);
1167 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1168 get_total_time_ms
+= this_time
;
1169 get_total_size
+= nread
;
1171 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1172 nread
/ (1.024*this_time
+ 1.0e-4),
1173 get_total_size
/ (1.024*get_total_time_ms
)));
1176 TALLOC_FREE(targetname
);
1180 /****************************************************************************
1182 ****************************************************************************/
1184 static int cmd_get(void)
1186 TALLOC_CTX
*ctx
= talloc_tos();
1191 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1196 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1197 d_printf("get <filename> [localname]\n");
1200 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1204 rname
= clean_name(ctx
, rname
);
1209 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1214 return do_get(rname
, lname
, false);
1217 /****************************************************************************
1218 Do an mget operation on one file.
1219 ****************************************************************************/
1221 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1224 TALLOC_CTX
*ctx
= talloc_tos();
1225 NTSTATUS status
= NT_STATUS_OK
;
1228 char *saved_curdir
= NULL
;
1229 char *mget_mask
= NULL
;
1230 char *new_cd
= NULL
;
1233 return NT_STATUS_OK
;
1236 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1237 return NT_STATUS_OK
;
1240 d_printf("mget aborted\n");
1241 return NT_STATUS_UNSUCCESSFUL
;
1244 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1245 if (asprintf(&quest
,
1246 "Get directory %s? ",finfo
->name
) < 0) {
1247 return NT_STATUS_NO_MEMORY
;
1250 if (asprintf(&quest
,
1251 "Get file %s? ",finfo
->name
) < 0) {
1252 return NT_STATUS_NO_MEMORY
;
1256 if (prompt
&& !yesno(quest
)) {
1258 return NT_STATUS_OK
;
1262 if (!(finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
)) {
1263 rname
= talloc_asprintf(ctx
,
1265 client_get_cur_dir(),
1268 return NT_STATUS_NO_MEMORY
;
1270 do_get(rname
, finfo
->name
, false);
1272 return NT_STATUS_OK
;
1275 /* handle directories */
1276 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1277 if (!saved_curdir
) {
1278 return NT_STATUS_NO_MEMORY
;
1281 new_cd
= talloc_asprintf(ctx
,
1283 client_get_cur_dir(),
1287 return NT_STATUS_NO_MEMORY
;
1289 client_set_cur_dir(new_cd
);
1291 string_replace(finfo
->name
,'\\','/');
1293 if (!strlower_m(finfo
->name
)) {
1294 return NT_STATUS_INVALID_PARAMETER
;
1298 if (!directory_exist(finfo
->name
) &&
1299 mkdir(finfo
->name
,0777) != 0) {
1300 d_printf("failed to create directory %s\n",finfo
->name
);
1301 client_set_cur_dir(saved_curdir
);
1302 return map_nt_error_from_unix(errno
);
1305 if (chdir(finfo
->name
) != 0) {
1306 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1307 client_set_cur_dir(saved_curdir
);
1308 return map_nt_error_from_unix(errno
);
1311 mget_mask
= talloc_asprintf(ctx
,
1313 client_get_cur_dir());
1316 return NT_STATUS_NO_MEMORY
;
1319 status
= do_list(mget_mask
,
1320 (FILE_ATTRIBUTE_SYSTEM
1321 | FILE_ATTRIBUTE_HIDDEN
1322 | FILE_ATTRIBUTE_DIRECTORY
),
1323 do_mget
, false, true);
1324 if (!NT_STATUS_IS_OK(status
)
1325 && !NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
1327 * Ignore access denied errors to ensure all permitted files are
1333 if (chdir("..") == -1) {
1334 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1336 return map_nt_error_from_unix(errno
);
1338 client_set_cur_dir(saved_curdir
);
1339 TALLOC_FREE(mget_mask
);
1340 TALLOC_FREE(saved_curdir
);
1341 TALLOC_FREE(new_cd
);
1342 return NT_STATUS_OK
;
1345 /****************************************************************************
1346 View the file using the pager.
1347 ****************************************************************************/
1349 static int cmd_more(void)
1351 TALLOC_CTX
*ctx
= talloc_tos();
1355 char *pager_cmd
= NULL
;
1361 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1366 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1370 mask
= umask(S_IRWXO
| S_IRWXG
);
1371 fd
= mkstemp(lname
);
1374 d_printf("failed to create temporary file for more\n");
1379 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1380 d_printf("more <filename>\n");
1384 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1388 rname
= clean_name(ctx
,rname
);
1393 rc
= do_get(rname
, lname
, false);
1395 pager
=getenv("PAGER");
1397 pager_cmd
= talloc_asprintf(ctx
,
1399 (pager
? pager
:PAGER
),
1404 if (system(pager_cmd
) == -1) {
1405 d_printf("system command '%s' returned -1\n",
1413 /****************************************************************************
1415 ****************************************************************************/
1417 static int cmd_mget(void)
1419 TALLOC_CTX
*ctx
= talloc_tos();
1420 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1421 char *mget_mask
= NULL
;
1423 NTSTATUS status
= NT_STATUS_OK
;
1426 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1431 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1433 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1437 if (*buf
== CLI_DIRSEP_CHAR
) {
1438 mget_mask
= talloc_strdup(ctx
, buf
);
1440 mget_mask
= talloc_asprintf_append(mget_mask
,
1446 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1447 if (!NT_STATUS_IS_OK(status
)) {
1452 if (mget_mask
== NULL
) {
1453 d_printf("nothing to mget\n");
1458 mget_mask
= talloc_asprintf(ctx
,
1460 client_get_cur_dir());
1464 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1465 if (!NT_STATUS_IS_OK(status
)) {
1473 /****************************************************************************
1474 Make a directory of name "name".
1475 ****************************************************************************/
1477 static bool do_mkdir(const char *name
)
1479 TALLOC_CTX
*ctx
= talloc_tos();
1480 struct cli_state
*targetcli
;
1481 char *targetname
= NULL
;
1484 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
1486 if (!NT_STATUS_IS_OK(status
)) {
1487 d_printf("mkdir %s: %s\n", name
, nt_errstr(status
));
1491 status
= cli_mkdir(targetcli
, targetname
);
1492 if (!NT_STATUS_IS_OK(status
)) {
1493 d_printf("%s making remote directory %s\n",
1494 nt_errstr(status
),name
);
1501 /****************************************************************************
1502 Show 8.3 name of a file.
1503 ****************************************************************************/
1505 static bool do_altname(const char *name
)
1510 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1511 if (!NT_STATUS_IS_OK(status
)) {
1512 d_printf("%s getting alt name for %s\n",
1513 nt_errstr(status
),name
);
1516 d_printf("%s\n", altname
);
1521 /****************************************************************************
1523 ****************************************************************************/
1525 static int cmd_quit(void)
1533 /****************************************************************************
1535 ****************************************************************************/
1537 static int cmd_mkdir(void)
1539 TALLOC_CTX
*ctx
= talloc_tos();
1544 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1549 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1551 d_printf("mkdir <dirname>\n");
1555 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1563 struct cli_state
*targetcli
;
1564 char *targetname
= NULL
;
1568 ddir2
= talloc_strdup(ctx
, "");
1573 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
1574 &targetcli
, &targetname
);
1575 if (!NT_STATUS_IS_OK(status
)) {
1579 ddir
= talloc_strdup(ctx
, targetname
);
1583 trim_char(ddir
,'.','\0');
1584 p
= strtok_r(ddir
, "/\\", &saveptr
);
1586 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1590 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1593 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1597 p
= strtok_r(NULL
, "/\\", &saveptr
);
1606 /****************************************************************************
1608 ****************************************************************************/
1610 static int cmd_altname(void)
1612 TALLOC_CTX
*ctx
= talloc_tos();
1616 name
= talloc_strdup(ctx
, client_get_cur_dir());
1621 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1622 d_printf("altname <file>\n");
1625 name
= talloc_asprintf_append(name
, "%s", buf
);
1633 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1635 char *attrs
= talloc_zero_array(mem_ctx
, char, 17);
1638 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1639 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1642 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1645 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1648 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1651 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1654 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1657 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1660 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1663 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1666 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1669 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1672 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1675 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1682 /****************************************************************************
1683 Show all info we can get
1684 ****************************************************************************/
1686 static int do_allinfo(const char *name
)
1689 struct timespec b_time
, a_time
, m_time
, c_time
;
1694 unsigned int num_streams
;
1695 struct stream_struct
*streams
;
1701 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1702 if (!NT_STATUS_IS_OK(status
)) {
1703 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1706 * Ignore not supported or not implemented, it does not
1707 * hurt if we can't list alternate names.
1709 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_SUPPORTED
) ||
1710 NT_STATUS_EQUAL(status
, NT_STATUS_NOT_IMPLEMENTED
)) {
1716 d_printf("altname: %s\n", altname
);
1718 status
= cli_qpathinfo3(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1719 &size
, &mode
, NULL
);
1720 if (!NT_STATUS_IS_OK(status
)) {
1721 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1726 unix_timespec_to_nt_time(&tmp
, b_time
);
1727 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1729 unix_timespec_to_nt_time(&tmp
, a_time
);
1730 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1732 unix_timespec_to_nt_time(&tmp
, m_time
);
1733 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1735 unix_timespec_to_nt_time(&tmp
, c_time
);
1736 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1738 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1740 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1742 if (!NT_STATUS_IS_OK(status
)) {
1743 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1748 for (i
=0; i
<num_streams
; i
++) {
1749 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1750 (unsigned long long)streams
[i
].size
);
1753 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1754 char *subst
, *print
;
1757 status
= cli_readlink(cli
, name
, talloc_tos(), &subst
, &print
,
1759 if (!NT_STATUS_IS_OK(status
)) {
1760 d_fprintf(stderr
, "cli_readlink returned %s\n",
1763 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1764 subst
, print
, flags
);
1770 status
= cli_ntcreate(cli
, name
, 0,
1771 SEC_FILE_READ_DATA
| SEC_FILE_READ_ATTRIBUTE
|
1772 SEC_STD_SYNCHRONIZE
, 0,
1773 FILE_SHARE_READ
|FILE_SHARE_WRITE
1775 FILE_OPEN
, 0x0, 0x0, &fnum
);
1776 if (!NT_STATUS_IS_OK(status
)) {
1778 * Ignore failure, it does not hurt if we can't list
1783 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1784 true, &snapshots
, &num_snapshots
);
1785 if (!NT_STATUS_IS_OK(status
)) {
1786 cli_close(cli
, fnum
);
1790 for (i
=0; i
<num_snapshots
; i
++) {
1793 d_printf("%s\n", snapshots
[i
]);
1794 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1795 snapshots
[i
], name
);
1796 status
= cli_qpathinfo3(cli
, snap_name
, &b_time
, &a_time
,
1797 &m_time
, &c_time
, &size
,
1799 if (!NT_STATUS_IS_OK(status
)) {
1800 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1801 snap_name
, nt_errstr(status
));
1802 TALLOC_FREE(snap_name
);
1805 unix_timespec_to_nt_time(&tmp
, b_time
);
1806 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1807 unix_timespec_to_nt_time(&tmp
, a_time
);
1808 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1809 unix_timespec_to_nt_time(&tmp
, m_time
);
1810 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1811 unix_timespec_to_nt_time(&tmp
, c_time
);
1812 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1813 d_printf("size: %d\n", (int)size
);
1816 TALLOC_FREE(snapshots
);
1821 /****************************************************************************
1822 Show all info we can get
1823 ****************************************************************************/
1825 static int cmd_allinfo(void)
1827 TALLOC_CTX
*ctx
= talloc_tos();
1831 name
= talloc_strdup(ctx
, client_get_cur_dir());
1836 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1837 d_printf("allinfo <file>\n");
1840 name
= talloc_asprintf_append(name
, "%s", buf
);
1850 /****************************************************************************
1852 ****************************************************************************/
1854 static int do_put(const char *rname
, const char *lname
, bool reput
)
1856 TALLOC_CTX
*ctx
= talloc_tos();
1861 struct timespec tp_start
;
1862 struct cli_state
*targetcli
;
1863 char *targetname
= NULL
;
1864 struct push_state state
;
1867 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
,
1868 &targetcli
, &targetname
);
1869 if (!NT_STATUS_IS_OK(status
)) {
1870 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1874 clock_gettime_mono(&tp_start
);
1877 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1878 if (NT_STATUS_IS_OK(status
)) {
1879 if (!NT_STATUS_IS_OK(status
= cli_qfileinfo_basic(
1880 targetcli
, fnum
, NULL
,
1882 NULL
, NULL
, NULL
)) &&
1883 !NT_STATUS_IS_OK(status
= cli_getattrE(
1884 targetcli
, fnum
, NULL
,
1887 d_printf("getattrib: %s\n", nt_errstr(status
));
1892 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1895 if (!NT_STATUS_IS_OK(status
)) {
1896 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1901 /* allow files to be piped into smbclient
1904 Note that in this case this function will exit(0) rather
1906 if (!strcmp(lname
, "-")) {
1908 /* size of file is not known */
1910 f
= x_fopen(lname
,O_RDONLY
, 0);
1912 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1913 d_printf("Error seeking local file\n");
1921 d_printf("Error opening local file %s\n",lname
);
1925 DEBUG(1,("putting file %s as %s ",lname
,
1928 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1933 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1935 if (!NT_STATUS_IS_OK(status
)) {
1936 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1940 status
= cli_close(targetcli
, fnum
);
1941 if (!NT_STATUS_IS_OK(status
)) {
1942 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1955 struct timespec tp_end
;
1958 clock_gettime_mono(&tp_end
);
1959 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1960 put_total_time_ms
+= this_time
;
1961 put_total_size
+= state
.nread
;
1963 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1964 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1965 put_total_size
/ (1.024*put_total_time_ms
)));
1976 /****************************************************************************
1978 ****************************************************************************/
1980 static int cmd_put(void)
1982 TALLOC_CTX
*ctx
= talloc_tos();
1987 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1992 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1993 d_printf("put <filename>\n");
1997 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1998 rname
= talloc_asprintf_append(rname
, "%s", buf
);
2000 rname
= talloc_asprintf_append(rname
, "%s", lname
);
2006 rname
= clean_name(ctx
, rname
);
2013 /* allow '-' to represent stdin
2014 jdblair, 24.jun.98 */
2015 if (!file_exist_stat(lname
, &st
, false) &&
2016 (strcmp(lname
,"-"))) {
2017 d_printf("%s does not exist\n",lname
);
2022 return do_put(rname
, lname
, false);
2025 /*************************************
2026 File list structure.
2027 *************************************/
2029 static struct file_list
{
2030 struct file_list
*prev
, *next
;
2035 /****************************************************************************
2036 Free a file_list structure.
2037 ****************************************************************************/
2039 static void free_file_list (struct file_list
*l_head
)
2041 struct file_list
*list
, *next
;
2043 for (list
= l_head
; list
; list
= next
) {
2045 DLIST_REMOVE(l_head
, list
);
2046 SAFE_FREE(list
->file_path
);
2051 /****************************************************************************
2052 Seek in a directory/file list until you get something that doesn't start with
2054 ****************************************************************************/
2056 static bool seek_list(struct file_list
*list
, char *name
)
2059 trim_string(list
->file_path
,"./","\n");
2060 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2069 /****************************************************************************
2070 Set the file selection mask.
2071 ****************************************************************************/
2073 static int cmd_select(void)
2075 TALLOC_CTX
*ctx
= talloc_tos();
2076 char *new_fs
= NULL
;
2077 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2080 client_set_fileselection(new_fs
);
2082 client_set_fileselection("");
2087 /****************************************************************************
2088 Recursive file matching function act as find
2089 match must be always set to true when calling this function
2090 ****************************************************************************/
2092 static int file_find(struct file_list
**list
, const char *directory
,
2093 const char *expression
, bool match
)
2096 struct file_list
*entry
;
2097 struct stat statbuf
;
2103 dir
= opendir(directory
);
2107 while ((dname
= readdirname(dir
))) {
2108 if (!strcmp("..", dname
))
2110 if (!strcmp(".", dname
))
2113 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2118 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2120 ret
= stat(path
, &statbuf
);
2122 if (S_ISDIR(statbuf
.st_mode
)) {
2124 ret
= file_find(list
, path
, expression
, false);
2127 d_printf("file_find: cannot stat file %s\n", path
);
2136 entry
= SMB_MALLOC_P(struct file_list
);
2138 d_printf("Out of memory in file_find\n");
2142 entry
->file_path
= path
;
2143 entry
->isdir
= isdir
;
2144 DLIST_ADD(*list
, entry
);
2154 /****************************************************************************
2156 ****************************************************************************/
2158 static int cmd_mput(void)
2160 TALLOC_CTX
*ctx
= talloc_tos();
2163 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2165 struct file_list
*temp_list
;
2166 char *quest
, *lname
, *rname
;
2170 ret
= file_find(&file_list
, ".", p
, true);
2172 free_file_list(file_list
);
2180 for (temp_list
= file_list
; temp_list
;
2181 temp_list
= temp_list
->next
) {
2184 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2187 trim_string(lname
, "./", "/");
2189 /* check if it's a directory */
2190 if (temp_list
->isdir
) {
2191 /* if (!recurse) continue; */
2194 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2197 if (prompt
&& !yesno(quest
)) { /* No */
2198 /* Skip the directory */
2199 lname
[strlen(lname
)-1] = '/';
2200 if (!seek_list(temp_list
, lname
))
2204 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2207 normalize_name(rname
);
2208 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2210 DEBUG (0, ("Unable to make dir, skipping..."));
2211 /* Skip the directory */
2212 lname
[strlen(lname
)-1] = '/';
2213 if (!seek_list(temp_list
, lname
)) {
2221 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2224 if (prompt
&& !yesno(quest
)) {
2231 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2236 normalize_name(rname
);
2238 do_put(rname
, lname
, false);
2240 free_file_list(file_list
);
2249 /****************************************************************************
2251 ****************************************************************************/
2253 static int do_cancel(int job
)
2255 if (cli_printjob_del(cli
, job
)) {
2256 d_printf("Job %d cancelled\n",job
);
2259 NTSTATUS status
= cli_nt_error(cli
);
2260 d_printf("Error cancelling job %d : %s\n",
2261 job
, nt_errstr(status
));
2266 /****************************************************************************
2268 ****************************************************************************/
2270 static int cmd_cancel(void)
2272 TALLOC_CTX
*ctx
= talloc_tos();
2276 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2277 d_printf("cancel <jobid> ...\n");
2283 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2288 /****************************************************************************
2290 ****************************************************************************/
2292 static int cmd_print(void)
2294 TALLOC_CTX
*ctx
= talloc_tos();
2299 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2300 d_printf("print <filename>\n");
2304 rname
= talloc_strdup(ctx
, lname
);
2308 p
= strrchr_m(rname
,'/');
2310 rname
= talloc_asprintf(ctx
,
2315 if (strequal(lname
,"-")) {
2316 rname
= talloc_asprintf(ctx
,
2324 return do_put(rname
, lname
, false);
2327 /****************************************************************************
2328 Show a print queue entry.
2329 ****************************************************************************/
2331 static void queue_fn(struct print_job_info
*p
)
2333 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2336 /****************************************************************************
2338 ****************************************************************************/
2340 static int cmd_queue(void)
2342 cli_print_queue(cli
, queue_fn
);
2346 /****************************************************************************
2348 ****************************************************************************/
2350 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2353 TALLOC_CTX
*ctx
= talloc_tos();
2357 mask
= talloc_asprintf(ctx
,
2363 return NT_STATUS_NO_MEMORY
;
2366 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
2368 return NT_STATUS_OK
;
2371 status
= cli_unlink(cli_state
, mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2372 if (!NT_STATUS_IS_OK(status
)) {
2373 d_printf("%s deleting remote file %s\n",
2374 nt_errstr(status
), mask
);
2380 /****************************************************************************
2382 ****************************************************************************/
2384 static int cmd_del(void)
2386 TALLOC_CTX
*ctx
= talloc_tos();
2389 NTSTATUS status
= NT_STATUS_OK
;
2390 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
2393 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
2396 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2400 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2401 d_printf("del <filename>\n");
2404 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2409 status
= do_list(mask
,attribute
,do_del
,false,false);
2410 if (!NT_STATUS_IS_OK(status
)) {
2416 /****************************************************************************
2417 Wildcard delete some files.
2418 ****************************************************************************/
2420 static int cmd_wdel(void)
2422 TALLOC_CTX
*ctx
= talloc_tos();
2426 struct cli_state
*targetcli
;
2427 char *targetname
= NULL
;
2430 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2431 d_printf("wdel 0x<attrib> <wcard>\n");
2435 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2437 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2438 d_printf("wdel 0x<attrib> <wcard>\n");
2442 mask
= talloc_asprintf(ctx
, "%s%s",
2443 client_get_cur_dir(),
2449 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2451 if (!NT_STATUS_IS_OK(status
)) {
2452 d_printf("cmd_wdel %s: %s\n", mask
, nt_errstr(status
));
2456 status
= cli_unlink(targetcli
, targetname
, attribute
);
2457 if (!NT_STATUS_IS_OK(status
)) {
2458 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2464 /****************************************************************************
2465 ****************************************************************************/
2467 static int cmd_open(void)
2469 TALLOC_CTX
*ctx
= talloc_tos();
2472 char *targetname
= NULL
;
2473 struct cli_state
*targetcli
;
2474 uint16_t fnum
= (uint16_t)-1;
2477 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2478 d_printf("open <filename>\n");
2481 mask
= talloc_asprintf(ctx
,
2483 client_get_cur_dir(),
2489 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2491 if (!NT_STATUS_IS_OK(status
)) {
2492 d_printf("open %s: %s\n", mask
, nt_errstr(status
));
2496 status
= cli_ntcreate(targetcli
, targetname
, 0,
2497 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2498 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2500 if (!NT_STATUS_IS_OK(status
)) {
2501 status
= cli_ntcreate(targetcli
, targetname
, 0,
2503 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2505 if (NT_STATUS_IS_OK(status
)) {
2506 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2508 d_printf("Failed to open file %s. %s\n",
2509 targetname
, nt_errstr(status
));
2512 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2517 static int cmd_posix_encrypt(void)
2519 TALLOC_CTX
*ctx
= talloc_tos();
2520 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2522 if (cli
->use_kerberos
) {
2523 status
= cli_gss_smb_encryption_start(cli
);
2525 char *domain
= NULL
;
2527 char *password
= NULL
;
2529 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2530 d_printf("posix_encrypt domain user password\n");
2534 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2535 d_printf("posix_encrypt domain user password\n");
2539 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2540 d_printf("posix_encrypt domain user password\n");
2544 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2550 if (!NT_STATUS_IS_OK(status
)) {
2551 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2553 d_printf("encryption on\n");
2560 /****************************************************************************
2561 ****************************************************************************/
2563 static int cmd_posix_open(void)
2565 TALLOC_CTX
*ctx
= talloc_tos();
2568 char *targetname
= NULL
;
2569 struct cli_state
*targetcli
;
2574 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2575 d_printf("posix_open <filename> 0<mode>\n");
2578 mask
= talloc_asprintf(ctx
,
2580 client_get_cur_dir(),
2586 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2587 d_printf("posix_open <filename> 0<mode>\n");
2590 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2592 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2594 if (!NT_STATUS_IS_OK(status
)) {
2595 d_printf("posix_open %s: %s\n", mask
, nt_errstr(status
));
2599 status
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
,
2601 if (!NT_STATUS_IS_OK(status
)) {
2602 status
= cli_posix_open(targetcli
, targetname
,
2603 O_CREAT
|O_RDONLY
, mode
, &fnum
);
2604 if (!NT_STATUS_IS_OK(status
)) {
2605 d_printf("Failed to open file %s. %s\n", targetname
,
2608 d_printf("posix_open file %s: for readonly fnum %d\n",
2612 d_printf("posix_open file %s: for read/write fnum %d\n",
2619 static int cmd_posix_mkdir(void)
2621 TALLOC_CTX
*ctx
= talloc_tos();
2624 char *targetname
= NULL
;
2625 struct cli_state
*targetcli
;
2629 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2630 d_printf("posix_mkdir <filename> 0<mode>\n");
2633 mask
= talloc_asprintf(ctx
,
2635 client_get_cur_dir(),
2641 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2642 d_printf("posix_mkdir <filename> 0<mode>\n");
2645 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2647 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2649 if (!NT_STATUS_IS_OK(status
)) {
2650 d_printf("posix_mkdir %s: %s\n", mask
, nt_errstr(status
));
2654 status
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2655 if (!NT_STATUS_IS_OK(status
)) {
2656 d_printf("Failed to open file %s. %s\n",
2657 targetname
, nt_errstr(status
));
2659 d_printf("posix_mkdir created directory %s\n", targetname
);
2664 static int cmd_posix_unlink(void)
2666 TALLOC_CTX
*ctx
= talloc_tos();
2669 char *targetname
= NULL
;
2670 struct cli_state
*targetcli
;
2673 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2674 d_printf("posix_unlink <filename>\n");
2677 mask
= talloc_asprintf(ctx
,
2679 client_get_cur_dir(),
2685 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2687 if (!NT_STATUS_IS_OK(status
)) {
2688 d_printf("posix_unlink %s: %s\n", mask
, nt_errstr(status
));
2692 status
= cli_posix_unlink(targetcli
, targetname
);
2693 if (!NT_STATUS_IS_OK(status
)) {
2694 d_printf("Failed to unlink file %s. %s\n",
2695 targetname
, nt_errstr(status
));
2697 d_printf("posix_unlink deleted file %s\n", targetname
);
2703 static int cmd_posix_rmdir(void)
2705 TALLOC_CTX
*ctx
= talloc_tos();
2708 char *targetname
= NULL
;
2709 struct cli_state
*targetcli
;
2712 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2713 d_printf("posix_rmdir <filename>\n");
2716 mask
= talloc_asprintf(ctx
,
2718 client_get_cur_dir(),
2724 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2726 if (!NT_STATUS_IS_OK(status
)) {
2727 d_printf("posix_rmdir %s: %s\n", mask
, nt_errstr(status
));
2731 status
= cli_posix_rmdir(targetcli
, targetname
);
2732 if (!NT_STATUS_IS_OK(status
)) {
2733 d_printf("Failed to unlink directory %s. %s\n",
2734 targetname
, nt_errstr(status
));
2736 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2742 static int cmd_close(void)
2744 TALLOC_CTX
*ctx
= talloc_tos();
2749 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2750 d_printf("close <fnum>\n");
2755 /* We really should use the targetcli here.... */
2756 status
= cli_close(cli
, fnum
);
2757 if (!NT_STATUS_IS_OK(status
)) {
2758 d_printf("close %d: %s\n", fnum
, nt_errstr(status
));
2764 static int cmd_posix(void)
2766 TALLOC_CTX
*ctx
= talloc_tos();
2767 uint16 major
, minor
;
2768 uint32 caplow
, caphigh
;
2772 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2773 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2777 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2779 if (!NT_STATUS_IS_OK(status
)) {
2780 d_printf("Can't get UNIX CIFS extensions version from "
2781 "server: %s\n", nt_errstr(status
));
2785 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2787 caps
= talloc_strdup(ctx
, "");
2791 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2792 caps
= talloc_asprintf_append(caps
, "locks ");
2797 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2798 caps
= talloc_asprintf_append(caps
, "acls ");
2803 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2804 caps
= talloc_asprintf_append(caps
, "eas ");
2809 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2810 caps
= talloc_asprintf_append(caps
, "pathnames ");
2815 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2816 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2821 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2822 caps
= talloc_asprintf_append(caps
, "large_read ");
2827 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2828 caps
= talloc_asprintf_append(caps
, "large_write ");
2833 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2834 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2839 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2840 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2846 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2847 caps
[strlen(caps
)-1] = '\0';
2850 d_printf("Server supports CIFS capabilities %s\n", caps
);
2852 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2854 if (!NT_STATUS_IS_OK(status
)) {
2855 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2860 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2861 CLI_DIRSEP_CHAR
= '/';
2862 *CLI_DIRSEP_STR
= '/';
2863 client_set_cur_dir(CLI_DIRSEP_STR
);
2869 static int cmd_lock(void)
2871 TALLOC_CTX
*ctx
= talloc_tos();
2873 uint64_t start
, len
;
2874 enum brl_type lock_type
;
2878 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2879 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2884 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2885 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2889 if (*buf
== 'r' || *buf
== 'R') {
2890 lock_type
= READ_LOCK
;
2891 } else if (*buf
== 'w' || *buf
== 'W') {
2892 lock_type
= WRITE_LOCK
;
2894 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2898 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2899 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2903 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2905 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2906 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2910 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2912 status
= cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
);
2913 if (!NT_STATUS_IS_OK(status
)) {
2914 d_printf("lock failed %d: %s\n", fnum
, nt_errstr(status
));
2920 static int cmd_unlock(void)
2922 TALLOC_CTX
*ctx
= talloc_tos();
2924 uint64_t start
, len
;
2928 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2929 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2934 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2935 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2939 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2941 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2942 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2946 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2948 status
= cli_posix_unlock(cli
, fnum
, start
, len
);
2949 if (!NT_STATUS_IS_OK(status
)) {
2950 d_printf("unlock failed %d: %s\n", fnum
, nt_errstr(status
));
2957 /****************************************************************************
2959 ****************************************************************************/
2961 static int cmd_rmdir(void)
2963 TALLOC_CTX
*ctx
= talloc_tos();
2966 char *targetname
= NULL
;
2967 struct cli_state
*targetcli
;
2970 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2971 d_printf("rmdir <dirname>\n");
2974 mask
= talloc_asprintf(ctx
,
2976 client_get_cur_dir(),
2982 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2984 if (!NT_STATUS_IS_OK(status
)) {
2985 d_printf("rmdir %s: %s\n", mask
, nt_errstr(status
));
2989 status
= cli_rmdir(targetcli
, targetname
);
2990 if (!NT_STATUS_IS_OK(status
)) {
2991 d_printf("%s removing remote directory file %s\n",
2992 nt_errstr(status
), mask
);
2998 /****************************************************************************
3000 ****************************************************************************/
3002 static int cmd_link(void)
3004 TALLOC_CTX
*ctx
= talloc_tos();
3005 char *oldname
= NULL
;
3006 char *newname
= NULL
;
3009 char *targetname
= NULL
;
3010 struct cli_state
*targetcli
;
3013 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3014 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3015 d_printf("link <oldname> <newname>\n");
3018 oldname
= talloc_asprintf(ctx
,
3020 client_get_cur_dir(),
3025 newname
= talloc_asprintf(ctx
,
3027 client_get_cur_dir(),
3033 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
,
3035 if (!NT_STATUS_IS_OK(status
)) {
3036 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3040 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3041 d_printf("Server doesn't support UNIX CIFS calls.\n");
3045 status
= cli_posix_hardlink(targetcli
, targetname
, newname
);
3046 if (!NT_STATUS_IS_OK(status
)) {
3047 d_printf("%s linking files (%s -> %s)\n",
3048 nt_errstr(status
), newname
, oldname
);
3054 /****************************************************************************
3056 ****************************************************************************/
3058 static int cmd_readlink(void)
3060 TALLOC_CTX
*ctx
= talloc_tos();
3063 char *targetname
= NULL
;
3064 char linkname
[PATH_MAX
+1];
3065 struct cli_state
*targetcli
;
3068 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3069 d_printf("readlink <name>\n");
3072 name
= talloc_asprintf(ctx
,
3074 client_get_cur_dir(),
3080 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
3082 if (!NT_STATUS_IS_OK(status
)) {
3083 d_printf("readlink %s: %s\n", name
, nt_errstr(status
));
3087 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3088 d_printf("Server doesn't support UNIX CIFS calls.\n");
3092 status
= cli_posix_readlink(targetcli
, name
, linkname
, PATH_MAX
+1);
3093 if (!NT_STATUS_IS_OK(status
)) {
3094 d_printf("%s readlink on file %s\n",
3095 nt_errstr(status
), name
);
3099 d_printf("%s -> %s\n", name
, linkname
);
3105 /****************************************************************************
3107 ****************************************************************************/
3109 static int cmd_symlink(void)
3111 TALLOC_CTX
*ctx
= talloc_tos();
3112 char *oldname
= NULL
;
3113 char *newname
= NULL
;
3116 struct cli_state
*newcli
;
3119 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3120 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3121 d_printf("symlink <oldname> <newname>\n");
3124 /* Oldname (link target) must be an untouched blob. */
3127 if (SERVER_HAS_UNIX_CIFS(cli
)) {
3128 newname
= talloc_asprintf(ctx
, "%s%s", client_get_cur_dir(),
3133 /* New name must be present in share namespace. */
3134 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, newname
,
3136 if (!NT_STATUS_IS_OK(status
)) {
3137 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3140 status
= cli_posix_symlink(newcli
, oldname
, newname
);
3142 status
= cli_symlink(
3144 buf2
[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE
);
3147 if (!NT_STATUS_IS_OK(status
)) {
3148 d_printf("%s symlinking files (%s -> %s)\n",
3149 nt_errstr(status
), oldname
, newname
);
3156 /****************************************************************************
3158 ****************************************************************************/
3160 static int cmd_chmod(void)
3162 TALLOC_CTX
*ctx
= talloc_tos();
3166 char *targetname
= NULL
;
3167 struct cli_state
*targetcli
;
3171 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3172 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3173 d_printf("chmod mode file\n");
3176 src
= talloc_asprintf(ctx
,
3178 client_get_cur_dir(),
3184 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3186 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3188 if (!NT_STATUS_IS_OK(status
)) {
3189 d_printf("chmod %s: %s\n", src
, nt_errstr(status
));
3193 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3194 d_printf("Server doesn't support UNIX CIFS calls.\n");
3198 status
= cli_posix_chmod(targetcli
, targetname
, mode
);
3199 if (!NT_STATUS_IS_OK(status
)) {
3200 d_printf("%s chmod file %s 0%o\n",
3201 nt_errstr(status
), src
, (unsigned int)mode
);
3208 static const char *filetype_to_str(mode_t mode
)
3210 if (S_ISREG(mode
)) {
3211 return "regular file";
3212 } else if (S_ISDIR(mode
)) {
3216 if (S_ISCHR(mode
)) {
3217 return "character device";
3221 if (S_ISBLK(mode
)) {
3222 return "block device";
3226 if (S_ISFIFO(mode
)) {
3231 if (S_ISLNK(mode
)) {
3232 return "symbolic link";
3236 if (S_ISSOCK(mode
)) {
3243 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3252 static char *unix_mode_to_str(char *s
, mode_t m
)
3255 const char *str
= filetype_to_str(m
);
3271 *p
++ = str
[1] == 'y' ? 'l' : 's';
3278 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3279 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3280 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3281 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3282 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3283 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3284 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3285 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3286 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3291 /****************************************************************************
3292 Utility function for UNIX getfacl.
3293 ****************************************************************************/
3295 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3297 fstrcpy(permstr
, "---");
3298 if (perms
& SMB_POSIX_ACL_READ
) {
3301 if (perms
& SMB_POSIX_ACL_WRITE
) {
3304 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3310 /****************************************************************************
3312 ****************************************************************************/
3314 static int cmd_getfacl(void)
3316 TALLOC_CTX
*ctx
= talloc_tos();
3319 char *targetname
= NULL
;
3320 struct cli_state
*targetcli
;
3321 uint16 major
, minor
;
3322 uint32 caplow
, caphigh
;
3323 char *retbuf
= NULL
;
3325 SMB_STRUCT_STAT sbuf
;
3326 uint16 num_file_acls
= 0;
3327 uint16 num_dir_acls
= 0;
3331 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3332 d_printf("getfacl filename\n");
3335 src
= talloc_asprintf(ctx
,
3337 client_get_cur_dir(),
3343 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3345 if (!NT_STATUS_IS_OK(status
)) {
3346 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3350 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3351 d_printf("Server doesn't support UNIX CIFS calls.\n");
3355 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3357 if (!NT_STATUS_IS_OK(status
)) {
3358 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3363 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3364 d_printf("This server supports UNIX extensions "
3365 "but doesn't support POSIX ACLs.\n");
3369 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3370 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3371 d_printf("%s getfacl doing a stat on file %s\n",
3372 nt_errstr(status
), src
);
3376 status
= cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
);
3377 if (!NT_STATUS_IS_OK(status
)) {
3378 d_printf("%s getfacl file %s\n",
3379 nt_errstr(status
), src
);
3383 /* ToDo : Print out the ACL values. */
3384 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3385 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3386 src
, (unsigned int)CVAL(retbuf
,0) );
3390 num_file_acls
= SVAL(retbuf
,2);
3391 num_dir_acls
= SVAL(retbuf
,4);
3392 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3393 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3395 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3396 (unsigned int)rb_size
);
3400 d_printf("# file: %s\n", src
);
3401 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3403 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3404 d_printf("No acls found.\n");
3407 for (i
= 0; i
< num_file_acls
; i
++) {
3410 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3411 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3414 case SMB_POSIX_ACL_USER_OBJ
:
3417 case SMB_POSIX_ACL_USER
:
3418 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3419 d_printf("user:%u:", uorg
);
3421 case SMB_POSIX_ACL_GROUP_OBJ
:
3422 d_printf("group::");
3424 case SMB_POSIX_ACL_GROUP
:
3425 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3426 d_printf("group:%u:", uorg
);
3428 case SMB_POSIX_ACL_MASK
:
3431 case SMB_POSIX_ACL_OTHER
:
3432 d_printf("other::");
3435 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3436 src
, (unsigned int)tagtype
);
3441 d_printf("%s\n", perms_to_string(permstring
, perms
));
3444 for (i
= 0; i
< num_dir_acls
; i
++) {
3447 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3448 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3451 case SMB_POSIX_ACL_USER_OBJ
:
3452 d_printf("default:user::");
3454 case SMB_POSIX_ACL_USER
:
3455 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3456 d_printf("default:user:%u:", uorg
);
3458 case SMB_POSIX_ACL_GROUP_OBJ
:
3459 d_printf("default:group::");
3461 case SMB_POSIX_ACL_GROUP
:
3462 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3463 d_printf("default:group:%u:", uorg
);
3465 case SMB_POSIX_ACL_MASK
:
3466 d_printf("default:mask::");
3468 case SMB_POSIX_ACL_OTHER
:
3469 d_printf("default:other::");
3472 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3473 src
, (unsigned int)tagtype
);
3478 d_printf("%s\n", perms_to_string(permstring
, perms
));
3484 /****************************************************************************
3485 Get the EA list of a file
3486 ****************************************************************************/
3488 static int cmd_geteas(void)
3490 TALLOC_CTX
*ctx
= talloc_tos();
3493 char *targetname
= NULL
;
3494 struct cli_state
*targetcli
;
3497 struct ea_struct
*eas
;
3499 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3500 d_printf("geteas filename\n");
3503 src
= talloc_asprintf(ctx
,
3505 client_get_cur_dir(),
3511 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3513 if (!NT_STATUS_IS_OK(status
)) {
3514 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3518 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3520 if (!NT_STATUS_IS_OK(status
)) {
3521 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3525 for (i
=0; i
<num_eas
; i
++) {
3526 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3527 dump_data_file(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3537 /****************************************************************************
3539 ****************************************************************************/
3541 static int cmd_setea(void)
3543 TALLOC_CTX
*ctx
= talloc_tos();
3546 char *eaname
= NULL
;
3547 char *eavalue
= NULL
;
3548 char *targetname
= NULL
;
3549 struct cli_state
*targetcli
;
3552 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3553 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3554 d_printf("setea filename eaname value\n");
3557 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3558 eavalue
= talloc_strdup(ctx
, "");
3560 src
= talloc_asprintf(ctx
,
3562 client_get_cur_dir(),
3568 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3570 if (!NT_STATUS_IS_OK(status
)) {
3571 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3575 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3577 if (!NT_STATUS_IS_OK(status
)) {
3578 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3585 /****************************************************************************
3587 ****************************************************************************/
3589 static int cmd_stat(void)
3591 TALLOC_CTX
*ctx
= talloc_tos();
3594 char *targetname
= NULL
;
3595 struct cli_state
*targetcli
;
3597 SMB_STRUCT_STAT sbuf
;
3602 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3603 d_printf("stat file\n");
3606 src
= talloc_asprintf(ctx
,
3608 client_get_cur_dir(),
3614 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3616 if (!NT_STATUS_IS_OK(status
)) {
3617 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3621 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3622 d_printf("Server doesn't support UNIX CIFS calls.\n");
3626 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3627 if (!NT_STATUS_IS_OK(status
)) {
3628 d_printf("%s stat file %s\n",
3629 nt_errstr(status
), src
);
3633 /* Print out the stat values. */
3634 d_printf("File: %s\n", src
);
3635 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3636 (double)sbuf
.st_ex_size
,
3637 (unsigned int)sbuf
.st_ex_blocks
,
3638 filetype_to_str(sbuf
.st_ex_mode
));
3640 #if defined(S_ISCHR) && defined(S_ISBLK)
3641 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3642 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3643 (double)sbuf
.st_ex_ino
,
3644 (unsigned int)sbuf
.st_ex_nlink
,
3645 unix_dev_major(sbuf
.st_ex_rdev
),
3646 unix_dev_minor(sbuf
.st_ex_rdev
));
3649 d_printf("Inode: %.0f\tLinks: %u\n",
3650 (double)sbuf
.st_ex_ino
,
3651 (unsigned int)sbuf
.st_ex_nlink
);
3653 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3654 ((int)sbuf
.st_ex_mode
& 0777),
3655 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3656 (unsigned int)sbuf
.st_ex_uid
,
3657 (unsigned int)sbuf
.st_ex_gid
);
3659 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3660 lt
= localtime(&tmp_time
);
3662 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3664 fstrcpy(mode_str
, "unknown");
3666 d_printf("Access: %s\n", mode_str
);
3668 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3669 lt
= localtime(&tmp_time
);
3671 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3673 fstrcpy(mode_str
, "unknown");
3675 d_printf("Modify: %s\n", mode_str
);
3677 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3678 lt
= localtime(&tmp_time
);
3680 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3682 fstrcpy(mode_str
, "unknown");
3684 d_printf("Change: %s\n", mode_str
);
3690 /****************************************************************************
3692 ****************************************************************************/
3694 static int cmd_chown(void)
3696 TALLOC_CTX
*ctx
= talloc_tos();
3700 char *buf
, *buf2
, *buf3
;
3701 struct cli_state
*targetcli
;
3702 char *targetname
= NULL
;
3705 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3706 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3707 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3708 d_printf("chown uid gid file\n");
3712 uid
= (uid_t
)atoi(buf
);
3713 gid
= (gid_t
)atoi(buf2
);
3715 src
= talloc_asprintf(ctx
,
3717 client_get_cur_dir(),
3722 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3724 if (!NT_STATUS_IS_OK(status
)) {
3725 d_printf("chown %s: %s\n", src
, nt_errstr(status
));
3729 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3730 d_printf("Server doesn't support UNIX CIFS calls.\n");
3734 status
= cli_posix_chown(targetcli
, targetname
, uid
, gid
);
3735 if (!NT_STATUS_IS_OK(status
)) {
3736 d_printf("%s chown file %s uid=%d, gid=%d\n",
3737 nt_errstr(status
), src
, (int)uid
, (int)gid
);
3744 /****************************************************************************
3746 ****************************************************************************/
3748 static int cmd_rename(void)
3750 TALLOC_CTX
*ctx
= talloc_tos();
3753 struct cli_state
*targetcli
;
3758 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3759 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3760 d_printf("rename <src> <dest>\n");
3764 src
= talloc_asprintf(ctx
,
3766 client_get_cur_dir(),
3772 dest
= talloc_asprintf(ctx
,
3774 client_get_cur_dir(),
3780 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3782 if (!NT_STATUS_IS_OK(status
)) {
3783 d_printf("rename %s: %s\n", src
, nt_errstr(status
));
3787 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
,
3789 if (!NT_STATUS_IS_OK(status
)) {
3790 d_printf("rename %s: %s\n", dest
, nt_errstr(status
));
3794 status
= cli_rename(targetcli
, targetsrc
, targetdest
);
3795 if (!NT_STATUS_IS_OK(status
)) {
3796 d_printf("%s renaming files %s -> %s \n",
3806 /****************************************************************************
3807 Print the volume name.
3808 ****************************************************************************/
3810 static int cmd_volume(void)
3813 uint32_t serial_num
;
3817 status
= cli_get_fs_volume_info(cli
, talloc_tos(),
3818 &volname
, &serial_num
,
3820 if (!NT_STATUS_IS_OK(status
)) {
3821 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3825 d_printf("Volume: |%s| serial number 0x%x\n",
3826 volname
, (unsigned int)serial_num
);
3830 /****************************************************************************
3831 Hard link files using the NT call.
3832 ****************************************************************************/
3834 static int cmd_hardlink(void)
3836 TALLOC_CTX
*ctx
= talloc_tos();
3839 struct cli_state
*targetcli
;
3843 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3844 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3845 d_printf("hardlink <src> <dest>\n");
3849 src
= talloc_asprintf(ctx
,
3851 client_get_cur_dir(),
3857 dest
= talloc_asprintf(ctx
,
3859 client_get_cur_dir(),
3865 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3867 if (!NT_STATUS_IS_OK(status
)) {
3868 d_printf("hardlink %s: %s\n", src
, nt_errstr(status
));
3872 status
= cli_nt_hardlink(targetcli
, targetname
, dest
);
3873 if (!NT_STATUS_IS_OK(status
)) {
3874 d_printf("%s doing an NT hard link of files\n",
3882 /****************************************************************************
3883 Toggle the prompt flag.
3884 ****************************************************************************/
3886 static int cmd_prompt(void)
3889 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3893 /****************************************************************************
3894 Set the newer than time.
3895 ****************************************************************************/
3897 static int cmd_newer(void)
3899 TALLOC_CTX
*ctx
= talloc_tos();
3902 SMB_STRUCT_STAT sbuf
;
3904 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3905 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3906 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3907 DEBUG(1,("Getting files newer than %s",
3908 time_to_asc(newer_than
)));
3913 if (ok
&& newer_than
== 0) {
3914 d_printf("Error setting newer-than time\n");
3921 /****************************************************************************
3922 Watch directory changes
3923 ****************************************************************************/
3925 static int cmd_notify(void)
3927 TALLOC_CTX
*frame
= talloc_stackframe();
3932 name
= talloc_strdup(talloc_tos(), client_get_cur_dir());
3936 if (!next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
, NULL
)) {
3939 name
= talloc_asprintf_append(name
, "%s", buf
);
3943 status
= cli_ntcreate(
3944 cli
, name
, 0, FILE_READ_DATA
, 0,
3945 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3946 FILE_OPEN
, 0, 0, &fnum
);
3947 if (!NT_STATUS_IS_OK(status
)) {
3948 d_printf("Could not open file: %s\n", nt_errstr(status
));
3953 uint32_t i
, num_changes
;
3954 struct notify_change
*changes
;
3956 status
= cli_notify(cli
, fnum
, 1000, FILE_NOTIFY_CHANGE_ALL
,
3958 talloc_tos(), &num_changes
, &changes
);
3959 if (!NT_STATUS_IS_OK(status
)) {
3960 d_printf("notify returned %s\n",
3964 for (i
=0; i
<num_changes
; i
++) {
3965 printf("%4.4x %s\n", changes
[i
].action
,
3968 TALLOC_FREE(changes
);
3971 d_printf("notify <file>\n");
3977 /****************************************************************************
3978 Set the archive level.
3979 ****************************************************************************/
3981 static int cmd_archive(void)
3983 TALLOC_CTX
*ctx
= talloc_tos();
3986 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3987 archive_level
= atoi(buf
);
3989 d_printf("Archive level is %d\n",archive_level
);
3995 /****************************************************************************
3996 Toggle the backup_intent state.
3997 ****************************************************************************/
3999 static int cmd_backup(void)
4001 backup_intent
= !backup_intent
;
4002 cli_set_backup_intent(cli
, backup_intent
);
4003 DEBUG(2,("backup intent is now %s\n",backup_intent
?"on":"off"));
4007 /****************************************************************************
4008 Toggle the lowercaseflag.
4009 ****************************************************************************/
4011 static int cmd_lowercase(void)
4013 lowercase
= !lowercase
;
4014 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
4018 /****************************************************************************
4019 Toggle the case sensitive flag.
4020 ****************************************************************************/
4022 static int cmd_setcase(void)
4024 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
4026 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
4027 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
4032 /****************************************************************************
4033 Toggle the showacls flag.
4034 ****************************************************************************/
4036 static int cmd_showacls(void)
4038 showacls
= !showacls
;
4039 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
4044 /****************************************************************************
4045 Toggle the recurse flag.
4046 ****************************************************************************/
4048 static int cmd_recurse(void)
4051 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
4055 /****************************************************************************
4056 Toggle the translate flag.
4057 ****************************************************************************/
4059 static int cmd_translate(void)
4061 translation
= !translation
;
4062 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4063 translation
?"on":"off"));
4067 /****************************************************************************
4069 ****************************************************************************/
4071 static int cmd_lcd(void)
4073 TALLOC_CTX
*ctx
= talloc_tos();
4077 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4078 if (chdir(buf
) == -1) {
4079 d_printf("chdir to %s failed (%s)\n",
4080 buf
, strerror(errno
));
4087 DEBUG(2,("the local directory is now %s\n",d
));
4092 /****************************************************************************
4093 Get a file restarting at end of local file.
4094 ****************************************************************************/
4096 static int cmd_reget(void)
4098 TALLOC_CTX
*ctx
= talloc_tos();
4099 char *local_name
= NULL
;
4100 char *remote_name
= NULL
;
4104 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4109 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
4110 d_printf("reget <filename>\n");
4113 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
4117 remote_name
= clean_name(ctx
,remote_name
);
4123 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
4128 return do_get(remote_name
, local_name
, true);
4131 /****************************************************************************
4132 Put a file restarting at end of local file.
4133 ****************************************************************************/
4135 static int cmd_reput(void)
4137 TALLOC_CTX
*ctx
= talloc_tos();
4138 char *local_name
= NULL
;
4139 char *remote_name
= NULL
;
4143 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4148 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
4149 d_printf("reput <filename>\n");
4153 if (!file_exist_stat(local_name
, &st
, false)) {
4154 d_printf("%s does not exist\n", local_name
);
4158 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
4159 remote_name
= talloc_asprintf_append(remote_name
,
4162 remote_name
= talloc_asprintf_append(remote_name
,
4169 remote_name
= clean_name(ctx
, remote_name
);
4174 return do_put(remote_name
, local_name
, true);
4177 /****************************************************************************
4179 ****************************************************************************/
4181 static void browse_fn(const char *name
, uint32 m
,
4182 const char *comment
, void *state
)
4184 const char *typestr
= "";
4187 case STYPE_DISKTREE
:
4191 typestr
= "Printer";
4200 /* FIXME: If the remote machine returns non-ascii characters
4201 in any of these fields, they can corrupt the output. We
4202 should remove them. */
4204 d_printf("\t%-15s %-10.10s%s\n",
4205 name
,typestr
,comment
);
4207 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
4211 static bool browse_host_rpc(bool sort
)
4214 struct rpc_pipe_client
*pipe_hnd
= NULL
;
4215 TALLOC_CTX
*frame
= talloc_stackframe();
4217 struct srvsvc_NetShareInfoCtr info_ctr
;
4218 struct srvsvc_NetShareCtr1 ctr1
;
4219 uint32_t resume_handle
= 0;
4220 uint32_t total_entries
= 0;
4222 struct dcerpc_binding_handle
*b
;
4224 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
,
4227 if (!NT_STATUS_IS_OK(status
)) {
4228 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4229 nt_errstr(status
)));
4234 b
= pipe_hnd
->binding_handle
;
4236 ZERO_STRUCT(info_ctr
);
4240 info_ctr
.ctr
.ctr1
= &ctr1
;
4242 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4250 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4251 TALLOC_FREE(pipe_hnd
);
4256 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4257 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4258 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4261 TALLOC_FREE(pipe_hnd
);
4266 /****************************************************************************
4267 Try and browse available connections on a host.
4268 ****************************************************************************/
4270 static bool browse_host(bool sort
)
4274 d_printf("\n\tSharename Type Comment\n");
4275 d_printf("\t--------- ---- -------\n");
4278 if (browse_host_rpc(sort
)) {
4282 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1) {
4283 NTSTATUS status
= cli_nt_error(cli
);
4284 d_printf("Error returning browse list: %s\n",
4291 /****************************************************************************
4293 ****************************************************************************/
4295 static void server_fn(const char *name
, uint32 m
,
4296 const char *comment
, void *state
)
4300 d_printf("\t%-16s %s\n", name
, comment
);
4302 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4306 /****************************************************************************
4307 Try and browse available connections on a host.
4308 ****************************************************************************/
4310 static bool list_servers(const char *wk_grp
)
4314 if (!cli
->server_domain
)
4318 d_printf("\n\tServer Comment\n");
4319 d_printf("\t--------- -------\n");
4321 fstrcpy( state
, "Server" );
4322 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4326 d_printf("\n\tWorkgroup Master\n");
4327 d_printf("\t--------- -------\n");
4330 fstrcpy( state
, "Workgroup" );
4331 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4336 /****************************************************************************
4337 Print or set current VUID
4338 ****************************************************************************/
4340 static int cmd_vuid(void)
4342 TALLOC_CTX
*ctx
= talloc_tos();
4345 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4346 d_printf("Current VUID is %d\n",
4347 cli_state_get_uid(cli
));
4351 cli_state_set_uid(cli
, atoi(buf
));
4355 /****************************************************************************
4356 Setup a new VUID, by issuing a session setup
4357 ****************************************************************************/
4359 static int cmd_logon(void)
4361 TALLOC_CTX
*ctx
= talloc_tos();
4362 char *l_username
, *l_password
;
4365 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4366 d_printf("logon <username> [<password>]\n");
4370 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4371 char pwd
[256] = {0};
4374 rc
= samba_getpass("Password: ", pwd
, sizeof(pwd
), false, false);
4376 l_password
= talloc_strdup(ctx
, pwd
);
4383 nt_status
= cli_session_setup(cli
, l_username
,
4384 l_password
, strlen(l_password
),
4385 l_password
, strlen(l_password
),
4387 if (!NT_STATUS_IS_OK(nt_status
)) {
4388 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4392 d_printf("Current VUID is %d\n", cli_state_get_uid(cli
));
4400 static int cmd_logoff(void)
4404 status
= cli_ulogoff(cli
);
4405 if (!NT_STATUS_IS_OK(status
)) {
4406 d_printf("logoff failed: %s\n", nt_errstr(status
));
4410 d_printf("logoff successful\n");
4416 * tree connect (connect to a share)
4419 static int cmd_tcon(void)
4421 TALLOC_CTX
*ctx
= talloc_tos();
4425 if (!next_token_talloc(ctx
, &cmd_ptr
, &sharename
, NULL
)) {
4426 d_printf("tcon <sharename>\n");
4434 status
= cli_tree_connect(cli
, sharename
, "?????", "", 0);
4435 if (!NT_STATUS_IS_OK(status
)) {
4436 d_printf("tcon failed: %s\n", nt_errstr(status
));
4440 talloc_free(sharename
);
4442 d_printf("tcon to %s successful, tid: %u\n", sharename
,
4443 cli_state_get_tid(cli
));
4448 * tree disconnect (disconnect from a share)
4451 static int cmd_tdis(void)
4455 status
= cli_tdis(cli
);
4456 if (!NT_STATUS_IS_OK(status
)) {
4457 d_printf("tdis failed: %s\n", nt_errstr(status
));
4461 d_printf("tdis successful\n");
4470 static int cmd_tid(void)
4472 TALLOC_CTX
*ctx
= talloc_tos();
4475 if (!next_token_talloc(ctx
, &cmd_ptr
, &tid_str
, NULL
)) {
4476 if (cli_state_has_tcon(cli
)) {
4477 d_printf("current tid is %d\n", cli_state_get_tid(cli
));
4479 d_printf("no tcon currently\n");
4482 uint16_t tid
= atoi(tid_str
);
4483 cli_state_set_tid(cli
, tid
);
4490 /****************************************************************************
4491 list active connections
4492 ****************************************************************************/
4494 static int cmd_list_connect(void)
4496 cli_cm_display(cli
);
4500 /****************************************************************************
4501 display the current active client connection
4502 ****************************************************************************/
4504 static int cmd_show_connect( void )
4506 TALLOC_CTX
*ctx
= talloc_tos();
4507 struct cli_state
*targetcli
;
4511 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
4512 client_get_cur_dir(), &targetcli
,
4514 if (!NT_STATUS_IS_OK(status
)) {
4515 d_printf("showconnect %s: %s\n", cur_dir
, nt_errstr(status
));
4519 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli
->conn
), targetcli
->share
);
4523 /****************************************************************************
4525 ***************************************************************************/
4527 int cmd_iosize(void)
4529 TALLOC_CTX
*ctx
= talloc_tos();
4533 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4534 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_SMB2_02
) {
4536 d_printf("iosize <n> or iosize 0x<n>. "
4537 "Minimum is 0 (default), "
4538 "max is 16776960 (0xFFFF00)\n");
4540 d_printf("iosize <n> or iosize 0x<n>. "
4541 "(Encrypted connection) ,"
4542 "Minimum is 0 (default), "
4543 "max is 130048 (0x1FC00)\n");
4546 d_printf("iosize <n> or iosize 0x<n>.\n");
4551 iosize
= strtol(buf
,NULL
,0);
4552 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_SMB2_02
) {
4553 if (smb_encrypt
&& (iosize
< 0 || iosize
> 0xFC00)) {
4554 d_printf("iosize out of range for encrypted "
4555 "connection (min = 0 (default), "
4556 "max = 130048 (0x1FC00)\n");
4558 } else if (!smb_encrypt
&& (iosize
< 0 || iosize
> 0xFFFF00)) {
4559 d_printf("iosize out of range (min = 0 (default), "
4560 "max = 16776960 (0xFFFF00)\n");
4565 io_bufsize
= iosize
;
4566 d_printf("iosize is now %d\n", io_bufsize
);
4570 /****************************************************************************
4572 ***************************************************************************/
4574 static int cmd_timeout(void)
4576 TALLOC_CTX
*ctx
= talloc_tos();
4579 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4580 unsigned int old_timeout
= cli_set_timeout(cli
, 0);
4581 cli_set_timeout(cli
, old_timeout
);
4582 d_printf("timeout <n> (per-operation timeout "
4583 "in seconds - currently %u).\n",
4588 io_timeout
= strtol(buf
,NULL
,0);
4589 cli_set_timeout(cli
, io_timeout
*1000);
4590 d_printf("io_timeout per operation is now %d\n", io_timeout
);
4595 /****************************************************************************
4597 ****************************************************************************/
4598 static int cmd_history(void)
4600 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4604 hlist
= history_list();
4606 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4607 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4610 DEBUG(0,("no history without readline support\n"));
4616 /* Some constants for completing filename arguments */
4618 #define COMPL_NONE 0 /* No completions */
4619 #define COMPL_REMOTE 1 /* Complete remote filename */
4620 #define COMPL_LOCAL 2 /* Complete local filename */
4622 /* This defines the commands supported by this client.
4623 * NOTE: The "!" must be the last one in the list because it's fn pointer
4624 * field is NULL, and NULL in that field is used in process_tok()
4625 * (below) to indicate the end of the list. crh
4630 const char *description
;
4631 char compl_args
[2]; /* Completion argument info */
4633 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4634 {"allinfo",cmd_allinfo
,"<file> show all available info",
4635 {COMPL_NONE
,COMPL_NONE
}},
4636 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4637 {"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
}},
4638 {"backup",cmd_backup
,"toggle backup intent state",{COMPL_NONE
,COMPL_NONE
}},
4639 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4640 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4641 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4642 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4643 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_NONE
}},
4644 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_NONE
}},
4645 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_NONE
}},
4646 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4647 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4648 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4649 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4650 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4651 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4652 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_NONE
}},
4653 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4654 {COMPL_REMOTE
, COMPL_NONE
}},
4655 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4656 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4657 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4658 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4659 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4660 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4661 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4662 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4663 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4664 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4665 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4666 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4667 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4668 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4669 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4670 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4671 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4672 {"notify",cmd_notify
,"<file>Get notified of dir changes",{COMPL_REMOTE
,COMPL_NONE
}},
4673 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4674 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4675 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4676 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4677 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4678 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4679 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4680 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4681 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4682 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4683 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4684 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4685 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4686 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4687 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4688 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4689 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4690 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4691 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4692 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4693 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4694 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_REMOTE
,COMPL_NONE
}},
4695 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4696 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4697 {COMPL_REMOTE
, COMPL_LOCAL
}},
4698 {"setmode",cmd_setmode
,"<file name> <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4699 {"stat",cmd_stat
,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_NONE
}},
4700 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4701 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4702 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4703 {"timeout",cmd_timeout
,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4704 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4705 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4706 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4707 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4708 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4709 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4710 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4711 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4712 {"tcon",cmd_tcon
,"connect to a share" ,{COMPL_NONE
,COMPL_NONE
}},
4713 {"tdis",cmd_tdis
,"disconnect from a share",{COMPL_NONE
,COMPL_NONE
}},
4714 {"tid",cmd_tid
,"show or set the current tid (tree-id)",{COMPL_NONE
,COMPL_NONE
}},
4715 {"logoff",cmd_logoff
,"log off (close the session)",{COMPL_NONE
,COMPL_NONE
}},
4716 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4718 /* Yes, this must be here, see crh's comment above. */
4719 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4720 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4723 /*******************************************************************
4724 Lookup a command string in the list of commands, including
4726 ******************************************************************/
4728 static int process_tok(char *tok
)
4730 int i
= 0, matches
= 0;
4732 int tok_len
= strlen(tok
);
4734 while (commands
[i
].fn
!= NULL
) {
4735 if (strequal(commands
[i
].name
,tok
)) {
4739 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4748 else if (matches
== 1)
4754 /****************************************************************************
4756 ****************************************************************************/
4758 static int cmd_help(void)
4760 TALLOC_CTX
*ctx
= talloc_tos();
4764 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4765 if ((i
= process_tok(buf
)) >= 0)
4766 d_printf("HELP %s:\n\t%s\n\n",
4767 commands
[i
].name
,commands
[i
].description
);
4769 while (commands
[i
].description
) {
4770 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4771 d_printf("%-15s",commands
[i
].name
);
4780 /****************************************************************************
4781 Process a -c command string.
4782 ****************************************************************************/
4784 static int process_command_string(const char *cmd_in
)
4786 TALLOC_CTX
*ctx
= talloc_tos();
4787 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4793 /* establish the connection if not already */
4798 status
= cli_cm_open(talloc_tos(), NULL
,
4799 have_ip
? dest_ss_str
: desthost
,
4802 max_protocol
, port
, name_type
,
4804 if (!NT_STATUS_IS_OK(status
)) {
4807 cli_set_timeout(cli
, io_timeout
*1000);
4810 while (cmd
[0] != '\0') {
4816 if ((p
= strchr_m(cmd
, ';')) == 0) {
4825 /* and get the first part of the command */
4827 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4831 if ((i
= process_tok(tok
)) >= 0) {
4832 rc
= commands
[i
].fn();
4833 } else if (i
== -2) {
4834 d_printf("%s: command abbreviation ambiguous\n",tok
);
4836 d_printf("%s: command not found\n",tok
);
4843 #define MAX_COMPLETIONS 100
4845 struct completion_remote
{
4853 static NTSTATUS
completion_remote_filter(const char *mnt
,
4854 struct file_info
*f
,
4858 struct completion_remote
*info
= (struct completion_remote
*)state
;
4860 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4861 return NT_STATUS_OK
;
4863 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4864 return NT_STATUS_OK
;
4866 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4867 return NT_STATUS_OK
;
4870 if ((info
->dirmask
[0] == 0) && !(f
->mode
& FILE_ATTRIBUTE_DIRECTORY
))
4871 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4873 TALLOC_CTX
*ctx
= talloc_stackframe();
4876 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4879 return NT_STATUS_NO_MEMORY
;
4881 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4884 return NT_STATUS_NO_MEMORY
;
4886 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4887 tmp
= talloc_asprintf_append(tmp
, "%s",
4892 return NT_STATUS_NO_MEMORY
;
4894 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4897 if (info
->matches
[info
->count
] == NULL
) {
4898 return NT_STATUS_OK
;
4900 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4901 smb_readline_ca_char(0);
4903 if (info
->count
== 1) {
4904 info
->samelen
= strlen(info
->matches
[info
->count
]);
4906 while (strncmp(info
->matches
[info
->count
],
4907 info
->matches
[info
->count
-1],
4908 info
->samelen
) != 0) {
4913 return NT_STATUS_OK
;
4916 static char **remote_completion(const char *text
, int len
)
4918 TALLOC_CTX
*ctx
= talloc_stackframe();
4919 char *dirmask
= NULL
;
4920 char *targetpath
= NULL
;
4921 struct cli_state
*targetcli
= NULL
;
4923 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4926 /* can't have non-static initialisation on Sun CC, so do it
4932 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4933 if (!info
.matches
) {
4939 * We're leaving matches[0] free to fill it later with the text to
4940 * display: Either the one single match or the longest common subset
4943 info
.matches
[0] = NULL
;
4946 for (i
= len
-1; i
>= 0; i
--) {
4947 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4952 info
.text
= text
+i
+1;
4953 info
.samelen
= info
.len
= len
-i
-1;
4956 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4957 if (!info
.dirmask
) {
4960 strncpy(info
.dirmask
, text
, i
+1);
4961 info
.dirmask
[i
+1] = 0;
4962 dirmask
= talloc_asprintf(ctx
,
4964 client_get_cur_dir(),
4968 info
.dirmask
= SMB_STRDUP("");
4969 if (!info
.dirmask
) {
4972 dirmask
= talloc_asprintf(ctx
,
4974 client_get_cur_dir());
4980 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
,
4982 if (!NT_STATUS_IS_OK(status
)) {
4985 status
= cli_list(targetcli
, targetpath
, FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
4986 completion_remote_filter
, (void *)&info
);
4987 if (!NT_STATUS_IS_OK(status
)) {
4991 if (info
.count
== 1) {
4993 * No matches at all, NULL indicates there is nothing
4995 SAFE_FREE(info
.matches
[0]);
4996 SAFE_FREE(info
.matches
);
5001 if (info
.count
== 2) {
5003 * Exactly one match in matches[1], indicate this is the one
5006 info
.matches
[0] = info
.matches
[1];
5007 info
.matches
[1] = NULL
;
5010 return info
.matches
;
5014 * We got more than one possible match, set the result to the maximum
5018 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
5019 info
.matches
[info
.count
] = NULL
;
5021 return info
.matches
;
5024 for (i
= 0; i
< info
.count
; i
++) {
5025 SAFE_FREE(info
.matches
[i
]);
5027 SAFE_FREE(info
.matches
);
5028 SAFE_FREE(info
.dirmask
);
5033 static char **completion_fn(const char *text
, int start
, int end
)
5035 smb_readline_ca_char(' ');
5038 const char *buf
, *sp
;
5042 buf
= smb_readline_get_line_buffer();
5046 sp
= strchr(buf
, ' ');
5050 for (i
= 0; commands
[i
].name
; i
++) {
5051 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
5052 (commands
[i
].name
[sp
- buf
] == 0)) {
5056 if (commands
[i
].name
== NULL
)
5062 if (sp
== (buf
+ start
))
5063 compl_type
= commands
[i
].compl_args
[0];
5065 compl_type
= commands
[i
].compl_args
[1];
5067 if (compl_type
== COMPL_REMOTE
)
5068 return remote_completion(text
, end
- start
);
5069 else /* fall back to local filename completion */
5073 int i
, len
, samelen
= 0, count
=1;
5075 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
5082 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
5083 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
5084 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
5085 if (!matches
[count
])
5088 samelen
= strlen(matches
[count
]);
5090 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
5097 case 0: /* should never happen */
5101 matches
[0] = SMB_STRDUP(matches
[1]);
5104 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
5107 strncpy(matches
[0], matches
[1], samelen
);
5108 matches
[0][samelen
] = 0;
5110 matches
[count
] = NULL
;
5114 for (i
= 0; i
< count
; i
++)
5122 static bool finished
;
5124 /****************************************************************************
5125 Make sure we swallow keepalives during idle time.
5126 ****************************************************************************/
5128 static void readline_callback(void)
5130 static time_t last_t
;
5131 struct timespec now
;
5134 unsigned char garbage
[16];
5136 clock_gettime_mono(&now
);
5144 /* Ping the server to keep the connection alive using SMBecho. */
5145 memset(garbage
, 0xf0, sizeof(garbage
));
5146 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
5147 if (NT_STATUS_IS_OK(status
)) {
5151 if (!cli_state_is_connected(cli
)) {
5152 DEBUG(0,("SMBecho failed (%s). The connection is "
5153 "disconnected now\n", nt_errstr(status
)));
5155 smb_readline_done();
5159 /****************************************************************************
5160 Process commands on stdin.
5161 ****************************************************************************/
5163 static int process_stdin(void)
5168 TALLOC_CTX
*frame
= talloc_stackframe();
5170 char *the_prompt
= NULL
;
5174 /* display a prompt */
5175 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
5179 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
5180 SAFE_FREE(the_prompt
);
5186 /* special case - first char is ! */
5188 if (system(line
+ 1) == -1) {
5189 d_printf("system() command %s failed.\n",
5197 /* and get the first part of the command */
5199 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
5205 if ((i
= process_tok(tok
)) >= 0) {
5206 rc
= commands
[i
].fn();
5207 } else if (i
== -2) {
5208 d_printf("%s: command abbreviation ambiguous\n",tok
);
5210 d_printf("%s: command not found\n",tok
);
5218 /****************************************************************************
5219 Process commands from the client.
5220 ****************************************************************************/
5222 static int process(const char *base_directory
)
5227 status
= cli_cm_open(talloc_tos(), NULL
,
5228 have_ip
? dest_ss_str
: desthost
,
5229 service
, auth_info
, true, smb_encrypt
,
5230 max_protocol
, port
, name_type
, &cli
);
5231 if (!NT_STATUS_IS_OK(status
)) {
5235 cli_set_timeout(cli
, io_timeout
*1000);
5237 if (base_directory
&& *base_directory
) {
5238 rc
= do_cd(base_directory
);
5246 rc
= process_command_string(cmdstr
);
5255 /****************************************************************************
5257 ****************************************************************************/
5259 static int do_host_query(const char *query_host
)
5263 status
= cli_cm_open(talloc_tos(), NULL
,
5264 have_ip
? dest_ss_str
: query_host
,
5265 "IPC$", auth_info
, true, smb_encrypt
,
5266 max_protocol
, port
, name_type
, &cli
);
5267 if (!NT_STATUS_IS_OK(status
)) {
5271 cli_set_timeout(cli
, io_timeout
*1000);
5274 /* Ensure that the host can do IPv4 */
5276 if (!interpret_addr(query_host
)) {
5277 struct sockaddr_storage ss
;
5278 if (interpret_string_addr(&ss
, query_host
, 0) &&
5279 (ss
.ss_family
!= AF_INET
)) {
5280 d_printf("%s is an IPv6 address -- no workgroup available\n",
5286 if (port
!= NBT_SMB_PORT
) {
5288 /* Workgroups simply don't make sense over anything
5289 else but port 139... */
5292 status
= cli_cm_open(talloc_tos(), NULL
,
5293 have_ip
? dest_ss_str
: query_host
,
5294 "IPC$", auth_info
, true, smb_encrypt
,
5295 max_protocol
, NBT_SMB_PORT
, name_type
,
5297 if (!NT_STATUS_IS_OK(status
)) {
5303 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5307 cli_set_timeout(cli
, io_timeout
*1000);
5308 list_servers(lp_workgroup());
5315 /****************************************************************************
5316 Handle a tar operation.
5317 ****************************************************************************/
5319 static int do_tar_op(const char *base_directory
)
5321 struct tar
*tar_ctx
= tar_get_ctx();
5324 /* do we already have a connection? */
5328 status
= cli_cm_open(talloc_tos(), NULL
,
5329 have_ip
? dest_ss_str
: desthost
,
5330 service
, auth_info
, true, smb_encrypt
,
5331 max_protocol
, port
, name_type
, &cli
);
5332 if (!NT_STATUS_IS_OK(status
)) {
5336 cli_set_timeout(cli
, io_timeout
*1000);
5341 if (base_directory
&& *base_directory
) {
5342 ret
= do_cd(base_directory
);
5348 ret
= tar_process(tar_ctx
);
5356 /****************************************************************************
5357 Handle a message operation.
5358 ****************************************************************************/
5360 static int do_message_op(struct user_auth_info
*a_info
)
5364 status
= cli_connect_nb(desthost
, have_ip
? &dest_ss
: NULL
,
5365 port
? port
: NBT_SMB_PORT
, name_type
,
5366 lp_netbios_name(), SMB_SIGNING_DEFAULT
, 0, &cli
);
5367 if (!NT_STATUS_IS_OK(status
)) {
5368 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5372 cli_set_timeout(cli
, io_timeout
*1000);
5373 send_message(get_cmdline_auth_info_username(a_info
));
5379 /****************************************************************************
5381 ****************************************************************************/
5383 int main(int argc
,char *argv
[])
5385 const char **const_argv
= discard_const_p(const char *, argv
);
5386 char *base_directory
= NULL
;
5388 char *query_host
= NULL
;
5389 bool message
= false;
5390 static const char *new_name_resolve_order
= NULL
;
5394 bool tar_opt
= false;
5395 bool service_opt
= false;
5396 struct tar
*tar_ctx
= tar_get_ctx();
5398 struct poptOption long_options
[] = {
5401 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5402 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
5403 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
5404 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
5405 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
5406 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
5407 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5408 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
5409 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
5410 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
5411 { "timeout", 't', POPT_ARG_INT
, &io_timeout
, 'b', "Changes the per-operation timeout", "SECONDS" },
5412 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
5413 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
5414 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
5416 POPT_COMMON_CONNECTION
5417 POPT_COMMON_CREDENTIALS
5420 TALLOC_CTX
*frame
= talloc_stackframe();
5422 if (!client_set_cur_dir("\\")) {
5426 /* set default debug level to 1 regardless of what smb.conf sets */
5427 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR
);
5430 lp_set_cmdline("log level", "1");
5432 auth_info
= user_auth_info_init(frame
);
5433 if (auth_info
== NULL
) {
5436 popt_common_set_auth_info(auth_info
);
5439 pc
= poptGetContext("smbclient", argc
, const_argv
, long_options
, 0);
5440 poptSetOtherOptionHelp(pc
, "service <password>");
5442 while ((opt
= poptGetNextOpt(pc
)) != -1) {
5444 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5445 /* I see no other way to keep things sane --SSS */
5446 if (tar_opt
== true) {
5447 while (poptPeekArg(pc
)) {
5453 /* if the service has not yet been specified lets see if it is available in the popt stack */
5454 if (!service_opt
&& poptPeekArg(pc
)) {
5455 service
= talloc_strdup(frame
, poptGetArg(pc
));
5462 /* if the service has already been retrieved then check if we have also a password */
5464 && (!get_cmdline_auth_info_got_pass(auth_info
))
5465 && poptPeekArg(pc
)) {
5466 set_cmdline_auth_info_password(auth_info
,
5473 /* Messages are sent to NetBIOS name type 0x3
5474 * (Messenger Service). Make sure we default
5475 * to port 139 instead of port 445. srl,crh
5478 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
5483 port
= NBT_SMB_PORT
;
5488 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
5492 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
5496 setup_logging("smbclient", DEBUG_STDERR
);
5497 display_set_stderr();
5501 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
5507 lp_set_cmdline("client max protocol", poptGetOptArg(pc
));
5510 /* We must use old option processing for this. Find the
5511 * position of the -T option in the raw argv[]. */
5515 for (i
= 1; i
< argc
; i
++) {
5516 if (strncmp("-T", argv
[i
],2)==0)
5520 if (tar_parse_args(tar_ctx
, poptGetOptArg(pc
),
5521 const_argv
+ i
, argc
- i
)) {
5522 poptPrintUsage(pc
, stderr
, 0);
5526 /* this must be the last option, mark we have parsed it so that we know we have */
5530 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5531 if (!base_directory
) {
5542 return(do_smb_browse());
5547 /* We may still have some leftovers after the last popt option has been called */
5548 if (tar_opt
== true) {
5549 while (poptPeekArg(pc
)) {
5555 /* if the service has not yet been specified lets see if it is available in the popt stack */
5556 if (!service_opt
&& poptPeekArg(pc
)) {
5557 service
= talloc_strdup(frame
,poptGetArg(pc
));
5564 /* if the service has already been retrieved then check if we have also a password */
5566 && !get_cmdline_auth_info_got_pass(auth_info
)
5567 && poptPeekArg(pc
)) {
5568 set_cmdline_auth_info_password(auth_info
,
5572 if ( override_logfile
)
5573 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE
);
5575 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5576 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5577 argv
[0], get_dyn_CONFIGFILE());
5580 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5581 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5587 if (service_opt
&& service
) {
5590 /* Convert any '/' characters in the service name to '\' characters */
5591 string_replace(service
, '/','\\');
5592 if (count_chars(service
,'\\') < 3) {
5593 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5594 poptPrintUsage(pc
, stderr
, 0);
5597 /* Remove trailing slashes */
5598 len
= strlen(service
);
5599 while(len
> 0 && service
[len
- 1] == '\\') {
5601 service
[len
] = '\0';
5605 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5606 if (!init_names()) {
5607 fprintf(stderr
, "init_names() failed\n");
5611 if(new_name_resolve_order
)
5612 lp_set_cmdline("name resolve order", new_name_resolve_order
);
5614 if (!tar_to_process(tar_ctx
) && !query_host
&& !service
&& !message
) {
5615 poptPrintUsage(pc
, stderr
, 0);
5619 poptFreeContext(pc
);
5620 popt_burn_cmdline_password(argc
, argv
);
5622 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5624 /* Ensure we have a password (or equivalent). */
5625 set_cmdline_auth_info_getpass(auth_info
);
5627 max_protocol
= lp_client_max_protocol();
5629 if (tar_to_process(tar_ctx
)) {
5631 process_command_string(cmdstr
);
5632 rc
= do_tar_op(base_directory
);
5633 } else if (query_host
&& *query_host
) {
5634 char *qhost
= query_host
;
5637 while (*qhost
== '\\' || *qhost
== '/')
5640 if ((slash
= strchr_m(qhost
, '/'))
5641 || (slash
= strchr_m(qhost
, '\\'))) {
5645 if ((p
=strchr_m(qhost
, '#'))) {
5648 sscanf(p
, "%x", &name_type
);
5651 rc
= do_host_query(qhost
);
5652 } else if (message
) {
5653 rc
= do_message_op(auth_info
);
5654 } else if (process(base_directory
)) {