2 Unix SMB/Netbios implementation.
5 Copyright (C) Andrew Tridgell 1994-1998
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 struct cli_state
*cli
;
31 extern BOOL in_client
;
32 static int port
= SMB_PORT
;
33 pstring cur_dir
= "\\";
35 static pstring service
;
36 static pstring desthost
;
37 extern pstring global_myname
;
38 static pstring password
;
39 static pstring username
;
40 static pstring workgroup
;
43 static int io_bufsize
= 65520;
44 extern struct in_addr ipzero
;
46 static int name_type
= 0x20;
48 extern pstring user_socket_options
;
50 static int process_tok(fstring tok
);
51 static void 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 int archive_level
= 0;
63 extern pstring debugf
;
64 extern int DEBUGLEVEL
;
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 size
, int n
, FILE *f
)
143 if (!translation
|| (size
!= 1))
144 return(fread(b
,size
,n
,f
));
147 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
148 if ((c
= 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 DEBUG(0,("message start: %s\n", cli_errstr(cli
)));
177 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
++) {
194 * The message is in UNIX codepage format. Convert to
195 * DOS before sending.
198 unix_to_dos(msg
, True
);
200 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
201 printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
208 if (total_len
>= 1600)
209 printf("the message was truncated to 1600 bytes\n");
211 printf("sent %d bytes\n",total_len
);
213 if (!cli_message_end(cli
, grp_id
)) {
214 printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
221 /****************************************************************************
222 check the space on a device
223 ****************************************************************************/
224 static void do_dskattr(void)
226 int total
, bsize
, avail
;
228 if (!cli_dskattr(cli
, &bsize
, &total
, &avail
)) {
229 DEBUG(0,("Error in dskattr: %s\n",cli_errstr(cli
)));
233 DEBUG(0,("\n\t\t%d blocks of size %d. %d blocks available\n",
234 total
, bsize
, avail
));
237 /****************************************************************************
239 ****************************************************************************/
240 static void cmd_pwd(void)
242 DEBUG(0,("Current directory is %s",service
));
243 DEBUG(0,("%s\n",cur_dir
));
247 /****************************************************************************
248 change directory - inner section
249 ****************************************************************************/
250 static void do_cd(char *newdir
)
258 /* Save the current directory in case the
259 new directory is invalid */
260 pstrcpy(saved_dir
, cur_dir
);
265 if (*(cur_dir
+strlen(cur_dir
)-1) != '\\') {
266 pstrcat(cur_dir
, "\\");
268 dos_clean_name(cur_dir
);
269 pstrcpy(dname
,cur_dir
);
270 pstrcat(cur_dir
,"\\");
271 dos_clean_name(cur_dir
);
273 if (!strequal(cur_dir
,"\\")) {
274 if (!cli_chkpath(cli
, dname
)) {
275 DEBUG(0,("cd %s: %s\n", dname
, cli_errstr(cli
)));
276 pstrcpy(cur_dir
,saved_dir
);
280 pstrcpy(cd_path
,cur_dir
);
283 /****************************************************************************
285 ****************************************************************************/
286 static void cmd_cd(void)
290 if (next_token(NULL
,buf
,NULL
,sizeof(buf
)))
293 DEBUG(0,("Current directory is %s\n",cur_dir
));
297 /*******************************************************************
298 decide if a file should be operated on
299 ********************************************************************/
300 static BOOL
do_this_one(file_info
*finfo
)
302 if (finfo
->mode
& aDIR
) return(True
);
304 if (*fileselection
&&
305 !mask_match(finfo
->name
,fileselection
,False
,False
)) {
306 DEBUG(3,("match_match %s failed\n", finfo
->name
));
310 if (newer_than
&& finfo
->mtime
< newer_than
) {
311 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
315 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
316 DEBUG(3,("archive %s failed\n", finfo
->name
));
323 /****************************************************************************
324 display info about a file
325 ****************************************************************************/
326 static void display_finfo(file_info
*finfo
)
328 if (do_this_one(finfo
)) {
329 time_t t
= finfo
->mtime
; /* the time is assumed to be passed as GMT */
330 DEBUG(0,(" %-30s%7.7s %8.0f %s",
332 attrib_string(finfo
->mode
),
334 asctime(LocalTime(&t
))));
335 dir_total
+= finfo
->size
;
340 /****************************************************************************
341 accumulate size of a file
342 ****************************************************************************/
343 static void do_du(file_info
*finfo
)
345 if (do_this_one(finfo
)) {
346 dir_total
+= finfo
->size
;
350 static BOOL do_list_recurse
;
351 static BOOL do_list_dirs
;
352 static char *do_list_queue
= 0;
353 static long do_list_queue_size
= 0;
354 static long do_list_queue_start
= 0;
355 static long do_list_queue_end
= 0;
356 static void (*do_list_fn
)(file_info
*);
358 /****************************************************************************
359 functions for do_list_queue
360 ****************************************************************************/
363 * The do_list_queue is a NUL-separated list of strings stored in a
364 * char*. Since this is a FIFO, we keep track of the beginning and
365 * ending locations of the data in the queue. When we overflow, we
366 * double the size of the char*. When the start of the data passes
367 * the midpoint, we move everything back. This is logically more
368 * complex than a linked list, but easier from a memory management
369 * angle. In any memory error condition, do_list_queue is reset.
370 * Functions check to ensure that do_list_queue is non-NULL before
373 static void reset_do_list_queue(void)
380 do_list_queue_size
= 0;
381 do_list_queue_start
= 0;
382 do_list_queue_end
= 0;
385 static void init_do_list_queue(void)
387 reset_do_list_queue();
388 do_list_queue_size
= 1024;
389 do_list_queue
= malloc(do_list_queue_size
);
390 if (do_list_queue
== 0) {
391 DEBUG(0,("malloc fail for size %d\n",
392 (int)do_list_queue_size
));
393 reset_do_list_queue();
395 memset(do_list_queue
, 0, do_list_queue_size
);
399 static void adjust_do_list_queue(void)
402 * If the starting point of the queue is more than half way through,
403 * move everything toward the beginning.
405 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';
411 else if (do_list_queue_start
> (do_list_queue_size
/ 2))
413 DEBUG(4,("sliding do_list_queue backward\n"));
414 memmove(do_list_queue
,
415 do_list_queue
+ do_list_queue_start
,
416 do_list_queue_end
- do_list_queue_start
);
417 do_list_queue_end
-= do_list_queue_start
;
418 do_list_queue_start
= 0;
423 static void add_to_do_list_queue(const char* entry
)
425 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
426 while (new_end
> do_list_queue_size
)
428 do_list_queue_size
*= 2;
429 DEBUG(4,("enlarging do_list_queue to %d\n",
430 (int)do_list_queue_size
));
431 do_list_queue
= Realloc(do_list_queue
, do_list_queue_size
);
432 if (! do_list_queue
) {
433 DEBUG(0,("failure enlarging do_list_queue to %d bytes\n",
434 (int)do_list_queue_size
));
435 reset_do_list_queue();
439 memset(do_list_queue
+ do_list_queue_size
/ 2,
440 0, do_list_queue_size
/ 2);
445 pstrcpy(do_list_queue
+ do_list_queue_end
, entry
);
446 do_list_queue_end
= new_end
;
447 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
448 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
452 static char *do_list_queue_head(void)
454 return do_list_queue
+ do_list_queue_start
;
457 static void remove_do_list_queue_head(void)
459 if (do_list_queue_end
> do_list_queue_start
)
461 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
462 adjust_do_list_queue();
463 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
464 (int)do_list_queue_start
, (int)do_list_queue_end
));
468 static int do_list_queue_empty(void)
470 return (! (do_list_queue
&& *do_list_queue
));
473 /****************************************************************************
475 ****************************************************************************/
476 static void do_list_helper(file_info
*f
, const char *mask
)
478 if (f
->mode
& aDIR
) {
479 if (do_list_dirs
&& do_this_one(f
)) {
482 if (do_list_recurse
&&
483 !strequal(f
->name
,".") &&
484 !strequal(f
->name
,"..")) {
488 pstrcpy(mask2
, mask
);
489 p
= strrchr(mask2
,'\\');
492 pstrcat(mask2
, f
->name
);
493 pstrcat(mask2
,"\\*");
494 add_to_do_list_queue(mask2
);
499 if (do_this_one(f
)) {
505 /****************************************************************************
506 a wrapper around cli_list that adds recursion
507 ****************************************************************************/
508 void do_list(const char *mask
,uint16 attribute
,void (*fn
)(file_info
*),BOOL rec
, BOOL dirs
)
510 static int in_do_list
= 0;
512 if (in_do_list
&& rec
)
514 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
520 do_list_recurse
= rec
;
526 init_do_list_queue();
527 add_to_do_list_queue(mask
);
529 while (! do_list_queue_empty())
532 * Need to copy head so that it doesn't become
533 * invalid inside the call to cli_list. This
534 * would happen if the list were expanded
536 * Fix from E. Jay Berkenbilt (ejb@ql.org)
539 pstrcpy(head
, do_list_queue_head());
540 cli_list(cli
, head
, attribute
, do_list_helper
);
541 remove_do_list_queue_head();
542 if ((! do_list_queue_empty()) && (fn
== display_finfo
))
544 char* next_file
= do_list_queue_head();
546 if ((strlen(next_file
) >= 2) &&
547 (next_file
[strlen(next_file
) - 1] == '*') &&
548 (next_file
[strlen(next_file
) - 2] == '\\'))
550 save_ch
= next_file
+
551 strlen(next_file
) - 2;
554 DEBUG(0,("\n%s\n",next_file
));
564 if (cli_list(cli
, mask
, attribute
, do_list_helper
) == -1)
566 DEBUG(0, ("%s listing %s\n", cli_errstr(cli
), mask
));
571 reset_do_list_queue();
574 /****************************************************************************
575 get a directory listing
576 ****************************************************************************/
577 static void cmd_dir(void)
579 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
585 pstrcpy(mask
,cur_dir
);
586 if(mask
[strlen(mask
)-1]!='\\')
589 if (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
600 do_list(mask
, attribute
, display_finfo
, recurse
, True
);
604 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
608 /****************************************************************************
609 get a directory listing
610 ****************************************************************************/
611 static void cmd_du(void)
613 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
619 pstrcpy(mask
,cur_dir
);
620 if(mask
[strlen(mask
)-1]!='\\')
623 if (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
633 do_list(mask
, attribute
, do_du
, recurse
, True
);
637 DEBUG(0, ("Total number of bytes: %.0f\n", dir_total
));
641 /****************************************************************************
642 get a file from rname to lname
643 ****************************************************************************/
644 static void do_get(char *rname
,char *lname
)
647 BOOL newhandle
= False
;
649 struct timeval tp_start
;
650 int read_size
= io_bufsize
;
655 GetTimeOfDay(&tp_start
);
661 fnum
= cli_open(cli
, rname
, O_RDONLY
, DENY_NONE
);
664 DEBUG(0,("%s opening remote file %s\n",cli_errstr(cli
),rname
));
668 if(!strcmp(lname
,"-")) {
669 handle
= fileno(stdout
);
671 handle
= sys_open(lname
,O_WRONLY
|O_CREAT
|O_TRUNC
,0644);
675 DEBUG(0,("Error opening local file %s\n",lname
));
680 if (!cli_qfileinfo(cli
, fnum
,
681 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
682 !cli_getattrE(cli
, fnum
,
683 &attr
, &size
, NULL
, NULL
, NULL
)) {
684 DEBUG(0,("getattrib: %s\n",cli_errstr(cli
)));
688 DEBUG(2,("getting file %s of size %.0f as %s ",
689 lname
, (double)size
, lname
));
691 if(!(data
= (char *)malloc(read_size
))) {
692 DEBUG(0,("malloc fail for size %d\n", read_size
));
693 cli_close(cli
, fnum
);
698 int n
= cli_read(cli
, fnum
, data
, nread
, read_size
);
702 if (writefile(handle
,data
, n
) != n
) {
703 DEBUG(0,("Error writing local file\n"));
711 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
712 rname
, (long)nread
));
717 if (!cli_close(cli
, fnum
)) {
718 DEBUG(0,("Error %s closing remote file\n",cli_errstr(cli
)));
725 if (archive_level
>= 2 && (attr
& aARCH
)) {
726 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
730 struct timeval tp_end
;
733 GetTimeOfDay(&tp_end
);
735 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
736 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
737 get_total_time_ms
+= this_time
;
738 get_total_size
+= nread
;
740 DEBUG(2,("(%g kb/s) (average %g kb/s)\n",
741 nread
/ (1.024*this_time
+ 1.0e-4),
742 get_total_size
/ (1.024*get_total_time_ms
)));
747 /****************************************************************************
749 ****************************************************************************/
750 static void cmd_get(void)
756 pstrcpy(rname
,cur_dir
);
759 p
= rname
+ strlen(rname
);
761 if (!next_token(NULL
,p
,NULL
,sizeof(rname
)-strlen(rname
))) {
762 DEBUG(0,("get <filename>\n"));
766 dos_clean_name(rname
);
768 next_token(NULL
,lname
,NULL
,sizeof(lname
));
770 do_get(rname
, lname
);
774 /****************************************************************************
775 do a mget operation on one file
776 ****************************************************************************/
777 static void do_mget(file_info
*finfo
)
781 pstring saved_curdir
;
784 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
788 DEBUG(0,("mget aborted\n"));
792 if (finfo
->mode
& aDIR
)
793 slprintf(quest
,sizeof(pstring
)-1,
794 "Get directory %s? ",finfo
->name
);
796 slprintf(quest
,sizeof(pstring
)-1,
797 "Get file %s? ",finfo
->name
);
799 if (prompt
&& !yesno(quest
)) return;
801 if (!(finfo
->mode
& aDIR
)) {
802 pstrcpy(rname
,cur_dir
);
803 pstrcat(rname
,finfo
->name
);
804 do_get(rname
,finfo
->name
);
808 /* handle directories */
809 pstrcpy(saved_curdir
,cur_dir
);
811 pstrcat(cur_dir
,finfo
->name
);
812 pstrcat(cur_dir
,"\\");
814 unix_format(finfo
->name
);
816 strlower(finfo
->name
);
818 if (!directory_exist(finfo
->name
,NULL
) &&
819 mkdir(finfo
->name
,0777) != 0) {
820 DEBUG(0,("failed to create directory %s\n",finfo
->name
));
821 pstrcpy(cur_dir
,saved_curdir
);
825 if (chdir(finfo
->name
) != 0) {
826 DEBUG(0,("failed to chdir to directory %s\n",finfo
->name
));
827 pstrcpy(cur_dir
,saved_curdir
);
831 pstrcpy(mget_mask
,cur_dir
);
832 pstrcat(mget_mask
,"*");
834 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,False
, True
);
836 pstrcpy(cur_dir
,saved_curdir
);
840 /****************************************************************************
841 view the file using the pager
842 ****************************************************************************/
843 static void cmd_more(void)
845 fstring rname
,lname
,pager_cmd
;
849 fstrcpy(rname
,cur_dir
);
852 slprintf(lname
,sizeof(lname
)-1, "%s/smbmore.XXXXXX",tmpdir());
853 fd
= smb_mkstemp(lname
);
855 DEBUG(0,("failed to create temporary file for more\n"));
860 if (!next_token(NULL
,rname
+strlen(rname
),NULL
,sizeof(rname
)-strlen(rname
))) {
861 DEBUG(0,("more <filename>\n"));
865 dos_clean_name(rname
);
869 pager
=getenv("PAGER");
871 slprintf(pager_cmd
,sizeof(pager_cmd
)-1,
872 "%s %s",(pager
? pager
:PAGER
), lname
);
879 /****************************************************************************
881 ****************************************************************************/
882 static void cmd_mget(void)
884 uint16 attribute
= aSYSTEM
| aHIDDEN
;
896 while (next_token(NULL
,p
,NULL
,sizeof(buf
))) {
897 pstrcpy(mget_mask
,cur_dir
);
898 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
899 pstrcat(mget_mask
,"\\");
902 pstrcpy(mget_mask
,p
);
904 pstrcat(mget_mask
,p
);
905 do_list(mget_mask
, attribute
,do_mget
,False
,True
);
909 pstrcpy(mget_mask
,cur_dir
);
910 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
911 pstrcat(mget_mask
,"\\");
912 pstrcat(mget_mask
,"*");
913 do_list(mget_mask
, attribute
,do_mget
,False
,True
);
918 /****************************************************************************
919 make a directory of name "name"
920 ****************************************************************************/
921 static BOOL
do_mkdir(char *name
)
923 if (!cli_mkdir(cli
, name
)) {
924 DEBUG(0,("%s making remote directory %s\n",
925 cli_errstr(cli
),name
));
933 /****************************************************************************
935 ****************************************************************************/
936 static void cmd_quit(void)
943 /****************************************************************************
945 ****************************************************************************/
946 static void cmd_mkdir(void)
952 pstrcpy(mask
,cur_dir
);
954 if (!next_token(NULL
,p
,NULL
,sizeof(buf
))) {
956 DEBUG(0,("mkdir <dirname>\n"));
967 trim_string(ddir
,".",NULL
);
968 p
= strtok(ddir
,"/\\");
971 if (!cli_chkpath(cli
, ddir2
)) {
975 p
= strtok(NULL
,"/\\");
983 /****************************************************************************
985 ****************************************************************************/
986 static void do_put(char *rname
,char *lname
)
992 int maxwrite
=io_bufsize
;
994 struct timeval tp_start
;
995 GetTimeOfDay(&tp_start
);
997 fnum
= cli_open(cli
, rname
, O_WRONLY
|O_CREAT
|O_TRUNC
, DENY_NONE
);
1000 DEBUG(0,("%s opening remote file %s\n",cli_errstr(cli
),rname
));
1004 /* allow files to be piped into smbclient
1005 jdblair 24.jun.98 */
1006 if (!strcmp(lname
, "-")) {
1008 /* size of file is not known */
1010 f
= sys_fopen(lname
,"r");
1014 DEBUG(0,("Error opening local file %s\n",lname
));
1019 DEBUG(1,("putting file %s as %s ",lname
,
1022 buf
= (char *)malloc(maxwrite
);
1027 if ((n
= readfile(buf
,1,n
,f
)) < 1) {
1028 if((n
== 0) && feof(f
))
1029 break; /* Empty local file. */
1031 DEBUG(0,("Error reading local file: %s\n", strerror(errno
) ));
1035 ret
= cli_write(cli
, fnum
, 0, buf
, nread
, n
);
1038 DEBUG(0,("Error writing file: %s\n", cli_errstr(cli
)));
1045 if (!cli_close(cli
, fnum
)) {
1046 DEBUG(0,("%s closing remote file %s\n",cli_errstr(cli
),rname
));
1057 struct timeval tp_end
;
1060 GetTimeOfDay(&tp_end
);
1062 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1063 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1064 put_total_time_ms
+= this_time
;
1065 put_total_size
+= nread
;
1067 DEBUG(1,("(%g kb/s) (average %g kb/s)\n",
1068 nread
/ (1.024*this_time
+ 1.0e-4),
1069 put_total_size
/ (1.024*put_total_time_ms
)));
1080 /****************************************************************************
1082 ****************************************************************************/
1083 static void cmd_put(void)
1090 pstrcpy(rname
,cur_dir
);
1091 pstrcat(rname
,"\\");
1093 if (!next_token(NULL
,p
,NULL
,sizeof(buf
))) {
1094 DEBUG(0,("put <filename>\n"));
1099 if (next_token(NULL
,p
,NULL
,sizeof(buf
)))
1102 pstrcat(rname
,lname
);
1104 dos_clean_name(rname
);
1108 /* allow '-' to represent stdin
1109 jdblair, 24.jun.98 */
1110 if (!file_exist(lname
,&st
) &&
1111 (strcmp(lname
,"-"))) {
1112 DEBUG(0,("%s does not exist\n",lname
));
1117 do_put(rname
,lname
);
1121 /****************************************************************************
1122 seek in a directory/file list until you get something that doesn't start with
1124 ****************************************************************************/
1125 static BOOL
seek_list(FILE *f
,char *name
)
1129 if (!fgets(s
,sizeof(s
),f
)) return(False
);
1130 trim_string(s
,"./","\n");
1131 if (strncmp(s
,name
,strlen(name
)) != 0) {
1141 /****************************************************************************
1142 set the file selection mask
1143 ****************************************************************************/
1144 static void cmd_select(void)
1146 pstrcpy(fileselection
,"");
1147 next_token(NULL
,fileselection
,NULL
,sizeof(fileselection
));
1151 /****************************************************************************
1153 ****************************************************************************/
1154 static void cmd_mput(void)
1161 while (next_token(NULL
,p
,NULL
,sizeof(buf
))) {
1168 slprintf(tmpname
,sizeof(tmpname
)-1, "%s/ls.smb.XXXXXX",
1170 fd
= smb_mkstemp(tmpname
);
1173 DEBUG(0,("Failed to create temporary file %s\n",
1179 slprintf(cmd
,sizeof(pstring
)-1,
1180 "find . -name \"%s\" -print > %s",p
,tmpname
);
1182 slprintf(cmd
,sizeof(pstring
)-1,
1183 "find . -maxdepth 1 -name \"%s\" -print > %s",p
,tmpname
);
1187 f
= sys_fopen(tmpname
,"r");
1194 if (!fgets(lname
,sizeof(lname
),f
)) break;
1195 trim_string(lname
,"./","\n");
1199 /* check if it's a directory */
1200 if (directory_exist(lname
,&st
)) {
1201 if (!recurse
) continue;
1202 slprintf(quest
,sizeof(pstring
)-1,
1203 "Put directory %s? ",lname
);
1204 if (prompt
&& !yesno(quest
)) {
1206 if (!seek_list(f
,lname
))
1211 pstrcpy(rname
,cur_dir
);
1212 pstrcat(rname
,lname
);
1214 if (!cli_chkpath(cli
, rname
) && !do_mkdir(rname
)) {
1216 if (!seek_list(f
,lname
))
1222 slprintf(quest
,sizeof(quest
)-1,
1223 "Put file %s? ",lname
);
1224 if (prompt
&& !yesno(quest
)) continue;
1226 pstrcpy(rname
,cur_dir
);
1227 pstrcat(rname
,lname
);
1232 do_put(rname
,lname
);
1239 /****************************************************************************
1241 ****************************************************************************/
1242 static void do_cancel(int job
)
1244 if (cli_printjob_del(cli
, job
)) {
1245 printf("Job %d cancelled\n",job
);
1247 printf("Error calcelling job %d : %s\n",job
,cli_errstr(cli
));
1252 /****************************************************************************
1254 ****************************************************************************/
1255 static void cmd_cancel(void)
1260 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1261 printf("cancel <jobid> ...\n");
1267 } while (next_token(NULL
,buf
,NULL
,sizeof(buf
)));
1271 /****************************************************************************
1273 ****************************************************************************/
1274 static void cmd_print(void)
1280 if (!next_token(NULL
,lname
,NULL
, sizeof(lname
))) {
1281 DEBUG(0,("print <filename>\n"));
1285 pstrcpy(rname
,lname
);
1286 p
= strrchr(rname
,'/');
1288 slprintf(rname
, sizeof(rname
)-1, "%s-%d", p
+1, (int)getpid());
1291 if (strequal(lname
,"-")) {
1292 slprintf(rname
, sizeof(rname
)-1, "stdin-%d", (int)getpid());
1295 do_put(rname
, lname
);
1299 /****************************************************************************
1300 show a print queue entry
1301 ****************************************************************************/
1302 static void queue_fn(struct print_job_info
*p
)
1304 DEBUG(0,("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
));
1307 /****************************************************************************
1309 ****************************************************************************/
1310 static void cmd_queue(void)
1312 cli_print_queue(cli
, queue_fn
);
1315 /****************************************************************************
1317 ****************************************************************************/
1318 static void do_del(file_info
*finfo
)
1322 pstrcpy(mask
,cur_dir
);
1323 pstrcat(mask
,finfo
->name
);
1325 if (finfo
->mode
& aDIR
)
1328 if (!cli_unlink(cli
, mask
)) {
1329 DEBUG(0,("%s deleting remote file %s\n",cli_errstr(cli
),mask
));
1333 /****************************************************************************
1335 ****************************************************************************/
1336 static void cmd_del(void)
1340 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1345 pstrcpy(mask
,cur_dir
);
1347 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1348 DEBUG(0,("del <filename>\n"));
1353 do_list(mask
, attribute
,do_del
,False
,False
);
1356 /****************************************************************************
1357 ****************************************************************************/
1358 static void cmd_open(void)
1363 pstrcpy(mask
,cur_dir
);
1365 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1366 DEBUG(0,("del <filename>\n"));
1371 cli_open(cli
, mask
, O_RDWR
, DENY_ALL
);
1375 /****************************************************************************
1377 ****************************************************************************/
1378 static void cmd_rmdir(void)
1383 pstrcpy(mask
,cur_dir
);
1385 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1386 DEBUG(0,("rmdir <dirname>\n"));
1391 if (!cli_rmdir(cli
, mask
)) {
1392 DEBUG(0,("%s removing remote directory file %s\n",
1393 cli_errstr(cli
),mask
));
1397 /****************************************************************************
1399 ****************************************************************************/
1400 static void cmd_rename(void)
1405 pstrcpy(src
,cur_dir
);
1406 pstrcpy(dest
,cur_dir
);
1408 if (!next_token(NULL
,buf
,NULL
,sizeof(buf
)) ||
1409 !next_token(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1410 DEBUG(0,("rename <src> <dest>\n"));
1417 if (!cli_rename(cli
, src
, dest
)) {
1418 DEBUG(0,("%s renaming files\n",cli_errstr(cli
)));
1424 /****************************************************************************
1425 toggle the prompt flag
1426 ****************************************************************************/
1427 static void cmd_prompt(void)
1430 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
1434 /****************************************************************************
1435 set the newer than time
1436 ****************************************************************************/
1437 static void cmd_newer(void)
1441 SMB_STRUCT_STAT sbuf
;
1443 ok
= next_token(NULL
,buf
,NULL
,sizeof(buf
));
1444 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
1445 newer_than
= sbuf
.st_mtime
;
1446 DEBUG(1,("Getting files newer than %s",
1447 asctime(LocalTime(&newer_than
))));
1452 if (ok
&& newer_than
== 0)
1453 DEBUG(0,("Error setting newer-than time\n"));
1456 /****************************************************************************
1457 set the archive level
1458 ****************************************************************************/
1459 static void cmd_archive(void)
1463 if (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1464 archive_level
= atoi(buf
);
1466 DEBUG(0,("Archive level is %d\n",archive_level
));
1469 /****************************************************************************
1470 toggle the lowercaseflag
1471 ****************************************************************************/
1472 static void cmd_lowercase(void)
1474 lowercase
= !lowercase
;
1475 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
1481 /****************************************************************************
1482 toggle the recurse flag
1483 ****************************************************************************/
1484 static void cmd_recurse(void)
1487 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
1490 /****************************************************************************
1491 toggle the translate flag
1492 ****************************************************************************/
1493 static void cmd_translate(void)
1495 translation
= !translation
;
1496 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
1497 translation
?"on":"off"));
1501 /****************************************************************************
1502 do a printmode command
1503 ****************************************************************************/
1504 static void cmd_printmode(void)
1509 if (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1510 if (strequal(buf
,"text")) {
1513 if (strequal(buf
,"graphics"))
1516 printmode
= atoi(buf
);
1523 fstrcpy(mode
,"text");
1526 fstrcpy(mode
,"graphics");
1529 slprintf(mode
,sizeof(mode
)-1,"%d",printmode
);
1533 DEBUG(2,("the printmode is now %s\n",mode
));
1536 /****************************************************************************
1538 ****************************************************************************/
1539 static void cmd_lcd(void)
1544 if (next_token(NULL
,buf
,NULL
,sizeof(buf
)))
1546 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
1549 /****************************************************************************
1551 ****************************************************************************/
1552 static void browse_fn(const char *name
, uint32 m
, const char *comment
)
1560 case STYPE_DISKTREE
:
1561 fstrcpy(typestr
,"Disk"); break;
1563 fstrcpy(typestr
,"Printer"); break;
1565 fstrcpy(typestr
,"Device"); break;
1567 fstrcpy(typestr
,"IPC"); break;
1570 printf("\t%-15.15s%-10.10s%s\n",
1571 name
, typestr
,comment
);
1575 /****************************************************************************
1576 try and browse available connections on a host
1577 ****************************************************************************/
1578 static BOOL
browse_host(BOOL sort
)
1582 printf("\n\tSharename Type Comment\n");
1583 printf("\t--------- ---- -------\n");
1585 if((ret
= cli_RNetShareEnum(cli
, browse_fn
)) == -1)
1586 printf("Error returning browse list: %s\n", cli_errstr(cli
));
1591 /****************************************************************************
1593 ****************************************************************************/
1594 static void server_fn(const char *name
, uint32 m
, const char *comment
)
1596 printf("\t%-16.16s %s\n", name
, comment
);
1599 /****************************************************************************
1600 try and browse available connections on a host
1601 ****************************************************************************/
1602 static BOOL
list_servers(char *wk_grp
)
1604 if (!cli
->server_domain
) return False
;
1606 printf("\n\tServer Comment\n");
1607 printf("\t--------- -------\n");
1609 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
);
1611 printf("\n\tWorkgroup Master\n");
1612 printf("\t--------- -------\n");
1614 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
, server_fn
);
1618 #if defined(HAVE_LIBREADLINE)
1619 # if defined(HAVE_READLINE_HISTORY_H) || defined(HAVE_HISTORY_H)
1620 /****************************************************************************
1622 ****************************************************************************/
1623 static void cmd_history(void)
1628 hlist
= history_list (); /* Get pointer to history list */
1630 if (hlist
) /* If list not empty */
1632 for (i
= 0; hlist
[i
]; i
++) /* then display it */
1633 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
1639 /* Some constants for completing filename arguments */
1641 #define COMPL_NONE 0 /* No completions */
1642 #define COMPL_REMOTE 1 /* Complete remote filename */
1643 #define COMPL_LOCAL 2 /* Complete local filename */
1645 /* This defines the commands supported by this client */
1651 char compl_args
[2]; /* Completion argument info */
1654 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
1655 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
1656 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
1657 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
1658 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
1659 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
1660 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
1661 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1662 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
1663 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1664 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
1665 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
1666 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
1667 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1668 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
1669 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
1670 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
1671 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
1672 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
1673 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
1674 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
1675 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
1676 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
1677 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
1678 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
1679 {"printmode",cmd_printmode
,"<graphics or text> set the print mode",{COMPL_NONE
,COMPL_NONE
}},
1680 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
1681 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
1682 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
1683 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
1684 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
1685 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
1686 {"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
}},
1687 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
1688 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
1689 {"tarmode",cmd_tarmode
,
1690 "<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
1691 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
1692 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
1693 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
1694 #ifdef HAVE_LIBREADLINE
1695 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
1697 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
1698 {"",NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
1702 /*******************************************************************
1703 lookup a command string in the list of commands, including
1705 ******************************************************************/
1706 static int process_tok(fstring tok
)
1708 int i
= 0, matches
= 0;
1710 int tok_len
= strlen(tok
);
1712 while (commands
[i
].fn
!= NULL
) {
1713 if (strequal(commands
[i
].name
,tok
)) {
1717 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
1726 else if (matches
== 1)
1732 /****************************************************************************
1734 ****************************************************************************/
1735 static void cmd_help(void)
1740 if (next_token(NULL
,buf
,NULL
,sizeof(buf
))) {
1741 if ((i
= process_tok(buf
)) >= 0)
1742 DEBUG(0,("HELP %s:\n\t%s\n\n",commands
[i
].name
,commands
[i
].description
));
1744 while (commands
[i
].description
) {
1745 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
1746 DEBUG(0,("%-15s",commands
[i
].name
));
1754 #ifndef HAVE_LIBREADLINE
1755 /****************************************************************************
1756 wait for keyboard activity, swallowing network packets
1757 ****************************************************************************/
1758 static void wait_keyboard(void)
1761 struct timeval timeout
;
1765 FD_SET(cli
->fd
,&fds
);
1766 FD_SET(fileno(stdin
),&fds
);
1768 timeout
.tv_sec
= 20;
1769 timeout
.tv_usec
= 0;
1770 sys_select(MAX(cli
->fd
,fileno(stdin
))+1,&fds
,&timeout
);
1772 if (FD_ISSET(fileno(stdin
),&fds
))
1775 /* We deliberately use receive_smb instead of
1776 client_receive_smb as we want to receive
1777 session keepalives and then drop them here.
1779 if (FD_ISSET(cli
->fd
,&fds
))
1780 receive_smb(cli
->fd
,cli
->inbuf
,0);
1782 cli_chkpath(cli
, "\\");
1787 /****************************************************************************
1788 process a -c command string
1789 ****************************************************************************/
1790 static void process_command_string(char *cmd
)
1795 while (cmd
[0] != '\0') {
1800 if ((p
= strchr(cmd
, ';')) == 0) {
1801 strncpy(line
, cmd
, 999);
1805 if (p
- cmd
> 999) p
= cmd
+ 999;
1806 strncpy(line
, cmd
, p
- cmd
);
1807 line
[p
- cmd
] = '\0';
1811 /* and get the first part of the command */
1813 if (!next_token(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
1815 if ((i
= process_tok(tok
)) >= 0) {
1817 } else if (i
== -2) {
1818 DEBUG(0,("%s: command abbreviation ambiguous\n",tok
));
1820 DEBUG(0,("%s: command not found\n",tok
));
1825 /****************************************************************************
1826 process commands on stdin
1827 ****************************************************************************/
1828 static void process_stdin(void)
1833 #ifdef HAVE_LIBREADLINE
1834 /* Minimal readline support, 29Jun1999, s.xenitellis@rhbnc.ac.uk */
1838 #define PROMPTSIZE 2048
1839 char prompt_str
[PROMPTSIZE
]; /* This holds the buffer "smb: \dir1\> " */
1841 char *temp
; /* Gets the buffer from readline() */
1842 temp
= (char *)NULL
;
1844 while (!feof(stdin
)) {
1847 #ifdef HAVE_LIBREADLINE
1848 if ( temp
!= (char *)NULL
)
1850 free( temp
); /* Free memory allocated every time by readline() */
1851 temp
= (char *)NULL
;
1854 snprintf( prompt_str
, PROMPTSIZE
- 1, "smb: %s> ", cur_dir
);
1856 temp
= readline( prompt_str
); /* We read the line here */
1859 break; /* EOF occured */
1861 if ( *temp
) /* If non-empty line, save to history */
1864 strncpy( line
, temp
, 1023 ); /* Maximum size of (pstring)line. Null is guarranteed. */
1866 /* display a prompt */
1867 DEBUG(0,("smb: %s> ", cur_dir
));
1872 /* and get a response */
1873 if (!fgets(line
,1000,stdin
))
1877 /* special case - first char is ! */
1883 /* and get the first part of the command */
1885 if (!next_token(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
1887 if ((i
= process_tok(tok
)) >= 0) {
1889 } else if (i
== -2) {
1890 DEBUG(0,("%s: command abbreviation ambiguous\n",tok
));
1892 DEBUG(0,("%s: command not found\n",tok
));
1898 /*****************************************************
1899 return a connection to a server
1900 *******************************************************/
1901 struct cli_state
*do_connect(char *server
, char *share
)
1903 struct cli_state
*c
;
1904 struct nmb_name called
, calling
;
1907 extern struct in_addr ipzero
;
1909 if (*share
== '\\') {
1911 share
= strchr(server
,'\\');
1912 if (!share
) return NULL
;
1921 make_nmb_name(&calling
, global_myname
, 0x0);
1922 make_nmb_name(&called
, server
, name_type
);
1926 if (have_ip
) ip
= dest_ip
;
1928 /* have to open a new connection */
1929 if (!(c
=cli_initialise(NULL
)) || (cli_set_port(c
, port
) == 0) ||
1930 !cli_connect(c
, server_n
, &ip
)) {
1931 DEBUG(0,("Connection to %s failed\n", server_n
));
1935 if (!cli_session_request(c
, &calling
, &called
)) {
1937 DEBUG(0,("session request to %s failed (%s)\n",
1938 called
.name
, cli_errstr(c
)));
1940 if ((p
=strchr(called
.name
, '.'))) {
1944 if (strcmp(called
.name
, "*SMBSERVER")) {
1945 make_nmb_name(&called
, "*SMBSERVER", 0x20);
1951 DEBUG(4,(" session request ok\n"));
1953 if (!cli_negprot(c
)) {
1954 DEBUG(0,("protocol negotiation failed\n"));
1960 char *pass
= getpass("Password: ");
1962 pstrcpy(password
, pass
);
1966 if (!cli_session_setup(c
, username
,
1967 password
, strlen(password
),
1968 password
, strlen(password
),
1970 /* if a password was not supplied then try again with a null username */
1971 if (password
[0] || !username
[0] ||
1972 !cli_session_setup(c
, "", "", 0, "", 0, workgroup
)) {
1973 DEBUG(0,("session setup failed: %s\n", cli_errstr(c
)));
1976 DEBUG(0,("Anonymous login successful\n"));
1980 * These next two lines are needed to emulate
1981 * old client behaviour for people who have
1982 * scripts based on client output.
1983 * QUESTION ? Do we want to have a 'client compatibility
1984 * mode to turn these on/off ? JRA.
1987 if (*c
->server_domain
|| *c
->server_os
|| *c
->server_type
)
1988 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
1989 c
->server_domain
,c
->server_os
,c
->server_type
));
1991 DEBUG(4,(" session setup ok\n"));
1993 if (!cli_send_tconX(c
, share
, "?????",
1994 password
, strlen(password
)+1)) {
1995 DEBUG(0,("tree connect failed: %s\n", cli_errstr(c
)));
2000 DEBUG(4,(" tconx ok\n"));
2006 /****************************************************************************
2007 process commands from the client
2008 ****************************************************************************/
2009 static BOOL
process(char *base_directory
)
2011 cli
= do_connect(desthost
, service
);
2016 if (*base_directory
) do_cd(base_directory
);
2019 process_command_string(cmdstr
);
2028 /****************************************************************************
2029 usage on the program
2030 ****************************************************************************/
2031 static void usage(char *pname
)
2033 DEBUG(0,("Usage: %s service <password> [options]", pname
));
2035 DEBUG(0,("\nVersion %s\n",VERSION
));
2036 DEBUG(0,("\t-s smb.conf pathname to smb.conf file\n"));
2037 DEBUG(0,("\t-O socket_options socket options to use\n"));
2038 DEBUG(0,("\t-R name resolve order use these name resolution services only\n"));
2039 DEBUG(0,("\t-M host send a winpopup message to the host\n"));
2040 DEBUG(0,("\t-i scope use this NetBIOS scope\n"));
2041 DEBUG(0,("\t-N don't ask for a password\n"));
2042 DEBUG(0,("\t-n netbios name. Use this name as my netbios name\n"));
2043 DEBUG(0,("\t-d debuglevel set the debuglevel\n"));
2044 DEBUG(0,("\t-P connect to service as a printer\n"));
2045 DEBUG(0,("\t-p port connect to the specified port\n"));
2046 DEBUG(0,("\t-l log basename. Basename for log/debug files\n"));
2047 DEBUG(0,("\t-h Print this help message.\n"));
2048 DEBUG(0,("\t-I dest IP use this IP to connect to\n"));
2049 DEBUG(0,("\t-E write messages to stderr instead of stdout\n"));
2050 DEBUG(0,("\t-U username set the network username\n"));
2051 DEBUG(0,("\t-L host get a list of shares available on a host\n"));
2052 DEBUG(0,("\t-t terminal code terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n"));
2053 DEBUG(0,("\t-m max protocol set the max protocol level\n"));
2054 DEBUG(0,("\t-W workgroup set the workgroup name\n"));
2055 DEBUG(0,("\t-T<c|x>IXFqgbNan command line tar\n"));
2056 DEBUG(0,("\t-D directory start from directory\n"));
2057 DEBUG(0,("\t-c command string execute semicolon separated commands\n"));
2058 DEBUG(0,("\t-b xmit/send buffer changes the transmit/send buffer (default: 65520)\n"));
2063 /****************************************************************************
2064 get a password from a a file or file descriptor
2066 ****************************************************************************/
2067 static void get_password_file(void)
2071 BOOL close_it
= False
;
2075 if ((p
= getenv("PASSWD_FD")) != NULL
) {
2076 pstrcpy(spec
, "descriptor ");
2078 sscanf(p
, "%d", &fd
);
2080 } else if ((p
= getenv("PASSWD_FILE")) != NULL
) {
2081 fd
= sys_open(p
, O_RDONLY
, 0);
2084 fprintf(stderr
, "Error opening PASSWD_FILE %s: %s\n",
2085 spec
, strerror(errno
));
2091 for(p
= pass
, *p
= '\0'; /* ensure that pass is null-terminated */
2092 p
&& p
- pass
< sizeof(pass
);) {
2093 switch (read(fd
, p
, 1)) {
2095 if (*p
!= '\n' && *p
!= '\0') {
2096 *++p
= '\0'; /* advance p, and null-terminate pass */
2101 *p
= '\0'; /* null-terminate it, just in case... */
2102 p
= NULL
; /* then force the loop condition to become false */
2105 fprintf(stderr
, "Error reading password from file %s: %s\n",
2106 spec
, "empty password\n");
2111 fprintf(stderr
, "Error reading password from file %s: %s\n",
2112 spec
, strerror(errno
));
2116 pstrcpy(password
, pass
);
2123 /****************************************************************************
2125 ****************************************************************************/
2126 static int do_host_query(char *query_host
)
2128 cli
= do_connect(query_host
, "IPC$");
2133 list_servers(workgroup
);
2141 /****************************************************************************
2142 handle a tar operation
2143 ****************************************************************************/
2144 static int do_tar_op(char *base_directory
)
2147 cli
= do_connect(desthost
, service
);
2153 if (*base_directory
) do_cd(base_directory
);
2162 /****************************************************************************
2163 handle a message operation
2164 ****************************************************************************/
2165 static int do_message_op(void)
2168 struct nmb_name called
, calling
;
2172 make_nmb_name(&calling
, global_myname
, 0x0);
2173 make_nmb_name(&called
, desthost
, name_type
);
2176 if (have_ip
) ip
= dest_ip
;
2178 if (!resolve_name( desthost
, &ip
, name_type
)) {
2179 DEBUG(0,("Unable to resolve name %s\n", desthost
));
2184 if (!(cli
=cli_initialise(NULL
)) || !cli_connect(cli
, desthost
, &ip
)) {
2185 DEBUG(0,("Connection to %s failed\n", desthost
));
2189 if (!cli_session_request(cli
, &calling
, &called
)) {
2190 DEBUG(0,("session request failed\n"));
2202 /****************************************************************************
2204 ****************************************************************************/
2205 int main(int argc
,char *argv
[])
2207 fstring base_directory
;
2208 char *pname
= argv
[0];
2211 extern char *optarg
;
2214 BOOL message
= False
;
2215 extern char tar_type
;
2216 static pstring servicesf
= CONFIGFILE
;
2218 pstring new_name_resolve_order
;
2222 pstrcpy(term_code
, KANJI
);
2228 *base_directory
= 0;
2230 *new_name_resolve_order
= 0;
2234 #ifdef HAVE_LIBREADLINE
2235 /* Allow conditional parsing of the ~/.inputrc file. */
2236 rl_readline_name
= "smbclient";
2238 setup_logging(pname
,True
);
2241 * If the -E option is given, be careful not to clobber stdout
2242 * before processing the options. 28.Feb.99, richard@hacom.nl.
2243 * Also pre-parse the -s option to get the service file name.
2246 for (opt
= 1; opt
< argc
; opt
++) {
2247 if (strcmp(argv
[opt
], "-E") == 0)
2249 else if(strncmp(argv
[opt
], "-s", 2) == 0) {
2250 if(argv
[opt
][2] != '\0')
2251 pstrcpy(servicesf
, &argv
[opt
][2]);
2252 else if(argv
[opt
+1] != NULL
) {
2254 * At least one more arg left.
2256 pstrcpy(servicesf
, argv
[opt
+1]);
2265 charset_initialise();
2267 in_client
= True
; /* Make sure that we tell lp_load we are */
2269 if (!lp_load(servicesf
,True
,False
,False
)) {
2270 fprintf(stderr
, "Can't load %s - run testparm to debug it\n", servicesf
);
2273 codepage_initialise(lp_client_code_page());
2279 pstrcpy(workgroup
,lp_workgroup());
2285 if (getenv("USER")) {
2286 pstrcpy(username
,getenv("USER"));
2288 /* modification to support userid%passwd syntax in the USER var
2289 25.Aug.97, jdblair@uab.edu */
2291 if ((p
=strchr(username
,'%'))) {
2293 pstrcpy(password
,p
+1);
2295 memset(strchr(getenv("USER"),'%')+1,'X',strlen(password
));
2300 /* modification to support PASSWD environmental var
2301 25.Aug.97, jdblair@uab.edu */
2302 if (getenv("PASSWD")) {
2303 pstrcpy(password
,getenv("PASSWD"));
2307 if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) {
2308 get_password_file();
2312 if (*username
== 0 && getenv("LOGNAME")) {
2313 pstrcpy(username
,getenv("LOGNAME"));
2317 if (*username
== 0) {
2318 pstrcpy(username
,"GUEST");
2326 if (*argv
[1] != '-') {
2327 pstrcpy(service
,argv
[1]);
2328 /* Convert any '/' characters in the service name to '\' characters */
2329 string_replace( service
, '/','\\');
2333 if (count_chars(service
,'\\') < 3) {
2335 printf("\n%s: Not enough '\\' characters in service\n",service
);
2339 if (argc
> 1 && (*argv
[1] != '-')) {
2341 pstrcpy(password
,argv
[1]);
2342 memset(argv
[1],'X',strlen(argv
[1]));
2349 getopt(argc
, argv
,"s:O:R:M:i:Nn:d:Pp:l:hI:EU:L:t:m:W:T:D:c:b:")) != EOF
) {
2352 pstrcpy(servicesf
, optarg
);
2355 pstrcpy(user_socket_options
,optarg
);
2358 pstrcpy(new_name_resolve_order
, optarg
);
2361 name_type
= 0x03; /* messages are sent to NetBIOS name type 0x3 */
2362 pstrcpy(desthost
,optarg
);
2367 extern pstring global_scope
;
2368 pstrcpy(global_scope
,optarg
);
2369 strupper(global_scope
);
2376 pstrcpy(global_myname
,optarg
);
2382 DEBUGLEVEL
= atoi(optarg
);
2385 /* not needed anymore */
2388 port
= atoi(optarg
);
2391 slprintf(debugf
,sizeof(debugf
)-1, "%s.client",optarg
);
2399 dest_ip
= *interpret_addr2(optarg
);
2400 if (zero_ip(dest_ip
))
2411 pstrcpy(username
,optarg
);
2412 if ((lp
=strchr(username
,'%'))) {
2414 pstrcpy(password
,lp
+1);
2416 memset(strchr(optarg
,'%')+1,'X',strlen(password
));
2422 while(*p
== '\\' || *p
== '/')
2424 pstrcpy(query_host
,p
);
2427 pstrcpy(term_code
, optarg
);
2430 /* no longer supported */
2433 pstrcpy(workgroup
,optarg
);
2436 if (!tar_parseargs(argc
, argv
, optarg
, optind
)) {
2442 pstrcpy(base_directory
,optarg
);
2449 io_bufsize
= MAX(1, atoi(optarg
));
2457 get_myname((*global_myname
)?NULL
:global_myname
);
2459 if(*new_name_resolve_order
)
2460 lp_set_name_resolve_order(new_name_resolve_order
);
2463 interpret_coding_system(term_code
);
2465 if (!tar_type
&& !*query_host
&& !*service
&& !message
) {
2470 DEBUG( 3, ( "Client started (version %s).\n", VERSION
) );
2473 return do_tar_op(base_directory
);
2476 if ((p
=strchr(query_host
,'#'))) {
2479 sscanf(p
, "%x", &name_type
);
2483 return do_host_query(query_host
);
2487 return do_message_op();
2490 if (!process(base_directory
)) {