WHATSNEW: Update changes.
[Samba.git] / source / client / client.c
blob3048d9518b653cf5a1d7bfa4c4a9a8ca33e1c8b6
1 /*
2 Unix SMB/CIFS implementation.
3 SMB client
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "client/client_proto.h"
26 #include "include/rpc_client.h"
27 #ifndef REGISTER
28 #define REGISTER 0
29 #endif
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
35 extern char tar_type;
37 static int port = 0;
38 static char *service;
39 static char *desthost;
40 static char *calling_name;
41 static bool grepable = false;
42 static char *cmdstr = NULL;
43 const char *cmd_ptr = NULL;
45 static int io_bufsize = 524288;
47 static int name_type = 0x20;
48 extern int max_protocol;
50 static int process_tok(char *tok);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than = 0;
63 static int archive_level = 0;
65 static bool translation = false;
66 static bool have_ip;
68 /* clitar bits insert */
69 extern int blocksize;
70 extern bool tar_inc;
71 extern bool tar_reset;
72 /* clitar bits end */
74 static bool prompt = true;
76 static bool recurse = false;
77 static bool showacls = false;
78 bool lowercase = false;
80 static struct sockaddr_storage dest_ss;
82 #define SEPARATORS " \t\n\r"
84 static bool abort_mget = true;
86 /* timing globals */
87 SMB_BIG_UINT get_total_size = 0;
88 unsigned int get_total_time_ms = 0;
89 static SMB_BIG_UINT put_total_size = 0;
90 static unsigned int put_total_time_ms = 0;
92 /* totals globals */
93 static double dir_total;
95 /* encrypted state. */
96 static bool smb_encrypt;
98 /* root cli_state connection */
100 struct cli_state *cli;
102 static char CLI_DIRSEP_CHAR = '\\';
103 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
105 /* Accessor functions for directory paths. */
106 static char *fileselection;
107 static const char *client_get_fileselection(void)
109 if (fileselection) {
110 return fileselection;
112 return "";
115 static const char *client_set_fileselection(const char *new_fs)
117 SAFE_FREE(fileselection);
118 if (new_fs) {
119 fileselection = SMB_STRDUP(new_fs);
121 return client_get_fileselection();
124 static char *cwd;
125 static const char *client_get_cwd(void)
127 if (cwd) {
128 return cwd;
130 return CLI_DIRSEP_STR;
133 static const char *client_set_cwd(const char *new_cwd)
135 SAFE_FREE(cwd);
136 if (new_cwd) {
137 cwd = SMB_STRDUP(new_cwd);
139 return client_get_cwd();
142 static char *cur_dir;
143 const char *client_get_cur_dir(void)
145 if (cur_dir) {
146 return cur_dir;
148 return CLI_DIRSEP_STR;
151 const char *client_set_cur_dir(const char *newdir)
153 SAFE_FREE(cur_dir);
154 if (newdir) {
155 cur_dir = SMB_STRDUP(newdir);
157 return client_get_cur_dir();
160 /****************************************************************************
161 Write to a local file with CR/LF->LF translation if appropriate. Return the
162 number taken from the buffer. This may not equal the number written.
163 ****************************************************************************/
165 static int writefile(int f, char *b, int n)
167 int i;
169 if (!translation) {
170 return write(f,b,n);
173 i = 0;
174 while (i < n) {
175 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
176 b++;i++;
178 if (write(f, b, 1) != 1) {
179 break;
181 b++;
182 i++;
185 return(i);
188 /****************************************************************************
189 Read from a file with LF->CR/LF translation if appropriate. Return the
190 number read. read approx n bytes.
191 ****************************************************************************/
193 static int readfile(char *b, int n, XFILE *f)
195 int i;
196 int c;
198 if (!translation)
199 return x_fread(b,1,n,f);
201 i = 0;
202 while (i < (n - 1) && (i < BUFFER_SIZE)) {
203 if ((c = x_getc(f)) == EOF) {
204 break;
207 if (c == '\n') { /* change all LFs to CR/LF */
208 b[i++] = '\r';
211 b[i++] = c;
214 return(i);
217 /****************************************************************************
218 Send a message.
219 ****************************************************************************/
221 static void send_message(void)
223 int total_len = 0;
224 int grp_id;
226 if (!cli_message_start(cli, desthost,
227 get_cmdline_auth_info_username(), &grp_id)) {
228 d_printf("message start: %s\n", cli_errstr(cli));
229 return;
233 d_printf("Connected. Type your message, ending it with a Control-D\n");
235 while (!feof(stdin) && total_len < 1600) {
236 int maxlen = MIN(1600 - total_len,127);
237 char msg[1024];
238 int l=0;
239 int c;
241 ZERO_ARRAY(msg);
243 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
244 if (c == '\n')
245 msg[l++] = '\r';
246 msg[l] = c;
249 if ((total_len > 0) && (strlen(msg) == 0)) {
250 break;
253 if (!cli_message_text(cli, msg, l, grp_id)) {
254 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
255 return;
258 total_len += l;
261 if (total_len >= 1600)
262 d_printf("the message was truncated to 1600 bytes\n");
263 else
264 d_printf("sent %d bytes\n",total_len);
266 if (!cli_message_end(cli, grp_id)) {
267 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
268 return;
272 /****************************************************************************
273 Check the space on a device.
274 ****************************************************************************/
276 static int do_dskattr(void)
278 int total, bsize, avail;
279 struct cli_state *targetcli = NULL;
280 char *targetpath = NULL;
281 TALLOC_CTX *ctx = talloc_tos();
283 if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
284 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
285 return 1;
288 if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
289 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
290 return 1;
293 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
294 total, bsize, avail);
296 return 0;
299 /****************************************************************************
300 Show cd/pwd.
301 ****************************************************************************/
303 static int cmd_pwd(void)
305 d_printf("Current directory is %s",service);
306 d_printf("%s\n",client_get_cur_dir());
307 return 0;
310 /****************************************************************************
311 Ensure name has correct directory separators.
312 ****************************************************************************/
314 static void normalize_name(char *newdir)
316 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
317 string_replace(newdir,'/','\\');
321 /****************************************************************************
322 Change directory - inner section.
323 ****************************************************************************/
325 static int do_cd(const char *new_dir)
327 char *newdir = NULL;
328 char *saved_dir = NULL;
329 char *new_cd = NULL;
330 char *targetpath = NULL;
331 struct cli_state *targetcli = NULL;
332 SMB_STRUCT_STAT sbuf;
333 uint32 attributes;
334 int ret = 1;
335 TALLOC_CTX *ctx = talloc_stackframe();
337 newdir = talloc_strdup(ctx, new_dir);
338 if (!newdir) {
339 TALLOC_FREE(ctx);
340 return 1;
343 normalize_name(newdir);
345 /* Save the current directory in case the new directory is invalid */
347 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
348 if (!saved_dir) {
349 TALLOC_FREE(ctx);
350 return 1;
353 if (*newdir == CLI_DIRSEP_CHAR) {
354 client_set_cur_dir(newdir);
355 new_cd = newdir;
356 } else {
357 new_cd = talloc_asprintf(ctx, "%s%s",
358 client_get_cur_dir(),
359 newdir);
360 if (!new_cd) {
361 goto out;
365 /* Ensure cur_dir ends in a DIRSEP */
366 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
367 new_cd = talloc_asprintf_append(new_cd, CLI_DIRSEP_STR);
368 if (!new_cd) {
369 goto out;
372 client_set_cur_dir(new_cd);
374 new_cd = clean_name(ctx, new_cd);
375 client_set_cur_dir(new_cd);
377 if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
378 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
379 client_set_cur_dir(saved_dir);
380 goto out;
383 if (strequal(targetpath,CLI_DIRSEP_STR )) {
384 TALLOC_FREE(ctx);
385 return 0;
388 /* Use a trans2_qpathinfo to test directories for modern servers.
389 Except Win9x doesn't support the qpathinfo_basic() call..... */
391 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
392 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
393 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
394 client_set_cur_dir(saved_dir);
395 goto out;
398 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
399 d_printf("cd %s: not a directory\n", new_cd);
400 client_set_cur_dir(saved_dir);
401 goto out;
403 } else {
404 targetpath = talloc_asprintf(ctx,
405 "%s%s",
406 targetpath,
407 CLI_DIRSEP_STR );
408 if (!targetpath) {
409 client_set_cur_dir(saved_dir);
410 goto out;
412 targetpath = clean_name(ctx, targetpath);
413 if (!targetpath) {
414 client_set_cur_dir(saved_dir);
415 goto out;
418 if (!cli_chkpath(targetcli, targetpath)) {
419 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
420 client_set_cur_dir(saved_dir);
421 goto out;
425 ret = 0;
427 out:
429 TALLOC_FREE(ctx);
430 return ret;
433 /****************************************************************************
434 Change directory.
435 ****************************************************************************/
437 static int cmd_cd(void)
439 char *buf = NULL;
440 int rc = 0;
442 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
443 rc = do_cd(buf);
444 } else {
445 d_printf("Current directory is %s\n",client_get_cur_dir());
448 return rc;
451 /****************************************************************************
452 Change directory.
453 ****************************************************************************/
455 static int cmd_cd_oneup(void)
457 return do_cd("..");
460 /*******************************************************************
461 Decide if a file should be operated on.
462 ********************************************************************/
464 static bool do_this_one(file_info *finfo)
466 if (!finfo->name) {
467 return false;
470 if (finfo->mode & aDIR) {
471 return true;
474 if (*client_get_fileselection() &&
475 !mask_match(finfo->name,client_get_fileselection(),false)) {
476 DEBUG(3,("mask_match %s failed\n", finfo->name));
477 return false;
480 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
481 DEBUG(3,("newer_than %s failed\n", finfo->name));
482 return false;
485 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
486 DEBUG(3,("archive %s failed\n", finfo->name));
487 return false;
490 return true;
493 /****************************************************************************
494 Display info about a file.
495 ****************************************************************************/
497 static void display_finfo(file_info *finfo, const char *dir)
499 time_t t;
500 TALLOC_CTX *ctx = talloc_tos();
502 if (!do_this_one(finfo)) {
503 return;
506 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
507 if (!showacls) {
508 d_printf(" %-30s%7.7s %8.0f %s",
509 finfo->name,
510 attrib_string(finfo->mode),
511 (double)finfo->size,
512 time_to_asc(t));
513 dir_total += finfo->size;
514 } else {
515 char *afname = NULL;
516 int fnum;
518 /* skip if this is . or .. */
519 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
520 return;
521 /* create absolute filename for cli_nt_create() FIXME */
522 afname = talloc_asprintf(ctx,
523 "%s%s%s",
524 dir,
525 CLI_DIRSEP_STR,
526 finfo->name);
527 if (!afname) {
528 return;
530 /* print file meta date header */
531 d_printf( "FILENAME:%s\n", finfo->name);
532 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
533 d_printf( "SIZE:%.0f\n", (double)finfo->size);
534 d_printf( "MTIME:%s", time_to_asc(t));
535 fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
536 if (fnum == -1) {
537 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
538 afname,
539 cli_errstr( finfo->cli)));
540 } else {
541 SEC_DESC *sd = NULL;
542 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
543 if (!sd) {
544 DEBUG( 0, ("display_finfo() failed to "
545 "get security descriptor: %s",
546 cli_errstr( finfo->cli)));
547 } else {
548 display_sec_desc(sd);
550 TALLOC_FREE(sd);
552 TALLOC_FREE(afname);
556 /****************************************************************************
557 Accumulate size of a file.
558 ****************************************************************************/
560 static void do_du(file_info *finfo, const char *dir)
562 if (do_this_one(finfo)) {
563 dir_total += finfo->size;
567 static bool do_list_recurse;
568 static bool do_list_dirs;
569 static char *do_list_queue = 0;
570 static long do_list_queue_size = 0;
571 static long do_list_queue_start = 0;
572 static long do_list_queue_end = 0;
573 static void (*do_list_fn)(file_info *, const char *dir);
575 /****************************************************************************
576 Functions for do_list_queue.
577 ****************************************************************************/
580 * The do_list_queue is a NUL-separated list of strings stored in a
581 * char*. Since this is a FIFO, we keep track of the beginning and
582 * ending locations of the data in the queue. When we overflow, we
583 * double the size of the char*. When the start of the data passes
584 * the midpoint, we move everything back. This is logically more
585 * complex than a linked list, but easier from a memory management
586 * angle. In any memory error condition, do_list_queue is reset.
587 * Functions check to ensure that do_list_queue is non-NULL before
588 * accessing it.
591 static void reset_do_list_queue(void)
593 SAFE_FREE(do_list_queue);
594 do_list_queue_size = 0;
595 do_list_queue_start = 0;
596 do_list_queue_end = 0;
599 static void init_do_list_queue(void)
601 reset_do_list_queue();
602 do_list_queue_size = 1024;
603 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
604 if (do_list_queue == 0) {
605 d_printf("malloc fail for size %d\n",
606 (int)do_list_queue_size);
607 reset_do_list_queue();
608 } else {
609 memset(do_list_queue, 0, do_list_queue_size);
613 static void adjust_do_list_queue(void)
616 * If the starting point of the queue is more than half way through,
617 * move everything toward the beginning.
620 if (do_list_queue == NULL) {
621 DEBUG(4,("do_list_queue is empty\n"));
622 do_list_queue_start = do_list_queue_end = 0;
623 return;
626 if (do_list_queue_start == do_list_queue_end) {
627 DEBUG(4,("do_list_queue is empty\n"));
628 do_list_queue_start = do_list_queue_end = 0;
629 *do_list_queue = '\0';
630 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
631 DEBUG(4,("sliding do_list_queue backward\n"));
632 memmove(do_list_queue,
633 do_list_queue + do_list_queue_start,
634 do_list_queue_end - do_list_queue_start);
635 do_list_queue_end -= do_list_queue_start;
636 do_list_queue_start = 0;
640 static void add_to_do_list_queue(const char *entry)
642 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
643 while (new_end > do_list_queue_size) {
644 do_list_queue_size *= 2;
645 DEBUG(4,("enlarging do_list_queue to %d\n",
646 (int)do_list_queue_size));
647 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
648 if (! do_list_queue) {
649 d_printf("failure enlarging do_list_queue to %d bytes\n",
650 (int)do_list_queue_size);
651 reset_do_list_queue();
652 } else {
653 memset(do_list_queue + do_list_queue_size / 2,
654 0, do_list_queue_size / 2);
657 if (do_list_queue) {
658 safe_strcpy_base(do_list_queue + do_list_queue_end,
659 entry, do_list_queue, do_list_queue_size);
660 do_list_queue_end = new_end;
661 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
662 entry, (int)do_list_queue_start, (int)do_list_queue_end));
666 static char *do_list_queue_head(void)
668 return do_list_queue + do_list_queue_start;
671 static void remove_do_list_queue_head(void)
673 if (do_list_queue_end > do_list_queue_start) {
674 do_list_queue_start += strlen(do_list_queue_head()) + 1;
675 adjust_do_list_queue();
676 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
677 (int)do_list_queue_start, (int)do_list_queue_end));
681 static int do_list_queue_empty(void)
683 return (! (do_list_queue && *do_list_queue));
686 /****************************************************************************
687 A helper for do_list.
688 ****************************************************************************/
690 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
692 TALLOC_CTX *ctx = talloc_tos();
693 char *dir = NULL;
694 char *dir_end = NULL;
696 /* Work out the directory. */
697 dir = talloc_strdup(ctx, mask);
698 if (!dir) {
699 return;
701 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
702 *dir_end = '\0';
705 if (f->mode & aDIR) {
706 if (do_list_dirs && do_this_one(f)) {
707 do_list_fn(f, dir);
709 if (do_list_recurse &&
710 f->name &&
711 !strequal(f->name,".") &&
712 !strequal(f->name,"..")) {
713 char *mask2 = NULL;
714 char *p = NULL;
716 if (!f->name[0]) {
717 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
718 TALLOC_FREE(dir);
719 return;
722 mask2 = talloc_asprintf(ctx,
723 "%s%s",
724 mntpoint,
725 mask);
726 if (!mask2) {
727 TALLOC_FREE(dir);
728 return;
730 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
731 if (!p) {
732 TALLOC_FREE(dir);
733 return;
735 p[1] = 0;
736 mask2 = talloc_asprintf_append(mask2,
737 "%s%s*",
738 f->name,
739 CLI_DIRSEP_STR);
740 if (!mask2) {
741 TALLOC_FREE(dir);
742 return;
744 add_to_do_list_queue(mask2);
745 TALLOC_FREE(mask2);
747 TALLOC_FREE(dir);
748 return;
751 if (do_this_one(f)) {
752 do_list_fn(f,dir);
754 TALLOC_FREE(dir);
757 /****************************************************************************
758 A wrapper around cli_list that adds recursion.
759 ****************************************************************************/
761 void do_list(const char *mask,
762 uint16 attribute,
763 void (*fn)(file_info *, const char *dir),
764 bool rec,
765 bool dirs)
767 static int in_do_list = 0;
768 TALLOC_CTX *ctx = talloc_tos();
769 struct cli_state *targetcli = NULL;
770 char *targetpath = NULL;
772 if (in_do_list && rec) {
773 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
774 exit(1);
777 in_do_list = 1;
779 do_list_recurse = rec;
780 do_list_dirs = dirs;
781 do_list_fn = fn;
783 if (rec) {
784 init_do_list_queue();
785 add_to_do_list_queue(mask);
787 while (!do_list_queue_empty()) {
789 * Need to copy head so that it doesn't become
790 * invalid inside the call to cli_list. This
791 * would happen if the list were expanded
792 * during the call.
793 * Fix from E. Jay Berkenbilt (ejb@ql.org)
795 char *head = talloc_strdup(ctx, do_list_queue_head());
797 if (!head) {
798 return;
801 /* check for dfs */
803 if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
804 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
805 remove_do_list_queue_head();
806 continue;
809 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
810 remove_do_list_queue_head();
811 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
812 char *next_file = do_list_queue_head();
813 char *save_ch = 0;
814 if ((strlen(next_file) >= 2) &&
815 (next_file[strlen(next_file) - 1] == '*') &&
816 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
817 save_ch = next_file +
818 strlen(next_file) - 2;
819 *save_ch = '\0';
820 if (showacls) {
821 /* cwd is only used if showacls is on */
822 client_set_cwd(next_file);
825 if (!showacls) /* don't disturbe the showacls output */
826 d_printf("\n%s\n",next_file);
827 if (save_ch) {
828 *save_ch = CLI_DIRSEP_CHAR;
831 TALLOC_FREE(head);
832 TALLOC_FREE(targetpath);
834 } else {
835 /* check for dfs */
836 if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
837 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
838 d_printf("%s listing %s\n",
839 cli_errstr(targetcli), targetpath);
841 TALLOC_FREE(targetpath);
842 } else {
843 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
847 in_do_list = 0;
848 reset_do_list_queue();
851 /****************************************************************************
852 Get a directory listing.
853 ****************************************************************************/
855 static int cmd_dir(void)
857 TALLOC_CTX *ctx = talloc_tos();
858 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
859 char *mask = NULL;
860 char *buf = NULL;
861 int rc = 1;
863 dir_total = 0;
864 mask = talloc_strdup(ctx, client_get_cur_dir());
865 if (!mask) {
866 return 1;
869 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
870 normalize_name(buf);
871 if (*buf == CLI_DIRSEP_CHAR) {
872 mask = talloc_strdup(ctx, buf);
873 } else {
874 mask = talloc_asprintf_append(mask, buf);
876 } else {
877 mask = talloc_asprintf_append(mask, "*");
879 if (!mask) {
880 return 1;
883 if (showacls) {
884 /* cwd is only used if showacls is on */
885 client_set_cwd(client_get_cur_dir());
888 do_list(mask, attribute, display_finfo, recurse, true);
890 rc = do_dskattr();
892 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
894 return rc;
897 /****************************************************************************
898 Get a directory listing.
899 ****************************************************************************/
901 static int cmd_du(void)
903 TALLOC_CTX *ctx = talloc_tos();
904 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
905 char *mask = NULL;
906 char *buf = NULL;
907 int rc = 1;
909 dir_total = 0;
910 mask = talloc_strdup(ctx, client_get_cur_dir());
911 if (!mask) {
912 return 1;
914 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
915 mask = talloc_asprintf_append(mask, CLI_DIRSEP_STR);
916 if (!mask) {
917 return 1;
921 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
922 normalize_name(buf);
923 if (*buf == CLI_DIRSEP_CHAR) {
924 mask = talloc_strdup(ctx, buf);
925 } else {
926 mask = talloc_asprintf_append(mask, buf);
928 } else {
929 mask = talloc_strdup(ctx, "*");
932 do_list(mask, attribute, do_du, recurse, true);
934 rc = do_dskattr();
936 d_printf("Total number of bytes: %.0f\n", dir_total);
938 return rc;
941 static int cmd_echo(void)
943 TALLOC_CTX *ctx = talloc_tos();
944 char *num;
945 char *data;
947 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
948 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
949 d_printf("echo <num> <data>\n");
950 return 1;
953 if (!cli_echo(cli, atoi(num), (uint8 *)data, strlen(data))) {
954 d_printf("echo failed: %s\n",
955 nt_errstr(cli_get_nt_error(cli)));
956 return 1;
959 return 0;
962 /****************************************************************************
963 Get a file from rname to lname
964 ****************************************************************************/
966 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
968 int *pfd = (int *)priv;
969 if (writefile(*pfd, buf, n) == -1) {
970 return map_nt_error_from_unix(errno);
972 return NT_STATUS_OK;
975 static int do_get(const char *rname, const char *lname_in, bool reget)
977 TALLOC_CTX *ctx = talloc_tos();
978 int handle = 0, fnum;
979 bool newhandle = false;
980 struct timeval tp_start;
981 uint16 attr;
982 SMB_OFF_T size;
983 off_t start = 0;
984 SMB_OFF_T nread = 0;
985 int rc = 0;
986 struct cli_state *targetcli = NULL;
987 char *targetname = NULL;
988 char *lname = NULL;
989 NTSTATUS status;
991 lname = talloc_strdup(ctx, lname_in);
992 if (!lname) {
993 return 1;
996 if (lowercase) {
997 strlower_m(lname);
1000 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
1001 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1002 return 1;
1005 GetTimeOfDay(&tp_start);
1007 fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
1009 if (fnum == -1) {
1010 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1011 return 1;
1014 if(!strcmp(lname,"-")) {
1015 handle = fileno(stdout);
1016 } else {
1017 if (reget) {
1018 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1019 if (handle >= 0) {
1020 start = sys_lseek(handle, 0, SEEK_END);
1021 if (start == -1) {
1022 d_printf("Error seeking local file\n");
1023 return 1;
1026 } else {
1027 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1029 newhandle = true;
1031 if (handle < 0) {
1032 d_printf("Error opening local file %s\n",lname);
1033 return 1;
1037 if (!cli_qfileinfo(targetcli, fnum,
1038 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1039 !cli_getattrE(targetcli, fnum,
1040 &attr, &size, NULL, NULL, NULL)) {
1041 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1042 return 1;
1045 DEBUG(1,("getting file %s of size %.0f as %s ",
1046 rname, (double)size, lname));
1048 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1049 writefile_sink, (void *)&handle, &nread);
1050 if (!NT_STATUS_IS_OK(status)) {
1051 d_fprintf(stderr, "parallel_read returned %s\n",
1052 nt_errstr(status));
1053 cli_close(targetcli, fnum);
1054 return 1;
1057 if (!cli_close(targetcli, fnum)) {
1058 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1059 rc = 1;
1062 if (newhandle) {
1063 close(handle);
1066 if (archive_level >= 2 && (attr & aARCH)) {
1067 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1071 struct timeval tp_end;
1072 int this_time;
1074 GetTimeOfDay(&tp_end);
1075 this_time =
1076 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1077 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1078 get_total_time_ms += this_time;
1079 get_total_size += nread;
1081 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1082 nread / (1.024*this_time + 1.0e-4),
1083 get_total_size / (1.024*get_total_time_ms)));
1086 TALLOC_FREE(targetname);
1087 return rc;
1090 /****************************************************************************
1091 Get a file.
1092 ****************************************************************************/
1094 static int cmd_get(void)
1096 TALLOC_CTX *ctx = talloc_tos();
1097 char *lname = NULL;
1098 char *rname = NULL;
1099 char *fname = NULL;
1101 rname = talloc_strdup(ctx, client_get_cur_dir());
1102 if (!rname) {
1103 return 1;
1106 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1107 d_printf("get <filename> [localname]\n");
1108 return 1;
1110 rname = talloc_asprintf_append(rname, fname);
1111 if (!rname) {
1112 return 1;
1114 rname = clean_name(ctx, rname);
1115 if (!rname) {
1116 return 1;
1119 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1120 if (!lname) {
1121 lname = fname;
1124 return do_get(rname, lname, false);
1127 /****************************************************************************
1128 Do an mget operation on one file.
1129 ****************************************************************************/
1131 static void do_mget(file_info *finfo, const char *dir)
1133 TALLOC_CTX *ctx = talloc_tos();
1134 char *rname = NULL;
1135 char *quest = NULL;
1136 char *saved_curdir = NULL;
1137 char *mget_mask = NULL;
1138 char *new_cd = NULL;
1140 if (!finfo->name) {
1141 return;
1144 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1145 return;
1147 if (abort_mget) {
1148 d_printf("mget aborted\n");
1149 return;
1152 if (finfo->mode & aDIR) {
1153 if (asprintf(&quest,
1154 "Get directory %s? ",finfo->name) < 0) {
1155 return;
1157 } else {
1158 if (asprintf(&quest,
1159 "Get file %s? ",finfo->name) < 0) {
1160 return;
1164 if (prompt && !yesno(quest)) {
1165 SAFE_FREE(quest);
1166 return;
1168 SAFE_FREE(quest);
1170 if (!(finfo->mode & aDIR)) {
1171 rname = talloc_asprintf(ctx,
1172 "%s%s",
1173 client_get_cur_dir(),
1174 finfo->name);
1175 if (!rname) {
1176 return;
1178 do_get(rname, finfo->name, false);
1179 TALLOC_FREE(rname);
1180 return;
1183 /* handle directories */
1184 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1185 if (!saved_curdir) {
1186 return;
1189 new_cd = talloc_asprintf(ctx,
1190 "%s%s%s",
1191 client_get_cur_dir(),
1192 finfo->name,
1193 CLI_DIRSEP_STR);
1194 if (!new_cd) {
1195 return;
1197 client_set_cur_dir(new_cd);
1199 string_replace(finfo->name,'\\','/');
1200 if (lowercase) {
1201 strlower_m(finfo->name);
1204 if (!directory_exist(finfo->name,NULL) &&
1205 mkdir(finfo->name,0777) != 0) {
1206 d_printf("failed to create directory %s\n",finfo->name);
1207 client_set_cur_dir(saved_curdir);
1208 return;
1211 if (chdir(finfo->name) != 0) {
1212 d_printf("failed to chdir to directory %s\n",finfo->name);
1213 client_set_cur_dir(saved_curdir);
1214 return;
1217 mget_mask = talloc_asprintf(ctx,
1218 "%s*",
1219 client_get_cur_dir());
1221 if (!mget_mask) {
1222 return;
1225 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1226 chdir("..");
1227 client_set_cur_dir(saved_curdir);
1228 TALLOC_FREE(mget_mask);
1229 TALLOC_FREE(saved_curdir);
1230 TALLOC_FREE(new_cd);
1233 /****************************************************************************
1234 View the file using the pager.
1235 ****************************************************************************/
1237 static int cmd_more(void)
1239 TALLOC_CTX *ctx = talloc_tos();
1240 char *rname = NULL;
1241 char *fname = NULL;
1242 char *lname = NULL;
1243 char *pager_cmd = NULL;
1244 const char *pager;
1245 int fd;
1246 int rc = 0;
1248 rname = talloc_strdup(ctx, client_get_cur_dir());
1249 if (!rname) {
1250 return 1;
1253 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1254 if (!lname) {
1255 return 1;
1257 fd = smb_mkstemp(lname);
1258 if (fd == -1) {
1259 d_printf("failed to create temporary file for more\n");
1260 return 1;
1262 close(fd);
1264 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1265 d_printf("more <filename>\n");
1266 unlink(lname);
1267 return 1;
1269 rname = talloc_asprintf_append(rname, fname);
1270 if (!rname) {
1271 return 1;
1273 rname = clean_name(ctx,rname);
1274 if (!rname) {
1275 return 1;
1278 rc = do_get(rname, lname, false);
1280 pager=getenv("PAGER");
1282 pager_cmd = talloc_asprintf(ctx,
1283 "%s %s",
1284 (pager? pager:PAGER),
1285 lname);
1286 if (!pager_cmd) {
1287 return 1;
1289 system(pager_cmd);
1290 unlink(lname);
1292 return rc;
1295 /****************************************************************************
1296 Do a mget command.
1297 ****************************************************************************/
1299 static int cmd_mget(void)
1301 TALLOC_CTX *ctx = talloc_tos();
1302 uint16 attribute = aSYSTEM | aHIDDEN;
1303 char *mget_mask = NULL;
1304 char *buf = NULL;
1306 if (recurse) {
1307 attribute |= aDIR;
1310 abort_mget = false;
1312 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1313 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1314 if (!mget_mask) {
1315 return 1;
1317 if (*buf == CLI_DIRSEP_CHAR) {
1318 mget_mask = talloc_strdup(ctx, buf);
1319 } else {
1320 mget_mask = talloc_asprintf_append(mget_mask,
1321 buf);
1323 if (!mget_mask) {
1324 return 1;
1326 do_list(mget_mask, attribute, do_mget, false, true);
1329 if (!*mget_mask) {
1330 mget_mask = talloc_asprintf(ctx,
1331 "%s*",
1332 client_get_cur_dir());
1333 if (!mget_mask) {
1334 return 1;
1336 do_list(mget_mask, attribute, do_mget, false, true);
1339 return 0;
1342 /****************************************************************************
1343 Make a directory of name "name".
1344 ****************************************************************************/
1346 static bool do_mkdir(const char *name)
1348 TALLOC_CTX *ctx = talloc_tos();
1349 struct cli_state *targetcli;
1350 char *targetname = NULL;
1352 if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
1353 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1354 return false;
1357 if (!cli_mkdir(targetcli, targetname)) {
1358 d_printf("%s making remote directory %s\n",
1359 cli_errstr(targetcli),name);
1360 return false;
1363 return true;
1366 /****************************************************************************
1367 Show 8.3 name of a file.
1368 ****************************************************************************/
1370 static bool do_altname(const char *name)
1372 fstring altname;
1374 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1375 d_printf("%s getting alt name for %s\n",
1376 cli_errstr(cli),name);
1377 return false;
1379 d_printf("%s\n", altname);
1381 return true;
1384 /****************************************************************************
1385 Exit client.
1386 ****************************************************************************/
1388 static int cmd_quit(void)
1390 cli_cm_shutdown();
1391 exit(0);
1392 /* NOTREACHED */
1393 return 0;
1396 /****************************************************************************
1397 Make a directory.
1398 ****************************************************************************/
1400 static int cmd_mkdir(void)
1402 TALLOC_CTX *ctx = talloc_tos();
1403 char *mask = NULL;
1404 char *buf = NULL;
1406 mask = talloc_strdup(ctx, client_get_cur_dir());
1407 if (!mask) {
1408 return 1;
1411 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1412 if (!recurse) {
1413 d_printf("mkdir <dirname>\n");
1415 return 1;
1417 mask = talloc_asprintf_append(mask, buf);
1418 if (!mask) {
1419 return 1;
1422 if (recurse) {
1423 char *ddir = NULL;
1424 char *ddir2 = NULL;
1425 struct cli_state *targetcli;
1426 char *targetname = NULL;
1427 char *p = NULL;
1428 char *saveptr;
1430 ddir2 = talloc_strdup(ctx, "");
1431 if (!ddir2) {
1432 return 1;
1435 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1436 return 1;
1439 ddir = talloc_strdup(ctx, targetname);
1440 if (!ddir) {
1441 return 1;
1443 trim_char(ddir,'.','\0');
1444 p = strtok_r(ddir, "/\\", &saveptr);
1445 while (p) {
1446 ddir2 = talloc_asprintf_append(ddir2, p);
1447 if (!ddir2) {
1448 return 1;
1450 if (!cli_chkpath(targetcli, ddir2)) {
1451 do_mkdir(ddir2);
1453 ddir2 = talloc_asprintf_append(ddir2, CLI_DIRSEP_STR);
1454 if (!ddir2) {
1455 return 1;
1457 p = strtok_r(NULL, "/\\", &saveptr);
1459 } else {
1460 do_mkdir(mask);
1463 return 0;
1466 /****************************************************************************
1467 Show alt name.
1468 ****************************************************************************/
1470 static int cmd_altname(void)
1472 TALLOC_CTX *ctx = talloc_tos();
1473 char *name;
1474 char *buf;
1476 name = talloc_strdup(ctx, client_get_cur_dir());
1477 if (!name) {
1478 return 1;
1481 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1482 d_printf("altname <file>\n");
1483 return 1;
1485 name = talloc_asprintf_append(name, buf);
1486 if (!name) {
1487 return 1;
1489 do_altname(name);
1490 return 0;
1493 /****************************************************************************
1494 Show all info we can get
1495 ****************************************************************************/
1497 static int do_allinfo(const char *name)
1499 fstring altname;
1500 struct timespec b_time, a_time, m_time, c_time;
1501 SMB_OFF_T size;
1502 uint16_t mode;
1503 SMB_INO_T ino;
1504 NTTIME tmp;
1505 unsigned int num_streams;
1506 struct stream_struct *streams;
1507 unsigned int i;
1509 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1510 d_printf("%s getting alt name for %s\n",
1511 cli_errstr(cli),name);
1512 return false;
1514 d_printf("altname: %s\n", altname);
1516 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1517 &size, &mode, &ino)) {
1518 d_printf("%s getting pathinfo for %s\n",
1519 cli_errstr(cli),name);
1520 return false;
1523 unix_timespec_to_nt_time(&tmp, b_time);
1524 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1526 unix_timespec_to_nt_time(&tmp, a_time);
1527 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1529 unix_timespec_to_nt_time(&tmp, m_time);
1530 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1532 unix_timespec_to_nt_time(&tmp, c_time);
1533 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1535 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1536 &streams)) {
1537 d_printf("%s getting streams for %s\n",
1538 cli_errstr(cli),name);
1539 return false;
1542 for (i=0; i<num_streams; i++) {
1543 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1544 (unsigned long long)streams[i].size);
1547 return 0;
1550 /****************************************************************************
1551 Show all info we can get
1552 ****************************************************************************/
1554 static int cmd_allinfo(void)
1556 TALLOC_CTX *ctx = talloc_tos();
1557 char *name;
1558 char *buf;
1560 name = talloc_strdup(ctx, client_get_cur_dir());
1561 if (!name) {
1562 return 1;
1565 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1566 d_printf("allinfo <file>\n");
1567 return 1;
1569 name = talloc_asprintf_append(name, buf);
1570 if (!name) {
1571 return 1;
1574 do_allinfo(name);
1576 return 0;
1579 /****************************************************************************
1580 Put a single file.
1581 ****************************************************************************/
1583 static int do_put(const char *rname, const char *lname, bool reput)
1585 TALLOC_CTX *ctx = talloc_tos();
1586 int fnum;
1587 XFILE *f;
1588 SMB_OFF_T start = 0;
1589 off_t nread = 0;
1590 char *buf = NULL;
1591 int maxwrite = io_bufsize;
1592 int rc = 0;
1593 struct timeval tp_start;
1594 struct cli_state *targetcli;
1595 char *targetname = NULL;
1597 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1598 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1599 return 1;
1602 GetTimeOfDay(&tp_start);
1604 if (reput) {
1605 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1606 if (fnum >= 0) {
1607 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1608 !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1609 d_printf("getattrib: %s\n",cli_errstr(cli));
1610 return 1;
1613 } else {
1614 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1617 if (fnum == -1) {
1618 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1619 return 1;
1622 /* allow files to be piped into smbclient
1623 jdblair 24.jun.98
1625 Note that in this case this function will exit(0) rather
1626 than returning. */
1627 if (!strcmp(lname, "-")) {
1628 f = x_stdin;
1629 /* size of file is not known */
1630 } else {
1631 f = x_fopen(lname,O_RDONLY, 0);
1632 if (f && reput) {
1633 if (x_tseek(f, start, SEEK_SET) == -1) {
1634 d_printf("Error seeking local file\n");
1635 return 1;
1640 if (!f) {
1641 d_printf("Error opening local file %s\n",lname);
1642 return 1;
1645 DEBUG(1,("putting file %s as %s ",lname,
1646 rname));
1648 buf = (char *)SMB_MALLOC(maxwrite);
1649 if (!buf) {
1650 d_printf("ERROR: Not enough memory!\n");
1651 return 1;
1653 while (!x_feof(f)) {
1654 int n = maxwrite;
1655 int ret;
1657 if ((n = readfile(buf,n,f)) < 1) {
1658 if((n == 0) && x_feof(f))
1659 break; /* Empty local file. */
1661 d_printf("Error reading local file: %s\n", strerror(errno));
1662 rc = 1;
1663 break;
1666 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1668 if (n != ret) {
1669 d_printf("Error writing file: %s\n", cli_errstr(cli));
1670 rc = 1;
1671 break;
1674 nread += n;
1677 if (!cli_close(targetcli, fnum)) {
1678 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1679 x_fclose(f);
1680 SAFE_FREE(buf);
1681 return 1;
1684 if (f != x_stdin) {
1685 x_fclose(f);
1688 SAFE_FREE(buf);
1691 struct timeval tp_end;
1692 int this_time;
1694 GetTimeOfDay(&tp_end);
1695 this_time =
1696 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1697 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1698 put_total_time_ms += this_time;
1699 put_total_size += nread;
1701 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1702 nread / (1.024*this_time + 1.0e-4),
1703 put_total_size / (1.024*put_total_time_ms)));
1706 if (f == x_stdin) {
1707 cli_cm_shutdown();
1708 exit(0);
1711 return rc;
1714 /****************************************************************************
1715 Put a file.
1716 ****************************************************************************/
1718 static int cmd_put(void)
1720 TALLOC_CTX *ctx = talloc_tos();
1721 char *lname;
1722 char *rname;
1723 char *buf;
1725 rname = talloc_strdup(ctx, client_get_cur_dir());
1726 if (!rname) {
1727 return 1;
1730 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1731 d_printf("put <filename>\n");
1732 return 1;
1735 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1736 rname = talloc_asprintf_append(rname, buf);
1737 } else {
1738 rname = talloc_asprintf_append(rname, lname);
1740 if (!rname) {
1741 return 1;
1744 rname = clean_name(ctx, rname);
1745 if (!rname) {
1746 return 1;
1750 SMB_STRUCT_STAT st;
1751 /* allow '-' to represent stdin
1752 jdblair, 24.jun.98 */
1753 if (!file_exist(lname,&st) &&
1754 (strcmp(lname,"-"))) {
1755 d_printf("%s does not exist\n",lname);
1756 return 1;
1760 return do_put(rname, lname, false);
1763 /*************************************
1764 File list structure.
1765 *************************************/
1767 static struct file_list {
1768 struct file_list *prev, *next;
1769 char *file_path;
1770 bool isdir;
1771 } *file_list;
1773 /****************************************************************************
1774 Free a file_list structure.
1775 ****************************************************************************/
1777 static void free_file_list (struct file_list *list_head)
1779 struct file_list *list, *next;
1781 for (list = list_head; list; list = next) {
1782 next = list->next;
1783 DLIST_REMOVE(list_head, list);
1784 SAFE_FREE(list->file_path);
1785 SAFE_FREE(list);
1789 /****************************************************************************
1790 Seek in a directory/file list until you get something that doesn't start with
1791 the specified name.
1792 ****************************************************************************/
1794 static bool seek_list(struct file_list *list, char *name)
1796 while (list) {
1797 trim_string(list->file_path,"./","\n");
1798 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1799 return true;
1801 list = list->next;
1804 return false;
1807 /****************************************************************************
1808 Set the file selection mask.
1809 ****************************************************************************/
1811 static int cmd_select(void)
1813 TALLOC_CTX *ctx = talloc_tos();
1814 char *new_fs = NULL;
1815 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1817 if (new_fs) {
1818 client_set_fileselection(new_fs);
1819 } else {
1820 client_set_fileselection("");
1822 return 0;
1825 /****************************************************************************
1826 Recursive file matching function act as find
1827 match must be always set to true when calling this function
1828 ****************************************************************************/
1830 static int file_find(struct file_list **list, const char *directory,
1831 const char *expression, bool match)
1833 SMB_STRUCT_DIR *dir;
1834 struct file_list *entry;
1835 struct stat statbuf;
1836 int ret;
1837 char *path;
1838 bool isdir;
1839 const char *dname;
1841 dir = sys_opendir(directory);
1842 if (!dir)
1843 return -1;
1845 while ((dname = readdirname(dir))) {
1846 if (!strcmp("..", dname))
1847 continue;
1848 if (!strcmp(".", dname))
1849 continue;
1851 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1852 continue;
1855 isdir = false;
1856 if (!match || !gen_fnmatch(expression, dname)) {
1857 if (recurse) {
1858 ret = stat(path, &statbuf);
1859 if (ret == 0) {
1860 if (S_ISDIR(statbuf.st_mode)) {
1861 isdir = true;
1862 ret = file_find(list, path, expression, false);
1864 } else {
1865 d_printf("file_find: cannot stat file %s\n", path);
1868 if (ret == -1) {
1869 SAFE_FREE(path);
1870 sys_closedir(dir);
1871 return -1;
1874 entry = SMB_MALLOC_P(struct file_list);
1875 if (!entry) {
1876 d_printf("Out of memory in file_find\n");
1877 sys_closedir(dir);
1878 return -1;
1880 entry->file_path = path;
1881 entry->isdir = isdir;
1882 DLIST_ADD(*list, entry);
1883 } else {
1884 SAFE_FREE(path);
1888 sys_closedir(dir);
1889 return 0;
1892 /****************************************************************************
1893 mput some files.
1894 ****************************************************************************/
1896 static int cmd_mput(void)
1898 TALLOC_CTX *ctx = talloc_tos();
1899 char *p = NULL;
1901 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1902 int ret;
1903 struct file_list *temp_list;
1904 char *quest, *lname, *rname;
1906 file_list = NULL;
1908 ret = file_find(&file_list, ".", p, true);
1909 if (ret) {
1910 free_file_list(file_list);
1911 continue;
1914 quest = NULL;
1915 lname = NULL;
1916 rname = NULL;
1918 for (temp_list = file_list; temp_list;
1919 temp_list = temp_list->next) {
1921 SAFE_FREE(lname);
1922 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1923 continue;
1925 trim_string(lname, "./", "/");
1927 /* check if it's a directory */
1928 if (temp_list->isdir) {
1929 /* if (!recurse) continue; */
1931 SAFE_FREE(quest);
1932 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1933 break;
1935 if (prompt && !yesno(quest)) { /* No */
1936 /* Skip the directory */
1937 lname[strlen(lname)-1] = '/';
1938 if (!seek_list(temp_list, lname))
1939 break;
1940 } else { /* Yes */
1941 SAFE_FREE(rname);
1942 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1943 break;
1945 normalize_name(rname);
1946 if (!cli_chkpath(cli, rname) &&
1947 !do_mkdir(rname)) {
1948 DEBUG (0, ("Unable to make dir, skipping..."));
1949 /* Skip the directory */
1950 lname[strlen(lname)-1] = '/';
1951 if (!seek_list(temp_list, lname)) {
1952 break;
1956 continue;
1957 } else {
1958 SAFE_FREE(quest);
1959 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1960 break;
1962 if (prompt && !yesno(quest)) {
1963 /* No */
1964 continue;
1967 /* Yes */
1968 SAFE_FREE(rname);
1969 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1970 break;
1974 normalize_name(rname);
1976 do_put(rname, lname, false);
1978 free_file_list(file_list);
1979 SAFE_FREE(quest);
1980 SAFE_FREE(lname);
1981 SAFE_FREE(rname);
1984 return 0;
1987 /****************************************************************************
1988 Cancel a print job.
1989 ****************************************************************************/
1991 static int do_cancel(int job)
1993 if (cli_printjob_del(cli, job)) {
1994 d_printf("Job %d cancelled\n",job);
1995 return 0;
1996 } else {
1997 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1998 return 1;
2002 /****************************************************************************
2003 Cancel a print job.
2004 ****************************************************************************/
2006 static int cmd_cancel(void)
2008 TALLOC_CTX *ctx = talloc_tos();
2009 char *buf = NULL;
2010 int job;
2012 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2013 d_printf("cancel <jobid> ...\n");
2014 return 1;
2016 do {
2017 job = atoi(buf);
2018 do_cancel(job);
2019 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2021 return 0;
2024 /****************************************************************************
2025 Print a file.
2026 ****************************************************************************/
2028 static int cmd_print(void)
2030 TALLOC_CTX *ctx = talloc_tos();
2031 char *lname = NULL;
2032 char *rname = NULL;
2033 char *p = NULL;
2035 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2036 d_printf("print <filename>\n");
2037 return 1;
2040 rname = talloc_strdup(ctx, lname);
2041 if (!rname) {
2042 return 1;
2044 p = strrchr_m(rname,'/');
2045 if (p) {
2046 rname = talloc_asprintf(ctx,
2047 "%s-%d",
2048 p+1,
2049 (int)sys_getpid());
2051 if (strequal(lname,"-")) {
2052 rname = talloc_asprintf(ctx,
2053 "stdin-%d",
2054 (int)sys_getpid());
2056 if (!rname) {
2057 return 1;
2060 return do_put(rname, lname, false);
2063 /****************************************************************************
2064 Show a print queue entry.
2065 ****************************************************************************/
2067 static void queue_fn(struct print_job_info *p)
2069 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2072 /****************************************************************************
2073 Show a print queue.
2074 ****************************************************************************/
2076 static int cmd_queue(void)
2078 cli_print_queue(cli, queue_fn);
2079 return 0;
2082 /****************************************************************************
2083 Delete some files.
2084 ****************************************************************************/
2086 static void do_del(file_info *finfo, const char *dir)
2088 TALLOC_CTX *ctx = talloc_tos();
2089 char *mask = NULL;
2091 mask = talloc_asprintf(ctx,
2092 "%s%c%s",
2093 dir,
2094 CLI_DIRSEP_CHAR,
2095 finfo->name);
2096 if (!mask) {
2097 return;
2100 if (finfo->mode & aDIR) {
2101 TALLOC_FREE(mask);
2102 return;
2105 if (!cli_unlink(finfo->cli, mask)) {
2106 d_printf("%s deleting remote file %s\n",
2107 cli_errstr(finfo->cli),mask);
2109 TALLOC_FREE(mask);
2112 /****************************************************************************
2113 Delete some files.
2114 ****************************************************************************/
2116 static int cmd_del(void)
2118 TALLOC_CTX *ctx = talloc_tos();
2119 char *mask = NULL;
2120 char *buf = NULL;
2121 uint16 attribute = aSYSTEM | aHIDDEN;
2123 if (recurse) {
2124 attribute |= aDIR;
2127 mask = talloc_strdup(ctx, client_get_cur_dir());
2128 if (!mask) {
2129 return 1;
2131 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2132 d_printf("del <filename>\n");
2133 return 1;
2135 mask = talloc_asprintf_append(mask, buf);
2136 if (!mask) {
2137 return 1;
2140 do_list(mask,attribute,do_del,false,false);
2141 return 0;
2144 /****************************************************************************
2145 Wildcard delete some files.
2146 ****************************************************************************/
2148 static int cmd_wdel(void)
2150 TALLOC_CTX *ctx = talloc_tos();
2151 char *mask = NULL;
2152 char *buf = NULL;
2153 uint16 attribute;
2154 struct cli_state *targetcli;
2155 char *targetname = NULL;
2157 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2158 d_printf("wdel 0x<attrib> <wcard>\n");
2159 return 1;
2162 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2164 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2165 d_printf("wdel 0x<attrib> <wcard>\n");
2166 return 1;
2169 mask = talloc_asprintf(ctx, "%s%s",
2170 client_get_cur_dir(),
2171 buf);
2172 if (!mask) {
2173 return 1;
2176 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2177 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2178 return 1;
2181 if (!cli_unlink_full(targetcli, targetname, attribute)) {
2182 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2184 return 0;
2187 /****************************************************************************
2188 ****************************************************************************/
2190 static int cmd_open(void)
2192 TALLOC_CTX *ctx = talloc_tos();
2193 char *mask = NULL;
2194 char *buf = NULL;
2195 char *targetname = NULL;
2196 struct cli_state *targetcli;
2197 int fnum;
2199 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2200 d_printf("open <filename>\n");
2201 return 1;
2203 mask = talloc_asprintf(ctx,
2204 "%s%s",
2205 client_get_cur_dir(),
2206 buf);
2207 if (!mask) {
2208 return 1;
2211 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2212 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2213 return 1;
2216 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2217 if (fnum == -1) {
2218 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2219 if (fnum != -1) {
2220 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2221 } else {
2222 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2224 } else {
2225 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2227 return 0;
2230 static int cmd_posix_encrypt(void)
2232 TALLOC_CTX *ctx = talloc_tos();
2233 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2235 if (cli->use_kerberos) {
2236 status = cli_gss_smb_encryption_start(cli);
2237 } else {
2238 char *domain = NULL;
2239 char *user = NULL;
2240 char *password = NULL;
2242 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2243 d_printf("posix_encrypt domain user password\n");
2244 return 1;
2247 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2248 d_printf("posix_encrypt domain user password\n");
2249 return 1;
2252 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2253 d_printf("posix_encrypt domain user password\n");
2254 return 1;
2257 status = cli_raw_ntlm_smb_encryption_start(cli,
2258 user,
2259 password,
2260 domain);
2263 if (!NT_STATUS_IS_OK(status)) {
2264 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2265 } else {
2266 d_printf("encryption on\n");
2267 smb_encrypt = true;
2270 return 0;
2273 /****************************************************************************
2274 ****************************************************************************/
2276 static int cmd_posix_open(void)
2278 TALLOC_CTX *ctx = talloc_tos();
2279 char *mask = NULL;
2280 char *buf = NULL;
2281 char *targetname = NULL;
2282 struct cli_state *targetcli;
2283 mode_t mode;
2284 int fnum;
2286 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2287 d_printf("posix_open <filename> 0<mode>\n");
2288 return 1;
2290 mask = talloc_asprintf(ctx,
2291 "%s%s",
2292 client_get_cur_dir(),
2293 buf);
2294 if (!mask) {
2295 return 1;
2298 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2299 d_printf("posix_open <filename> 0<mode>\n");
2300 return 1;
2302 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2304 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2305 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2306 return 1;
2309 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2310 if (fnum == -1) {
2311 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2312 if (fnum != -1) {
2313 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2314 } else {
2315 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2317 } else {
2318 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2321 return 0;
2324 static int cmd_posix_mkdir(void)
2326 TALLOC_CTX *ctx = talloc_tos();
2327 char *mask = NULL;
2328 char *buf = NULL;
2329 char *targetname = NULL;
2330 struct cli_state *targetcli;
2331 mode_t mode;
2332 int fnum;
2334 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2335 d_printf("posix_mkdir <filename> 0<mode>\n");
2336 return 1;
2338 mask = talloc_asprintf(ctx,
2339 "%s%s",
2340 client_get_cur_dir(),
2341 buf);
2342 if (!mask) {
2343 return 1;
2346 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2347 d_printf("posix_mkdir <filename> 0<mode>\n");
2348 return 1;
2350 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2352 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2353 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2354 return 1;
2357 fnum = cli_posix_mkdir(targetcli, targetname, mode);
2358 if (fnum == -1) {
2359 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2360 } else {
2361 d_printf("posix_mkdir created directory %s\n", targetname);
2363 return 0;
2366 static int cmd_posix_unlink(void)
2368 TALLOC_CTX *ctx = talloc_tos();
2369 char *mask = NULL;
2370 char *buf = NULL;
2371 char *targetname = NULL;
2372 struct cli_state *targetcli;
2374 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2375 d_printf("posix_unlink <filename>\n");
2376 return 1;
2378 mask = talloc_asprintf(ctx,
2379 "%s%s",
2380 client_get_cur_dir(),
2381 buf);
2382 if (!mask) {
2383 return 1;
2386 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2387 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2388 return 1;
2391 if (!cli_posix_unlink(targetcli, targetname)) {
2392 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2393 } else {
2394 d_printf("posix_unlink deleted file %s\n", targetname);
2397 return 0;
2400 static int cmd_posix_rmdir(void)
2402 TALLOC_CTX *ctx = talloc_tos();
2403 char *mask = NULL;
2404 char *buf = NULL;
2405 char *targetname = NULL;
2406 struct cli_state *targetcli;
2408 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2409 d_printf("posix_rmdir <filename>\n");
2410 return 1;
2412 mask = talloc_asprintf(ctx,
2413 "%s%s",
2414 client_get_cur_dir(),
2415 buf);
2416 if (!mask) {
2417 return 1;
2420 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2421 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2422 return 1;
2425 if (!cli_posix_rmdir(targetcli, targetname)) {
2426 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2427 } else {
2428 d_printf("posix_rmdir deleted directory %s\n", targetname);
2431 return 0;
2434 static int cmd_close(void)
2436 TALLOC_CTX *ctx = talloc_tos();
2437 char *buf = NULL;
2438 int fnum;
2440 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2441 d_printf("close <fnum>\n");
2442 return 1;
2445 fnum = atoi(buf);
2446 /* We really should use the targetcli here.... */
2447 if (!cli_close(cli, fnum)) {
2448 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2449 return 1;
2451 return 0;
2454 static int cmd_posix(void)
2456 TALLOC_CTX *ctx = talloc_tos();
2457 uint16 major, minor;
2458 uint32 caplow, caphigh;
2459 char *caps;
2461 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2462 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2463 return 1;
2466 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2467 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2468 return 1;
2471 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2473 caps = talloc_strdup(ctx, "");
2474 if (!caps) {
2475 return 1;
2477 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2478 caps = talloc_asprintf_append(caps, "locks ");
2479 if (!caps) {
2480 return 1;
2483 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2484 caps = talloc_asprintf_append(caps, "acls ");
2485 if (!caps) {
2486 return 1;
2489 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2490 caps = talloc_asprintf_append(caps, "eas ");
2491 if (!caps) {
2492 return 1;
2495 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2496 caps = talloc_asprintf_append(caps, "pathnames ");
2497 if (!caps) {
2498 return 1;
2501 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2502 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2503 if (!caps) {
2504 return 1;
2507 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2508 caps = talloc_asprintf_append(caps, "large_read ");
2509 if (!caps) {
2510 return 1;
2513 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2514 caps = talloc_asprintf_append(caps, "large_write ");
2515 if (!caps) {
2516 return 1;
2519 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2520 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2521 if (!caps) {
2522 return 1;
2525 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2526 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2527 if (!caps) {
2528 return 1;
2532 if (*caps && caps[strlen(caps)-1] == ' ') {
2533 caps[strlen(caps)-1] = '\0';
2536 d_printf("Server supports CIFS capabilities %s\n", caps);
2538 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2539 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2540 return 1;
2543 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2544 CLI_DIRSEP_CHAR = '/';
2545 *CLI_DIRSEP_STR = '/';
2546 client_set_cur_dir(CLI_DIRSEP_STR);
2549 return 0;
2552 static int cmd_lock(void)
2554 TALLOC_CTX *ctx = talloc_tos();
2555 char *buf = NULL;
2556 SMB_BIG_UINT start, len;
2557 enum brl_type lock_type;
2558 int fnum;
2560 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2561 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2562 return 1;
2564 fnum = atoi(buf);
2566 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2567 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2568 return 1;
2571 if (*buf == 'r' || *buf == 'R') {
2572 lock_type = READ_LOCK;
2573 } else if (*buf == 'w' || *buf == 'W') {
2574 lock_type = WRITE_LOCK;
2575 } else {
2576 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2577 return 1;
2580 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2581 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2582 return 1;
2585 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2587 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2588 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2589 return 1;
2592 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2594 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2595 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2598 return 0;
2601 static int cmd_unlock(void)
2603 TALLOC_CTX *ctx = talloc_tos();
2604 char *buf = NULL;
2605 SMB_BIG_UINT start, len;
2606 int fnum;
2608 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2609 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2610 return 1;
2612 fnum = atoi(buf);
2614 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2615 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2616 return 1;
2619 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2621 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2622 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2623 return 1;
2626 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2628 if (!cli_posix_unlock(cli, fnum, start, len)) {
2629 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2632 return 0;
2636 /****************************************************************************
2637 Remove a directory.
2638 ****************************************************************************/
2640 static int cmd_rmdir(void)
2642 TALLOC_CTX *ctx = talloc_tos();
2643 char *mask = NULL;
2644 char *buf = NULL;
2645 char *targetname = NULL;
2646 struct cli_state *targetcli;
2648 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2649 d_printf("rmdir <dirname>\n");
2650 return 1;
2652 mask = talloc_asprintf(ctx,
2653 "%s%s",
2654 client_get_cur_dir(),
2655 buf);
2656 if (!mask) {
2657 return 1;
2660 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2661 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2662 return 1;
2665 if (!cli_rmdir(targetcli, targetname)) {
2666 d_printf("%s removing remote directory file %s\n",
2667 cli_errstr(targetcli),mask);
2670 return 0;
2673 /****************************************************************************
2674 UNIX hardlink.
2675 ****************************************************************************/
2677 static int cmd_link(void)
2679 TALLOC_CTX *ctx = talloc_tos();
2680 char *oldname = NULL;
2681 char *newname = NULL;
2682 char *buf = NULL;
2683 char *buf2 = NULL;
2684 char *targetname = NULL;
2685 struct cli_state *targetcli;
2687 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2688 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2689 d_printf("link <oldname> <newname>\n");
2690 return 1;
2692 oldname = talloc_asprintf(ctx,
2693 "%s%s",
2694 client_get_cur_dir(),
2695 buf);
2696 if (!oldname) {
2697 return 1;
2699 newname = talloc_asprintf(ctx,
2700 "%s%s",
2701 client_get_cur_dir(),
2702 buf2);
2703 if (!newname) {
2704 return 1;
2707 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2708 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2709 return 1;
2712 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2713 d_printf("Server doesn't support UNIX CIFS calls.\n");
2714 return 1;
2717 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2718 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2719 return 1;
2721 return 0;
2724 /****************************************************************************
2725 UNIX symlink.
2726 ****************************************************************************/
2728 static int cmd_symlink(void)
2730 TALLOC_CTX *ctx = talloc_tos();
2731 char *oldname = NULL;
2732 char *newname = NULL;
2733 char *buf = NULL;
2734 char *buf2 = NULL;
2735 char *targetname = NULL;
2736 struct cli_state *targetcli;
2738 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2739 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2740 d_printf("symlink <oldname> <newname>\n");
2741 return 1;
2743 oldname = talloc_asprintf(ctx,
2744 "%s%s",
2745 client_get_cur_dir(),
2746 buf);
2747 if (!oldname) {
2748 return 1;
2750 newname = talloc_asprintf(ctx,
2751 "%s%s",
2752 client_get_cur_dir(),
2753 buf2);
2754 if (!newname) {
2755 return 1;
2758 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2759 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2760 return 1;
2763 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2764 d_printf("Server doesn't support UNIX CIFS calls.\n");
2765 return 1;
2768 if (!cli_unix_symlink(targetcli, targetname, newname)) {
2769 d_printf("%s symlinking files (%s -> %s)\n",
2770 cli_errstr(targetcli), newname, targetname);
2771 return 1;
2774 return 0;
2777 /****************************************************************************
2778 UNIX chmod.
2779 ****************************************************************************/
2781 static int cmd_chmod(void)
2783 TALLOC_CTX *ctx = talloc_tos();
2784 char *src = NULL;
2785 char *buf = NULL;
2786 char *buf2 = NULL;
2787 char *targetname = NULL;
2788 struct cli_state *targetcli;
2789 mode_t mode;
2791 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2792 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2793 d_printf("chmod mode file\n");
2794 return 1;
2796 src = talloc_asprintf(ctx,
2797 "%s%s",
2798 client_get_cur_dir(),
2799 buf2);
2800 if (!src) {
2801 return 1;
2804 mode = (mode_t)strtol(buf, NULL, 8);
2806 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2807 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2808 return 1;
2811 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2812 d_printf("Server doesn't support UNIX CIFS calls.\n");
2813 return 1;
2816 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2817 d_printf("%s chmod file %s 0%o\n",
2818 cli_errstr(targetcli), src, (unsigned int)mode);
2819 return 1;
2822 return 0;
2825 static const char *filetype_to_str(mode_t mode)
2827 if (S_ISREG(mode)) {
2828 return "regular file";
2829 } else if (S_ISDIR(mode)) {
2830 return "directory";
2831 } else
2832 #ifdef S_ISCHR
2833 if (S_ISCHR(mode)) {
2834 return "character device";
2835 } else
2836 #endif
2837 #ifdef S_ISBLK
2838 if (S_ISBLK(mode)) {
2839 return "block device";
2840 } else
2841 #endif
2842 #ifdef S_ISFIFO
2843 if (S_ISFIFO(mode)) {
2844 return "fifo";
2845 } else
2846 #endif
2847 #ifdef S_ISLNK
2848 if (S_ISLNK(mode)) {
2849 return "symbolic link";
2850 } else
2851 #endif
2852 #ifdef S_ISSOCK
2853 if (S_ISSOCK(mode)) {
2854 return "socket";
2855 } else
2856 #endif
2857 return "";
2860 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2862 if (m & bt) {
2863 return ret;
2864 } else {
2865 return '-';
2869 static char *unix_mode_to_str(char *s, mode_t m)
2871 char *p = s;
2872 const char *str = filetype_to_str(m);
2874 switch(str[0]) {
2875 case 'd':
2876 *p++ = 'd';
2877 break;
2878 case 'c':
2879 *p++ = 'c';
2880 break;
2881 case 'b':
2882 *p++ = 'b';
2883 break;
2884 case 'f':
2885 *p++ = 'p';
2886 break;
2887 case 's':
2888 *p++ = str[1] == 'y' ? 'l' : 's';
2889 break;
2890 case 'r':
2891 default:
2892 *p++ = '-';
2893 break;
2895 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2896 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2897 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2898 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2899 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2900 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2901 *p++ = rwx_to_str(m, S_IROTH, 'r');
2902 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2903 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2904 *p++ = '\0';
2905 return s;
2908 /****************************************************************************
2909 Utility function for UNIX getfacl.
2910 ****************************************************************************/
2912 static char *perms_to_string(fstring permstr, unsigned char perms)
2914 fstrcpy(permstr, "---");
2915 if (perms & SMB_POSIX_ACL_READ) {
2916 permstr[0] = 'r';
2918 if (perms & SMB_POSIX_ACL_WRITE) {
2919 permstr[1] = 'w';
2921 if (perms & SMB_POSIX_ACL_EXECUTE) {
2922 permstr[2] = 'x';
2924 return permstr;
2927 /****************************************************************************
2928 UNIX getfacl.
2929 ****************************************************************************/
2931 static int cmd_getfacl(void)
2933 TALLOC_CTX *ctx = talloc_tos();
2934 char *src = NULL;
2935 char *name = NULL;
2936 char *targetname = NULL;
2937 struct cli_state *targetcli;
2938 uint16 major, minor;
2939 uint32 caplow, caphigh;
2940 char *retbuf = NULL;
2941 size_t rb_size = 0;
2942 SMB_STRUCT_STAT sbuf;
2943 uint16 num_file_acls = 0;
2944 uint16 num_dir_acls = 0;
2945 uint16 i;
2947 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2948 d_printf("getfacl filename\n");
2949 return 1;
2951 src = talloc_asprintf(ctx,
2952 "%s%s",
2953 client_get_cur_dir(),
2954 name);
2955 if (!src) {
2956 return 1;
2959 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2960 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2961 return 1;
2964 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2965 d_printf("Server doesn't support UNIX CIFS calls.\n");
2966 return 1;
2969 if (!cli_unix_extensions_version(targetcli, &major, &minor,
2970 &caplow, &caphigh)) {
2971 d_printf("Can't get UNIX CIFS version from server.\n");
2972 return 1;
2975 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
2976 d_printf("This server supports UNIX extensions "
2977 "but doesn't support POSIX ACLs.\n");
2978 return 1;
2981 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2982 d_printf("%s getfacl doing a stat on file %s\n",
2983 cli_errstr(targetcli), src);
2984 return 1;
2987 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
2988 d_printf("%s getfacl file %s\n",
2989 cli_errstr(targetcli), src);
2990 return 1;
2993 /* ToDo : Print out the ACL values. */
2994 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
2995 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
2996 src, (unsigned int)CVAL(retbuf,0) );
2997 SAFE_FREE(retbuf);
2998 return 1;
3001 num_file_acls = SVAL(retbuf,2);
3002 num_dir_acls = SVAL(retbuf,4);
3003 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3004 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3005 src,
3006 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3007 (unsigned int)rb_size);
3009 SAFE_FREE(retbuf);
3010 return 1;
3013 d_printf("# file: %s\n", src);
3014 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3016 if (num_file_acls == 0 && num_dir_acls == 0) {
3017 d_printf("No acls found.\n");
3020 for (i = 0; i < num_file_acls; i++) {
3021 uint32 uorg;
3022 fstring permstring;
3023 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3024 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3026 switch(tagtype) {
3027 case SMB_POSIX_ACL_USER_OBJ:
3028 d_printf("user::");
3029 break;
3030 case SMB_POSIX_ACL_USER:
3031 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3032 d_printf("user:%u:", uorg);
3033 break;
3034 case SMB_POSIX_ACL_GROUP_OBJ:
3035 d_printf("group::");
3036 break;
3037 case SMB_POSIX_ACL_GROUP:
3038 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3039 d_printf("group:%u:", uorg);
3040 break;
3041 case SMB_POSIX_ACL_MASK:
3042 d_printf("mask::");
3043 break;
3044 case SMB_POSIX_ACL_OTHER:
3045 d_printf("other::");
3046 break;
3047 default:
3048 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3049 src, (unsigned int)tagtype );
3050 SAFE_FREE(retbuf);
3051 return 1;
3054 d_printf("%s\n", perms_to_string(permstring, perms));
3057 for (i = 0; i < num_dir_acls; i++) {
3058 uint32 uorg;
3059 fstring permstring;
3060 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3061 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3063 switch(tagtype) {
3064 case SMB_POSIX_ACL_USER_OBJ:
3065 d_printf("default:user::");
3066 break;
3067 case SMB_POSIX_ACL_USER:
3068 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3069 d_printf("default:user:%u:", uorg);
3070 break;
3071 case SMB_POSIX_ACL_GROUP_OBJ:
3072 d_printf("default:group::");
3073 break;
3074 case SMB_POSIX_ACL_GROUP:
3075 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3076 d_printf("default:group:%u:", uorg);
3077 break;
3078 case SMB_POSIX_ACL_MASK:
3079 d_printf("default:mask::");
3080 break;
3081 case SMB_POSIX_ACL_OTHER:
3082 d_printf("default:other::");
3083 break;
3084 default:
3085 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3086 src, (unsigned int)tagtype );
3087 SAFE_FREE(retbuf);
3088 return 1;
3091 d_printf("%s\n", perms_to_string(permstring, perms));
3094 SAFE_FREE(retbuf);
3095 return 0;
3098 /****************************************************************************
3099 UNIX stat.
3100 ****************************************************************************/
3102 static int cmd_stat(void)
3104 TALLOC_CTX *ctx = talloc_tos();
3105 char *src = NULL;
3106 char *name = NULL;
3107 char *targetname = NULL;
3108 struct cli_state *targetcli;
3109 fstring mode_str;
3110 SMB_STRUCT_STAT sbuf;
3111 struct tm *lt;
3113 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3114 d_printf("stat file\n");
3115 return 1;
3117 src = talloc_asprintf(ctx,
3118 "%s%s",
3119 client_get_cur_dir(),
3120 name);
3121 if (!src) {
3122 return 1;
3125 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3126 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3127 return 1;
3130 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3131 d_printf("Server doesn't support UNIX CIFS calls.\n");
3132 return 1;
3135 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3136 d_printf("%s stat file %s\n",
3137 cli_errstr(targetcli), src);
3138 return 1;
3141 /* Print out the stat values. */
3142 d_printf("File: %s\n", src);
3143 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3144 (double)sbuf.st_size,
3145 (unsigned int)sbuf.st_blocks,
3146 filetype_to_str(sbuf.st_mode));
3148 #if defined(S_ISCHR) && defined(S_ISBLK)
3149 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3150 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3151 (double)sbuf.st_ino,
3152 (unsigned int)sbuf.st_nlink,
3153 unix_dev_major(sbuf.st_rdev),
3154 unix_dev_minor(sbuf.st_rdev));
3155 } else
3156 #endif
3157 d_printf("Inode: %.0f\tLinks: %u\n",
3158 (double)sbuf.st_ino,
3159 (unsigned int)sbuf.st_nlink);
3161 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3162 ((int)sbuf.st_mode & 0777),
3163 unix_mode_to_str(mode_str, sbuf.st_mode),
3164 (unsigned int)sbuf.st_uid,
3165 (unsigned int)sbuf.st_gid);
3167 lt = localtime(&sbuf.st_atime);
3168 if (lt) {
3169 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3170 } else {
3171 fstrcpy(mode_str, "unknown");
3173 d_printf("Access: %s\n", mode_str);
3175 lt = localtime(&sbuf.st_mtime);
3176 if (lt) {
3177 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3178 } else {
3179 fstrcpy(mode_str, "unknown");
3181 d_printf("Modify: %s\n", mode_str);
3183 lt = localtime(&sbuf.st_ctime);
3184 if (lt) {
3185 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3186 } else {
3187 fstrcpy(mode_str, "unknown");
3189 d_printf("Change: %s\n", mode_str);
3191 return 0;
3195 /****************************************************************************
3196 UNIX chown.
3197 ****************************************************************************/
3199 static int cmd_chown(void)
3201 TALLOC_CTX *ctx = talloc_tos();
3202 char *src = NULL;
3203 uid_t uid;
3204 gid_t gid;
3205 char *buf, *buf2, *buf3;
3206 struct cli_state *targetcli;
3207 char *targetname = NULL;
3209 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3210 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3211 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3212 d_printf("chown uid gid file\n");
3213 return 1;
3216 uid = (uid_t)atoi(buf);
3217 gid = (gid_t)atoi(buf2);
3219 src = talloc_asprintf(ctx,
3220 "%s%s",
3221 client_get_cur_dir(),
3222 buf3);
3223 if (!src) {
3224 return 1;
3226 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3227 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3228 return 1;
3231 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3232 d_printf("Server doesn't support UNIX CIFS calls.\n");
3233 return 1;
3236 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3237 d_printf("%s chown file %s uid=%d, gid=%d\n",
3238 cli_errstr(targetcli), src, (int)uid, (int)gid);
3239 return 1;
3242 return 0;
3245 /****************************************************************************
3246 Rename some file.
3247 ****************************************************************************/
3249 static int cmd_rename(void)
3251 TALLOC_CTX *ctx = talloc_tos();
3252 char *src, *dest;
3253 char *buf, *buf2;
3254 struct cli_state *targetcli;
3255 char *targetsrc;
3256 char *targetdest;
3258 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3259 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3260 d_printf("rename <src> <dest>\n");
3261 return 1;
3264 src = talloc_asprintf(ctx,
3265 "%s%s",
3266 client_get_cur_dir(),
3267 buf);
3268 if (!src) {
3269 return 1;
3272 dest = talloc_asprintf(ctx,
3273 "%s%s",
3274 client_get_cur_dir(),
3275 buf2);
3276 if (!dest) {
3277 return 1;
3280 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3281 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3282 return 1;
3285 if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3286 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3287 return 1;
3290 if (!cli_rename(targetcli, targetsrc, targetdest)) {
3291 d_printf("%s renaming files %s -> %s \n",
3292 cli_errstr(targetcli),
3293 targetsrc,
3294 targetdest);
3295 return 1;
3298 return 0;
3301 /****************************************************************************
3302 Print the volume name.
3303 ****************************************************************************/
3305 static int cmd_volume(void)
3307 fstring volname;
3308 uint32 serial_num;
3309 time_t create_date;
3311 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3312 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3313 return 1;
3316 d_printf("Volume: |%s| serial number 0x%x\n",
3317 volname, (unsigned int)serial_num);
3318 return 0;
3321 /****************************************************************************
3322 Hard link files using the NT call.
3323 ****************************************************************************/
3325 static int cmd_hardlink(void)
3327 TALLOC_CTX *ctx = talloc_tos();
3328 char *src, *dest;
3329 char *buf, *buf2;
3330 struct cli_state *targetcli;
3331 char *targetname;
3333 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3334 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3335 d_printf("hardlink <src> <dest>\n");
3336 return 1;
3339 src = talloc_asprintf(ctx,
3340 "%s%s",
3341 client_get_cur_dir(),
3342 buf);
3343 if (!src) {
3344 return 1;
3347 dest = talloc_asprintf(ctx,
3348 "%s%s",
3349 client_get_cur_dir(),
3350 buf2);
3351 if (!dest) {
3352 return 1;
3355 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3356 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3357 return 1;
3360 if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3361 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3362 return 1;
3365 return 0;
3368 /****************************************************************************
3369 Toggle the prompt flag.
3370 ****************************************************************************/
3372 static int cmd_prompt(void)
3374 prompt = !prompt;
3375 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3376 return 1;
3379 /****************************************************************************
3380 Set the newer than time.
3381 ****************************************************************************/
3383 static int cmd_newer(void)
3385 TALLOC_CTX *ctx = talloc_tos();
3386 char *buf;
3387 bool ok;
3388 SMB_STRUCT_STAT sbuf;
3390 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3391 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3392 newer_than = sbuf.st_mtime;
3393 DEBUG(1,("Getting files newer than %s",
3394 time_to_asc(newer_than)));
3395 } else {
3396 newer_than = 0;
3399 if (ok && newer_than == 0) {
3400 d_printf("Error setting newer-than time\n");
3401 return 1;
3404 return 0;
3407 /****************************************************************************
3408 Set the archive level.
3409 ****************************************************************************/
3411 static int cmd_archive(void)
3413 TALLOC_CTX *ctx = talloc_tos();
3414 char *buf;
3416 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3417 archive_level = atoi(buf);
3418 } else {
3419 d_printf("Archive level is %d\n",archive_level);
3422 return 0;
3425 /****************************************************************************
3426 Toggle the lowercaseflag.
3427 ****************************************************************************/
3429 static int cmd_lowercase(void)
3431 lowercase = !lowercase;
3432 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3433 return 0;
3436 /****************************************************************************
3437 Toggle the case sensitive flag.
3438 ****************************************************************************/
3440 static int cmd_setcase(void)
3442 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3444 cli_set_case_sensitive(cli, !orig_case_sensitive);
3445 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3446 "on":"off"));
3447 return 0;
3450 /****************************************************************************
3451 Toggle the showacls flag.
3452 ****************************************************************************/
3454 static int cmd_showacls(void)
3456 showacls = !showacls;
3457 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3458 return 0;
3462 /****************************************************************************
3463 Toggle the recurse flag.
3464 ****************************************************************************/
3466 static int cmd_recurse(void)
3468 recurse = !recurse;
3469 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3470 return 0;
3473 /****************************************************************************
3474 Toggle the translate flag.
3475 ****************************************************************************/
3477 static int cmd_translate(void)
3479 translation = !translation;
3480 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3481 translation?"on":"off"));
3482 return 0;
3485 /****************************************************************************
3486 Do the lcd command.
3487 ****************************************************************************/
3489 static int cmd_lcd(void)
3491 TALLOC_CTX *ctx = talloc_tos();
3492 char *buf;
3493 char *d;
3495 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3496 chdir(buf);
3498 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3499 if (!d) {
3500 return 1;
3502 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3503 return 0;
3506 /****************************************************************************
3507 Get a file restarting at end of local file.
3508 ****************************************************************************/
3510 static int cmd_reget(void)
3512 TALLOC_CTX *ctx = talloc_tos();
3513 char *local_name = NULL;
3514 char *remote_name = NULL;
3515 char *fname = NULL;
3516 char *p = NULL;
3518 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3519 if (!remote_name) {
3520 return 1;
3523 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3524 d_printf("reget <filename>\n");
3525 return 1;
3527 remote_name = talloc_asprintf_append(remote_name, fname);
3528 if (!remote_name) {
3529 return 1;
3531 remote_name = clean_name(ctx,remote_name);
3532 if (!remote_name) {
3533 return 1;
3536 local_name = fname;
3537 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3538 if (p) {
3539 local_name = p;
3542 return do_get(remote_name, local_name, true);
3545 /****************************************************************************
3546 Put a file restarting at end of local file.
3547 ****************************************************************************/
3549 static int cmd_reput(void)
3551 TALLOC_CTX *ctx = talloc_tos();
3552 char *local_name = NULL;
3553 char *remote_name = NULL;
3554 char *buf;
3555 SMB_STRUCT_STAT st;
3557 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3558 if (!remote_name) {
3559 return 1;
3562 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3563 d_printf("reput <filename>\n");
3564 return 1;
3567 if (!file_exist(local_name, &st)) {
3568 d_printf("%s does not exist\n", local_name);
3569 return 1;
3572 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3573 remote_name = talloc_asprintf_append(remote_name,
3574 buf);
3575 } else {
3576 remote_name = talloc_asprintf_append(remote_name,
3577 local_name);
3579 if (!remote_name) {
3580 return 1;
3583 remote_name = clean_name(ctx, remote_name);
3584 if (!remote_name) {
3585 return 1;
3588 return do_put(remote_name, local_name, true);
3591 /****************************************************************************
3592 List a share name.
3593 ****************************************************************************/
3595 static void browse_fn(const char *name, uint32 m,
3596 const char *comment, void *state)
3598 const char *typestr = "";
3600 switch (m & 7) {
3601 case STYPE_DISKTREE:
3602 typestr = "Disk";
3603 break;
3604 case STYPE_PRINTQ:
3605 typestr = "Printer";
3606 break;
3607 case STYPE_DEVICE:
3608 typestr = "Device";
3609 break;
3610 case STYPE_IPC:
3611 typestr = "IPC";
3612 break;
3614 /* FIXME: If the remote machine returns non-ascii characters
3615 in any of these fields, they can corrupt the output. We
3616 should remove them. */
3617 if (!grepable) {
3618 d_printf("\t%-15s %-10.10s%s\n",
3619 name,typestr,comment);
3620 } else {
3621 d_printf ("%s|%s|%s\n",typestr,name,comment);
3625 static bool browse_host_rpc(bool sort)
3627 NTSTATUS status;
3628 struct rpc_pipe_client *pipe_hnd;
3629 TALLOC_CTX *frame = talloc_stackframe();
3630 WERROR werr;
3631 struct srvsvc_NetShareInfoCtr info_ctr;
3632 struct srvsvc_NetShareCtr1 ctr1;
3633 uint32_t resume_handle = 0;
3634 uint32_t total_entries = 0;
3635 int i;
3637 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3638 &pipe_hnd);
3640 if (!NT_STATUS_IS_OK(status)) {
3641 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3642 nt_errstr(status)));
3643 TALLOC_FREE(frame);
3644 return false;
3647 ZERO_STRUCT(info_ctr);
3648 ZERO_STRUCT(ctr1);
3650 info_ctr.level = 1;
3651 info_ctr.ctr.ctr1 = &ctr1;
3653 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3654 pipe_hnd->desthost,
3655 &info_ctr,
3656 0xffffffff,
3657 &total_entries,
3658 &resume_handle,
3659 &werr);
3661 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3662 TALLOC_FREE(pipe_hnd);
3663 TALLOC_FREE(frame);
3664 return false;
3667 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3668 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3669 browse_fn(info.name, info.type, info.comment, NULL);
3672 TALLOC_FREE(pipe_hnd);
3673 TALLOC_FREE(frame);
3674 return true;
3677 /****************************************************************************
3678 Try and browse available connections on a host.
3679 ****************************************************************************/
3681 static bool browse_host(bool sort)
3683 int ret;
3684 if (!grepable) {
3685 d_printf("\n\tSharename Type Comment\n");
3686 d_printf("\t--------- ---- -------\n");
3689 if (browse_host_rpc(sort)) {
3690 return true;
3693 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3694 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3696 return (ret != -1);
3699 /****************************************************************************
3700 List a server name.
3701 ****************************************************************************/
3703 static void server_fn(const char *name, uint32 m,
3704 const char *comment, void *state)
3707 if (!grepable){
3708 d_printf("\t%-16s %s\n", name, comment);
3709 } else {
3710 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3714 /****************************************************************************
3715 Try and browse available connections on a host.
3716 ****************************************************************************/
3718 static bool list_servers(const char *wk_grp)
3720 fstring state;
3722 if (!cli->server_domain)
3723 return false;
3725 if (!grepable) {
3726 d_printf("\n\tServer Comment\n");
3727 d_printf("\t--------- -------\n");
3729 fstrcpy( state, "Server" );
3730 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3731 state);
3733 if (!grepable) {
3734 d_printf("\n\tWorkgroup Master\n");
3735 d_printf("\t--------- -------\n");
3738 fstrcpy( state, "Workgroup" );
3739 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3740 server_fn, state);
3741 return true;
3744 /****************************************************************************
3745 Print or set current VUID
3746 ****************************************************************************/
3748 static int cmd_vuid(void)
3750 TALLOC_CTX *ctx = talloc_tos();
3751 char *buf;
3753 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3754 d_printf("Current VUID is %d\n", cli->vuid);
3755 return 0;
3758 cli->vuid = atoi(buf);
3759 return 0;
3762 /****************************************************************************
3763 Setup a new VUID, by issuing a session setup
3764 ****************************************************************************/
3766 static int cmd_logon(void)
3768 TALLOC_CTX *ctx = talloc_tos();
3769 char *l_username, *l_password;
3771 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3772 d_printf("logon <username> [<password>]\n");
3773 return 0;
3776 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3777 char *pass = getpass("Password: ");
3778 if (pass) {
3779 l_password = talloc_strdup(ctx,pass);
3782 if (!l_password) {
3783 return 1;
3786 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3787 l_password, strlen(l_password),
3788 l_password, strlen(l_password),
3789 lp_workgroup()))) {
3790 d_printf("session setup failed: %s\n", cli_errstr(cli));
3791 return -1;
3794 d_printf("Current VUID is %d\n", cli->vuid);
3795 return 0;
3799 /****************************************************************************
3800 list active connections
3801 ****************************************************************************/
3803 static int cmd_list_connect(void)
3805 cli_cm_display();
3806 return 0;
3809 /****************************************************************************
3810 display the current active client connection
3811 ****************************************************************************/
3813 static int cmd_show_connect( void )
3815 TALLOC_CTX *ctx = talloc_tos();
3816 struct cli_state *targetcli;
3817 char *targetpath;
3819 if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3820 &targetcli, &targetpath ) ) {
3821 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3822 return 1;
3825 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3826 return 0;
3829 /****************************************************************************
3830 iosize command
3831 ***************************************************************************/
3833 int cmd_iosize(void)
3835 TALLOC_CTX *ctx = talloc_tos();
3836 char *buf;
3837 int iosize;
3839 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3840 if (!smb_encrypt) {
3841 d_printf("iosize <n> or iosize 0x<n>. "
3842 "Minimum is 16384 (0x4000), "
3843 "max is 16776960 (0xFFFF00)\n");
3844 } else {
3845 d_printf("iosize <n> or iosize 0x<n>. "
3846 "(Encrypted connection) ,"
3847 "Minimum is 16384 (0x4000), "
3848 "max is 130048 (0x1FC00)\n");
3850 return 1;
3853 iosize = strtol(buf,NULL,0);
3854 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3855 d_printf("iosize out of range for encrypted "
3856 "connection (min = 16384 (0x4000), "
3857 "max = 130048 (0x1FC00)");
3858 return 1;
3859 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3860 d_printf("iosize out of range (min = 16384 (0x4000), "
3861 "max = 16776960 (0xFFFF00)");
3862 return 1;
3865 io_bufsize = iosize;
3866 d_printf("iosize is now %d\n", io_bufsize);
3867 return 0;
3871 /* Some constants for completing filename arguments */
3873 #define COMPL_NONE 0 /* No completions */
3874 #define COMPL_REMOTE 1 /* Complete remote filename */
3875 #define COMPL_LOCAL 2 /* Complete local filename */
3877 /* This defines the commands supported by this client.
3878 * NOTE: The "!" must be the last one in the list because it's fn pointer
3879 * field is NULL, and NULL in that field is used in process_tok()
3880 * (below) to indicate the end of the list. crh
3882 static struct {
3883 const char *name;
3884 int (*fn)(void);
3885 const char *description;
3886 char compl_args[2]; /* Completion argument info */
3887 } commands[] = {
3888 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3889 {"allinfo",cmd_allinfo,"<file> show all available info",
3890 {COMPL_NONE,COMPL_NONE}},
3891 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3892 {"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}},
3893 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3894 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3895 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3896 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3897 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3898 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3899 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3900 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3901 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3902 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3903 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3904 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3905 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3906 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3907 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3908 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3909 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3910 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3911 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3912 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3913 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3914 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3915 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3916 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3917 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3918 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3919 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3920 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3921 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3922 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3923 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3924 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3925 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3926 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3927 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3928 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3929 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3930 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3931 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3932 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3933 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3934 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3935 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3936 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3937 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3938 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3939 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3940 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3941 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3942 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3943 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3944 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3945 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3946 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3947 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3948 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3949 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3950 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3951 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3952 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3953 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3954 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3955 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3956 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3957 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3958 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3959 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
3961 /* Yes, this must be here, see crh's comment above. */
3962 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
3963 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
3966 /*******************************************************************
3967 Lookup a command string in the list of commands, including
3968 abbreviations.
3969 ******************************************************************/
3971 static int process_tok(char *tok)
3973 int i = 0, matches = 0;
3974 int cmd=0;
3975 int tok_len = strlen(tok);
3977 while (commands[i].fn != NULL) {
3978 if (strequal(commands[i].name,tok)) {
3979 matches = 1;
3980 cmd = i;
3981 break;
3982 } else if (strnequal(commands[i].name, tok, tok_len)) {
3983 matches++;
3984 cmd = i;
3986 i++;
3989 if (matches == 0)
3990 return(-1);
3991 else if (matches == 1)
3992 return(cmd);
3993 else
3994 return(-2);
3997 /****************************************************************************
3998 Help.
3999 ****************************************************************************/
4001 static int cmd_help(void)
4003 TALLOC_CTX *ctx = talloc_tos();
4004 int i=0,j;
4005 char *buf;
4007 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4008 if ((i = process_tok(buf)) >= 0)
4009 d_printf("HELP %s:\n\t%s\n\n",
4010 commands[i].name,commands[i].description);
4011 } else {
4012 while (commands[i].description) {
4013 for (j=0; commands[i].description && (j<5); j++) {
4014 d_printf("%-15s",commands[i].name);
4015 i++;
4017 d_printf("\n");
4020 return 0;
4023 /****************************************************************************
4024 Process a -c command string.
4025 ****************************************************************************/
4027 static int process_command_string(const char *cmd_in)
4029 TALLOC_CTX *ctx = talloc_tos();
4030 char *cmd = talloc_strdup(ctx, cmd_in);
4031 int rc = 0;
4033 if (!cmd) {
4034 return 1;
4036 /* establish the connection if not already */
4038 if (!cli) {
4039 cli = cli_cm_open(talloc_tos(), NULL, desthost,
4040 service, true, smb_encrypt);
4041 if (!cli) {
4042 return 1;
4046 while (cmd[0] != '\0') {
4047 char *line;
4048 char *p;
4049 char *tok;
4050 int i;
4052 if ((p = strchr_m(cmd, ';')) == 0) {
4053 line = cmd;
4054 cmd += strlen(cmd);
4055 } else {
4056 *p = '\0';
4057 line = cmd;
4058 cmd = p + 1;
4061 /* and get the first part of the command */
4062 cmd_ptr = line;
4063 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4064 continue;
4067 if ((i = process_tok(tok)) >= 0) {
4068 rc = commands[i].fn();
4069 } else if (i == -2) {
4070 d_printf("%s: command abbreviation ambiguous\n",tok);
4071 } else {
4072 d_printf("%s: command not found\n",tok);
4076 return rc;
4079 #define MAX_COMPLETIONS 100
4081 typedef struct {
4082 char *dirmask;
4083 char **matches;
4084 int count, samelen;
4085 const char *text;
4086 int len;
4087 } completion_remote_t;
4089 static void completion_remote_filter(const char *mnt,
4090 file_info *f,
4091 const char *mask,
4092 void *state)
4094 completion_remote_t *info = (completion_remote_t *)state;
4096 if ((info->count < MAX_COMPLETIONS - 1) &&
4097 (strncmp(info->text, f->name, info->len) == 0) &&
4098 (strcmp(f->name, ".") != 0) &&
4099 (strcmp(f->name, "..") != 0)) {
4100 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4101 info->matches[info->count] = SMB_STRDUP(f->name);
4102 else {
4103 TALLOC_CTX *ctx = talloc_stackframe();
4104 char *tmp;
4106 tmp = talloc_strdup(ctx,info->dirmask);
4107 if (!tmp) {
4108 TALLOC_FREE(ctx);
4109 return;
4111 tmp = talloc_asprintf_append(tmp, f->name);
4112 if (!tmp) {
4113 TALLOC_FREE(ctx);
4114 return;
4116 if (f->mode & aDIR) {
4117 tmp = talloc_asprintf_append(tmp, CLI_DIRSEP_STR);
4119 if (!tmp) {
4120 TALLOC_FREE(ctx);
4121 return;
4123 info->matches[info->count] = SMB_STRDUP(tmp);
4124 TALLOC_FREE(ctx);
4126 if (info->matches[info->count] == NULL) {
4127 return;
4129 if (f->mode & aDIR) {
4130 smb_readline_ca_char(0);
4132 if (info->count == 1) {
4133 info->samelen = strlen(info->matches[info->count]);
4134 } else {
4135 while (strncmp(info->matches[info->count],
4136 info->matches[info->count-1],
4137 info->samelen) != 0) {
4138 info->samelen--;
4141 info->count++;
4145 static char **remote_completion(const char *text, int len)
4147 TALLOC_CTX *ctx = talloc_stackframe();
4148 char *dirmask = NULL;
4149 char *targetpath = NULL;
4150 struct cli_state *targetcli = NULL;
4151 int i;
4152 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4154 /* can't have non-static intialisation on Sun CC, so do it
4155 at run time here */
4156 info.samelen = len;
4157 info.text = text;
4158 info.len = len;
4160 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4161 if (!info.matches) {
4162 TALLOC_FREE(ctx);
4163 return NULL;
4167 * We're leaving matches[0] free to fill it later with the text to
4168 * display: Either the one single match or the longest common subset
4169 * of the matches.
4171 info.matches[0] = NULL;
4172 info.count = 1;
4174 for (i = len-1; i >= 0; i--) {
4175 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4176 break;
4180 info.text = text+i+1;
4181 info.samelen = info.len = len-i-1;
4183 if (i > 0) {
4184 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4185 if (!info.dirmask) {
4186 goto cleanup;
4188 strncpy(info.dirmask, text, i+1);
4189 info.dirmask[i+1] = 0;
4190 dirmask = talloc_asprintf(ctx,
4191 "%s%*s*",
4192 client_get_cur_dir(),
4193 i-1,
4194 text);
4195 } else {
4196 info.dirmask = SMB_STRDUP("");
4197 if (!info.dirmask) {
4198 goto cleanup;
4200 dirmask = talloc_asprintf(ctx,
4201 "%s*",
4202 client_get_cur_dir());
4204 if (!dirmask) {
4205 goto cleanup;
4208 if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4209 goto cleanup;
4211 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4212 completion_remote_filter, (void *)&info) < 0) {
4213 goto cleanup;
4216 if (info.count == 1) {
4218 * No matches at all, NULL indicates there is nothing
4220 SAFE_FREE(info.matches[0]);
4221 SAFE_FREE(info.matches);
4222 TALLOC_FREE(ctx);
4223 return NULL;
4226 if (info.count == 2) {
4228 * Exactly one match in matches[1], indicate this is the one
4229 * in matches[0].
4231 info.matches[0] = info.matches[1];
4232 info.matches[1] = NULL;
4233 info.count -= 1;
4234 TALLOC_FREE(ctx);
4235 return info.matches;
4239 * We got more than one possible match, set the result to the maximum
4240 * common subset
4243 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4244 info.matches[info.count] = NULL;
4245 return info.matches;
4247 cleanup:
4248 for (i = 0; i < info.count; i++) {
4249 SAFE_FREE(info.matches[i]);
4251 SAFE_FREE(info.matches);
4252 SAFE_FREE(info.dirmask);
4253 TALLOC_FREE(ctx);
4254 return NULL;
4257 static char **completion_fn(const char *text, int start, int end)
4259 smb_readline_ca_char(' ');
4261 if (start) {
4262 const char *buf, *sp;
4263 int i;
4264 char compl_type;
4266 buf = smb_readline_get_line_buffer();
4267 if (buf == NULL)
4268 return NULL;
4270 sp = strchr(buf, ' ');
4271 if (sp == NULL)
4272 return NULL;
4274 for (i = 0; commands[i].name; i++) {
4275 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4276 (commands[i].name[sp - buf] == 0)) {
4277 break;
4280 if (commands[i].name == NULL)
4281 return NULL;
4283 while (*sp == ' ')
4284 sp++;
4286 if (sp == (buf + start))
4287 compl_type = commands[i].compl_args[0];
4288 else
4289 compl_type = commands[i].compl_args[1];
4291 if (compl_type == COMPL_REMOTE)
4292 return remote_completion(text, end - start);
4293 else /* fall back to local filename completion */
4294 return NULL;
4295 } else {
4296 char **matches;
4297 int i, len, samelen = 0, count=1;
4299 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4300 if (!matches) {
4301 return NULL;
4303 matches[0] = NULL;
4305 len = strlen(text);
4306 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4307 if (strncmp(text, commands[i].name, len) == 0) {
4308 matches[count] = SMB_STRDUP(commands[i].name);
4309 if (!matches[count])
4310 goto cleanup;
4311 if (count == 1)
4312 samelen = strlen(matches[count]);
4313 else
4314 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4315 samelen--;
4316 count++;
4320 switch (count) {
4321 case 0: /* should never happen */
4322 case 1:
4323 goto cleanup;
4324 case 2:
4325 matches[0] = SMB_STRDUP(matches[1]);
4326 break;
4327 default:
4328 matches[0] = (char *)SMB_MALLOC(samelen+1);
4329 if (!matches[0])
4330 goto cleanup;
4331 strncpy(matches[0], matches[1], samelen);
4332 matches[0][samelen] = 0;
4334 matches[count] = NULL;
4335 return matches;
4337 cleanup:
4338 for (i = 0; i < count; i++)
4339 free(matches[i]);
4341 free(matches);
4342 return NULL;
4346 static bool finished;
4348 /****************************************************************************
4349 Make sure we swallow keepalives during idle time.
4350 ****************************************************************************/
4352 static void readline_callback(void)
4354 fd_set fds;
4355 struct timeval timeout;
4356 static time_t last_t;
4357 time_t t;
4359 t = time(NULL);
4361 if (t - last_t < 5)
4362 return;
4364 last_t = t;
4366 again:
4368 if (cli->fd == -1)
4369 return;
4371 FD_ZERO(&fds);
4372 FD_SET(cli->fd,&fds);
4374 timeout.tv_sec = 0;
4375 timeout.tv_usec = 0;
4376 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4378 /* We deliberately use receive_smb_raw instead of
4379 client_receive_smb as we want to receive
4380 session keepalives and then drop them here.
4382 if (FD_ISSET(cli->fd,&fds)) {
4383 NTSTATUS status;
4384 size_t len;
4386 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4388 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4390 if (!NT_STATUS_IS_OK(status)) {
4391 DEBUG(0, ("Read from server failed, maybe it closed "
4392 "the connection\n"));
4394 finished = true;
4395 smb_readline_done();
4396 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4397 set_smb_read_error(&cli->smb_rw_error,
4398 SMB_READ_EOF);
4399 return;
4402 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4403 set_smb_read_error(&cli->smb_rw_error,
4404 SMB_READ_TIMEOUT);
4405 return;
4408 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4409 return;
4411 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4412 DEBUG(0, ("Read from server "
4413 "returned unexpected packet!\n"));
4414 return;
4417 goto again;
4420 /* Ping the server to keep the connection alive using SMBecho. */
4422 unsigned char garbage[16];
4423 memset(garbage, 0xf0, sizeof(garbage));
4424 if (!cli_echo(cli, 1, garbage, sizeof(garbage))) {
4425 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4426 "the connection\n"));
4427 smb_readline_done();
4428 finished = true;
4433 /****************************************************************************
4434 Process commands on stdin.
4435 ****************************************************************************/
4437 static int process_stdin(void)
4439 int rc = 0;
4441 while (!finished) {
4442 TALLOC_CTX *frame = talloc_stackframe();
4443 char *tok = NULL;
4444 char *the_prompt = NULL;
4445 char *line = NULL;
4446 int i;
4448 /* display a prompt */
4449 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4450 TALLOC_FREE(frame);
4451 break;
4453 line = smb_readline(the_prompt, readline_callback, completion_fn);
4454 SAFE_FREE(the_prompt);
4455 if (!line) {
4456 TALLOC_FREE(frame);
4457 break;
4460 /* special case - first char is ! */
4461 if (*line == '!') {
4462 system(line + 1);
4463 SAFE_FREE(line);
4464 TALLOC_FREE(frame);
4465 continue;
4468 /* and get the first part of the command */
4469 cmd_ptr = line;
4470 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4471 TALLOC_FREE(frame);
4472 SAFE_FREE(line);
4473 continue;
4476 if ((i = process_tok(tok)) >= 0) {
4477 rc = commands[i].fn();
4478 } else if (i == -2) {
4479 d_printf("%s: command abbreviation ambiguous\n",tok);
4480 } else {
4481 d_printf("%s: command not found\n",tok);
4483 SAFE_FREE(line);
4484 TALLOC_FREE(frame);
4486 return rc;
4489 /****************************************************************************
4490 Process commands from the client.
4491 ****************************************************************************/
4493 static int process(const char *base_directory)
4495 int rc = 0;
4497 cli = cli_cm_open(talloc_tos(), NULL,
4498 desthost, service, true, smb_encrypt);
4499 if (!cli) {
4500 return 1;
4503 if (base_directory && *base_directory) {
4504 rc = do_cd(base_directory);
4505 if (rc) {
4506 cli_cm_shutdown();
4507 return rc;
4511 if (cmdstr) {
4512 rc = process_command_string(cmdstr);
4513 } else {
4514 process_stdin();
4517 cli_cm_shutdown();
4518 return rc;
4521 /****************************************************************************
4522 Handle a -L query.
4523 ****************************************************************************/
4525 static int do_host_query(const char *query_host)
4527 struct sockaddr_storage ss;
4529 cli = cli_cm_open(talloc_tos(), NULL,
4530 query_host, "IPC$", true, smb_encrypt);
4531 if (!cli)
4532 return 1;
4534 browse_host(true);
4536 if (interpret_string_addr(&ss, query_host, 0) && (ss.ss_family != AF_INET)) {
4537 d_printf("%s is an IPv6 address -- no workgroup available\n",
4538 query_host);
4539 return 1;
4542 if (port != 139) {
4544 /* Workgroups simply don't make sense over anything
4545 else but port 139... */
4547 cli_cm_shutdown();
4548 cli_cm_set_port( 139 );
4549 cli = cli_cm_open(talloc_tos(), NULL,
4550 query_host, "IPC$", true, smb_encrypt);
4553 if (cli == NULL) {
4554 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4555 return 1;
4558 list_servers(lp_workgroup());
4560 cli_cm_shutdown();
4562 return(0);
4565 /****************************************************************************
4566 Handle a tar operation.
4567 ****************************************************************************/
4569 static int do_tar_op(const char *base_directory)
4571 int ret;
4573 /* do we already have a connection? */
4574 if (!cli) {
4575 cli = cli_cm_open(talloc_tos(), NULL,
4576 desthost, service, true, smb_encrypt);
4577 if (!cli)
4578 return 1;
4581 recurse=true;
4583 if (base_directory && *base_directory) {
4584 ret = do_cd(base_directory);
4585 if (ret) {
4586 cli_cm_shutdown();
4587 return ret;
4591 ret=process_tar();
4593 cli_cm_shutdown();
4595 return(ret);
4598 /****************************************************************************
4599 Handle a message operation.
4600 ****************************************************************************/
4602 static int do_message_op(void)
4604 struct sockaddr_storage ss;
4605 struct nmb_name called, calling;
4606 fstring server_name;
4607 char name_type_hex[10];
4608 int msg_port;
4609 NTSTATUS status;
4611 make_nmb_name(&calling, calling_name, 0x0);
4612 make_nmb_name(&called , desthost, name_type);
4614 fstrcpy(server_name, desthost);
4615 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4616 fstrcat(server_name, name_type_hex);
4618 zero_addr(&ss);
4619 if (have_ip)
4620 ss = dest_ss;
4622 /* we can only do messages over port 139 (to windows clients at least) */
4624 msg_port = port ? port : 139;
4626 if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4627 d_printf("Connection to %s failed\n", desthost);
4628 return 1;
4631 status = cli_connect(cli, server_name, &ss);
4632 if (!NT_STATUS_IS_OK(status)) {
4633 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4634 return 1;
4637 if (!cli_session_request(cli, &calling, &called)) {
4638 d_printf("session request failed\n");
4639 cli_cm_shutdown();
4640 return 1;
4643 send_message();
4644 cli_cm_shutdown();
4646 return 0;
4649 /****************************************************************************
4650 main program
4651 ****************************************************************************/
4653 int main(int argc,char *argv[])
4655 char *base_directory = NULL;
4656 int opt;
4657 char *query_host = NULL;
4658 bool message = false;
4659 char *term_code = NULL;
4660 static const char *new_name_resolve_order = NULL;
4661 poptContext pc;
4662 char *p;
4663 int rc = 0;
4664 fstring new_workgroup;
4665 bool tar_opt = false;
4666 bool service_opt = false;
4667 struct poptOption long_options[] = {
4668 POPT_AUTOHELP
4670 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4671 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4672 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4673 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4674 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4675 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4676 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4677 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4678 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4679 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4680 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4681 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4682 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4683 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4684 POPT_COMMON_SAMBA
4685 POPT_COMMON_CONNECTION
4686 POPT_COMMON_CREDENTIALS
4687 POPT_TABLEEND
4689 TALLOC_CTX *frame = talloc_stackframe();
4691 if (!client_set_cur_dir("\\")) {
4692 exit(ENOMEM);
4695 #ifdef KANJI
4696 term_code = talloc_strdup(frame,KANJI);
4697 #else /* KANJI */
4698 term_code = talloc_strdup(frame,"");
4699 #endif /* KANJI */
4700 if (!term_code) {
4701 exit(ENOMEM);
4704 /* initialize the workgroup name so we can determine whether or
4705 not it was set by a command line option */
4707 set_global_myworkgroup( "" );
4708 set_global_myname( "" );
4710 /* set default debug level to 1 regardless of what smb.conf sets */
4711 setup_logging( "smbclient", true );
4712 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4713 if ((dbf = x_fdup(x_stderr))) {
4714 x_setbuf( dbf, NULL );
4717 load_case_tables();
4719 /* skip argv(0) */
4720 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4721 poptSetOtherOptionHelp(pc, "service <password>");
4723 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4725 while ((opt = poptGetNextOpt(pc)) != -1) {
4727 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4728 /* I see no other way to keep things sane --SSS */
4729 if (tar_opt == true) {
4730 while (poptPeekArg(pc)) {
4731 poptGetArg(pc);
4733 tar_opt = false;
4736 /* if the service has not yet been specified lets see if it is available in the popt stack */
4737 if (!service_opt && poptPeekArg(pc)) {
4738 service = talloc_strdup(frame, poptGetArg(pc));
4739 if (!service) {
4740 exit(ENOMEM);
4742 service_opt = true;
4745 /* if the service has already been retrieved then check if we have also a password */
4746 if (service_opt && (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc)) {
4747 set_cmdline_auth_info_password(poptGetArg(pc));
4750 switch (opt) {
4751 case 'M':
4752 /* Messages are sent to NetBIOS name type 0x3
4753 * (Messenger Service). Make sure we default
4754 * to port 139 instead of port 445. srl,crh
4756 name_type = 0x03;
4757 cli_cm_set_dest_name_type( name_type );
4758 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4759 if (!desthost) {
4760 exit(ENOMEM);
4762 if( !port )
4763 cli_cm_set_port( 139 );
4764 message = true;
4765 break;
4766 case 'I':
4768 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4769 exit(1);
4771 have_ip = true;
4773 cli_cm_set_dest_ss(&dest_ss);
4775 break;
4776 case 'E':
4777 if (dbf) {
4778 x_fclose(dbf);
4780 dbf = x_stderr;
4781 display_set_stderr();
4782 break;
4784 case 'L':
4785 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4786 if (!query_host) {
4787 exit(ENOMEM);
4789 break;
4790 case 't':
4791 term_code = talloc_strdup(frame,poptGetOptArg(pc));
4792 if (!term_code) {
4793 exit(ENOMEM);
4795 break;
4796 case 'm':
4797 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4798 break;
4799 case 'T':
4800 /* We must use old option processing for this. Find the
4801 * position of the -T option in the raw argv[]. */
4803 int i;
4804 for (i = 1; i < argc; i++) {
4805 if (strncmp("-T", argv[i],2)==0)
4806 break;
4808 i++;
4809 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4810 poptPrintUsage(pc, stderr, 0);
4811 exit(1);
4814 /* this must be the last option, mark we have parsed it so that we know we have */
4815 tar_opt = true;
4816 break;
4817 case 'D':
4818 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4819 if (!base_directory) {
4820 exit(ENOMEM);
4822 break;
4823 case 'g':
4824 grepable=true;
4825 break;
4826 case 'e':
4827 smb_encrypt=true;
4828 break;
4829 case 'B':
4830 return(do_smb_browse());
4835 /* We may still have some leftovers after the last popt option has been called */
4836 if (tar_opt == true) {
4837 while (poptPeekArg(pc)) {
4838 poptGetArg(pc);
4840 tar_opt = false;
4843 /* if the service has not yet been specified lets see if it is available in the popt stack */
4844 if (!service_opt && poptPeekArg(pc)) {
4845 service = talloc_strdup(frame,poptGetArg(pc));
4846 if (!service) {
4847 exit(ENOMEM);
4849 service_opt = true;
4852 /* if the service has already been retrieved then check if we have also a password */
4853 if (service_opt && !get_cmdline_auth_info_got_pass() && poptPeekArg(pc)) {
4854 set_cmdline_auth_info_password(poptGetArg(pc));
4857 /* check for the -P option */
4859 if ( port != 0 )
4860 cli_cm_set_port( port );
4863 * Don't load debug level from smb.conf. It should be
4864 * set by cmdline arg or remain default (0)
4866 AllowDebugChange = false;
4868 /* save the workgroup...
4870 FIXME!! do we need to do this for other options as well
4871 (or maybe a generic way to keep lp_load() from overwriting
4872 everything)? */
4874 fstrcpy( new_workgroup, lp_workgroup() );
4875 calling_name = talloc_strdup(frame, global_myname() );
4876 if (!calling_name) {
4877 exit(ENOMEM);
4880 if ( override_logfile )
4881 setup_logging( lp_logfile(), false );
4883 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4884 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4885 argv[0], get_dyn_CONFIGFILE());
4888 if (get_cmdline_auth_info_use_machine_account() &&
4889 !set_cmdline_auth_info_machine_account_creds()) {
4890 exit(-1);
4893 load_interfaces();
4895 if (service_opt && service) {
4896 size_t len;
4898 /* Convert any '/' characters in the service name to '\' characters */
4899 string_replace(service, '/','\\');
4900 if (count_chars(service,'\\') < 3) {
4901 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4902 poptPrintUsage(pc, stderr, 0);
4903 exit(1);
4905 /* Remove trailing slashes */
4906 len = strlen(service);
4907 while(len > 0 && service[len - 1] == '\\') {
4908 --len;
4909 service[len] = '\0';
4913 if ( strlen(new_workgroup) != 0 ) {
4914 set_global_myworkgroup( new_workgroup );
4917 if ( strlen(calling_name) != 0 ) {
4918 set_global_myname( calling_name );
4919 } else {
4920 TALLOC_FREE(calling_name);
4921 calling_name = talloc_strdup(frame, global_myname() );
4924 smb_encrypt = get_cmdline_auth_info_smb_encrypt();
4925 if (!init_names()) {
4926 fprintf(stderr, "init_names() failed\n");
4927 exit(1);
4930 if(new_name_resolve_order)
4931 lp_set_name_resolve_order(new_name_resolve_order);
4933 if (!tar_type && !query_host && !service && !message) {
4934 poptPrintUsage(pc, stderr, 0);
4935 exit(1);
4938 poptFreeContext(pc);
4940 /* Store the username and password for dfs support */
4942 cli_cm_set_credentials();
4944 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4946 if (tar_type) {
4947 if (cmdstr)
4948 process_command_string(cmdstr);
4949 return do_tar_op(base_directory);
4952 if (query_host && *query_host) {
4953 char *qhost = query_host;
4954 char *slash;
4956 while (*qhost == '\\' || *qhost == '/')
4957 qhost++;
4959 if ((slash = strchr_m(qhost, '/'))
4960 || (slash = strchr_m(qhost, '\\'))) {
4961 *slash = 0;
4964 if ((p=strchr_m(qhost, '#'))) {
4965 *p = 0;
4966 p++;
4967 sscanf(p, "%x", &name_type);
4968 cli_cm_set_dest_name_type( name_type );
4971 return do_host_query(qhost);
4974 if (message) {
4975 return do_message_op();
4978 if (process(base_directory)) {
4979 return 1;
4982 TALLOC_FREE(frame);
4983 return rc;