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 extern int max_protocol
;
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
;
82 #define SEPARATORS " \t\n\r"
84 static bool abort_mget
= true;
87 SMB_BIG_UINT get_total_size
= 0;
88 unsigned int get_total_time_ms
= 0;
89 static SMB_BIG_UINT put_total_size
= 0;
90 static unsigned int put_total_time_ms
= 0;
93 static double dir_total
;
95 /* encrypted state. */
96 static bool smb_encrypt
;
98 /* root cli_state connection */
100 struct cli_state
*cli
;
102 static char CLI_DIRSEP_CHAR
= '\\';
103 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
105 /* Accessor functions for directory paths. */
106 static char *fileselection
;
107 static const char *client_get_fileselection(void)
110 return fileselection
;
115 static const char *client_set_fileselection(const char *new_fs
)
117 SAFE_FREE(fileselection
);
119 fileselection
= SMB_STRDUP(new_fs
);
121 return client_get_fileselection();
125 static const char *client_get_cwd(void)
130 return CLI_DIRSEP_STR
;
133 static const char *client_set_cwd(const char *new_cwd
)
137 cwd
= SMB_STRDUP(new_cwd
);
139 return client_get_cwd();
142 static char *cur_dir
;
143 const char *client_get_cur_dir(void)
148 return CLI_DIRSEP_STR
;
151 const char *client_set_cur_dir(const char *newdir
)
155 cur_dir
= SMB_STRDUP(newdir
);
157 return client_get_cur_dir();
160 /****************************************************************************
161 Write to a local file with CR/LF->LF translation if appropriate. Return the
162 number taken from the buffer. This may not equal the number written.
163 ****************************************************************************/
165 static int writefile(int f
, char *b
, int n
)
175 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
178 if (write(f
, b
, 1) != 1) {
188 /****************************************************************************
189 Read from a file with LF->CR/LF translation if appropriate. Return the
190 number read. read approx n bytes.
191 ****************************************************************************/
193 static int readfile(char *b
, int n
, XFILE
*f
)
199 return x_fread(b
,1,n
,f
);
202 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
203 if ((c
= x_getc(f
)) == EOF
) {
207 if (c
== '\n') { /* change all LFs to CR/LF */
217 /****************************************************************************
219 ****************************************************************************/
221 static void send_message(void)
226 if (!cli_message_start(cli
, desthost
,
227 get_cmdline_auth_info_username(), &grp_id
)) {
228 d_printf("message start: %s\n", cli_errstr(cli
));
233 d_printf("Connected. Type your message, ending it with a Control-D\n");
235 while (!feof(stdin
) && total_len
< 1600) {
236 int maxlen
= MIN(1600 - total_len
,127);
243 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
249 if ((total_len
> 0) && (strlen(msg
) == 0)) {
253 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
254 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
261 if (total_len
>= 1600)
262 d_printf("the message was truncated to 1600 bytes\n");
264 d_printf("sent %d bytes\n",total_len
);
266 if (!cli_message_end(cli
, grp_id
)) {
267 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
272 /****************************************************************************
273 Check the space on a device.
274 ****************************************************************************/
276 static int do_dskattr(void)
278 int total
, bsize
, avail
;
279 struct cli_state
*targetcli
= NULL
;
280 char *targetpath
= NULL
;
281 TALLOC_CTX
*ctx
= talloc_tos();
283 if ( !cli_resolve_path(ctx
, "", cli
, client_get_cur_dir(), &targetcli
, &targetpath
)) {
284 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
288 if (!cli_dskattr(targetcli
, &bsize
, &total
, &avail
)) {
289 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli
));
293 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
294 total
, bsize
, avail
);
299 /****************************************************************************
301 ****************************************************************************/
303 static int cmd_pwd(void)
305 d_printf("Current directory is %s",service
);
306 d_printf("%s\n",client_get_cur_dir());
310 /****************************************************************************
311 Ensure name has correct directory separators.
312 ****************************************************************************/
314 static void normalize_name(char *newdir
)
316 if (!(cli
->posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
317 string_replace(newdir
,'/','\\');
321 /****************************************************************************
322 Change directory - inner section.
323 ****************************************************************************/
325 static int do_cd(const char *new_dir
)
328 char *saved_dir
= NULL
;
330 char *targetpath
= NULL
;
331 struct cli_state
*targetcli
= NULL
;
332 SMB_STRUCT_STAT sbuf
;
335 TALLOC_CTX
*ctx
= talloc_stackframe();
337 newdir
= talloc_strdup(ctx
, new_dir
);
343 normalize_name(newdir
);
345 /* Save the current directory in case the new directory is invalid */
347 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
353 if (*newdir
== CLI_DIRSEP_CHAR
) {
354 client_set_cur_dir(newdir
);
357 new_cd
= talloc_asprintf(ctx
, "%s%s",
358 client_get_cur_dir(),
365 /* Ensure cur_dir ends in a DIRSEP */
366 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
367 new_cd
= talloc_asprintf_append(new_cd
, CLI_DIRSEP_STR
);
372 client_set_cur_dir(new_cd
);
374 new_cd
= clean_name(ctx
, new_cd
);
375 client_set_cur_dir(new_cd
);
377 if ( !cli_resolve_path(ctx
, "", cli
, new_cd
, &targetcli
, &targetpath
)) {
378 d_printf("cd %s: %s\n", new_cd
, cli_errstr(cli
));
379 client_set_cur_dir(saved_dir
);
383 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
388 /* Use a trans2_qpathinfo to test directories for modern servers.
389 Except Win9x doesn't support the qpathinfo_basic() call..... */
391 if (targetcli
->protocol
> PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
392 if (!cli_qpathinfo_basic( targetcli
, targetpath
, &sbuf
, &attributes
) ) {
393 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
394 client_set_cur_dir(saved_dir
);
398 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
399 d_printf("cd %s: not a directory\n", new_cd
);
400 client_set_cur_dir(saved_dir
);
404 targetpath
= talloc_asprintf(ctx
,
409 client_set_cur_dir(saved_dir
);
412 targetpath
= clean_name(ctx
, targetpath
);
414 client_set_cur_dir(saved_dir
);
418 if (!cli_chkpath(targetcli
, targetpath
)) {
419 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
420 client_set_cur_dir(saved_dir
);
433 /****************************************************************************
435 ****************************************************************************/
437 static int cmd_cd(void)
442 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
445 d_printf("Current directory is %s\n",client_get_cur_dir());
451 /****************************************************************************
453 ****************************************************************************/
455 static int cmd_cd_oneup(void)
460 /*******************************************************************
461 Decide if a file should be operated on.
462 ********************************************************************/
464 static bool do_this_one(file_info
*finfo
)
470 if (finfo
->mode
& aDIR
) {
474 if (*client_get_fileselection() &&
475 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
476 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
480 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
481 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
485 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
486 DEBUG(3,("archive %s failed\n", finfo
->name
));
493 /****************************************************************************
494 Display info about a file.
495 ****************************************************************************/
497 static void display_finfo(file_info
*finfo
, const char *dir
)
500 TALLOC_CTX
*ctx
= talloc_tos();
502 if (!do_this_one(finfo
)) {
506 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
508 d_printf(" %-30s%7.7s %8.0f %s",
510 attrib_string(finfo
->mode
),
513 dir_total
+= finfo
->size
;
518 /* skip if this is . or .. */
519 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
521 /* create absolute filename for cli_nt_create() FIXME */
522 afname
= talloc_asprintf(ctx
,
530 /* print file meta date header */
531 d_printf( "FILENAME:%s\n", finfo
->name
);
532 d_printf( "MODE:%s\n", attrib_string(finfo
->mode
));
533 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
534 d_printf( "MTIME:%s", time_to_asc(t
));
535 fnum
= cli_nt_create(finfo
->cli
, afname
, CREATE_ACCESS_READ
);
537 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
539 cli_errstr( finfo
->cli
)));
542 sd
= cli_query_secdesc(finfo
->cli
, fnum
, ctx
);
544 DEBUG( 0, ("display_finfo() failed to "
545 "get security descriptor: %s",
546 cli_errstr( finfo
->cli
)));
548 display_sec_desc(sd
);
556 /****************************************************************************
557 Accumulate size of a file.
558 ****************************************************************************/
560 static void do_du(file_info
*finfo
, const char *dir
)
562 if (do_this_one(finfo
)) {
563 dir_total
+= finfo
->size
;
567 static bool do_list_recurse
;
568 static bool do_list_dirs
;
569 static char *do_list_queue
= 0;
570 static long do_list_queue_size
= 0;
571 static long do_list_queue_start
= 0;
572 static long do_list_queue_end
= 0;
573 static void (*do_list_fn
)(file_info
*, const char *dir
);
575 /****************************************************************************
576 Functions for do_list_queue.
577 ****************************************************************************/
580 * The do_list_queue is a NUL-separated list of strings stored in a
581 * char*. Since this is a FIFO, we keep track of the beginning and
582 * ending locations of the data in the queue. When we overflow, we
583 * double the size of the char*. When the start of the data passes
584 * the midpoint, we move everything back. This is logically more
585 * complex than a linked list, but easier from a memory management
586 * angle. In any memory error condition, do_list_queue is reset.
587 * Functions check to ensure that do_list_queue is non-NULL before
591 static void reset_do_list_queue(void)
593 SAFE_FREE(do_list_queue
);
594 do_list_queue_size
= 0;
595 do_list_queue_start
= 0;
596 do_list_queue_end
= 0;
599 static void init_do_list_queue(void)
601 reset_do_list_queue();
602 do_list_queue_size
= 1024;
603 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
604 if (do_list_queue
== 0) {
605 d_printf("malloc fail for size %d\n",
606 (int)do_list_queue_size
);
607 reset_do_list_queue();
609 memset(do_list_queue
, 0, do_list_queue_size
);
613 static void adjust_do_list_queue(void)
616 * If the starting point of the queue is more than half way through,
617 * move everything toward the beginning.
620 if (do_list_queue
== NULL
) {
621 DEBUG(4,("do_list_queue is empty\n"));
622 do_list_queue_start
= do_list_queue_end
= 0;
626 if (do_list_queue_start
== do_list_queue_end
) {
627 DEBUG(4,("do_list_queue is empty\n"));
628 do_list_queue_start
= do_list_queue_end
= 0;
629 *do_list_queue
= '\0';
630 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
631 DEBUG(4,("sliding do_list_queue backward\n"));
632 memmove(do_list_queue
,
633 do_list_queue
+ do_list_queue_start
,
634 do_list_queue_end
- do_list_queue_start
);
635 do_list_queue_end
-= do_list_queue_start
;
636 do_list_queue_start
= 0;
640 static void add_to_do_list_queue(const char *entry
)
642 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
643 while (new_end
> do_list_queue_size
) {
644 do_list_queue_size
*= 2;
645 DEBUG(4,("enlarging do_list_queue to %d\n",
646 (int)do_list_queue_size
));
647 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
648 if (! do_list_queue
) {
649 d_printf("failure enlarging do_list_queue to %d bytes\n",
650 (int)do_list_queue_size
);
651 reset_do_list_queue();
653 memset(do_list_queue
+ do_list_queue_size
/ 2,
654 0, do_list_queue_size
/ 2);
658 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
659 entry
, do_list_queue
, do_list_queue_size
);
660 do_list_queue_end
= new_end
;
661 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
662 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
666 static char *do_list_queue_head(void)
668 return do_list_queue
+ do_list_queue_start
;
671 static void remove_do_list_queue_head(void)
673 if (do_list_queue_end
> do_list_queue_start
) {
674 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
675 adjust_do_list_queue();
676 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
677 (int)do_list_queue_start
, (int)do_list_queue_end
));
681 static int do_list_queue_empty(void)
683 return (! (do_list_queue
&& *do_list_queue
));
686 /****************************************************************************
687 A helper for do_list.
688 ****************************************************************************/
690 static void do_list_helper(const char *mntpoint
, file_info
*f
, const char *mask
, void *state
)
692 TALLOC_CTX
*ctx
= talloc_tos();
694 char *dir_end
= NULL
;
696 /* Work out the directory. */
697 dir
= talloc_strdup(ctx
, mask
);
701 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
705 if (f
->mode
& aDIR
) {
706 if (do_list_dirs
&& do_this_one(f
)) {
709 if (do_list_recurse
&&
711 !strequal(f
->name
,".") &&
712 !strequal(f
->name
,"..")) {
717 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
722 mask2
= talloc_asprintf(ctx
,
730 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
736 mask2
= talloc_asprintf_append(mask2
,
744 add_to_do_list_queue(mask2
);
751 if (do_this_one(f
)) {
757 /****************************************************************************
758 A wrapper around cli_list that adds recursion.
759 ****************************************************************************/
761 void do_list(const char *mask
,
763 void (*fn
)(file_info
*, const char *dir
),
767 static int in_do_list
= 0;
768 TALLOC_CTX
*ctx
= talloc_tos();
769 struct cli_state
*targetcli
= NULL
;
770 char *targetpath
= NULL
;
772 if (in_do_list
&& rec
) {
773 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
779 do_list_recurse
= rec
;
784 init_do_list_queue();
785 add_to_do_list_queue(mask
);
787 while (!do_list_queue_empty()) {
789 * Need to copy head so that it doesn't become
790 * invalid inside the call to cli_list. This
791 * would happen if the list were expanded
793 * Fix from E. Jay Berkenbilt (ejb@ql.org)
795 char *head
= talloc_strdup(ctx
, do_list_queue_head());
803 if ( !cli_resolve_path(ctx
, "", cli
, head
, &targetcli
, &targetpath
) ) {
804 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
805 remove_do_list_queue_head();
809 cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
);
810 remove_do_list_queue_head();
811 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
812 char *next_file
= do_list_queue_head();
814 if ((strlen(next_file
) >= 2) &&
815 (next_file
[strlen(next_file
) - 1] == '*') &&
816 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
817 save_ch
= next_file
+
818 strlen(next_file
) - 2;
821 /* cwd is only used if showacls is on */
822 client_set_cwd(next_file
);
825 if (!showacls
) /* don't disturbe the showacls output */
826 d_printf("\n%s\n",next_file
);
828 *save_ch
= CLI_DIRSEP_CHAR
;
832 TALLOC_FREE(targetpath
);
836 if (cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetpath
)) {
837 if (cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
) == -1) {
838 d_printf("%s listing %s\n",
839 cli_errstr(targetcli
), targetpath
);
841 TALLOC_FREE(targetpath
);
843 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
848 reset_do_list_queue();
851 /****************************************************************************
852 Get a directory listing.
853 ****************************************************************************/
855 static int cmd_dir(void)
857 TALLOC_CTX
*ctx
= talloc_tos();
858 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
864 mask
= talloc_strdup(ctx
, client_get_cur_dir());
869 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
871 if (*buf
== CLI_DIRSEP_CHAR
) {
872 mask
= talloc_strdup(ctx
, buf
);
874 mask
= talloc_asprintf_append(mask
, buf
);
877 mask
= talloc_asprintf_append(mask
, "*");
884 /* cwd is only used if showacls is on */
885 client_set_cwd(client_get_cur_dir());
888 do_list(mask
, attribute
, display_finfo
, recurse
, true);
892 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
897 /****************************************************************************
898 Get a directory listing.
899 ****************************************************************************/
901 static int cmd_du(void)
903 TALLOC_CTX
*ctx
= talloc_tos();
904 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
910 mask
= talloc_strdup(ctx
, client_get_cur_dir());
914 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
915 mask
= talloc_asprintf_append(mask
, CLI_DIRSEP_STR
);
921 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
923 if (*buf
== CLI_DIRSEP_CHAR
) {
924 mask
= talloc_strdup(ctx
, buf
);
926 mask
= talloc_asprintf_append(mask
, buf
);
929 mask
= talloc_strdup(ctx
, "*");
932 do_list(mask
, attribute
, do_du
, recurse
, true);
936 d_printf("Total number of bytes: %.0f\n", dir_total
);
941 static int cmd_echo(void)
943 TALLOC_CTX
*ctx
= talloc_tos();
948 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
949 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
950 d_printf("echo <num> <data>\n");
954 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
956 if (!NT_STATUS_IS_OK(status
)) {
957 d_printf("echo failed: %s\n", nt_errstr(status
));
964 /****************************************************************************
965 Get a file from rname to lname
966 ****************************************************************************/
968 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
970 int *pfd
= (int *)priv
;
971 if (writefile(*pfd
, buf
, n
) == -1) {
972 return map_nt_error_from_unix(errno
);
977 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
979 TALLOC_CTX
*ctx
= talloc_tos();
980 int handle
= 0, fnum
;
981 bool newhandle
= false;
982 struct timeval tp_start
;
988 struct cli_state
*targetcli
= NULL
;
989 char *targetname
= NULL
;
993 lname
= talloc_strdup(ctx
, lname_in
);
1002 if (!cli_resolve_path(ctx
, "", cli
, rname
, &targetcli
, &targetname
) ) {
1003 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1007 GetTimeOfDay(&tp_start
);
1009 fnum
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
);
1012 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1016 if(!strcmp(lname
,"-")) {
1017 handle
= fileno(stdout
);
1020 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1022 start
= sys_lseek(handle
, 0, SEEK_END
);
1024 d_printf("Error seeking local file\n");
1029 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1034 d_printf("Error opening local file %s\n",lname
);
1039 if (!cli_qfileinfo(targetcli
, fnum
,
1040 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1041 !cli_getattrE(targetcli
, fnum
,
1042 &attr
, &size
, NULL
, NULL
, NULL
)) {
1043 d_printf("getattrib: %s\n",cli_errstr(targetcli
));
1047 DEBUG(1,("getting file %s of size %.0f as %s ",
1048 rname
, (double)size
, lname
));
1050 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1051 writefile_sink
, (void *)&handle
, &nread
);
1052 if (!NT_STATUS_IS_OK(status
)) {
1053 d_fprintf(stderr
, "parallel_read returned %s\n",
1055 cli_close(targetcli
, fnum
);
1059 if (!cli_close(targetcli
, fnum
)) {
1060 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
1068 if (archive_level
>= 2 && (attr
& aARCH
)) {
1069 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
1073 struct timeval tp_end
;
1076 GetTimeOfDay(&tp_end
);
1078 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1079 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1080 get_total_time_ms
+= this_time
;
1081 get_total_size
+= nread
;
1083 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1084 nread
/ (1.024*this_time
+ 1.0e-4),
1085 get_total_size
/ (1.024*get_total_time_ms
)));
1088 TALLOC_FREE(targetname
);
1092 /****************************************************************************
1094 ****************************************************************************/
1096 static int cmd_get(void)
1098 TALLOC_CTX
*ctx
= talloc_tos();
1103 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1108 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1109 d_printf("get <filename> [localname]\n");
1112 rname
= talloc_asprintf_append(rname
, fname
);
1116 rname
= clean_name(ctx
, rname
);
1121 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1126 return do_get(rname
, lname
, false);
1129 /****************************************************************************
1130 Do an mget operation on one file.
1131 ****************************************************************************/
1133 static void do_mget(file_info
*finfo
, const char *dir
)
1135 TALLOC_CTX
*ctx
= talloc_tos();
1138 char *saved_curdir
= NULL
;
1139 char *mget_mask
= NULL
;
1140 char *new_cd
= NULL
;
1146 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1150 d_printf("mget aborted\n");
1154 if (finfo
->mode
& aDIR
) {
1155 if (asprintf(&quest
,
1156 "Get directory %s? ",finfo
->name
) < 0) {
1160 if (asprintf(&quest
,
1161 "Get file %s? ",finfo
->name
) < 0) {
1166 if (prompt
&& !yesno(quest
)) {
1172 if (!(finfo
->mode
& aDIR
)) {
1173 rname
= talloc_asprintf(ctx
,
1175 client_get_cur_dir(),
1180 do_get(rname
, finfo
->name
, false);
1185 /* handle directories */
1186 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1187 if (!saved_curdir
) {
1191 new_cd
= talloc_asprintf(ctx
,
1193 client_get_cur_dir(),
1199 client_set_cur_dir(new_cd
);
1201 string_replace(finfo
->name
,'\\','/');
1203 strlower_m(finfo
->name
);
1206 if (!directory_exist(finfo
->name
,NULL
) &&
1207 mkdir(finfo
->name
,0777) != 0) {
1208 d_printf("failed to create directory %s\n",finfo
->name
);
1209 client_set_cur_dir(saved_curdir
);
1213 if (chdir(finfo
->name
) != 0) {
1214 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1215 client_set_cur_dir(saved_curdir
);
1219 mget_mask
= talloc_asprintf(ctx
,
1221 client_get_cur_dir());
1227 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,false, true);
1229 client_set_cur_dir(saved_curdir
);
1230 TALLOC_FREE(mget_mask
);
1231 TALLOC_FREE(saved_curdir
);
1232 TALLOC_FREE(new_cd
);
1235 /****************************************************************************
1236 View the file using the pager.
1237 ****************************************************************************/
1239 static int cmd_more(void)
1241 TALLOC_CTX
*ctx
= talloc_tos();
1245 char *pager_cmd
= NULL
;
1250 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1255 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1259 fd
= smb_mkstemp(lname
);
1261 d_printf("failed to create temporary file for more\n");
1266 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1267 d_printf("more <filename>\n");
1271 rname
= talloc_asprintf_append(rname
, fname
);
1275 rname
= clean_name(ctx
,rname
);
1280 rc
= do_get(rname
, lname
, false);
1282 pager
=getenv("PAGER");
1284 pager_cmd
= talloc_asprintf(ctx
,
1286 (pager
? pager
:PAGER
),
1297 /****************************************************************************
1299 ****************************************************************************/
1301 static int cmd_mget(void)
1303 TALLOC_CTX
*ctx
= talloc_tos();
1304 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1305 char *mget_mask
= NULL
;
1314 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1315 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1319 if (*buf
== CLI_DIRSEP_CHAR
) {
1320 mget_mask
= talloc_strdup(ctx
, buf
);
1322 mget_mask
= talloc_asprintf_append(mget_mask
,
1328 do_list(mget_mask
, attribute
, do_mget
, false, true);
1332 mget_mask
= talloc_asprintf(ctx
,
1334 client_get_cur_dir());
1338 do_list(mget_mask
, attribute
, do_mget
, false, true);
1344 /****************************************************************************
1345 Make a directory of name "name".
1346 ****************************************************************************/
1348 static bool do_mkdir(const char *name
)
1350 TALLOC_CTX
*ctx
= talloc_tos();
1351 struct cli_state
*targetcli
;
1352 char *targetname
= NULL
;
1354 if (!cli_resolve_path(ctx
, "", cli
, name
, &targetcli
, &targetname
)) {
1355 d_printf("mkdir %s: %s\n", name
, cli_errstr(cli
));
1359 if (!cli_mkdir(targetcli
, targetname
)) {
1360 d_printf("%s making remote directory %s\n",
1361 cli_errstr(targetcli
),name
);
1368 /****************************************************************************
1369 Show 8.3 name of a file.
1370 ****************************************************************************/
1372 static bool do_altname(const char *name
)
1376 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1377 d_printf("%s getting alt name for %s\n",
1378 cli_errstr(cli
),name
);
1381 d_printf("%s\n", altname
);
1386 /****************************************************************************
1388 ****************************************************************************/
1390 static int cmd_quit(void)
1398 /****************************************************************************
1400 ****************************************************************************/
1402 static int cmd_mkdir(void)
1404 TALLOC_CTX
*ctx
= talloc_tos();
1408 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1413 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1415 d_printf("mkdir <dirname>\n");
1419 mask
= talloc_asprintf_append(mask
, buf
);
1427 struct cli_state
*targetcli
;
1428 char *targetname
= NULL
;
1432 ddir2
= talloc_strdup(ctx
, "");
1437 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
1441 ddir
= talloc_strdup(ctx
, targetname
);
1445 trim_char(ddir
,'.','\0');
1446 p
= strtok_r(ddir
, "/\\", &saveptr
);
1448 ddir2
= talloc_asprintf_append(ddir2
, p
);
1452 if (!cli_chkpath(targetcli
, ddir2
)) {
1455 ddir2
= talloc_asprintf_append(ddir2
, CLI_DIRSEP_STR
);
1459 p
= strtok_r(NULL
, "/\\", &saveptr
);
1468 /****************************************************************************
1470 ****************************************************************************/
1472 static int cmd_altname(void)
1474 TALLOC_CTX
*ctx
= talloc_tos();
1478 name
= talloc_strdup(ctx
, client_get_cur_dir());
1483 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1484 d_printf("altname <file>\n");
1487 name
= talloc_asprintf_append(name
, buf
);
1495 /****************************************************************************
1496 Show all info we can get
1497 ****************************************************************************/
1499 static int do_allinfo(const char *name
)
1502 struct timespec b_time
, a_time
, m_time
, c_time
;
1507 unsigned int num_streams
;
1508 struct stream_struct
*streams
;
1511 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1512 d_printf("%s getting alt name for %s\n",
1513 cli_errstr(cli
),name
);
1516 d_printf("altname: %s\n", altname
);
1518 if (!cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1519 &size
, &mode
, &ino
)) {
1520 d_printf("%s getting pathinfo for %s\n",
1521 cli_errstr(cli
),name
);
1525 unix_timespec_to_nt_time(&tmp
, b_time
);
1526 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1528 unix_timespec_to_nt_time(&tmp
, a_time
);
1529 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1531 unix_timespec_to_nt_time(&tmp
, m_time
);
1532 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1534 unix_timespec_to_nt_time(&tmp
, c_time
);
1535 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1537 if (!cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1539 d_printf("%s getting streams for %s\n",
1540 cli_errstr(cli
),name
);
1544 for (i
=0; i
<num_streams
; i
++) {
1545 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1546 (unsigned long long)streams
[i
].size
);
1552 /****************************************************************************
1553 Show all info we can get
1554 ****************************************************************************/
1556 static int cmd_allinfo(void)
1558 TALLOC_CTX
*ctx
= talloc_tos();
1562 name
= talloc_strdup(ctx
, client_get_cur_dir());
1567 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1568 d_printf("allinfo <file>\n");
1571 name
= talloc_asprintf_append(name
, buf
);
1581 /****************************************************************************
1583 ****************************************************************************/
1585 static int do_put(const char *rname
, const char *lname
, bool reput
)
1587 TALLOC_CTX
*ctx
= talloc_tos();
1590 SMB_OFF_T start
= 0;
1593 int maxwrite
= io_bufsize
;
1595 struct timeval tp_start
;
1596 struct cli_state
*targetcli
;
1597 char *targetname
= NULL
;
1599 if (!cli_resolve_path(ctx
, "", cli
, rname
, &targetcli
, &targetname
)) {
1600 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1604 GetTimeOfDay(&tp_start
);
1607 fnum
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
);
1609 if (!cli_qfileinfo(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1610 !cli_getattrE(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
)) {
1611 d_printf("getattrib: %s\n",cli_errstr(cli
));
1616 fnum
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
);
1620 d_printf("%s opening remote file %s\n",cli_errstr(targetcli
),rname
);
1624 /* allow files to be piped into smbclient
1627 Note that in this case this function will exit(0) rather
1629 if (!strcmp(lname
, "-")) {
1631 /* size of file is not known */
1633 f
= x_fopen(lname
,O_RDONLY
, 0);
1635 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1636 d_printf("Error seeking local file\n");
1643 d_printf("Error opening local file %s\n",lname
);
1647 DEBUG(1,("putting file %s as %s ",lname
,
1650 buf
= (char *)SMB_MALLOC(maxwrite
);
1652 d_printf("ERROR: Not enough memory!\n");
1655 while (!x_feof(f
)) {
1659 if ((n
= readfile(buf
,n
,f
)) < 1) {
1660 if((n
== 0) && x_feof(f
))
1661 break; /* Empty local file. */
1663 d_printf("Error reading local file: %s\n", strerror(errno
));
1668 ret
= cli_write(targetcli
, fnum
, 0, buf
, nread
+ start
, n
);
1671 d_printf("Error writing file: %s\n", cli_errstr(cli
));
1679 if (!cli_close(targetcli
, fnum
)) {
1680 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1693 struct timeval tp_end
;
1696 GetTimeOfDay(&tp_end
);
1698 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1699 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1700 put_total_time_ms
+= this_time
;
1701 put_total_size
+= nread
;
1703 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1704 nread
/ (1.024*this_time
+ 1.0e-4),
1705 put_total_size
/ (1.024*put_total_time_ms
)));
1716 /****************************************************************************
1718 ****************************************************************************/
1720 static int cmd_put(void)
1722 TALLOC_CTX
*ctx
= talloc_tos();
1727 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1732 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1733 d_printf("put <filename>\n");
1737 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1738 rname
= talloc_asprintf_append(rname
, buf
);
1740 rname
= talloc_asprintf_append(rname
, lname
);
1746 rname
= clean_name(ctx
, rname
);
1753 /* allow '-' to represent stdin
1754 jdblair, 24.jun.98 */
1755 if (!file_exist(lname
,&st
) &&
1756 (strcmp(lname
,"-"))) {
1757 d_printf("%s does not exist\n",lname
);
1762 return do_put(rname
, lname
, false);
1765 /*************************************
1766 File list structure.
1767 *************************************/
1769 static struct file_list
{
1770 struct file_list
*prev
, *next
;
1775 /****************************************************************************
1776 Free a file_list structure.
1777 ****************************************************************************/
1779 static void free_file_list (struct file_list
*list_head
)
1781 struct file_list
*list
, *next
;
1783 for (list
= list_head
; list
; list
= next
) {
1785 DLIST_REMOVE(list_head
, list
);
1786 SAFE_FREE(list
->file_path
);
1791 /****************************************************************************
1792 Seek in a directory/file list until you get something that doesn't start with
1794 ****************************************************************************/
1796 static bool seek_list(struct file_list
*list
, char *name
)
1799 trim_string(list
->file_path
,"./","\n");
1800 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1809 /****************************************************************************
1810 Set the file selection mask.
1811 ****************************************************************************/
1813 static int cmd_select(void)
1815 TALLOC_CTX
*ctx
= talloc_tos();
1816 char *new_fs
= NULL
;
1817 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
1820 client_set_fileselection(new_fs
);
1822 client_set_fileselection("");
1827 /****************************************************************************
1828 Recursive file matching function act as find
1829 match must be always set to true when calling this function
1830 ****************************************************************************/
1832 static int file_find(struct file_list
**list
, const char *directory
,
1833 const char *expression
, bool match
)
1835 SMB_STRUCT_DIR
*dir
;
1836 struct file_list
*entry
;
1837 struct stat statbuf
;
1843 dir
= sys_opendir(directory
);
1847 while ((dname
= readdirname(dir
))) {
1848 if (!strcmp("..", dname
))
1850 if (!strcmp(".", dname
))
1853 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1858 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1860 ret
= stat(path
, &statbuf
);
1862 if (S_ISDIR(statbuf
.st_mode
)) {
1864 ret
= file_find(list
, path
, expression
, false);
1867 d_printf("file_find: cannot stat file %s\n", path
);
1876 entry
= SMB_MALLOC_P(struct file_list
);
1878 d_printf("Out of memory in file_find\n");
1882 entry
->file_path
= path
;
1883 entry
->isdir
= isdir
;
1884 DLIST_ADD(*list
, entry
);
1894 /****************************************************************************
1896 ****************************************************************************/
1898 static int cmd_mput(void)
1900 TALLOC_CTX
*ctx
= talloc_tos();
1903 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
1905 struct file_list
*temp_list
;
1906 char *quest
, *lname
, *rname
;
1910 ret
= file_find(&file_list
, ".", p
, true);
1912 free_file_list(file_list
);
1920 for (temp_list
= file_list
; temp_list
;
1921 temp_list
= temp_list
->next
) {
1924 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
1927 trim_string(lname
, "./", "/");
1929 /* check if it's a directory */
1930 if (temp_list
->isdir
) {
1931 /* if (!recurse) continue; */
1934 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
1937 if (prompt
&& !yesno(quest
)) { /* No */
1938 /* Skip the directory */
1939 lname
[strlen(lname
)-1] = '/';
1940 if (!seek_list(temp_list
, lname
))
1944 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1947 normalize_name(rname
);
1948 if (!cli_chkpath(cli
, rname
) &&
1950 DEBUG (0, ("Unable to make dir, skipping..."));
1951 /* Skip the directory */
1952 lname
[strlen(lname
)-1] = '/';
1953 if (!seek_list(temp_list
, lname
)) {
1961 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
1964 if (prompt
&& !yesno(quest
)) {
1971 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1976 normalize_name(rname
);
1978 do_put(rname
, lname
, false);
1980 free_file_list(file_list
);
1989 /****************************************************************************
1991 ****************************************************************************/
1993 static int do_cancel(int job
)
1995 if (cli_printjob_del(cli
, job
)) {
1996 d_printf("Job %d cancelled\n",job
);
1999 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2004 /****************************************************************************
2006 ****************************************************************************/
2008 static int cmd_cancel(void)
2010 TALLOC_CTX
*ctx
= talloc_tos();
2014 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2015 d_printf("cancel <jobid> ...\n");
2021 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2026 /****************************************************************************
2028 ****************************************************************************/
2030 static int cmd_print(void)
2032 TALLOC_CTX
*ctx
= talloc_tos();
2037 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2038 d_printf("print <filename>\n");
2042 rname
= talloc_strdup(ctx
, lname
);
2046 p
= strrchr_m(rname
,'/');
2048 rname
= talloc_asprintf(ctx
,
2053 if (strequal(lname
,"-")) {
2054 rname
= talloc_asprintf(ctx
,
2062 return do_put(rname
, lname
, false);
2065 /****************************************************************************
2066 Show a print queue entry.
2067 ****************************************************************************/
2069 static void queue_fn(struct print_job_info
*p
)
2071 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2074 /****************************************************************************
2076 ****************************************************************************/
2078 static int cmd_queue(void)
2080 cli_print_queue(cli
, queue_fn
);
2084 /****************************************************************************
2086 ****************************************************************************/
2088 static void do_del(file_info
*finfo
, const char *dir
)
2090 TALLOC_CTX
*ctx
= talloc_tos();
2093 mask
= talloc_asprintf(ctx
,
2102 if (finfo
->mode
& aDIR
) {
2107 if (!cli_unlink(finfo
->cli
, mask
)) {
2108 d_printf("%s deleting remote file %s\n",
2109 cli_errstr(finfo
->cli
),mask
);
2114 /****************************************************************************
2116 ****************************************************************************/
2118 static int cmd_del(void)
2120 TALLOC_CTX
*ctx
= talloc_tos();
2123 uint16 attribute
= aSYSTEM
| aHIDDEN
;
2129 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2133 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2134 d_printf("del <filename>\n");
2137 mask
= talloc_asprintf_append(mask
, buf
);
2142 do_list(mask
,attribute
,do_del
,false,false);
2146 /****************************************************************************
2147 Wildcard delete some files.
2148 ****************************************************************************/
2150 static int cmd_wdel(void)
2152 TALLOC_CTX
*ctx
= talloc_tos();
2156 struct cli_state
*targetcli
;
2157 char *targetname
= NULL
;
2159 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2160 d_printf("wdel 0x<attrib> <wcard>\n");
2164 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2166 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2167 d_printf("wdel 0x<attrib> <wcard>\n");
2171 mask
= talloc_asprintf(ctx
, "%s%s",
2172 client_get_cur_dir(),
2178 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2179 d_printf("cmd_wdel %s: %s\n", mask
, cli_errstr(cli
));
2183 if (!cli_unlink_full(targetcli
, targetname
, attribute
)) {
2184 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli
),targetname
);
2189 /****************************************************************************
2190 ****************************************************************************/
2192 static int cmd_open(void)
2194 TALLOC_CTX
*ctx
= talloc_tos();
2197 char *targetname
= NULL
;
2198 struct cli_state
*targetcli
;
2201 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2202 d_printf("open <filename>\n");
2205 mask
= talloc_asprintf(ctx
,
2207 client_get_cur_dir(),
2213 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2214 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
2218 fnum
= cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
|FILE_WRITE_DATA
);
2220 fnum
= cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
);
2222 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2224 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2227 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2232 static int cmd_posix_encrypt(void)
2234 TALLOC_CTX
*ctx
= talloc_tos();
2235 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2237 if (cli
->use_kerberos
) {
2238 status
= cli_gss_smb_encryption_start(cli
);
2240 char *domain
= NULL
;
2242 char *password
= NULL
;
2244 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2245 d_printf("posix_encrypt domain user password\n");
2249 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2250 d_printf("posix_encrypt domain user password\n");
2254 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2255 d_printf("posix_encrypt domain user password\n");
2259 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2265 if (!NT_STATUS_IS_OK(status
)) {
2266 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2268 d_printf("encryption on\n");
2275 /****************************************************************************
2276 ****************************************************************************/
2278 static int cmd_posix_open(void)
2280 TALLOC_CTX
*ctx
= talloc_tos();
2283 char *targetname
= NULL
;
2284 struct cli_state
*targetcli
;
2288 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2289 d_printf("posix_open <filename> 0<mode>\n");
2292 mask
= talloc_asprintf(ctx
,
2294 client_get_cur_dir(),
2300 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2301 d_printf("posix_open <filename> 0<mode>\n");
2304 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2306 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2307 d_printf("posix_open %s: %s\n", mask
, cli_errstr(cli
));
2311 fnum
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
);
2313 fnum
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDONLY
, mode
);
2315 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2317 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2320 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2326 static int cmd_posix_mkdir(void)
2328 TALLOC_CTX
*ctx
= talloc_tos();
2331 char *targetname
= NULL
;
2332 struct cli_state
*targetcli
;
2336 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2337 d_printf("posix_mkdir <filename> 0<mode>\n");
2340 mask
= talloc_asprintf(ctx
,
2342 client_get_cur_dir(),
2348 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2349 d_printf("posix_mkdir <filename> 0<mode>\n");
2352 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2354 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2355 d_printf("posix_mkdir %s: %s\n", mask
, cli_errstr(cli
));
2359 fnum
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2361 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2363 d_printf("posix_mkdir created directory %s\n", targetname
);
2368 static int cmd_posix_unlink(void)
2370 TALLOC_CTX
*ctx
= talloc_tos();
2373 char *targetname
= NULL
;
2374 struct cli_state
*targetcli
;
2376 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2377 d_printf("posix_unlink <filename>\n");
2380 mask
= talloc_asprintf(ctx
,
2382 client_get_cur_dir(),
2388 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2389 d_printf("posix_unlink %s: %s\n", mask
, cli_errstr(cli
));
2393 if (!cli_posix_unlink(targetcli
, targetname
)) {
2394 d_printf("Failed to unlink file %s. %s\n", targetname
, cli_errstr(cli
));
2396 d_printf("posix_unlink deleted file %s\n", targetname
);
2402 static int cmd_posix_rmdir(void)
2404 TALLOC_CTX
*ctx
= talloc_tos();
2407 char *targetname
= NULL
;
2408 struct cli_state
*targetcli
;
2410 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2411 d_printf("posix_rmdir <filename>\n");
2414 mask
= talloc_asprintf(ctx
,
2416 client_get_cur_dir(),
2422 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2423 d_printf("posix_rmdir %s: %s\n", mask
, cli_errstr(cli
));
2427 if (!cli_posix_rmdir(targetcli
, targetname
)) {
2428 d_printf("Failed to unlink directory %s. %s\n", targetname
, cli_errstr(cli
));
2430 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2436 static int cmd_close(void)
2438 TALLOC_CTX
*ctx
= talloc_tos();
2442 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2443 d_printf("close <fnum>\n");
2448 /* We really should use the targetcli here.... */
2449 if (!cli_close(cli
, fnum
)) {
2450 d_printf("close %d: %s\n", fnum
, cli_errstr(cli
));
2456 static int cmd_posix(void)
2458 TALLOC_CTX
*ctx
= talloc_tos();
2459 uint16 major
, minor
;
2460 uint32 caplow
, caphigh
;
2463 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2464 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2468 if (!cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
, &caphigh
)) {
2469 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2473 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2475 caps
= talloc_strdup(ctx
, "");
2479 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2480 caps
= talloc_asprintf_append(caps
, "locks ");
2485 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2486 caps
= talloc_asprintf_append(caps
, "acls ");
2491 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2492 caps
= talloc_asprintf_append(caps
, "eas ");
2497 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2498 caps
= talloc_asprintf_append(caps
, "pathnames ");
2503 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2504 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2509 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2510 caps
= talloc_asprintf_append(caps
, "large_read ");
2515 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2516 caps
= talloc_asprintf_append(caps
, "large_write ");
2521 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2522 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2527 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2528 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2534 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2535 caps
[strlen(caps
)-1] = '\0';
2538 d_printf("Server supports CIFS capabilities %s\n", caps
);
2540 if (!cli_set_unix_extensions_capabilities(cli
, major
, minor
, caplow
, caphigh
)) {
2541 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli
));
2545 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2546 CLI_DIRSEP_CHAR
= '/';
2547 *CLI_DIRSEP_STR
= '/';
2548 client_set_cur_dir(CLI_DIRSEP_STR
);
2554 static int cmd_lock(void)
2556 TALLOC_CTX
*ctx
= talloc_tos();
2558 SMB_BIG_UINT start
, len
;
2559 enum brl_type lock_type
;
2562 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2563 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2568 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2569 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2573 if (*buf
== 'r' || *buf
== 'R') {
2574 lock_type
= READ_LOCK
;
2575 } else if (*buf
== 'w' || *buf
== 'W') {
2576 lock_type
= WRITE_LOCK
;
2578 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2582 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2583 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2587 start
= (SMB_BIG_UINT
)strtol(buf
, (char **)NULL
, 16);
2589 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2590 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2594 len
= (SMB_BIG_UINT
)strtol(buf
, (char **)NULL
, 16);
2596 if (!cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
)) {
2597 d_printf("lock failed %d: %s\n", fnum
, cli_errstr(cli
));
2603 static int cmd_unlock(void)
2605 TALLOC_CTX
*ctx
= talloc_tos();
2607 SMB_BIG_UINT start
, len
;
2610 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2611 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2616 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2617 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2621 start
= (SMB_BIG_UINT
)strtol(buf
, (char **)NULL
, 16);
2623 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2624 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2628 len
= (SMB_BIG_UINT
)strtol(buf
, (char **)NULL
, 16);
2630 if (!cli_posix_unlock(cli
, fnum
, start
, len
)) {
2631 d_printf("unlock failed %d: %s\n", fnum
, cli_errstr(cli
));
2638 /****************************************************************************
2640 ****************************************************************************/
2642 static int cmd_rmdir(void)
2644 TALLOC_CTX
*ctx
= talloc_tos();
2647 char *targetname
= NULL
;
2648 struct cli_state
*targetcli
;
2650 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2651 d_printf("rmdir <dirname>\n");
2654 mask
= talloc_asprintf(ctx
,
2656 client_get_cur_dir(),
2662 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2663 d_printf("rmdir %s: %s\n", mask
, cli_errstr(cli
));
2667 if (!cli_rmdir(targetcli
, targetname
)) {
2668 d_printf("%s removing remote directory file %s\n",
2669 cli_errstr(targetcli
),mask
);
2675 /****************************************************************************
2677 ****************************************************************************/
2679 static int cmd_link(void)
2681 TALLOC_CTX
*ctx
= talloc_tos();
2682 char *oldname
= NULL
;
2683 char *newname
= NULL
;
2686 char *targetname
= NULL
;
2687 struct cli_state
*targetcli
;
2689 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2690 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2691 d_printf("link <oldname> <newname>\n");
2694 oldname
= talloc_asprintf(ctx
,
2696 client_get_cur_dir(),
2701 newname
= talloc_asprintf(ctx
,
2703 client_get_cur_dir(),
2709 if (!cli_resolve_path(ctx
, "", cli
, oldname
, &targetcli
, &targetname
)) {
2710 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2714 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2715 d_printf("Server doesn't support UNIX CIFS calls.\n");
2719 if (!cli_unix_hardlink(targetcli
, targetname
, newname
)) {
2720 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
2726 /****************************************************************************
2728 ****************************************************************************/
2730 static int cmd_symlink(void)
2732 TALLOC_CTX
*ctx
= talloc_tos();
2733 char *oldname
= NULL
;
2734 char *newname
= NULL
;
2737 char *targetname
= NULL
;
2738 struct cli_state
*targetcli
;
2740 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2741 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2742 d_printf("symlink <oldname> <newname>\n");
2745 oldname
= talloc_asprintf(ctx
,
2747 client_get_cur_dir(),
2752 newname
= talloc_asprintf(ctx
,
2754 client_get_cur_dir(),
2760 if (!cli_resolve_path(ctx
, "", cli
, oldname
, &targetcli
, &targetname
)) {
2761 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2765 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2766 d_printf("Server doesn't support UNIX CIFS calls.\n");
2770 if (!cli_unix_symlink(targetcli
, targetname
, newname
)) {
2771 d_printf("%s symlinking files (%s -> %s)\n",
2772 cli_errstr(targetcli
), newname
, targetname
);
2779 /****************************************************************************
2781 ****************************************************************************/
2783 static int cmd_chmod(void)
2785 TALLOC_CTX
*ctx
= talloc_tos();
2789 char *targetname
= NULL
;
2790 struct cli_state
*targetcli
;
2793 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2794 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2795 d_printf("chmod mode file\n");
2798 src
= talloc_asprintf(ctx
,
2800 client_get_cur_dir(),
2806 mode
= (mode_t
)strtol(buf
, NULL
, 8);
2808 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
2809 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
2813 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2814 d_printf("Server doesn't support UNIX CIFS calls.\n");
2818 if (!cli_unix_chmod(targetcli
, targetname
, mode
)) {
2819 d_printf("%s chmod file %s 0%o\n",
2820 cli_errstr(targetcli
), src
, (unsigned int)mode
);
2827 static const char *filetype_to_str(mode_t mode
)
2829 if (S_ISREG(mode
)) {
2830 return "regular file";
2831 } else if (S_ISDIR(mode
)) {
2835 if (S_ISCHR(mode
)) {
2836 return "character device";
2840 if (S_ISBLK(mode
)) {
2841 return "block device";
2845 if (S_ISFIFO(mode
)) {
2850 if (S_ISLNK(mode
)) {
2851 return "symbolic link";
2855 if (S_ISSOCK(mode
)) {
2862 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
2871 static char *unix_mode_to_str(char *s
, mode_t m
)
2874 const char *str
= filetype_to_str(m
);
2890 *p
++ = str
[1] == 'y' ? 'l' : 's';
2897 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
2898 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
2899 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
2900 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
2901 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
2902 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
2903 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
2904 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
2905 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
2910 /****************************************************************************
2911 Utility function for UNIX getfacl.
2912 ****************************************************************************/
2914 static char *perms_to_string(fstring permstr
, unsigned char perms
)
2916 fstrcpy(permstr
, "---");
2917 if (perms
& SMB_POSIX_ACL_READ
) {
2920 if (perms
& SMB_POSIX_ACL_WRITE
) {
2923 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
2929 /****************************************************************************
2931 ****************************************************************************/
2933 static int cmd_getfacl(void)
2935 TALLOC_CTX
*ctx
= talloc_tos();
2938 char *targetname
= NULL
;
2939 struct cli_state
*targetcli
;
2940 uint16 major
, minor
;
2941 uint32 caplow
, caphigh
;
2942 char *retbuf
= NULL
;
2944 SMB_STRUCT_STAT sbuf
;
2945 uint16 num_file_acls
= 0;
2946 uint16 num_dir_acls
= 0;
2949 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
2950 d_printf("getfacl filename\n");
2953 src
= talloc_asprintf(ctx
,
2955 client_get_cur_dir(),
2961 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
2962 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
2966 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2967 d_printf("Server doesn't support UNIX CIFS calls.\n");
2971 if (!cli_unix_extensions_version(targetcli
, &major
, &minor
,
2972 &caplow
, &caphigh
)) {
2973 d_printf("Can't get UNIX CIFS version from server.\n");
2977 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
2978 d_printf("This server supports UNIX extensions "
2979 "but doesn't support POSIX ACLs.\n");
2983 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
2984 d_printf("%s getfacl doing a stat on file %s\n",
2985 cli_errstr(targetcli
), src
);
2989 if (!cli_unix_getfacl(targetcli
, targetname
, &rb_size
, &retbuf
)) {
2990 d_printf("%s getfacl file %s\n",
2991 cli_errstr(targetcli
), src
);
2995 /* ToDo : Print out the ACL values. */
2996 if (SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
|| rb_size
< 6) {
2997 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
2998 src
, (unsigned int)CVAL(retbuf
,0) );
3003 num_file_acls
= SVAL(retbuf
,2);
3004 num_dir_acls
= SVAL(retbuf
,4);
3005 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3006 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3008 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3009 (unsigned int)rb_size
);
3015 d_printf("# file: %s\n", src
);
3016 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_uid
, (unsigned int)sbuf
.st_gid
);
3018 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3019 d_printf("No acls found.\n");
3022 for (i
= 0; i
< num_file_acls
; i
++) {
3025 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3026 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3029 case SMB_POSIX_ACL_USER_OBJ
:
3032 case SMB_POSIX_ACL_USER
:
3033 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3034 d_printf("user:%u:", uorg
);
3036 case SMB_POSIX_ACL_GROUP_OBJ
:
3037 d_printf("group::");
3039 case SMB_POSIX_ACL_GROUP
:
3040 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3041 d_printf("group:%u:", uorg
);
3043 case SMB_POSIX_ACL_MASK
:
3046 case SMB_POSIX_ACL_OTHER
:
3047 d_printf("other::");
3050 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3051 src
, (unsigned int)tagtype
);
3056 d_printf("%s\n", perms_to_string(permstring
, perms
));
3059 for (i
= 0; i
< num_dir_acls
; i
++) {
3062 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3063 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3066 case SMB_POSIX_ACL_USER_OBJ
:
3067 d_printf("default:user::");
3069 case SMB_POSIX_ACL_USER
:
3070 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3071 d_printf("default:user:%u:", uorg
);
3073 case SMB_POSIX_ACL_GROUP_OBJ
:
3074 d_printf("default:group::");
3076 case SMB_POSIX_ACL_GROUP
:
3077 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3078 d_printf("default:group:%u:", uorg
);
3080 case SMB_POSIX_ACL_MASK
:
3081 d_printf("default:mask::");
3083 case SMB_POSIX_ACL_OTHER
:
3084 d_printf("default:other::");
3087 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3088 src
, (unsigned int)tagtype
);
3093 d_printf("%s\n", perms_to_string(permstring
, perms
));
3100 /****************************************************************************
3102 ****************************************************************************/
3104 static int cmd_stat(void)
3106 TALLOC_CTX
*ctx
= talloc_tos();
3109 char *targetname
= NULL
;
3110 struct cli_state
*targetcli
;
3112 SMB_STRUCT_STAT sbuf
;
3115 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3116 d_printf("stat file\n");
3119 src
= talloc_asprintf(ctx
,
3121 client_get_cur_dir(),
3127 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
3128 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3132 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3133 d_printf("Server doesn't support UNIX CIFS calls.\n");
3137 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
3138 d_printf("%s stat file %s\n",
3139 cli_errstr(targetcli
), src
);
3143 /* Print out the stat values. */
3144 d_printf("File: %s\n", src
);
3145 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3146 (double)sbuf
.st_size
,
3147 (unsigned int)sbuf
.st_blocks
,
3148 filetype_to_str(sbuf
.st_mode
));
3150 #if defined(S_ISCHR) && defined(S_ISBLK)
3151 if (S_ISCHR(sbuf
.st_mode
) || S_ISBLK(sbuf
.st_mode
)) {
3152 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3153 (double)sbuf
.st_ino
,
3154 (unsigned int)sbuf
.st_nlink
,
3155 unix_dev_major(sbuf
.st_rdev
),
3156 unix_dev_minor(sbuf
.st_rdev
));
3159 d_printf("Inode: %.0f\tLinks: %u\n",
3160 (double)sbuf
.st_ino
,
3161 (unsigned int)sbuf
.st_nlink
);
3163 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3164 ((int)sbuf
.st_mode
& 0777),
3165 unix_mode_to_str(mode_str
, sbuf
.st_mode
),
3166 (unsigned int)sbuf
.st_uid
,
3167 (unsigned int)sbuf
.st_gid
);
3169 lt
= localtime(&sbuf
.st_atime
);
3171 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3173 fstrcpy(mode_str
, "unknown");
3175 d_printf("Access: %s\n", mode_str
);
3177 lt
= localtime(&sbuf
.st_mtime
);
3179 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3181 fstrcpy(mode_str
, "unknown");
3183 d_printf("Modify: %s\n", mode_str
);
3185 lt
= localtime(&sbuf
.st_ctime
);
3187 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3189 fstrcpy(mode_str
, "unknown");
3191 d_printf("Change: %s\n", mode_str
);
3197 /****************************************************************************
3199 ****************************************************************************/
3201 static int cmd_chown(void)
3203 TALLOC_CTX
*ctx
= talloc_tos();
3207 char *buf
, *buf2
, *buf3
;
3208 struct cli_state
*targetcli
;
3209 char *targetname
= NULL
;
3211 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3212 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3213 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3214 d_printf("chown uid gid file\n");
3218 uid
= (uid_t
)atoi(buf
);
3219 gid
= (gid_t
)atoi(buf2
);
3221 src
= talloc_asprintf(ctx
,
3223 client_get_cur_dir(),
3228 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
) ) {
3229 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
3233 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3234 d_printf("Server doesn't support UNIX CIFS calls.\n");
3238 if (!cli_unix_chown(targetcli
, targetname
, uid
, gid
)) {
3239 d_printf("%s chown file %s uid=%d, gid=%d\n",
3240 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
3247 /****************************************************************************
3249 ****************************************************************************/
3251 static int cmd_rename(void)
3253 TALLOC_CTX
*ctx
= talloc_tos();
3256 struct cli_state
*targetcli
;
3260 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3261 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3262 d_printf("rename <src> <dest>\n");
3266 src
= talloc_asprintf(ctx
,
3268 client_get_cur_dir(),
3274 dest
= talloc_asprintf(ctx
,
3276 client_get_cur_dir(),
3282 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetsrc
)) {
3283 d_printf("rename %s: %s\n", src
, cli_errstr(cli
));
3287 if (!cli_resolve_path(ctx
, "", cli
, dest
, &targetcli
, &targetdest
)) {
3288 d_printf("rename %s: %s\n", dest
, cli_errstr(cli
));
3292 if (!cli_rename(targetcli
, targetsrc
, targetdest
)) {
3293 d_printf("%s renaming files %s -> %s \n",
3294 cli_errstr(targetcli
),
3303 /****************************************************************************
3304 Print the volume name.
3305 ****************************************************************************/
3307 static int cmd_volume(void)
3313 if (!cli_get_fs_volume_info(cli
, volname
, &serial_num
, &create_date
)) {
3314 d_printf("Errr %s getting volume info\n",cli_errstr(cli
));
3318 d_printf("Volume: |%s| serial number 0x%x\n",
3319 volname
, (unsigned int)serial_num
);
3323 /****************************************************************************
3324 Hard link files using the NT call.
3325 ****************************************************************************/
3327 static int cmd_hardlink(void)
3329 TALLOC_CTX
*ctx
= talloc_tos();
3332 struct cli_state
*targetcli
;
3335 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3336 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3337 d_printf("hardlink <src> <dest>\n");
3341 src
= talloc_asprintf(ctx
,
3343 client_get_cur_dir(),
3349 dest
= talloc_asprintf(ctx
,
3351 client_get_cur_dir(),
3357 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
3358 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
3362 if (!cli_nt_hardlink(targetcli
, targetname
, dest
)) {
3363 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
3370 /****************************************************************************
3371 Toggle the prompt flag.
3372 ****************************************************************************/
3374 static int cmd_prompt(void)
3377 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3381 /****************************************************************************
3382 Set the newer than time.
3383 ****************************************************************************/
3385 static int cmd_newer(void)
3387 TALLOC_CTX
*ctx
= talloc_tos();
3390 SMB_STRUCT_STAT sbuf
;
3392 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3393 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
3394 newer_than
= sbuf
.st_mtime
;
3395 DEBUG(1,("Getting files newer than %s",
3396 time_to_asc(newer_than
)));
3401 if (ok
&& newer_than
== 0) {
3402 d_printf("Error setting newer-than time\n");
3409 /****************************************************************************
3410 Set the archive level.
3411 ****************************************************************************/
3413 static int cmd_archive(void)
3415 TALLOC_CTX
*ctx
= talloc_tos();
3418 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3419 archive_level
= atoi(buf
);
3421 d_printf("Archive level is %d\n",archive_level
);
3427 /****************************************************************************
3428 Toggle the lowercaseflag.
3429 ****************************************************************************/
3431 static int cmd_lowercase(void)
3433 lowercase
= !lowercase
;
3434 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3438 /****************************************************************************
3439 Toggle the case sensitive flag.
3440 ****************************************************************************/
3442 static int cmd_setcase(void)
3444 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3446 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3447 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3452 /****************************************************************************
3453 Toggle the showacls flag.
3454 ****************************************************************************/
3456 static int cmd_showacls(void)
3458 showacls
= !showacls
;
3459 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3464 /****************************************************************************
3465 Toggle the recurse flag.
3466 ****************************************************************************/
3468 static int cmd_recurse(void)
3471 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3475 /****************************************************************************
3476 Toggle the translate flag.
3477 ****************************************************************************/
3479 static int cmd_translate(void)
3481 translation
= !translation
;
3482 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3483 translation
?"on":"off"));
3487 /****************************************************************************
3489 ****************************************************************************/
3491 static int cmd_lcd(void)
3493 TALLOC_CTX
*ctx
= talloc_tos();
3497 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3500 d
= TALLOC_ARRAY(ctx
, char, PATH_MAX
+1);
3504 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
3508 /****************************************************************************
3509 Get a file restarting at end of local file.
3510 ****************************************************************************/
3512 static int cmd_reget(void)
3514 TALLOC_CTX
*ctx
= talloc_tos();
3515 char *local_name
= NULL
;
3516 char *remote_name
= NULL
;
3520 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3525 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
3526 d_printf("reget <filename>\n");
3529 remote_name
= talloc_asprintf_append(remote_name
, fname
);
3533 remote_name
= clean_name(ctx
,remote_name
);
3539 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
3544 return do_get(remote_name
, local_name
, true);
3547 /****************************************************************************
3548 Put a file restarting at end of local file.
3549 ****************************************************************************/
3551 static int cmd_reput(void)
3553 TALLOC_CTX
*ctx
= talloc_tos();
3554 char *local_name
= NULL
;
3555 char *remote_name
= NULL
;
3559 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3564 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
3565 d_printf("reput <filename>\n");
3569 if (!file_exist(local_name
, &st
)) {
3570 d_printf("%s does not exist\n", local_name
);
3574 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
3575 remote_name
= talloc_asprintf_append(remote_name
,
3578 remote_name
= talloc_asprintf_append(remote_name
,
3585 remote_name
= clean_name(ctx
, remote_name
);
3590 return do_put(remote_name
, local_name
, true);
3593 /****************************************************************************
3595 ****************************************************************************/
3597 static void browse_fn(const char *name
, uint32 m
,
3598 const char *comment
, void *state
)
3600 const char *typestr
= "";
3603 case STYPE_DISKTREE
:
3607 typestr
= "Printer";
3616 /* FIXME: If the remote machine returns non-ascii characters
3617 in any of these fields, they can corrupt the output. We
3618 should remove them. */
3620 d_printf("\t%-15s %-10.10s%s\n",
3621 name
,typestr
,comment
);
3623 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
3627 static bool browse_host_rpc(bool sort
)
3630 struct rpc_pipe_client
*pipe_hnd
;
3631 TALLOC_CTX
*frame
= talloc_stackframe();
3633 struct srvsvc_NetShareInfoCtr info_ctr
;
3634 struct srvsvc_NetShareCtr1 ctr1
;
3635 uint32_t resume_handle
= 0;
3636 uint32_t total_entries
= 0;
3639 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
3642 if (!NT_STATUS_IS_OK(status
)) {
3643 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3644 nt_errstr(status
)));
3649 ZERO_STRUCT(info_ctr
);
3653 info_ctr
.ctr
.ctr1
= &ctr1
;
3655 status
= rpccli_srvsvc_NetShareEnumAll(pipe_hnd
, frame
,
3663 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
3664 TALLOC_FREE(pipe_hnd
);
3669 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
3670 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
3671 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
3674 TALLOC_FREE(pipe_hnd
);
3679 /****************************************************************************
3680 Try and browse available connections on a host.
3681 ****************************************************************************/
3683 static bool browse_host(bool sort
)
3687 d_printf("\n\tSharename Type Comment\n");
3688 d_printf("\t--------- ---- -------\n");
3691 if (browse_host_rpc(sort
)) {
3695 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
3696 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
3701 /****************************************************************************
3703 ****************************************************************************/
3705 static void server_fn(const char *name
, uint32 m
,
3706 const char *comment
, void *state
)
3710 d_printf("\t%-16s %s\n", name
, comment
);
3712 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
3716 /****************************************************************************
3717 Try and browse available connections on a host.
3718 ****************************************************************************/
3720 static bool list_servers(const char *wk_grp
)
3724 if (!cli
->server_domain
)
3728 d_printf("\n\tServer Comment\n");
3729 d_printf("\t--------- -------\n");
3731 fstrcpy( state
, "Server" );
3732 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
3736 d_printf("\n\tWorkgroup Master\n");
3737 d_printf("\t--------- -------\n");
3740 fstrcpy( state
, "Workgroup" );
3741 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
3746 /****************************************************************************
3747 Print or set current VUID
3748 ****************************************************************************/
3750 static int cmd_vuid(void)
3752 TALLOC_CTX
*ctx
= talloc_tos();
3755 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3756 d_printf("Current VUID is %d\n", cli
->vuid
);
3760 cli
->vuid
= atoi(buf
);
3764 /****************************************************************************
3765 Setup a new VUID, by issuing a session setup
3766 ****************************************************************************/
3768 static int cmd_logon(void)
3770 TALLOC_CTX
*ctx
= talloc_tos();
3771 char *l_username
, *l_password
;
3773 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
3774 d_printf("logon <username> [<password>]\n");
3778 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
3779 char *pass
= getpass("Password: ");
3781 l_password
= talloc_strdup(ctx
,pass
);
3788 if (!NT_STATUS_IS_OK(cli_session_setup(cli
, l_username
,
3789 l_password
, strlen(l_password
),
3790 l_password
, strlen(l_password
),
3792 d_printf("session setup failed: %s\n", cli_errstr(cli
));
3796 d_printf("Current VUID is %d\n", cli
->vuid
);
3801 /****************************************************************************
3802 list active connections
3803 ****************************************************************************/
3805 static int cmd_list_connect(void)
3811 /****************************************************************************
3812 display the current active client connection
3813 ****************************************************************************/
3815 static int cmd_show_connect( void )
3817 TALLOC_CTX
*ctx
= talloc_tos();
3818 struct cli_state
*targetcli
;
3821 if (!cli_resolve_path(ctx
, "", cli
, client_get_cur_dir(),
3822 &targetcli
, &targetpath
) ) {
3823 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
3827 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
3831 /****************************************************************************
3833 ***************************************************************************/
3835 int cmd_iosize(void)
3837 TALLOC_CTX
*ctx
= talloc_tos();
3841 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3843 d_printf("iosize <n> or iosize 0x<n>. "
3844 "Minimum is 16384 (0x4000), "
3845 "max is 16776960 (0xFFFF00)\n");
3847 d_printf("iosize <n> or iosize 0x<n>. "
3848 "(Encrypted connection) ,"
3849 "Minimum is 16384 (0x4000), "
3850 "max is 130048 (0x1FC00)\n");
3855 iosize
= strtol(buf
,NULL
,0);
3856 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
3857 d_printf("iosize out of range for encrypted "
3858 "connection (min = 16384 (0x4000), "
3859 "max = 130048 (0x1FC00)");
3861 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
3862 d_printf("iosize out of range (min = 16384 (0x4000), "
3863 "max = 16776960 (0xFFFF00)");
3867 io_bufsize
= iosize
;
3868 d_printf("iosize is now %d\n", io_bufsize
);
3873 /* Some constants for completing filename arguments */
3875 #define COMPL_NONE 0 /* No completions */
3876 #define COMPL_REMOTE 1 /* Complete remote filename */
3877 #define COMPL_LOCAL 2 /* Complete local filename */
3879 /* This defines the commands supported by this client.
3880 * NOTE: The "!" must be the last one in the list because it's fn pointer
3881 * field is NULL, and NULL in that field is used in process_tok()
3882 * (below) to indicate the end of the list. crh
3887 const char *description
;
3888 char compl_args
[2]; /* Completion argument info */
3890 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3891 {"allinfo",cmd_allinfo
,"<file> show all available info",
3892 {COMPL_NONE
,COMPL_NONE
}},
3893 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
3894 {"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
}},
3895 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
3896 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
3897 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
3898 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
3899 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
3900 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
3901 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
3902 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3903 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3904 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3905 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
3906 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3907 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3908 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
3909 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3910 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3911 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
3912 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
3913 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
3914 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3915 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3916 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
3917 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3918 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3919 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
3920 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3921 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3922 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3923 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
3924 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3925 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
3926 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
3927 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
3928 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
3929 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3930 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3931 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3932 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3933 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
3934 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3935 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3936 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
3937 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3938 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
3939 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3940 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
3941 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3942 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3943 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
3944 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3945 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3946 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
3947 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
3948 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
3949 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
3950 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
3951 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
3952 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
3953 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
3954 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3955 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
3956 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
3957 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3958 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
3959 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
3960 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
3961 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
3963 /* Yes, this must be here, see crh's comment above. */
3964 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
3965 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
3968 /*******************************************************************
3969 Lookup a command string in the list of commands, including
3971 ******************************************************************/
3973 static int process_tok(char *tok
)
3975 int i
= 0, matches
= 0;
3977 int tok_len
= strlen(tok
);
3979 while (commands
[i
].fn
!= NULL
) {
3980 if (strequal(commands
[i
].name
,tok
)) {
3984 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
3993 else if (matches
== 1)
3999 /****************************************************************************
4001 ****************************************************************************/
4003 static int cmd_help(void)
4005 TALLOC_CTX
*ctx
= talloc_tos();
4009 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4010 if ((i
= process_tok(buf
)) >= 0)
4011 d_printf("HELP %s:\n\t%s\n\n",
4012 commands
[i
].name
,commands
[i
].description
);
4014 while (commands
[i
].description
) {
4015 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4016 d_printf("%-15s",commands
[i
].name
);
4025 /****************************************************************************
4026 Process a -c command string.
4027 ****************************************************************************/
4029 static int process_command_string(const char *cmd_in
)
4031 TALLOC_CTX
*ctx
= talloc_tos();
4032 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4038 /* establish the connection if not already */
4041 cli
= cli_cm_open(talloc_tos(), NULL
, desthost
,
4042 service
, true, smb_encrypt
);
4048 while (cmd
[0] != '\0') {
4054 if ((p
= strchr_m(cmd
, ';')) == 0) {
4063 /* and get the first part of the command */
4065 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4069 if ((i
= process_tok(tok
)) >= 0) {
4070 rc
= commands
[i
].fn();
4071 } else if (i
== -2) {
4072 d_printf("%s: command abbreviation ambiguous\n",tok
);
4074 d_printf("%s: command not found\n",tok
);
4081 #define MAX_COMPLETIONS 100
4089 } completion_remote_t
;
4091 static void completion_remote_filter(const char *mnt
,
4096 completion_remote_t
*info
= (completion_remote_t
*)state
;
4098 if ((info
->count
< MAX_COMPLETIONS
- 1) &&
4099 (strncmp(info
->text
, f
->name
, info
->len
) == 0) &&
4100 (strcmp(f
->name
, ".") != 0) &&
4101 (strcmp(f
->name
, "..") != 0)) {
4102 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
4103 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4105 TALLOC_CTX
*ctx
= talloc_stackframe();
4108 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4113 tmp
= talloc_asprintf_append(tmp
, f
->name
);
4118 if (f
->mode
& aDIR
) {
4119 tmp
= talloc_asprintf_append(tmp
, CLI_DIRSEP_STR
);
4125 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4128 if (info
->matches
[info
->count
] == NULL
) {
4131 if (f
->mode
& aDIR
) {
4132 smb_readline_ca_char(0);
4134 if (info
->count
== 1) {
4135 info
->samelen
= strlen(info
->matches
[info
->count
]);
4137 while (strncmp(info
->matches
[info
->count
],
4138 info
->matches
[info
->count
-1],
4139 info
->samelen
) != 0) {
4147 static char **remote_completion(const char *text
, int len
)
4149 TALLOC_CTX
*ctx
= talloc_stackframe();
4150 char *dirmask
= NULL
;
4151 char *targetpath
= NULL
;
4152 struct cli_state
*targetcli
= NULL
;
4154 completion_remote_t info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4156 /* can't have non-static intialisation on Sun CC, so do it
4162 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4163 if (!info
.matches
) {
4169 * We're leaving matches[0] free to fill it later with the text to
4170 * display: Either the one single match or the longest common subset
4173 info
.matches
[0] = NULL
;
4176 for (i
= len
-1; i
>= 0; i
--) {
4177 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4182 info
.text
= text
+i
+1;
4183 info
.samelen
= info
.len
= len
-i
-1;
4186 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4187 if (!info
.dirmask
) {
4190 strncpy(info
.dirmask
, text
, i
+1);
4191 info
.dirmask
[i
+1] = 0;
4192 dirmask
= talloc_asprintf(ctx
,
4194 client_get_cur_dir(),
4198 info
.dirmask
= SMB_STRDUP("");
4199 if (!info
.dirmask
) {
4202 dirmask
= talloc_asprintf(ctx
,
4204 client_get_cur_dir());
4210 if (!cli_resolve_path(ctx
, "", cli
, dirmask
, &targetcli
, &targetpath
)) {
4213 if (cli_list(targetcli
, targetpath
, aDIR
| aSYSTEM
| aHIDDEN
,
4214 completion_remote_filter
, (void *)&info
) < 0) {
4218 if (info
.count
== 1) {
4220 * No matches at all, NULL indicates there is nothing
4222 SAFE_FREE(info
.matches
[0]);
4223 SAFE_FREE(info
.matches
);
4228 if (info
.count
== 2) {
4230 * Exactly one match in matches[1], indicate this is the one
4233 info
.matches
[0] = info
.matches
[1];
4234 info
.matches
[1] = NULL
;
4237 return info
.matches
;
4241 * We got more than one possible match, set the result to the maximum
4245 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4246 info
.matches
[info
.count
] = NULL
;
4247 return info
.matches
;
4250 for (i
= 0; i
< info
.count
; i
++) {
4251 SAFE_FREE(info
.matches
[i
]);
4253 SAFE_FREE(info
.matches
);
4254 SAFE_FREE(info
.dirmask
);
4259 static char **completion_fn(const char *text
, int start
, int end
)
4261 smb_readline_ca_char(' ');
4264 const char *buf
, *sp
;
4268 buf
= smb_readline_get_line_buffer();
4272 sp
= strchr(buf
, ' ');
4276 for (i
= 0; commands
[i
].name
; i
++) {
4277 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4278 (commands
[i
].name
[sp
- buf
] == 0)) {
4282 if (commands
[i
].name
== NULL
)
4288 if (sp
== (buf
+ start
))
4289 compl_type
= commands
[i
].compl_args
[0];
4291 compl_type
= commands
[i
].compl_args
[1];
4293 if (compl_type
== COMPL_REMOTE
)
4294 return remote_completion(text
, end
- start
);
4295 else /* fall back to local filename completion */
4299 int i
, len
, samelen
= 0, count
=1;
4301 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4308 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4309 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4310 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4311 if (!matches
[count
])
4314 samelen
= strlen(matches
[count
]);
4316 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4323 case 0: /* should never happen */
4327 matches
[0] = SMB_STRDUP(matches
[1]);
4330 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4333 strncpy(matches
[0], matches
[1], samelen
);
4334 matches
[0][samelen
] = 0;
4336 matches
[count
] = NULL
;
4340 for (i
= 0; i
< count
; i
++)
4348 static bool finished
;
4350 /****************************************************************************
4351 Make sure we swallow keepalives during idle time.
4352 ****************************************************************************/
4354 static void readline_callback(void)
4357 struct timeval timeout
;
4358 static time_t last_t
;
4374 FD_SET(cli
->fd
,&fds
);
4377 timeout
.tv_usec
= 0;
4378 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
4380 /* We deliberately use receive_smb_raw instead of
4381 client_receive_smb as we want to receive
4382 session keepalives and then drop them here.
4384 if (FD_ISSET(cli
->fd
,&fds
)) {
4388 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4390 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4392 if (!NT_STATUS_IS_OK(status
)) {
4393 DEBUG(0, ("Read from server failed, maybe it closed "
4394 "the connection\n"));
4397 smb_readline_done();
4398 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4399 set_smb_read_error(&cli
->smb_rw_error
,
4404 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4405 set_smb_read_error(&cli
->smb_rw_error
,
4410 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4413 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4414 DEBUG(0, ("Read from server "
4415 "returned unexpected packet!\n"));
4422 /* Ping the server to keep the connection alive using SMBecho. */
4425 unsigned char garbage
[16];
4426 memset(garbage
, 0xf0, sizeof(garbage
));
4427 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4429 if (!NT_STATUS_IS_OK(status
)) {
4430 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4431 "the connection\n"));
4433 smb_readline_done();
4438 /****************************************************************************
4439 Process commands on stdin.
4440 ****************************************************************************/
4442 static int process_stdin(void)
4447 TALLOC_CTX
*frame
= talloc_stackframe();
4449 char *the_prompt
= NULL
;
4453 /* display a prompt */
4454 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
4458 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
4459 SAFE_FREE(the_prompt
);
4465 /* special case - first char is ! */
4473 /* and get the first part of the command */
4475 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
4481 if ((i
= process_tok(tok
)) >= 0) {
4482 rc
= commands
[i
].fn();
4483 } else if (i
== -2) {
4484 d_printf("%s: command abbreviation ambiguous\n",tok
);
4486 d_printf("%s: command not found\n",tok
);
4494 /****************************************************************************
4495 Process commands from the client.
4496 ****************************************************************************/
4498 static int process(const char *base_directory
)
4502 cli
= cli_cm_open(talloc_tos(), NULL
,
4503 desthost
, service
, true, smb_encrypt
);
4508 if (base_directory
&& *base_directory
) {
4509 rc
= do_cd(base_directory
);
4517 rc
= process_command_string(cmdstr
);
4526 /****************************************************************************
4528 ****************************************************************************/
4530 static int do_host_query(const char *query_host
)
4532 struct sockaddr_storage ss
;
4534 cli
= cli_cm_open(talloc_tos(), NULL
,
4535 query_host
, "IPC$", true, smb_encrypt
);
4541 if (interpret_string_addr(&ss
, query_host
, 0) && (ss
.ss_family
!= AF_INET
)) {
4542 d_printf("%s is an IPv6 address -- no workgroup available\n",
4549 /* Workgroups simply don't make sense over anything
4550 else but port 139... */
4553 cli_cm_set_port( 139 );
4554 cli
= cli_cm_open(talloc_tos(), NULL
,
4555 query_host
, "IPC$", true, smb_encrypt
);
4559 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4563 list_servers(lp_workgroup());
4570 /****************************************************************************
4571 Handle a tar operation.
4572 ****************************************************************************/
4574 static int do_tar_op(const char *base_directory
)
4578 /* do we already have a connection? */
4580 cli
= cli_cm_open(talloc_tos(), NULL
,
4581 desthost
, service
, true, smb_encrypt
);
4588 if (base_directory
&& *base_directory
) {
4589 ret
= do_cd(base_directory
);
4603 /****************************************************************************
4604 Handle a message operation.
4605 ****************************************************************************/
4607 static int do_message_op(void)
4609 struct sockaddr_storage ss
;
4610 struct nmb_name called
, calling
;
4611 fstring server_name
;
4612 char name_type_hex
[10];
4616 make_nmb_name(&calling
, calling_name
, 0x0);
4617 make_nmb_name(&called
, desthost
, name_type
);
4619 fstrcpy(server_name
, desthost
);
4620 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
4621 fstrcat(server_name
, name_type_hex
);
4627 /* we can only do messages over port 139 (to windows clients at least) */
4629 msg_port
= port
? port
: 139;
4631 if (!(cli
=cli_initialise()) || (cli_set_port(cli
, msg_port
) != msg_port
)) {
4632 d_printf("Connection to %s failed\n", desthost
);
4636 status
= cli_connect(cli
, server_name
, &ss
);
4637 if (!NT_STATUS_IS_OK(status
)) {
4638 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
4642 if (!cli_session_request(cli
, &calling
, &called
)) {
4643 d_printf("session request failed\n");
4654 /****************************************************************************
4656 ****************************************************************************/
4658 int main(int argc
,char *argv
[])
4660 char *base_directory
= NULL
;
4662 char *query_host
= NULL
;
4663 bool message
= false;
4664 char *term_code
= NULL
;
4665 static const char *new_name_resolve_order
= NULL
;
4669 fstring new_workgroup
;
4670 bool tar_opt
= false;
4671 bool service_opt
= false;
4672 struct poptOption long_options
[] = {
4675 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4676 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
4677 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
4678 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
4679 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
4680 { "terminal", 't', POPT_ARG_STRING
, NULL
, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4681 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
4682 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4683 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
4684 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
4685 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
4686 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
4687 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
4688 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
4690 POPT_COMMON_CONNECTION
4691 POPT_COMMON_CREDENTIALS
4694 TALLOC_CTX
*frame
= talloc_stackframe();
4696 if (!client_set_cur_dir("\\")) {
4701 term_code
= talloc_strdup(frame
,KANJI
);
4703 term_code
= talloc_strdup(frame
,"");
4709 /* initialize the workgroup name so we can determine whether or
4710 not it was set by a command line option */
4712 set_global_myworkgroup( "" );
4713 set_global_myname( "" );
4715 /* set default debug level to 1 regardless of what smb.conf sets */
4716 setup_logging( "smbclient", true );
4717 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
4718 if ((dbf
= x_fdup(x_stderr
))) {
4719 x_setbuf( dbf
, NULL
);
4725 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
4726 poptSetOtherOptionHelp(pc
, "service <password>");
4728 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4730 while ((opt
= poptGetNextOpt(pc
)) != -1) {
4732 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4733 /* I see no other way to keep things sane --SSS */
4734 if (tar_opt
== true) {
4735 while (poptPeekArg(pc
)) {
4741 /* if the service has not yet been specified lets see if it is available in the popt stack */
4742 if (!service_opt
&& poptPeekArg(pc
)) {
4743 service
= talloc_strdup(frame
, poptGetArg(pc
));
4750 /* if the service has already been retrieved then check if we have also a password */
4751 if (service_opt
&& (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc
)) {
4752 set_cmdline_auth_info_password(poptGetArg(pc
));
4757 /* Messages are sent to NetBIOS name type 0x3
4758 * (Messenger Service). Make sure we default
4759 * to port 139 instead of port 445. srl,crh
4762 cli_cm_set_dest_name_type( name_type
);
4763 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
4768 cli_cm_set_port( 139 );
4773 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
4778 cli_cm_set_dest_ss(&dest_ss
);
4786 display_set_stderr();
4790 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
4796 term_code
= talloc_strdup(frame
,poptGetOptArg(pc
));
4802 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
4805 /* We must use old option processing for this. Find the
4806 * position of the -T option in the raw argv[]. */
4809 for (i
= 1; i
< argc
; i
++) {
4810 if (strncmp("-T", argv
[i
],2)==0)
4814 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
4815 poptPrintUsage(pc
, stderr
, 0);
4819 /* this must be the last option, mark we have parsed it so that we know we have */
4823 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
4824 if (!base_directory
) {
4835 return(do_smb_browse());
4840 /* We may still have some leftovers after the last popt option has been called */
4841 if (tar_opt
== true) {
4842 while (poptPeekArg(pc
)) {
4848 /* if the service has not yet been specified lets see if it is available in the popt stack */
4849 if (!service_opt
&& poptPeekArg(pc
)) {
4850 service
= talloc_strdup(frame
,poptGetArg(pc
));
4857 /* if the service has already been retrieved then check if we have also a password */
4858 if (service_opt
&& !get_cmdline_auth_info_got_pass() && poptPeekArg(pc
)) {
4859 set_cmdline_auth_info_password(poptGetArg(pc
));
4862 /* check for the -P option */
4865 cli_cm_set_port( port
);
4868 * Don't load debug level from smb.conf. It should be
4869 * set by cmdline arg or remain default (0)
4871 AllowDebugChange
= false;
4873 /* save the workgroup...
4875 FIXME!! do we need to do this for other options as well
4876 (or maybe a generic way to keep lp_load() from overwriting
4879 fstrcpy( new_workgroup
, lp_workgroup() );
4880 calling_name
= talloc_strdup(frame
, global_myname() );
4881 if (!calling_name
) {
4885 if ( override_logfile
)
4886 setup_logging( lp_logfile(), false );
4888 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4889 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
4890 argv
[0], get_dyn_CONFIGFILE());
4893 if (get_cmdline_auth_info_use_machine_account() &&
4894 !set_cmdline_auth_info_machine_account_creds()) {
4900 if (service_opt
&& service
) {
4903 /* Convert any '/' characters in the service name to '\' characters */
4904 string_replace(service
, '/','\\');
4905 if (count_chars(service
,'\\') < 3) {
4906 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
4907 poptPrintUsage(pc
, stderr
, 0);
4910 /* Remove trailing slashes */
4911 len
= strlen(service
);
4912 while(len
> 0 && service
[len
- 1] == '\\') {
4914 service
[len
] = '\0';
4918 if ( strlen(new_workgroup
) != 0 ) {
4919 set_global_myworkgroup( new_workgroup
);
4922 if ( strlen(calling_name
) != 0 ) {
4923 set_global_myname( calling_name
);
4925 TALLOC_FREE(calling_name
);
4926 calling_name
= talloc_strdup(frame
, global_myname() );
4929 smb_encrypt
= get_cmdline_auth_info_smb_encrypt();
4930 if (!init_names()) {
4931 fprintf(stderr
, "init_names() failed\n");
4935 if(new_name_resolve_order
)
4936 lp_set_name_resolve_order(new_name_resolve_order
);
4938 if (!tar_type
&& !query_host
&& !service
&& !message
) {
4939 poptPrintUsage(pc
, stderr
, 0);
4943 poptFreeContext(pc
);
4945 /* Store the username and password for dfs support */
4947 cli_cm_set_credentials();
4949 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING
));
4953 process_command_string(cmdstr
);
4954 return do_tar_op(base_directory
);
4957 if (query_host
&& *query_host
) {
4958 char *qhost
= query_host
;
4961 while (*qhost
== '\\' || *qhost
== '/')
4964 if ((slash
= strchr_m(qhost
, '/'))
4965 || (slash
= strchr_m(qhost
, '\\'))) {
4969 if ((p
=strchr_m(qhost
, '#'))) {
4972 sscanf(p
, "%x", &name_type
);
4973 cli_cm_set_dest_name_type( name_type
);
4976 return do_host_query(qhost
);
4980 return do_message_op();
4983 if (process(base_directory
)) {