2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003-2004
7 Copyright (C) James J Myers 2003 <myersjj@samba.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 struct smbcli_state *cli;
30 extern BOOL in_client;
32 pstring cur_dir = "\\";
33 static pstring cd_path = "";
34 static pstring service;
35 static pstring desthost;
36 static pstring username;
37 static pstring domain;
38 static pstring password;
39 static char *cmdstr = NULL;
41 static int io_bufsize = 64512;
43 static int name_type = 0x20;
45 static int process_tok(fstring tok);
46 static int cmd_help(const char **cmd_ptr);
48 /* 30 second timeout on most commands */
49 #define CLIENT_TIMEOUT (30*1000)
50 #define SHORT_TIMEOUT (5*1000)
52 /* value for unused fid field in trans2 secondary request */
53 #define FID_UNUSED (0xFFFF)
55 time_t newer_than = 0;
56 static int archive_level = 0;
58 static BOOL translation = False;
60 /* clitar bits insert */
63 extern BOOL tar_reset;
67 static BOOL prompt = True;
69 static int printmode = 1;
71 static BOOL recurse = False;
72 BOOL lowercase = False;
74 static const char *dest_ip;
76 #define SEPARATORS " \t\n\r"
78 static BOOL abort_mget = True;
80 static pstring fileselection = "";
83 uint64_t get_total_size = 0;
84 uint_t get_total_time_ms = 0;
85 static uint64_t put_total_size = 0;
86 static uint_t put_total_time_ms = 0;
89 static double dir_total;
93 /* some forward declarations */
94 static struct smbcli_state *do_connect(const char *server, const char *share);
97 /*******************************************************************
98 Reduce a file name, removing .. elements.
99 ********************************************************************/
100 void dos_clean_name(char *s)
104 DEBUG(3,("dos_clean_name [%s]\n",s));
106 /* remove any double slashes */
107 all_string_sub(s, "\\\\", "\\", 0);
109 while ((p = strstr(s,"\\..\\")) != NULL) {
115 if ((p=strrchr_m(s,'\\')) != NULL)
122 trim_string(s,NULL,"\\..");
124 all_string_sub(s, "\\.\\", "\\", 0);
127 /****************************************************************************
128 write to a local file with CR/LF->LF translation if appropriate. return the
129 number taken from the buffer. This may not equal the number written.
130 ****************************************************************************/
131 static int writefile(int f, char *b, int n)
141 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
144 if (write(f, b, 1) != 1) {
154 /****************************************************************************
155 read from a file with LF->CR/LF translation if appropriate. return the
156 number read. read approx n bytes.
157 ****************************************************************************/
158 static int readfile(char *b, int n, XFILE *f)
164 return x_fread(b,1,n,f);
167 while (i < (n - 1) && (i < CLI_BUFFER_SIZE)) {
168 if ((c = x_getc(f)) == EOF) {
172 if (c == '\n') { /* change all LFs to CR/LF */
183 /****************************************************************************
185 ****************************************************************************/
186 static void send_message(void)
191 if (!smbcli_message_start(cli->tree, desthost, username, &grp_id)) {
192 d_printf("message start: %s\n", smbcli_errstr(cli->tree));
197 d_printf("Connected. Type your message, ending it with a Control-D\n");
199 while (!feof(stdin) && total_len < 1600) {
200 int maxlen = MIN(1600 - total_len,127);
207 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
213 if (!smbcli_message_text(cli->tree, msg, l, grp_id)) {
214 d_printf("SMBsendtxt failed (%s)\n",smbcli_errstr(cli->tree));
221 if (total_len >= 1600)
222 d_printf("the message was truncated to 1600 bytes\n");
224 d_printf("sent %d bytes\n",total_len);
226 if (!smbcli_message_end(cli->tree, grp_id)) {
227 d_printf("SMBsendend failed (%s)\n",smbcli_errstr(cli->tree));
234 /****************************************************************************
235 check the space on a device
236 ****************************************************************************/
237 static int do_dskattr(void)
239 int total, bsize, avail;
241 if (NT_STATUS_IS_ERR(smbcli_dskattr(cli->tree, &bsize, &total, &avail))) {
242 d_printf("Error in dskattr: %s\n",smbcli_errstr(cli->tree));
246 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
247 total, bsize, avail);
252 /****************************************************************************
254 ****************************************************************************/
255 static int cmd_pwd(const char **cmd_ptr)
257 d_printf("Current directory is %s",service);
258 d_printf("%s\n",cur_dir);
263 convert a string to dos format
265 static void dos_format(char *s)
267 string_replace(s, '/', '\\');
270 /****************************************************************************
271 change directory - inner section
272 ****************************************************************************/
273 static int do_cd(char *newdir)
281 /* Save the current directory in case the
282 new directory is invalid */
283 pstrcpy(saved_dir, cur_dir);
288 if (*(cur_dir+strlen(cur_dir)-1) != '\\') {
289 pstrcat(cur_dir, "\\");
291 dos_clean_name(cur_dir);
292 pstrcpy(dname,cur_dir);
293 pstrcat(cur_dir,"\\");
294 dos_clean_name(cur_dir);
296 if (!strequal(cur_dir,"\\")) {
297 if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, dname))) {
298 d_printf("cd %s: %s\n", dname, smbcli_errstr(cli->tree));
299 pstrcpy(cur_dir,saved_dir);
303 pstrcpy(cd_path,cur_dir);
308 /****************************************************************************
310 ****************************************************************************/
311 static int cmd_cd(const char **cmd_ptr)
316 if (next_token(cmd_ptr,buf,NULL,sizeof(buf)))
319 d_printf("Current directory is %s\n",cur_dir);
325 /*******************************************************************
326 decide if a file should be operated on
327 ********************************************************************/
328 static BOOL do_this_one(file_info *finfo)
330 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) return(True);
332 if (*fileselection &&
333 !mask_match(cli, finfo->name,fileselection,False)) {
334 DEBUG(3,("mask_match %s failed\n", finfo->name));
338 if (newer_than && finfo->mtime < newer_than) {
339 DEBUG(3,("newer_than %s failed\n", finfo->name));
343 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
344 DEBUG(3,("archive %s failed\n", finfo->name));
351 /****************************************************************************
352 display info about a file
353 ****************************************************************************/
354 static void display_finfo(file_info *finfo)
356 if (do_this_one(finfo)) {
357 time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
358 char *astr = attrib_string(NULL, finfo->mode);
359 d_printf(" %-30s%7.7s %8.0f %s",
363 asctime(localtime(&t)));
364 dir_total += finfo->size;
370 /****************************************************************************
371 accumulate size of a file
372 ****************************************************************************/
373 static void do_du(file_info *finfo)
375 if (do_this_one(finfo)) {
376 dir_total += finfo->size;
380 static BOOL do_list_recurse;
381 static BOOL do_list_dirs;
382 static char *do_list_queue = 0;
383 static long do_list_queue_size = 0;
384 static long do_list_queue_start = 0;
385 static long do_list_queue_end = 0;
386 static void (*do_list_fn)(file_info *);
388 /****************************************************************************
389 functions for do_list_queue
390 ****************************************************************************/
393 * The do_list_queue is a NUL-separated list of strings stored in a
394 * char*. Since this is a FIFO, we keep track of the beginning and
395 * ending locations of the data in the queue. When we overflow, we
396 * double the size of the char*. When the start of the data passes
397 * the midpoint, we move everything back. This is logically more
398 * complex than a linked list, but easier from a memory management
399 * angle. In any memory error condition, do_list_queue is reset.
400 * Functions check to ensure that do_list_queue is non-NULL before
403 static void reset_do_list_queue(void)
405 SAFE_FREE(do_list_queue);
406 do_list_queue_size = 0;
407 do_list_queue_start = 0;
408 do_list_queue_end = 0;
411 static void init_do_list_queue(void)
413 reset_do_list_queue();
414 do_list_queue_size = 1024;
415 do_list_queue = malloc(do_list_queue_size);
416 if (do_list_queue == 0) {
417 d_printf("malloc fail for size %d\n",
418 (int)do_list_queue_size);
419 reset_do_list_queue();
421 memset(do_list_queue, 0, do_list_queue_size);
425 static void adjust_do_list_queue(void)
428 * If the starting point of the queue is more than half way through,
429 * move everything toward the beginning.
431 if (do_list_queue && (do_list_queue_start == do_list_queue_end))
433 DEBUG(4,("do_list_queue is empty\n"));
434 do_list_queue_start = do_list_queue_end = 0;
435 *do_list_queue = '\0';
437 else if (do_list_queue_start > (do_list_queue_size / 2))
439 DEBUG(4,("sliding do_list_queue backward\n"));
440 memmove(do_list_queue,
441 do_list_queue + do_list_queue_start,
442 do_list_queue_end - do_list_queue_start);
443 do_list_queue_end -= do_list_queue_start;
444 do_list_queue_start = 0;
449 static void add_to_do_list_queue(const char* entry)
452 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
453 while (new_end > do_list_queue_size)
455 do_list_queue_size *= 2;
456 DEBUG(4,("enlarging do_list_queue to %d\n",
457 (int)do_list_queue_size));
458 dlq = Realloc(do_list_queue, do_list_queue_size);
460 d_printf("failure enlarging do_list_queue to %d bytes\n",
461 (int)do_list_queue_size);
462 reset_do_list_queue();
467 memset(do_list_queue + do_list_queue_size / 2,
468 0, do_list_queue_size / 2);
473 safe_strcpy(do_list_queue + do_list_queue_end, entry,
474 do_list_queue_size - do_list_queue_end - 1);
475 do_list_queue_end = new_end;
476 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
477 entry, (int)do_list_queue_start, (int)do_list_queue_end));
481 static char *do_list_queue_head(void)
483 return do_list_queue + do_list_queue_start;
486 static void remove_do_list_queue_head(void)
488 if (do_list_queue_end > do_list_queue_start)
490 do_list_queue_start += strlen(do_list_queue_head()) + 1;
491 adjust_do_list_queue();
492 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
493 (int)do_list_queue_start, (int)do_list_queue_end));
497 static int do_list_queue_empty(void)
499 return (! (do_list_queue && *do_list_queue));
502 /****************************************************************************
504 ****************************************************************************/
505 static void do_list_helper(file_info *f, const char *mask, void *state)
507 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
508 if (do_list_dirs && do_this_one(f)) {
511 if (do_list_recurse &&
512 !strequal(f->name,".") &&
513 !strequal(f->name,"..")) {
517 pstrcpy(mask2, mask);
518 p = strrchr_m(mask2,'\\');
521 pstrcat(mask2, f->name);
522 pstrcat(mask2,"\\*");
523 add_to_do_list_queue(mask2);
528 if (do_this_one(f)) {
534 /****************************************************************************
535 a wrapper around smbcli_list that adds recursion
536 ****************************************************************************/
537 void do_list(const char *mask,uint16_t attribute,void (*fn)(file_info *),BOOL rec, BOOL dirs)
539 static int in_do_list = 0;
541 if (in_do_list && rec)
543 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
549 do_list_recurse = rec;
555 init_do_list_queue();
556 add_to_do_list_queue(mask);
558 while (! do_list_queue_empty())
561 * Need to copy head so that it doesn't become
562 * invalid inside the call to smbcli_list. This
563 * would happen if the list were expanded
565 * Fix from E. Jay Berkenbilt (ejb@ql.org)
568 pstrcpy(head, do_list_queue_head());
569 smbcli_list(cli->tree, head, attribute, do_list_helper, NULL);
570 remove_do_list_queue_head();
571 if ((! do_list_queue_empty()) && (fn == display_finfo))
573 char* next_file = do_list_queue_head();
575 if ((strlen(next_file) >= 2) &&
576 (next_file[strlen(next_file) - 1] == '*') &&
577 (next_file[strlen(next_file) - 2] == '\\'))
579 save_ch = next_file +
580 strlen(next_file) - 2;
583 d_printf("\n%s\n",next_file);
593 if (smbcli_list(cli->tree, mask, attribute, do_list_helper, NULL) == -1)
595 d_printf("%s listing %s\n", smbcli_errstr(cli->tree), mask);
600 reset_do_list_queue();
603 /****************************************************************************
604 get a directory listing
605 ****************************************************************************/
606 static int cmd_dir(const char **cmd_ptr)
608 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
615 pstrcpy(mask,cur_dir);
616 if(mask[strlen(mask)-1]!='\\')
619 if (next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
627 if (cli->tree->session->transport->negotiate.protocol <=
635 do_list(mask, attribute, display_finfo, recurse, True);
639 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
645 /****************************************************************************
646 get a directory listing
647 ****************************************************************************/
648 static int cmd_du(const char **cmd_ptr)
650 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
657 pstrcpy(mask,cur_dir);
658 if(mask[strlen(mask)-1]!='\\')
661 if (next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
671 do_list(mask, attribute, do_du, recurse, True);
675 d_printf("Total number of bytes: %.0f\n", dir_total);
681 /****************************************************************************
682 get a file from rname to lname
683 ****************************************************************************/
684 static int do_get(char *rname, const char *lname, BOOL reget)
686 int handle = 0, fnum;
687 BOOL newhandle = False;
689 struct timeval tp_start;
690 int read_size = io_bufsize;
697 GetTimeOfDay(&tp_start);
700 strlower(discard_const_p(char, lname));
703 fnum = smbcli_open(cli->tree, rname, O_RDONLY, DENY_NONE);
706 d_printf("%s opening remote file %s\n",smbcli_errstr(cli->tree),rname);
710 if(!strcmp(lname,"-")) {
711 handle = fileno(stdout);
714 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
716 start = sys_lseek(handle, 0, SEEK_END);
718 d_printf("Error seeking local file\n");
723 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
728 d_printf("Error opening local file %s\n",lname);
733 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(cli->tree, fnum,
734 &attr, &size, NULL, NULL, NULL, NULL, NULL)) &&
735 NT_STATUS_IS_ERR(smbcli_getattrE(cli->tree, fnum,
736 &attr, &size, NULL, NULL, NULL))) {
737 d_printf("getattrib: %s\n",smbcli_errstr(cli->tree));
741 DEBUG(2,("getting file %s of size %.0f as %s ",
742 rname, (double)size, lname));
744 if(!(data = (char *)malloc(read_size))) {
745 d_printf("malloc fail for size %d\n", read_size);
746 smbcli_close(cli->tree, fnum);
751 int n = smbcli_read(cli->tree, fnum, data, nread + start, read_size);
755 if (writefile(handle,data, n) != n) {
756 d_printf("Error writing local file\n");
764 if (nread + start < size) {
765 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
766 rname, (long)nread));
773 if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnum))) {
774 d_printf("Error %s closing remote file\n",smbcli_errstr(cli->tree));
782 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
783 smbcli_setatr(cli->tree, rname, attr & ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE, 0);
787 struct timeval tp_end;
790 GetTimeOfDay(&tp_end);
792 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
793 (tp_end.tv_usec - tp_start.tv_usec)/1000;
794 get_total_time_ms += this_time;
795 get_total_size += nread;
797 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
798 nread / (1.024*this_time + 1.0e-4),
799 get_total_size / (1.024*get_total_time_ms)));
806 /****************************************************************************
808 ****************************************************************************/
809 static int cmd_get(const char **cmd_ptr)
815 pstrcpy(rname,cur_dir);
818 p = rname + strlen(rname);
820 if (!next_token(cmd_ptr,p,NULL,sizeof(rname)-strlen(rname))) {
821 d_printf("get <filename>\n");
825 dos_clean_name(rname);
827 next_token(cmd_ptr,lname,NULL,sizeof(lname));
829 return do_get(rname, lname, False);
833 /****************************************************************************
834 do a mget operation on one file
835 ****************************************************************************/
836 static void do_mget(file_info *finfo)
840 pstring saved_curdir;
843 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
847 d_printf("mget aborted\n");
851 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY)
852 slprintf(quest,sizeof(pstring)-1,
853 "Get directory %s? ",finfo->name);
855 slprintf(quest,sizeof(pstring)-1,
856 "Get file %s? ",finfo->name);
858 if (prompt && !yesno(quest)) return;
860 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
861 pstrcpy(rname,cur_dir);
862 pstrcat(rname,finfo->name);
863 do_get(rname, finfo->name, False);
867 /* handle directories */
868 pstrcpy(saved_curdir,cur_dir);
870 pstrcat(cur_dir,finfo->name);
871 pstrcat(cur_dir,"\\");
873 string_replace(discard_const_p(char, finfo->name), '\\', '/');
875 strlower(discard_const_p(char, finfo->name));
878 if (!directory_exist(finfo->name,NULL) &&
879 mkdir(finfo->name,0777) != 0) {
880 d_printf("failed to create directory %s\n",finfo->name);
881 pstrcpy(cur_dir,saved_curdir);
885 if (chdir(finfo->name) != 0) {
886 d_printf("failed to chdir to directory %s\n",finfo->name);
887 pstrcpy(cur_dir,saved_curdir);
891 pstrcpy(mget_mask,cur_dir);
892 pstrcat(mget_mask,"*");
894 do_list(mget_mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,do_mget,False, True);
896 pstrcpy(cur_dir,saved_curdir);
900 /****************************************************************************
901 view the file using the pager
902 ****************************************************************************/
903 static int cmd_more(const char **cmd_ptr)
905 fstring rname,lname,pager_cmd;
910 fstrcpy(rname,cur_dir);
913 slprintf(lname,sizeof(lname)-1, "%s/smbmore.XXXXXX",tmpdir());
914 fd = smb_mkstemp(lname);
916 d_printf("failed to create temporary file for more\n");
921 if (!next_token(cmd_ptr,rname+strlen(rname),NULL,sizeof(rname)-strlen(rname))) {
922 d_printf("more <filename>\n");
926 dos_clean_name(rname);
928 rc = do_get(rname, lname, False);
930 pager=getenv("PAGER");
932 slprintf(pager_cmd,sizeof(pager_cmd)-1,
933 "%s %s",(pager? pager:PAGER), lname);
942 /****************************************************************************
944 ****************************************************************************/
945 static int cmd_mget(const char **cmd_ptr)
947 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
955 attribute |= FILE_ATTRIBUTE_DIRECTORY;
959 while (next_token(cmd_ptr,p,NULL,sizeof(buf))) {
960 pstrcpy(mget_mask,cur_dir);
961 if(mget_mask[strlen(mget_mask)-1]!='\\')
962 pstrcat(mget_mask,"\\");
965 pstrcpy(mget_mask,p);
967 pstrcat(mget_mask,p);
968 do_list(mget_mask, attribute,do_mget,False,True);
972 pstrcpy(mget_mask,cur_dir);
973 if(mget_mask[strlen(mget_mask)-1]!='\\')
974 pstrcat(mget_mask,"\\");
975 pstrcat(mget_mask,"*");
976 do_list(mget_mask, attribute,do_mget,False,True);
983 /****************************************************************************
984 make a directory of name "name"
985 ****************************************************************************/
986 static NTSTATUS do_mkdir(char *name)
990 if (NT_STATUS_IS_ERR(status = smbcli_mkdir(cli->tree, name))) {
991 d_printf("%s making remote directory %s\n",
992 smbcli_errstr(cli->tree),name);
999 /****************************************************************************
1000 show 8.3 name of a file
1001 ****************************************************************************/
1002 static BOOL do_altname(char *name)
1004 const char *altname;
1005 if (!NT_STATUS_IS_OK(smbcli_qpathinfo_alt_name(cli->tree, name, &altname))) {
1006 d_printf("%s getting alt name for %s\n",
1007 smbcli_errstr(cli->tree),name);
1010 d_printf("%s\n", altname);
1016 /****************************************************************************
1018 ****************************************************************************/
1019 static int cmd_quit(const char **cmd_ptr)
1021 smbcli_shutdown(cli);
1028 /****************************************************************************
1030 ****************************************************************************/
1031 static int cmd_mkdir(const char **cmd_ptr)
1037 pstrcpy(mask,cur_dir);
1039 if (!next_token(cmd_ptr,p,NULL,sizeof(buf))) {
1041 d_printf("mkdir <dirname>\n");
1052 trim_string(ddir,".",NULL);
1053 p = strtok(ddir,"/\\");
1056 if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, ddir2))) {
1059 pstrcat(ddir2,"\\");
1060 p = strtok(NULL,"/\\");
1070 /****************************************************************************
1072 ****************************************************************************/
1073 static int cmd_altname(const char **cmd_ptr)
1079 pstrcpy(name,cur_dir);
1081 if (!next_token(cmd_ptr,p,NULL,sizeof(buf))) {
1082 d_printf("altname <file>\n");
1093 /****************************************************************************
1095 ****************************************************************************/
1096 static int do_put(char *rname, char *lname, BOOL reput)
1103 int maxwrite = io_bufsize;
1106 struct timeval tp_start;
1107 GetTimeOfDay(&tp_start);
1110 fnum = smbcli_open(cli->tree, rname, O_RDWR|O_CREAT, DENY_NONE);
1112 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(cli->tree, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL)) &&
1113 NT_STATUS_IS_ERR(smbcli_getattrE(cli->tree, fnum, NULL, &start, NULL, NULL, NULL))) {
1114 d_printf("getattrib: %s\n",smbcli_errstr(cli->tree));
1119 fnum = smbcli_open(cli->tree, rname, O_RDWR|O_CREAT|O_TRUNC,
1124 d_printf("%s opening remote file %s\n",smbcli_errstr(cli->tree),rname);
1128 /* allow files to be piped into smbclient
1131 Note that in this case this function will exit(0) rather
1133 if (!strcmp(lname, "-")) {
1135 /* size of file is not known */
1137 f = x_fopen(lname,O_RDONLY, 0);
1139 if (x_tseek(f, start, SEEK_SET) == -1) {
1140 d_printf("Error seeking local file\n");
1147 d_printf("Error opening local file %s\n",lname);
1152 DEBUG(1,("putting file %s as %s ",lname,
1155 buf = (char *)malloc(maxwrite);
1157 d_printf("ERROR: Not enough memory!\n");
1160 while (!x_feof(f)) {
1164 if ((n = readfile(buf,n,f)) < 1) {
1165 if((n == 0) && x_feof(f))
1166 break; /* Empty local file. */
1168 d_printf("Error reading local file: %s\n", strerror(errno));
1173 ret = smbcli_write(cli->tree, fnum, 0, buf, nread + start, n);
1176 d_printf("Error writing file: %s\n", smbcli_errstr(cli->tree));
1184 if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnum))) {
1185 d_printf("%s closing remote file %s\n",smbcli_errstr(cli->tree),rname);
1199 struct timeval tp_end;
1202 GetTimeOfDay(&tp_end);
1204 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1205 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1206 put_total_time_ms += this_time;
1207 put_total_size += nread;
1209 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1210 nread / (1.024*this_time + 1.0e-4),
1211 put_total_size / (1.024*put_total_time_ms)));
1215 smbcli_shutdown(cli);
1224 /****************************************************************************
1226 ****************************************************************************/
1227 static int cmd_put(const char **cmd_ptr)
1234 pstrcpy(rname,cur_dir);
1235 pstrcat(rname,"\\");
1237 if (!next_token(cmd_ptr,p,NULL,sizeof(buf))) {
1238 d_printf("put <filename>\n");
1243 if (next_token(cmd_ptr,p,NULL,sizeof(buf)))
1246 pstrcat(rname,lname);
1248 dos_clean_name(rname);
1252 /* allow '-' to represent stdin
1253 jdblair, 24.jun.98 */
1254 if (!file_exist(lname,&st) &&
1255 (strcmp(lname,"-"))) {
1256 d_printf("%s does not exist\n",lname);
1261 return do_put(rname, lname, False);
1264 /*************************************
1266 *************************************/
1268 static struct file_list {
1269 struct file_list *prev, *next;
1274 /****************************************************************************
1275 Free a file_list structure
1276 ****************************************************************************/
1278 static void free_file_list (struct file_list * list)
1280 struct file_list *tmp;
1285 DLIST_REMOVE(list, list);
1286 SAFE_FREE(tmp->file_path);
1291 /****************************************************************************
1292 seek in a directory/file list until you get something that doesn't start with
1294 ****************************************************************************/
1295 static BOOL seek_list(struct file_list *list, char *name)
1298 trim_string(list->file_path,"./","\n");
1299 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1308 /****************************************************************************
1309 set the file selection mask
1310 ****************************************************************************/
1311 static int cmd_select(const char **cmd_ptr)
1313 pstrcpy(fileselection,"");
1314 next_token(cmd_ptr,fileselection,NULL,sizeof(fileselection));
1319 /****************************************************************************
1320 Recursive file matching function act as find
1321 match must be always set to True when calling this function
1322 ****************************************************************************/
1323 static int file_find(struct file_list **list, const char *directory,
1324 const char *expression, BOOL match)
1327 struct file_list *entry;
1328 struct stat statbuf;
1334 dir = opendir(directory);
1335 if (!dir) return -1;
1337 while ((dname = readdirname(dir))) {
1338 if (!strcmp("..", dname)) continue;
1339 if (!strcmp(".", dname)) continue;
1341 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1346 if (!match || !gen_fnmatch(expression, dname)) {
1348 ret = stat(path, &statbuf);
1350 if (S_ISDIR(statbuf.st_mode)) {
1352 ret = file_find(list, path, expression, False);
1355 d_printf("file_find: cannot stat file %s\n", path);
1364 entry = (struct file_list *) malloc(sizeof (struct file_list));
1366 d_printf("Out of memory in file_find\n");
1370 entry->file_path = path;
1371 entry->isdir = isdir;
1372 DLIST_ADD(*list, entry);
1382 /****************************************************************************
1384 ****************************************************************************/
1385 static int cmd_mput(const char **cmd_ptr)
1390 while (next_token(cmd_ptr,p,NULL,sizeof(buf))) {
1392 struct file_list *temp_list;
1393 char *quest, *lname, *rname;
1397 ret = file_find(&file_list, ".", p, True);
1399 free_file_list(file_list);
1407 for (temp_list = file_list; temp_list;
1408 temp_list = temp_list->next) {
1411 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0)
1413 trim_string(lname, "./", "/");
1415 /* check if it's a directory */
1416 if (temp_list->isdir) {
1417 /* if (!recurse) continue; */
1420 if (asprintf(&quest, "Put directory %s? ", lname) < 0) break;
1421 if (prompt && !yesno(quest)) { /* No */
1422 /* Skip the directory */
1423 lname[strlen(lname)-1] = '/';
1424 if (!seek_list(temp_list, lname))
1428 if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1430 if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, rname)) &&
1431 NT_STATUS_IS_ERR(do_mkdir(rname))) {
1432 DEBUG (0, ("Unable to make dir, skipping..."));
1433 /* Skip the directory */
1434 lname[strlen(lname)-1] = '/';
1435 if (!seek_list(temp_list, lname))
1442 if (asprintf(&quest,"Put file %s? ", lname) < 0) break;
1443 if (prompt && !yesno(quest)) /* No */
1448 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1453 do_put(rname, lname, False);
1455 free_file_list(file_list);
1465 /****************************************************************************
1467 ****************************************************************************/
1468 static int do_cancel(int job)
1470 d_printf("REWRITE: print job cancel not implemented\n");
1475 /****************************************************************************
1477 ****************************************************************************/
1478 static int cmd_cancel(const char **cmd_ptr)
1483 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1484 d_printf("cancel <jobid> ...\n");
1490 } while (next_token(cmd_ptr,buf,NULL,sizeof(buf)));
1496 /****************************************************************************
1498 ****************************************************************************/
1499 static int cmd_print(const char **cmd_ptr)
1505 if (!next_token(cmd_ptr,lname,NULL, sizeof(lname))) {
1506 d_printf("print <filename>\n");
1510 pstrcpy(rname,lname);
1511 p = strrchr_m(rname,'/');
1513 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)getpid());
1516 if (strequal(lname,"-")) {
1517 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)getpid());
1520 return do_put(rname, lname, False);
1524 /****************************************************************************
1526 ****************************************************************************/
1527 static int cmd_queue(const char **cmd_ptr)
1529 d_printf("REWRITE: print job queue not implemented\n");
1534 /****************************************************************************
1536 ****************************************************************************/
1537 static int cmd_del(const char **cmd_ptr)
1541 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1544 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1546 pstrcpy(mask,cur_dir);
1548 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1549 d_printf("del <filename>\n");
1554 if (NT_STATUS_IS_ERR(smbcli_unlink(cli->tree, mask))) {
1555 d_printf("%s deleting remote file %s\n",smbcli_errstr(cli->tree),mask);
1562 /****************************************************************************
1563 delete a whole directory tree
1564 ****************************************************************************/
1565 static int cmd_deltree(const char **cmd_ptr)
1571 pstrcpy(dname,cur_dir);
1573 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1574 d_printf("deltree <dirname>\n");
1579 ret = smbcli_deltree(cli->tree, dname);
1582 printf("Failed to delete tree %s - %s\n", dname, smbcli_errstr(cli->tree));
1586 printf("Deleted %d files in %s\n", ret, dname);
1592 /****************************************************************************
1593 show as much information as possible about a file
1594 ****************************************************************************/
1595 static int cmd_allinfo(const char **cmd_ptr)
1600 TALLOC_CTX *mem_ctx;
1601 union smb_fileinfo finfo;
1604 pstrcpy(fname,cur_dir);
1606 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1607 d_printf("allinfo <filename>\n");
1612 mem_ctx = talloc_init("%s", fname);
1614 /* first a ALL_INFO QPATHINFO */
1615 finfo.generic.level = RAW_FILEINFO_ALL_INFO;
1616 finfo.generic.in.fname = fname;
1617 status = smb_raw_pathinfo(cli->tree, mem_ctx, &finfo);
1618 if (!NT_STATUS_IS_OK(status)) {
1619 d_printf("%s - %s\n", fname, nt_errstr(status));
1624 d_printf("\tcreate_time: %s\n", nt_time_string(mem_ctx, finfo.all_info.out.create_time));
1625 d_printf("\taccess_time: %s\n", nt_time_string(mem_ctx, finfo.all_info.out.access_time));
1626 d_printf("\twrite_time: %s\n", nt_time_string(mem_ctx, finfo.all_info.out.write_time));
1627 d_printf("\tchange_time: %s\n", nt_time_string(mem_ctx, finfo.all_info.out.change_time));
1628 d_printf("\tattrib: 0x%x\n", finfo.all_info.out.attrib);
1629 d_printf("\talloc_size: %lu\n", (unsigned long)finfo.all_info.out.alloc_size);
1630 d_printf("\tsize: %lu\n", (unsigned long)finfo.all_info.out.size);
1631 d_printf("\tnlink: %u\n", finfo.all_info.out.nlink);
1632 d_printf("\tdelete_pending: %u\n", finfo.all_info.out.delete_pending);
1633 d_printf("\tdirectory: %u\n", finfo.all_info.out.directory);
1634 d_printf("\tea_size: %u\n", finfo.all_info.out.ea_size);
1635 d_printf("\tfname: '%s'\n", finfo.all_info.out.fname.s);
1637 /* 8.3 name if any */
1638 finfo.generic.level = RAW_FILEINFO_ALT_NAME_INFO;
1639 status = smb_raw_pathinfo(cli->tree, mem_ctx, &finfo);
1640 if (NT_STATUS_IS_OK(status)) {
1641 d_printf("\talt_name: %s\n", finfo.alt_name_info.out.fname.s);
1644 /* file_id if available */
1645 finfo.generic.level = RAW_FILEINFO_INTERNAL_INFORMATION;
1646 status = smb_raw_pathinfo(cli->tree, mem_ctx, &finfo);
1647 if (NT_STATUS_IS_OK(status)) {
1648 d_printf("\tfile_id %.0f\n",
1649 (double)finfo.internal_information.out.file_id);
1652 /* the EAs, if any */
1653 finfo.generic.level = RAW_FILEINFO_ALL_EAS;
1654 status = smb_raw_pathinfo(cli->tree, mem_ctx, &finfo);
1655 if (NT_STATUS_IS_OK(status)) {
1657 for (i=0;i<finfo.all_eas.out.num_eas;i++) {
1658 d_printf("\tEA[%d] flags=%d %s=%*.*s\n", i,
1659 finfo.all_eas.out.eas[i].flags,
1660 finfo.all_eas.out.eas[i].name.s,
1661 finfo.all_eas.out.eas[i].value.length,
1662 finfo.all_eas.out.eas[i].value.length,
1663 finfo.all_eas.out.eas[i].value.data);
1667 /* streams, if available */
1668 finfo.generic.level = RAW_FILEINFO_STREAM_INFO;
1669 status = smb_raw_pathinfo(cli->tree, mem_ctx, &finfo);
1670 if (NT_STATUS_IS_OK(status)) {
1672 for (i=0;i<finfo.stream_info.out.num_streams;i++) {
1673 d_printf("\tstream %d:\n", i);
1674 d_printf("\t\tsize %ld\n",
1675 (long)finfo.stream_info.out.streams[i].size);
1676 d_printf("\t\talloc size %ld\n",
1677 (long)finfo.stream_info.out.streams[i].alloc_size);
1678 d_printf("\t\tname %s\n", finfo.stream_info.out.streams[i].stream_name.s);
1682 /* dev/inode if available */
1683 finfo.generic.level = RAW_FILEINFO_COMPRESSION_INFORMATION;
1684 status = smb_raw_pathinfo(cli->tree, mem_ctx, &finfo);
1685 if (NT_STATUS_IS_OK(status)) {
1686 d_printf("\tcompressed size %ld\n", (long)finfo.compression_info.out.compressed_size);
1687 d_printf("\tformat %ld\n", (long)finfo.compression_info.out.format);
1688 d_printf("\tunit_shift %ld\n", (long)finfo.compression_info.out.unit_shift);
1689 d_printf("\tchunk_shift %ld\n", (long)finfo.compression_info.out.chunk_shift);
1690 d_printf("\tcluster_shift %ld\n", (long)finfo.compression_info.out.cluster_shift);
1693 talloc_destroy(mem_ctx);
1700 /****************************************************************************
1701 show any ACL on a file
1702 ****************************************************************************/
1703 static int cmd_acl(const char **cmd_ptr)
1708 TALLOC_CTX *mem_ctx;
1709 struct smb_query_secdesc query;
1713 pstrcpy(fname,cur_dir);
1715 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1716 d_printf("acl <filename>\n");
1721 fnum = smbcli_open(cli->tree, fname, O_RDONLY, DENY_NONE);
1723 d_printf("%s - %s\n", fname, smbcli_errstr(cli->tree));
1727 mem_ctx = talloc_init("%s", fname);
1729 query.in.fnum = fnum;
1730 query.in.secinfo_flags = 0x7;
1732 status = smb_raw_query_secdesc(cli->tree, mem_ctx, &query);
1733 if (!NT_STATUS_IS_OK(status)) {
1734 d_printf("%s - %s\n", fname, nt_errstr(status));
1739 NDR_PRINT_DEBUG(security_descriptor, query.out.sd);
1741 talloc_destroy(mem_ctx);
1748 /****************************************************************************
1749 ****************************************************************************/
1750 static int cmd_open(const char **cmd_ptr)
1755 pstrcpy(mask,cur_dir);
1757 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1758 d_printf("open <filename>\n");
1763 smbcli_open(cli->tree, mask, O_RDWR, DENY_ALL);
1769 /****************************************************************************
1771 ****************************************************************************/
1772 static int cmd_rmdir(const char **cmd_ptr)
1777 pstrcpy(mask,cur_dir);
1779 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
1780 d_printf("rmdir <dirname>\n");
1785 if (NT_STATUS_IS_ERR(smbcli_rmdir(cli->tree, mask))) {
1786 d_printf("%s removing remote directory file %s\n",
1787 smbcli_errstr(cli->tree),mask);
1793 /****************************************************************************
1795 ****************************************************************************/
1796 static int cmd_link(const char **cmd_ptr)
1801 if (!(cli->transport->negotiate.capabilities & CAP_UNIX)) {
1802 d_printf("Server doesn't support UNIX CIFS calls.\n");
1806 pstrcpy(src,cur_dir);
1807 pstrcpy(dest,cur_dir);
1809 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf)) ||
1810 !next_token(cmd_ptr,buf2,NULL, sizeof(buf2))) {
1811 d_printf("link <src> <dest>\n");
1818 if (NT_STATUS_IS_ERR(smbcli_unix_hardlink(cli->tree, src, dest))) {
1819 d_printf("%s linking files (%s -> %s)\n", smbcli_errstr(cli->tree), src, dest);
1826 /****************************************************************************
1828 ****************************************************************************/
1830 static int cmd_symlink(const char **cmd_ptr)
1835 if (!(cli->transport->negotiate.capabilities & CAP_UNIX)) {
1836 d_printf("Server doesn't support UNIX CIFS calls.\n");
1840 pstrcpy(src,cur_dir);
1841 pstrcpy(dest,cur_dir);
1843 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf)) ||
1844 !next_token(cmd_ptr,buf2,NULL, sizeof(buf2))) {
1845 d_printf("symlink <src> <dest>\n");
1852 if (NT_STATUS_IS_ERR(smbcli_unix_symlink(cli->tree, src, dest))) {
1853 d_printf("%s symlinking files (%s -> %s)\n",
1854 smbcli_errstr(cli->tree), src, dest);
1861 /****************************************************************************
1863 ****************************************************************************/
1865 static int cmd_chmod(const char **cmd_ptr)
1871 if (!(cli->transport->negotiate.capabilities & CAP_UNIX)) {
1872 d_printf("Server doesn't support UNIX CIFS calls.\n");
1876 pstrcpy(src,cur_dir);
1878 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf)) ||
1879 !next_token(cmd_ptr,buf2,NULL, sizeof(buf2))) {
1880 d_printf("chmod mode file\n");
1884 mode = (mode_t)strtol(buf, NULL, 8);
1887 if (NT_STATUS_IS_ERR(smbcli_unix_chmod(cli->tree, src, mode))) {
1888 d_printf("%s chmod file %s 0%o\n",
1889 smbcli_errstr(cli->tree), src, (uint_t)mode);
1896 /****************************************************************************
1898 ****************************************************************************/
1900 static int cmd_chown(const char **cmd_ptr)
1905 fstring buf, buf2, buf3;
1907 if (!(cli->transport->negotiate.capabilities & CAP_UNIX)) {
1908 d_printf("Server doesn't support UNIX CIFS calls.\n");
1912 pstrcpy(src,cur_dir);
1914 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf)) ||
1915 !next_token(cmd_ptr,buf2,NULL, sizeof(buf2)) ||
1916 !next_token(cmd_ptr,buf3,NULL, sizeof(buf3))) {
1917 d_printf("chown uid gid file\n");
1921 uid = (uid_t)atoi(buf);
1922 gid = (gid_t)atoi(buf2);
1925 if (NT_STATUS_IS_ERR(smbcli_unix_chown(cli->tree, src, uid, gid))) {
1926 d_printf("%s chown file %s uid=%d, gid=%d\n",
1927 smbcli_errstr(cli->tree), src, (int)uid, (int)gid);
1934 /****************************************************************************
1936 ****************************************************************************/
1937 static int cmd_rename(const char **cmd_ptr)
1942 pstrcpy(src,cur_dir);
1943 pstrcpy(dest,cur_dir);
1945 if (!next_token(cmd_ptr,buf,NULL,sizeof(buf)) ||
1946 !next_token(cmd_ptr,buf2,NULL, sizeof(buf2))) {
1947 d_printf("rename <src> <dest>\n");
1954 if (NT_STATUS_IS_ERR(smbcli_rename(cli->tree, src, dest))) {
1955 d_printf("%s renaming files\n",smbcli_errstr(cli->tree));
1963 /****************************************************************************
1964 toggle the prompt flag
1965 ****************************************************************************/
1966 static int cmd_prompt(const char **cmd_ptr)
1969 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
1975 /****************************************************************************
1976 set the newer than time
1977 ****************************************************************************/
1978 static int cmd_newer(const char **cmd_ptr)
1982 SMB_STRUCT_STAT sbuf;
1984 ok = next_token(cmd_ptr,buf,NULL,sizeof(buf));
1985 if (ok && (sys_stat(buf,&sbuf) == 0)) {
1986 newer_than = sbuf.st_mtime;
1987 DEBUG(1,("Getting files newer than %s",
1988 asctime(localtime(&newer_than))));
1993 if (ok && newer_than == 0) {
1994 d_printf("Error setting newer-than time\n");
2001 /****************************************************************************
2002 set the archive level
2003 ****************************************************************************/
2004 static int cmd_archive(const char **cmd_ptr)
2008 if (next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
2009 archive_level = atoi(buf);
2011 d_printf("Archive level is %d\n",archive_level);
2016 /****************************************************************************
2017 toggle the lowercaseflag
2018 ****************************************************************************/
2019 static int cmd_lowercase(const char **cmd_ptr)
2021 lowercase = !lowercase;
2022 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
2030 /****************************************************************************
2031 toggle the recurse flag
2032 ****************************************************************************/
2033 static int cmd_recurse(const char **cmd_ptr)
2036 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
2041 /****************************************************************************
2042 toggle the translate flag
2043 ****************************************************************************/
2044 static int cmd_translate(const char **cmd_ptr)
2046 translation = !translation;
2047 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2048 translation?"on":"off"));
2054 /****************************************************************************
2055 do a printmode command
2056 ****************************************************************************/
2057 static int cmd_printmode(const char **cmd_ptr)
2062 if (next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
2063 if (strequal(buf,"text")) {
2066 if (strequal(buf,"graphics"))
2069 printmode = atoi(buf);
2076 fstrcpy(mode,"text");
2079 fstrcpy(mode,"graphics");
2082 slprintf(mode,sizeof(mode)-1,"%d",printmode);
2086 DEBUG(2,("the printmode is now %s\n",mode));
2091 /****************************************************************************
2093 ****************************************************************************/
2094 static int cmd_lcd(const char **cmd_ptr)
2099 if (next_token(cmd_ptr,buf,NULL,sizeof(buf)))
2101 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
2106 /****************************************************************************
2107 get a file restarting at end of local file
2108 ****************************************************************************/
2109 static int cmd_reget(const char **cmd_ptr)
2112 pstring remote_name;
2115 pstrcpy(remote_name, cur_dir);
2116 pstrcat(remote_name, "\\");
2118 p = remote_name + strlen(remote_name);
2120 if (!next_token(cmd_ptr, p, NULL, sizeof(remote_name) - strlen(remote_name))) {
2121 d_printf("reget <filename>\n");
2124 pstrcpy(local_name, p);
2125 dos_clean_name(remote_name);
2127 next_token(cmd_ptr, local_name, NULL, sizeof(local_name));
2129 return do_get(remote_name, local_name, True);
2132 /****************************************************************************
2133 put a file restarting at end of local file
2134 ****************************************************************************/
2135 static int cmd_reput(const char **cmd_ptr)
2138 pstring remote_name;
2143 pstrcpy(remote_name, cur_dir);
2144 pstrcat(remote_name, "\\");
2146 if (!next_token(cmd_ptr, p, NULL, sizeof(buf))) {
2147 d_printf("reput <filename>\n");
2150 pstrcpy(local_name, p);
2152 if (!file_exist(local_name, &st)) {
2153 d_printf("%s does not exist\n", local_name);
2157 if (next_token(cmd_ptr, p, NULL, sizeof(buf)))
2158 pstrcat(remote_name, p);
2160 pstrcat(remote_name, local_name);
2162 dos_clean_name(remote_name);
2164 return do_put(remote_name, local_name, True);
2169 return a string representing a share type
2171 static const char *share_type_str(uint32_t type)
2173 switch (type & 0xF) {
2174 case STYPE_DISKTREE:
2189 display a list of shares from a level 1 share enum
2191 static void display_share_result(struct srvsvc_NetShareCtr1 *ctr1)
2195 for (i=0;i<ctr1->count;i++) {
2196 struct srvsvc_NetShareInfo1 *info = ctr1->array+i;
2198 printf("\t%-15s %-10.10s %s\n",
2200 share_type_str(info->type),
2207 /****************************************************************************
2208 try and browse available shares on a host
2209 ****************************************************************************/
2210 static BOOL browse_host(const char *query_host)
2212 struct dcerpc_pipe *p;
2215 struct srvsvc_NetShareEnumAll r;
2216 uint32_t resume_handle = 0;
2217 TALLOC_CTX *mem_ctx = talloc_init("browse_host");
2218 struct srvsvc_NetShareCtr1 ctr1;
2220 binding = talloc_asprintf(mem_ctx, "ncacn_np:%s", query_host);
2222 status = dcerpc_pipe_connect(&p, binding,
2224 DCERPC_SRVSVC_VERSION,
2226 username, password);
2227 if (!NT_STATUS_IS_OK(status)) {
2228 d_printf("Failed to connect to %s - %s\n",
2229 binding, nt_errstr(status));
2230 talloc_destroy(mem_ctx);
2233 talloc_steal(mem_ctx, p);
2235 r.in.server_unc = talloc_asprintf(mem_ctx,"\\\\%s",dcerpc_server_name(p));
2237 r.in.ctr.ctr1 = &ctr1;
2238 r.in.max_buffer = ~0;
2239 r.in.resume_handle = &resume_handle;
2241 d_printf("\n\tSharename Type Comment\n");
2242 d_printf("\t--------- ---- -------\n");
2246 status = dcerpc_srvsvc_NetShareEnumAll(p, mem_ctx, &r);
2248 if (NT_STATUS_IS_OK(status) &&
2249 (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA) ||
2250 W_ERROR_IS_OK(r.out.result)) &&
2252 display_share_result(r.out.ctr.ctr1);
2253 resume_handle += r.out.ctr.ctr1->count;
2255 } while (NT_STATUS_IS_OK(status) && W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA));
2257 talloc_destroy(mem_ctx);
2259 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
2260 d_printf("Failed NetShareEnumAll %s - %s/%s\n",
2261 binding, nt_errstr(status), win_errstr(r.out.result));
2268 /****************************************************************************
2269 try and browse available connections on a host
2270 ****************************************************************************/
2271 static BOOL list_servers(const char *wk_grp)
2273 d_printf("REWRITE: list servers not implemented\n");
2277 /* Some constants for completing filename arguments */
2279 #define COMPL_NONE 0 /* No completions */
2280 #define COMPL_REMOTE 1 /* Complete remote filename */
2281 #define COMPL_LOCAL 2 /* Complete local filename */
2283 /* This defines the commands supported by this client.
2284 * NOTE: The "!" must be the last one in the list because it's fn pointer
2285 * field is NULL, and NULL in that field is used in process_tok()
2286 * (below) to indicate the end of the list. crh
2291 int (*fn)(const char **cmd_ptr);
2292 const char *description;
2293 char compl_args[2]; /* Completion argument info */
2296 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2297 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
2298 {"acl",cmd_acl,"<file> show file ACL",{COMPL_NONE,COMPL_NONE}},
2299 {"allinfo",cmd_allinfo,"<file> show all possible info about a file",{COMPL_NONE,COMPL_NONE}},
2300 {"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}},
2301 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
2302 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
2303 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
2304 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
2305 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
2306 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2307 {"deltree",cmd_deltree,"<dir> delete a whole directory tree",{COMPL_REMOTE,COMPL_NONE}},
2308 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2309 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2310 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2311 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
2312 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2313 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
2314 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
2315 {"link",cmd_link,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
2316 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
2317 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2318 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
2319 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2320 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
2321 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2322 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
2323 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
2324 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
2325 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
2326 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
2327 {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
2328 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
2329 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
2330 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
2331 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2332 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
2333 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2334 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2335 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
2336 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
2337 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
2338 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
2339 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2340 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2341 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
2342 {"symlink",cmd_symlink,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
2343 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
2344 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
2345 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
2347 /* Yes, this must be here, see crh's comment above. */
2348 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
2349 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
2353 /*******************************************************************
2354 lookup a command string in the list of commands, including
2356 ******************************************************************/
2357 static int process_tok(fstring tok)
2359 int i = 0, matches = 0;
2361 int tok_len = strlen(tok);
2363 while (commands[i].fn != NULL) {
2364 if (strequal(commands[i].name,tok)) {
2368 } else if (strncasecmp(commands[i].name, tok, tok_len) == 0) {
2377 else if (matches == 1)
2383 /****************************************************************************
2385 ****************************************************************************/
2386 static int cmd_help(const char **cmd_ptr)
2391 if (next_token(cmd_ptr,buf,NULL,sizeof(buf))) {
2392 if ((i = process_tok(buf)) >= 0)
2393 d_printf("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description);
2395 while (commands[i].description) {
2396 for (j=0; commands[i].description && (j<5); j++) {
2397 d_printf("%-15s",commands[i].name);
2406 /****************************************************************************
2407 process a -c command string
2408 ****************************************************************************/
2409 static int process_command_string(char *cmd)
2415 /* establish the connection if not already */
2418 cli = do_connect(desthost, service);
2423 while (cmd[0] != '\0') {
2428 if ((p = strchr_m(cmd, ';')) == 0) {
2429 strncpy(line, cmd, 999);
2433 if (p - cmd > 999) p = cmd + 999;
2434 strncpy(line, cmd, p - cmd);
2435 line[p - cmd] = '\0';
2439 /* and get the first part of the command */
2441 if (!next_token(&ptr,tok,NULL,sizeof(tok))) continue;
2443 if ((i = process_tok(tok)) >= 0) {
2444 rc = commands[i].fn(&ptr);
2445 } else if (i == -2) {
2446 d_printf("%s: command abbreviation ambiguous\n",tok);
2448 d_printf("%s: command not found\n",tok);
2455 #define MAX_COMPLETIONS 100
2463 } completion_remote_t;
2465 static void completion_remote_filter(file_info *f, const char *mask, void *state)
2467 completion_remote_t *info = (completion_remote_t *)state;
2469 if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (strcmp(f->name, ".") != 0) && (strcmp(f->name, "..") != 0)) {
2470 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
2471 info->matches[info->count] = strdup(f->name);
2475 if (info->dirmask[0] != 0)
2476 pstrcpy(tmp, info->dirmask);
2479 pstrcat(tmp, f->name);
2480 if (f->mode & FILE_ATTRIBUTE_DIRECTORY)
2482 info->matches[info->count] = strdup(tmp);
2484 if (info->matches[info->count] == NULL)
2486 if (f->mode & FILE_ATTRIBUTE_DIRECTORY)
2487 smb_readline_ca_char(0);
2489 if (info->count == 1)
2490 info->samelen = strlen(info->matches[info->count]);
2492 while (strncmp(info->matches[info->count], info->matches[info->count-1], info->samelen) != 0)
2498 static char **remote_completion(const char *text, int len)
2502 completion_remote_t info = { "", NULL, 1, 0, NULL, 0 };
2508 if (len >= PATH_MAX)
2511 info.matches = (char **)malloc(sizeof(info.matches[0])*MAX_COMPLETIONS);
2512 if (!info.matches) return NULL;
2513 info.matches[0] = NULL;
2515 for (i = len-1; i >= 0; i--)
2516 if ((text[i] == '/') || (text[i] == '\\'))
2518 info.text = text+i+1;
2519 info.samelen = info.len = len-i-1;
2522 strncpy(info.dirmask, text, i+1);
2523 info.dirmask[i+1] = 0;
2524 snprintf(dirmask, sizeof(dirmask), "%s%*s*", cur_dir, i-1, text);
2526 snprintf(dirmask, sizeof(dirmask), "%s*", cur_dir);
2528 if (smbcli_list(cli->tree, dirmask,
2529 FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
2530 completion_remote_filter, &info) < 0)
2533 if (info.count == 2)
2534 info.matches[0] = strdup(info.matches[1]);
2536 info.matches[0] = malloc(info.samelen+1);
2537 if (!info.matches[0])
2539 strncpy(info.matches[0], info.matches[1], info.samelen);
2540 info.matches[0][info.samelen] = 0;
2542 info.matches[info.count] = NULL;
2543 return info.matches;
2546 for (i = 0; i < info.count; i++)
2547 free(info.matches[i]);
2552 static char **completion_fn(const char *text, int start, int end)
2554 smb_readline_ca_char(' ');
2557 const char *buf, *sp;
2561 buf = smb_readline_get_line_buffer();
2565 sp = strchr(buf, ' ');
2569 for (i = 0; commands[i].name; i++)
2570 if ((strncmp(commands[i].name, text, sp - buf) == 0) && (commands[i].name[sp - buf] == 0))
2572 if (commands[i].name == NULL)
2578 if (sp == (buf + start))
2579 compl_type = commands[i].compl_args[0];
2581 compl_type = commands[i].compl_args[1];
2583 if (compl_type == COMPL_REMOTE)
2584 return remote_completion(text, end - start);
2585 else /* fall back to local filename completion */
2589 int i, len, samelen, count=1;
2591 matches = (char **)malloc(sizeof(matches[0])*MAX_COMPLETIONS);
2592 if (!matches) return NULL;
2596 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
2597 if (strncmp(text, commands[i].name, len) == 0) {
2598 matches[count] = strdup(commands[i].name);
2599 if (!matches[count])
2602 samelen = strlen(matches[count]);
2604 while (strncmp(matches[count], matches[count-1], samelen) != 0)
2611 case 0: /* should never happen */
2615 matches[0] = strdup(matches[1]);
2618 matches[0] = malloc(samelen+1);
2621 strncpy(matches[0], matches[1], samelen);
2622 matches[0][samelen] = 0;
2624 matches[count] = NULL;
2637 /****************************************************************************
2638 make sure we swallow keepalives during idle time
2639 ****************************************************************************/
2640 static void readline_callback(void)
2642 static time_t last_t;
2647 if (t - last_t < 5) return;
2651 smbcli_transport_process(cli->transport);
2654 smbcli_chkpath(cli->tree, "\\");
2659 /****************************************************************************
2660 process commands on stdin
2661 ****************************************************************************/
2662 static void process_stdin(void)
2672 /* display a prompt */
2673 slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir);
2674 cline = smb_readline(the_prompt, readline_callback, completion_fn);
2678 pstrcpy(line, cline);
2680 /* special case - first char is ! */
2686 /* and get the first part of the command */
2688 if (!next_token(&ptr,tok,NULL,sizeof(tok))) continue;
2690 if ((i = process_tok(tok)) >= 0) {
2691 commands[i].fn(&ptr);
2692 } else if (i == -2) {
2693 d_printf("%s: command abbreviation ambiguous\n",tok);
2695 d_printf("%s: command not found\n",tok);
2701 /*****************************************************
2702 return a connection to a server
2703 *******************************************************/
2704 static struct smbcli_state *do_connect(const char *server, const char *share)
2706 struct smbcli_state *c;
2707 struct nmb_name called, calling;
2708 const char *server_n;
2709 fstring servicename;
2713 /* make a copy so we don't modify the global string 'service' */
2714 fstrcpy(servicename, share);
2715 sharename = servicename;
2716 if (*sharename == '\\') {
2717 server = sharename+2;
2718 sharename = strchr_m(server,'\\');
2719 if (!sharename) return NULL;
2724 asprintf(&sharename, "\\\\%s\\%s", server, sharename);
2726 server_n = dest_ip?dest_ip:server;
2728 make_nmb_name(&calling, lp_netbios_name(), 0x0);
2729 choose_called_name(&called, server, name_type);
2732 /* have to open a new connection */
2733 if (!(c=smbcli_state_init(NULL)) || !smbcli_socket_connect(c, server_n)) {
2734 d_printf("Connection to %s failed\n", server_n);
2738 if (!smbcli_transport_establish(c, &calling, &called)) {
2740 d_printf("session request to %s failed\n",
2743 if ((p=strchr_m(called.name, '.'))) {
2747 if (strcmp(called.name, "*SMBSERVER")) {
2748 make_nmb_name(&called , "*SMBSERVER", 0x20);
2754 DEBUG(4,(" session request ok\n"));
2756 if (NT_STATUS_IS_ERR(smbcli_negprot(c))) {
2757 d_printf("protocol negotiation failed\n");
2762 status = smbcli_session_setup(c, username, password, domain);
2763 if (NT_STATUS_IS_ERR(status)) {
2764 d_printf("authenticated session setup failed: %s\n", nt_errstr(status));
2765 /* if a password was not supplied then try again with a null username */
2766 if (password[0] || !username[0]) {
2767 status = smbcli_session_setup(c, "", "", lp_workgroup());
2769 if (NT_STATUS_IS_ERR(status)) {
2770 d_printf("session setup failed: %s\n", nt_errstr(status));
2774 d_printf("Anonymous login successful\n");
2777 DEBUG(4,(" session setup ok\n"));
2779 if (NT_STATUS_IS_ERR(smbcli_send_tconX(c, sharename, "?????", password))) {
2780 d_printf("tree connect failed: %s\n", smbcli_errstr(c->tree));
2785 DEBUG(4,(" tconx ok\n"));
2791 /****************************************************************************
2792 process commands from the client
2793 ****************************************************************************/
2794 static int process(char *base_directory)
2798 cli = do_connect(desthost, service);
2803 if (*base_directory) do_cd(base_directory);
2806 rc = process_command_string(cmdstr);
2811 smbcli_shutdown(cli);
2815 /****************************************************************************
2817 ****************************************************************************/
2818 static int do_host_query(char *query_host)
2820 browse_host(query_host);
2821 list_servers(lp_workgroup());
2826 /****************************************************************************
2827 handle a tar operation
2828 ****************************************************************************/
2829 static int do_tar_op(char *base_directory)
2833 /* do we already have a connection? */
2835 cli = do_connect(desthost, service);
2842 if (*base_directory) do_cd(base_directory);
2846 smbcli_shutdown(cli);
2851 /****************************************************************************
2852 handle a message operation
2853 ****************************************************************************/
2854 static int do_message_op(void)
2856 struct nmb_name called, calling;
2857 const char *server_name;
2859 make_nmb_name(&calling, lp_netbios_name(), 0x0);
2860 choose_called_name(&called, desthost, name_type);
2862 server_name = dest_ip ? dest_ip : desthost;
2864 if (!(cli=smbcli_state_init(NULL)) || !smbcli_socket_connect(cli, server_name)) {
2865 d_printf("Connection to %s failed\n", server_name);
2869 if (!smbcli_transport_establish(cli, &calling, &called)) {
2870 d_printf("session request failed\n");
2871 smbcli_shutdown(cli);
2876 smbcli_shutdown(cli);
2883 * Process "-L hostname" option.
2885 * We don't actually do anything yet -- we just stash the name in a
2886 * global variable and do the query when all options have been read.
2888 static void remember_query_host(const char *arg,
2893 while (*arg == '\\' || *arg == '/')
2895 pstrcpy(query_host, arg);
2896 if ((slash = strchr(query_host, '/'))
2897 || (slash = strchr(query_host, '\\'))) {
2903 /****************************************************************************
2905 ****************************************************************************/
2906 int main(int argc,char *argv[])
2908 fstring base_directory;
2911 BOOL message = False;
2912 extern char tar_type;
2917 TALLOC_CTX *mem_ctx;
2918 struct poptOption long_options[] = {
2921 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
2922 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
2923 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
2924 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
2925 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
2926 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
2927 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
2928 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
2929 { "send-buffer", 'b', POPT_ARG_INT, NULL, 'b', "Changes the transmit/send buffer", "BYTES" },
2930 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
2932 POPT_COMMON_CONNECTION
2933 POPT_COMMON_CREDENTIALS
2940 pstrcpy(term_code, KANJI);
2946 *base_directory = 0;
2948 setup_logging(argv[0],DEBUG_STDOUT);
2949 mem_ctx = talloc_init("client.c/main");
2951 d_printf("\nclient.c: Not enough memory\n");
2955 if (!lp_load(dyn_CONFIGFILE,True,False,False)) {
2956 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
2957 argv[0], dyn_CONFIGFILE);
2960 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
2961 poptSetOtherOptionHelp(pc, "[OPTIONS] service <password>");
2963 in_client = True; /* Make sure that we tell lp_load we are */
2965 while ((opt = poptGetNextOpt(pc)) != -1) {
2968 /* Messages are sent to NetBIOS name type 0x3
2969 * (Messenger Service). Make sure we default
2970 * to port 139 instead of port 445. srl,crh
2973 pstrcpy(desthost,poptGetOptArg(pc));
2974 if( 0 == port ) port = 139;
2978 dest_ip = poptGetOptArg(pc);
2981 setup_logging("client", DEBUG_STDERR);
2985 remember_query_host(poptGetOptArg(pc), query_host);
2988 pstrcpy(term_code, poptGetOptArg(pc));
2991 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), optind)) {
2992 poptPrintUsage(pc, stderr, 0);
2997 fstrcpy(base_directory,poptGetOptArg(pc));
3000 io_bufsize = MAX(1, atoi(poptGetOptArg(pc)));
3007 if(poptPeekArg(pc)) {
3008 pstrcpy(service,poptGetArg(pc));
3009 /* Convert any '/' characters in the service name to '\' characters */
3010 string_replace(service, '/','\\');
3012 if (count_chars(service,'\\') < 3) {
3013 d_printf("\n%s: Not enough '\\' characters in service\n",service);
3014 poptPrintUsage(pc, stderr, 0);
3019 if (poptPeekArg(pc)) {
3020 cmdline_set_userpassword(poptGetArg(pc));
3025 if (!tar_type && !*query_host && !*service && !message) {
3026 poptPrintUsage(pc, stderr, 0);
3030 poptFreeContext(pc);
3032 pstrcpy(username, cmdline_get_username());
3033 pstrcpy(domain, cmdline_get_userdomain());
3034 pstrcpy(password, cmdline_get_userpassword());
3036 DEBUG( 3, ( "Client started (version %s).\n", SAMBA_VERSION_STRING ) );
3038 talloc_destroy(mem_ctx);
3041 process_command_string(cmdstr);
3042 return do_tar_op(base_directory);
3045 if ((p=strchr_m(query_host,'#'))) {
3048 sscanf(p, "%x", &name_type);
3052 return do_host_query(query_host);
3056 return do_message_op();
3059 if (process(base_directory)) {