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 "client/client_proto.h"
26 #include "include/rpc_client.h"
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange
;
34 extern bool override_logfile
;
39 static char *desthost
;
40 static char *calling_name
;
41 static bool grepable
= false;
42 static char *cmdstr
= NULL
;
43 const char *cmd_ptr
= NULL
;
45 static int io_bufsize
= 524288;
47 static int name_type
= 0x20;
48 static int max_protocol
= PROTOCOL_NT1
;
50 static int process_tok(char *tok
);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than
= 0;
63 static int archive_level
= 0;
65 static bool translation
= false;
68 /* clitar bits insert */
71 extern bool tar_reset
;
74 static bool prompt
= true;
76 static bool recurse
= false;
77 static bool showacls
= false;
78 bool lowercase
= false;
80 static struct sockaddr_storage dest_ss
;
81 static char dest_ss_str
[INET6_ADDRSTRLEN
];
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget
= true;
88 uint64_t get_total_size
= 0;
89 unsigned int get_total_time_ms
= 0;
90 static uint64_t put_total_size
= 0;
91 static unsigned int put_total_time_ms
= 0;
94 static double dir_total
;
96 /* encrypted state. */
97 static bool smb_encrypt
;
99 /* root cli_state connection */
101 struct cli_state
*cli
;
103 static char CLI_DIRSEP_CHAR
= '\\';
104 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
106 /* Authentication for client connections. */
107 struct user_auth_info
*auth_info
;
109 /* Accessor functions for directory paths. */
110 static char *fileselection
;
111 static const char *client_get_fileselection(void)
114 return fileselection
;
119 static const char *client_set_fileselection(const char *new_fs
)
121 SAFE_FREE(fileselection
);
123 fileselection
= SMB_STRDUP(new_fs
);
125 return client_get_fileselection();
129 static const char *client_get_cwd(void)
134 return CLI_DIRSEP_STR
;
137 static const char *client_set_cwd(const char *new_cwd
)
141 cwd
= SMB_STRDUP(new_cwd
);
143 return client_get_cwd();
146 static char *cur_dir
;
147 const char *client_get_cur_dir(void)
152 return CLI_DIRSEP_STR
;
155 const char *client_set_cur_dir(const char *newdir
)
159 cur_dir
= SMB_STRDUP(newdir
);
161 return client_get_cur_dir();
164 /****************************************************************************
165 Write to a local file with CR/LF->LF translation if appropriate. Return the
166 number taken from the buffer. This may not equal the number written.
167 ****************************************************************************/
169 static int writefile(int f
, char *b
, int n
)
179 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
182 if (write(f
, b
, 1) != 1) {
192 /****************************************************************************
193 Read from a file with LF->CR/LF translation if appropriate. Return the
194 number read. read approx n bytes.
195 ****************************************************************************/
197 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
203 return x_fread(b
,1,n
,f
);
206 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
207 if ((c
= x_getc(f
)) == EOF
) {
211 if (c
== '\n') { /* change all LFs to CR/LF */
226 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
228 struct push_state
*state
= (struct push_state
*)priv
;
231 if (x_feof(state
->f
)) {
235 result
= readfile(buf
, n
, state
->f
);
236 state
->nread
+= result
;
240 /****************************************************************************
242 ****************************************************************************/
244 static void send_message(const char *username
)
249 if (!cli_message_start(cli
, desthost
, username
, &grp_id
)) {
250 d_printf("message start: %s\n", cli_errstr(cli
));
255 d_printf("Connected. Type your message, ending it with a Control-D\n");
257 while (!feof(stdin
) && total_len
< 1600) {
258 int maxlen
= MIN(1600 - total_len
,127);
265 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
271 if ((total_len
> 0) && (strlen(msg
) == 0)) {
275 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
276 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
283 if (total_len
>= 1600)
284 d_printf("the message was truncated to 1600 bytes\n");
286 d_printf("sent %d bytes\n",total_len
);
288 if (!cli_message_end(cli
, grp_id
)) {
289 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
294 /****************************************************************************
295 Check the space on a device.
296 ****************************************************************************/
298 static int do_dskattr(void)
300 int total
, bsize
, avail
;
301 struct cli_state
*targetcli
= NULL
;
302 char *targetpath
= NULL
;
303 TALLOC_CTX
*ctx
= talloc_tos();
305 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, client_get_cur_dir(), &targetcli
, &targetpath
)) {
306 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
310 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli
, &bsize
, &total
, &avail
))) {
311 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli
));
315 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
316 total
, bsize
, avail
);
321 /****************************************************************************
323 ****************************************************************************/
325 static int cmd_pwd(void)
327 d_printf("Current directory is %s",service
);
328 d_printf("%s\n",client_get_cur_dir());
332 /****************************************************************************
333 Ensure name has correct directory separators.
334 ****************************************************************************/
336 static void normalize_name(char *newdir
)
338 if (!(cli
->posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
339 string_replace(newdir
,'/','\\');
343 /****************************************************************************
344 Change directory - inner section.
345 ****************************************************************************/
347 static int do_cd(const char *new_dir
)
350 char *saved_dir
= NULL
;
352 char *targetpath
= NULL
;
353 struct cli_state
*targetcli
= NULL
;
354 SMB_STRUCT_STAT sbuf
;
357 TALLOC_CTX
*ctx
= talloc_stackframe();
359 newdir
= talloc_strdup(ctx
, new_dir
);
365 normalize_name(newdir
);
367 /* Save the current directory in case the new directory is invalid */
369 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
375 if (*newdir
== CLI_DIRSEP_CHAR
) {
376 client_set_cur_dir(newdir
);
379 new_cd
= talloc_asprintf(ctx
, "%s%s",
380 client_get_cur_dir(),
387 /* Ensure cur_dir ends in a DIRSEP */
388 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
389 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
394 client_set_cur_dir(new_cd
);
396 new_cd
= clean_name(ctx
, new_cd
);
397 client_set_cur_dir(new_cd
);
399 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
, &targetcli
, &targetpath
)) {
400 d_printf("cd %s: %s\n", new_cd
, cli_errstr(cli
));
401 client_set_cur_dir(saved_dir
);
405 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
410 /* Use a trans2_qpathinfo to test directories for modern servers.
411 Except Win9x doesn't support the qpathinfo_basic() call..... */
413 if (targetcli
->protocol
> PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
414 if (!cli_qpathinfo_basic( targetcli
, targetpath
, &sbuf
, &attributes
) ) {
415 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
416 client_set_cur_dir(saved_dir
);
420 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
421 d_printf("cd %s: not a directory\n", new_cd
);
422 client_set_cur_dir(saved_dir
);
426 targetpath
= talloc_asprintf(ctx
,
431 client_set_cur_dir(saved_dir
);
434 targetpath
= clean_name(ctx
, targetpath
);
436 client_set_cur_dir(saved_dir
);
440 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, targetpath
))) {
441 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
442 client_set_cur_dir(saved_dir
);
455 /****************************************************************************
457 ****************************************************************************/
459 static int cmd_cd(void)
464 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
467 d_printf("Current directory is %s\n",client_get_cur_dir());
473 /****************************************************************************
475 ****************************************************************************/
477 static int cmd_cd_oneup(void)
482 /*******************************************************************
483 Decide if a file should be operated on.
484 ********************************************************************/
486 static bool do_this_one(file_info
*finfo
)
492 if (finfo
->mode
& aDIR
) {
496 if (*client_get_fileselection() &&
497 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
498 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
502 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
503 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
507 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
508 DEBUG(3,("archive %s failed\n", finfo
->name
));
515 /****************************************************************************
516 Display info about a file.
517 ****************************************************************************/
519 static void display_finfo(file_info
*finfo
, const char *dir
)
522 TALLOC_CTX
*ctx
= talloc_tos();
524 if (!do_this_one(finfo
)) {
528 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
530 d_printf(" %-30s%7.7s %8.0f %s",
532 attrib_string(finfo
->mode
),
535 dir_total
+= finfo
->size
;
540 /* skip if this is . or .. */
541 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
543 /* create absolute filename for cli_ntcreate() FIXME */
544 afname
= talloc_asprintf(ctx
,
552 /* print file meta date header */
553 d_printf( "FILENAME:%s\n", finfo
->name
);
554 d_printf( "MODE:%s\n", attrib_string(finfo
->mode
));
555 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
556 d_printf( "MTIME:%s", time_to_asc(t
));
557 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo
->cli
, afname
, 0,
558 CREATE_ACCESS_READ
, 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
,
559 FILE_OPEN
, 0x0, 0x0, &fnum
))) {
560 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
562 cli_errstr( finfo
->cli
)));
565 sd
= cli_query_secdesc(finfo
->cli
, fnum
, ctx
);
567 DEBUG( 0, ("display_finfo() failed to "
568 "get security descriptor: %s",
569 cli_errstr( finfo
->cli
)));
571 display_sec_desc(sd
);
579 /****************************************************************************
580 Accumulate size of a file.
581 ****************************************************************************/
583 static void do_du(file_info
*finfo
, const char *dir
)
585 if (do_this_one(finfo
)) {
586 dir_total
+= finfo
->size
;
590 static bool do_list_recurse
;
591 static bool do_list_dirs
;
592 static char *do_list_queue
= 0;
593 static long do_list_queue_size
= 0;
594 static long do_list_queue_start
= 0;
595 static long do_list_queue_end
= 0;
596 static void (*do_list_fn
)(file_info
*, const char *dir
);
598 /****************************************************************************
599 Functions for do_list_queue.
600 ****************************************************************************/
603 * The do_list_queue is a NUL-separated list of strings stored in a
604 * char*. Since this is a FIFO, we keep track of the beginning and
605 * ending locations of the data in the queue. When we overflow, we
606 * double the size of the char*. When the start of the data passes
607 * the midpoint, we move everything back. This is logically more
608 * complex than a linked list, but easier from a memory management
609 * angle. In any memory error condition, do_list_queue is reset.
610 * Functions check to ensure that do_list_queue is non-NULL before
614 static void reset_do_list_queue(void)
616 SAFE_FREE(do_list_queue
);
617 do_list_queue_size
= 0;
618 do_list_queue_start
= 0;
619 do_list_queue_end
= 0;
622 static void init_do_list_queue(void)
624 reset_do_list_queue();
625 do_list_queue_size
= 1024;
626 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
627 if (do_list_queue
== 0) {
628 d_printf("malloc fail for size %d\n",
629 (int)do_list_queue_size
);
630 reset_do_list_queue();
632 memset(do_list_queue
, 0, do_list_queue_size
);
636 static void adjust_do_list_queue(void)
639 * If the starting point of the queue is more than half way through,
640 * move everything toward the beginning.
643 if (do_list_queue
== NULL
) {
644 DEBUG(4,("do_list_queue is empty\n"));
645 do_list_queue_start
= do_list_queue_end
= 0;
649 if (do_list_queue_start
== do_list_queue_end
) {
650 DEBUG(4,("do_list_queue is empty\n"));
651 do_list_queue_start
= do_list_queue_end
= 0;
652 *do_list_queue
= '\0';
653 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
654 DEBUG(4,("sliding do_list_queue backward\n"));
655 memmove(do_list_queue
,
656 do_list_queue
+ do_list_queue_start
,
657 do_list_queue_end
- do_list_queue_start
);
658 do_list_queue_end
-= do_list_queue_start
;
659 do_list_queue_start
= 0;
663 static void add_to_do_list_queue(const char *entry
)
665 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
666 while (new_end
> do_list_queue_size
) {
667 do_list_queue_size
*= 2;
668 DEBUG(4,("enlarging do_list_queue to %d\n",
669 (int)do_list_queue_size
));
670 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
671 if (! do_list_queue
) {
672 d_printf("failure enlarging do_list_queue to %d bytes\n",
673 (int)do_list_queue_size
);
674 reset_do_list_queue();
676 memset(do_list_queue
+ do_list_queue_size
/ 2,
677 0, do_list_queue_size
/ 2);
681 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
682 entry
, do_list_queue
, do_list_queue_size
);
683 do_list_queue_end
= new_end
;
684 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
685 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
689 static char *do_list_queue_head(void)
691 return do_list_queue
+ do_list_queue_start
;
694 static void remove_do_list_queue_head(void)
696 if (do_list_queue_end
> do_list_queue_start
) {
697 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
698 adjust_do_list_queue();
699 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
700 (int)do_list_queue_start
, (int)do_list_queue_end
));
704 static int do_list_queue_empty(void)
706 return (! (do_list_queue
&& *do_list_queue
));
709 /****************************************************************************
710 A helper for do_list.
711 ****************************************************************************/
713 static void do_list_helper(const char *mntpoint
, file_info
*f
, const char *mask
, void *state
)
715 TALLOC_CTX
*ctx
= talloc_tos();
717 char *dir_end
= NULL
;
719 /* Work out the directory. */
720 dir
= talloc_strdup(ctx
, mask
);
724 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
728 if (f
->mode
& aDIR
) {
729 if (do_list_dirs
&& do_this_one(f
)) {
732 if (do_list_recurse
&&
734 !strequal(f
->name
,".") &&
735 !strequal(f
->name
,"..")) {
740 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
745 mask2
= talloc_asprintf(ctx
,
753 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
759 mask2
= talloc_asprintf_append(mask2
,
767 add_to_do_list_queue(mask2
);
774 if (do_this_one(f
)) {
780 /****************************************************************************
781 A wrapper around cli_list that adds recursion.
782 ****************************************************************************/
784 void do_list(const char *mask
,
786 void (*fn
)(file_info
*, const char *dir
),
790 static int in_do_list
= 0;
791 TALLOC_CTX
*ctx
= talloc_tos();
792 struct cli_state
*targetcli
= NULL
;
793 char *targetpath
= NULL
;
795 if (in_do_list
&& rec
) {
796 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
802 do_list_recurse
= rec
;
807 init_do_list_queue();
808 add_to_do_list_queue(mask
);
810 while (!do_list_queue_empty()) {
812 * Need to copy head so that it doesn't become
813 * invalid inside the call to cli_list. This
814 * would happen if the list were expanded
816 * Fix from E. Jay Berkenbilt (ejb@ql.org)
818 char *head
= talloc_strdup(ctx
, do_list_queue_head());
826 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, head
, &targetcli
, &targetpath
) ) {
827 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
828 remove_do_list_queue_head();
832 cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
);
833 remove_do_list_queue_head();
834 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
835 char *next_file
= do_list_queue_head();
837 if ((strlen(next_file
) >= 2) &&
838 (next_file
[strlen(next_file
) - 1] == '*') &&
839 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
840 save_ch
= next_file
+
841 strlen(next_file
) - 2;
844 /* cwd is only used if showacls is on */
845 client_set_cwd(next_file
);
848 if (!showacls
) /* don't disturbe the showacls output */
849 d_printf("\n%s\n",next_file
);
851 *save_ch
= CLI_DIRSEP_CHAR
;
855 TALLOC_FREE(targetpath
);
859 if (cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetpath
)) {
860 if (cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
) == -1) {
861 d_printf("%s listing %s\n",
862 cli_errstr(targetcli
), targetpath
);
864 TALLOC_FREE(targetpath
);
866 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
871 reset_do_list_queue();
874 /****************************************************************************
875 Get a directory listing.
876 ****************************************************************************/
878 static int cmd_dir(void)
880 TALLOC_CTX
*ctx
= talloc_tos();
881 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
887 mask
= talloc_strdup(ctx
, client_get_cur_dir());
892 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
894 if (*buf
== CLI_DIRSEP_CHAR
) {
895 mask
= talloc_strdup(ctx
, buf
);
897 mask
= talloc_asprintf_append(mask
, "%s", buf
);
900 mask
= talloc_asprintf_append(mask
, "*");
907 /* cwd is only used if showacls is on */
908 client_set_cwd(client_get_cur_dir());
911 do_list(mask
, attribute
, display_finfo
, recurse
, true);
915 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
920 /****************************************************************************
921 Get a directory listing.
922 ****************************************************************************/
924 static int cmd_du(void)
926 TALLOC_CTX
*ctx
= talloc_tos();
927 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
933 mask
= talloc_strdup(ctx
, client_get_cur_dir());
937 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
938 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
944 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
946 if (*buf
== CLI_DIRSEP_CHAR
) {
947 mask
= talloc_strdup(ctx
, buf
);
949 mask
= talloc_asprintf_append(mask
, "%s", buf
);
952 mask
= talloc_strdup(ctx
, "*");
955 do_list(mask
, attribute
, do_du
, recurse
, true);
959 d_printf("Total number of bytes: %.0f\n", dir_total
);
964 static int cmd_echo(void)
966 TALLOC_CTX
*ctx
= talloc_tos();
971 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
972 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
973 d_printf("echo <num> <data>\n");
977 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
979 if (!NT_STATUS_IS_OK(status
)) {
980 d_printf("echo failed: %s\n", nt_errstr(status
));
987 /****************************************************************************
988 Get a file from rname to lname
989 ****************************************************************************/
991 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
993 int *pfd
= (int *)priv
;
994 if (writefile(*pfd
, buf
, n
) == -1) {
995 return map_nt_error_from_unix(errno
);
1000 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1002 TALLOC_CTX
*ctx
= talloc_tos();
1005 bool newhandle
= false;
1006 struct timeval tp_start
;
1010 SMB_OFF_T nread
= 0;
1012 struct cli_state
*targetcli
= NULL
;
1013 char *targetname
= NULL
;
1017 lname
= talloc_strdup(ctx
, lname_in
);
1026 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
, &targetname
) ) {
1027 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1031 GetTimeOfDay(&tp_start
);
1033 if (!NT_STATUS_IS_OK(cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
))) {
1034 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1038 if(!strcmp(lname
,"-")) {
1039 handle
= fileno(stdout
);
1042 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1044 start
= sys_lseek(handle
, 0, SEEK_END
);
1046 d_printf("Error seeking local file\n");
1051 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1056 d_printf("Error opening local file %s\n",lname
);
1061 if (!cli_qfileinfo(targetcli
, fnum
,
1062 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1063 !NT_STATUS_IS_OK(cli_getattrE(targetcli
, fnum
,
1064 &attr
, &size
, NULL
, NULL
, NULL
))) {
1065 d_printf("getattrib: %s\n",cli_errstr(targetcli
));
1069 DEBUG(1,("getting file %s of size %.0f as %s ",
1070 rname
, (double)size
, lname
));
1072 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1073 writefile_sink
, (void *)&handle
, &nread
);
1074 if (!NT_STATUS_IS_OK(status
)) {
1075 d_fprintf(stderr
, "parallel_read returned %s\n",
1077 cli_close(targetcli
, fnum
);
1081 if (!NT_STATUS_IS_OK(cli_close(targetcli
, fnum
))) {
1082 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
1090 if (archive_level
>= 2 && (attr
& aARCH
)) {
1091 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
1095 struct timeval tp_end
;
1098 GetTimeOfDay(&tp_end
);
1100 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1101 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1102 get_total_time_ms
+= this_time
;
1103 get_total_size
+= nread
;
1105 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1106 nread
/ (1.024*this_time
+ 1.0e-4),
1107 get_total_size
/ (1.024*get_total_time_ms
)));
1110 TALLOC_FREE(targetname
);
1114 /****************************************************************************
1116 ****************************************************************************/
1118 static int cmd_get(void)
1120 TALLOC_CTX
*ctx
= talloc_tos();
1125 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1130 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1131 d_printf("get <filename> [localname]\n");
1134 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1138 rname
= clean_name(ctx
, rname
);
1143 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1148 return do_get(rname
, lname
, false);
1151 /****************************************************************************
1152 Do an mget operation on one file.
1153 ****************************************************************************/
1155 static void do_mget(file_info
*finfo
, const char *dir
)
1157 TALLOC_CTX
*ctx
= talloc_tos();
1160 char *saved_curdir
= NULL
;
1161 char *mget_mask
= NULL
;
1162 char *new_cd
= NULL
;
1168 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1172 d_printf("mget aborted\n");
1176 if (finfo
->mode
& aDIR
) {
1177 if (asprintf(&quest
,
1178 "Get directory %s? ",finfo
->name
) < 0) {
1182 if (asprintf(&quest
,
1183 "Get file %s? ",finfo
->name
) < 0) {
1188 if (prompt
&& !yesno(quest
)) {
1194 if (!(finfo
->mode
& aDIR
)) {
1195 rname
= talloc_asprintf(ctx
,
1197 client_get_cur_dir(),
1202 do_get(rname
, finfo
->name
, false);
1207 /* handle directories */
1208 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1209 if (!saved_curdir
) {
1213 new_cd
= talloc_asprintf(ctx
,
1215 client_get_cur_dir(),
1221 client_set_cur_dir(new_cd
);
1223 string_replace(finfo
->name
,'\\','/');
1225 strlower_m(finfo
->name
);
1228 if (!directory_exist(finfo
->name
) &&
1229 mkdir(finfo
->name
,0777) != 0) {
1230 d_printf("failed to create directory %s\n",finfo
->name
);
1231 client_set_cur_dir(saved_curdir
);
1235 if (chdir(finfo
->name
) != 0) {
1236 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1237 client_set_cur_dir(saved_curdir
);
1241 mget_mask
= talloc_asprintf(ctx
,
1243 client_get_cur_dir());
1249 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,false, true);
1250 if (chdir("..") == -1) {
1251 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1254 client_set_cur_dir(saved_curdir
);
1255 TALLOC_FREE(mget_mask
);
1256 TALLOC_FREE(saved_curdir
);
1257 TALLOC_FREE(new_cd
);
1260 /****************************************************************************
1261 View the file using the pager.
1262 ****************************************************************************/
1264 static int cmd_more(void)
1266 TALLOC_CTX
*ctx
= talloc_tos();
1270 char *pager_cmd
= NULL
;
1275 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1280 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1284 fd
= mkstemp(lname
);
1286 d_printf("failed to create temporary file for more\n");
1291 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1292 d_printf("more <filename>\n");
1296 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1300 rname
= clean_name(ctx
,rname
);
1305 rc
= do_get(rname
, lname
, false);
1307 pager
=getenv("PAGER");
1309 pager_cmd
= talloc_asprintf(ctx
,
1311 (pager
? pager
:PAGER
),
1316 if (system(pager_cmd
) == -1) {
1317 d_printf("system command '%s' returned -1\n",
1325 /****************************************************************************
1327 ****************************************************************************/
1329 static int cmd_mget(void)
1331 TALLOC_CTX
*ctx
= talloc_tos();
1332 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1333 char *mget_mask
= NULL
;
1342 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1343 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1347 if (*buf
== CLI_DIRSEP_CHAR
) {
1348 mget_mask
= talloc_strdup(ctx
, buf
);
1350 mget_mask
= talloc_asprintf_append(mget_mask
,
1356 do_list(mget_mask
, attribute
, do_mget
, false, true);
1359 if (mget_mask
== NULL
) {
1360 d_printf("nothing to mget\n");
1365 mget_mask
= talloc_asprintf(ctx
,
1367 client_get_cur_dir());
1371 do_list(mget_mask
, attribute
, do_mget
, false, true);
1377 /****************************************************************************
1378 Make a directory of name "name".
1379 ****************************************************************************/
1381 static bool do_mkdir(const char *name
)
1383 TALLOC_CTX
*ctx
= talloc_tos();
1384 struct cli_state
*targetcli
;
1385 char *targetname
= NULL
;
1387 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
, &targetname
)) {
1388 d_printf("mkdir %s: %s\n", name
, cli_errstr(cli
));
1392 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli
, targetname
))) {
1393 d_printf("%s making remote directory %s\n",
1394 cli_errstr(targetcli
),name
);
1401 /****************************************************************************
1402 Show 8.3 name of a file.
1403 ****************************************************************************/
1405 static bool do_altname(const char *name
)
1409 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1410 d_printf("%s getting alt name for %s\n",
1411 cli_errstr(cli
),name
);
1414 d_printf("%s\n", altname
);
1419 /****************************************************************************
1421 ****************************************************************************/
1423 static int cmd_quit(void)
1431 /****************************************************************************
1433 ****************************************************************************/
1435 static int cmd_mkdir(void)
1437 TALLOC_CTX
*ctx
= talloc_tos();
1441 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1446 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1448 d_printf("mkdir <dirname>\n");
1452 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1460 struct cli_state
*targetcli
;
1461 char *targetname
= NULL
;
1465 ddir2
= talloc_strdup(ctx
, "");
1470 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
1474 ddir
= talloc_strdup(ctx
, targetname
);
1478 trim_char(ddir
,'.','\0');
1479 p
= strtok_r(ddir
, "/\\", &saveptr
);
1481 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1485 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1488 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1492 p
= strtok_r(NULL
, "/\\", &saveptr
);
1501 /****************************************************************************
1503 ****************************************************************************/
1505 static int cmd_altname(void)
1507 TALLOC_CTX
*ctx
= talloc_tos();
1511 name
= talloc_strdup(ctx
, client_get_cur_dir());
1516 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1517 d_printf("altname <file>\n");
1520 name
= talloc_asprintf_append(name
, "%s", buf
);
1528 /****************************************************************************
1529 Show all info we can get
1530 ****************************************************************************/
1532 static int do_allinfo(const char *name
)
1535 struct timespec b_time
, a_time
, m_time
, c_time
;
1540 unsigned int num_streams
;
1541 struct stream_struct
*streams
;
1544 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1545 d_printf("%s getting alt name for %s\n",
1546 cli_errstr(cli
),name
);
1549 d_printf("altname: %s\n", altname
);
1551 if (!cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1552 &size
, &mode
, &ino
)) {
1553 d_printf("%s getting pathinfo for %s\n",
1554 cli_errstr(cli
),name
);
1558 unix_timespec_to_nt_time(&tmp
, b_time
);
1559 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1561 unix_timespec_to_nt_time(&tmp
, a_time
);
1562 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1564 unix_timespec_to_nt_time(&tmp
, m_time
);
1565 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1567 unix_timespec_to_nt_time(&tmp
, c_time
);
1568 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1570 if (!cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1572 d_printf("%s getting streams for %s\n",
1573 cli_errstr(cli
),name
);
1577 for (i
=0; i
<num_streams
; i
++) {
1578 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1579 (unsigned long long)streams
[i
].size
);
1585 /****************************************************************************
1586 Show all info we can get
1587 ****************************************************************************/
1589 static int cmd_allinfo(void)
1591 TALLOC_CTX
*ctx
= talloc_tos();
1595 name
= talloc_strdup(ctx
, client_get_cur_dir());
1600 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1601 d_printf("allinfo <file>\n");
1604 name
= talloc_asprintf_append(name
, "%s", buf
);
1614 /****************************************************************************
1616 ****************************************************************************/
1618 static int do_put(const char *rname
, const char *lname
, bool reput
)
1620 TALLOC_CTX
*ctx
= talloc_tos();
1623 SMB_OFF_T start
= 0;
1625 struct timeval tp_start
;
1626 struct cli_state
*targetcli
;
1627 char *targetname
= NULL
;
1628 struct push_state state
;
1631 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
, &targetname
)) {
1632 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1636 GetTimeOfDay(&tp_start
);
1639 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1640 if (NT_STATUS_IS_OK(status
)) {
1641 if (!cli_qfileinfo(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1642 !NT_STATUS_IS_OK(cli_getattrE(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
))) {
1643 d_printf("getattrib: %s\n",cli_errstr(cli
));
1648 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1651 if (!NT_STATUS_IS_OK(status
)) {
1652 d_printf("%s opening remote file %s\n",cli_errstr(targetcli
),rname
);
1656 /* allow files to be piped into smbclient
1659 Note that in this case this function will exit(0) rather
1661 if (!strcmp(lname
, "-")) {
1663 /* size of file is not known */
1665 f
= x_fopen(lname
,O_RDONLY
, 0);
1667 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1668 d_printf("Error seeking local file\n");
1676 d_printf("Error opening local file %s\n",lname
);
1680 DEBUG(1,("putting file %s as %s ",lname
,
1683 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1688 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1690 if (!NT_STATUS_IS_OK(status
)) {
1691 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1694 if (!NT_STATUS_IS_OK(cli_close(targetcli
, fnum
))) {
1695 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1707 struct timeval tp_end
;
1710 GetTimeOfDay(&tp_end
);
1712 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1713 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1714 put_total_time_ms
+= this_time
;
1715 put_total_size
+= state
.nread
;
1717 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1718 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1719 put_total_size
/ (1.024*put_total_time_ms
)));
1730 /****************************************************************************
1732 ****************************************************************************/
1734 static int cmd_put(void)
1736 TALLOC_CTX
*ctx
= talloc_tos();
1741 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1746 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1747 d_printf("put <filename>\n");
1751 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1752 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1754 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1760 rname
= clean_name(ctx
, rname
);
1767 /* allow '-' to represent stdin
1768 jdblair, 24.jun.98 */
1769 if (!file_exist_stat(lname
,&st
) &&
1770 (strcmp(lname
,"-"))) {
1771 d_printf("%s does not exist\n",lname
);
1776 return do_put(rname
, lname
, false);
1779 /*************************************
1780 File list structure.
1781 *************************************/
1783 static struct file_list
{
1784 struct file_list
*prev
, *next
;
1789 /****************************************************************************
1790 Free a file_list structure.
1791 ****************************************************************************/
1793 static void free_file_list (struct file_list
*l_head
)
1795 struct file_list
*list
, *next
;
1797 for (list
= l_head
; list
; list
= next
) {
1799 DLIST_REMOVE(l_head
, list
);
1800 SAFE_FREE(list
->file_path
);
1805 /****************************************************************************
1806 Seek in a directory/file list until you get something that doesn't start with
1808 ****************************************************************************/
1810 static bool seek_list(struct file_list
*list
, char *name
)
1813 trim_string(list
->file_path
,"./","\n");
1814 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1823 /****************************************************************************
1824 Set the file selection mask.
1825 ****************************************************************************/
1827 static int cmd_select(void)
1829 TALLOC_CTX
*ctx
= talloc_tos();
1830 char *new_fs
= NULL
;
1831 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
1834 client_set_fileselection(new_fs
);
1836 client_set_fileselection("");
1841 /****************************************************************************
1842 Recursive file matching function act as find
1843 match must be always set to true when calling this function
1844 ****************************************************************************/
1846 static int file_find(struct file_list
**list
, const char *directory
,
1847 const char *expression
, bool match
)
1849 SMB_STRUCT_DIR
*dir
;
1850 struct file_list
*entry
;
1851 struct stat statbuf
;
1857 dir
= sys_opendir(directory
);
1861 while ((dname
= readdirname(dir
))) {
1862 if (!strcmp("..", dname
))
1864 if (!strcmp(".", dname
))
1867 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1872 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1874 ret
= stat(path
, &statbuf
);
1876 if (S_ISDIR(statbuf
.st_mode
)) {
1878 ret
= file_find(list
, path
, expression
, false);
1881 d_printf("file_find: cannot stat file %s\n", path
);
1890 entry
= SMB_MALLOC_P(struct file_list
);
1892 d_printf("Out of memory in file_find\n");
1896 entry
->file_path
= path
;
1897 entry
->isdir
= isdir
;
1898 DLIST_ADD(*list
, entry
);
1908 /****************************************************************************
1910 ****************************************************************************/
1912 static int cmd_mput(void)
1914 TALLOC_CTX
*ctx
= talloc_tos();
1917 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
1919 struct file_list
*temp_list
;
1920 char *quest
, *lname
, *rname
;
1924 ret
= file_find(&file_list
, ".", p
, true);
1926 free_file_list(file_list
);
1934 for (temp_list
= file_list
; temp_list
;
1935 temp_list
= temp_list
->next
) {
1938 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
1941 trim_string(lname
, "./", "/");
1943 /* check if it's a directory */
1944 if (temp_list
->isdir
) {
1945 /* if (!recurse) continue; */
1948 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
1951 if (prompt
&& !yesno(quest
)) { /* No */
1952 /* Skip the directory */
1953 lname
[strlen(lname
)-1] = '/';
1954 if (!seek_list(temp_list
, lname
))
1958 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1961 normalize_name(rname
);
1962 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
1964 DEBUG (0, ("Unable to make dir, skipping..."));
1965 /* Skip the directory */
1966 lname
[strlen(lname
)-1] = '/';
1967 if (!seek_list(temp_list
, lname
)) {
1975 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
1978 if (prompt
&& !yesno(quest
)) {
1985 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1990 normalize_name(rname
);
1992 do_put(rname
, lname
, false);
1994 free_file_list(file_list
);
2003 /****************************************************************************
2005 ****************************************************************************/
2007 static int do_cancel(int job
)
2009 if (cli_printjob_del(cli
, job
)) {
2010 d_printf("Job %d cancelled\n",job
);
2013 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2018 /****************************************************************************
2020 ****************************************************************************/
2022 static int cmd_cancel(void)
2024 TALLOC_CTX
*ctx
= talloc_tos();
2028 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2029 d_printf("cancel <jobid> ...\n");
2035 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2040 /****************************************************************************
2042 ****************************************************************************/
2044 static int cmd_print(void)
2046 TALLOC_CTX
*ctx
= talloc_tos();
2051 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2052 d_printf("print <filename>\n");
2056 rname
= talloc_strdup(ctx
, lname
);
2060 p
= strrchr_m(rname
,'/');
2062 rname
= talloc_asprintf(ctx
,
2067 if (strequal(lname
,"-")) {
2068 rname
= talloc_asprintf(ctx
,
2076 return do_put(rname
, lname
, false);
2079 /****************************************************************************
2080 Show a print queue entry.
2081 ****************************************************************************/
2083 static void queue_fn(struct print_job_info
*p
)
2085 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2088 /****************************************************************************
2090 ****************************************************************************/
2092 static int cmd_queue(void)
2094 cli_print_queue(cli
, queue_fn
);
2098 /****************************************************************************
2100 ****************************************************************************/
2102 static void do_del(file_info
*finfo
, const char *dir
)
2104 TALLOC_CTX
*ctx
= talloc_tos();
2107 mask
= talloc_asprintf(ctx
,
2116 if (finfo
->mode
& aDIR
) {
2121 if (!NT_STATUS_IS_OK(cli_unlink(finfo
->cli
, mask
, aSYSTEM
| aHIDDEN
))) {
2122 d_printf("%s deleting remote file %s\n",
2123 cli_errstr(finfo
->cli
),mask
);
2128 /****************************************************************************
2130 ****************************************************************************/
2132 static int cmd_del(void)
2134 TALLOC_CTX
*ctx
= talloc_tos();
2137 uint16 attribute
= aSYSTEM
| aHIDDEN
;
2143 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2147 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2148 d_printf("del <filename>\n");
2151 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2156 do_list(mask
,attribute
,do_del
,false,false);
2160 /****************************************************************************
2161 Wildcard delete some files.
2162 ****************************************************************************/
2164 static int cmd_wdel(void)
2166 TALLOC_CTX
*ctx
= talloc_tos();
2170 struct cli_state
*targetcli
;
2171 char *targetname
= NULL
;
2173 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2174 d_printf("wdel 0x<attrib> <wcard>\n");
2178 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2180 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2181 d_printf("wdel 0x<attrib> <wcard>\n");
2185 mask
= talloc_asprintf(ctx
, "%s%s",
2186 client_get_cur_dir(),
2192 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2193 d_printf("cmd_wdel %s: %s\n", mask
, cli_errstr(cli
));
2197 if (!NT_STATUS_IS_OK(cli_unlink(targetcli
, targetname
, attribute
))) {
2198 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli
),targetname
);
2203 /****************************************************************************
2204 ****************************************************************************/
2206 static int cmd_open(void)
2208 TALLOC_CTX
*ctx
= talloc_tos();
2211 char *targetname
= NULL
;
2212 struct cli_state
*targetcli
;
2213 uint16_t fnum
= (uint16_t)-1;
2215 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2216 d_printf("open <filename>\n");
2219 mask
= talloc_asprintf(ctx
,
2221 client_get_cur_dir(),
2227 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2228 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
2232 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli
, targetname
, 0,
2233 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2234 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
2235 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli
, targetname
, 0,
2237 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
2238 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2240 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2243 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2248 static int cmd_posix_encrypt(void)
2250 TALLOC_CTX
*ctx
= talloc_tos();
2251 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2253 if (cli
->use_kerberos
) {
2254 status
= cli_gss_smb_encryption_start(cli
);
2256 char *domain
= NULL
;
2258 char *password
= NULL
;
2260 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2261 d_printf("posix_encrypt domain user password\n");
2265 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2266 d_printf("posix_encrypt domain user password\n");
2270 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2271 d_printf("posix_encrypt domain user password\n");
2275 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2281 if (!NT_STATUS_IS_OK(status
)) {
2282 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2284 d_printf("encryption on\n");
2291 /****************************************************************************
2292 ****************************************************************************/
2294 static int cmd_posix_open(void)
2296 TALLOC_CTX
*ctx
= talloc_tos();
2299 char *targetname
= NULL
;
2300 struct cli_state
*targetcli
;
2304 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2305 d_printf("posix_open <filename> 0<mode>\n");
2308 mask
= talloc_asprintf(ctx
,
2310 client_get_cur_dir(),
2316 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2317 d_printf("posix_open <filename> 0<mode>\n");
2320 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2322 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2323 d_printf("posix_open %s: %s\n", mask
, cli_errstr(cli
));
2327 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
, &fnum
))) {
2328 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDONLY
, mode
, &fnum
))) {
2329 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2331 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2334 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2340 static int cmd_posix_mkdir(void)
2342 TALLOC_CTX
*ctx
= talloc_tos();
2345 char *targetname
= NULL
;
2346 struct cli_state
*targetcli
;
2349 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2350 d_printf("posix_mkdir <filename> 0<mode>\n");
2353 mask
= talloc_asprintf(ctx
,
2355 client_get_cur_dir(),
2361 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2362 d_printf("posix_mkdir <filename> 0<mode>\n");
2365 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2367 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2368 d_printf("posix_mkdir %s: %s\n", mask
, cli_errstr(cli
));
2372 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli
, targetname
, mode
))) {
2373 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2375 d_printf("posix_mkdir created directory %s\n", targetname
);
2380 static int cmd_posix_unlink(void)
2382 TALLOC_CTX
*ctx
= talloc_tos();
2385 char *targetname
= NULL
;
2386 struct cli_state
*targetcli
;
2388 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2389 d_printf("posix_unlink <filename>\n");
2392 mask
= talloc_asprintf(ctx
,
2394 client_get_cur_dir(),
2400 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2401 d_printf("posix_unlink %s: %s\n", mask
, cli_errstr(cli
));
2405 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli
, targetname
))) {
2406 d_printf("Failed to unlink file %s. %s\n", targetname
, cli_errstr(cli
));
2408 d_printf("posix_unlink deleted file %s\n", targetname
);
2414 static int cmd_posix_rmdir(void)
2416 TALLOC_CTX
*ctx
= talloc_tos();
2419 char *targetname
= NULL
;
2420 struct cli_state
*targetcli
;
2422 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2423 d_printf("posix_rmdir <filename>\n");
2426 mask
= talloc_asprintf(ctx
,
2428 client_get_cur_dir(),
2434 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2435 d_printf("posix_rmdir %s: %s\n", mask
, cli_errstr(cli
));
2439 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli
, targetname
))) {
2440 d_printf("Failed to unlink directory %s. %s\n", targetname
, cli_errstr(cli
));
2442 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2448 static int cmd_close(void)
2450 TALLOC_CTX
*ctx
= talloc_tos();
2454 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2455 d_printf("close <fnum>\n");
2460 /* We really should use the targetcli here.... */
2461 if (!NT_STATUS_IS_OK(cli_close(cli
, fnum
))) {
2462 d_printf("close %d: %s\n", fnum
, cli_errstr(cli
));
2468 static int cmd_posix(void)
2470 TALLOC_CTX
*ctx
= talloc_tos();
2471 uint16 major
, minor
;
2472 uint32 caplow
, caphigh
;
2475 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2476 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2480 if (!cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
, &caphigh
)) {
2481 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2485 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2487 caps
= talloc_strdup(ctx
, "");
2491 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2492 caps
= talloc_asprintf_append(caps
, "locks ");
2497 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2498 caps
= talloc_asprintf_append(caps
, "acls ");
2503 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2504 caps
= talloc_asprintf_append(caps
, "eas ");
2509 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2510 caps
= talloc_asprintf_append(caps
, "pathnames ");
2515 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2516 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2521 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2522 caps
= talloc_asprintf_append(caps
, "large_read ");
2527 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2528 caps
= talloc_asprintf_append(caps
, "large_write ");
2533 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2534 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2539 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2540 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2546 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2547 caps
[strlen(caps
)-1] = '\0';
2550 d_printf("Server supports CIFS capabilities %s\n", caps
);
2552 if (!cli_set_unix_extensions_capabilities(cli
, major
, minor
, caplow
, caphigh
)) {
2553 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli
));
2557 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2558 CLI_DIRSEP_CHAR
= '/';
2559 *CLI_DIRSEP_STR
= '/';
2560 client_set_cur_dir(CLI_DIRSEP_STR
);
2566 static int cmd_lock(void)
2568 TALLOC_CTX
*ctx
= talloc_tos();
2570 uint64_t start
, len
;
2571 enum brl_type lock_type
;
2574 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2575 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2580 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2581 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2585 if (*buf
== 'r' || *buf
== 'R') {
2586 lock_type
= READ_LOCK
;
2587 } else if (*buf
== 'w' || *buf
== 'W') {
2588 lock_type
= WRITE_LOCK
;
2590 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2594 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2595 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2599 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2601 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2602 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2606 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2608 if (!NT_STATUS_IS_OK(cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
))) {
2609 d_printf("lock failed %d: %s\n", fnum
, cli_errstr(cli
));
2615 static int cmd_unlock(void)
2617 TALLOC_CTX
*ctx
= talloc_tos();
2619 uint64_t start
, len
;
2622 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2623 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2628 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2629 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2633 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2635 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2636 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2640 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2642 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli
, fnum
, start
, len
))) {
2643 d_printf("unlock failed %d: %s\n", fnum
, cli_errstr(cli
));
2650 /****************************************************************************
2652 ****************************************************************************/
2654 static int cmd_rmdir(void)
2656 TALLOC_CTX
*ctx
= talloc_tos();
2659 char *targetname
= NULL
;
2660 struct cli_state
*targetcli
;
2662 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2663 d_printf("rmdir <dirname>\n");
2666 mask
= talloc_asprintf(ctx
,
2668 client_get_cur_dir(),
2674 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2675 d_printf("rmdir %s: %s\n", mask
, cli_errstr(cli
));
2679 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli
, targetname
))) {
2680 d_printf("%s removing remote directory file %s\n",
2681 cli_errstr(targetcli
),mask
);
2687 /****************************************************************************
2689 ****************************************************************************/
2691 static int cmd_link(void)
2693 TALLOC_CTX
*ctx
= talloc_tos();
2694 char *oldname
= NULL
;
2695 char *newname
= NULL
;
2698 char *targetname
= NULL
;
2699 struct cli_state
*targetcli
;
2701 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2702 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2703 d_printf("link <oldname> <newname>\n");
2706 oldname
= talloc_asprintf(ctx
,
2708 client_get_cur_dir(),
2713 newname
= talloc_asprintf(ctx
,
2715 client_get_cur_dir(),
2721 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
, &targetname
)) {
2722 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2726 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2727 d_printf("Server doesn't support UNIX CIFS calls.\n");
2731 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli
, targetname
, newname
))) {
2732 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
2738 /****************************************************************************
2740 ****************************************************************************/
2742 static int cmd_readlink(void)
2744 TALLOC_CTX
*ctx
= talloc_tos();
2747 char *targetname
= NULL
;
2748 char linkname
[PATH_MAX
+1];
2749 struct cli_state
*targetcli
;
2751 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2752 d_printf("readlink <name>\n");
2755 name
= talloc_asprintf(ctx
,
2757 client_get_cur_dir(),
2763 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
, &targetname
)) {
2764 d_printf("readlink %s: %s\n", name
, cli_errstr(cli
));
2768 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2769 d_printf("Server doesn't support UNIX CIFS calls.\n");
2773 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli
, name
,
2774 linkname
, PATH_MAX
+1))) {
2775 d_printf("%s readlink on file %s\n",
2776 cli_errstr(targetcli
), name
);
2780 d_printf("%s -> %s\n", name
, linkname
);
2786 /****************************************************************************
2788 ****************************************************************************/
2790 static int cmd_symlink(void)
2792 TALLOC_CTX
*ctx
= talloc_tos();
2793 char *oldname
= NULL
;
2794 char *newname
= NULL
;
2797 char *targetname
= NULL
;
2798 struct cli_state
*targetcli
;
2800 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2801 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2802 d_printf("symlink <oldname> <newname>\n");
2805 oldname
= talloc_asprintf(ctx
,
2807 client_get_cur_dir(),
2812 newname
= talloc_asprintf(ctx
,
2814 client_get_cur_dir(),
2820 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
, &targetname
)) {
2821 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2825 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2826 d_printf("Server doesn't support UNIX CIFS calls.\n");
2830 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli
, targetname
, newname
))) {
2831 d_printf("%s symlinking files (%s -> %s)\n",
2832 cli_errstr(targetcli
), newname
, targetname
);
2839 /****************************************************************************
2841 ****************************************************************************/
2843 static int cmd_chmod(void)
2845 TALLOC_CTX
*ctx
= talloc_tos();
2849 char *targetname
= NULL
;
2850 struct cli_state
*targetcli
;
2853 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2854 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2855 d_printf("chmod mode file\n");
2858 src
= talloc_asprintf(ctx
,
2860 client_get_cur_dir(),
2866 mode
= (mode_t
)strtol(buf
, NULL
, 8);
2868 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
2869 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
2873 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2874 d_printf("Server doesn't support UNIX CIFS calls.\n");
2878 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli
, targetname
, mode
))) {
2879 d_printf("%s chmod file %s 0%o\n",
2880 cli_errstr(targetcli
), src
, (unsigned int)mode
);
2887 static const char *filetype_to_str(mode_t mode
)
2889 if (S_ISREG(mode
)) {
2890 return "regular file";
2891 } else if (S_ISDIR(mode
)) {
2895 if (S_ISCHR(mode
)) {
2896 return "character device";
2900 if (S_ISBLK(mode
)) {
2901 return "block device";
2905 if (S_ISFIFO(mode
)) {
2910 if (S_ISLNK(mode
)) {
2911 return "symbolic link";
2915 if (S_ISSOCK(mode
)) {
2922 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
2931 static char *unix_mode_to_str(char *s
, mode_t m
)
2934 const char *str
= filetype_to_str(m
);
2950 *p
++ = str
[1] == 'y' ? 'l' : 's';
2957 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
2958 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
2959 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
2960 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
2961 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
2962 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
2963 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
2964 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
2965 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
2970 /****************************************************************************
2971 Utility function for UNIX getfacl.
2972 ****************************************************************************/
2974 static char *perms_to_string(fstring permstr
, unsigned char perms
)
2976 fstrcpy(permstr
, "---");
2977 if (perms
& SMB_POSIX_ACL_READ
) {
2980 if (perms
& SMB_POSIX_ACL_WRITE
) {
2983 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
2989 /****************************************************************************
2991 ****************************************************************************/
2993 static int cmd_getfacl(void)
2995 TALLOC_CTX
*ctx
= talloc_tos();
2998 char *targetname
= NULL
;
2999 struct cli_state
*targetcli
;
3000 uint16 major
, minor
;
3001 uint32 caplow
, caphigh
;
3002 char *retbuf
= NULL
;
3004 SMB_STRUCT_STAT sbuf
;
3005 uint16 num_file_acls
= 0;
3006 uint16 num_dir_acls
= 0;
3009 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3010 d_printf("getfacl filename\n");
3013 src
= talloc_asprintf(ctx
,
3015 client_get_cur_dir(),
3021 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3022 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3026 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3027 d_printf("Server doesn't support UNIX CIFS calls.\n");
3031 if (!cli_unix_extensions_version(targetcli
, &major
, &minor
,
3032 &caplow
, &caphigh
)) {
3033 d_printf("Can't get UNIX CIFS version from server.\n");
3037 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3038 d_printf("This server supports UNIX extensions "
3039 "but doesn't support POSIX ACLs.\n");
3043 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3044 d_printf("%s getfacl doing a stat on file %s\n",
3045 cli_errstr(targetcli
), src
);
3049 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
))) {
3050 d_printf("%s getfacl file %s\n",
3051 cli_errstr(targetcli
), src
);
3055 /* ToDo : Print out the ACL values. */
3056 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3057 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3058 src
, (unsigned int)CVAL(retbuf
,0) );
3062 num_file_acls
= SVAL(retbuf
,2);
3063 num_dir_acls
= SVAL(retbuf
,4);
3064 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3065 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3067 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3068 (unsigned int)rb_size
);
3072 d_printf("# file: %s\n", src
);
3073 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3075 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3076 d_printf("No acls found.\n");
3079 for (i
= 0; i
< num_file_acls
; i
++) {
3082 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3083 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3086 case SMB_POSIX_ACL_USER_OBJ
:
3089 case SMB_POSIX_ACL_USER
:
3090 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3091 d_printf("user:%u:", uorg
);
3093 case SMB_POSIX_ACL_GROUP_OBJ
:
3094 d_printf("group::");
3096 case SMB_POSIX_ACL_GROUP
:
3097 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3098 d_printf("group:%u:", uorg
);
3100 case SMB_POSIX_ACL_MASK
:
3103 case SMB_POSIX_ACL_OTHER
:
3104 d_printf("other::");
3107 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3108 src
, (unsigned int)tagtype
);
3113 d_printf("%s\n", perms_to_string(permstring
, perms
));
3116 for (i
= 0; i
< num_dir_acls
; i
++) {
3119 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3120 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3123 case SMB_POSIX_ACL_USER_OBJ
:
3124 d_printf("default:user::");
3126 case SMB_POSIX_ACL_USER
:
3127 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3128 d_printf("default:user:%u:", uorg
);
3130 case SMB_POSIX_ACL_GROUP_OBJ
:
3131 d_printf("default:group::");
3133 case SMB_POSIX_ACL_GROUP
:
3134 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3135 d_printf("default:group:%u:", uorg
);
3137 case SMB_POSIX_ACL_MASK
:
3138 d_printf("default:mask::");
3140 case SMB_POSIX_ACL_OTHER
:
3141 d_printf("default:other::");
3144 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3145 src
, (unsigned int)tagtype
);
3150 d_printf("%s\n", perms_to_string(permstring
, perms
));
3156 /****************************************************************************
3158 ****************************************************************************/
3160 static int cmd_stat(void)
3162 TALLOC_CTX
*ctx
= talloc_tos();
3165 char *targetname
= NULL
;
3166 struct cli_state
*targetcli
;
3168 SMB_STRUCT_STAT sbuf
;
3172 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3173 d_printf("stat file\n");
3176 src
= talloc_asprintf(ctx
,
3178 client_get_cur_dir(),
3184 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3185 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3189 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3190 d_printf("Server doesn't support UNIX CIFS calls.\n");
3194 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3195 d_printf("%s stat file %s\n",
3196 cli_errstr(targetcli
), src
);
3200 /* Print out the stat values. */
3201 d_printf("File: %s\n", src
);
3202 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3203 (double)sbuf
.st_ex_size
,
3204 (unsigned int)sbuf
.st_ex_blocks
,
3205 filetype_to_str(sbuf
.st_ex_mode
));
3207 #if defined(S_ISCHR) && defined(S_ISBLK)
3208 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3209 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3210 (double)sbuf
.st_ex_ino
,
3211 (unsigned int)sbuf
.st_ex_nlink
,
3212 unix_dev_major(sbuf
.st_ex_rdev
),
3213 unix_dev_minor(sbuf
.st_ex_rdev
));
3216 d_printf("Inode: %.0f\tLinks: %u\n",
3217 (double)sbuf
.st_ex_ino
,
3218 (unsigned int)sbuf
.st_ex_nlink
);
3220 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3221 ((int)sbuf
.st_ex_mode
& 0777),
3222 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3223 (unsigned int)sbuf
.st_ex_uid
,
3224 (unsigned int)sbuf
.st_ex_gid
);
3226 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3227 lt
= localtime(&tmp_time
);
3229 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3231 fstrcpy(mode_str
, "unknown");
3233 d_printf("Access: %s\n", mode_str
);
3235 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3236 lt
= localtime(&tmp_time
);
3238 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3240 fstrcpy(mode_str
, "unknown");
3242 d_printf("Modify: %s\n", mode_str
);
3244 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3245 lt
= localtime(&tmp_time
);
3247 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3249 fstrcpy(mode_str
, "unknown");
3251 d_printf("Change: %s\n", mode_str
);
3257 /****************************************************************************
3259 ****************************************************************************/
3261 static int cmd_chown(void)
3263 TALLOC_CTX
*ctx
= talloc_tos();
3267 char *buf
, *buf2
, *buf3
;
3268 struct cli_state
*targetcli
;
3269 char *targetname
= NULL
;
3271 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3272 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3273 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3274 d_printf("chown uid gid file\n");
3278 uid
= (uid_t
)atoi(buf
);
3279 gid
= (gid_t
)atoi(buf2
);
3281 src
= talloc_asprintf(ctx
,
3283 client_get_cur_dir(),
3288 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
) ) {
3289 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
3293 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3294 d_printf("Server doesn't support UNIX CIFS calls.\n");
3298 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli
, targetname
, uid
, gid
))) {
3299 d_printf("%s chown file %s uid=%d, gid=%d\n",
3300 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
3307 /****************************************************************************
3309 ****************************************************************************/
3311 static int cmd_rename(void)
3313 TALLOC_CTX
*ctx
= talloc_tos();
3316 struct cli_state
*targetcli
;
3320 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3321 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3322 d_printf("rename <src> <dest>\n");
3326 src
= talloc_asprintf(ctx
,
3328 client_get_cur_dir(),
3334 dest
= talloc_asprintf(ctx
,
3336 client_get_cur_dir(),
3342 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetsrc
)) {
3343 d_printf("rename %s: %s\n", src
, cli_errstr(cli
));
3347 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
, &targetdest
)) {
3348 d_printf("rename %s: %s\n", dest
, cli_errstr(cli
));
3352 if (!NT_STATUS_IS_OK(cli_rename(targetcli
, targetsrc
, targetdest
))) {
3353 d_printf("%s renaming files %s -> %s \n",
3354 cli_errstr(targetcli
),
3363 /****************************************************************************
3364 Print the volume name.
3365 ****************************************************************************/
3367 static int cmd_volume(void)
3373 if (!cli_get_fs_volume_info(cli
, volname
, &serial_num
, &create_date
)) {
3374 d_printf("Errr %s getting volume info\n",cli_errstr(cli
));
3378 d_printf("Volume: |%s| serial number 0x%x\n",
3379 volname
, (unsigned int)serial_num
);
3383 /****************************************************************************
3384 Hard link files using the NT call.
3385 ****************************************************************************/
3387 static int cmd_hardlink(void)
3389 TALLOC_CTX
*ctx
= talloc_tos();
3392 struct cli_state
*targetcli
;
3395 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3396 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3397 d_printf("hardlink <src> <dest>\n");
3401 src
= talloc_asprintf(ctx
,
3403 client_get_cur_dir(),
3409 dest
= talloc_asprintf(ctx
,
3411 client_get_cur_dir(),
3417 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3418 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
3422 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli
, targetname
, dest
))) {
3423 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
3430 /****************************************************************************
3431 Toggle the prompt flag.
3432 ****************************************************************************/
3434 static int cmd_prompt(void)
3437 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3441 /****************************************************************************
3442 Set the newer than time.
3443 ****************************************************************************/
3445 static int cmd_newer(void)
3447 TALLOC_CTX
*ctx
= talloc_tos();
3450 SMB_STRUCT_STAT sbuf
;
3452 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3453 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
3454 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3455 DEBUG(1,("Getting files newer than %s",
3456 time_to_asc(newer_than
)));
3461 if (ok
&& newer_than
== 0) {
3462 d_printf("Error setting newer-than time\n");
3469 /****************************************************************************
3470 Set the archive level.
3471 ****************************************************************************/
3473 static int cmd_archive(void)
3475 TALLOC_CTX
*ctx
= talloc_tos();
3478 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3479 archive_level
= atoi(buf
);
3481 d_printf("Archive level is %d\n",archive_level
);
3487 /****************************************************************************
3488 Toggle the lowercaseflag.
3489 ****************************************************************************/
3491 static int cmd_lowercase(void)
3493 lowercase
= !lowercase
;
3494 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3498 /****************************************************************************
3499 Toggle the case sensitive flag.
3500 ****************************************************************************/
3502 static int cmd_setcase(void)
3504 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3506 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3507 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3512 /****************************************************************************
3513 Toggle the showacls flag.
3514 ****************************************************************************/
3516 static int cmd_showacls(void)
3518 showacls
= !showacls
;
3519 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3524 /****************************************************************************
3525 Toggle the recurse flag.
3526 ****************************************************************************/
3528 static int cmd_recurse(void)
3531 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3535 /****************************************************************************
3536 Toggle the translate flag.
3537 ****************************************************************************/
3539 static int cmd_translate(void)
3541 translation
= !translation
;
3542 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3543 translation
?"on":"off"));
3547 /****************************************************************************
3549 ****************************************************************************/
3551 static int cmd_lcd(void)
3553 TALLOC_CTX
*ctx
= talloc_tos();
3557 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3558 if (chdir(buf
) == -1) {
3559 d_printf("chdir to %s failed (%s)\n",
3560 buf
, strerror(errno
));
3563 d
= TALLOC_ARRAY(ctx
, char, PATH_MAX
+1);
3567 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
3571 /****************************************************************************
3572 Get a file restarting at end of local file.
3573 ****************************************************************************/
3575 static int cmd_reget(void)
3577 TALLOC_CTX
*ctx
= talloc_tos();
3578 char *local_name
= NULL
;
3579 char *remote_name
= NULL
;
3583 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3588 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
3589 d_printf("reget <filename>\n");
3592 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
3596 remote_name
= clean_name(ctx
,remote_name
);
3602 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
3607 return do_get(remote_name
, local_name
, true);
3610 /****************************************************************************
3611 Put a file restarting at end of local file.
3612 ****************************************************************************/
3614 static int cmd_reput(void)
3616 TALLOC_CTX
*ctx
= talloc_tos();
3617 char *local_name
= NULL
;
3618 char *remote_name
= NULL
;
3622 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3627 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
3628 d_printf("reput <filename>\n");
3632 if (!file_exist_stat(local_name
, &st
)) {
3633 d_printf("%s does not exist\n", local_name
);
3637 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
3638 remote_name
= talloc_asprintf_append(remote_name
,
3641 remote_name
= talloc_asprintf_append(remote_name
,
3648 remote_name
= clean_name(ctx
, remote_name
);
3653 return do_put(remote_name
, local_name
, true);
3656 /****************************************************************************
3658 ****************************************************************************/
3660 static void browse_fn(const char *name
, uint32 m
,
3661 const char *comment
, void *state
)
3663 const char *typestr
= "";
3666 case STYPE_DISKTREE
:
3670 typestr
= "Printer";
3679 /* FIXME: If the remote machine returns non-ascii characters
3680 in any of these fields, they can corrupt the output. We
3681 should remove them. */
3683 d_printf("\t%-15s %-10.10s%s\n",
3684 name
,typestr
,comment
);
3686 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
3690 static bool browse_host_rpc(bool sort
)
3693 struct rpc_pipe_client
*pipe_hnd
;
3694 TALLOC_CTX
*frame
= talloc_stackframe();
3696 struct srvsvc_NetShareInfoCtr info_ctr
;
3697 struct srvsvc_NetShareCtr1 ctr1
;
3698 uint32_t resume_handle
= 0;
3699 uint32_t total_entries
= 0;
3702 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
3705 if (!NT_STATUS_IS_OK(status
)) {
3706 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3707 nt_errstr(status
)));
3712 ZERO_STRUCT(info_ctr
);
3716 info_ctr
.ctr
.ctr1
= &ctr1
;
3718 status
= rpccli_srvsvc_NetShareEnumAll(pipe_hnd
, frame
,
3726 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
3727 TALLOC_FREE(pipe_hnd
);
3732 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
3733 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
3734 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
3737 TALLOC_FREE(pipe_hnd
);
3742 /****************************************************************************
3743 Try and browse available connections on a host.
3744 ****************************************************************************/
3746 static bool browse_host(bool sort
)
3750 d_printf("\n\tSharename Type Comment\n");
3751 d_printf("\t--------- ---- -------\n");
3754 if (browse_host_rpc(sort
)) {
3758 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
3759 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
3764 /****************************************************************************
3766 ****************************************************************************/
3768 static void server_fn(const char *name
, uint32 m
,
3769 const char *comment
, void *state
)
3773 d_printf("\t%-16s %s\n", name
, comment
);
3775 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
3779 /****************************************************************************
3780 Try and browse available connections on a host.
3781 ****************************************************************************/
3783 static bool list_servers(const char *wk_grp
)
3787 if (!cli
->server_domain
)
3791 d_printf("\n\tServer Comment\n");
3792 d_printf("\t--------- -------\n");
3794 fstrcpy( state
, "Server" );
3795 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
3799 d_printf("\n\tWorkgroup Master\n");
3800 d_printf("\t--------- -------\n");
3803 fstrcpy( state
, "Workgroup" );
3804 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
3809 /****************************************************************************
3810 Print or set current VUID
3811 ****************************************************************************/
3813 static int cmd_vuid(void)
3815 TALLOC_CTX
*ctx
= talloc_tos();
3818 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3819 d_printf("Current VUID is %d\n", cli
->vuid
);
3823 cli
->vuid
= atoi(buf
);
3827 /****************************************************************************
3828 Setup a new VUID, by issuing a session setup
3829 ****************************************************************************/
3831 static int cmd_logon(void)
3833 TALLOC_CTX
*ctx
= talloc_tos();
3834 char *l_username
, *l_password
;
3836 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
3837 d_printf("logon <username> [<password>]\n");
3841 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
3842 char *pass
= getpass("Password: ");
3844 l_password
= talloc_strdup(ctx
,pass
);
3851 if (!NT_STATUS_IS_OK(cli_session_setup(cli
, l_username
,
3852 l_password
, strlen(l_password
),
3853 l_password
, strlen(l_password
),
3855 d_printf("session setup failed: %s\n", cli_errstr(cli
));
3859 d_printf("Current VUID is %d\n", cli
->vuid
);
3864 /****************************************************************************
3865 list active connections
3866 ****************************************************************************/
3868 static int cmd_list_connect(void)
3870 cli_cm_display(cli
);
3874 /****************************************************************************
3875 display the current active client connection
3876 ****************************************************************************/
3878 static int cmd_show_connect( void )
3880 TALLOC_CTX
*ctx
= talloc_tos();
3881 struct cli_state
*targetcli
;
3884 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, client_get_cur_dir(),
3885 &targetcli
, &targetpath
) ) {
3886 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
3890 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
3894 /****************************************************************************
3896 ***************************************************************************/
3898 int cmd_iosize(void)
3900 TALLOC_CTX
*ctx
= talloc_tos();
3904 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3906 d_printf("iosize <n> or iosize 0x<n>. "
3907 "Minimum is 16384 (0x4000), "
3908 "max is 16776960 (0xFFFF00)\n");
3910 d_printf("iosize <n> or iosize 0x<n>. "
3911 "(Encrypted connection) ,"
3912 "Minimum is 16384 (0x4000), "
3913 "max is 130048 (0x1FC00)\n");
3918 iosize
= strtol(buf
,NULL
,0);
3919 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
3920 d_printf("iosize out of range for encrypted "
3921 "connection (min = 16384 (0x4000), "
3922 "max = 130048 (0x1FC00)");
3924 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
3925 d_printf("iosize out of range (min = 16384 (0x4000), "
3926 "max = 16776960 (0xFFFF00)");
3930 io_bufsize
= iosize
;
3931 d_printf("iosize is now %d\n", io_bufsize
);
3936 /* Some constants for completing filename arguments */
3938 #define COMPL_NONE 0 /* No completions */
3939 #define COMPL_REMOTE 1 /* Complete remote filename */
3940 #define COMPL_LOCAL 2 /* Complete local filename */
3942 /* This defines the commands supported by this client.
3943 * NOTE: The "!" must be the last one in the list because it's fn pointer
3944 * field is NULL, and NULL in that field is used in process_tok()
3945 * (below) to indicate the end of the list. crh
3950 const char *description
;
3951 char compl_args
[2]; /* Completion argument info */
3953 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3954 {"allinfo",cmd_allinfo
,"<file> show all available info",
3955 {COMPL_NONE
,COMPL_NONE
}},
3956 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
3957 {"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
}},
3958 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
3959 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
3960 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
3961 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
3962 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
3963 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
3964 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
3965 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3966 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3967 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3968 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
3969 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3970 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3971 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
3972 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3973 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3974 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
3975 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
3976 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
3977 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3978 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3979 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
3980 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3981 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3982 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
3983 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3984 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3985 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3986 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
3987 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3988 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
3989 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
3990 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
3991 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
3992 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3993 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3994 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3995 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3996 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
3997 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3998 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3999 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4000 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4001 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4002 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4003 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4004 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4005 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4006 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4007 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4008 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4009 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4010 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4011 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4012 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4013 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
4014 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4015 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4016 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4017 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4018 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4019 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4020 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4021 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4022 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4023 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4024 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4025 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4027 /* Yes, this must be here, see crh's comment above. */
4028 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4029 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4032 /*******************************************************************
4033 Lookup a command string in the list of commands, including
4035 ******************************************************************/
4037 static int process_tok(char *tok
)
4039 int i
= 0, matches
= 0;
4041 int tok_len
= strlen(tok
);
4043 while (commands
[i
].fn
!= NULL
) {
4044 if (strequal(commands
[i
].name
,tok
)) {
4048 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4057 else if (matches
== 1)
4063 /****************************************************************************
4065 ****************************************************************************/
4067 static int cmd_help(void)
4069 TALLOC_CTX
*ctx
= talloc_tos();
4073 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4074 if ((i
= process_tok(buf
)) >= 0)
4075 d_printf("HELP %s:\n\t%s\n\n",
4076 commands
[i
].name
,commands
[i
].description
);
4078 while (commands
[i
].description
) {
4079 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4080 d_printf("%-15s",commands
[i
].name
);
4089 /****************************************************************************
4090 Process a -c command string.
4091 ****************************************************************************/
4093 static int process_command_string(const char *cmd_in
)
4095 TALLOC_CTX
*ctx
= talloc_tos();
4096 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4102 /* establish the connection if not already */
4105 cli
= cli_cm_open(talloc_tos(), NULL
,
4106 have_ip
? dest_ss_str
: desthost
,
4109 max_protocol
, port
, name_type
);
4115 while (cmd
[0] != '\0') {
4121 if ((p
= strchr_m(cmd
, ';')) == 0) {
4130 /* and get the first part of the command */
4132 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4136 if ((i
= process_tok(tok
)) >= 0) {
4137 rc
= commands
[i
].fn();
4138 } else if (i
== -2) {
4139 d_printf("%s: command abbreviation ambiguous\n",tok
);
4141 d_printf("%s: command not found\n",tok
);
4148 #define MAX_COMPLETIONS 100
4156 } completion_remote_t
;
4158 static void completion_remote_filter(const char *mnt
,
4163 completion_remote_t
*info
= (completion_remote_t
*)state
;
4165 if ((info
->count
< MAX_COMPLETIONS
- 1) &&
4166 (strncmp(info
->text
, f
->name
, info
->len
) == 0) &&
4167 (strcmp(f
->name
, ".") != 0) &&
4168 (strcmp(f
->name
, "..") != 0)) {
4169 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
4170 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4172 TALLOC_CTX
*ctx
= talloc_stackframe();
4175 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4180 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4185 if (f
->mode
& aDIR
) {
4186 tmp
= talloc_asprintf_append(tmp
, "%s", CLI_DIRSEP_STR
);
4192 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4195 if (info
->matches
[info
->count
] == NULL
) {
4198 if (f
->mode
& aDIR
) {
4199 smb_readline_ca_char(0);
4201 if (info
->count
== 1) {
4202 info
->samelen
= strlen(info
->matches
[info
->count
]);
4204 while (strncmp(info
->matches
[info
->count
],
4205 info
->matches
[info
->count
-1],
4206 info
->samelen
) != 0) {
4214 static char **remote_completion(const char *text
, int len
)
4216 TALLOC_CTX
*ctx
= talloc_stackframe();
4217 char *dirmask
= NULL
;
4218 char *targetpath
= NULL
;
4219 struct cli_state
*targetcli
= NULL
;
4221 completion_remote_t info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4223 /* can't have non-static intialisation on Sun CC, so do it
4229 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4230 if (!info
.matches
) {
4236 * We're leaving matches[0] free to fill it later with the text to
4237 * display: Either the one single match or the longest common subset
4240 info
.matches
[0] = NULL
;
4243 for (i
= len
-1; i
>= 0; i
--) {
4244 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4249 info
.text
= text
+i
+1;
4250 info
.samelen
= info
.len
= len
-i
-1;
4253 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4254 if (!info
.dirmask
) {
4257 strncpy(info
.dirmask
, text
, i
+1);
4258 info
.dirmask
[i
+1] = 0;
4259 dirmask
= talloc_asprintf(ctx
,
4261 client_get_cur_dir(),
4265 info
.dirmask
= SMB_STRDUP("");
4266 if (!info
.dirmask
) {
4269 dirmask
= talloc_asprintf(ctx
,
4271 client_get_cur_dir());
4277 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
, &targetpath
)) {
4280 if (cli_list(targetcli
, targetpath
, aDIR
| aSYSTEM
| aHIDDEN
,
4281 completion_remote_filter
, (void *)&info
) < 0) {
4285 if (info
.count
== 1) {
4287 * No matches at all, NULL indicates there is nothing
4289 SAFE_FREE(info
.matches
[0]);
4290 SAFE_FREE(info
.matches
);
4295 if (info
.count
== 2) {
4297 * Exactly one match in matches[1], indicate this is the one
4300 info
.matches
[0] = info
.matches
[1];
4301 info
.matches
[1] = NULL
;
4304 return info
.matches
;
4308 * We got more than one possible match, set the result to the maximum
4312 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4313 info
.matches
[info
.count
] = NULL
;
4314 return info
.matches
;
4317 for (i
= 0; i
< info
.count
; i
++) {
4318 SAFE_FREE(info
.matches
[i
]);
4320 SAFE_FREE(info
.matches
);
4321 SAFE_FREE(info
.dirmask
);
4326 static char **completion_fn(const char *text
, int start
, int end
)
4328 smb_readline_ca_char(' ');
4331 const char *buf
, *sp
;
4335 buf
= smb_readline_get_line_buffer();
4339 sp
= strchr(buf
, ' ');
4343 for (i
= 0; commands
[i
].name
; i
++) {
4344 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4345 (commands
[i
].name
[sp
- buf
] == 0)) {
4349 if (commands
[i
].name
== NULL
)
4355 if (sp
== (buf
+ start
))
4356 compl_type
= commands
[i
].compl_args
[0];
4358 compl_type
= commands
[i
].compl_args
[1];
4360 if (compl_type
== COMPL_REMOTE
)
4361 return remote_completion(text
, end
- start
);
4362 else /* fall back to local filename completion */
4366 int i
, len
, samelen
= 0, count
=1;
4368 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4375 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4376 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4377 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4378 if (!matches
[count
])
4381 samelen
= strlen(matches
[count
]);
4383 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4390 case 0: /* should never happen */
4394 matches
[0] = SMB_STRDUP(matches
[1]);
4397 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4400 strncpy(matches
[0], matches
[1], samelen
);
4401 matches
[0][samelen
] = 0;
4403 matches
[count
] = NULL
;
4407 for (i
= 0; i
< count
; i
++)
4415 static bool finished
;
4417 /****************************************************************************
4418 Make sure we swallow keepalives during idle time.
4419 ****************************************************************************/
4421 static void readline_callback(void)
4424 struct timeval timeout
;
4425 static time_t last_t
;
4441 FD_SET(cli
->fd
,&fds
);
4444 timeout
.tv_usec
= 0;
4445 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
4447 /* We deliberately use receive_smb_raw instead of
4448 client_receive_smb as we want to receive
4449 session keepalives and then drop them here.
4451 if (FD_ISSET(cli
->fd
,&fds
)) {
4455 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4457 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4459 if (!NT_STATUS_IS_OK(status
)) {
4460 DEBUG(0, ("Read from server failed, maybe it closed "
4461 "the connection\n"));
4464 smb_readline_done();
4465 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4466 set_smb_read_error(&cli
->smb_rw_error
,
4471 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4472 set_smb_read_error(&cli
->smb_rw_error
,
4477 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4480 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4481 DEBUG(0, ("Read from server "
4482 "returned unexpected packet!\n"));
4489 /* Ping the server to keep the connection alive using SMBecho. */
4492 unsigned char garbage
[16];
4493 memset(garbage
, 0xf0, sizeof(garbage
));
4494 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4496 if (!NT_STATUS_IS_OK(status
)) {
4497 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4498 "the connection\n"));
4500 smb_readline_done();
4505 /****************************************************************************
4506 Process commands on stdin.
4507 ****************************************************************************/
4509 static int process_stdin(void)
4514 TALLOC_CTX
*frame
= talloc_stackframe();
4516 char *the_prompt
= NULL
;
4520 /* display a prompt */
4521 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
4525 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
4526 SAFE_FREE(the_prompt
);
4532 /* special case - first char is ! */
4534 if (system(line
+ 1) == -1) {
4535 d_printf("system() command %s failed.\n",
4543 /* and get the first part of the command */
4545 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
4551 if ((i
= process_tok(tok
)) >= 0) {
4552 rc
= commands
[i
].fn();
4553 } else if (i
== -2) {
4554 d_printf("%s: command abbreviation ambiguous\n",tok
);
4556 d_printf("%s: command not found\n",tok
);
4564 /****************************************************************************
4565 Process commands from the client.
4566 ****************************************************************************/
4568 static int process(const char *base_directory
)
4572 cli
= cli_cm_open(talloc_tos(), NULL
,
4573 have_ip
? dest_ss_str
: desthost
,
4574 service
, auth_info
, true, smb_encrypt
,
4575 max_protocol
, port
, name_type
);
4580 if (base_directory
&& *base_directory
) {
4581 rc
= do_cd(base_directory
);
4589 rc
= process_command_string(cmdstr
);
4598 /****************************************************************************
4600 ****************************************************************************/
4602 static int do_host_query(const char *query_host
)
4604 cli
= cli_cm_open(talloc_tos(), NULL
,
4605 query_host
, "IPC$", auth_info
, true, smb_encrypt
,
4606 max_protocol
, port
, name_type
);
4612 /* Ensure that the host can do IPv4 */
4614 if (!interpret_addr(query_host
)) {
4615 struct sockaddr_storage ss
;
4616 if (interpret_string_addr(&ss
, query_host
, 0) &&
4617 (ss
.ss_family
!= AF_INET
)) {
4618 d_printf("%s is an IPv6 address -- no workgroup available\n",
4626 /* Workgroups simply don't make sense over anything
4627 else but port 139... */
4630 cli
= cli_cm_open(talloc_tos(), NULL
,
4631 query_host
, "IPC$", auth_info
, true, smb_encrypt
,
4632 max_protocol
, 139, name_type
);
4636 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4640 list_servers(lp_workgroup());
4647 /****************************************************************************
4648 Handle a tar operation.
4649 ****************************************************************************/
4651 static int do_tar_op(const char *base_directory
)
4655 /* do we already have a connection? */
4657 cli
= cli_cm_open(talloc_tos(), NULL
,
4658 have_ip
? dest_ss_str
: desthost
,
4659 service
, auth_info
, true, smb_encrypt
,
4660 max_protocol
, port
, name_type
);
4667 if (base_directory
&& *base_directory
) {
4668 ret
= do_cd(base_directory
);
4682 /****************************************************************************
4683 Handle a message operation.
4684 ****************************************************************************/
4686 static int do_message_op(struct user_auth_info
*a_info
)
4688 struct sockaddr_storage ss
;
4689 struct nmb_name called
, calling
;
4690 fstring server_name
;
4691 char name_type_hex
[10];
4695 make_nmb_name(&calling
, calling_name
, 0x0);
4696 make_nmb_name(&called
, desthost
, name_type
);
4698 fstrcpy(server_name
, desthost
);
4699 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
4700 fstrcat(server_name
, name_type_hex
);
4706 /* we can only do messages over port 139 (to windows clients at least) */
4708 msg_port
= port
? port
: 139;
4710 if (!(cli
=cli_initialise())) {
4711 d_printf("Connection to %s failed\n", desthost
);
4714 cli_set_port(cli
, msg_port
);
4716 status
= cli_connect(cli
, server_name
, &ss
);
4717 if (!NT_STATUS_IS_OK(status
)) {
4718 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
4722 if (!cli_session_request(cli
, &calling
, &called
)) {
4723 d_printf("session request failed\n");
4728 send_message(get_cmdline_auth_info_username(a_info
));
4734 /****************************************************************************
4736 ****************************************************************************/
4738 int main(int argc
,char *argv
[])
4740 char *base_directory
= NULL
;
4742 char *query_host
= NULL
;
4743 bool message
= false;
4744 static const char *new_name_resolve_order
= NULL
;
4748 fstring new_workgroup
;
4749 bool tar_opt
= false;
4750 bool service_opt
= false;
4751 struct poptOption long_options
[] = {
4754 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4755 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
4756 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
4757 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
4758 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
4759 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
4760 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4761 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
4762 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
4763 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
4764 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
4765 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
4766 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
4768 POPT_COMMON_CONNECTION
4769 POPT_COMMON_CREDENTIALS
4772 TALLOC_CTX
*frame
= talloc_stackframe();
4774 if (!client_set_cur_dir("\\")) {
4778 /* initialize the workgroup name so we can determine whether or
4779 not it was set by a command line option */
4781 set_global_myworkgroup( "" );
4782 set_global_myname( "" );
4784 /* set default debug level to 1 regardless of what smb.conf sets */
4785 setup_logging( "smbclient", true );
4786 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
4787 if ((dbf
= x_fdup(x_stderr
))) {
4788 x_setbuf( dbf
, NULL
);
4793 auth_info
= user_auth_info_init(frame
);
4794 if (auth_info
== NULL
) {
4797 popt_common_set_auth_info(auth_info
);
4800 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
4801 poptSetOtherOptionHelp(pc
, "service <password>");
4803 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4805 while ((opt
= poptGetNextOpt(pc
)) != -1) {
4807 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4808 /* I see no other way to keep things sane --SSS */
4809 if (tar_opt
== true) {
4810 while (poptPeekArg(pc
)) {
4816 /* if the service has not yet been specified lets see if it is available in the popt stack */
4817 if (!service_opt
&& poptPeekArg(pc
)) {
4818 service
= talloc_strdup(frame
, poptGetArg(pc
));
4825 /* if the service has already been retrieved then check if we have also a password */
4827 && (!get_cmdline_auth_info_got_pass(auth_info
))
4828 && poptPeekArg(pc
)) {
4829 set_cmdline_auth_info_password(auth_info
,
4835 /* Messages are sent to NetBIOS name type 0x3
4836 * (Messenger Service). Make sure we default
4837 * to port 139 instead of port 445. srl,crh
4840 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
4850 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
4854 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
4862 display_set_stderr();
4866 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
4872 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
4875 /* We must use old option processing for this. Find the
4876 * position of the -T option in the raw argv[]. */
4879 for (i
= 1; i
< argc
; i
++) {
4880 if (strncmp("-T", argv
[i
],2)==0)
4884 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
4885 poptPrintUsage(pc
, stderr
, 0);
4889 /* this must be the last option, mark we have parsed it so that we know we have */
4893 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
4894 if (!base_directory
) {
4905 return(do_smb_browse());
4910 /* We may still have some leftovers after the last popt option has been called */
4911 if (tar_opt
== true) {
4912 while (poptPeekArg(pc
)) {
4918 /* if the service has not yet been specified lets see if it is available in the popt stack */
4919 if (!service_opt
&& poptPeekArg(pc
)) {
4920 service
= talloc_strdup(frame
,poptGetArg(pc
));
4927 /* if the service has already been retrieved then check if we have also a password */
4929 && !get_cmdline_auth_info_got_pass(auth_info
)
4930 && poptPeekArg(pc
)) {
4931 set_cmdline_auth_info_password(auth_info
,
4936 * Don't load debug level from smb.conf. It should be
4937 * set by cmdline arg or remain default (0)
4939 AllowDebugChange
= false;
4941 /* save the workgroup...
4943 FIXME!! do we need to do this for other options as well
4944 (or maybe a generic way to keep lp_load() from overwriting
4947 fstrcpy( new_workgroup
, lp_workgroup() );
4948 calling_name
= talloc_strdup(frame
, global_myname() );
4949 if (!calling_name
) {
4953 if ( override_logfile
)
4954 setup_logging( lp_logfile(), false );
4956 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4957 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
4958 argv
[0], get_dyn_CONFIGFILE());
4961 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
4962 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
4968 if (service_opt
&& service
) {
4971 /* Convert any '/' characters in the service name to '\' characters */
4972 string_replace(service
, '/','\\');
4973 if (count_chars(service
,'\\') < 3) {
4974 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
4975 poptPrintUsage(pc
, stderr
, 0);
4978 /* Remove trailing slashes */
4979 len
= strlen(service
);
4980 while(len
> 0 && service
[len
- 1] == '\\') {
4982 service
[len
] = '\0';
4986 if ( strlen(new_workgroup
) != 0 ) {
4987 set_global_myworkgroup( new_workgroup
);
4990 if ( strlen(calling_name
) != 0 ) {
4991 set_global_myname( calling_name
);
4993 TALLOC_FREE(calling_name
);
4994 calling_name
= talloc_strdup(frame
, global_myname() );
4997 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
4998 if (!init_names()) {
4999 fprintf(stderr
, "init_names() failed\n");
5003 if(new_name_resolve_order
)
5004 lp_set_name_resolve_order(new_name_resolve_order
);
5006 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5007 poptPrintUsage(pc
, stderr
, 0);
5011 poptFreeContext(pc
);
5013 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5015 /* Ensure we have a password (or equivalent). */
5016 set_cmdline_auth_info_getpass(auth_info
);
5020 process_command_string(cmdstr
);
5021 return do_tar_op(base_directory
);
5024 if (query_host
&& *query_host
) {
5025 char *qhost
= query_host
;
5028 while (*qhost
== '\\' || *qhost
== '/')
5031 if ((slash
= strchr_m(qhost
, '/'))
5032 || (slash
= strchr_m(qhost
, '\\'))) {
5036 if ((p
=strchr_m(qhost
, '#'))) {
5039 sscanf(p
, "%x", &name_type
);
5042 return do_host_query(qhost
);
5046 return do_message_op(auth_info
);
5049 if (process(base_directory
)) {