2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
30 #include "../lib/util/select.h"
31 #include "system/readline.h"
32 #include "../libcli/smbreadline/smbreadline.h"
33 #include "../libcli/security/security.h"
34 #include "system/select.h"
35 #include "libsmb/libsmb.h"
36 #include "libsmb/clirap.h"
38 #include "libsmb/nmblib.h"
39 #include "include/ntioctl.h"
40 #include "../libcli/smb/smbXcli_base.h"
46 extern int do_smb_browse(void); /* mDNS browsing */
48 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
= 524288;
60 static int name_type
= 0x20;
61 static int max_protocol
= PROTOCOL_NT1
;
63 static int process_tok(char *tok
);
64 static int cmd_help(void);
66 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
68 /* value for unused fid field in trans2 secondary request */
69 #define FID_UNUSED (0xFFFF)
71 time_t newer_than
= 0;
72 static int archive_level
= 0;
74 static bool translation
= false;
77 /* clitar bits insert */
80 extern bool tar_reset
;
83 static bool prompt
= true;
85 static bool recurse
= false;
86 static bool showacls
= false;
87 bool lowercase
= false;
88 static bool backup_intent
= false;
90 static struct sockaddr_storage dest_ss
;
91 static char dest_ss_str
[INET6_ADDRSTRLEN
];
93 #define SEPARATORS " \t\n\r"
95 static bool abort_mget
= true;
98 uint64_t get_total_size
= 0;
99 unsigned int get_total_time_ms
= 0;
100 static uint64_t put_total_size
= 0;
101 static unsigned int put_total_time_ms
= 0;
104 static double dir_total
;
106 /* encrypted state. */
107 static bool smb_encrypt
;
109 /* root cli_state connection */
111 struct cli_state
*cli
;
113 static char CLI_DIRSEP_CHAR
= '\\';
114 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
116 /* Authentication for client connections. */
117 struct user_auth_info
*auth_info
;
119 /* Accessor functions for directory paths. */
120 static char *fileselection
;
121 static const char *client_get_fileselection(void)
124 return fileselection
;
129 static const char *client_set_fileselection(const char *new_fs
)
131 SAFE_FREE(fileselection
);
133 fileselection
= SMB_STRDUP(new_fs
);
135 return client_get_fileselection();
139 static const char *client_get_cwd(void)
144 return CLI_DIRSEP_STR
;
147 static const char *client_set_cwd(const char *new_cwd
)
151 cwd
= SMB_STRDUP(new_cwd
);
153 return client_get_cwd();
156 static char *cur_dir
;
157 const char *client_get_cur_dir(void)
162 return CLI_DIRSEP_STR
;
165 const char *client_set_cur_dir(const char *newdir
)
169 cur_dir
= SMB_STRDUP(newdir
);
171 return client_get_cur_dir();
174 /****************************************************************************
175 Put up a yes/no prompt.
176 ****************************************************************************/
178 static bool yesno(const char *p
)
183 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
186 if (*ans
== 'y' || *ans
== 'Y')
192 /****************************************************************************
193 Write to a local file with CR/LF->LF translation if appropriate. Return the
194 number taken from the buffer. This may not equal the number written.
195 ****************************************************************************/
197 static int writefile(int f
, char *b
, int n
)
207 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
210 if (write(f
, b
, 1) != 1) {
220 /****************************************************************************
221 Read from a file with LF->CR/LF translation if appropriate. Return the
222 number read. read approx n bytes.
223 ****************************************************************************/
225 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
231 return x_fread(b
,1,n
,f
);
234 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
235 if ((c
= x_getc(f
)) == EOF
) {
239 if (c
== '\n') { /* change all LFs to CR/LF */
254 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
256 struct push_state
*state
= (struct push_state
*)priv
;
259 if (x_feof(state
->f
)) {
263 result
= readfile(buf
, n
, state
->f
);
264 state
->nread
+= result
;
268 /****************************************************************************
270 ****************************************************************************/
272 static void send_message(const char *username
)
278 d_printf("Type your message, ending it with a Control-D\n");
281 while (i
<sizeof(buf
)-2) {
282 int c
= fgetc(stdin
);
293 status
= cli_message(cli
, desthost
, username
, buf
);
294 if (!NT_STATUS_IS_OK(status
)) {
295 d_fprintf(stderr
, "cli_message returned %s\n",
300 /****************************************************************************
301 Check the space on a device.
302 ****************************************************************************/
304 static int do_dskattr(void)
306 int total
, bsize
, avail
;
307 struct cli_state
*targetcli
= NULL
;
308 char *targetpath
= NULL
;
309 TALLOC_CTX
*ctx
= talloc_tos();
312 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
313 client_get_cur_dir(), &targetcli
,
315 if (!NT_STATUS_IS_OK(status
)) {
316 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
320 status
= cli_dskattr(targetcli
, &bsize
, &total
, &avail
);
321 if (!NT_STATUS_IS_OK(status
)) {
322 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
326 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
327 total
, bsize
, avail
);
332 /****************************************************************************
334 ****************************************************************************/
336 static int cmd_pwd(void)
338 d_printf("Current directory is %s",service
);
339 d_printf("%s\n",client_get_cur_dir());
343 /****************************************************************************
344 Ensure name has correct directory separators.
345 ****************************************************************************/
347 static void normalize_name(char *newdir
)
349 if (!(cli
->requested_posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
350 string_replace(newdir
,'/','\\');
354 /****************************************************************************
355 Change directory - inner section.
356 ****************************************************************************/
358 static int do_cd(const char *new_dir
)
361 char *saved_dir
= NULL
;
363 char *targetpath
= NULL
;
364 struct cli_state
*targetcli
= NULL
;
365 SMB_STRUCT_STAT sbuf
;
368 TALLOC_CTX
*ctx
= talloc_stackframe();
371 newdir
= talloc_strdup(ctx
, new_dir
);
377 normalize_name(newdir
);
379 /* Save the current directory in case the new directory is invalid */
381 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
387 if (*newdir
== CLI_DIRSEP_CHAR
) {
388 client_set_cur_dir(newdir
);
391 new_cd
= talloc_asprintf(ctx
, "%s%s",
392 client_get_cur_dir(),
399 /* Ensure cur_dir ends in a DIRSEP */
400 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
401 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
406 client_set_cur_dir(new_cd
);
408 new_cd
= clean_name(ctx
, new_cd
);
409 client_set_cur_dir(new_cd
);
411 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
,
412 &targetcli
, &targetpath
);
413 if (!NT_STATUS_IS_OK(status
)) {
414 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
415 client_set_cur_dir(saved_dir
);
419 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
424 /* Use a trans2_qpathinfo to test directories for modern servers.
425 Except Win9x doesn't support the qpathinfo_basic() call..... */
427 if (smbXcli_conn_protocol(targetcli
->conn
) > PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
429 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
431 if (!NT_STATUS_IS_OK(status
)) {
432 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
433 client_set_cur_dir(saved_dir
);
437 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
438 d_printf("cd %s: not a directory\n", new_cd
);
439 client_set_cur_dir(saved_dir
);
444 targetpath
= talloc_asprintf(ctx
,
449 client_set_cur_dir(saved_dir
);
452 targetpath
= clean_name(ctx
, targetpath
);
454 client_set_cur_dir(saved_dir
);
458 status
= cli_chkpath(targetcli
, targetpath
);
459 if (!NT_STATUS_IS_OK(status
)) {
460 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
461 client_set_cur_dir(saved_dir
);
474 /****************************************************************************
476 ****************************************************************************/
478 static int cmd_cd(void)
483 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
486 d_printf("Current directory is %s\n",client_get_cur_dir());
492 /****************************************************************************
494 ****************************************************************************/
496 static int cmd_cd_oneup(void)
501 /*******************************************************************
502 Decide if a file should be operated on.
503 ********************************************************************/
505 static bool do_this_one(struct file_info
*finfo
)
511 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
515 if (*client_get_fileselection() &&
516 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
517 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
521 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
522 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
526 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& FILE_ATTRIBUTE_ARCHIVE
)) {
527 DEBUG(3,("archive %s failed\n", finfo
->name
));
534 /****************************************************************************
535 Display info about a file.
536 ****************************************************************************/
538 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
542 TALLOC_CTX
*ctx
= talloc_tos();
543 NTSTATUS status
= NT_STATUS_OK
;
545 if (!do_this_one(finfo
)) {
549 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
551 d_printf(" %-30s%7.7s %8.0f %s",
553 attrib_string(talloc_tos(), finfo
->mode
),
556 dir_total
+= finfo
->size
;
561 /* skip if this is . or .. */
562 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
564 /* create absolute filename for cli_ntcreate() FIXME */
565 afname
= talloc_asprintf(ctx
,
571 return NT_STATUS_NO_MEMORY
;
573 /* print file meta date header */
574 d_printf( "FILENAME:%s\n", finfo
->name
);
575 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo
->mode
));
576 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
577 d_printf( "MTIME:%s", time_to_asc(t
));
578 status
= cli_ntcreate(cli_state
, afname
, 0,
579 CREATE_ACCESS_READ
, 0,
580 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
581 FILE_OPEN
, 0x0, 0x0, &fnum
);
582 if (!NT_STATUS_IS_OK(status
)) {
583 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
584 afname
, nt_errstr(status
)));
586 struct security_descriptor
*sd
= NULL
;
587 status
= cli_query_secdesc(cli_state
, fnum
,
589 if (!NT_STATUS_IS_OK(status
)) {
590 DEBUG( 0, ("display_finfo() failed to "
591 "get security descriptor: %s",
594 display_sec_desc(sd
);
603 /****************************************************************************
604 Accumulate size of a file.
605 ****************************************************************************/
607 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
610 if (do_this_one(finfo
)) {
611 dir_total
+= finfo
->size
;
616 static bool do_list_recurse
;
617 static bool do_list_dirs
;
618 static char *do_list_queue
= 0;
619 static long do_list_queue_size
= 0;
620 static long do_list_queue_start
= 0;
621 static long do_list_queue_end
= 0;
622 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
625 /****************************************************************************
626 Functions for do_list_queue.
627 ****************************************************************************/
630 * The do_list_queue is a NUL-separated list of strings stored in a
631 * char*. Since this is a FIFO, we keep track of the beginning and
632 * ending locations of the data in the queue. When we overflow, we
633 * double the size of the char*. When the start of the data passes
634 * the midpoint, we move everything back. This is logically more
635 * complex than a linked list, but easier from a memory management
636 * angle. In any memory error condition, do_list_queue is reset.
637 * Functions check to ensure that do_list_queue is non-NULL before
641 static void reset_do_list_queue(void)
643 SAFE_FREE(do_list_queue
);
644 do_list_queue_size
= 0;
645 do_list_queue_start
= 0;
646 do_list_queue_end
= 0;
649 static void init_do_list_queue(void)
651 reset_do_list_queue();
652 do_list_queue_size
= 1024;
653 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
654 if (do_list_queue
== 0) {
655 d_printf("malloc fail for size %d\n",
656 (int)do_list_queue_size
);
657 reset_do_list_queue();
659 memset(do_list_queue
, 0, do_list_queue_size
);
663 static void adjust_do_list_queue(void)
666 * If the starting point of the queue is more than half way through,
667 * move everything toward the beginning.
670 if (do_list_queue
== NULL
) {
671 DEBUG(4,("do_list_queue is empty\n"));
672 do_list_queue_start
= do_list_queue_end
= 0;
676 if (do_list_queue_start
== do_list_queue_end
) {
677 DEBUG(4,("do_list_queue is empty\n"));
678 do_list_queue_start
= do_list_queue_end
= 0;
679 *do_list_queue
= '\0';
680 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
681 DEBUG(4,("sliding do_list_queue backward\n"));
682 memmove(do_list_queue
,
683 do_list_queue
+ do_list_queue_start
,
684 do_list_queue_end
- do_list_queue_start
);
685 do_list_queue_end
-= do_list_queue_start
;
686 do_list_queue_start
= 0;
690 static void add_to_do_list_queue(const char *entry
)
692 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
693 while (new_end
> do_list_queue_size
) {
694 do_list_queue_size
*= 2;
695 DEBUG(4,("enlarging do_list_queue to %d\n",
696 (int)do_list_queue_size
));
697 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
698 if (! do_list_queue
) {
699 d_printf("failure enlarging do_list_queue to %d bytes\n",
700 (int)do_list_queue_size
);
701 reset_do_list_queue();
703 memset(do_list_queue
+ do_list_queue_size
/ 2,
704 0, do_list_queue_size
/ 2);
708 strlcpy_base(do_list_queue
+ do_list_queue_end
,
709 entry
, do_list_queue
, do_list_queue_size
);
710 do_list_queue_end
= new_end
;
711 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
712 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
716 static char *do_list_queue_head(void)
718 return do_list_queue
+ do_list_queue_start
;
721 static void remove_do_list_queue_head(void)
723 if (do_list_queue_end
> do_list_queue_start
) {
724 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
725 adjust_do_list_queue();
726 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
727 (int)do_list_queue_start
, (int)do_list_queue_end
));
731 static int do_list_queue_empty(void)
733 return (! (do_list_queue
&& *do_list_queue
));
736 /****************************************************************************
737 A helper for do_list.
738 ****************************************************************************/
740 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
741 const char *mask
, void *state
)
743 struct cli_state
*cli_state
= (struct cli_state
*)state
;
744 TALLOC_CTX
*ctx
= talloc_tos();
746 char *dir_end
= NULL
;
747 NTSTATUS status
= NT_STATUS_OK
;
749 /* Work out the directory. */
750 dir
= talloc_strdup(ctx
, mask
);
752 return NT_STATUS_NO_MEMORY
;
754 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
758 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
759 if (do_list_dirs
&& do_this_one(f
)) {
760 status
= do_list_fn(cli_state
, f
, dir
);
761 if (!NT_STATUS_IS_OK(status
)) {
765 if (do_list_recurse
&&
767 !strequal(f
->name
,".") &&
768 !strequal(f
->name
,"..")) {
773 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
775 return NT_STATUS_UNSUCCESSFUL
;
778 mask2
= talloc_asprintf(ctx
,
784 return NT_STATUS_NO_MEMORY
;
786 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
792 mask2
= talloc_asprintf_append(mask2
,
798 return NT_STATUS_NO_MEMORY
;
800 add_to_do_list_queue(mask2
);
807 if (do_this_one(f
)) {
808 status
= do_list_fn(cli_state
, f
, dir
);
814 /****************************************************************************
815 A wrapper around cli_list that adds recursion.
816 ****************************************************************************/
818 NTSTATUS
do_list(const char *mask
,
820 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
825 static int in_do_list
= 0;
826 TALLOC_CTX
*ctx
= talloc_tos();
827 struct cli_state
*targetcli
= NULL
;
828 char *targetpath
= NULL
;
829 NTSTATUS ret_status
= NT_STATUS_OK
;
830 NTSTATUS status
= NT_STATUS_OK
;
832 if (in_do_list
&& rec
) {
833 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
839 do_list_recurse
= rec
;
844 init_do_list_queue();
845 add_to_do_list_queue(mask
);
847 while (!do_list_queue_empty()) {
849 * Need to copy head so that it doesn't become
850 * invalid inside the call to cli_list. This
851 * would happen if the list were expanded
853 * Fix from E. Jay Berkenbilt (ejb@ql.org)
855 char *head
= talloc_strdup(ctx
, do_list_queue_head());
858 return NT_STATUS_NO_MEMORY
;
863 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
866 if (!NT_STATUS_IS_OK(status
)) {
867 d_printf("do_list: [%s] %s\n", head
,
869 remove_do_list_queue_head();
873 status
= cli_list(targetcli
, targetpath
, attribute
,
874 do_list_helper
, targetcli
);
875 if (!NT_STATUS_IS_OK(status
)) {
876 d_printf("%s listing %s\n",
877 nt_errstr(status
), targetpath
);
880 remove_do_list_queue_head();
881 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
882 char *next_file
= do_list_queue_head();
884 if ((strlen(next_file
) >= 2) &&
885 (next_file
[strlen(next_file
) - 1] == '*') &&
886 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
887 save_ch
= next_file
+
888 strlen(next_file
) - 2;
891 /* cwd is only used if showacls is on */
892 client_set_cwd(next_file
);
895 if (!showacls
) /* don't disturbe the showacls output */
896 d_printf("\n%s\n",next_file
);
898 *save_ch
= CLI_DIRSEP_CHAR
;
902 TALLOC_FREE(targetpath
);
906 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
907 &targetcli
, &targetpath
);
908 if (NT_STATUS_IS_OK(status
)) {
909 status
= cli_list(targetcli
, targetpath
, attribute
,
910 do_list_helper
, targetcli
);
911 if (!NT_STATUS_IS_OK(status
)) {
912 d_printf("%s listing %s\n",
913 nt_errstr(status
), targetpath
);
916 TALLOC_FREE(targetpath
);
918 d_printf("do_list: [%s] %s\n", mask
, nt_errstr(status
));
924 reset_do_list_queue();
928 /****************************************************************************
929 Get a directory listing.
930 ****************************************************************************/
932 static int cmd_dir(void)
934 TALLOC_CTX
*ctx
= talloc_tos();
935 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
942 mask
= talloc_strdup(ctx
, client_get_cur_dir());
947 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
949 if (*buf
== CLI_DIRSEP_CHAR
) {
950 mask
= talloc_strdup(ctx
, buf
);
952 mask
= talloc_asprintf_append(mask
, "%s", buf
);
955 mask
= talloc_asprintf_append(mask
, "*");
962 /* cwd is only used if showacls is on */
963 client_set_cwd(client_get_cur_dir());
966 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
967 if (!NT_STATUS_IS_OK(status
)) {
973 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
978 /****************************************************************************
979 Get a directory listing.
980 ****************************************************************************/
982 static int cmd_du(void)
984 TALLOC_CTX
*ctx
= talloc_tos();
985 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
992 mask
= talloc_strdup(ctx
, client_get_cur_dir());
996 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
997 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
1003 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1004 normalize_name(buf
);
1005 if (*buf
== CLI_DIRSEP_CHAR
) {
1006 mask
= talloc_strdup(ctx
, buf
);
1008 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1011 mask
= talloc_strdup(ctx
, "*");
1014 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1015 if (!NT_STATUS_IS_OK(status
)) {
1021 d_printf("Total number of bytes: %.0f\n", dir_total
);
1026 static int cmd_echo(void)
1028 TALLOC_CTX
*ctx
= talloc_tos();
1033 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1034 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1035 d_printf("echo <num> <data>\n");
1039 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1041 if (!NT_STATUS_IS_OK(status
)) {
1042 d_printf("echo failed: %s\n", nt_errstr(status
));
1049 /****************************************************************************
1050 Get a file from rname to lname
1051 ****************************************************************************/
1053 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1055 int *pfd
= (int *)priv
;
1056 if (writefile(*pfd
, buf
, n
) == -1) {
1057 return map_nt_error_from_unix(errno
);
1059 return NT_STATUS_OK
;
1062 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1064 TALLOC_CTX
*ctx
= talloc_tos();
1067 bool newhandle
= false;
1068 struct timespec tp_start
;
1074 struct cli_state
*targetcli
= NULL
;
1075 char *targetname
= NULL
;
1079 lname
= talloc_strdup(ctx
, lname_in
);
1085 if (!strlower_m(lname
)) {
1086 d_printf("strlower_m %s failed\n", lname
);
1091 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
,
1093 if (!NT_STATUS_IS_OK(status
)) {
1094 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1098 clock_gettime_mono(&tp_start
);
1100 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1101 if (!NT_STATUS_IS_OK(status
)) {
1102 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1107 if(!strcmp(lname
,"-")) {
1108 handle
= fileno(stdout
);
1111 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
1113 start
= lseek(handle
, 0, SEEK_END
);
1115 d_printf("Error seeking local file\n");
1120 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1125 d_printf("Error opening local file %s\n",lname
);
1130 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1132 if (!NT_STATUS_IS_OK(status
)) {
1133 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1135 if(!NT_STATUS_IS_OK(status
)) {
1136 d_printf("getattrib: %s\n", nt_errstr(status
));
1141 DEBUG(1,("getting file %s of size %.0f as %s ",
1142 rname
, (double)size
, lname
));
1144 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1145 writefile_sink
, (void *)&handle
, &nread
);
1146 if (!NT_STATUS_IS_OK(status
)) {
1147 d_fprintf(stderr
, "parallel_read returned %s\n",
1149 cli_close(targetcli
, fnum
);
1153 status
= cli_close(targetcli
, fnum
);
1154 if (!NT_STATUS_IS_OK(status
)) {
1155 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1163 if (archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
1164 cli_setatr(cli
, rname
, attr
& ~(uint16
)FILE_ATTRIBUTE_ARCHIVE
, 0);
1168 struct timespec tp_end
;
1171 clock_gettime_mono(&tp_end
);
1172 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1173 get_total_time_ms
+= this_time
;
1174 get_total_size
+= nread
;
1176 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1177 nread
/ (1.024*this_time
+ 1.0e-4),
1178 get_total_size
/ (1.024*get_total_time_ms
)));
1181 TALLOC_FREE(targetname
);
1185 /****************************************************************************
1187 ****************************************************************************/
1189 static int cmd_get(void)
1191 TALLOC_CTX
*ctx
= talloc_tos();
1196 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1201 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1202 d_printf("get <filename> [localname]\n");
1205 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1209 rname
= clean_name(ctx
, rname
);
1214 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1219 return do_get(rname
, lname
, false);
1222 /****************************************************************************
1223 Do an mget operation on one file.
1224 ****************************************************************************/
1226 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1229 TALLOC_CTX
*ctx
= talloc_tos();
1230 NTSTATUS status
= NT_STATUS_OK
;
1233 char *saved_curdir
= NULL
;
1234 char *mget_mask
= NULL
;
1235 char *new_cd
= NULL
;
1238 return NT_STATUS_OK
;
1241 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1242 return NT_STATUS_OK
;
1245 d_printf("mget aborted\n");
1246 return NT_STATUS_UNSUCCESSFUL
;
1249 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1250 if (asprintf(&quest
,
1251 "Get directory %s? ",finfo
->name
) < 0) {
1252 return NT_STATUS_NO_MEMORY
;
1255 if (asprintf(&quest
,
1256 "Get file %s? ",finfo
->name
) < 0) {
1257 return NT_STATUS_NO_MEMORY
;
1261 if (prompt
&& !yesno(quest
)) {
1263 return NT_STATUS_OK
;
1267 if (!(finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
)) {
1268 rname
= talloc_asprintf(ctx
,
1270 client_get_cur_dir(),
1273 return NT_STATUS_NO_MEMORY
;
1275 do_get(rname
, finfo
->name
, false);
1277 return NT_STATUS_OK
;
1280 /* handle directories */
1281 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1282 if (!saved_curdir
) {
1283 return NT_STATUS_NO_MEMORY
;
1286 new_cd
= talloc_asprintf(ctx
,
1288 client_get_cur_dir(),
1292 return NT_STATUS_NO_MEMORY
;
1294 client_set_cur_dir(new_cd
);
1296 string_replace(finfo
->name
,'\\','/');
1298 if (!strlower_m(finfo
->name
)) {
1299 return NT_STATUS_INVALID_PARAMETER
;
1303 if (!directory_exist(finfo
->name
) &&
1304 mkdir(finfo
->name
,0777) != 0) {
1305 d_printf("failed to create directory %s\n",finfo
->name
);
1306 client_set_cur_dir(saved_curdir
);
1307 return map_nt_error_from_unix(errno
);
1310 if (chdir(finfo
->name
) != 0) {
1311 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1312 client_set_cur_dir(saved_curdir
);
1313 return map_nt_error_from_unix(errno
);
1316 mget_mask
= talloc_asprintf(ctx
,
1318 client_get_cur_dir());
1321 return NT_STATUS_NO_MEMORY
;
1324 status
= do_list(mget_mask
,
1325 (FILE_ATTRIBUTE_SYSTEM
1326 | FILE_ATTRIBUTE_HIDDEN
1327 | FILE_ATTRIBUTE_DIRECTORY
),
1328 do_mget
, false, true);
1329 if (!NT_STATUS_IS_OK(status
)
1330 && !NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
1332 * Ignore access denied errors to ensure all permitted files are
1338 if (chdir("..") == -1) {
1339 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1341 return map_nt_error_from_unix(errno
);
1343 client_set_cur_dir(saved_curdir
);
1344 TALLOC_FREE(mget_mask
);
1345 TALLOC_FREE(saved_curdir
);
1346 TALLOC_FREE(new_cd
);
1347 return NT_STATUS_OK
;
1350 /****************************************************************************
1351 View the file using the pager.
1352 ****************************************************************************/
1354 static int cmd_more(void)
1356 TALLOC_CTX
*ctx
= talloc_tos();
1360 char *pager_cmd
= NULL
;
1366 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1371 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1375 mask
= umask(S_IRWXO
| S_IRWXG
);
1376 fd
= mkstemp(lname
);
1379 d_printf("failed to create temporary file for more\n");
1384 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1385 d_printf("more <filename>\n");
1389 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1393 rname
= clean_name(ctx
,rname
);
1398 rc
= do_get(rname
, lname
, false);
1400 pager
=getenv("PAGER");
1402 pager_cmd
= talloc_asprintf(ctx
,
1404 (pager
? pager
:PAGER
),
1409 if (system(pager_cmd
) == -1) {
1410 d_printf("system command '%s' returned -1\n",
1418 /****************************************************************************
1420 ****************************************************************************/
1422 static int cmd_mget(void)
1424 TALLOC_CTX
*ctx
= talloc_tos();
1425 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1426 char *mget_mask
= NULL
;
1428 NTSTATUS status
= NT_STATUS_OK
;
1431 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1436 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1438 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1442 if (*buf
== CLI_DIRSEP_CHAR
) {
1443 mget_mask
= talloc_strdup(ctx
, buf
);
1445 mget_mask
= talloc_asprintf_append(mget_mask
,
1451 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1452 if (!NT_STATUS_IS_OK(status
)) {
1457 if (mget_mask
== NULL
) {
1458 d_printf("nothing to mget\n");
1463 mget_mask
= talloc_asprintf(ctx
,
1465 client_get_cur_dir());
1469 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1470 if (!NT_STATUS_IS_OK(status
)) {
1478 /****************************************************************************
1479 Make a directory of name "name".
1480 ****************************************************************************/
1482 static bool do_mkdir(const char *name
)
1484 TALLOC_CTX
*ctx
= talloc_tos();
1485 struct cli_state
*targetcli
;
1486 char *targetname
= NULL
;
1489 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
1491 if (!NT_STATUS_IS_OK(status
)) {
1492 d_printf("mkdir %s: %s\n", name
, nt_errstr(status
));
1496 status
= cli_mkdir(targetcli
, targetname
);
1497 if (!NT_STATUS_IS_OK(status
)) {
1498 d_printf("%s making remote directory %s\n",
1499 nt_errstr(status
),name
);
1506 /****************************************************************************
1507 Show 8.3 name of a file.
1508 ****************************************************************************/
1510 static bool do_altname(const char *name
)
1515 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1516 if (!NT_STATUS_IS_OK(status
)) {
1517 d_printf("%s getting alt name for %s\n",
1518 nt_errstr(status
),name
);
1521 d_printf("%s\n", altname
);
1526 /****************************************************************************
1528 ****************************************************************************/
1530 static int cmd_quit(void)
1538 /****************************************************************************
1540 ****************************************************************************/
1542 static int cmd_mkdir(void)
1544 TALLOC_CTX
*ctx
= talloc_tos();
1549 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1554 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1556 d_printf("mkdir <dirname>\n");
1560 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1568 struct cli_state
*targetcli
;
1569 char *targetname
= NULL
;
1573 ddir2
= talloc_strdup(ctx
, "");
1578 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
1579 &targetcli
, &targetname
);
1580 if (!NT_STATUS_IS_OK(status
)) {
1584 ddir
= talloc_strdup(ctx
, targetname
);
1588 trim_char(ddir
,'.','\0');
1589 p
= strtok_r(ddir
, "/\\", &saveptr
);
1591 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1595 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1598 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1602 p
= strtok_r(NULL
, "/\\", &saveptr
);
1611 /****************************************************************************
1613 ****************************************************************************/
1615 static int cmd_altname(void)
1617 TALLOC_CTX
*ctx
= talloc_tos();
1621 name
= talloc_strdup(ctx
, client_get_cur_dir());
1626 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1627 d_printf("altname <file>\n");
1630 name
= talloc_asprintf_append(name
, "%s", buf
);
1638 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1640 char *attrs
= talloc_zero_array(mem_ctx
, char, 17);
1643 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1644 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1647 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1650 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1653 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1656 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1659 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1662 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1665 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1668 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1671 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1674 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1677 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1680 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1687 /****************************************************************************
1688 Show all info we can get
1689 ****************************************************************************/
1691 static int do_allinfo(const char *name
)
1694 struct timespec b_time
, a_time
, m_time
, c_time
;
1700 unsigned int num_streams
;
1701 struct stream_struct
*streams
;
1707 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1708 if (!NT_STATUS_IS_OK(status
)) {
1709 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1713 d_printf("altname: %s\n", altname
);
1715 status
= cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1716 &size
, &mode
, &ino
);
1717 if (!NT_STATUS_IS_OK(status
)) {
1718 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1723 unix_timespec_to_nt_time(&tmp
, b_time
);
1724 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1726 unix_timespec_to_nt_time(&tmp
, a_time
);
1727 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1729 unix_timespec_to_nt_time(&tmp
, m_time
);
1730 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1732 unix_timespec_to_nt_time(&tmp
, c_time
);
1733 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1735 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1737 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1739 if (!NT_STATUS_IS_OK(status
)) {
1740 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1745 for (i
=0; i
<num_streams
; i
++) {
1746 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1747 (unsigned long long)streams
[i
].size
);
1750 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1751 char *subst
, *print
;
1754 status
= cli_readlink(cli
, name
, talloc_tos(), &subst
, &print
,
1756 if (!NT_STATUS_IS_OK(status
)) {
1757 d_fprintf(stderr
, "cli_readlink returned %s\n",
1760 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1761 subst
, print
, flags
);
1767 status
= cli_ntcreate(cli
, name
, 0,
1768 SEC_FILE_READ_DATA
| SEC_FILE_READ_ATTRIBUTE
|
1769 SEC_STD_SYNCHRONIZE
, 0,
1770 FILE_SHARE_READ
|FILE_SHARE_WRITE
1772 FILE_OPEN
, 0x0, 0x0, &fnum
);
1773 if (!NT_STATUS_IS_OK(status
)) {
1775 * Ignore failure, it does not hurt if we can't list
1780 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1781 true, &snapshots
, &num_snapshots
);
1782 if (!NT_STATUS_IS_OK(status
)) {
1783 cli_close(cli
, fnum
);
1787 for (i
=0; i
<num_snapshots
; i
++) {
1790 d_printf("%s\n", snapshots
[i
]);
1791 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1792 snapshots
[i
], name
);
1793 status
= cli_qpathinfo2(cli
, snap_name
, &b_time
, &a_time
,
1794 &m_time
, &c_time
, &size
,
1796 if (!NT_STATUS_IS_OK(status
)) {
1797 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1798 snap_name
, nt_errstr(status
));
1799 TALLOC_FREE(snap_name
);
1802 unix_timespec_to_nt_time(&tmp
, b_time
);
1803 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1804 unix_timespec_to_nt_time(&tmp
, a_time
);
1805 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1806 unix_timespec_to_nt_time(&tmp
, m_time
);
1807 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1808 unix_timespec_to_nt_time(&tmp
, c_time
);
1809 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1810 d_printf("size: %d\n", (int)size
);
1813 TALLOC_FREE(snapshots
);
1818 /****************************************************************************
1819 Show all info we can get
1820 ****************************************************************************/
1822 static int cmd_allinfo(void)
1824 TALLOC_CTX
*ctx
= talloc_tos();
1828 name
= talloc_strdup(ctx
, client_get_cur_dir());
1833 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1834 d_printf("allinfo <file>\n");
1837 name
= talloc_asprintf_append(name
, "%s", buf
);
1847 /****************************************************************************
1849 ****************************************************************************/
1851 static int do_put(const char *rname
, const char *lname
, bool reput
)
1853 TALLOC_CTX
*ctx
= talloc_tos();
1858 struct timespec tp_start
;
1859 struct cli_state
*targetcli
;
1860 char *targetname
= NULL
;
1861 struct push_state state
;
1864 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
,
1865 &targetcli
, &targetname
);
1866 if (!NT_STATUS_IS_OK(status
)) {
1867 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1871 clock_gettime_mono(&tp_start
);
1874 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1875 if (NT_STATUS_IS_OK(status
)) {
1876 if (!NT_STATUS_IS_OK(status
= cli_qfileinfo_basic(
1877 targetcli
, fnum
, NULL
,
1879 NULL
, NULL
, NULL
)) &&
1880 !NT_STATUS_IS_OK(status
= cli_getattrE(
1881 targetcli
, fnum
, NULL
,
1884 d_printf("getattrib: %s\n", nt_errstr(status
));
1889 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1892 if (!NT_STATUS_IS_OK(status
)) {
1893 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1898 /* allow files to be piped into smbclient
1901 Note that in this case this function will exit(0) rather
1903 if (!strcmp(lname
, "-")) {
1905 /* size of file is not known */
1907 f
= x_fopen(lname
,O_RDONLY
, 0);
1909 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1910 d_printf("Error seeking local file\n");
1918 d_printf("Error opening local file %s\n",lname
);
1922 DEBUG(1,("putting file %s as %s ",lname
,
1925 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1930 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1932 if (!NT_STATUS_IS_OK(status
)) {
1933 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1937 status
= cli_close(targetcli
, fnum
);
1938 if (!NT_STATUS_IS_OK(status
)) {
1939 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1952 struct timespec tp_end
;
1955 clock_gettime_mono(&tp_end
);
1956 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1957 put_total_time_ms
+= this_time
;
1958 put_total_size
+= state
.nread
;
1960 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1961 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1962 put_total_size
/ (1.024*put_total_time_ms
)));
1973 /****************************************************************************
1975 ****************************************************************************/
1977 static int cmd_put(void)
1979 TALLOC_CTX
*ctx
= talloc_tos();
1984 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1989 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1990 d_printf("put <filename>\n");
1994 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1995 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1997 rname
= talloc_asprintf_append(rname
, "%s", lname
);
2003 rname
= clean_name(ctx
, rname
);
2010 /* allow '-' to represent stdin
2011 jdblair, 24.jun.98 */
2012 if (!file_exist_stat(lname
, &st
, false) &&
2013 (strcmp(lname
,"-"))) {
2014 d_printf("%s does not exist\n",lname
);
2019 return do_put(rname
, lname
, false);
2022 /*************************************
2023 File list structure.
2024 *************************************/
2026 static struct file_list
{
2027 struct file_list
*prev
, *next
;
2032 /****************************************************************************
2033 Free a file_list structure.
2034 ****************************************************************************/
2036 static void free_file_list (struct file_list
*l_head
)
2038 struct file_list
*list
, *next
;
2040 for (list
= l_head
; list
; list
= next
) {
2042 DLIST_REMOVE(l_head
, list
);
2043 SAFE_FREE(list
->file_path
);
2048 /****************************************************************************
2049 Seek in a directory/file list until you get something that doesn't start with
2051 ****************************************************************************/
2053 static bool seek_list(struct file_list
*list
, char *name
)
2056 trim_string(list
->file_path
,"./","\n");
2057 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2066 /****************************************************************************
2067 Set the file selection mask.
2068 ****************************************************************************/
2070 static int cmd_select(void)
2072 TALLOC_CTX
*ctx
= talloc_tos();
2073 char *new_fs
= NULL
;
2074 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2077 client_set_fileselection(new_fs
);
2079 client_set_fileselection("");
2084 /****************************************************************************
2085 Recursive file matching function act as find
2086 match must be always set to true when calling this function
2087 ****************************************************************************/
2089 static int file_find(struct file_list
**list
, const char *directory
,
2090 const char *expression
, bool match
)
2093 struct file_list
*entry
;
2094 struct stat statbuf
;
2100 dir
= opendir(directory
);
2104 while ((dname
= readdirname(dir
))) {
2105 if (!strcmp("..", dname
))
2107 if (!strcmp(".", dname
))
2110 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2115 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2117 ret
= stat(path
, &statbuf
);
2119 if (S_ISDIR(statbuf
.st_mode
)) {
2121 ret
= file_find(list
, path
, expression
, false);
2124 d_printf("file_find: cannot stat file %s\n", path
);
2133 entry
= SMB_MALLOC_P(struct file_list
);
2135 d_printf("Out of memory in file_find\n");
2139 entry
->file_path
= path
;
2140 entry
->isdir
= isdir
;
2141 DLIST_ADD(*list
, entry
);
2151 /****************************************************************************
2153 ****************************************************************************/
2155 static int cmd_mput(void)
2157 TALLOC_CTX
*ctx
= talloc_tos();
2160 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2162 struct file_list
*temp_list
;
2163 char *quest
, *lname
, *rname
;
2167 ret
= file_find(&file_list
, ".", p
, true);
2169 free_file_list(file_list
);
2177 for (temp_list
= file_list
; temp_list
;
2178 temp_list
= temp_list
->next
) {
2181 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2184 trim_string(lname
, "./", "/");
2186 /* check if it's a directory */
2187 if (temp_list
->isdir
) {
2188 /* if (!recurse) continue; */
2191 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2194 if (prompt
&& !yesno(quest
)) { /* No */
2195 /* Skip the directory */
2196 lname
[strlen(lname
)-1] = '/';
2197 if (!seek_list(temp_list
, lname
))
2201 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2204 normalize_name(rname
);
2205 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2207 DEBUG (0, ("Unable to make dir, skipping..."));
2208 /* Skip the directory */
2209 lname
[strlen(lname
)-1] = '/';
2210 if (!seek_list(temp_list
, lname
)) {
2218 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2221 if (prompt
&& !yesno(quest
)) {
2228 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2233 normalize_name(rname
);
2235 do_put(rname
, lname
, false);
2237 free_file_list(file_list
);
2246 /****************************************************************************
2248 ****************************************************************************/
2250 static int do_cancel(int job
)
2252 if (cli_printjob_del(cli
, job
)) {
2253 d_printf("Job %d cancelled\n",job
);
2256 NTSTATUS status
= cli_nt_error(cli
);
2257 d_printf("Error cancelling job %d : %s\n",
2258 job
, nt_errstr(status
));
2263 /****************************************************************************
2265 ****************************************************************************/
2267 static int cmd_cancel(void)
2269 TALLOC_CTX
*ctx
= talloc_tos();
2273 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2274 d_printf("cancel <jobid> ...\n");
2280 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2285 /****************************************************************************
2287 ****************************************************************************/
2289 static int cmd_print(void)
2291 TALLOC_CTX
*ctx
= talloc_tos();
2296 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2297 d_printf("print <filename>\n");
2301 rname
= talloc_strdup(ctx
, lname
);
2305 p
= strrchr_m(rname
,'/');
2307 rname
= talloc_asprintf(ctx
,
2312 if (strequal(lname
,"-")) {
2313 rname
= talloc_asprintf(ctx
,
2321 return do_put(rname
, lname
, false);
2324 /****************************************************************************
2325 Show a print queue entry.
2326 ****************************************************************************/
2328 static void queue_fn(struct print_job_info
*p
)
2330 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2333 /****************************************************************************
2335 ****************************************************************************/
2337 static int cmd_queue(void)
2339 cli_print_queue(cli
, queue_fn
);
2343 /****************************************************************************
2345 ****************************************************************************/
2347 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2350 TALLOC_CTX
*ctx
= talloc_tos();
2354 mask
= talloc_asprintf(ctx
,
2360 return NT_STATUS_NO_MEMORY
;
2363 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
2365 return NT_STATUS_OK
;
2368 status
= cli_unlink(cli_state
, mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2369 if (!NT_STATUS_IS_OK(status
)) {
2370 d_printf("%s deleting remote file %s\n",
2371 nt_errstr(status
), mask
);
2377 /****************************************************************************
2379 ****************************************************************************/
2381 static int cmd_del(void)
2383 TALLOC_CTX
*ctx
= talloc_tos();
2386 NTSTATUS status
= NT_STATUS_OK
;
2387 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
2390 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
2393 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2397 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2398 d_printf("del <filename>\n");
2401 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2406 status
= do_list(mask
,attribute
,do_del
,false,false);
2407 if (!NT_STATUS_IS_OK(status
)) {
2413 /****************************************************************************
2414 Wildcard delete some files.
2415 ****************************************************************************/
2417 static int cmd_wdel(void)
2419 TALLOC_CTX
*ctx
= talloc_tos();
2423 struct cli_state
*targetcli
;
2424 char *targetname
= NULL
;
2427 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2428 d_printf("wdel 0x<attrib> <wcard>\n");
2432 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2434 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2435 d_printf("wdel 0x<attrib> <wcard>\n");
2439 mask
= talloc_asprintf(ctx
, "%s%s",
2440 client_get_cur_dir(),
2446 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2448 if (!NT_STATUS_IS_OK(status
)) {
2449 d_printf("cmd_wdel %s: %s\n", mask
, nt_errstr(status
));
2453 status
= cli_unlink(targetcli
, targetname
, attribute
);
2454 if (!NT_STATUS_IS_OK(status
)) {
2455 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2461 /****************************************************************************
2462 ****************************************************************************/
2464 static int cmd_open(void)
2466 TALLOC_CTX
*ctx
= talloc_tos();
2469 char *targetname
= NULL
;
2470 struct cli_state
*targetcli
;
2471 uint16_t fnum
= (uint16_t)-1;
2474 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2475 d_printf("open <filename>\n");
2478 mask
= talloc_asprintf(ctx
,
2480 client_get_cur_dir(),
2486 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2488 if (!NT_STATUS_IS_OK(status
)) {
2489 d_printf("open %s: %s\n", mask
, nt_errstr(status
));
2493 status
= cli_ntcreate(targetcli
, targetname
, 0,
2494 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2495 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2497 if (!NT_STATUS_IS_OK(status
)) {
2498 status
= cli_ntcreate(targetcli
, targetname
, 0,
2500 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2502 if (NT_STATUS_IS_OK(status
)) {
2503 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2505 d_printf("Failed to open file %s. %s\n",
2506 targetname
, nt_errstr(status
));
2509 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2514 static int cmd_posix_encrypt(void)
2516 TALLOC_CTX
*ctx
= talloc_tos();
2517 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2519 if (cli
->use_kerberos
) {
2520 status
= cli_gss_smb_encryption_start(cli
);
2522 char *domain
= NULL
;
2524 char *password
= NULL
;
2526 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2527 d_printf("posix_encrypt domain user password\n");
2531 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2532 d_printf("posix_encrypt domain user password\n");
2536 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2537 d_printf("posix_encrypt domain user password\n");
2541 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2547 if (!NT_STATUS_IS_OK(status
)) {
2548 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2550 d_printf("encryption on\n");
2557 /****************************************************************************
2558 ****************************************************************************/
2560 static int cmd_posix_open(void)
2562 TALLOC_CTX
*ctx
= talloc_tos();
2565 char *targetname
= NULL
;
2566 struct cli_state
*targetcli
;
2571 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2572 d_printf("posix_open <filename> 0<mode>\n");
2575 mask
= talloc_asprintf(ctx
,
2577 client_get_cur_dir(),
2583 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2584 d_printf("posix_open <filename> 0<mode>\n");
2587 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2589 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2591 if (!NT_STATUS_IS_OK(status
)) {
2592 d_printf("posix_open %s: %s\n", mask
, nt_errstr(status
));
2596 status
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
,
2598 if (!NT_STATUS_IS_OK(status
)) {
2599 status
= cli_posix_open(targetcli
, targetname
,
2600 O_CREAT
|O_RDONLY
, mode
, &fnum
);
2601 if (!NT_STATUS_IS_OK(status
)) {
2602 d_printf("Failed to open file %s. %s\n", targetname
,
2605 d_printf("posix_open file %s: for readonly fnum %d\n",
2609 d_printf("posix_open file %s: for read/write fnum %d\n",
2616 static int cmd_posix_mkdir(void)
2618 TALLOC_CTX
*ctx
= talloc_tos();
2621 char *targetname
= NULL
;
2622 struct cli_state
*targetcli
;
2626 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2627 d_printf("posix_mkdir <filename> 0<mode>\n");
2630 mask
= talloc_asprintf(ctx
,
2632 client_get_cur_dir(),
2638 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2639 d_printf("posix_mkdir <filename> 0<mode>\n");
2642 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2644 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2646 if (!NT_STATUS_IS_OK(status
)) {
2647 d_printf("posix_mkdir %s: %s\n", mask
, nt_errstr(status
));
2651 status
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2652 if (!NT_STATUS_IS_OK(status
)) {
2653 d_printf("Failed to open file %s. %s\n",
2654 targetname
, nt_errstr(status
));
2656 d_printf("posix_mkdir created directory %s\n", targetname
);
2661 static int cmd_posix_unlink(void)
2663 TALLOC_CTX
*ctx
= talloc_tos();
2666 char *targetname
= NULL
;
2667 struct cli_state
*targetcli
;
2670 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2671 d_printf("posix_unlink <filename>\n");
2674 mask
= talloc_asprintf(ctx
,
2676 client_get_cur_dir(),
2682 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2684 if (!NT_STATUS_IS_OK(status
)) {
2685 d_printf("posix_unlink %s: %s\n", mask
, nt_errstr(status
));
2689 status
= cli_posix_unlink(targetcli
, targetname
);
2690 if (!NT_STATUS_IS_OK(status
)) {
2691 d_printf("Failed to unlink file %s. %s\n",
2692 targetname
, nt_errstr(status
));
2694 d_printf("posix_unlink deleted file %s\n", targetname
);
2700 static int cmd_posix_rmdir(void)
2702 TALLOC_CTX
*ctx
= talloc_tos();
2705 char *targetname
= NULL
;
2706 struct cli_state
*targetcli
;
2709 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2710 d_printf("posix_rmdir <filename>\n");
2713 mask
= talloc_asprintf(ctx
,
2715 client_get_cur_dir(),
2721 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2723 if (!NT_STATUS_IS_OK(status
)) {
2724 d_printf("posix_rmdir %s: %s\n", mask
, nt_errstr(status
));
2728 status
= cli_posix_rmdir(targetcli
, targetname
);
2729 if (!NT_STATUS_IS_OK(status
)) {
2730 d_printf("Failed to unlink directory %s. %s\n",
2731 targetname
, nt_errstr(status
));
2733 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2739 static int cmd_close(void)
2741 TALLOC_CTX
*ctx
= talloc_tos();
2746 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2747 d_printf("close <fnum>\n");
2752 /* We really should use the targetcli here.... */
2753 status
= cli_close(cli
, fnum
);
2754 if (!NT_STATUS_IS_OK(status
)) {
2755 d_printf("close %d: %s\n", fnum
, nt_errstr(status
));
2761 static int cmd_posix(void)
2763 TALLOC_CTX
*ctx
= talloc_tos();
2764 uint16 major
, minor
;
2765 uint32 caplow
, caphigh
;
2769 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2770 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2774 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2776 if (!NT_STATUS_IS_OK(status
)) {
2777 d_printf("Can't get UNIX CIFS extensions version from "
2778 "server: %s\n", nt_errstr(status
));
2782 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2784 caps
= talloc_strdup(ctx
, "");
2788 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2789 caps
= talloc_asprintf_append(caps
, "locks ");
2794 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2795 caps
= talloc_asprintf_append(caps
, "acls ");
2800 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2801 caps
= talloc_asprintf_append(caps
, "eas ");
2806 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2807 caps
= talloc_asprintf_append(caps
, "pathnames ");
2812 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2813 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2818 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2819 caps
= talloc_asprintf_append(caps
, "large_read ");
2824 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2825 caps
= talloc_asprintf_append(caps
, "large_write ");
2830 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2831 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2836 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2837 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2843 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2844 caps
[strlen(caps
)-1] = '\0';
2847 d_printf("Server supports CIFS capabilities %s\n", caps
);
2849 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2851 if (!NT_STATUS_IS_OK(status
)) {
2852 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2857 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2858 CLI_DIRSEP_CHAR
= '/';
2859 *CLI_DIRSEP_STR
= '/';
2860 client_set_cur_dir(CLI_DIRSEP_STR
);
2866 static int cmd_lock(void)
2868 TALLOC_CTX
*ctx
= talloc_tos();
2870 uint64_t start
, len
;
2871 enum brl_type lock_type
;
2875 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2876 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2881 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2882 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2886 if (*buf
== 'r' || *buf
== 'R') {
2887 lock_type
= READ_LOCK
;
2888 } else if (*buf
== 'w' || *buf
== 'W') {
2889 lock_type
= WRITE_LOCK
;
2891 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2895 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2896 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2900 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2902 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2903 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2907 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2909 status
= cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
);
2910 if (!NT_STATUS_IS_OK(status
)) {
2911 d_printf("lock failed %d: %s\n", fnum
, nt_errstr(status
));
2917 static int cmd_unlock(void)
2919 TALLOC_CTX
*ctx
= talloc_tos();
2921 uint64_t start
, len
;
2925 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2926 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2931 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2932 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2936 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2938 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2939 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2943 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2945 status
= cli_posix_unlock(cli
, fnum
, start
, len
);
2946 if (!NT_STATUS_IS_OK(status
)) {
2947 d_printf("unlock failed %d: %s\n", fnum
, nt_errstr(status
));
2954 /****************************************************************************
2956 ****************************************************************************/
2958 static int cmd_rmdir(void)
2960 TALLOC_CTX
*ctx
= talloc_tos();
2963 char *targetname
= NULL
;
2964 struct cli_state
*targetcli
;
2967 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2968 d_printf("rmdir <dirname>\n");
2971 mask
= talloc_asprintf(ctx
,
2973 client_get_cur_dir(),
2979 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2981 if (!NT_STATUS_IS_OK(status
)) {
2982 d_printf("rmdir %s: %s\n", mask
, nt_errstr(status
));
2986 status
= cli_rmdir(targetcli
, targetname
);
2987 if (!NT_STATUS_IS_OK(status
)) {
2988 d_printf("%s removing remote directory file %s\n",
2989 nt_errstr(status
), mask
);
2995 /****************************************************************************
2997 ****************************************************************************/
2999 static int cmd_link(void)
3001 TALLOC_CTX
*ctx
= talloc_tos();
3002 char *oldname
= NULL
;
3003 char *newname
= NULL
;
3006 char *targetname
= NULL
;
3007 struct cli_state
*targetcli
;
3010 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3011 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3012 d_printf("link <oldname> <newname>\n");
3015 oldname
= talloc_asprintf(ctx
,
3017 client_get_cur_dir(),
3022 newname
= talloc_asprintf(ctx
,
3024 client_get_cur_dir(),
3030 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
,
3032 if (!NT_STATUS_IS_OK(status
)) {
3033 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3037 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3038 d_printf("Server doesn't support UNIX CIFS calls.\n");
3042 status
= cli_posix_hardlink(targetcli
, targetname
, newname
);
3043 if (!NT_STATUS_IS_OK(status
)) {
3044 d_printf("%s linking files (%s -> %s)\n",
3045 nt_errstr(status
), newname
, oldname
);
3051 /****************************************************************************
3053 ****************************************************************************/
3055 static int cmd_readlink(void)
3057 TALLOC_CTX
*ctx
= talloc_tos();
3060 char *targetname
= NULL
;
3061 char linkname
[PATH_MAX
+1];
3062 struct cli_state
*targetcli
;
3065 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3066 d_printf("readlink <name>\n");
3069 name
= talloc_asprintf(ctx
,
3071 client_get_cur_dir(),
3077 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
3079 if (!NT_STATUS_IS_OK(status
)) {
3080 d_printf("readlink %s: %s\n", name
, nt_errstr(status
));
3084 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3085 d_printf("Server doesn't support UNIX CIFS calls.\n");
3089 status
= cli_posix_readlink(targetcli
, name
, linkname
, PATH_MAX
+1);
3090 if (!NT_STATUS_IS_OK(status
)) {
3091 d_printf("%s readlink on file %s\n",
3092 nt_errstr(status
), name
);
3096 d_printf("%s -> %s\n", name
, linkname
);
3102 /****************************************************************************
3104 ****************************************************************************/
3106 static int cmd_symlink(void)
3108 TALLOC_CTX
*ctx
= talloc_tos();
3109 char *oldname
= NULL
;
3110 char *newname
= NULL
;
3113 struct cli_state
*newcli
;
3116 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3117 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3118 d_printf("symlink <oldname> <newname>\n");
3121 /* Oldname (link target) must be an untouched blob. */
3124 if (SERVER_HAS_UNIX_CIFS(cli
)) {
3125 newname
= talloc_asprintf(ctx
, "%s%s", client_get_cur_dir(),
3130 /* New name must be present in share namespace. */
3131 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, newname
,
3133 if (!NT_STATUS_IS_OK(status
)) {
3134 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3137 status
= cli_posix_symlink(newcli
, oldname
, newname
);
3139 status
= cli_symlink(
3141 buf2
[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE
);
3144 if (!NT_STATUS_IS_OK(status
)) {
3145 d_printf("%s symlinking files (%s -> %s)\n",
3146 nt_errstr(status
), oldname
, newname
);
3153 /****************************************************************************
3155 ****************************************************************************/
3157 static int cmd_chmod(void)
3159 TALLOC_CTX
*ctx
= talloc_tos();
3163 char *targetname
= NULL
;
3164 struct cli_state
*targetcli
;
3168 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3169 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3170 d_printf("chmod mode file\n");
3173 src
= talloc_asprintf(ctx
,
3175 client_get_cur_dir(),
3181 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3183 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3185 if (!NT_STATUS_IS_OK(status
)) {
3186 d_printf("chmod %s: %s\n", src
, nt_errstr(status
));
3190 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3191 d_printf("Server doesn't support UNIX CIFS calls.\n");
3195 status
= cli_posix_chmod(targetcli
, targetname
, mode
);
3196 if (!NT_STATUS_IS_OK(status
)) {
3197 d_printf("%s chmod file %s 0%o\n",
3198 nt_errstr(status
), src
, (unsigned int)mode
);
3205 static const char *filetype_to_str(mode_t mode
)
3207 if (S_ISREG(mode
)) {
3208 return "regular file";
3209 } else if (S_ISDIR(mode
)) {
3213 if (S_ISCHR(mode
)) {
3214 return "character device";
3218 if (S_ISBLK(mode
)) {
3219 return "block device";
3223 if (S_ISFIFO(mode
)) {
3228 if (S_ISLNK(mode
)) {
3229 return "symbolic link";
3233 if (S_ISSOCK(mode
)) {
3240 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3249 static char *unix_mode_to_str(char *s
, mode_t m
)
3252 const char *str
= filetype_to_str(m
);
3268 *p
++ = str
[1] == 'y' ? 'l' : 's';
3275 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3276 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3277 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3278 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3279 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3280 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3281 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3282 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3283 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3288 /****************************************************************************
3289 Utility function for UNIX getfacl.
3290 ****************************************************************************/
3292 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3294 fstrcpy(permstr
, "---");
3295 if (perms
& SMB_POSIX_ACL_READ
) {
3298 if (perms
& SMB_POSIX_ACL_WRITE
) {
3301 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3307 /****************************************************************************
3309 ****************************************************************************/
3311 static int cmd_getfacl(void)
3313 TALLOC_CTX
*ctx
= talloc_tos();
3316 char *targetname
= NULL
;
3317 struct cli_state
*targetcli
;
3318 uint16 major
, minor
;
3319 uint32 caplow
, caphigh
;
3320 char *retbuf
= NULL
;
3322 SMB_STRUCT_STAT sbuf
;
3323 uint16 num_file_acls
= 0;
3324 uint16 num_dir_acls
= 0;
3328 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3329 d_printf("getfacl filename\n");
3332 src
= talloc_asprintf(ctx
,
3334 client_get_cur_dir(),
3340 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3342 if (!NT_STATUS_IS_OK(status
)) {
3343 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3347 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3348 d_printf("Server doesn't support UNIX CIFS calls.\n");
3352 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3354 if (!NT_STATUS_IS_OK(status
)) {
3355 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3360 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3361 d_printf("This server supports UNIX extensions "
3362 "but doesn't support POSIX ACLs.\n");
3366 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3367 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3368 d_printf("%s getfacl doing a stat on file %s\n",
3369 nt_errstr(status
), src
);
3373 status
= cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
);
3374 if (!NT_STATUS_IS_OK(status
)) {
3375 d_printf("%s getfacl file %s\n",
3376 nt_errstr(status
), src
);
3380 /* ToDo : Print out the ACL values. */
3381 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3382 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3383 src
, (unsigned int)CVAL(retbuf
,0) );
3387 num_file_acls
= SVAL(retbuf
,2);
3388 num_dir_acls
= SVAL(retbuf
,4);
3389 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3390 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3392 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3393 (unsigned int)rb_size
);
3397 d_printf("# file: %s\n", src
);
3398 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3400 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3401 d_printf("No acls found.\n");
3404 for (i
= 0; i
< num_file_acls
; i
++) {
3407 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3408 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3411 case SMB_POSIX_ACL_USER_OBJ
:
3414 case SMB_POSIX_ACL_USER
:
3415 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3416 d_printf("user:%u:", uorg
);
3418 case SMB_POSIX_ACL_GROUP_OBJ
:
3419 d_printf("group::");
3421 case SMB_POSIX_ACL_GROUP
:
3422 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3423 d_printf("group:%u:", uorg
);
3425 case SMB_POSIX_ACL_MASK
:
3428 case SMB_POSIX_ACL_OTHER
:
3429 d_printf("other::");
3432 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3433 src
, (unsigned int)tagtype
);
3438 d_printf("%s\n", perms_to_string(permstring
, perms
));
3441 for (i
= 0; i
< num_dir_acls
; i
++) {
3444 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3445 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3448 case SMB_POSIX_ACL_USER_OBJ
:
3449 d_printf("default:user::");
3451 case SMB_POSIX_ACL_USER
:
3452 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3453 d_printf("default:user:%u:", uorg
);
3455 case SMB_POSIX_ACL_GROUP_OBJ
:
3456 d_printf("default:group::");
3458 case SMB_POSIX_ACL_GROUP
:
3459 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3460 d_printf("default:group:%u:", uorg
);
3462 case SMB_POSIX_ACL_MASK
:
3463 d_printf("default:mask::");
3465 case SMB_POSIX_ACL_OTHER
:
3466 d_printf("default:other::");
3469 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3470 src
, (unsigned int)tagtype
);
3475 d_printf("%s\n", perms_to_string(permstring
, perms
));
3481 /****************************************************************************
3482 Get the EA list of a file
3483 ****************************************************************************/
3485 static int cmd_geteas(void)
3487 TALLOC_CTX
*ctx
= talloc_tos();
3490 char *targetname
= NULL
;
3491 struct cli_state
*targetcli
;
3494 struct ea_struct
*eas
;
3496 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3497 d_printf("geteas filename\n");
3500 src
= talloc_asprintf(ctx
,
3502 client_get_cur_dir(),
3508 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3510 if (!NT_STATUS_IS_OK(status
)) {
3511 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3515 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3517 if (!NT_STATUS_IS_OK(status
)) {
3518 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3522 for (i
=0; i
<num_eas
; i
++) {
3523 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3524 dump_data_file(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3534 /****************************************************************************
3536 ****************************************************************************/
3538 static int cmd_setea(void)
3540 TALLOC_CTX
*ctx
= talloc_tos();
3543 char *eaname
= NULL
;
3544 char *eavalue
= NULL
;
3545 char *targetname
= NULL
;
3546 struct cli_state
*targetcli
;
3549 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3550 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3551 d_printf("setea filename eaname value\n");
3554 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3555 eavalue
= talloc_strdup(ctx
, "");
3557 src
= talloc_asprintf(ctx
,
3559 client_get_cur_dir(),
3565 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3567 if (!NT_STATUS_IS_OK(status
)) {
3568 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3572 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3574 if (!NT_STATUS_IS_OK(status
)) {
3575 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3582 /****************************************************************************
3584 ****************************************************************************/
3586 static int cmd_stat(void)
3588 TALLOC_CTX
*ctx
= talloc_tos();
3591 char *targetname
= NULL
;
3592 struct cli_state
*targetcli
;
3594 SMB_STRUCT_STAT sbuf
;
3599 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3600 d_printf("stat file\n");
3603 src
= talloc_asprintf(ctx
,
3605 client_get_cur_dir(),
3611 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3613 if (!NT_STATUS_IS_OK(status
)) {
3614 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3618 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3619 d_printf("Server doesn't support UNIX CIFS calls.\n");
3623 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3624 if (!NT_STATUS_IS_OK(status
)) {
3625 d_printf("%s stat file %s\n",
3626 nt_errstr(status
), src
);
3630 /* Print out the stat values. */
3631 d_printf("File: %s\n", src
);
3632 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3633 (double)sbuf
.st_ex_size
,
3634 (unsigned int)sbuf
.st_ex_blocks
,
3635 filetype_to_str(sbuf
.st_ex_mode
));
3637 #if defined(S_ISCHR) && defined(S_ISBLK)
3638 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3639 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3640 (double)sbuf
.st_ex_ino
,
3641 (unsigned int)sbuf
.st_ex_nlink
,
3642 unix_dev_major(sbuf
.st_ex_rdev
),
3643 unix_dev_minor(sbuf
.st_ex_rdev
));
3646 d_printf("Inode: %.0f\tLinks: %u\n",
3647 (double)sbuf
.st_ex_ino
,
3648 (unsigned int)sbuf
.st_ex_nlink
);
3650 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3651 ((int)sbuf
.st_ex_mode
& 0777),
3652 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3653 (unsigned int)sbuf
.st_ex_uid
,
3654 (unsigned int)sbuf
.st_ex_gid
);
3656 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3657 lt
= localtime(&tmp_time
);
3659 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3661 fstrcpy(mode_str
, "unknown");
3663 d_printf("Access: %s\n", mode_str
);
3665 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3666 lt
= localtime(&tmp_time
);
3668 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3670 fstrcpy(mode_str
, "unknown");
3672 d_printf("Modify: %s\n", mode_str
);
3674 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3675 lt
= localtime(&tmp_time
);
3677 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3679 fstrcpy(mode_str
, "unknown");
3681 d_printf("Change: %s\n", mode_str
);
3687 /****************************************************************************
3689 ****************************************************************************/
3691 static int cmd_chown(void)
3693 TALLOC_CTX
*ctx
= talloc_tos();
3697 char *buf
, *buf2
, *buf3
;
3698 struct cli_state
*targetcli
;
3699 char *targetname
= NULL
;
3702 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3703 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3704 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3705 d_printf("chown uid gid file\n");
3709 uid
= (uid_t
)atoi(buf
);
3710 gid
= (gid_t
)atoi(buf2
);
3712 src
= talloc_asprintf(ctx
,
3714 client_get_cur_dir(),
3719 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3721 if (!NT_STATUS_IS_OK(status
)) {
3722 d_printf("chown %s: %s\n", src
, nt_errstr(status
));
3726 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3727 d_printf("Server doesn't support UNIX CIFS calls.\n");
3731 status
= cli_posix_chown(targetcli
, targetname
, uid
, gid
);
3732 if (!NT_STATUS_IS_OK(status
)) {
3733 d_printf("%s chown file %s uid=%d, gid=%d\n",
3734 nt_errstr(status
), src
, (int)uid
, (int)gid
);
3741 /****************************************************************************
3743 ****************************************************************************/
3745 static int cmd_rename(void)
3747 TALLOC_CTX
*ctx
= talloc_tos();
3750 struct cli_state
*targetcli
;
3755 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3756 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3757 d_printf("rename <src> <dest>\n");
3761 src
= talloc_asprintf(ctx
,
3763 client_get_cur_dir(),
3769 dest
= talloc_asprintf(ctx
,
3771 client_get_cur_dir(),
3777 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3779 if (!NT_STATUS_IS_OK(status
)) {
3780 d_printf("rename %s: %s\n", src
, nt_errstr(status
));
3784 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
,
3786 if (!NT_STATUS_IS_OK(status
)) {
3787 d_printf("rename %s: %s\n", dest
, nt_errstr(status
));
3791 status
= cli_rename(targetcli
, targetsrc
, targetdest
);
3792 if (!NT_STATUS_IS_OK(status
)) {
3793 d_printf("%s renaming files %s -> %s \n",
3803 /****************************************************************************
3804 Print the volume name.
3805 ****************************************************************************/
3807 static int cmd_volume(void)
3810 uint32_t serial_num
;
3814 status
= cli_get_fs_volume_info(cli
, talloc_tos(),
3815 &volname
, &serial_num
,
3817 if (!NT_STATUS_IS_OK(status
)) {
3818 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3822 d_printf("Volume: |%s| serial number 0x%x\n",
3823 volname
, (unsigned int)serial_num
);
3827 /****************************************************************************
3828 Hard link files using the NT call.
3829 ****************************************************************************/
3831 static int cmd_hardlink(void)
3833 TALLOC_CTX
*ctx
= talloc_tos();
3836 struct cli_state
*targetcli
;
3840 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3841 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3842 d_printf("hardlink <src> <dest>\n");
3846 src
= talloc_asprintf(ctx
,
3848 client_get_cur_dir(),
3854 dest
= talloc_asprintf(ctx
,
3856 client_get_cur_dir(),
3862 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3864 if (!NT_STATUS_IS_OK(status
)) {
3865 d_printf("hardlink %s: %s\n", src
, nt_errstr(status
));
3869 status
= cli_nt_hardlink(targetcli
, targetname
, dest
);
3870 if (!NT_STATUS_IS_OK(status
)) {
3871 d_printf("%s doing an NT hard link of files\n",
3879 /****************************************************************************
3880 Toggle the prompt flag.
3881 ****************************************************************************/
3883 static int cmd_prompt(void)
3886 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3890 /****************************************************************************
3891 Set the newer than time.
3892 ****************************************************************************/
3894 static int cmd_newer(void)
3896 TALLOC_CTX
*ctx
= talloc_tos();
3899 SMB_STRUCT_STAT sbuf
;
3901 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3902 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3903 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3904 DEBUG(1,("Getting files newer than %s",
3905 time_to_asc(newer_than
)));
3910 if (ok
&& newer_than
== 0) {
3911 d_printf("Error setting newer-than time\n");
3918 /****************************************************************************
3919 Watch directory changes
3920 ****************************************************************************/
3922 static int cmd_notify(void)
3924 TALLOC_CTX
*frame
= talloc_stackframe();
3929 name
= talloc_strdup(talloc_tos(), client_get_cur_dir());
3933 if (!next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
, NULL
)) {
3936 name
= talloc_asprintf_append(name
, "%s", buf
);
3940 status
= cli_ntcreate(
3941 cli
, name
, 0, FILE_READ_DATA
, 0,
3942 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3943 FILE_OPEN
, 0, 0, &fnum
);
3944 if (!NT_STATUS_IS_OK(status
)) {
3945 d_printf("Could not open file: %s\n", nt_errstr(status
));
3950 uint32_t i
, num_changes
;
3951 struct notify_change
*changes
;
3953 status
= cli_notify(cli
, fnum
, 1000, FILE_NOTIFY_CHANGE_ALL
,
3955 talloc_tos(), &num_changes
, &changes
);
3956 if (!NT_STATUS_IS_OK(status
)) {
3957 d_printf("notify returned %s\n",
3961 for (i
=0; i
<num_changes
; i
++) {
3962 printf("%4.4x %s\n", changes
[i
].action
,
3965 TALLOC_FREE(changes
);
3968 d_printf("notify <file>\n");
3974 /****************************************************************************
3975 Set the archive level.
3976 ****************************************************************************/
3978 static int cmd_archive(void)
3980 TALLOC_CTX
*ctx
= talloc_tos();
3983 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3984 archive_level
= atoi(buf
);
3986 d_printf("Archive level is %d\n",archive_level
);
3992 /****************************************************************************
3993 Toggle the backup_intent state.
3994 ****************************************************************************/
3996 static int cmd_backup(void)
3998 backup_intent
= !backup_intent
;
3999 cli_set_backup_intent(cli
, backup_intent
);
4000 DEBUG(2,("backup intent is now %s\n",backup_intent
?"on":"off"));
4004 /****************************************************************************
4005 Toggle the lowercaseflag.
4006 ****************************************************************************/
4008 static int cmd_lowercase(void)
4010 lowercase
= !lowercase
;
4011 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
4015 /****************************************************************************
4016 Toggle the case sensitive flag.
4017 ****************************************************************************/
4019 static int cmd_setcase(void)
4021 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
4023 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
4024 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
4029 /****************************************************************************
4030 Toggle the showacls flag.
4031 ****************************************************************************/
4033 static int cmd_showacls(void)
4035 showacls
= !showacls
;
4036 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
4041 /****************************************************************************
4042 Toggle the recurse flag.
4043 ****************************************************************************/
4045 static int cmd_recurse(void)
4048 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
4052 /****************************************************************************
4053 Toggle the translate flag.
4054 ****************************************************************************/
4056 static int cmd_translate(void)
4058 translation
= !translation
;
4059 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4060 translation
?"on":"off"));
4064 /****************************************************************************
4066 ****************************************************************************/
4068 static int cmd_lcd(void)
4070 TALLOC_CTX
*ctx
= talloc_tos();
4074 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4075 if (chdir(buf
) == -1) {
4076 d_printf("chdir to %s failed (%s)\n",
4077 buf
, strerror(errno
));
4084 DEBUG(2,("the local directory is now %s\n",d
));
4089 /****************************************************************************
4090 Get a file restarting at end of local file.
4091 ****************************************************************************/
4093 static int cmd_reget(void)
4095 TALLOC_CTX
*ctx
= talloc_tos();
4096 char *local_name
= NULL
;
4097 char *remote_name
= NULL
;
4101 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4106 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
4107 d_printf("reget <filename>\n");
4110 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
4114 remote_name
= clean_name(ctx
,remote_name
);
4120 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
4125 return do_get(remote_name
, local_name
, true);
4128 /****************************************************************************
4129 Put a file restarting at end of local file.
4130 ****************************************************************************/
4132 static int cmd_reput(void)
4134 TALLOC_CTX
*ctx
= talloc_tos();
4135 char *local_name
= NULL
;
4136 char *remote_name
= NULL
;
4140 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4145 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
4146 d_printf("reput <filename>\n");
4150 if (!file_exist_stat(local_name
, &st
, false)) {
4151 d_printf("%s does not exist\n", local_name
);
4155 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
4156 remote_name
= talloc_asprintf_append(remote_name
,
4159 remote_name
= talloc_asprintf_append(remote_name
,
4166 remote_name
= clean_name(ctx
, remote_name
);
4171 return do_put(remote_name
, local_name
, true);
4174 /****************************************************************************
4176 ****************************************************************************/
4178 static void browse_fn(const char *name
, uint32 m
,
4179 const char *comment
, void *state
)
4181 const char *typestr
= "";
4184 case STYPE_DISKTREE
:
4188 typestr
= "Printer";
4197 /* FIXME: If the remote machine returns non-ascii characters
4198 in any of these fields, they can corrupt the output. We
4199 should remove them. */
4201 d_printf("\t%-15s %-10.10s%s\n",
4202 name
,typestr
,comment
);
4204 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
4208 static bool browse_host_rpc(bool sort
)
4211 struct rpc_pipe_client
*pipe_hnd
= NULL
;
4212 TALLOC_CTX
*frame
= talloc_stackframe();
4214 struct srvsvc_NetShareInfoCtr info_ctr
;
4215 struct srvsvc_NetShareCtr1 ctr1
;
4216 uint32_t resume_handle
= 0;
4217 uint32_t total_entries
= 0;
4219 struct dcerpc_binding_handle
*b
;
4221 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
4224 if (!NT_STATUS_IS_OK(status
)) {
4225 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4226 nt_errstr(status
)));
4231 b
= pipe_hnd
->binding_handle
;
4233 ZERO_STRUCT(info_ctr
);
4237 info_ctr
.ctr
.ctr1
= &ctr1
;
4239 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4247 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4248 TALLOC_FREE(pipe_hnd
);
4253 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4254 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4255 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4258 TALLOC_FREE(pipe_hnd
);
4263 /****************************************************************************
4264 Try and browse available connections on a host.
4265 ****************************************************************************/
4267 static bool browse_host(bool sort
)
4271 d_printf("\n\tSharename Type Comment\n");
4272 d_printf("\t--------- ---- -------\n");
4275 if (browse_host_rpc(sort
)) {
4279 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1) {
4280 NTSTATUS status
= cli_nt_error(cli
);
4281 d_printf("Error returning browse list: %s\n",
4288 /****************************************************************************
4290 ****************************************************************************/
4292 static void server_fn(const char *name
, uint32 m
,
4293 const char *comment
, void *state
)
4297 d_printf("\t%-16s %s\n", name
, comment
);
4299 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4303 /****************************************************************************
4304 Try and browse available connections on a host.
4305 ****************************************************************************/
4307 static bool list_servers(const char *wk_grp
)
4311 if (!cli
->server_domain
)
4315 d_printf("\n\tServer Comment\n");
4316 d_printf("\t--------- -------\n");
4318 fstrcpy( state
, "Server" );
4319 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4323 d_printf("\n\tWorkgroup Master\n");
4324 d_printf("\t--------- -------\n");
4327 fstrcpy( state
, "Workgroup" );
4328 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4333 /****************************************************************************
4334 Print or set current VUID
4335 ****************************************************************************/
4337 static int cmd_vuid(void)
4339 TALLOC_CTX
*ctx
= talloc_tos();
4342 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4343 d_printf("Current VUID is %d\n",
4344 cli_state_get_uid(cli
));
4348 cli_state_set_uid(cli
, atoi(buf
));
4352 /****************************************************************************
4353 Setup a new VUID, by issuing a session setup
4354 ****************************************************************************/
4356 static int cmd_logon(void)
4358 TALLOC_CTX
*ctx
= talloc_tos();
4359 char *l_username
, *l_password
;
4362 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4363 d_printf("logon <username> [<password>]\n");
4367 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4368 char pwd
[256] = {0};
4371 rc
= samba_getpass("Password: ", pwd
, sizeof(pwd
), false, false);
4373 l_password
= talloc_strdup(ctx
, pwd
);
4380 nt_status
= cli_session_setup(cli
, l_username
,
4381 l_password
, strlen(l_password
),
4382 l_password
, strlen(l_password
),
4384 if (!NT_STATUS_IS_OK(nt_status
)) {
4385 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4389 d_printf("Current VUID is %d\n", cli_state_get_uid(cli
));
4397 static int cmd_logoff(void)
4401 status
= cli_ulogoff(cli
);
4402 if (!NT_STATUS_IS_OK(status
)) {
4403 d_printf("logoff failed: %s\n", nt_errstr(status
));
4407 d_printf("logoff successful\n");
4413 * tree connect (connect to a share)
4416 static int cmd_tcon(void)
4418 TALLOC_CTX
*ctx
= talloc_tos();
4422 if (!next_token_talloc(ctx
, &cmd_ptr
, &sharename
, NULL
)) {
4423 d_printf("tcon <sharename>\n");
4431 status
= cli_tree_connect(cli
, sharename
, "?????", "", 0);
4432 if (!NT_STATUS_IS_OK(status
)) {
4433 d_printf("tcon failed: %s\n", nt_errstr(status
));
4437 talloc_free(sharename
);
4439 d_printf("tcon to %s successful, tid: %u\n", sharename
,
4440 cli_state_get_tid(cli
));
4445 * tree disconnect (disconnect from a share)
4448 static int cmd_tdis(void)
4452 status
= cli_tdis(cli
);
4453 if (!NT_STATUS_IS_OK(status
)) {
4454 d_printf("tdis failed: %s\n", nt_errstr(status
));
4458 d_printf("tdis successful\n");
4467 static int cmd_tid(void)
4469 TALLOC_CTX
*ctx
= talloc_tos();
4472 if (!next_token_talloc(ctx
, &cmd_ptr
, &tid_str
, NULL
)) {
4473 if (cli_state_has_tcon(cli
)) {
4474 d_printf("current tid is %d\n", cli_state_get_tid(cli
));
4476 d_printf("no tcon currently\n");
4479 uint16_t tid
= atoi(tid_str
);
4480 cli_state_set_tid(cli
, tid
);
4487 /****************************************************************************
4488 list active connections
4489 ****************************************************************************/
4491 static int cmd_list_connect(void)
4493 cli_cm_display(cli
);
4497 /****************************************************************************
4498 display the current active client connection
4499 ****************************************************************************/
4501 static int cmd_show_connect( void )
4503 TALLOC_CTX
*ctx
= talloc_tos();
4504 struct cli_state
*targetcli
;
4508 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
4509 client_get_cur_dir(), &targetcli
,
4511 if (!NT_STATUS_IS_OK(status
)) {
4512 d_printf("showconnect %s: %s\n", cur_dir
, nt_errstr(status
));
4516 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli
->conn
), targetcli
->share
);
4520 /****************************************************************************
4522 ***************************************************************************/
4524 int cmd_iosize(void)
4526 TALLOC_CTX
*ctx
= talloc_tos();
4530 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4532 d_printf("iosize <n> or iosize 0x<n>. "
4533 "Minimum is 16384 (0x4000), "
4534 "max is 16776960 (0xFFFF00)\n");
4536 d_printf("iosize <n> or iosize 0x<n>. "
4537 "(Encrypted connection) ,"
4538 "Minimum is 16384 (0x4000), "
4539 "max is 130048 (0x1FC00)\n");
4544 iosize
= strtol(buf
,NULL
,0);
4545 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
4546 d_printf("iosize out of range for encrypted "
4547 "connection (min = 16384 (0x4000), "
4548 "max = 130048 (0x1FC00)");
4550 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
4551 d_printf("iosize out of range (min = 16384 (0x4000), "
4552 "max = 16776960 (0xFFFF00)");
4556 io_bufsize
= iosize
;
4557 d_printf("iosize is now %d\n", io_bufsize
);
4561 /****************************************************************************
4563 ****************************************************************************/
4564 static int cmd_history(void)
4566 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4570 hlist
= history_list();
4572 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4573 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4576 DEBUG(0,("no history without readline support\n"));
4582 /* Some constants for completing filename arguments */
4584 #define COMPL_NONE 0 /* No completions */
4585 #define COMPL_REMOTE 1 /* Complete remote filename */
4586 #define COMPL_LOCAL 2 /* Complete local filename */
4588 /* This defines the commands supported by this client.
4589 * NOTE: The "!" must be the last one in the list because it's fn pointer
4590 * field is NULL, and NULL in that field is used in process_tok()
4591 * (below) to indicate the end of the list. crh
4596 const char *description
;
4597 char compl_args
[2]; /* Completion argument info */
4599 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4600 {"allinfo",cmd_allinfo
,"<file> show all available info",
4601 {COMPL_NONE
,COMPL_NONE
}},
4602 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4603 {"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
}},
4604 {"backup",cmd_backup
,"toggle backup intent state",{COMPL_NONE
,COMPL_NONE
}},
4605 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4606 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4607 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4608 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4609 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
4610 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
4611 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
4612 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4613 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4614 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4615 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4616 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4617 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4618 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
4619 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4620 {COMPL_REMOTE
, COMPL_LOCAL
}},
4621 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4622 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4623 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4624 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4625 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4626 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4627 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4628 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4629 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4630 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4631 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4632 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4633 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4634 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4635 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4636 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4637 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4638 {"notify",cmd_notify
,"<file>Get notified of dir changes",{COMPL_REMOTE
,COMPL_NONE
}},
4639 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4640 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4641 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4642 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4643 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4644 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4645 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4646 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4647 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4648 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4649 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4650 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4651 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4652 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4653 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4654 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4655 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4656 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4657 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4658 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4659 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4660 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4661 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4662 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4663 {COMPL_REMOTE
, COMPL_LOCAL
}},
4664 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4665 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
4666 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4667 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4668 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4669 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4670 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4671 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4672 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4673 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4674 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4675 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4676 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4677 {"tcon",cmd_tcon
,"connect to a share" ,{COMPL_NONE
,COMPL_NONE
}},
4678 {"tdis",cmd_tdis
,"disconnect from a share",{COMPL_NONE
,COMPL_NONE
}},
4679 {"tid",cmd_tid
,"show or set the current tid (tree-id)",{COMPL_NONE
,COMPL_NONE
}},
4680 {"logoff",cmd_logoff
,"log off (close the session)",{COMPL_NONE
,COMPL_NONE
}},
4681 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4683 /* Yes, this must be here, see crh's comment above. */
4684 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4685 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4688 /*******************************************************************
4689 Lookup a command string in the list of commands, including
4691 ******************************************************************/
4693 static int process_tok(char *tok
)
4695 int i
= 0, matches
= 0;
4697 int tok_len
= strlen(tok
);
4699 while (commands
[i
].fn
!= NULL
) {
4700 if (strequal(commands
[i
].name
,tok
)) {
4704 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4713 else if (matches
== 1)
4719 /****************************************************************************
4721 ****************************************************************************/
4723 static int cmd_help(void)
4725 TALLOC_CTX
*ctx
= talloc_tos();
4729 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4730 if ((i
= process_tok(buf
)) >= 0)
4731 d_printf("HELP %s:\n\t%s\n\n",
4732 commands
[i
].name
,commands
[i
].description
);
4734 while (commands
[i
].description
) {
4735 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4736 d_printf("%-15s",commands
[i
].name
);
4745 /****************************************************************************
4746 Process a -c command string.
4747 ****************************************************************************/
4749 static int process_command_string(const char *cmd_in
)
4751 TALLOC_CTX
*ctx
= talloc_tos();
4752 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4758 /* establish the connection if not already */
4763 status
= cli_cm_open(talloc_tos(), NULL
,
4764 have_ip
? dest_ss_str
: desthost
,
4767 max_protocol
, port
, name_type
,
4769 if (!NT_STATUS_IS_OK(status
)) {
4774 while (cmd
[0] != '\0') {
4780 if ((p
= strchr_m(cmd
, ';')) == 0) {
4789 /* and get the first part of the command */
4791 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4795 if ((i
= process_tok(tok
)) >= 0) {
4796 rc
= commands
[i
].fn();
4797 } else if (i
== -2) {
4798 d_printf("%s: command abbreviation ambiguous\n",tok
);
4800 d_printf("%s: command not found\n",tok
);
4807 #define MAX_COMPLETIONS 100
4809 struct completion_remote
{
4817 static NTSTATUS
completion_remote_filter(const char *mnt
,
4818 struct file_info
*f
,
4822 struct completion_remote
*info
= (struct completion_remote
*)state
;
4824 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4825 return NT_STATUS_OK
;
4827 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4828 return NT_STATUS_OK
;
4830 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4831 return NT_STATUS_OK
;
4834 if ((info
->dirmask
[0] == 0) && !(f
->mode
& FILE_ATTRIBUTE_DIRECTORY
))
4835 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4837 TALLOC_CTX
*ctx
= talloc_stackframe();
4840 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4843 return NT_STATUS_NO_MEMORY
;
4845 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4848 return NT_STATUS_NO_MEMORY
;
4850 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4851 tmp
= talloc_asprintf_append(tmp
, "%s",
4856 return NT_STATUS_NO_MEMORY
;
4858 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4861 if (info
->matches
[info
->count
] == NULL
) {
4862 return NT_STATUS_OK
;
4864 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4865 smb_readline_ca_char(0);
4867 if (info
->count
== 1) {
4868 info
->samelen
= strlen(info
->matches
[info
->count
]);
4870 while (strncmp(info
->matches
[info
->count
],
4871 info
->matches
[info
->count
-1],
4872 info
->samelen
) != 0) {
4877 return NT_STATUS_OK
;
4880 static char **remote_completion(const char *text
, int len
)
4882 TALLOC_CTX
*ctx
= talloc_stackframe();
4883 char *dirmask
= NULL
;
4884 char *targetpath
= NULL
;
4885 struct cli_state
*targetcli
= NULL
;
4887 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4890 /* can't have non-static initialisation on Sun CC, so do it
4896 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4897 if (!info
.matches
) {
4903 * We're leaving matches[0] free to fill it later with the text to
4904 * display: Either the one single match or the longest common subset
4907 info
.matches
[0] = NULL
;
4910 for (i
= len
-1; i
>= 0; i
--) {
4911 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4916 info
.text
= text
+i
+1;
4917 info
.samelen
= info
.len
= len
-i
-1;
4920 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4921 if (!info
.dirmask
) {
4924 strncpy(info
.dirmask
, text
, i
+1);
4925 info
.dirmask
[i
+1] = 0;
4926 dirmask
= talloc_asprintf(ctx
,
4928 client_get_cur_dir(),
4932 info
.dirmask
= SMB_STRDUP("");
4933 if (!info
.dirmask
) {
4936 dirmask
= talloc_asprintf(ctx
,
4938 client_get_cur_dir());
4944 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
,
4946 if (!NT_STATUS_IS_OK(status
)) {
4949 status
= cli_list(targetcli
, targetpath
, FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
4950 completion_remote_filter
, (void *)&info
);
4951 if (!NT_STATUS_IS_OK(status
)) {
4955 if (info
.count
== 1) {
4957 * No matches at all, NULL indicates there is nothing
4959 SAFE_FREE(info
.matches
[0]);
4960 SAFE_FREE(info
.matches
);
4965 if (info
.count
== 2) {
4967 * Exactly one match in matches[1], indicate this is the one
4970 info
.matches
[0] = info
.matches
[1];
4971 info
.matches
[1] = NULL
;
4974 return info
.matches
;
4978 * We got more than one possible match, set the result to the maximum
4982 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4983 info
.matches
[info
.count
] = NULL
;
4985 return info
.matches
;
4988 for (i
= 0; i
< info
.count
; i
++) {
4989 SAFE_FREE(info
.matches
[i
]);
4991 SAFE_FREE(info
.matches
);
4992 SAFE_FREE(info
.dirmask
);
4997 static char **completion_fn(const char *text
, int start
, int end
)
4999 smb_readline_ca_char(' ');
5002 const char *buf
, *sp
;
5006 buf
= smb_readline_get_line_buffer();
5010 sp
= strchr(buf
, ' ');
5014 for (i
= 0; commands
[i
].name
; i
++) {
5015 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
5016 (commands
[i
].name
[sp
- buf
] == 0)) {
5020 if (commands
[i
].name
== NULL
)
5026 if (sp
== (buf
+ start
))
5027 compl_type
= commands
[i
].compl_args
[0];
5029 compl_type
= commands
[i
].compl_args
[1];
5031 if (compl_type
== COMPL_REMOTE
)
5032 return remote_completion(text
, end
- start
);
5033 else /* fall back to local filename completion */
5037 int i
, len
, samelen
= 0, count
=1;
5039 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
5046 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
5047 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
5048 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
5049 if (!matches
[count
])
5052 samelen
= strlen(matches
[count
]);
5054 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
5061 case 0: /* should never happen */
5065 matches
[0] = SMB_STRDUP(matches
[1]);
5068 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
5071 strncpy(matches
[0], matches
[1], samelen
);
5072 matches
[0][samelen
] = 0;
5074 matches
[count
] = NULL
;
5078 for (i
= 0; i
< count
; i
++)
5086 static bool finished
;
5088 /****************************************************************************
5089 Make sure we swallow keepalives during idle time.
5090 ****************************************************************************/
5092 static void readline_callback(void)
5094 static time_t last_t
;
5095 struct timespec now
;
5098 unsigned char garbage
[16];
5100 clock_gettime_mono(&now
);
5108 /* Ping the server to keep the connection alive using SMBecho. */
5109 memset(garbage
, 0xf0, sizeof(garbage
));
5110 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
5111 if (NT_STATUS_IS_OK(status
)) {
5115 if (!cli_state_is_connected(cli
)) {
5116 DEBUG(0,("SMBecho failed (%s). The connection is "
5117 "disconnected now\n", nt_errstr(status
)));
5119 smb_readline_done();
5123 /****************************************************************************
5124 Process commands on stdin.
5125 ****************************************************************************/
5127 static int process_stdin(void)
5132 TALLOC_CTX
*frame
= talloc_stackframe();
5134 char *the_prompt
= NULL
;
5138 /* display a prompt */
5139 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
5143 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
5144 SAFE_FREE(the_prompt
);
5150 /* special case - first char is ! */
5152 if (system(line
+ 1) == -1) {
5153 d_printf("system() command %s failed.\n",
5161 /* and get the first part of the command */
5163 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
5169 if ((i
= process_tok(tok
)) >= 0) {
5170 rc
= commands
[i
].fn();
5171 } else if (i
== -2) {
5172 d_printf("%s: command abbreviation ambiguous\n",tok
);
5174 d_printf("%s: command not found\n",tok
);
5182 /****************************************************************************
5183 Process commands from the client.
5184 ****************************************************************************/
5186 static int process(const char *base_directory
)
5191 status
= cli_cm_open(talloc_tos(), NULL
,
5192 have_ip
? dest_ss_str
: desthost
,
5193 service
, auth_info
, true, smb_encrypt
,
5194 max_protocol
, port
, name_type
, &cli
);
5195 if (!NT_STATUS_IS_OK(status
)) {
5199 if (base_directory
&& *base_directory
) {
5200 rc
= do_cd(base_directory
);
5208 rc
= process_command_string(cmdstr
);
5217 /****************************************************************************
5219 ****************************************************************************/
5221 static int do_host_query(const char *query_host
)
5225 status
= cli_cm_open(talloc_tos(), NULL
,
5226 have_ip
? dest_ss_str
: query_host
,
5227 "IPC$", auth_info
, true, smb_encrypt
,
5228 max_protocol
, port
, name_type
, &cli
);
5229 if (!NT_STATUS_IS_OK(status
)) {
5235 /* Ensure that the host can do IPv4 */
5237 if (!interpret_addr(query_host
)) {
5238 struct sockaddr_storage ss
;
5239 if (interpret_string_addr(&ss
, query_host
, 0) &&
5240 (ss
.ss_family
!= AF_INET
)) {
5241 d_printf("%s is an IPv6 address -- no workgroup available\n",
5247 if (port
!= NBT_SMB_PORT
) {
5249 /* Workgroups simply don't make sense over anything
5250 else but port 139... */
5253 status
= cli_cm_open(talloc_tos(), NULL
,
5254 have_ip
? dest_ss_str
: query_host
,
5255 "IPC$", auth_info
, true, smb_encrypt
,
5256 max_protocol
, NBT_SMB_PORT
, name_type
,
5258 if (!NT_STATUS_IS_OK(status
)) {
5264 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5268 list_servers(lp_workgroup());
5275 /****************************************************************************
5276 Handle a tar operation.
5277 ****************************************************************************/
5279 static int do_tar_op(const char *base_directory
)
5283 /* do we already have a connection? */
5287 status
= cli_cm_open(talloc_tos(), NULL
,
5288 have_ip
? dest_ss_str
: desthost
,
5289 service
, auth_info
, true, smb_encrypt
,
5290 max_protocol
, port
, name_type
, &cli
);
5291 if (!NT_STATUS_IS_OK(status
)) {
5298 if (base_directory
&& *base_directory
) {
5299 ret
= do_cd(base_directory
);
5313 /****************************************************************************
5314 Handle a message operation.
5315 ****************************************************************************/
5317 static int do_message_op(struct user_auth_info
*a_info
)
5321 status
= cli_connect_nb(desthost
, have_ip
? &dest_ss
: NULL
,
5322 port
? port
: NBT_SMB_PORT
, name_type
,
5323 lp_netbios_name(), SMB_SIGNING_DEFAULT
, 0, &cli
);
5324 if (!NT_STATUS_IS_OK(status
)) {
5325 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5329 send_message(get_cmdline_auth_info_username(a_info
));
5335 /****************************************************************************
5337 ****************************************************************************/
5339 int main(int argc
,char *argv
[])
5341 char *base_directory
= NULL
;
5343 char *query_host
= NULL
;
5344 bool message
= false;
5345 static const char *new_name_resolve_order
= NULL
;
5349 bool tar_opt
= false;
5350 bool service_opt
= false;
5351 struct poptOption long_options
[] = {
5354 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5355 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
5356 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
5357 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
5358 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
5359 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
5360 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5361 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
5362 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
5363 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
5364 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
5365 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
5366 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
5368 POPT_COMMON_CONNECTION
5369 POPT_COMMON_CREDENTIALS
5372 TALLOC_CTX
*frame
= talloc_stackframe();
5374 if (!client_set_cur_dir("\\")) {
5378 /* set default debug level to 1 regardless of what smb.conf sets */
5379 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR
);
5382 lp_set_cmdline("log level", "1");
5384 auth_info
= user_auth_info_init(frame
);
5385 if (auth_info
== NULL
) {
5388 popt_common_set_auth_info(auth_info
);
5391 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
5392 poptSetOtherOptionHelp(pc
, "service <password>");
5394 while ((opt
= poptGetNextOpt(pc
)) != -1) {
5396 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5397 /* I see no other way to keep things sane --SSS */
5398 if (tar_opt
== true) {
5399 while (poptPeekArg(pc
)) {
5405 /* if the service has not yet been specified lets see if it is available in the popt stack */
5406 if (!service_opt
&& poptPeekArg(pc
)) {
5407 service
= talloc_strdup(frame
, poptGetArg(pc
));
5414 /* if the service has already been retrieved then check if we have also a password */
5416 && (!get_cmdline_auth_info_got_pass(auth_info
))
5417 && poptPeekArg(pc
)) {
5418 set_cmdline_auth_info_password(auth_info
,
5425 /* Messages are sent to NetBIOS name type 0x3
5426 * (Messenger Service). Make sure we default
5427 * to port 139 instead of port 445. srl,crh
5430 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
5435 port
= NBT_SMB_PORT
;
5440 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
5444 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
5448 setup_logging("smbclient", DEBUG_STDERR
);
5449 display_set_stderr();
5453 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
5459 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
5462 /* We must use old option processing for this. Find the
5463 * position of the -T option in the raw argv[]. */
5466 for (i
= 1; i
< argc
; i
++) {
5467 if (strncmp("-T", argv
[i
],2)==0)
5471 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
5472 poptPrintUsage(pc
, stderr
, 0);
5476 /* this must be the last option, mark we have parsed it so that we know we have */
5480 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5481 if (!base_directory
) {
5492 return(do_smb_browse());
5497 /* We may still have some leftovers after the last popt option has been called */
5498 if (tar_opt
== true) {
5499 while (poptPeekArg(pc
)) {
5505 /* if the service has not yet been specified lets see if it is available in the popt stack */
5506 if (!service_opt
&& poptPeekArg(pc
)) {
5507 service
= talloc_strdup(frame
,poptGetArg(pc
));
5514 /* if the service has already been retrieved then check if we have also a password */
5516 && !get_cmdline_auth_info_got_pass(auth_info
)
5517 && poptPeekArg(pc
)) {
5518 set_cmdline_auth_info_password(auth_info
,
5522 if ( override_logfile
)
5523 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE
);
5525 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5526 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5527 argv
[0], get_dyn_CONFIGFILE());
5530 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5531 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5537 if (service_opt
&& service
) {
5540 /* Convert any '/' characters in the service name to '\' characters */
5541 string_replace(service
, '/','\\');
5542 if (count_chars(service
,'\\') < 3) {
5543 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5544 poptPrintUsage(pc
, stderr
, 0);
5547 /* Remove trailing slashes */
5548 len
= strlen(service
);
5549 while(len
> 0 && service
[len
- 1] == '\\') {
5551 service
[len
] = '\0';
5555 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5556 if (!init_names()) {
5557 fprintf(stderr
, "init_names() failed\n");
5561 if(new_name_resolve_order
)
5562 lp_set_cmdline("name resolve order", new_name_resolve_order
);
5564 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5565 poptPrintUsage(pc
, stderr
, 0);
5569 poptFreeContext(pc
);
5570 popt_burn_cmdline_password(argc
, argv
);
5572 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5574 /* Ensure we have a password (or equivalent). */
5575 set_cmdline_auth_info_getpass(auth_info
);
5579 process_command_string(cmdstr
);
5580 rc
= do_tar_op(base_directory
);
5581 } else if (query_host
&& *query_host
) {
5582 char *qhost
= query_host
;
5585 while (*qhost
== '\\' || *qhost
== '/')
5588 if ((slash
= strchr_m(qhost
, '/'))
5589 || (slash
= strchr_m(qhost
, '\\'))) {
5593 if ((p
=strchr_m(qhost
, '#'))) {
5596 sscanf(p
, "%x", &name_type
);
5599 rc
= do_host_query(qhost
);
5600 } else if (message
) {
5601 rc
= do_message_op(auth_info
);
5602 } else if (process(base_directory
)) {