2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 const char prog_name
[] = "smbclient";
32 struct cli_state
*cli
;
33 extern BOOL in_client
;
34 extern BOOL AllowDebugChange
;
36 pstring cur_dir
= "\\";
38 static pstring service
;
39 static pstring desthost
;
40 extern pstring global_myname
;
41 static pstring password
;
42 static pstring username
;
43 static pstring workgroup
;
46 static int io_bufsize
= 64512;
47 static BOOL use_kerberos
;
49 static int name_type
= 0x20;
50 static int max_protocol
= PROTOCOL_NT1
;
51 extern pstring user_socket_options
;
53 static int process_tok(fstring tok
);
54 static int cmd_help(void);
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
63 time_t newer_than
= 0;
64 int archive_level
= 0;
66 BOOL translation
= False
;
70 /* clitar bits insert */
73 extern BOOL tar_reset
;
77 mode_t myumask
= 0755;
83 static BOOL recurse
= False
;
84 BOOL lowercase
= False
;
86 struct in_addr dest_ip
;
88 #define SEPARATORS " \t\n\r"
90 BOOL abort_mget
= True
;
92 pstring fileselection
= "";
94 extern file_info def_finfo
;
97 int get_total_size
= 0;
98 int get_total_time_ms
= 0;
99 int put_total_size
= 0;
100 int put_total_time_ms
= 0;
103 static double dir_total
;
107 /****************************************************************************
108 write to a local file with CR/LF->LF translation if appropriate. return the
109 number taken from the buffer. This may not equal the number written.
110 ****************************************************************************/
111 static int writefile(int f
, char *b
, int n
)
121 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
124 if (write(f
, b
, 1) != 1) {
134 /****************************************************************************
135 read from a file with LF->CR/LF translation if appropriate. return the
136 number read. read approx n bytes.
137 ****************************************************************************/
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 */
163 /****************************************************************************
165 ****************************************************************************/
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
));
214 /****************************************************************************
215 check the space on a device
216 ****************************************************************************/
217 static int do_dskattr(void)
219 int total
, bsize
, avail
;
221 if (!cli_dskattr(cli
, &bsize
, &total
, &avail
)) {
222 d_printf("Error in dskattr: %s\n",cli_errstr(cli
));
226 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
227 total
, bsize
, avail
);
232 /****************************************************************************
234 ****************************************************************************/
235 static int cmd_pwd(void)
237 d_printf("Current directory is %s",service
);
238 d_printf("%s\n",cur_dir
);
243 /****************************************************************************
244 change directory - inner section
245 ****************************************************************************/
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 ****************************************************************************/
284 static int cmd_cd(void)
289 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
292 d_printf("Current directory is %s\n",cur_dir
);
298 /*******************************************************************
299 decide if a file should be operated on
300 ********************************************************************/
301 static BOOL
do_this_one(file_info
*finfo
)
303 if (finfo
->mode
& aDIR
) return(True
);
305 if (*fileselection
&&
306 !mask_match(finfo
->name
,fileselection
,False
)) {
307 DEBUG(3,("match_match %s failed\n", finfo
->name
));
311 if (newer_than
&& finfo
->mtime
< newer_than
) {
312 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
316 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
317 DEBUG(3,("archive %s failed\n", finfo
->name
));
324 /****************************************************************************
325 display info about a file
326 ****************************************************************************/
327 static void display_finfo(file_info
*finfo
)
329 if (do_this_one(finfo
)) {
330 time_t t
= finfo
->mtime
; /* the time is assumed to be passed as GMT */
331 d_printf(" %-30s%7.7s %8.0f %s",
333 attrib_string(finfo
->mode
),
335 asctime(LocalTime(&t
)));
336 dir_total
+= finfo
->size
;
341 /****************************************************************************
342 accumulate size of a file
343 ****************************************************************************/
344 static void do_du(file_info
*finfo
)
346 if (do_this_one(finfo
)) {
347 dir_total
+= finfo
->size
;
351 static BOOL do_list_recurse
;
352 static BOOL do_list_dirs
;
353 static char *do_list_queue
= 0;
354 static long do_list_queue_size
= 0;
355 static long do_list_queue_start
= 0;
356 static long do_list_queue_end
= 0;
357 static void (*do_list_fn
)(file_info
*);
359 /****************************************************************************
360 functions for do_list_queue
361 ****************************************************************************/
364 * The do_list_queue is a NUL-separated list of strings stored in a
365 * char*. Since this is a FIFO, we keep track of the beginning and
366 * ending locations of the data in the queue. When we overflow, we
367 * double the size of the char*. When the start of the data passes
368 * the midpoint, we move everything back. This is logically more
369 * complex than a linked list, but easier from a memory management
370 * angle. In any memory error condition, do_list_queue is reset.
371 * Functions check to ensure that do_list_queue is non-NULL before
374 static void reset_do_list_queue(void)
376 SAFE_FREE(do_list_queue
);
377 do_list_queue_size
= 0;
378 do_list_queue_start
= 0;
379 do_list_queue_end
= 0;
382 static void init_do_list_queue(void)
384 reset_do_list_queue();
385 do_list_queue_size
= 1024;
386 do_list_queue
= malloc(do_list_queue_size
);
387 if (do_list_queue
== 0) {
388 d_printf("malloc fail for size %d\n",
389 (int)do_list_queue_size
);
390 reset_do_list_queue();
392 memset(do_list_queue
, 0, do_list_queue_size
);
396 static void adjust_do_list_queue(void)
399 * If the starting point of the queue is more than half way through,
400 * move everything toward the beginning.
402 if (do_list_queue
&& (do_list_queue_start
== do_list_queue_end
))
404 DEBUG(4,("do_list_queue is empty\n"));
405 do_list_queue_start
= do_list_queue_end
= 0;
406 *do_list_queue
= '\0';
408 else if (do_list_queue_start
> (do_list_queue_size
/ 2))
410 DEBUG(4,("sliding do_list_queue backward\n"));
411 memmove(do_list_queue
,
412 do_list_queue
+ do_list_queue_start
,
413 do_list_queue_end
- do_list_queue_start
);
414 do_list_queue_end
-= do_list_queue_start
;
415 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
)
426 do_list_queue_size
*= 2;
427 DEBUG(4,("enlarging do_list_queue to %d\n",
428 (int)do_list_queue_size
));
429 dlq
= Realloc(do_list_queue
, do_list_queue_size
);
431 d_printf("failure enlarging do_list_queue to %d bytes\n",
432 (int)do_list_queue_size
);
433 reset_do_list_queue();
438 memset(do_list_queue
+ do_list_queue_size
/ 2,
439 0, do_list_queue_size
/ 2);
444 pstrcpy(do_list_queue
+ do_list_queue_end
, entry
);
445 do_list_queue_end
= new_end
;
446 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
447 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
451 static char *do_list_queue_head(void)
453 return do_list_queue
+ do_list_queue_start
;
456 static void remove_do_list_queue_head(void)
458 if (do_list_queue_end
> do_list_queue_start
)
460 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
461 adjust_do_list_queue();
462 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
463 (int)do_list_queue_start
, (int)do_list_queue_end
));
467 static int do_list_queue_empty(void)
469 return (! (do_list_queue
&& *do_list_queue
));
472 /****************************************************************************
474 ****************************************************************************/
475 static void do_list_helper(file_info
*f
, const char *mask
, void *state
)
477 if (f
->mode
& aDIR
) {
478 if (do_list_dirs
&& do_this_one(f
)) {
481 if (do_list_recurse
&&
482 !strequal(f
->name
,".") &&
483 !strequal(f
->name
,"..")) {
487 pstrcpy(mask2
, mask
);
488 p
= strrchr_m(mask2
,'\\');
491 pstrcat(mask2
, f
->name
);
492 pstrcat(mask2
,"\\*");
493 add_to_do_list_queue(mask2
);
498 if (do_this_one(f
)) {
504 /****************************************************************************
505 a wrapper around cli_list that adds recursion
506 ****************************************************************************/
507 void do_list(const char *mask
,uint16 attribute
,void (*fn
)(file_info
*),BOOL rec
, BOOL dirs
)
509 static int in_do_list
= 0;
511 if (in_do_list
&& rec
)
513 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
519 do_list_recurse
= rec
;
525 init_do_list_queue();
526 add_to_do_list_queue(mask
);
528 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
))
543 char* next_file
= do_list_queue_head();
545 if ((strlen(next_file
) >= 2) &&
546 (next_file
[strlen(next_file
) - 1] == '*') &&
547 (next_file
[strlen(next_file
) - 2] == '\\'))
549 save_ch
= next_file
+
550 strlen(next_file
) - 2;
553 d_printf("\n%s\n",next_file
);
563 if (cli_list(cli
, mask
, attribute
, do_list_helper
, NULL
) == -1)
565 d_printf("%s listing %s\n", cli_errstr(cli
), mask
);
570 reset_do_list_queue();
573 /****************************************************************************
574 get a directory listing
575 ****************************************************************************/
576 static int cmd_dir(void)
578 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
585 pstrcpy(mask
,cur_dir
);
586 if(mask
[strlen(mask
)-1]!='\\')
589 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
600 do_list(mask
, attribute
, display_finfo
, recurse
, True
);
604 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
610 /****************************************************************************
611 get a directory listing
612 ****************************************************************************/
613 static int cmd_du(void)
615 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
622 pstrcpy(mask
,cur_dir
);
623 if(mask
[strlen(mask
)-1]!='\\')
626 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
636 do_list(mask
, attribute
, do_du
, recurse
, True
);
640 d_printf("Total number of bytes: %.0f\n", dir_total
);
646 /****************************************************************************
647 get a file from rname to lname
648 ****************************************************************************/
649 static int do_get(char *rname
,char *lname
)
652 BOOL newhandle
= False
;
654 struct timeval tp_start
;
655 int read_size
= io_bufsize
;
661 GetTimeOfDay(&tp_start
);
667 fnum
= cli_open(cli
, rname
, O_RDONLY
, DENY_NONE
);
670 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
674 if(!strcmp(lname
,"-")) {
675 handle
= fileno(stdout
);
677 handle
= sys_open(lname
,O_WRONLY
|O_CREAT
|O_TRUNC
,0644);
681 d_printf("Error opening local file %s\n",lname
);
686 if (!cli_qfileinfo(cli
, fnum
,
687 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
688 !cli_getattrE(cli
, fnum
,
689 &attr
, &size
, NULL
, NULL
, NULL
)) {
690 d_printf("getattrib: %s\n",cli_errstr(cli
));
694 DEBUG(2,("getting file %s of size %.0f as %s ",
695 lname
, (double)size
, lname
));
697 if(!(data
= (char *)malloc(read_size
))) {
698 d_printf("malloc fail for size %d\n", read_size
);
699 cli_close(cli
, fnum
);
704 int n
= cli_read(cli
, fnum
, data
, nread
, read_size
);
708 if (writefile(handle
,data
, n
) != n
) {
709 d_printf("Error writing local file\n");
718 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
719 rname
, (long)nread
));
726 if (!cli_close(cli
, fnum
)) {
727 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
735 if (archive_level
>= 2 && (attr
& aARCH
)) {
736 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
740 struct timeval tp_end
;
743 GetTimeOfDay(&tp_end
);
745 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
746 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
747 get_total_time_ms
+= this_time
;
748 get_total_size
+= nread
;
750 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
751 nread
/ (1.024*this_time
+ 1.0e-4),
752 get_total_size
/ (1.024*get_total_time_ms
)));
759 /****************************************************************************
761 ****************************************************************************/
762 static int cmd_get(void)
768 pstrcpy(rname
,cur_dir
);
771 p
= rname
+ strlen(rname
);
773 if (!next_token_nr(NULL
,p
,NULL
,sizeof(rname
)-strlen(rname
))) {
774 d_printf("get <filename>\n");
778 dos_clean_name(rname
);
780 next_token_nr(NULL
,lname
,NULL
,sizeof(lname
));
782 return do_get(rname
, lname
);
786 /****************************************************************************
787 do a mget operation on one file
788 ****************************************************************************/
789 static void do_mget(file_info
*finfo
)
793 pstring saved_curdir
;
796 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
800 d_printf("mget aborted\n");
804 if (finfo
->mode
& aDIR
)
805 slprintf(quest
,sizeof(pstring
)-1,
806 "Get directory %s? ",finfo
->name
);
808 slprintf(quest
,sizeof(pstring
)-1,
809 "Get file %s? ",finfo
->name
);
811 if (prompt
&& !yesno(quest
)) return;
813 if (!(finfo
->mode
& aDIR
)) {
814 pstrcpy(rname
,cur_dir
);
815 pstrcat(rname
,finfo
->name
);
816 do_get(rname
,finfo
->name
);
820 /* handle directories */
821 pstrcpy(saved_curdir
,cur_dir
);
823 pstrcat(cur_dir
,finfo
->name
);
824 pstrcat(cur_dir
,"\\");
826 unix_format(finfo
->name
);
828 strlower(finfo
->name
);
830 if (!directory_exist(finfo
->name
,NULL
) &&
831 mkdir(finfo
->name
,0777) != 0) {
832 d_printf("failed to create directory %s\n",finfo
->name
);
833 pstrcpy(cur_dir
,saved_curdir
);
837 if (chdir(finfo
->name
) != 0) {
838 d_printf("failed to chdir to directory %s\n",finfo
->name
);
839 pstrcpy(cur_dir
,saved_curdir
);
843 pstrcpy(mget_mask
,cur_dir
);
844 pstrcat(mget_mask
,"*");
846 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,False
, True
);
848 pstrcpy(cur_dir
,saved_curdir
);
852 /****************************************************************************
853 view the file using the pager
854 ****************************************************************************/
855 static int cmd_more(void)
857 fstring rname
,lname
,pager_cmd
;
862 fstrcpy(rname
,cur_dir
);
865 slprintf(lname
,sizeof(lname
)-1, "%s/smbmore.XXXXXX",tmpdir());
866 fd
= smb_mkstemp(lname
);
868 d_printf("failed to create temporary file for more\n");
873 if (!next_token_nr(NULL
,rname
+strlen(rname
),NULL
,sizeof(rname
)-strlen(rname
))) {
874 d_printf("more <filename>\n");
878 dos_clean_name(rname
);
880 rc
= do_get(rname
,lname
);
882 pager
=getenv("PAGER");
884 slprintf(pager_cmd
,sizeof(pager_cmd
)-1,
885 "%s %s",(pager
? pager
:PAGER
), lname
);
894 /****************************************************************************
896 ****************************************************************************/
897 static int cmd_mget(void)
899 uint16 attribute
= aSYSTEM
| aHIDDEN
;
911 while (next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
912 pstrcpy(mget_mask
,cur_dir
);
913 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
914 pstrcat(mget_mask
,"\\");
917 pstrcpy(mget_mask
,p
);
919 pstrcat(mget_mask
,p
);
920 do_list(mget_mask
, attribute
,do_mget
,False
,True
);
924 pstrcpy(mget_mask
,cur_dir
);
925 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
926 pstrcat(mget_mask
,"\\");
927 pstrcat(mget_mask
,"*");
928 do_list(mget_mask
, attribute
,do_mget
,False
,True
);
935 /****************************************************************************
936 make a directory of name "name"
937 ****************************************************************************/
938 static BOOL
do_mkdir(char *name
)
940 if (!cli_mkdir(cli
, name
)) {
941 d_printf("%s making remote directory %s\n",
942 cli_errstr(cli
),name
);
949 /****************************************************************************
950 show 8.3 name of a file
951 ****************************************************************************/
952 static BOOL
do_altname(char *name
)
955 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
956 d_printf("%s getting alt name for %s\n",
957 cli_errstr(cli
),name
);
960 d_printf("%s\n", altname
);
966 /****************************************************************************
968 ****************************************************************************/
969 static int cmd_quit(void)
978 /****************************************************************************
980 ****************************************************************************/
981 static int cmd_mkdir(void)
987 pstrcpy(mask
,cur_dir
);
989 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
991 d_printf("mkdir <dirname>\n");
1002 trim_string(ddir
,".",NULL
);
1003 p
= strtok(ddir
,"/\\");
1006 if (!cli_chkpath(cli
, ddir2
)) {
1009 pstrcat(ddir2
,"\\");
1010 p
= strtok(NULL
,"/\\");
1020 /****************************************************************************
1022 ****************************************************************************/
1023 static int cmd_altname(void)
1029 pstrcpy(name
,cur_dir
);
1031 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1032 d_printf("altname <file>\n");
1043 /****************************************************************************
1045 ****************************************************************************/
1046 static int do_put(char *rname
,char *lname
)
1052 int maxwrite
=io_bufsize
;
1055 struct timeval tp_start
;
1056 GetTimeOfDay(&tp_start
);
1058 fnum
= cli_open(cli
, rname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
);
1061 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1065 /* allow files to be piped into smbclient
1068 Note that in this case this function will exit(0) rather
1070 if (!strcmp(lname
, "-")) {
1072 /* size of file is not known */
1074 f
= x_fopen(lname
,O_RDONLY
, 0);
1078 d_printf("Error opening local file %s\n",lname
);
1083 DEBUG(1,("putting file %s as %s ",lname
,
1086 buf
= (char *)malloc(maxwrite
);
1088 d_printf("ERROR: Not enough memory!\n");
1091 while (!x_feof(f
)) {
1095 if ((n
= readfile(buf
,n
,f
)) < 1) {
1096 if((n
== 0) && x_feof(f
))
1097 break; /* Empty local file. */
1099 d_printf("Error reading local file: %s\n", strerror(errno
));
1104 ret
= cli_write(cli
, fnum
, 0, buf
, nread
, n
);
1107 d_printf("Error writing file: %s\n", cli_errstr(cli
));
1115 if (!cli_close(cli
, fnum
)) {
1116 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1127 struct timeval tp_end
;
1130 GetTimeOfDay(&tp_end
);
1132 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1133 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1134 put_total_time_ms
+= this_time
;
1135 put_total_size
+= nread
;
1137 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1138 nread
/ (1.024*this_time
+ 1.0e-4),
1139 put_total_size
/ (1.024*put_total_time_ms
)));
1152 /****************************************************************************
1154 ****************************************************************************/
1155 static int cmd_put(void)
1162 pstrcpy(rname
,cur_dir
);
1163 pstrcat(rname
,"\\");
1165 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1166 d_printf("put <filename>\n");
1171 if (next_token_nr(NULL
,p
,NULL
,sizeof(buf
)))
1174 pstrcat(rname
,lname
);
1176 dos_clean_name(rname
);
1180 /* allow '-' to represent stdin
1181 jdblair, 24.jun.98 */
1182 if (!file_exist(lname
,&st
) &&
1183 (strcmp(lname
,"-"))) {
1184 d_printf("%s does not exist\n",lname
);
1189 return do_put(rname
,lname
);
1192 /*************************************
1194 *************************************/
1196 static struct file_list
{
1197 struct file_list
*prev
, *next
;
1202 /****************************************************************************
1203 Free a file_list structure
1204 ****************************************************************************/
1206 static void free_file_list (struct file_list
* list
)
1208 struct file_list
*tmp
;
1213 DLIST_REMOVE(list
, list
);
1214 SAFE_FREE(tmp
->file_path
);
1219 /****************************************************************************
1220 seek in a directory/file list until you get something that doesn't start with
1222 ****************************************************************************/
1223 static BOOL
seek_list(struct file_list
*list
, char *name
)
1226 trim_string(list
->file_path
,"./","\n");
1227 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1236 /****************************************************************************
1237 set the file selection mask
1238 ****************************************************************************/
1239 static int cmd_select(void)
1241 pstrcpy(fileselection
,"");
1242 next_token_nr(NULL
,fileselection
,NULL
,sizeof(fileselection
));
1247 /****************************************************************************
1248 Recursive file matching function act as find
1249 match must be always set to True when calling this function
1250 ****************************************************************************/
1251 static int file_find(struct file_list
**list
, const char *directory
,
1252 const char *expression
, BOOL match
)
1255 struct file_list
*entry
;
1256 struct stat statbuf
;
1262 dir
= opendir(directory
);
1263 if (!dir
) return -1;
1265 while ((dname
= readdirname(dir
))) {
1266 if (!strcmp("..", dname
)) continue;
1267 if (!strcmp(".", dname
)) continue;
1269 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1274 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1276 ret
= stat(path
, &statbuf
);
1278 if (S_ISDIR(statbuf
.st_mode
)) {
1280 ret
= file_find(list
, path
, expression
, False
);
1283 d_printf("file_find: cannot stat file %s\n", path
);
1292 entry
= (struct file_list
*) malloc(sizeof (struct file_list
));
1294 d_printf("Out of memory in file_find\n");
1298 entry
->file_path
= path
;
1299 entry
->isdir
= isdir
;
1300 DLIST_ADD(*list
, entry
);
1310 /****************************************************************************
1312 ****************************************************************************/
1313 static int cmd_mput(void)
1318 while (next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1320 struct file_list
*temp_list
;
1321 char *quest
, *lname
, *rname
;
1325 ret
= file_find(&file_list
, ".", p
, True
);
1327 free_file_list(file_list
);
1335 for (temp_list
= file_list
; temp_list
;
1336 temp_list
= temp_list
->next
) {
1339 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0)
1341 trim_string(lname
, "./", "/");
1343 /* check if it's a directory */
1344 if (temp_list
->isdir
) {
1345 /* if (!recurse) continue; */
1348 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) break;
1349 if (prompt
&& !yesno(quest
)) { /* No */
1350 /* Skip the directory */
1351 lname
[strlen(lname
)-1] = '/';
1352 if (!seek_list(temp_list
, lname
))
1356 if(asprintf(&rname
, "%s%s", cur_dir
, lname
) < 0) break;
1358 if (!cli_chkpath(cli
, rname
) &&
1360 DEBUG (0, ("Unable to make dir, skipping..."));
1361 /* Skip the directory */
1362 lname
[strlen(lname
)-1] = '/';
1363 if (!seek_list(temp_list
, lname
))
1370 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) break;
1371 if (prompt
&& !yesno(quest
)) /* No */
1376 if (asprintf(&rname
, "%s%s", cur_dir
, lname
) < 0) break;
1381 do_put(rname
, lname
);
1383 free_file_list(file_list
);
1393 /****************************************************************************
1395 ****************************************************************************/
1396 static int do_cancel(int job
)
1398 if (cli_printjob_del(cli
, job
)) {
1399 d_printf("Job %d cancelled\n",job
);
1402 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
1408 /****************************************************************************
1410 ****************************************************************************/
1411 static int cmd_cancel(void)
1416 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1417 d_printf("cancel <jobid> ...\n");
1423 } while (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)));
1429 /****************************************************************************
1431 ****************************************************************************/
1432 static int cmd_print(void)
1438 if (!next_token_nr(NULL
,lname
,NULL
, sizeof(lname
))) {
1439 d_printf("print <filename>\n");
1443 pstrcpy(rname
,lname
);
1444 p
= strrchr_m(rname
,'/');
1446 slprintf(rname
, sizeof(rname
)-1, "%s-%d", p
+1, (int)sys_getpid());
1449 if (strequal(lname
,"-")) {
1450 slprintf(rname
, sizeof(rname
)-1, "stdin-%d", (int)sys_getpid());
1453 return do_put(rname
, lname
);
1457 /****************************************************************************
1458 show a print queue entry
1459 ****************************************************************************/
1460 static void queue_fn(struct print_job_info
*p
)
1462 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
1465 /****************************************************************************
1467 ****************************************************************************/
1468 static int cmd_queue(void)
1470 cli_print_queue(cli
, queue_fn
);
1475 /****************************************************************************
1477 ****************************************************************************/
1478 static void do_del(file_info
*finfo
)
1482 pstrcpy(mask
,cur_dir
);
1483 pstrcat(mask
,finfo
->name
);
1485 if (finfo
->mode
& aDIR
)
1488 if (!cli_unlink(cli
, mask
)) {
1489 d_printf("%s deleting remote file %s\n",cli_errstr(cli
),mask
);
1493 /****************************************************************************
1495 ****************************************************************************/
1496 static int cmd_del(void)
1500 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1505 pstrcpy(mask
,cur_dir
);
1507 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1508 d_printf("del <filename>\n");
1513 do_list(mask
, attribute
,do_del
,False
,False
);
1518 /****************************************************************************
1519 ****************************************************************************/
1520 static int cmd_open(void)
1525 pstrcpy(mask
,cur_dir
);
1527 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1528 d_printf("open <filename>\n");
1533 cli_open(cli
, mask
, O_RDWR
, DENY_ALL
);
1539 /****************************************************************************
1541 ****************************************************************************/
1542 static int cmd_rmdir(void)
1547 pstrcpy(mask
,cur_dir
);
1549 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1550 d_printf("rmdir <dirname>\n");
1555 if (!cli_rmdir(cli
, mask
)) {
1556 d_printf("%s removing remote directory file %s\n",
1557 cli_errstr(cli
),mask
);
1563 /****************************************************************************
1565 ****************************************************************************/
1567 static int cmd_link(void)
1572 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1573 d_printf("Server doesn't support UNIX CIFS calls.\n");
1577 pstrcpy(src
,cur_dir
);
1578 pstrcpy(dest
,cur_dir
);
1580 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)) ||
1581 !next_token(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1582 d_printf("link <src> <dest>\n");
1589 if (!cli_unix_hardlink(cli
, src
, dest
)) {
1590 d_printf("%s linking files (%s -> %s)\n", cli_errstr(cli
), src
, dest
);
1597 /****************************************************************************
1599 ****************************************************************************/
1601 static int cmd_symlink(void)
1606 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1607 d_printf("Server doesn't support UNIX CIFS calls.\n");
1611 pstrcpy(src
,cur_dir
);
1612 pstrcpy(dest
,cur_dir
);
1614 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)) ||
1615 !next_token(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1616 d_printf("symlink <src> <dest>\n");
1623 if (!cli_unix_symlink(cli
, src
, dest
)) {
1624 d_printf("%s symlinking files (%s -> %s)\n",
1625 cli_errstr(cli
), src
, dest
);
1632 /****************************************************************************
1634 ****************************************************************************/
1636 static int cmd_chmod(void)
1642 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1643 d_printf("Server doesn't support UNIX CIFS calls.\n");
1647 pstrcpy(src
,cur_dir
);
1649 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)) ||
1650 !next_token(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1651 d_printf("chmod mode file\n");
1655 mode
= (mode_t
)strtol(buf
, NULL
, 8);
1658 if (!cli_unix_chmod(cli
, src
, mode
)) {
1659 d_printf("%s chmod file %s 0%o\n",
1660 cli_errstr(cli
), src
, (unsigned int)mode
);
1667 /****************************************************************************
1669 ****************************************************************************/
1671 static int cmd_chown(void)
1676 fstring buf
, buf2
, buf3
;
1678 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1679 d_printf("Server doesn't support UNIX CIFS calls.\n");
1683 pstrcpy(src
,cur_dir
);
1685 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)) ||
1686 !next_token(NULL
,buf2
,NULL
, sizeof(buf2
)) ||
1687 !next_token(NULL
,buf3
,NULL
, sizeof(buf3
))) {
1688 d_printf("chown uid gid file\n");
1692 uid
= (uid_t
)atoi(buf
);
1693 gid
= (gid_t
)atoi(buf2
);
1696 if (!cli_unix_chown(cli
, src
, uid
, gid
)) {
1697 d_printf("%s chown file %s uid=%d, gid=%d\n",
1698 cli_errstr(cli
), src
, (int)uid
, (int)gid
);
1705 /****************************************************************************
1707 ****************************************************************************/
1708 static int cmd_rename(void)
1713 pstrcpy(src
,cur_dir
);
1714 pstrcpy(dest
,cur_dir
);
1716 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1717 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1718 d_printf("rename <src> <dest>\n");
1725 if (!cli_rename(cli
, src
, dest
)) {
1726 d_printf("%s renaming files\n",cli_errstr(cli
));
1734 /****************************************************************************
1735 toggle the prompt flag
1736 ****************************************************************************/
1737 static int cmd_prompt(void)
1740 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
1746 /****************************************************************************
1747 set the newer than time
1748 ****************************************************************************/
1749 static int cmd_newer(void)
1753 SMB_STRUCT_STAT sbuf
;
1755 ok
= next_token_nr(NULL
,buf
,NULL
,sizeof(buf
));
1756 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
1757 newer_than
= sbuf
.st_mtime
;
1758 DEBUG(1,("Getting files newer than %s",
1759 asctime(LocalTime(&newer_than
))));
1764 if (ok
&& newer_than
== 0) {
1765 d_printf("Error setting newer-than time\n");
1772 /****************************************************************************
1773 set the archive level
1774 ****************************************************************************/
1775 static int cmd_archive(void)
1779 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1780 archive_level
= atoi(buf
);
1782 d_printf("Archive level is %d\n",archive_level
);
1787 /****************************************************************************
1788 toggle the lowercaseflag
1789 ****************************************************************************/
1790 static int cmd_lowercase(void)
1792 lowercase
= !lowercase
;
1793 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
1801 /****************************************************************************
1802 toggle the recurse flag
1803 ****************************************************************************/
1804 static int cmd_recurse(void)
1807 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
1812 /****************************************************************************
1813 toggle the translate flag
1814 ****************************************************************************/
1815 static int cmd_translate(void)
1817 translation
= !translation
;
1818 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
1819 translation
?"on":"off"));
1825 /****************************************************************************
1826 do a printmode command
1827 ****************************************************************************/
1828 static int cmd_printmode(void)
1833 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1834 if (strequal(buf
,"text")) {
1837 if (strequal(buf
,"graphics"))
1840 printmode
= atoi(buf
);
1847 fstrcpy(mode
,"text");
1850 fstrcpy(mode
,"graphics");
1853 slprintf(mode
,sizeof(mode
)-1,"%d",printmode
);
1857 DEBUG(2,("the printmode is now %s\n",mode
));
1862 /****************************************************************************
1864 ****************************************************************************/
1865 static int cmd_lcd(void)
1870 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
1872 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
1877 /****************************************************************************
1879 ****************************************************************************/
1880 static void browse_fn(const char *name
, uint32 m
,
1881 const char *comment
, void *state
)
1889 case STYPE_DISKTREE
:
1890 fstrcpy(typestr
,"Disk"); break;
1892 fstrcpy(typestr
,"Printer"); break;
1894 fstrcpy(typestr
,"Device"); break;
1896 fstrcpy(typestr
,"IPC"); break;
1898 /* FIXME: If the remote machine returns non-ascii characters
1899 in any of these fields, they can corrupt the output. We
1900 should remove them. */
1901 d_printf("\t%-15.15s%-10.10s%s\n",
1902 name
,typestr
,comment
);
1906 /****************************************************************************
1907 try and browse available connections on a host
1908 ****************************************************************************/
1909 static BOOL
browse_host(BOOL sort
)
1913 d_printf("\n\tSharename Type Comment\n");
1914 d_printf("\t--------- ---- -------\n");
1916 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
1917 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
1922 /****************************************************************************
1924 ****************************************************************************/
1925 static void server_fn(const char *name
, uint32 m
,
1926 const char *comment
, void *state
)
1928 d_printf("\t%-16.16s %s\n", name
, comment
);
1931 /****************************************************************************
1932 try and browse available connections on a host
1933 ****************************************************************************/
1934 static BOOL
list_servers(char *wk_grp
)
1936 if (!cli
->server_domain
) return False
;
1938 d_printf("\n\tServer Comment\n");
1939 d_printf("\t--------- -------\n");
1941 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
, NULL
);
1943 d_printf("\n\tWorkgroup Master\n");
1944 d_printf("\t--------- -------\n");
1946 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
, server_fn
, NULL
);
1950 /* Some constants for completing filename arguments */
1952 #define COMPL_NONE 0 /* No completions */
1953 #define COMPL_REMOTE 1 /* Complete remote filename */
1954 #define COMPL_LOCAL 2 /* Complete local filename */
1956 /* This defines the commands supported by this client.
1957 * NOTE: The "!" must be the last one in the list because it's fn pointer
1958 * field is NULL, and NULL in that field is used in process_tok()
1959 * (below) to indicate the end of the list. crh
1966 char compl_args
[2]; /* Completion argument info */
1969 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
1970 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
1971 {"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
}},
1972 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
1973 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
1974 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
1975 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
1976 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
1977 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1978 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
1979 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
1980 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
1981 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
1982 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
1983 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
1984 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
1985 {"link",cmd_link
,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
1986 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
1987 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
1988 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
1989 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
1990 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1991 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
1992 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
1993 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1994 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
1995 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
1996 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
1997 {"printmode",cmd_printmode
,"<graphics or text> set the print mode",{COMPL_NONE
,COMPL_NONE
}},
1998 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
1999 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2000 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
2001 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2002 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
2003 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2004 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2005 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2006 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
2007 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2008 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2009 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
2010 {"symlink",cmd_symlink
,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
2011 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
2012 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
2013 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
2015 /* Yes, this must be here, see crh's comment above. */
2016 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
2017 {"",NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
2021 /*******************************************************************
2022 lookup a command string in the list of commands, including
2024 ******************************************************************/
2025 static int process_tok(fstring tok
)
2027 int i
= 0, matches
= 0;
2029 int tok_len
= strlen(tok
);
2031 while (commands
[i
].fn
!= NULL
) {
2032 if (strequal(commands
[i
].name
,tok
)) {
2036 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
2045 else if (matches
== 1)
2051 /****************************************************************************
2053 ****************************************************************************/
2054 static int cmd_help(void)
2059 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2060 if ((i
= process_tok(buf
)) >= 0)
2061 d_printf("HELP %s:\n\t%s\n\n",commands
[i
].name
,commands
[i
].description
);
2063 while (commands
[i
].description
) {
2064 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
2065 d_printf("%-15s",commands
[i
].name
);
2074 /****************************************************************************
2075 process a -c command string
2076 ****************************************************************************/
2077 static int process_command_string(char *cmd
)
2083 /* establish the connection if not already */
2086 cli
= do_connect(desthost
, service
);
2091 while (cmd
[0] != '\0') {
2096 if ((p
= strchr_m(cmd
, ';')) == 0) {
2097 strncpy(line
, cmd
, 999);
2101 if (p
- cmd
> 999) p
= cmd
+ 999;
2102 strncpy(line
, cmd
, p
- cmd
);
2103 line
[p
- cmd
] = '\0';
2107 /* and get the first part of the command */
2109 if (!next_token_nr(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
2111 if ((i
= process_tok(tok
)) >= 0) {
2112 rc
= commands
[i
].fn();
2113 } else if (i
== -2) {
2114 d_printf("%s: command abbreviation ambiguous\n",tok
);
2116 d_printf("%s: command not found\n",tok
);
2123 /****************************************************************************
2124 handle completion of commands for readline
2125 ****************************************************************************/
2126 static char **completion_fn(char *text
, int start
, int end
)
2128 #define MAX_COMPLETIONS 100
2132 /* for words not at the start of the line fallback to filename completion */
2133 if (start
) return NULL
;
2135 matches
= (char **)malloc(sizeof(matches
[0])*MAX_COMPLETIONS
);
2136 if (!matches
) return NULL
;
2138 matches
[count
++] = strdup(text
);
2139 if (!matches
[0]) return NULL
;
2141 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
2142 if (strncmp(text
, commands
[i
].name
, strlen(text
)) == 0) {
2143 matches
[count
] = strdup(commands
[i
].name
);
2144 if (!matches
[count
]) return NULL
;
2150 SAFE_FREE(matches
[0]);
2151 matches
[0] = strdup(matches
[1]);
2153 matches
[count
] = NULL
;
2158 /****************************************************************************
2159 make sure we swallow keepalives during idle time
2160 ****************************************************************************/
2161 static void readline_callback(void)
2164 struct timeval timeout
;
2165 static time_t last_t
;
2170 if (t
- last_t
< 5) return;
2176 FD_SET(cli
->fd
,&fds
);
2179 timeout
.tv_usec
= 0;
2180 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
2182 /* We deliberately use receive_smb instead of
2183 client_receive_smb as we want to receive
2184 session keepalives and then drop them here.
2186 if (FD_ISSET(cli
->fd
,&fds
)) {
2187 receive_smb(cli
->fd
,cli
->inbuf
,0);
2191 cli_chkpath(cli
, "\\");
2195 /****************************************************************************
2196 process commands on stdin
2197 ****************************************************************************/
2198 static void process_stdin(void)
2209 /* display a prompt */
2210 slprintf(the_prompt
, sizeof(the_prompt
)-1, "smb: %s> ", cur_dir
);
2211 cline
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
2215 pstrcpy(line
, cline
);
2217 /* special case - first char is ! */
2223 /* and get the first part of the command */
2225 if (!next_token_nr(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
2227 if ((i
= process_tok(tok
)) >= 0) {
2229 } else if (i
== -2) {
2230 d_printf("%s: command abbreviation ambiguous\n",tok
);
2232 d_printf("%s: command not found\n",tok
);
2238 /*****************************************************
2239 return a connection to a server
2240 *******************************************************/
2241 struct cli_state
*do_connect(const char *server
, const char *share
)
2243 struct cli_state
*c
;
2244 struct nmb_name called
, calling
;
2245 const char *server_n
;
2247 fstring servicename
;
2250 /* make a copy so we don't modify the global string 'service' */
2251 safe_strcpy(servicename
, share
, sizeof(servicename
)-1);
2252 sharename
= servicename
;
2253 if (*sharename
== '\\') {
2254 server
= sharename
+2;
2255 sharename
= strchr_m(server
,'\\');
2256 if (!sharename
) return NULL
;
2265 make_nmb_name(&calling
, global_myname
, 0x0);
2266 make_nmb_name(&called
, server
, name_type
);
2270 if (have_ip
) ip
= dest_ip
;
2272 /* have to open a new connection */
2273 if (!(c
=cli_initialise(NULL
)) || (cli_set_port(c
, port
) != port
) ||
2274 !cli_connect(c
, server_n
, &ip
)) {
2275 d_printf("Connection to %s failed\n", server_n
);
2279 c
->protocol
= max_protocol
;
2280 c
->use_kerberos
= use_kerberos
;
2282 if (!cli_session_request(c
, &calling
, &called
)) {
2284 d_printf("session request to %s failed (%s)\n",
2285 called
.name
, cli_errstr(c
));
2287 if ((p
=strchr_m(called
.name
, '.'))) {
2291 if (strcmp(called
.name
, "*SMBSERVER")) {
2292 make_nmb_name(&called
, "*SMBSERVER", 0x20);
2298 DEBUG(4,(" session request ok\n"));
2300 if (!cli_negprot(c
)) {
2301 d_printf("protocol negotiation failed\n");
2307 char *pass
= getpass("Password: ");
2309 pstrcpy(password
, pass
);
2313 if (!cli_session_setup(c
, username
,
2314 password
, strlen(password
),
2315 password
, strlen(password
),
2317 /* if a password was not supplied then try again with a null username */
2318 if (password
[0] || !username
[0] || use_kerberos
||
2319 !cli_session_setup(c
, "", "", 0, "", 0, workgroup
)) {
2320 d_printf("session setup failed: %s\n", cli_errstr(c
));
2324 d_printf("Anonymous login successful\n");
2327 if (*c
->server_domain
) {
2328 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
2329 c
->server_domain
,c
->server_os
,c
->server_type
));
2330 } else if (*c
->server_os
|| *c
->server_type
){
2331 DEBUG(1,("OS=[%s] Server=[%s]\n",
2332 c
->server_os
,c
->server_type
));
2335 DEBUG(4,(" session setup ok\n"));
2337 if (!cli_send_tconX(c
, sharename
, "?????",
2338 password
, strlen(password
)+1)) {
2339 d_printf("tree connect failed: %s\n", cli_errstr(c
));
2344 DEBUG(4,(" tconx ok\n"));
2350 /****************************************************************************
2351 process commands from the client
2352 ****************************************************************************/
2353 static int process(char *base_directory
)
2357 cli
= do_connect(desthost
, service
);
2362 if (*base_directory
) do_cd(base_directory
);
2365 rc
= process_command_string(cmdstr
);
2374 /****************************************************************************
2375 usage on the program
2376 ****************************************************************************/
2377 static void usage(char *pname
)
2379 d_printf("Usage: %s service <password> [options]", pname
);
2381 d_printf("\nVersion %s\n",VERSION
);
2382 d_printf("\t-s smb.conf pathname to smb.conf file\n");
2383 d_printf("\t-O socket_options socket options to use\n");
2384 d_printf("\t-R name resolve order use these name resolution services only\n");
2385 d_printf("\t-M host send a winpopup message to the host\n");
2386 d_printf("\t-i scope use this NetBIOS scope\n");
2387 d_printf("\t-N don't ask for a password\n");
2388 d_printf("\t-n netbios name. Use this name as my netbios name\n");
2389 d_printf("\t-d debuglevel set the debuglevel\n");
2390 d_printf("\t-P connect to service as a printer\n");
2391 d_printf("\t-p port connect to the specified port\n");
2392 d_printf("\t-l log basename. Basename for log/debug files\n");
2393 d_printf("\t-h Print this help message.\n");
2394 d_printf("\t-I dest IP use this IP to connect to\n");
2395 d_printf("\t-E write messages to stderr instead of stdout\n");
2396 d_printf("\t-k use kerberos (active directory) authentication\n");
2397 d_printf("\t-U username set the network username\n");
2398 d_printf("\t-L host get a list of shares available on a host\n");
2399 d_printf("\t-t terminal code terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n");
2400 d_printf("\t-m max protocol set the max protocol level\n");
2401 d_printf("\t-A filename get the credentials from a file\n");
2402 d_printf("\t-W workgroup set the workgroup name\n");
2403 d_printf("\t-T<c|x>IXFqgbNan command line tar\n");
2404 d_printf("\t-D directory start from directory\n");
2405 d_printf("\t-c command string execute semicolon separated commands\n");
2406 d_printf("\t-b xmit/send buffer changes the transmit/send buffer (default: 65520)\n");
2411 /****************************************************************************
2412 get a password from a a file or file descriptor
2414 ****************************************************************************/
2415 static void get_password_file(void)
2419 BOOL close_it
= False
;
2423 if ((p
= getenv("PASSWD_FD")) != NULL
) {
2424 pstrcpy(spec
, "descriptor ");
2426 sscanf(p
, "%d", &fd
);
2428 } else if ((p
= getenv("PASSWD_FILE")) != NULL
) {
2429 fd
= sys_open(p
, O_RDONLY
, 0);
2432 fprintf(stderr
, "Error opening PASSWD_FILE %s: %s\n",
2433 spec
, strerror(errno
));
2439 for(p
= pass
, *p
= '\0'; /* ensure that pass is null-terminated */
2440 p
&& p
- pass
< sizeof(pass
);) {
2441 switch (read(fd
, p
, 1)) {
2443 if (*p
!= '\n' && *p
!= '\0') {
2444 *++p
= '\0'; /* advance p, and null-terminate pass */
2449 *p
= '\0'; /* null-terminate it, just in case... */
2450 p
= NULL
; /* then force the loop condition to become false */
2453 fprintf(stderr
, "Error reading password from file %s: %s\n",
2454 spec
, "empty password\n");
2459 fprintf(stderr
, "Error reading password from file %s: %s\n",
2460 spec
, strerror(errno
));
2464 pstrcpy(password
, pass
);
2471 /****************************************************************************
2473 ****************************************************************************/
2474 static int do_host_query(char *query_host
)
2476 cli
= do_connect(query_host
, "IPC$");
2481 list_servers(workgroup
);
2489 /****************************************************************************
2490 handle a tar operation
2491 ****************************************************************************/
2492 static int do_tar_op(char *base_directory
)
2496 /* do we already have a connection? */
2498 cli
= do_connect(desthost
, service
);
2505 if (*base_directory
) do_cd(base_directory
);
2514 /****************************************************************************
2515 handle a message operation
2516 ****************************************************************************/
2517 static int do_message_op(void)
2520 struct nmb_name called
, calling
;
2524 make_nmb_name(&calling
, global_myname
, 0x0);
2525 make_nmb_name(&called
, desthost
, name_type
);
2528 if (have_ip
) ip
= dest_ip
;
2530 if (!(cli
=cli_initialise(NULL
)) || (cli_set_port(cli
, port
) != port
) || !cli_connect(cli
, desthost
, &ip
)) {
2531 d_printf("Connection to %s failed\n", desthost
);
2535 if (!cli_session_request(cli
, &calling
, &called
)) {
2536 d_printf("session request failed\n");
2549 * Process "-L hostname" option.
2551 * We don't actually do anything yet -- we just stash the name in a
2552 * global variable and do the query when all options have been read.
2554 static void remember_query_host(const char *arg
,
2559 while (*arg
== '\\' || *arg
== '/')
2561 pstrcpy(query_host
, arg
);
2562 if ((slash
= strchr(query_host
, '/'))
2563 || (slash
= strchr(query_host
, '\\'))) {
2569 /****************************************************************************
2571 ****************************************************************************/
2572 int main(int argc
,char *argv
[])
2574 fstring base_directory
;
2575 char *pname
= argv
[0];
2577 extern char *optarg
;
2581 BOOL message
= False
;
2582 extern char tar_type
;
2584 pstring new_name_resolve_order
;
2590 pstrcpy(term_code
, KANJI
);
2596 *base_directory
= 0;
2598 *new_name_resolve_order
= 0;
2601 AllowDebugChange
= False
;
2603 setup_logging(pname
,True
);
2606 * If the -E option is given, be careful not to clobber stdout
2607 * before processing the options. 28.Feb.99, richard@hacom.nl.
2608 * Also pre-parse the -s option to get the service file name.
2611 for (opt
= 1; opt
< argc
; opt
++) {
2612 if (strcmp(argv
[opt
], "-E") == 0)
2614 else if(strncmp(argv
[opt
], "-s", 2) == 0) {
2615 if(argv
[opt
][2] != '\0')
2616 pstrcpy(dyn_CONFIGFILE
, &argv
[opt
][2]);
2617 else if(argv
[opt
+1] != NULL
) {
2619 * At least one more arg left.
2621 pstrcpy(dyn_CONFIGFILE
, argv
[opt
+1]);
2629 in_client
= True
; /* Make sure that we tell lp_load we are */
2631 old_debug
= DEBUGLEVEL
;
2632 if (!lp_load(dyn_CONFIGFILE
,True
,False
,False
)) {
2633 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
2634 prog_name
, dyn_CONFIGFILE
);
2636 DEBUGLEVEL
= old_debug
;
2638 pstrcpy(workgroup
,lp_workgroup());
2644 if (getenv("USER")) {
2645 pstrcpy(username
,getenv("USER"));
2647 /* modification to support userid%passwd syntax in the USER var
2648 25.Aug.97, jdblair@uab.edu */
2650 if ((p
=strchr_m(username
,'%'))) {
2652 pstrcpy(password
,p
+1);
2654 memset(strchr_m(getenv("USER"),'%')+1,'X',strlen(password
));
2659 /* modification to support PASSWD environmental var
2660 25.Aug.97, jdblair@uab.edu */
2661 if (getenv("PASSWD")) {
2662 pstrcpy(password
,getenv("PASSWD"));
2666 if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) {
2667 get_password_file();
2671 if (*username
== 0 && getenv("LOGNAME")) {
2672 pstrcpy(username
,getenv("LOGNAME"));
2676 if (*username
== 0) {
2677 pstrcpy(username
,"GUEST");
2685 /* FIXME: At the moment, if the user should happen to give the
2686 * options ahead of the service name (in standard Unix
2687 * fashion) then smbclient just spits out the usage message
2688 * with no explanation of what in particular was wrong. Is
2689 * there any reason we can't just parse out the service name
2690 * and password after running getopt?? -- mbp */
2691 if (*argv
[1] != '-') {
2692 pstrcpy(service
,argv
[1]);
2693 /* Convert any '/' characters in the service name to '\' characters */
2694 string_replace( service
, '/','\\');
2698 if (count_chars(service
,'\\') < 3) {
2700 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
2704 if (argc
> 1 && (*argv
[1] != '-')) {
2706 pstrcpy(password
,argv
[1]);
2707 memset(argv
[1],'X',strlen(argv
[1]));
2714 getopt(argc
, argv
,"s:O:R:M:i:Nn:d:Pp:l:hI:EU:L:t:m:W:T:D:c:b:A:k")) != EOF
) {
2717 pstrcpy(dyn_CONFIGFILE
, optarg
);
2720 pstrcpy(user_socket_options
,optarg
);
2723 pstrcpy(new_name_resolve_order
, optarg
);
2726 name_type
= 0x03; /* messages are sent to NetBIOS name type 0x3 */
2727 pstrcpy(desthost
,optarg
);
2732 extern pstring global_scope
;
2733 pstrcpy(global_scope
,optarg
);
2734 strupper(global_scope
);
2741 pstrcpy(global_myname
,optarg
);
2747 DEBUGLEVEL
= atoi(optarg
);
2750 /* not needed anymore */
2753 port
= atoi(optarg
);
2756 slprintf(logfile
,sizeof(logfile
)-1, "%s.client",optarg
);
2757 lp_set_logfile(logfile
);
2765 dest_ip
= *interpret_addr2(optarg
);
2766 if (is_zero_ip(dest_ip
))
2772 display_set_stderr();
2778 pstrcpy(username
,optarg
);
2779 if ((lp
=strchr_m(username
,'%'))) {
2781 pstrcpy(password
,lp
+1);
2783 memset(strchr_m(optarg
,'%')+1,'X',strlen(password
));
2793 char *ptr
, *val
, *param
;
2795 if ((auth
=x_fopen(optarg
, O_RDONLY
, 0)) == NULL
)
2797 /* fail if we can't open the credentials file */
2798 d_printf("ERROR: Unable to open credentials file!\n");
2802 while (!x_feof(auth
))
2804 /* get a line from the file */
2805 if (!x_fgets(buf
, sizeof(buf
), auth
))
2809 if ((len
) && (buf
[len
-1]=='\n'))
2817 /* break up the line into parameter & value.
2818 will need to eat a little whitespace possibly */
2820 if (!(ptr
= strchr_m (buf
, '=')))
2825 /* eat leading white space */
2826 while ((*val
!='\0') && ((*val
==' ') || (*val
=='\t')))
2829 if (strwicmp("password", param
) == 0)
2831 pstrcpy(password
, val
);
2834 else if (strwicmp("username", param
) == 0)
2835 pstrcpy(username
, val
);
2836 else if (strwicmp("domain", param
) == 0)
2837 pstrcpy(workgroup
,val
);
2838 memset(buf
, 0, sizeof(buf
));
2845 remember_query_host(optarg
, query_host
);
2848 pstrcpy(term_code
, optarg
);
2851 max_protocol
= interpret_protocol(optarg
, max_protocol
);
2854 pstrcpy(workgroup
,optarg
);
2857 if (!tar_parseargs(argc
, argv
, optarg
, optind
)) {
2863 pstrcpy(base_directory
,optarg
);
2869 io_bufsize
= MAX(1, atoi(optarg
));
2873 use_kerberos
= True
;
2876 d_printf("No kerberos support compiled in\n");
2886 get_myname((*global_myname
)?NULL
:global_myname
);
2888 if(*new_name_resolve_order
)
2889 lp_set_name_resolve_order(new_name_resolve_order
);
2891 if (!tar_type
&& !*query_host
&& !*service
&& !message
) {
2896 DEBUG( 3, ( "Client started (version %s).\n", VERSION
) );
2900 process_command_string(cmdstr
);
2901 return do_tar_op(base_directory
);
2904 if ((p
=strchr_m(query_host
,'#'))) {
2907 sscanf(p
, "%x", &name_type
);
2911 return do_host_query(query_host
);
2915 return do_message_op();
2918 if (process(base_directory
)) {