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
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "../client/client_proto.h"
31 struct cli_state
*cli
;
32 extern BOOL in_client
;
34 pstring cur_dir
= "\\";
35 static pstring cd_path
= "";
36 static pstring service
;
37 static pstring desthost
;
38 static pstring username
;
39 static pstring password
;
40 static BOOL use_kerberos
;
42 static BOOL grepable
=False
;
43 static char *cmdstr
= NULL
;
45 static int io_bufsize
= 64512;
47 static int name_type
= 0x20;
48 static int max_protocol
= PROTOCOL_NT1
;
50 static int process_tok(pstring tok
);
51 static int cmd_help(void);
53 /* 30 second timeout on most commands */
54 #define CLIENT_TIMEOUT (30*1000)
55 #define SHORT_TIMEOUT (5*1000)
57 /* value for unused fid field in trans2 secondary request */
58 #define FID_UNUSED (0xFFFF)
60 time_t newer_than
= 0;
61 static int archive_level
= 0;
63 static BOOL translation
= False
;
67 /* clitar bits insert */
70 extern BOOL tar_reset
;
74 static BOOL prompt
= True
;
76 static int printmode
= 1;
78 static BOOL recurse
= False
;
79 BOOL lowercase
= False
;
81 static struct in_addr dest_ip
;
83 #define SEPARATORS " \t\n\r"
85 static BOOL abort_mget
= True
;
87 static pstring fileselection
= "";
89 extern file_info def_finfo
;
92 SMB_BIG_UINT get_total_size
= 0;
93 unsigned int get_total_time_ms
= 0;
94 static SMB_BIG_UINT put_total_size
= 0;
95 static unsigned int put_total_time_ms
= 0;
98 static double dir_total
;
102 /* some forward declarations */
103 static struct cli_state
*do_connect(const char *server
, const char *share
);
105 /****************************************************************************
106 Write to a local file with CR/LF->LF translation if appropriate. Return the
107 number taken from the buffer. This may not equal the number written.
108 ****************************************************************************/
110 static int writefile(int f
, char *b
, int n
)
120 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
123 if (write(f
, b
, 1) != 1) {
133 /****************************************************************************
134 Read from a file with LF->CR/LF translation if appropriate. Return the
135 number read. read approx n bytes.
136 ****************************************************************************/
138 static int readfile(char *b
, int n
, XFILE
*f
)
144 return x_fread(b
,1,n
,f
);
147 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
148 if ((c
= x_getc(f
)) == EOF
) {
152 if (c
== '\n') { /* change all LFs to CR/LF */
162 /****************************************************************************
164 ****************************************************************************/
166 static void send_message(void)
171 if (!cli_message_start(cli
, desthost
, username
, &grp_id
)) {
172 d_printf("message start: %s\n", cli_errstr(cli
));
177 d_printf("Connected. Type your message, ending it with a Control-D\n");
179 while (!feof(stdin
) && total_len
< 1600) {
180 int maxlen
= MIN(1600 - total_len
,127);
187 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
193 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
194 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
201 if (total_len
>= 1600)
202 d_printf("the message was truncated to 1600 bytes\n");
204 d_printf("sent %d bytes\n",total_len
);
206 if (!cli_message_end(cli
, grp_id
)) {
207 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
212 /****************************************************************************
213 Check the space on a device.
214 ****************************************************************************/
216 static int do_dskattr(void)
218 int total
, bsize
, avail
;
220 if (!cli_dskattr(cli
, &bsize
, &total
, &avail
)) {
221 d_printf("Error in dskattr: %s\n",cli_errstr(cli
));
225 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
226 total
, bsize
, avail
);
231 /****************************************************************************
233 ****************************************************************************/
235 static int cmd_pwd(void)
237 d_printf("Current directory is %s",service
);
238 d_printf("%s\n",cur_dir
);
242 /****************************************************************************
243 Change directory - inner section.
244 ****************************************************************************/
246 static int do_cd(char *newdir
)
254 /* Save the current directory in case the
255 new directory is invalid */
256 pstrcpy(saved_dir
, cur_dir
);
261 if (*(cur_dir
+strlen(cur_dir
)-1) != '\\') {
262 pstrcat(cur_dir
, "\\");
264 dos_clean_name(cur_dir
);
265 pstrcpy(dname
,cur_dir
);
266 pstrcat(cur_dir
,"\\");
267 dos_clean_name(cur_dir
);
269 if (!strequal(cur_dir
,"\\")) {
270 if (!cli_chkpath(cli
, dname
)) {
271 d_printf("cd %s: %s\n", dname
, cli_errstr(cli
));
272 pstrcpy(cur_dir
,saved_dir
);
276 pstrcpy(cd_path
,cur_dir
);
281 /****************************************************************************
283 ****************************************************************************/
285 static int cmd_cd(void)
290 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
293 d_printf("Current directory is %s\n",cur_dir
);
298 /*******************************************************************
299 Decide if a file should be operated on.
300 ********************************************************************/
302 static BOOL
do_this_one(file_info
*finfo
)
304 if (finfo
->mode
& aDIR
)
307 if (*fileselection
&&
308 !mask_match(finfo
->name
,fileselection
,False
)) {
309 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
313 if (newer_than
&& finfo
->mtime
< newer_than
) {
314 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
318 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
319 DEBUG(3,("archive %s failed\n", finfo
->name
));
326 /****************************************************************************
327 Display info about a file.
328 ****************************************************************************/
330 static void display_finfo(file_info
*finfo
)
332 if (do_this_one(finfo
)) {
333 time_t t
= finfo
->mtime
; /* the time is assumed to be passed as GMT */
334 d_printf(" %-30s%7.7s %8.0f %s",
336 attrib_string(finfo
->mode
),
338 asctime(LocalTime(&t
)));
339 dir_total
+= finfo
->size
;
343 /****************************************************************************
344 Accumulate size of a file.
345 ****************************************************************************/
347 static void do_du(file_info
*finfo
)
349 if (do_this_one(finfo
)) {
350 dir_total
+= finfo
->size
;
354 static BOOL do_list_recurse
;
355 static BOOL do_list_dirs
;
356 static char *do_list_queue
= 0;
357 static long do_list_queue_size
= 0;
358 static long do_list_queue_start
= 0;
359 static long do_list_queue_end
= 0;
360 static void (*do_list_fn
)(file_info
*);
362 /****************************************************************************
363 Functions for do_list_queue.
364 ****************************************************************************/
367 * The do_list_queue is a NUL-separated list of strings stored in a
368 * char*. Since this is a FIFO, we keep track of the beginning and
369 * ending locations of the data in the queue. When we overflow, we
370 * double the size of the char*. When the start of the data passes
371 * the midpoint, we move everything back. This is logically more
372 * complex than a linked list, but easier from a memory management
373 * angle. In any memory error condition, do_list_queue is reset.
374 * Functions check to ensure that do_list_queue is non-NULL before
378 static void reset_do_list_queue(void)
380 SAFE_FREE(do_list_queue
);
381 do_list_queue_size
= 0;
382 do_list_queue_start
= 0;
383 do_list_queue_end
= 0;
386 static void init_do_list_queue(void)
388 reset_do_list_queue();
389 do_list_queue_size
= 1024;
390 do_list_queue
= malloc(do_list_queue_size
);
391 if (do_list_queue
== 0) {
392 d_printf("malloc fail for size %d\n",
393 (int)do_list_queue_size
);
394 reset_do_list_queue();
396 memset(do_list_queue
, 0, do_list_queue_size
);
400 static void adjust_do_list_queue(void)
403 * If the starting point of the queue is more than half way through,
404 * move everything toward the beginning.
406 if (do_list_queue
&& (do_list_queue_start
== do_list_queue_end
)) {
407 DEBUG(4,("do_list_queue is empty\n"));
408 do_list_queue_start
= do_list_queue_end
= 0;
409 *do_list_queue
= '\0';
410 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
411 DEBUG(4,("sliding do_list_queue backward\n"));
412 memmove(do_list_queue
,
413 do_list_queue
+ do_list_queue_start
,
414 do_list_queue_end
- do_list_queue_start
);
415 do_list_queue_end
-= do_list_queue_start
;
416 do_list_queue_start
= 0;
420 static void add_to_do_list_queue(const char* entry
)
423 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
424 while (new_end
> do_list_queue_size
) {
425 do_list_queue_size
*= 2;
426 DEBUG(4,("enlarging do_list_queue to %d\n",
427 (int)do_list_queue_size
));
428 dlq
= Realloc(do_list_queue
, do_list_queue_size
);
430 d_printf("failure enlarging do_list_queue to %d bytes\n",
431 (int)do_list_queue_size
);
432 reset_do_list_queue();
435 memset(do_list_queue
+ do_list_queue_size
/ 2,
436 0, do_list_queue_size
/ 2);
440 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
441 entry
, do_list_queue
, do_list_queue_size
);
442 do_list_queue_end
= new_end
;
443 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
444 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
448 static char *do_list_queue_head(void)
450 return do_list_queue
+ do_list_queue_start
;
453 static void remove_do_list_queue_head(void)
455 if (do_list_queue_end
> do_list_queue_start
) {
456 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
457 adjust_do_list_queue();
458 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
459 (int)do_list_queue_start
, (int)do_list_queue_end
));
463 static int do_list_queue_empty(void)
465 return (! (do_list_queue
&& *do_list_queue
));
468 /****************************************************************************
469 A helper for do_list.
470 ****************************************************************************/
472 static void do_list_helper(file_info
*f
, const char *mask
, void *state
)
474 if (f
->mode
& aDIR
) {
475 if (do_list_dirs
&& do_this_one(f
)) {
478 if (do_list_recurse
&&
479 !strequal(f
->name
,".") &&
480 !strequal(f
->name
,"..")) {
485 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
489 pstrcpy(mask2
, mask
);
490 p
= strrchr_m(mask2
,'\\');
494 pstrcat(mask2
, f
->name
);
495 pstrcat(mask2
,"\\*");
496 add_to_do_list_queue(mask2
);
501 if (do_this_one(f
)) {
506 /****************************************************************************
507 A wrapper around cli_list that adds recursion.
508 ****************************************************************************/
510 void do_list(const char *mask
,uint16 attribute
,void (*fn
)(file_info
*),BOOL rec
, BOOL dirs
)
512 static int in_do_list
= 0;
514 if (in_do_list
&& rec
) {
515 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
521 do_list_recurse
= rec
;
526 init_do_list_queue();
527 add_to_do_list_queue(mask
);
529 while (! do_list_queue_empty()) {
531 * Need to copy head so that it doesn't become
532 * invalid inside the call to cli_list. This
533 * would happen if the list were expanded
535 * Fix from E. Jay Berkenbilt (ejb@ql.org)
538 pstrcpy(head
, do_list_queue_head());
539 cli_list(cli
, head
, attribute
, do_list_helper
, NULL
);
540 remove_do_list_queue_head();
541 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
542 char* next_file
= do_list_queue_head();
544 if ((strlen(next_file
) >= 2) &&
545 (next_file
[strlen(next_file
) - 1] == '*') &&
546 (next_file
[strlen(next_file
) - 2] == '\\')) {
547 save_ch
= next_file
+
548 strlen(next_file
) - 2;
551 d_printf("\n%s\n",next_file
);
558 if (cli_list(cli
, mask
, attribute
, do_list_helper
, NULL
) == -1) {
559 d_printf("%s listing %s\n", cli_errstr(cli
), mask
);
564 reset_do_list_queue();
567 /****************************************************************************
568 Get a directory listing.
569 ****************************************************************************/
571 static int cmd_dir(void)
573 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
580 if (strcmp(cur_dir
, "\\") != 0) {
581 pstrcpy(mask
,cur_dir
);
582 if(mask
[strlen(mask
)-1]!='\\')
588 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
598 do_list(mask
, attribute
, display_finfo
, recurse
, True
);
602 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
607 /****************************************************************************
608 Get a directory listing.
609 ****************************************************************************/
611 static int cmd_du(void)
613 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
620 pstrcpy(mask
,cur_dir
);
621 if(mask
[strlen(mask
)-1]!='\\')
624 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
634 do_list(mask
, attribute
, do_du
, recurse
, True
);
638 d_printf("Total number of bytes: %.0f\n", dir_total
);
643 /****************************************************************************
644 Get a file from rname to lname
645 ****************************************************************************/
647 static int do_get(char *rname
, char *lname
, BOOL reget
)
649 int handle
= 0, fnum
;
650 BOOL newhandle
= False
;
652 struct timeval tp_start
;
653 int read_size
= io_bufsize
;
660 GetTimeOfDay(&tp_start
);
666 fnum
= cli_open(cli
, rname
, O_RDONLY
, DENY_NONE
);
669 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
673 if(!strcmp(lname
,"-")) {
674 handle
= fileno(stdout
);
677 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
679 start
= sys_lseek(handle
, 0, SEEK_END
);
681 d_printf("Error seeking local file\n");
686 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
691 d_printf("Error opening local file %s\n",lname
);
696 if (!cli_qfileinfo(cli
, fnum
,
697 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
698 !cli_getattrE(cli
, fnum
,
699 &attr
, &size
, NULL
, NULL
, NULL
)) {
700 d_printf("getattrib: %s\n",cli_errstr(cli
));
704 DEBUG(2,("getting file %s of size %.0f as %s ",
705 rname
, (double)size
, lname
));
707 if(!(data
= (char *)malloc(read_size
))) {
708 d_printf("malloc fail for size %d\n", read_size
);
709 cli_close(cli
, fnum
);
714 int n
= cli_read(cli
, fnum
, data
, nread
+ start
, read_size
);
719 if (writefile(handle
,data
, n
) != n
) {
720 d_printf("Error writing local file\n");
728 if (nread
+ start
< size
) {
729 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
730 rname
, (long)nread
));
737 if (!cli_close(cli
, fnum
)) {
738 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
746 if (archive_level
>= 2 && (attr
& aARCH
)) {
747 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
751 struct timeval tp_end
;
754 GetTimeOfDay(&tp_end
);
756 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
757 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
758 get_total_time_ms
+= this_time
;
759 get_total_size
+= nread
;
761 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
762 nread
/ (1.024*this_time
+ 1.0e-4),
763 get_total_size
/ (1.024*get_total_time_ms
)));
769 /****************************************************************************
771 ****************************************************************************/
773 static int cmd_get(void)
779 pstrcpy(rname
,cur_dir
);
782 p
= rname
+ strlen(rname
);
784 if (!next_token_nr(NULL
,p
,NULL
,sizeof(rname
)-strlen(rname
))) {
785 d_printf("get <filename>\n");
789 dos_clean_name(rname
);
791 next_token_nr(NULL
,lname
,NULL
,sizeof(lname
));
793 return do_get(rname
, lname
, False
);
796 /****************************************************************************
797 Do an mget operation on one file.
798 ****************************************************************************/
800 static void do_mget(file_info
*finfo
)
804 pstring saved_curdir
;
807 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
811 d_printf("mget aborted\n");
815 if (finfo
->mode
& aDIR
)
816 slprintf(quest
,sizeof(pstring
)-1,
817 "Get directory %s? ",finfo
->name
);
819 slprintf(quest
,sizeof(pstring
)-1,
820 "Get file %s? ",finfo
->name
);
822 if (prompt
&& !yesno(quest
))
825 if (!(finfo
->mode
& aDIR
)) {
826 pstrcpy(rname
,cur_dir
);
827 pstrcat(rname
,finfo
->name
);
828 do_get(rname
, finfo
->name
, False
);
832 /* handle directories */
833 pstrcpy(saved_curdir
,cur_dir
);
835 pstrcat(cur_dir
,finfo
->name
);
836 pstrcat(cur_dir
,"\\");
838 unix_format(finfo
->name
);
840 strlower_m(finfo
->name
);
842 if (!directory_exist(finfo
->name
,NULL
) &&
843 mkdir(finfo
->name
,0777) != 0) {
844 d_printf("failed to create directory %s\n",finfo
->name
);
845 pstrcpy(cur_dir
,saved_curdir
);
849 if (chdir(finfo
->name
) != 0) {
850 d_printf("failed to chdir to directory %s\n",finfo
->name
);
851 pstrcpy(cur_dir
,saved_curdir
);
855 pstrcpy(mget_mask
,cur_dir
);
856 pstrcat(mget_mask
,"*");
858 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,False
, True
);
860 pstrcpy(cur_dir
,saved_curdir
);
863 /****************************************************************************
864 View the file using the pager.
865 ****************************************************************************/
867 static int cmd_more(void)
869 pstring rname
,lname
,pager_cmd
;
874 pstrcpy(rname
,cur_dir
);
877 slprintf(lname
,sizeof(lname
)-1, "%s/smbmore.XXXXXX",tmpdir());
878 fd
= smb_mkstemp(lname
);
880 d_printf("failed to create temporary file for more\n");
885 if (!next_token_nr(NULL
,rname
+strlen(rname
),NULL
,sizeof(rname
)-strlen(rname
))) {
886 d_printf("more <filename>\n");
890 dos_clean_name(rname
);
892 rc
= do_get(rname
, lname
, False
);
894 pager
=getenv("PAGER");
896 slprintf(pager_cmd
,sizeof(pager_cmd
)-1,
897 "%s %s",(pager
? pager
:PAGER
), lname
);
904 /****************************************************************************
906 ****************************************************************************/
908 static int cmd_mget(void)
910 uint16 attribute
= aSYSTEM
| aHIDDEN
;
922 while (next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
923 pstrcpy(mget_mask
,cur_dir
);
924 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
925 pstrcat(mget_mask
,"\\");
928 pstrcpy(mget_mask
,p
);
930 pstrcat(mget_mask
,p
);
931 do_list(mget_mask
, attribute
,do_mget
,False
,True
);
935 pstrcpy(mget_mask
,cur_dir
);
936 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
937 pstrcat(mget_mask
,"\\");
938 pstrcat(mget_mask
,"*");
939 do_list(mget_mask
, attribute
,do_mget
,False
,True
);
945 /****************************************************************************
946 Make a directory of name "name".
947 ****************************************************************************/
949 static BOOL
do_mkdir(char *name
)
951 if (!cli_mkdir(cli
, name
)) {
952 d_printf("%s making remote directory %s\n",
953 cli_errstr(cli
),name
);
960 /****************************************************************************
961 Show 8.3 name of a file.
962 ****************************************************************************/
964 static BOOL
do_altname(char *name
)
967 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
968 d_printf("%s getting alt name for %s\n",
969 cli_errstr(cli
),name
);
972 d_printf("%s\n", altname
);
977 /****************************************************************************
979 ****************************************************************************/
981 static int cmd_quit(void)
989 /****************************************************************************
991 ****************************************************************************/
993 static int cmd_mkdir(void)
999 pstrcpy(mask
,cur_dir
);
1001 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1003 d_printf("mkdir <dirname>\n");
1014 trim_char(ddir
,'.','\0');
1015 p
= strtok(ddir
,"/\\");
1018 if (!cli_chkpath(cli
, ddir2
)) {
1021 pstrcat(ddir2
,"\\");
1022 p
= strtok(NULL
,"/\\");
1031 /****************************************************************************
1033 ****************************************************************************/
1035 static int cmd_altname(void)
1041 pstrcpy(name
,cur_dir
);
1043 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1044 d_printf("altname <file>\n");
1054 /****************************************************************************
1056 ****************************************************************************/
1058 static int do_put(char *rname
, char *lname
, BOOL reput
)
1065 int maxwrite
= io_bufsize
;
1068 struct timeval tp_start
;
1069 GetTimeOfDay(&tp_start
);
1072 fnum
= cli_open(cli
, rname
, O_RDWR
|O_CREAT
, DENY_NONE
);
1074 if (!cli_qfileinfo(cli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1075 !cli_getattrE(cli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
)) {
1076 d_printf("getattrib: %s\n",cli_errstr(cli
));
1081 fnum
= cli_open(cli
, rname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
);
1085 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1089 /* allow files to be piped into smbclient
1092 Note that in this case this function will exit(0) rather
1094 if (!strcmp(lname
, "-")) {
1096 /* size of file is not known */
1098 f
= x_fopen(lname
,O_RDONLY
, 0);
1100 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1101 d_printf("Error seeking local file\n");
1108 d_printf("Error opening local file %s\n",lname
);
1112 DEBUG(1,("putting file %s as %s ",lname
,
1115 buf
= (char *)malloc(maxwrite
);
1117 d_printf("ERROR: Not enough memory!\n");
1120 while (!x_feof(f
)) {
1124 if ((n
= readfile(buf
,n
,f
)) < 1) {
1125 if((n
== 0) && x_feof(f
))
1126 break; /* Empty local file. */
1128 d_printf("Error reading local file: %s\n", strerror(errno
));
1133 ret
= cli_write(cli
, fnum
, 0, buf
, nread
+ start
, n
);
1136 d_printf("Error writing file: %s\n", cli_errstr(cli
));
1144 if (!cli_close(cli
, fnum
)) {
1145 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1159 struct timeval tp_end
;
1162 GetTimeOfDay(&tp_end
);
1164 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1165 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1166 put_total_time_ms
+= this_time
;
1167 put_total_size
+= nread
;
1169 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1170 nread
/ (1.024*this_time
+ 1.0e-4),
1171 put_total_size
/ (1.024*put_total_time_ms
)));
1182 /****************************************************************************
1184 ****************************************************************************/
1186 static int cmd_put(void)
1193 pstrcpy(rname
,cur_dir
);
1194 pstrcat(rname
,"\\");
1196 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1197 d_printf("put <filename>\n");
1202 if (next_token_nr(NULL
,p
,NULL
,sizeof(buf
)))
1205 pstrcat(rname
,lname
);
1207 dos_clean_name(rname
);
1211 /* allow '-' to represent stdin
1212 jdblair, 24.jun.98 */
1213 if (!file_exist(lname
,&st
) &&
1214 (strcmp(lname
,"-"))) {
1215 d_printf("%s does not exist\n",lname
);
1220 return do_put(rname
, lname
, False
);
1223 /*************************************
1224 File list structure.
1225 *************************************/
1227 static struct file_list
{
1228 struct file_list
*prev
, *next
;
1233 /****************************************************************************
1234 Free a file_list structure.
1235 ****************************************************************************/
1237 static void free_file_list (struct file_list
* list
)
1239 struct file_list
*tmp
;
1243 DLIST_REMOVE(list
, list
);
1244 SAFE_FREE(tmp
->file_path
);
1249 /****************************************************************************
1250 Seek in a directory/file list until you get something that doesn't start with
1252 ****************************************************************************/
1254 static BOOL
seek_list(struct file_list
*list
, char *name
)
1257 trim_string(list
->file_path
,"./","\n");
1258 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1267 /****************************************************************************
1268 Set the file selection mask.
1269 ****************************************************************************/
1271 static int cmd_select(void)
1273 pstrcpy(fileselection
,"");
1274 next_token_nr(NULL
,fileselection
,NULL
,sizeof(fileselection
));
1279 /****************************************************************************
1280 Recursive file matching function act as find
1281 match must be always set to True when calling this function
1282 ****************************************************************************/
1284 static int file_find(struct file_list
**list
, const char *directory
,
1285 const char *expression
, BOOL match
)
1288 struct file_list
*entry
;
1289 struct stat statbuf
;
1295 dir
= opendir(directory
);
1299 while ((dname
= readdirname(dir
))) {
1300 if (!strcmp("..", dname
))
1302 if (!strcmp(".", dname
))
1305 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1310 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1312 ret
= stat(path
, &statbuf
);
1314 if (S_ISDIR(statbuf
.st_mode
)) {
1316 ret
= file_find(list
, path
, expression
, False
);
1319 d_printf("file_find: cannot stat file %s\n", path
);
1328 entry
= (struct file_list
*) malloc(sizeof (struct file_list
));
1330 d_printf("Out of memory in file_find\n");
1334 entry
->file_path
= path
;
1335 entry
->isdir
= isdir
;
1336 DLIST_ADD(*list
, entry
);
1346 /****************************************************************************
1348 ****************************************************************************/
1350 static int cmd_mput(void)
1355 while (next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1357 struct file_list
*temp_list
;
1358 char *quest
, *lname
, *rname
;
1362 ret
= file_find(&file_list
, ".", p
, True
);
1364 free_file_list(file_list
);
1372 for (temp_list
= file_list
; temp_list
;
1373 temp_list
= temp_list
->next
) {
1376 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0)
1378 trim_string(lname
, "./", "/");
1380 /* check if it's a directory */
1381 if (temp_list
->isdir
) {
1382 /* if (!recurse) continue; */
1385 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) break;
1386 if (prompt
&& !yesno(quest
)) { /* No */
1387 /* Skip the directory */
1388 lname
[strlen(lname
)-1] = '/';
1389 if (!seek_list(temp_list
, lname
))
1393 if(asprintf(&rname
, "%s%s", cur_dir
, lname
) < 0) break;
1395 if (!cli_chkpath(cli
, rname
) &&
1397 DEBUG (0, ("Unable to make dir, skipping..."));
1398 /* Skip the directory */
1399 lname
[strlen(lname
)-1] = '/';
1400 if (!seek_list(temp_list
, lname
))
1407 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) break;
1408 if (prompt
&& !yesno(quest
)) /* No */
1413 if (asprintf(&rname
, "%s%s", cur_dir
, lname
) < 0) break;
1418 do_put(rname
, lname
, False
);
1420 free_file_list(file_list
);
1429 /****************************************************************************
1431 ****************************************************************************/
1433 static int do_cancel(int job
)
1435 if (cli_printjob_del(cli
, job
)) {
1436 d_printf("Job %d cancelled\n",job
);
1439 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
1444 /****************************************************************************
1446 ****************************************************************************/
1448 static int cmd_cancel(void)
1453 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1454 d_printf("cancel <jobid> ...\n");
1460 } while (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)));
1465 /****************************************************************************
1467 ****************************************************************************/
1469 static int cmd_print(void)
1475 if (!next_token_nr(NULL
,lname
,NULL
, sizeof(lname
))) {
1476 d_printf("print <filename>\n");
1480 pstrcpy(rname
,lname
);
1481 p
= strrchr_m(rname
,'/');
1483 slprintf(rname
, sizeof(rname
)-1, "%s-%d", p
+1, (int)sys_getpid());
1486 if (strequal(lname
,"-")) {
1487 slprintf(rname
, sizeof(rname
)-1, "stdin-%d", (int)sys_getpid());
1490 return do_put(rname
, lname
, False
);
1493 /****************************************************************************
1494 Show a print queue entry.
1495 ****************************************************************************/
1497 static void queue_fn(struct print_job_info
*p
)
1499 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
1502 /****************************************************************************
1504 ****************************************************************************/
1506 static int cmd_queue(void)
1508 cli_print_queue(cli
, queue_fn
);
1513 /****************************************************************************
1515 ****************************************************************************/
1517 static void do_del(file_info
*finfo
)
1521 pstrcpy(mask
,cur_dir
);
1522 pstrcat(mask
,finfo
->name
);
1524 if (finfo
->mode
& aDIR
)
1527 if (!cli_unlink(cli
, mask
)) {
1528 d_printf("%s deleting remote file %s\n",cli_errstr(cli
),mask
);
1532 /****************************************************************************
1534 ****************************************************************************/
1536 static int cmd_del(void)
1540 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1545 pstrcpy(mask
,cur_dir
);
1547 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1548 d_printf("del <filename>\n");
1553 do_list(mask
, attribute
,do_del
,False
,False
);
1558 /****************************************************************************
1559 ****************************************************************************/
1561 static int cmd_open(void)
1566 pstrcpy(mask
,cur_dir
);
1568 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1569 d_printf("open <filename>\n");
1574 cli_open(cli
, mask
, O_RDWR
, DENY_ALL
);
1580 /****************************************************************************
1582 ****************************************************************************/
1584 static int cmd_rmdir(void)
1589 pstrcpy(mask
,cur_dir
);
1591 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1592 d_printf("rmdir <dirname>\n");
1597 if (!cli_rmdir(cli
, mask
)) {
1598 d_printf("%s removing remote directory file %s\n",
1599 cli_errstr(cli
),mask
);
1605 /****************************************************************************
1607 ****************************************************************************/
1609 static int cmd_link(void)
1614 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1615 d_printf("Server doesn't support UNIX CIFS calls.\n");
1619 pstrcpy(src
,cur_dir
);
1620 pstrcpy(dest
,cur_dir
);
1622 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1623 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1624 d_printf("link <src> <dest>\n");
1631 if (!cli_unix_hardlink(cli
, src
, dest
)) {
1632 d_printf("%s linking files (%s -> %s)\n", cli_errstr(cli
), src
, dest
);
1639 /****************************************************************************
1641 ****************************************************************************/
1643 static int cmd_symlink(void)
1648 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1649 d_printf("Server doesn't support UNIX CIFS calls.\n");
1653 pstrcpy(src
,cur_dir
);
1654 pstrcpy(dest
,cur_dir
);
1656 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1657 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1658 d_printf("symlink <src> <dest>\n");
1665 if (!cli_unix_symlink(cli
, src
, dest
)) {
1666 d_printf("%s symlinking files (%s -> %s)\n",
1667 cli_errstr(cli
), src
, dest
);
1674 /****************************************************************************
1676 ****************************************************************************/
1678 static int cmd_chmod(void)
1684 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1685 d_printf("Server doesn't support UNIX CIFS calls.\n");
1689 pstrcpy(src
,cur_dir
);
1691 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1692 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1693 d_printf("chmod mode file\n");
1697 mode
= (mode_t
)strtol(buf
, NULL
, 8);
1700 if (!cli_unix_chmod(cli
, src
, mode
)) {
1701 d_printf("%s chmod file %s 0%o\n",
1702 cli_errstr(cli
), src
, (unsigned int)mode
);
1709 /****************************************************************************
1711 ****************************************************************************/
1713 static int cmd_chown(void)
1718 pstring buf
, buf2
, buf3
;
1720 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1721 d_printf("Server doesn't support UNIX CIFS calls.\n");
1725 pstrcpy(src
,cur_dir
);
1727 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1728 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
)) ||
1729 !next_token_nr(NULL
,buf3
,NULL
, sizeof(buf3
))) {
1730 d_printf("chown uid gid file\n");
1734 uid
= (uid_t
)atoi(buf
);
1735 gid
= (gid_t
)atoi(buf2
);
1738 if (!cli_unix_chown(cli
, src
, uid
, gid
)) {
1739 d_printf("%s chown file %s uid=%d, gid=%d\n",
1740 cli_errstr(cli
), src
, (int)uid
, (int)gid
);
1747 /****************************************************************************
1749 ****************************************************************************/
1751 static int cmd_rename(void)
1756 pstrcpy(src
,cur_dir
);
1757 pstrcpy(dest
,cur_dir
);
1759 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1760 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1761 d_printf("rename <src> <dest>\n");
1768 if (!cli_rename(cli
, src
, dest
)) {
1769 d_printf("%s renaming files\n",cli_errstr(cli
));
1776 /****************************************************************************
1777 Hard link files using the NT call.
1778 ****************************************************************************/
1780 static int cmd_hardlink(void)
1785 pstrcpy(src
,cur_dir
);
1786 pstrcpy(dest
,cur_dir
);
1788 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1789 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1790 d_printf("hardlink <src> <dest>\n");
1797 if (!cli_nt_hardlink(cli
, src
, dest
)) {
1798 d_printf("%s doing an NT hard link of files\n",cli_errstr(cli
));
1805 /****************************************************************************
1806 Toggle the prompt flag.
1807 ****************************************************************************/
1809 static int cmd_prompt(void)
1812 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
1817 /****************************************************************************
1818 Set the newer than time.
1819 ****************************************************************************/
1821 static int cmd_newer(void)
1825 SMB_STRUCT_STAT sbuf
;
1827 ok
= next_token_nr(NULL
,buf
,NULL
,sizeof(buf
));
1828 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
1829 newer_than
= sbuf
.st_mtime
;
1830 DEBUG(1,("Getting files newer than %s",
1831 asctime(LocalTime(&newer_than
))));
1836 if (ok
&& newer_than
== 0) {
1837 d_printf("Error setting newer-than time\n");
1844 /****************************************************************************
1845 Set the archive level.
1846 ****************************************************************************/
1848 static int cmd_archive(void)
1852 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1853 archive_level
= atoi(buf
);
1855 d_printf("Archive level is %d\n",archive_level
);
1860 /****************************************************************************
1861 Toggle the lowercaseflag.
1862 ****************************************************************************/
1864 static int cmd_lowercase(void)
1866 lowercase
= !lowercase
;
1867 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
1872 /****************************************************************************
1873 Toggle the recurse flag.
1874 ****************************************************************************/
1876 static int cmd_recurse(void)
1879 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
1884 /****************************************************************************
1885 Toggle the translate flag.
1886 ****************************************************************************/
1888 static int cmd_translate(void)
1890 translation
= !translation
;
1891 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
1892 translation
?"on":"off"));
1897 /****************************************************************************
1898 Do a printmode command.
1899 ****************************************************************************/
1901 static int cmd_printmode(void)
1906 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1907 if (strequal(buf
,"text")) {
1910 if (strequal(buf
,"graphics"))
1913 printmode
= atoi(buf
);
1919 fstrcpy(mode
,"text");
1922 fstrcpy(mode
,"graphics");
1925 slprintf(mode
,sizeof(mode
)-1,"%d",printmode
);
1929 DEBUG(2,("the printmode is now %s\n",mode
));
1934 /****************************************************************************
1936 ****************************************************************************/
1938 static int cmd_lcd(void)
1943 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
1945 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
1950 /****************************************************************************
1951 Get a file restarting at end of local file.
1952 ****************************************************************************/
1954 static int cmd_reget(void)
1957 pstring remote_name
;
1960 pstrcpy(remote_name
, cur_dir
);
1961 pstrcat(remote_name
, "\\");
1963 p
= remote_name
+ strlen(remote_name
);
1965 if (!next_token_nr(NULL
, p
, NULL
, sizeof(remote_name
) - strlen(remote_name
))) {
1966 d_printf("reget <filename>\n");
1969 pstrcpy(local_name
, p
);
1970 dos_clean_name(remote_name
);
1972 next_token_nr(NULL
, local_name
, NULL
, sizeof(local_name
));
1974 return do_get(remote_name
, local_name
, True
);
1977 /****************************************************************************
1978 Put a file restarting at end of local file.
1979 ****************************************************************************/
1981 static int cmd_reput(void)
1984 pstring remote_name
;
1989 pstrcpy(remote_name
, cur_dir
);
1990 pstrcat(remote_name
, "\\");
1992 if (!next_token_nr(NULL
, p
, NULL
, sizeof(buf
))) {
1993 d_printf("reput <filename>\n");
1996 pstrcpy(local_name
, p
);
1998 if (!file_exist(local_name
, &st
)) {
1999 d_printf("%s does not exist\n", local_name
);
2003 if (next_token_nr(NULL
, p
, NULL
, sizeof(buf
)))
2004 pstrcat(remote_name
, p
);
2006 pstrcat(remote_name
, local_name
);
2008 dos_clean_name(remote_name
);
2010 return do_put(remote_name
, local_name
, True
);
2013 /****************************************************************************
2015 ****************************************************************************/
2017 static void browse_fn(const char *name
, uint32 m
,
2018 const char *comment
, void *state
)
2026 case STYPE_DISKTREE
:
2027 fstrcpy(typestr
,"Disk"); break;
2029 fstrcpy(typestr
,"Printer"); break;
2031 fstrcpy(typestr
,"Device"); break;
2033 fstrcpy(typestr
,"IPC"); break;
2035 /* FIXME: If the remote machine returns non-ascii characters
2036 in any of these fields, they can corrupt the output. We
2037 should remove them. */
2039 d_printf("\t%-15s %-10.10s%s\n",
2040 name
,typestr
,comment
);
2042 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
2046 /****************************************************************************
2047 Try and browse available connections on a host.
2048 ****************************************************************************/
2050 static BOOL
browse_host(BOOL sort
)
2054 d_printf("\n\tSharename Type Comment\n");
2055 d_printf("\t--------- ---- -------\n");
2058 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
2059 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
2064 /****************************************************************************
2066 ****************************************************************************/
2068 static void server_fn(const char *name
, uint32 m
,
2069 const char *comment
, void *state
)
2073 d_printf("\t%-16s %s\n", name
, comment
);
2075 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
2079 /****************************************************************************
2080 Try and browse available connections on a host.
2081 ****************************************************************************/
2083 static BOOL
list_servers(const char *wk_grp
)
2085 if (!cli
->server_domain
)
2089 d_printf("\n\tServer Comment\n");
2090 d_printf("\t--------- -------\n");
2092 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
2096 d_printf("\n\tWorkgroup Master\n");
2097 d_printf("\t--------- -------\n");
2100 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
2101 server_fn
, "Workgroup");
2105 /****************************************************************************
2106 Print or set current VUID
2107 ****************************************************************************/
2109 static int cmd_vuid(void)
2113 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2114 d_printf("Current VUID is %d\n", cli
->vuid
);
2118 cli
->vuid
= atoi(buf
);
2122 /****************************************************************************
2123 Setup a new VUID, by issuing a session setup
2124 ****************************************************************************/
2126 static int cmd_logon(void)
2128 pstring l_username
, l_password
;
2131 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2132 d_printf("logon <username> [<password>]\n");
2136 pstrcpy(l_username
, buf
);
2138 if (!next_token_nr(NULL
,buf2
,NULL
,sizeof(buf
))) {
2139 char *pass
= getpass("Password: ");
2141 pstrcpy(l_password
, pass
);
2145 pstrcpy(l_password
, buf2
);
2148 if (!cli_session_setup(cli
, l_username
,
2149 l_password
, strlen(l_password
),
2150 l_password
, strlen(l_password
),
2152 d_printf("session setup failed: %s\n", cli_errstr(cli
));
2156 d_printf("Current VUID is %d\n", cli
->vuid
);
2160 /* Some constants for completing filename arguments */
2162 #define COMPL_NONE 0 /* No completions */
2163 #define COMPL_REMOTE 1 /* Complete remote filename */
2164 #define COMPL_LOCAL 2 /* Complete local filename */
2166 /* This defines the commands supported by this client.
2167 * NOTE: The "!" must be the last one in the list because it's fn pointer
2168 * field is NULL, and NULL in that field is used in process_tok()
2169 * (below) to indicate the end of the list. crh
2175 const char *description
;
2176 char compl_args
[2]; /* Completion argument info */
2178 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2179 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
2180 {"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
}},
2181 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
2182 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
2183 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
2184 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
2185 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
2186 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2187 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2188 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2189 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2190 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2191 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
2192 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2193 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
2194 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
2195 {"link",cmd_link
,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
2196 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
2197 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2198 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
2199 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2200 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2201 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2202 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
2203 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2204 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
2205 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
2206 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
2207 {"printmode",cmd_printmode
,"<graphics or text> set the print mode",{COMPL_NONE
,COMPL_NONE
}},
2208 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2209 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2210 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
2211 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2212 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
2213 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2214 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2215 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2216 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2217 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
2218 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2219 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2220 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2221 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
2222 {"symlink",cmd_symlink
,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
2223 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
2224 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
2225 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
2226 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
2227 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
2229 /* Yes, this must be here, see crh's comment above. */
2230 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
2231 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
2234 /*******************************************************************
2235 Lookup a command string in the list of commands, including
2237 ******************************************************************/
2239 static int process_tok(pstring tok
)
2241 int i
= 0, matches
= 0;
2243 int tok_len
= strlen(tok
);
2245 while (commands
[i
].fn
!= NULL
) {
2246 if (strequal(commands
[i
].name
,tok
)) {
2250 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
2259 else if (matches
== 1)
2265 /****************************************************************************
2267 ****************************************************************************/
2269 static int cmd_help(void)
2274 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2275 if ((i
= process_tok(buf
)) >= 0)
2276 d_printf("HELP %s:\n\t%s\n\n",commands
[i
].name
,commands
[i
].description
);
2278 while (commands
[i
].description
) {
2279 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
2280 d_printf("%-15s",commands
[i
].name
);
2289 /****************************************************************************
2290 Process a -c command string.
2291 ****************************************************************************/
2293 static int process_command_string(char *cmd
)
2299 /* establish the connection if not already */
2302 cli
= do_connect(desthost
, service
);
2307 while (cmd
[0] != '\0') {
2312 if ((p
= strchr_m(cmd
, ';')) == 0) {
2313 strncpy(line
, cmd
, 999);
2319 strncpy(line
, cmd
, p
- cmd
);
2320 line
[p
- cmd
] = '\0';
2324 /* and get the first part of the command */
2326 if (!next_token_nr(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
2328 if ((i
= process_tok(tok
)) >= 0) {
2329 rc
= commands
[i
].fn();
2330 } else if (i
== -2) {
2331 d_printf("%s: command abbreviation ambiguous\n",tok
);
2333 d_printf("%s: command not found\n",tok
);
2340 #define MAX_COMPLETIONS 100
2348 } completion_remote_t
;
2350 static void completion_remote_filter(file_info
*f
, const char *mask
, void *state
)
2352 completion_remote_t
*info
= (completion_remote_t
*)state
;
2354 if ((info
->count
< MAX_COMPLETIONS
- 1) && (strncmp(info
->text
, f
->name
, info
->len
) == 0) && (strcmp(f
->name
, ".") != 0) && (strcmp(f
->name
, "..") != 0)) {
2355 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
2356 info
->matches
[info
->count
] = strdup(f
->name
);
2360 if (info
->dirmask
[0] != 0)
2361 pstrcpy(tmp
, info
->dirmask
);
2364 pstrcat(tmp
, f
->name
);
2367 info
->matches
[info
->count
] = strdup(tmp
);
2369 if (info
->matches
[info
->count
] == NULL
)
2372 smb_readline_ca_char(0);
2374 if (info
->count
== 1)
2375 info
->samelen
= strlen(info
->matches
[info
->count
]);
2377 while (strncmp(info
->matches
[info
->count
], info
->matches
[info
->count
-1], info
->samelen
) != 0)
2383 static char **remote_completion(const char *text
, int len
)
2387 completion_remote_t info
= { "", NULL
, 1, 0, NULL
, 0 };
2389 /* can't have non-static intialisation on Sun CC, so do it
2395 if (len
>= PATH_MAX
)
2398 info
.matches
= (char **)malloc(sizeof(info
.matches
[0])*MAX_COMPLETIONS
);
2399 if (!info
.matches
) return NULL
;
2400 info
.matches
[0] = NULL
;
2402 for (i
= len
-1; i
>= 0; i
--)
2403 if ((text
[i
] == '/') || (text
[i
] == '\\'))
2405 info
.text
= text
+i
+1;
2406 info
.samelen
= info
.len
= len
-i
-1;
2409 strncpy(info
.dirmask
, text
, i
+1);
2410 info
.dirmask
[i
+1] = 0;
2411 pstr_sprintf(dirmask
, "%s%*s*", cur_dir
, i
-1, text
);
2413 pstr_sprintf(dirmask
, "%s*", cur_dir
);
2415 if (cli_list(cli
, dirmask
, aDIR
| aSYSTEM
| aHIDDEN
, completion_remote_filter
, &info
) < 0)
2418 if (info
.count
== 2)
2419 info
.matches
[0] = strdup(info
.matches
[1]);
2421 info
.matches
[0] = malloc(info
.samelen
+1);
2422 if (!info
.matches
[0])
2424 strncpy(info
.matches
[0], info
.matches
[1], info
.samelen
);
2425 info
.matches
[0][info
.samelen
] = 0;
2427 info
.matches
[info
.count
] = NULL
;
2428 return info
.matches
;
2431 for (i
= 0; i
< info
.count
; i
++)
2432 free(info
.matches
[i
]);
2437 static char **completion_fn(const char *text
, int start
, int end
)
2439 smb_readline_ca_char(' ');
2442 const char *buf
, *sp
;
2446 buf
= smb_readline_get_line_buffer();
2450 sp
= strchr(buf
, ' ');
2454 for (i
= 0; commands
[i
].name
; i
++)
2455 if ((strncmp(commands
[i
].name
, text
, sp
- buf
) == 0) && (commands
[i
].name
[sp
- buf
] == 0))
2457 if (commands
[i
].name
== NULL
)
2463 if (sp
== (buf
+ start
))
2464 compl_type
= commands
[i
].compl_args
[0];
2466 compl_type
= commands
[i
].compl_args
[1];
2468 if (compl_type
== COMPL_REMOTE
)
2469 return remote_completion(text
, end
- start
);
2470 else /* fall back to local filename completion */
2474 int i
, len
, samelen
, count
=1;
2476 matches
= (char **)malloc(sizeof(matches
[0])*MAX_COMPLETIONS
);
2477 if (!matches
) return NULL
;
2481 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
2482 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
2483 matches
[count
] = strdup(commands
[i
].name
);
2484 if (!matches
[count
])
2487 samelen
= strlen(matches
[count
]);
2489 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
2496 case 0: /* should never happen */
2500 matches
[0] = strdup(matches
[1]);
2503 matches
[0] = malloc(samelen
+1);
2506 strncpy(matches
[0], matches
[1], samelen
);
2507 matches
[0][samelen
] = 0;
2509 matches
[count
] = NULL
;
2513 for (i
= 0; i
< count
; i
++)
2521 /****************************************************************************
2522 Make sure we swallow keepalives during idle time.
2523 ****************************************************************************/
2525 static void readline_callback(void)
2528 struct timeval timeout
;
2529 static time_t last_t
;
2545 FD_SET(cli
->fd
,&fds
);
2548 timeout
.tv_usec
= 0;
2549 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
2551 /* We deliberately use receive_smb instead of
2552 client_receive_smb as we want to receive
2553 session keepalives and then drop them here.
2555 if (FD_ISSET(cli
->fd
,&fds
)) {
2556 receive_smb(cli
->fd
,cli
->inbuf
,0);
2560 cli_chkpath(cli
, "\\");
2563 /****************************************************************************
2564 Process commands on stdin.
2565 ****************************************************************************/
2567 static void process_stdin(void)
2578 /* display a prompt */
2579 slprintf(the_prompt
, sizeof(the_prompt
)-1, "smb: %s> ", cur_dir
);
2580 cline
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
2584 pstrcpy(line
, cline
);
2586 /* special case - first char is ! */
2592 /* and get the first part of the command */
2594 if (!next_token_nr(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
2596 if ((i
= process_tok(tok
)) >= 0) {
2598 } else if (i
== -2) {
2599 d_printf("%s: command abbreviation ambiguous\n",tok
);
2601 d_printf("%s: command not found\n",tok
);
2606 /*****************************************************
2607 Return a connection to a server.
2608 *******************************************************/
2610 static struct cli_state
*do_connect(const char *server
, const char *share
)
2612 struct cli_state
*c
;
2613 struct nmb_name called
, calling
;
2614 const char *server_n
;
2616 pstring servicename
;
2619 /* make a copy so we don't modify the global string 'service' */
2620 pstrcpy(servicename
, share
);
2621 sharename
= servicename
;
2622 if (*sharename
== '\\') {
2623 server
= sharename
+2;
2624 sharename
= strchr_m(server
,'\\');
2625 if (!sharename
) return NULL
;
2634 make_nmb_name(&calling
, global_myname(), 0x0);
2635 make_nmb_name(&called
, server
, name_type
);
2639 if (have_ip
) ip
= dest_ip
;
2641 /* have to open a new connection */
2642 if (!(c
=cli_initialise(NULL
)) || (cli_set_port(c
, port
) != port
) ||
2643 !cli_connect(c
, server_n
, &ip
)) {
2644 d_printf("Connection to %s failed\n", server_n
);
2648 c
->protocol
= max_protocol
;
2649 c
->use_kerberos
= use_kerberos
;
2650 cli_setup_signing_state(c
, cmdline_auth_info
.signing_state
);
2653 if (!cli_session_request(c
, &calling
, &called
)) {
2655 d_printf("session request to %s failed (%s)\n",
2656 called
.name
, cli_errstr(c
));
2658 if ((p
=strchr_m(called
.name
, '.'))) {
2662 if (strcmp(called
.name
, "*SMBSERVER")) {
2663 make_nmb_name(&called
, "*SMBSERVER", 0x20);
2669 DEBUG(4,(" session request ok\n"));
2671 if (!cli_negprot(c
)) {
2672 d_printf("protocol negotiation failed\n");
2678 char *pass
= getpass("Password: ");
2680 pstrcpy(password
, pass
);
2685 if (!cli_session_setup(c
, username
,
2686 password
, strlen(password
),
2687 password
, strlen(password
),
2689 /* if a password was not supplied then try again with a null username */
2690 if (password
[0] || !username
[0] || use_kerberos
||
2691 !cli_session_setup(c
, "", "", 0, "", 0, lp_workgroup())) {
2692 d_printf("session setup failed: %s\n", cli_errstr(c
));
2693 if (NT_STATUS_V(cli_nt_error(c
)) ==
2694 NT_STATUS_V(NT_STATUS_MORE_PROCESSING_REQUIRED
))
2695 d_printf("did you forget to run kinit?\n");
2699 d_printf("Anonymous login successful\n");
2702 if (*c
->server_domain
) {
2703 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
2704 c
->server_domain
,c
->server_os
,c
->server_type
));
2705 } else if (*c
->server_os
|| *c
->server_type
){
2706 DEBUG(1,("OS=[%s] Server=[%s]\n",
2707 c
->server_os
,c
->server_type
));
2709 DEBUG(4,(" session setup ok\n"));
2711 if (!cli_send_tconX(c
, sharename
, "?????",
2712 password
, strlen(password
)+1)) {
2713 d_printf("tree connect failed: %s\n", cli_errstr(c
));
2718 DEBUG(4,(" tconx ok\n"));
2723 /****************************************************************************
2724 Process commands from the client.
2725 ****************************************************************************/
2727 static int process(char *base_directory
)
2731 cli
= do_connect(desthost
, service
);
2736 if (*base_directory
) do_cd(base_directory
);
2739 rc
= process_command_string(cmdstr
);
2748 /****************************************************************************
2750 ****************************************************************************/
2752 static int do_host_query(char *query_host
)
2754 cli
= do_connect(query_host
, "IPC$");
2762 /* Workgroups simply don't make sense over anything
2763 else but port 139... */
2767 cli
= do_connect(query_host
, "IPC$");
2771 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
2775 list_servers(lp_workgroup());
2783 /****************************************************************************
2784 Handle a tar operation.
2785 ****************************************************************************/
2787 static int do_tar_op(char *base_directory
)
2791 /* do we already have a connection? */
2793 cli
= do_connect(desthost
, service
);
2800 if (*base_directory
) do_cd(base_directory
);
2809 /****************************************************************************
2810 Handle a message operation.
2811 ****************************************************************************/
2813 static int do_message_op(void)
2816 struct nmb_name called
, calling
;
2817 fstring server_name
;
2818 char name_type_hex
[10];
2820 make_nmb_name(&calling
, global_myname(), 0x0);
2821 make_nmb_name(&called
, desthost
, name_type
);
2823 fstrcpy(server_name
, desthost
);
2824 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
2825 fstrcat(server_name
, name_type_hex
);
2828 if (have_ip
) ip
= dest_ip
;
2830 if (!(cli
=cli_initialise(NULL
)) || (cli_set_port(cli
, port
) != port
) ||
2831 !cli_connect(cli
, server_name
, &ip
)) {
2832 d_printf("Connection to %s failed\n", desthost
);
2836 if (!cli_session_request(cli
, &calling
, &called
)) {
2837 d_printf("session request failed\n");
2849 /****************************************************************************
2851 ****************************************************************************/
2853 int main(int argc
,char *argv
[])
2855 extern BOOL AllowDebugChange
;
2856 pstring base_directory
;
2859 BOOL message
= False
;
2860 extern char tar_type
;
2862 static const char *new_name_resolve_order
= NULL
;
2866 fstring new_workgroup
;
2867 struct poptOption long_options
[] = {
2870 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
2871 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
2872 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
2873 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
2874 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
2875 { "terminal", 't', POPT_ARG_STRING
, NULL
, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
2876 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
2877 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
2878 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
2879 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
2880 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
2881 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
2882 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
2884 POPT_COMMON_CONNECTION
2885 POPT_COMMON_CREDENTIALS
2891 pstrcpy(term_code
, KANJI
);
2897 *base_directory
= 0;
2899 /* initialize the workgroup name so we can determine whether or
2900 not it was set by a command line option */
2902 set_global_myworkgroup( "" );
2904 /* set default debug level to 0 regardless of what smb.conf sets */
2905 setup_logging( "smbclient", True
);
2906 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
2908 x_setbuf( x_stderr
, NULL
);
2910 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
,
2911 POPT_CONTEXT_KEEP_FIRST
);
2912 poptSetOtherOptionHelp(pc
, "service <password>");
2914 in_client
= True
; /* Make sure that we tell lp_load we are */
2916 while ((opt
= poptGetNextOpt(pc
)) != -1) {
2919 /* Messages are sent to NetBIOS name type 0x3
2920 * (Messenger Service). Make sure we default
2921 * to port 139 instead of port 445. srl,crh
2924 pstrcpy(desthost
,poptGetOptArg(pc
));
2931 dest_ip
= *interpret_addr2(poptGetOptArg(pc
));
2932 if (is_zero_ip(dest_ip
))
2939 display_set_stderr();
2943 pstrcpy(query_host
, poptGetOptArg(pc
));
2946 pstrcpy(term_code
, poptGetOptArg(pc
));
2949 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
2952 /* We must use old option processing for this. Find the
2953 * position of the -T option in the raw argv[]. */
2956 for (i
= 1; i
< argc
; i
++) {
2957 if (strncmp("-T", argv
[i
],2)==0)
2961 if (!(optnum
= tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
))) {
2962 poptPrintUsage(pc
, stderr
, 0);
2965 /* Now we must eat (optnum - i) options - they have
2966 * been processed by tar_parseargs().
2969 for (i
= 0; i
< optnum
; i
++)
2974 pstrcpy(base_directory
,poptGetOptArg(pc
));
2985 * Don't load debug level from smb.conf. It should be
2986 * set by cmdline arg or remain default (0)
2988 AllowDebugChange
= False
;
2990 /* save the workgroup...
2992 FIXME!! do we need to do tyhis for other options as well
2993 (or maybe a generic way to keep lp_load() from overwriting
2996 fstrcpy( new_workgroup
, lp_workgroup() );
2998 if (!lp_load(dyn_CONFIGFILE
,True
,False
,False
)) {
2999 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
3000 argv
[0], dyn_CONFIGFILE
);
3005 if ( strlen(new_workgroup
) != 0 )
3006 set_global_myworkgroup( new_workgroup
);
3008 if(poptPeekArg(pc
)) {
3009 pstrcpy(service
,poptGetArg(pc
));
3010 /* Convert any '/' characters in the service name to '\' characters */
3011 string_replace(service
, '/','\\');
3013 if (count_chars(service
,'\\') < 3) {
3014 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
3015 poptPrintUsage(pc
, stderr
, 0);
3020 if (poptPeekArg(pc
) && !cmdline_auth_info
.got_pass
) {
3021 cmdline_auth_info
.got_pass
= True
;
3022 pstrcpy(cmdline_auth_info
.password
,poptGetArg(pc
));
3027 if(new_name_resolve_order
)
3028 lp_set_name_resolve_order(new_name_resolve_order
);
3030 if (!tar_type
&& !*query_host
&& !*service
&& !message
) {
3031 poptPrintUsage(pc
, stderr
, 0);
3035 poptFreeContext(pc
);
3037 pstrcpy(username
, cmdline_auth_info
.username
);
3038 pstrcpy(password
, cmdline_auth_info
.password
);
3040 use_kerberos
= cmdline_auth_info
.use_kerberos
;
3041 got_pass
= cmdline_auth_info
.got_pass
;
3043 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING
));
3047 process_command_string(cmdstr
);
3048 return do_tar_op(base_directory
);
3052 char *qhost
= query_host
;
3055 while (*qhost
== '\\' || *qhost
== '/')
3058 if ((slash
= strchr_m(qhost
, '/'))
3059 || (slash
= strchr_m(qhost
, '\\'))) {
3063 if ((p
=strchr_m(qhost
, '#'))) {
3066 sscanf(p
, "%x", &name_type
);
3069 return do_host_query(qhost
);
3073 return do_message_op();
3076 if (process(base_directory
)) {