Fix Windows 2008 (Longhorn) join.
[Samba/bb.git] / source3 / client / client.c
blobc9343104911096214bd140346d2f9bf4c3790afe
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;
36 extern bool in_client;
38 static int port = 0;
39 static char *service;
40 static char *desthost;
41 static char *calling_name;
42 static bool grepable = false;
43 static char *cmdstr = NULL;
44 static const char *cmd_ptr = NULL;
46 static int io_bufsize = 64512;
48 static int name_type = 0x20;
49 extern int max_protocol;
51 static int process_tok(char *tok);
52 static int cmd_help(void);
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
63 time_t newer_than = 0;
64 static int archive_level = 0;
66 static bool translation = false;
67 static bool have_ip;
69 /* clitar bits insert */
70 extern int blocksize;
71 extern bool tar_inc;
72 extern bool tar_reset;
73 /* clitar bits end */
75 static bool prompt = true;
77 static bool recurse = false;
78 static bool showacls = false;
79 bool lowercase = false;
81 static struct sockaddr_storage dest_ss;
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget = true;
87 /* timing globals */
88 SMB_BIG_UINT get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static SMB_BIG_UINT put_total_size = 0;
91 static unsigned int put_total_time_ms = 0;
93 /* totals globals */
94 static double dir_total;
96 /* encrypted state. */
97 static bool smb_encrypt;
99 /* root cli_state connection */
101 struct cli_state *cli;
103 static char CLI_DIRSEP_CHAR = '\\';
104 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
106 /* Accessor functions for directory paths. */
107 static char *fileselection;
108 static const char *client_get_fileselection(void)
110 if (fileselection) {
111 return fileselection;
113 return "";
116 static const char *client_set_fileselection(const char *new_fs)
118 SAFE_FREE(fileselection);
119 if (new_fs) {
120 fileselection = SMB_STRDUP(new_fs);
122 return client_get_fileselection();
125 static char *cwd;
126 static const char *client_get_cwd(void)
128 if (cwd) {
129 return cwd;
131 return CLI_DIRSEP_STR;
134 static const char *client_set_cwd(const char *new_cwd)
136 SAFE_FREE(cwd);
137 if (new_cwd) {
138 cwd = SMB_STRDUP(new_cwd);
140 return client_get_cwd();
143 static char *cur_dir;
144 const char *client_get_cur_dir(void)
146 if (cur_dir) {
147 return cur_dir;
149 return CLI_DIRSEP_STR;
152 const char *client_set_cur_dir(const char *newdir)
154 SAFE_FREE(cur_dir);
155 if (newdir) {
156 cur_dir = SMB_STRDUP(newdir);
158 return client_get_cur_dir();
161 /****************************************************************************
162 Write to a local file with CR/LF->LF translation if appropriate. Return the
163 number taken from the buffer. This may not equal the number written.
164 ****************************************************************************/
166 static int writefile(int f, char *b, int n)
168 int i;
170 if (!translation) {
171 return write(f,b,n);
174 i = 0;
175 while (i < n) {
176 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
177 b++;i++;
179 if (write(f, b, 1) != 1) {
180 break;
182 b++;
183 i++;
186 return(i);
189 /****************************************************************************
190 Read from a file with LF->CR/LF translation if appropriate. Return the
191 number read. read approx n bytes.
192 ****************************************************************************/
194 static int readfile(char *b, int n, XFILE *f)
196 int i;
197 int c;
199 if (!translation)
200 return x_fread(b,1,n,f);
202 i = 0;
203 while (i < (n - 1) && (i < BUFFER_SIZE)) {
204 if ((c = x_getc(f)) == EOF) {
205 break;
208 if (c == '\n') { /* change all LFs to CR/LF */
209 b[i++] = '\r';
212 b[i++] = c;
215 return(i);
218 /****************************************************************************
219 Send a message.
220 ****************************************************************************/
222 static void send_message(void)
224 int total_len = 0;
225 int grp_id;
227 if (!cli_message_start(cli, desthost,
228 get_cmdline_auth_info_username(), &grp_id)) {
229 d_printf("message start: %s\n", cli_errstr(cli));
230 return;
234 d_printf("Connected. Type your message, ending it with a Control-D\n");
236 while (!feof(stdin) && total_len < 1600) {
237 int maxlen = MIN(1600 - total_len,127);
238 char msg[1024];
239 int l=0;
240 int c;
242 ZERO_ARRAY(msg);
244 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
245 if (c == '\n')
246 msg[l++] = '\r';
247 msg[l] = c;
250 if ((total_len > 0) && (strlen(msg) == 0)) {
251 break;
254 if (!cli_message_text(cli, msg, l, grp_id)) {
255 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
256 return;
259 total_len += l;
262 if (total_len >= 1600)
263 d_printf("the message was truncated to 1600 bytes\n");
264 else
265 d_printf("sent %d bytes\n",total_len);
267 if (!cli_message_end(cli, grp_id)) {
268 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
269 return;
273 /****************************************************************************
274 Check the space on a device.
275 ****************************************************************************/
277 static int do_dskattr(void)
279 int total, bsize, avail;
280 struct cli_state *targetcli = NULL;
281 char *targetpath = NULL;
282 TALLOC_CTX *ctx = talloc_tos();
284 if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
285 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
286 return 1;
289 if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
290 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
291 return 1;
294 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
295 total, bsize, avail);
297 return 0;
300 /****************************************************************************
301 Show cd/pwd.
302 ****************************************************************************/
304 static int cmd_pwd(void)
306 d_printf("Current directory is %s",service);
307 d_printf("%s\n",client_get_cur_dir());
308 return 0;
311 /****************************************************************************
312 Change directory - inner section.
313 ****************************************************************************/
315 static int do_cd(const char *new_dir)
317 char *newdir = NULL;
318 char *saved_dir = NULL;
319 char *new_cd = NULL;
320 char *targetpath = NULL;
321 struct cli_state *targetcli = NULL;
322 SMB_STRUCT_STAT sbuf;
323 uint32 attributes;
324 int ret = 1;
325 TALLOC_CTX *ctx = talloc_stackframe();
327 newdir = talloc_strdup(ctx, new_dir);
328 if (!newdir) {
329 TALLOC_FREE(ctx);
330 return 1;
332 string_replace(newdir,'/','\\');
334 /* Save the current directory in case the new directory is invalid */
336 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
337 if (!saved_dir) {
338 TALLOC_FREE(ctx);
339 return 1;
342 if (*newdir == CLI_DIRSEP_CHAR) {
343 client_set_cur_dir(newdir);
344 new_cd = newdir;
345 } else {
346 new_cd = talloc_asprintf(ctx, "%s%s",
347 client_get_cur_dir(),
348 newdir);
349 if (!new_cd) {
350 goto out;
352 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
353 new_cd = talloc_asprintf_append(new_cd, CLI_DIRSEP_STR);
354 if (!new_cd) {
355 goto out;
358 client_set_cur_dir(new_cd);
360 if (!new_cd) {
361 goto out;
364 new_cd = clean_name(ctx, new_cd);
365 client_set_cur_dir(new_cd);
367 if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
368 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
369 client_set_cur_dir(saved_dir);
370 goto out;
373 if (strequal(targetpath,CLI_DIRSEP_STR )) {
374 TALLOC_FREE(ctx);
375 return 0;
378 /* Use a trans2_qpathinfo to test directories for modern servers.
379 Except Win9x doesn't support the qpathinfo_basic() call..... */
381 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
382 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
383 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
384 client_set_cur_dir(saved_dir);
385 goto out;
388 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
389 d_printf("cd %s: not a directory\n", new_cd);
390 client_set_cur_dir(saved_dir);
391 goto out;
393 } else {
394 targetpath = talloc_asprintf(ctx,
395 "%s%s",
396 targetpath,
397 CLI_DIRSEP_STR );
398 if (!targetpath) {
399 client_set_cur_dir(saved_dir);
400 goto out;
402 targetpath = clean_name(ctx, targetpath);
403 if (!targetpath) {
404 client_set_cur_dir(saved_dir);
405 goto out;
408 if (!cli_chkpath(targetcli, targetpath)) {
409 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
410 client_set_cur_dir(saved_dir);
411 goto out;
415 ret = 0;
417 out:
419 TALLOC_FREE(ctx);
420 return ret;
423 /****************************************************************************
424 Change directory.
425 ****************************************************************************/
427 static int cmd_cd(void)
429 char *buf = NULL;
430 int rc = 0;
432 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
433 rc = do_cd(buf);
434 } else {
435 d_printf("Current directory is %s\n",client_get_cur_dir());
438 return rc;
441 /****************************************************************************
442 Change directory.
443 ****************************************************************************/
445 static int cmd_cd_oneup(void)
447 return do_cd("..");
450 /*******************************************************************
451 Decide if a file should be operated on.
452 ********************************************************************/
454 static bool do_this_one(file_info *finfo)
456 if (!finfo->name) {
457 return false;
460 if (finfo->mode & aDIR) {
461 return true;
464 if (*client_get_fileselection() &&
465 !mask_match(finfo->name,client_get_fileselection(),false)) {
466 DEBUG(3,("mask_match %s failed\n", finfo->name));
467 return false;
470 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
471 DEBUG(3,("newer_than %s failed\n", finfo->name));
472 return false;
475 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
476 DEBUG(3,("archive %s failed\n", finfo->name));
477 return false;
480 return true;
483 /****************************************************************************
484 Display info about a file.
485 ****************************************************************************/
487 static void display_finfo(file_info *finfo, const char *dir)
489 time_t t;
490 TALLOC_CTX *ctx = talloc_tos();
492 if (!do_this_one(finfo)) {
493 return;
496 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
497 if (!showacls) {
498 d_printf(" %-30s%7.7s %8.0f %s",
499 finfo->name,
500 attrib_string(finfo->mode),
501 (double)finfo->size,
502 time_to_asc(t));
503 dir_total += finfo->size;
504 } else {
505 char *afname = NULL;
506 int fnum;
508 /* skip if this is . or .. */
509 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
510 return;
511 /* create absolute filename for cli_nt_create() FIXME */
512 afname = talloc_asprintf(ctx,
513 "%s%s%s",
514 client_get_cwd(),
515 CLI_DIRSEP_STR,
516 finfo->name);
517 if (!afname) {
518 return;
520 /* print file meta date header */
521 d_printf( "FILENAME:%s\n", afname);
522 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
523 d_printf( "SIZE:%.0f\n", (double)finfo->size);
524 d_printf( "MTIME:%s", time_to_asc(t));
525 fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
526 if (fnum == -1) {
527 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
528 afname,
529 cli_errstr( finfo->cli)));
530 } else {
531 SEC_DESC *sd = NULL;
532 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
533 if (!sd) {
534 DEBUG( 0, ("display_finfo() failed to "
535 "get security descriptor: %s",
536 cli_errstr( finfo->cli)));
537 } else {
538 display_sec_desc(sd);
540 TALLOC_FREE(sd);
542 TALLOC_FREE(afname);
546 /****************************************************************************
547 Accumulate size of a file.
548 ****************************************************************************/
550 static void do_du(file_info *finfo, const char *dir)
552 if (do_this_one(finfo)) {
553 dir_total += finfo->size;
557 static bool do_list_recurse;
558 static bool do_list_dirs;
559 static char *do_list_queue = 0;
560 static long do_list_queue_size = 0;
561 static long do_list_queue_start = 0;
562 static long do_list_queue_end = 0;
563 static void (*do_list_fn)(file_info *, const char *dir);
565 /****************************************************************************
566 Functions for do_list_queue.
567 ****************************************************************************/
570 * The do_list_queue is a NUL-separated list of strings stored in a
571 * char*. Since this is a FIFO, we keep track of the beginning and
572 * ending locations of the data in the queue. When we overflow, we
573 * double the size of the char*. When the start of the data passes
574 * the midpoint, we move everything back. This is logically more
575 * complex than a linked list, but easier from a memory management
576 * angle. In any memory error condition, do_list_queue is reset.
577 * Functions check to ensure that do_list_queue is non-NULL before
578 * accessing it.
581 static void reset_do_list_queue(void)
583 SAFE_FREE(do_list_queue);
584 do_list_queue_size = 0;
585 do_list_queue_start = 0;
586 do_list_queue_end = 0;
589 static void init_do_list_queue(void)
591 reset_do_list_queue();
592 do_list_queue_size = 1024;
593 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
594 if (do_list_queue == 0) {
595 d_printf("malloc fail for size %d\n",
596 (int)do_list_queue_size);
597 reset_do_list_queue();
598 } else {
599 memset(do_list_queue, 0, do_list_queue_size);
603 static void adjust_do_list_queue(void)
606 * If the starting point of the queue is more than half way through,
607 * move everything toward the beginning.
610 if (do_list_queue == NULL) {
611 DEBUG(4,("do_list_queue is empty\n"));
612 do_list_queue_start = do_list_queue_end = 0;
613 return;
616 if (do_list_queue_start == do_list_queue_end) {
617 DEBUG(4,("do_list_queue is empty\n"));
618 do_list_queue_start = do_list_queue_end = 0;
619 *do_list_queue = '\0';
620 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
621 DEBUG(4,("sliding do_list_queue backward\n"));
622 memmove(do_list_queue,
623 do_list_queue + do_list_queue_start,
624 do_list_queue_end - do_list_queue_start);
625 do_list_queue_end -= do_list_queue_start;
626 do_list_queue_start = 0;
630 static void add_to_do_list_queue(const char *entry)
632 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
633 while (new_end > do_list_queue_size) {
634 do_list_queue_size *= 2;
635 DEBUG(4,("enlarging do_list_queue to %d\n",
636 (int)do_list_queue_size));
637 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
638 if (! do_list_queue) {
639 d_printf("failure enlarging do_list_queue to %d bytes\n",
640 (int)do_list_queue_size);
641 reset_do_list_queue();
642 } else {
643 memset(do_list_queue + do_list_queue_size / 2,
644 0, do_list_queue_size / 2);
647 if (do_list_queue) {
648 safe_strcpy_base(do_list_queue + do_list_queue_end,
649 entry, do_list_queue, do_list_queue_size);
650 do_list_queue_end = new_end;
651 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
652 entry, (int)do_list_queue_start, (int)do_list_queue_end));
656 static char *do_list_queue_head(void)
658 return do_list_queue + do_list_queue_start;
661 static void remove_do_list_queue_head(void)
663 if (do_list_queue_end > do_list_queue_start) {
664 do_list_queue_start += strlen(do_list_queue_head()) + 1;
665 adjust_do_list_queue();
666 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
667 (int)do_list_queue_start, (int)do_list_queue_end));
671 static int do_list_queue_empty(void)
673 return (! (do_list_queue && *do_list_queue));
676 /****************************************************************************
677 A helper for do_list.
678 ****************************************************************************/
680 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
682 TALLOC_CTX *ctx = talloc_tos();
683 char *dir = NULL;
684 char *dir_end = NULL;
686 /* Work out the directory. */
687 dir = talloc_strdup(ctx, mask);
688 if (!dir) {
689 return;
691 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
692 *dir_end = '\0';
695 if (f->mode & aDIR) {
696 if (do_list_dirs && do_this_one(f)) {
697 do_list_fn(f, dir);
699 if (do_list_recurse &&
700 f->name &&
701 !strequal(f->name,".") &&
702 !strequal(f->name,"..")) {
703 char *mask2 = NULL;
704 char *p = NULL;
706 if (!f->name[0]) {
707 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
708 TALLOC_FREE(dir);
709 return;
712 mask2 = talloc_asprintf(ctx,
713 "%s%s",
714 mntpoint,
715 mask);
716 if (!mask2) {
717 TALLOC_FREE(dir);
718 return;
720 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
721 if (!p) {
722 TALLOC_FREE(dir);
723 return;
725 p[1] = 0;
726 mask2 = talloc_asprintf_append(mask2,
727 "%s%s*",
728 f->name,
729 CLI_DIRSEP_STR);
730 if (!mask2) {
731 TALLOC_FREE(dir);
732 return;
734 add_to_do_list_queue(mask2);
735 TALLOC_FREE(mask2);
737 TALLOC_FREE(dir);
738 return;
741 if (do_this_one(f)) {
742 do_list_fn(f,dir);
744 TALLOC_FREE(dir);
747 /****************************************************************************
748 A wrapper around cli_list that adds recursion.
749 ****************************************************************************/
751 void do_list(const char *mask,
752 uint16 attribute,
753 void (*fn)(file_info *, const char *dir),
754 bool rec,
755 bool dirs)
757 static int in_do_list = 0;
758 TALLOC_CTX *ctx = talloc_tos();
759 struct cli_state *targetcli = NULL;
760 char *targetpath = NULL;
762 if (in_do_list && rec) {
763 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
764 exit(1);
767 in_do_list = 1;
769 do_list_recurse = rec;
770 do_list_dirs = dirs;
771 do_list_fn = fn;
773 if (rec) {
774 init_do_list_queue();
775 add_to_do_list_queue(mask);
777 while (!do_list_queue_empty()) {
779 * Need to copy head so that it doesn't become
780 * invalid inside the call to cli_list. This
781 * would happen if the list were expanded
782 * during the call.
783 * Fix from E. Jay Berkenbilt (ejb@ql.org)
785 char *head = talloc_strdup(ctx, do_list_queue_head());
787 if (!head) {
788 return;
791 /* check for dfs */
793 if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
794 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
795 remove_do_list_queue_head();
796 continue;
799 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
800 remove_do_list_queue_head();
801 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
802 char *next_file = do_list_queue_head();
803 char *save_ch = 0;
804 if ((strlen(next_file) >= 2) &&
805 (next_file[strlen(next_file) - 1] == '*') &&
806 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
807 save_ch = next_file +
808 strlen(next_file) - 2;
809 *save_ch = '\0';
810 if (showacls) {
811 /* cwd is only used if showacls is on */
812 client_set_cwd(next_file);
815 if (!showacls) /* don't disturbe the showacls output */
816 d_printf("\n%s\n",next_file);
817 if (save_ch) {
818 *save_ch = CLI_DIRSEP_CHAR;
821 TALLOC_FREE(head);
822 TALLOC_FREE(targetpath);
824 } else {
825 /* check for dfs */
826 if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
827 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
828 d_printf("%s listing %s\n",
829 cli_errstr(targetcli), targetpath);
831 TALLOC_FREE(targetpath);
832 } else {
833 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
837 in_do_list = 0;
838 reset_do_list_queue();
841 /****************************************************************************
842 Get a directory listing.
843 ****************************************************************************/
845 static int cmd_dir(void)
847 TALLOC_CTX *ctx = talloc_tos();
848 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
849 char *mask = NULL;
850 char *buf = NULL;
851 int rc = 1;
853 dir_total = 0;
854 if (strcmp(client_get_cur_dir(), CLI_DIRSEP_STR) != 0) {
855 mask = talloc_strdup(ctx, client_get_cur_dir());
856 if (!mask) {
857 return 1;
859 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
860 mask = talloc_asprintf_append(mask, CLI_DIRSEP_STR);
862 } else {
863 mask = talloc_strdup(ctx, CLI_DIRSEP_STR);
866 if (!mask) {
867 return 1;
870 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
871 string_replace(buf,'/','\\');
872 if (*buf == CLI_DIRSEP_CHAR) {
873 mask = talloc_strdup(ctx, buf + 1);
874 } else {
875 mask = talloc_asprintf_append(mask, buf);
877 } else {
878 mask = talloc_asprintf_append(mask, "*");
880 if (!mask) {
881 return 1;
884 if (showacls) {
885 /* cwd is only used if showacls is on */
886 client_set_cwd(client_get_cur_dir());
889 do_list(mask, attribute, display_finfo, recurse, true);
891 rc = do_dskattr();
893 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
895 return rc;
898 /****************************************************************************
899 Get a directory listing.
900 ****************************************************************************/
902 static int cmd_du(void)
904 TALLOC_CTX *ctx = talloc_tos();
905 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
906 char *mask = NULL;
907 char *buf = NULL;
908 int rc = 1;
910 dir_total = 0;
911 mask = talloc_strdup(ctx, client_get_cur_dir());
912 if (!mask) {
913 return 1;
915 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
916 mask = talloc_asprintf_append(mask, CLI_DIRSEP_STR);
917 if (!mask) {
918 return 1;
922 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
923 string_replace(buf,'/','\\');
924 if (*buf == CLI_DIRSEP_CHAR) {
925 mask = talloc_strdup(ctx, buf);
926 } else {
927 mask = talloc_asprintf_append(mask, buf);
929 } else {
930 mask = talloc_strdup(ctx, "*");
933 do_list(mask, attribute, do_du, recurse, true);
935 rc = do_dskattr();
937 d_printf("Total number of bytes: %.0f\n", dir_total);
939 return rc;
942 static int cmd_echo(void)
944 TALLOC_CTX *ctx = talloc_tos();
945 char *num;
946 char *data;
948 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
949 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
950 d_printf("echo <num> <data>\n");
951 return 1;
954 if (!cli_echo(cli, atoi(num), (uint8 *)data, strlen(data))) {
955 d_printf("echo failed: %s\n",
956 nt_errstr(cli_get_nt_error(cli)));
957 return 1;
960 return 0;
963 /****************************************************************************
964 Get a file from rname to lname
965 ****************************************************************************/
967 static int do_get(const char *rname, const char *lname_in, bool reget)
969 TALLOC_CTX *ctx = talloc_tos();
970 int handle = 0, fnum;
971 bool newhandle = false;
972 char *data = NULL;
973 struct timeval tp_start;
974 int read_size = io_bufsize;
975 uint16 attr;
976 SMB_OFF_T size;
977 off_t start = 0;
978 off_t nread = 0;
979 int rc = 0;
980 struct cli_state *targetcli = NULL;
981 char *targetname = NULL;
982 char *lname = NULL;
984 lname = talloc_strdup(ctx, lname_in);
985 if (!lname) {
986 return 1;
989 if (lowercase) {
990 strlower_m(lname);
993 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
994 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
995 return 1;
998 GetTimeOfDay(&tp_start);
1000 fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
1002 if (fnum == -1) {
1003 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1004 return 1;
1007 if(!strcmp(lname,"-")) {
1008 handle = fileno(stdout);
1009 } else {
1010 if (reget) {
1011 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1012 if (handle >= 0) {
1013 start = sys_lseek(handle, 0, SEEK_END);
1014 if (start == -1) {
1015 d_printf("Error seeking local file\n");
1016 return 1;
1019 } else {
1020 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1022 newhandle = true;
1024 if (handle < 0) {
1025 d_printf("Error opening local file %s\n",lname);
1026 return 1;
1030 if (!cli_qfileinfo(targetcli, fnum,
1031 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1032 !cli_getattrE(targetcli, fnum,
1033 &attr, &size, NULL, NULL, NULL)) {
1034 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1035 return 1;
1038 DEBUG(1,("getting file %s of size %.0f as %s ",
1039 rname, (double)size, lname));
1041 if(!(data = (char *)SMB_MALLOC(read_size))) {
1042 d_printf("malloc fail for size %d\n", read_size);
1043 cli_close(targetcli, fnum);
1044 return 1;
1047 while (1) {
1048 int n = cli_read(targetcli, fnum, data, nread + start, read_size);
1050 if (n <= 0)
1051 break;
1053 if (writefile(handle,data, n) != n) {
1054 d_printf("Error writing local file\n");
1055 rc = 1;
1056 break;
1059 nread += n;
1062 if (nread + start < size) {
1063 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
1064 rname, (long)nread));
1066 rc = 1;
1069 SAFE_FREE(data);
1071 if (!cli_close(targetcli, fnum)) {
1072 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1073 rc = 1;
1076 if (newhandle) {
1077 close(handle);
1080 if (archive_level >= 2 && (attr & aARCH)) {
1081 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1085 struct timeval tp_end;
1086 int this_time;
1088 GetTimeOfDay(&tp_end);
1089 this_time =
1090 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1091 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1092 get_total_time_ms += this_time;
1093 get_total_size += nread;
1095 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1096 nread / (1.024*this_time + 1.0e-4),
1097 get_total_size / (1.024*get_total_time_ms)));
1100 TALLOC_FREE(targetname);
1101 return rc;
1104 /****************************************************************************
1105 Get a file.
1106 ****************************************************************************/
1108 static int cmd_get(void)
1110 TALLOC_CTX *ctx = talloc_tos();
1111 char *lname = NULL;
1112 char *rname = NULL;
1113 char *fname = NULL;
1115 rname = talloc_asprintf(ctx,
1116 "%s%s",
1117 client_get_cur_dir(),
1118 CLI_DIRSEP_STR);
1119 if (!rname) {
1120 return 1;
1123 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1124 d_printf("get <filename> [localname]\n");
1125 return 1;
1127 rname = talloc_asprintf_append(rname, fname);
1128 if (!rname) {
1129 return 1;
1131 rname = clean_name(ctx, rname);
1132 if (!rname) {
1133 return 1;
1136 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1137 if (!lname) {
1138 lname = fname;
1141 return do_get(rname, lname, false);
1144 /****************************************************************************
1145 Do an mget operation on one file.
1146 ****************************************************************************/
1148 static void do_mget(file_info *finfo, const char *dir)
1150 TALLOC_CTX *ctx = talloc_tos();
1151 char *rname = NULL;
1152 char *quest = NULL;
1153 char *saved_curdir = NULL;
1154 char *mget_mask = NULL;
1155 char *new_cd = NULL;
1157 if (!finfo->name) {
1158 return;
1161 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1162 return;
1164 if (abort_mget) {
1165 d_printf("mget aborted\n");
1166 return;
1169 if (finfo->mode & aDIR) {
1170 if (asprintf(&quest,
1171 "Get directory %s? ",finfo->name) < 0) {
1172 return;
1174 } else {
1175 if (asprintf(&quest,
1176 "Get file %s? ",finfo->name) < 0) {
1177 return;
1181 if (prompt && !yesno(quest)) {
1182 SAFE_FREE(quest);
1183 return;
1185 SAFE_FREE(quest);
1187 if (!(finfo->mode & aDIR)) {
1188 rname = talloc_asprintf(ctx,
1189 "%s%s",
1190 client_get_cur_dir(),
1191 finfo->name);
1192 if (!rname) {
1193 return;
1195 do_get(rname, finfo->name, false);
1196 TALLOC_FREE(rname);
1197 return;
1200 /* handle directories */
1201 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1202 if (!saved_curdir) {
1203 return;
1206 new_cd = talloc_asprintf(ctx,
1207 "%s%s%s",
1208 client_get_cur_dir(),
1209 finfo->name,
1210 CLI_DIRSEP_STR);
1211 if (!new_cd) {
1212 return;
1214 client_set_cur_dir(new_cd);
1216 string_replace(finfo->name,'\\','/');
1217 if (lowercase) {
1218 strlower_m(finfo->name);
1221 if (!directory_exist(finfo->name,NULL) &&
1222 mkdir(finfo->name,0777) != 0) {
1223 d_printf("failed to create directory %s\n",finfo->name);
1224 client_set_cur_dir(saved_curdir);
1225 return;
1228 if (chdir(finfo->name) != 0) {
1229 d_printf("failed to chdir to directory %s\n",finfo->name);
1230 client_set_cur_dir(saved_curdir);
1231 return;
1234 mget_mask = talloc_asprintf(ctx,
1235 "%s*",
1236 client_get_cur_dir());
1238 if (!mget_mask) {
1239 return;
1242 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1243 chdir("..");
1244 client_set_cur_dir(saved_curdir);
1245 TALLOC_FREE(mget_mask);
1246 TALLOC_FREE(saved_curdir);
1247 TALLOC_FREE(new_cd);
1250 /****************************************************************************
1251 View the file using the pager.
1252 ****************************************************************************/
1254 static int cmd_more(void)
1256 TALLOC_CTX *ctx = talloc_tos();
1257 char *rname = NULL;
1258 char *fname = NULL;
1259 char *lname = NULL;
1260 char *pager_cmd = NULL;
1261 const char *pager;
1262 int fd;
1263 int rc = 0;
1265 rname = talloc_asprintf(ctx,
1266 "%s%s",
1267 client_get_cur_dir(),
1268 CLI_DIRSEP_STR);
1269 if (!rname) {
1270 return 1;
1273 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1274 if (!lname) {
1275 return 1;
1277 fd = smb_mkstemp(lname);
1278 if (fd == -1) {
1279 d_printf("failed to create temporary file for more\n");
1280 return 1;
1282 close(fd);
1284 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1285 d_printf("more <filename>\n");
1286 unlink(lname);
1287 return 1;
1289 rname = talloc_asprintf_append(rname, fname);
1290 if (!rname) {
1291 return 1;
1293 rname = clean_name(ctx,rname);
1294 if (!rname) {
1295 return 1;
1298 rc = do_get(rname, lname, false);
1300 pager=getenv("PAGER");
1302 pager_cmd = talloc_asprintf(ctx,
1303 "%s %s",
1304 (pager? pager:PAGER),
1305 lname);
1306 if (!pager_cmd) {
1307 return 1;
1309 system(pager_cmd);
1310 unlink(lname);
1312 return rc;
1315 /****************************************************************************
1316 Do a mget command.
1317 ****************************************************************************/
1319 static int cmd_mget(void)
1321 TALLOC_CTX *ctx = talloc_tos();
1322 uint16 attribute = aSYSTEM | aHIDDEN;
1323 char *mget_mask = NULL;
1324 char *buf = NULL;
1326 if (recurse) {
1327 attribute |= aDIR;
1330 abort_mget = false;
1332 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1333 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1334 if (!mget_mask) {
1335 return 1;
1337 if ((mget_mask[0] != '\0') &&
1338 (mget_mask[strlen(mget_mask)-1]!=CLI_DIRSEP_CHAR)) {
1339 mget_mask = talloc_asprintf_append(mget_mask,
1340 CLI_DIRSEP_STR);
1341 if (!mget_mask) {
1342 return 1;
1346 if (*buf == CLI_DIRSEP_CHAR) {
1347 mget_mask = talloc_strdup(ctx, buf);
1348 } else {
1349 mget_mask = talloc_asprintf_append(mget_mask,
1350 buf);
1352 if (!mget_mask) {
1353 return 1;
1355 do_list(mget_mask, attribute, do_mget, false, true);
1358 if (!*mget_mask) {
1359 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1360 if (!mget_mask) {
1361 return 1;
1363 if(mget_mask[strlen(mget_mask)-1]!=CLI_DIRSEP_CHAR) {
1364 mget_mask = talloc_asprintf_append(mget_mask,
1365 CLI_DIRSEP_STR);
1366 if (!mget_mask) {
1367 return 1;
1370 mget_mask = talloc_asprintf_append(mget_mask, "*");
1371 if (!mget_mask) {
1372 return 1;
1374 do_list(mget_mask, attribute, do_mget, false, true);
1377 return 0;
1380 /****************************************************************************
1381 Make a directory of name "name".
1382 ****************************************************************************/
1384 static bool do_mkdir(const char *name)
1386 TALLOC_CTX *ctx = talloc_tos();
1387 struct cli_state *targetcli;
1388 char *targetname = NULL;
1390 if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
1391 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1392 return false;
1395 if (!cli_mkdir(targetcli, targetname)) {
1396 d_printf("%s making remote directory %s\n",
1397 cli_errstr(targetcli),name);
1398 return false;
1401 return true;
1404 /****************************************************************************
1405 Show 8.3 name of a file.
1406 ****************************************************************************/
1408 static bool do_altname(const char *name)
1410 fstring altname;
1412 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1413 d_printf("%s getting alt name for %s\n",
1414 cli_errstr(cli),name);
1415 return false;
1417 d_printf("%s\n", altname);
1419 return true;
1422 /****************************************************************************
1423 Exit client.
1424 ****************************************************************************/
1426 static int cmd_quit(void)
1428 cli_cm_shutdown();
1429 exit(0);
1430 /* NOTREACHED */
1431 return 0;
1434 /****************************************************************************
1435 Make a directory.
1436 ****************************************************************************/
1438 static int cmd_mkdir(void)
1440 TALLOC_CTX *ctx = talloc_tos();
1441 char *mask = NULL;
1442 char *buf = NULL;
1444 mask = talloc_strdup(ctx, client_get_cur_dir());
1445 if (!mask) {
1446 return 1;
1449 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1450 if (!recurse) {
1451 d_printf("mkdir <dirname>\n");
1453 return 1;
1455 mask = talloc_asprintf_append(mask, buf);
1456 if (!mask) {
1457 return 1;
1460 if (recurse) {
1461 char *ddir = NULL;
1462 char *ddir2 = NULL;
1463 struct cli_state *targetcli;
1464 char *targetname = NULL;
1465 char *p = NULL;
1466 char *saveptr;
1468 ddir2 = talloc_strdup(ctx, "");
1469 if (!ddir2) {
1470 return 1;
1473 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1474 return 1;
1477 ddir = talloc_strdup(ctx, targetname);
1478 if (!ddir) {
1479 return 1;
1481 trim_char(ddir,'.','\0');
1482 p = strtok_r(ddir, "/\\", &saveptr);
1483 while (p) {
1484 ddir2 = talloc_asprintf_append(ddir2, p);
1485 if (!ddir2) {
1486 return 1;
1488 if (!cli_chkpath(targetcli, ddir2)) {
1489 do_mkdir(ddir2);
1491 ddir2 = talloc_asprintf_append(ddir2, CLI_DIRSEP_STR);
1492 if (!ddir2) {
1493 return 1;
1495 p = strtok_r(NULL, "/\\", &saveptr);
1497 } else {
1498 do_mkdir(mask);
1501 return 0;
1504 /****************************************************************************
1505 Show alt name.
1506 ****************************************************************************/
1508 static int cmd_altname(void)
1510 TALLOC_CTX *ctx = talloc_tos();
1511 char *name;
1512 char *buf;
1514 name = talloc_strdup(ctx, client_get_cur_dir());
1515 if (!name) {
1516 return 1;
1519 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1520 d_printf("altname <file>\n");
1521 return 1;
1523 name = talloc_asprintf_append(name, buf);
1524 if (!name) {
1525 return 1;
1527 do_altname(name);
1528 return 0;
1531 /****************************************************************************
1532 Show all info we can get
1533 ****************************************************************************/
1535 static int do_allinfo(const char *name)
1537 fstring altname;
1538 struct timespec b_time, a_time, m_time, c_time;
1539 SMB_OFF_T size;
1540 uint16_t mode;
1541 SMB_INO_T ino;
1542 NTTIME tmp;
1543 unsigned int num_streams;
1544 struct stream_struct *streams;
1545 unsigned int i;
1547 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1548 d_printf("%s getting alt name for %s\n",
1549 cli_errstr(cli),name);
1550 return false;
1552 d_printf("altname: %s\n", altname);
1554 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1555 &size, &mode, &ino)) {
1556 d_printf("%s getting pathinfo for %s\n",
1557 cli_errstr(cli),name);
1558 return false;
1561 unix_timespec_to_nt_time(&tmp, b_time);
1562 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1564 unix_timespec_to_nt_time(&tmp, a_time);
1565 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1567 unix_timespec_to_nt_time(&tmp, m_time);
1568 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1570 unix_timespec_to_nt_time(&tmp, c_time);
1571 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1573 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1574 &streams)) {
1575 d_printf("%s getting streams for %s\n",
1576 cli_errstr(cli),name);
1577 return false;
1580 for (i=0; i<num_streams; i++) {
1581 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1582 (unsigned long long)streams[i].size);
1585 return 0;
1588 /****************************************************************************
1589 Show all info we can get
1590 ****************************************************************************/
1592 static int cmd_allinfo(void)
1594 TALLOC_CTX *ctx = talloc_tos();
1595 char *name;
1596 char *buf;
1598 name = talloc_strdup(ctx, client_get_cur_dir());
1599 if (!name) {
1600 return 1;
1603 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1604 d_printf("allinfo <file>\n");
1605 return 1;
1607 name = talloc_asprintf_append(name, buf);
1608 if (!name) {
1609 return 1;
1612 do_allinfo(name);
1614 return 0;
1617 /****************************************************************************
1618 Put a single file.
1619 ****************************************************************************/
1621 static int do_put(const char *rname, const char *lname, bool reput)
1623 TALLOC_CTX *ctx = talloc_tos();
1624 int fnum;
1625 XFILE *f;
1626 SMB_OFF_T start = 0;
1627 off_t nread = 0;
1628 char *buf = NULL;
1629 int maxwrite = io_bufsize;
1630 int rc = 0;
1631 struct timeval tp_start;
1632 struct cli_state *targetcli;
1633 char *targetname = NULL;
1635 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1636 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1637 return 1;
1640 GetTimeOfDay(&tp_start);
1642 if (reput) {
1643 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1644 if (fnum >= 0) {
1645 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1646 !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1647 d_printf("getattrib: %s\n",cli_errstr(cli));
1648 return 1;
1651 } else {
1652 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1655 if (fnum == -1) {
1656 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1657 return 1;
1660 /* allow files to be piped into smbclient
1661 jdblair 24.jun.98
1663 Note that in this case this function will exit(0) rather
1664 than returning. */
1665 if (!strcmp(lname, "-")) {
1666 f = x_stdin;
1667 /* size of file is not known */
1668 } else {
1669 f = x_fopen(lname,O_RDONLY, 0);
1670 if (f && reput) {
1671 if (x_tseek(f, start, SEEK_SET) == -1) {
1672 d_printf("Error seeking local file\n");
1673 return 1;
1678 if (!f) {
1679 d_printf("Error opening local file %s\n",lname);
1680 return 1;
1683 DEBUG(1,("putting file %s as %s ",lname,
1684 rname));
1686 buf = (char *)SMB_MALLOC(maxwrite);
1687 if (!buf) {
1688 d_printf("ERROR: Not enough memory!\n");
1689 return 1;
1691 while (!x_feof(f)) {
1692 int n = maxwrite;
1693 int ret;
1695 if ((n = readfile(buf,n,f)) < 1) {
1696 if((n == 0) && x_feof(f))
1697 break; /* Empty local file. */
1699 d_printf("Error reading local file: %s\n", strerror(errno));
1700 rc = 1;
1701 break;
1704 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1706 if (n != ret) {
1707 d_printf("Error writing file: %s\n", cli_errstr(cli));
1708 rc = 1;
1709 break;
1712 nread += n;
1715 if (!cli_close(targetcli, fnum)) {
1716 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1717 x_fclose(f);
1718 SAFE_FREE(buf);
1719 return 1;
1722 if (f != x_stdin) {
1723 x_fclose(f);
1726 SAFE_FREE(buf);
1729 struct timeval tp_end;
1730 int this_time;
1732 GetTimeOfDay(&tp_end);
1733 this_time =
1734 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1735 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1736 put_total_time_ms += this_time;
1737 put_total_size += nread;
1739 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1740 nread / (1.024*this_time + 1.0e-4),
1741 put_total_size / (1.024*put_total_time_ms)));
1744 if (f == x_stdin) {
1745 cli_cm_shutdown();
1746 exit(0);
1749 return rc;
1752 /****************************************************************************
1753 Put a file.
1754 ****************************************************************************/
1756 static int cmd_put(void)
1758 TALLOC_CTX *ctx = talloc_tos();
1759 char *lname;
1760 char *rname;
1761 char *buf;
1763 rname = talloc_asprintf(ctx,
1764 "%s%s",
1765 client_get_cur_dir(),
1766 CLI_DIRSEP_STR);
1767 if (!rname) {
1768 return 1;
1771 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1772 d_printf("put <filename>\n");
1773 return 1;
1776 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1777 rname = talloc_asprintf_append(rname, buf);
1778 } else {
1779 rname = talloc_asprintf_append(rname, lname);
1781 if (!rname) {
1782 return 1;
1785 rname = clean_name(ctx, rname);
1786 if (!rname) {
1787 return 1;
1791 SMB_STRUCT_STAT st;
1792 /* allow '-' to represent stdin
1793 jdblair, 24.jun.98 */
1794 if (!file_exist(lname,&st) &&
1795 (strcmp(lname,"-"))) {
1796 d_printf("%s does not exist\n",lname);
1797 return 1;
1801 return do_put(rname, lname, false);
1804 /*************************************
1805 File list structure.
1806 *************************************/
1808 static struct file_list {
1809 struct file_list *prev, *next;
1810 char *file_path;
1811 bool isdir;
1812 } *file_list;
1814 /****************************************************************************
1815 Free a file_list structure.
1816 ****************************************************************************/
1818 static void free_file_list (struct file_list *list_head)
1820 struct file_list *list, *next;
1822 for (list = list_head; list; list = next) {
1823 next = list->next;
1824 DLIST_REMOVE(list_head, list);
1825 SAFE_FREE(list->file_path);
1826 SAFE_FREE(list);
1830 /****************************************************************************
1831 Seek in a directory/file list until you get something that doesn't start with
1832 the specified name.
1833 ****************************************************************************/
1835 static bool seek_list(struct file_list *list, char *name)
1837 while (list) {
1838 trim_string(list->file_path,"./","\n");
1839 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1840 return true;
1842 list = list->next;
1845 return false;
1848 /****************************************************************************
1849 Set the file selection mask.
1850 ****************************************************************************/
1852 static int cmd_select(void)
1854 TALLOC_CTX *ctx = talloc_tos();
1855 char *new_fs = NULL;
1856 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1858 if (new_fs) {
1859 client_set_fileselection(new_fs);
1860 } else {
1861 client_set_fileselection("");
1863 return 0;
1866 /****************************************************************************
1867 Recursive file matching function act as find
1868 match must be always set to true when calling this function
1869 ****************************************************************************/
1871 static int file_find(struct file_list **list, const char *directory,
1872 const char *expression, bool match)
1874 SMB_STRUCT_DIR *dir;
1875 struct file_list *entry;
1876 struct stat statbuf;
1877 int ret;
1878 char *path;
1879 bool isdir;
1880 const char *dname;
1882 dir = sys_opendir(directory);
1883 if (!dir)
1884 return -1;
1886 while ((dname = readdirname(dir))) {
1887 if (!strcmp("..", dname))
1888 continue;
1889 if (!strcmp(".", dname))
1890 continue;
1892 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1893 continue;
1896 isdir = false;
1897 if (!match || !gen_fnmatch(expression, dname)) {
1898 if (recurse) {
1899 ret = stat(path, &statbuf);
1900 if (ret == 0) {
1901 if (S_ISDIR(statbuf.st_mode)) {
1902 isdir = true;
1903 ret = file_find(list, path, expression, false);
1905 } else {
1906 d_printf("file_find: cannot stat file %s\n", path);
1909 if (ret == -1) {
1910 SAFE_FREE(path);
1911 sys_closedir(dir);
1912 return -1;
1915 entry = SMB_MALLOC_P(struct file_list);
1916 if (!entry) {
1917 d_printf("Out of memory in file_find\n");
1918 sys_closedir(dir);
1919 return -1;
1921 entry->file_path = path;
1922 entry->isdir = isdir;
1923 DLIST_ADD(*list, entry);
1924 } else {
1925 SAFE_FREE(path);
1929 sys_closedir(dir);
1930 return 0;
1933 /****************************************************************************
1934 mput some files.
1935 ****************************************************************************/
1937 static int cmd_mput(void)
1939 TALLOC_CTX *ctx = talloc_tos();
1940 char *p = NULL;
1942 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1943 int ret;
1944 struct file_list *temp_list;
1945 char *quest, *lname, *rname;
1947 file_list = NULL;
1949 ret = file_find(&file_list, ".", p, true);
1950 if (ret) {
1951 free_file_list(file_list);
1952 continue;
1955 quest = NULL;
1956 lname = NULL;
1957 rname = NULL;
1959 for (temp_list = file_list; temp_list;
1960 temp_list = temp_list->next) {
1962 SAFE_FREE(lname);
1963 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1964 continue;
1966 trim_string(lname, "./", "/");
1968 /* check if it's a directory */
1969 if (temp_list->isdir) {
1970 /* if (!recurse) continue; */
1972 SAFE_FREE(quest);
1973 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1974 break;
1976 if (prompt && !yesno(quest)) { /* No */
1977 /* Skip the directory */
1978 lname[strlen(lname)-1] = '/';
1979 if (!seek_list(temp_list, lname))
1980 break;
1981 } else { /* Yes */
1982 SAFE_FREE(rname);
1983 if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) {
1984 break;
1986 string_replace(rname,'/','\\');
1987 if (!cli_chkpath(cli, rname) &&
1988 !do_mkdir(rname)) {
1989 DEBUG (0, ("Unable to make dir, skipping..."));
1990 /* Skip the directory */
1991 lname[strlen(lname)-1] = '/';
1992 if (!seek_list(temp_list, lname)) {
1993 break;
1997 continue;
1998 } else {
1999 SAFE_FREE(quest);
2000 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2001 break;
2003 if (prompt && !yesno(quest)) {
2004 /* No */
2005 continue;
2008 /* Yes */
2009 SAFE_FREE(rname);
2010 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) {
2011 break;
2015 string_replace(rname,'/','\\');
2017 do_put(rname, lname, false);
2019 free_file_list(file_list);
2020 SAFE_FREE(quest);
2021 SAFE_FREE(lname);
2022 SAFE_FREE(rname);
2025 return 0;
2028 /****************************************************************************
2029 Cancel a print job.
2030 ****************************************************************************/
2032 static int do_cancel(int job)
2034 if (cli_printjob_del(cli, job)) {
2035 d_printf("Job %d cancelled\n",job);
2036 return 0;
2037 } else {
2038 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2039 return 1;
2043 /****************************************************************************
2044 Cancel a print job.
2045 ****************************************************************************/
2047 static int cmd_cancel(void)
2049 TALLOC_CTX *ctx = talloc_tos();
2050 char *buf = NULL;
2051 int job;
2053 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2054 d_printf("cancel <jobid> ...\n");
2055 return 1;
2057 do {
2058 job = atoi(buf);
2059 do_cancel(job);
2060 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2062 return 0;
2065 /****************************************************************************
2066 Print a file.
2067 ****************************************************************************/
2069 static int cmd_print(void)
2071 TALLOC_CTX *ctx = talloc_tos();
2072 char *lname = NULL;
2073 char *rname = NULL;
2074 char *p = NULL;
2076 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2077 d_printf("print <filename>\n");
2078 return 1;
2081 rname = talloc_strdup(ctx, lname);
2082 if (!rname) {
2083 return 1;
2085 p = strrchr_m(rname,'/');
2086 if (p) {
2087 rname = talloc_asprintf(ctx,
2088 "%s-%d",
2089 p+1,
2090 (int)sys_getpid());
2092 if (strequal(lname,"-")) {
2093 rname = talloc_asprintf(ctx,
2094 "stdin-%d",
2095 (int)sys_getpid());
2097 if (!rname) {
2098 return 1;
2101 return do_put(rname, lname, false);
2104 /****************************************************************************
2105 Show a print queue entry.
2106 ****************************************************************************/
2108 static void queue_fn(struct print_job_info *p)
2110 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2113 /****************************************************************************
2114 Show a print queue.
2115 ****************************************************************************/
2117 static int cmd_queue(void)
2119 cli_print_queue(cli, queue_fn);
2120 return 0;
2123 /****************************************************************************
2124 Delete some files.
2125 ****************************************************************************/
2127 static void do_del(file_info *finfo, const char *dir)
2129 TALLOC_CTX *ctx = talloc_tos();
2130 char *mask = NULL;
2132 mask = talloc_asprintf(ctx,
2133 "%s%c%s",
2134 dir,
2135 CLI_DIRSEP_CHAR,
2136 finfo->name);
2137 if (!mask) {
2138 return;
2141 if (finfo->mode & aDIR) {
2142 TALLOC_FREE(mask);
2143 return;
2146 if (!cli_unlink(finfo->cli, mask)) {
2147 d_printf("%s deleting remote file %s\n",
2148 cli_errstr(finfo->cli),mask);
2150 TALLOC_FREE(mask);
2153 /****************************************************************************
2154 Delete some files.
2155 ****************************************************************************/
2157 static int cmd_del(void)
2159 TALLOC_CTX *ctx = talloc_tos();
2160 char *mask = NULL;
2161 char *buf = NULL;
2162 uint16 attribute = aSYSTEM | aHIDDEN;
2164 if (recurse) {
2165 attribute |= aDIR;
2168 mask = talloc_strdup(ctx, client_get_cur_dir());
2169 if (!mask) {
2170 return 1;
2172 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2173 d_printf("del <filename>\n");
2174 return 1;
2176 mask = talloc_asprintf_append(mask, buf);
2177 if (!mask) {
2178 return 1;
2181 do_list(mask,attribute,do_del,false,false);
2182 return 0;
2185 /****************************************************************************
2186 Wildcard delete some files.
2187 ****************************************************************************/
2189 static int cmd_wdel(void)
2191 TALLOC_CTX *ctx = talloc_tos();
2192 char *mask = NULL;
2193 char *buf = NULL;
2194 uint16 attribute;
2195 struct cli_state *targetcli;
2196 char *targetname = NULL;
2198 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2199 d_printf("wdel 0x<attrib> <wcard>\n");
2200 return 1;
2203 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2205 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2206 d_printf("wdel 0x<attrib> <wcard>\n");
2207 return 1;
2210 mask = talloc_asprintf(ctx, "%s%s",
2211 client_get_cur_dir(),
2212 buf);
2213 if (!mask) {
2214 return 1;
2217 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2218 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2219 return 1;
2222 if (!cli_unlink_full(targetcli, targetname, attribute)) {
2223 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2225 return 0;
2228 /****************************************************************************
2229 ****************************************************************************/
2231 static int cmd_open(void)
2233 TALLOC_CTX *ctx = talloc_tos();
2234 char *mask = NULL;
2235 char *buf = NULL;
2236 char *targetname = NULL;
2237 struct cli_state *targetcli;
2238 int fnum;
2240 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2241 d_printf("open <filename>\n");
2242 return 1;
2244 mask = talloc_asprintf(ctx,
2245 "%s%s",
2246 client_get_cur_dir(),
2247 buf);
2248 if (!mask) {
2249 return 1;
2252 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2253 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2254 return 1;
2257 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2258 if (fnum == -1) {
2259 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2260 if (fnum != -1) {
2261 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2262 } else {
2263 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2265 } else {
2266 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2268 return 0;
2271 static int cmd_posix_encrypt(void)
2273 TALLOC_CTX *ctx = talloc_tos();
2274 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2276 if (cli->use_kerberos) {
2277 status = cli_gss_smb_encryption_start(cli);
2278 } else {
2279 char *domain = NULL;
2280 char *user = NULL;
2281 char *password = NULL;
2283 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2284 d_printf("posix_encrypt domain user password\n");
2285 return 1;
2288 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2289 d_printf("posix_encrypt domain user password\n");
2290 return 1;
2293 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2294 d_printf("posix_encrypt domain user password\n");
2295 return 1;
2298 status = cli_raw_ntlm_smb_encryption_start(cli,
2299 user,
2300 password,
2301 domain);
2304 if (!NT_STATUS_IS_OK(status)) {
2305 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2306 } else {
2307 d_printf("encryption on\n");
2308 smb_encrypt = true;
2311 return 0;
2314 /****************************************************************************
2315 ****************************************************************************/
2317 static int cmd_posix_open(void)
2319 TALLOC_CTX *ctx = talloc_tos();
2320 char *mask = NULL;
2321 char *buf = NULL;
2322 char *targetname = NULL;
2323 struct cli_state *targetcli;
2324 mode_t mode;
2325 int fnum;
2327 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2328 d_printf("posix_open <filename> 0<mode>\n");
2329 return 1;
2331 mask = talloc_asprintf(ctx,
2332 "%s%s",
2333 client_get_cur_dir(),
2334 buf);
2335 if (!mask) {
2336 return 1;
2339 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2340 d_printf("posix_open <filename> 0<mode>\n");
2341 return 1;
2343 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2345 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2346 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2347 return 1;
2350 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2351 if (fnum == -1) {
2352 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2353 if (fnum != -1) {
2354 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2355 } else {
2356 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2358 } else {
2359 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2362 return 0;
2365 static int cmd_posix_mkdir(void)
2367 TALLOC_CTX *ctx = talloc_tos();
2368 char *mask = NULL;
2369 char *buf = NULL;
2370 char *targetname = NULL;
2371 struct cli_state *targetcli;
2372 mode_t mode;
2373 int fnum;
2375 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2376 d_printf("posix_mkdir <filename> 0<mode>\n");
2377 return 1;
2379 mask = talloc_asprintf(ctx,
2380 "%s%s",
2381 client_get_cur_dir(),
2382 buf);
2383 if (!mask) {
2384 return 1;
2387 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2388 d_printf("posix_mkdir <filename> 0<mode>\n");
2389 return 1;
2391 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2393 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2394 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2395 return 1;
2398 fnum = cli_posix_mkdir(targetcli, targetname, mode);
2399 if (fnum == -1) {
2400 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2401 } else {
2402 d_printf("posix_mkdir created directory %s\n", targetname);
2404 return 0;
2407 static int cmd_posix_unlink(void)
2409 TALLOC_CTX *ctx = talloc_tos();
2410 char *mask = NULL;
2411 char *buf = NULL;
2412 char *targetname = NULL;
2413 struct cli_state *targetcli;
2415 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2416 d_printf("posix_unlink <filename>\n");
2417 return 1;
2419 mask = talloc_asprintf(ctx,
2420 "%s%s",
2421 client_get_cur_dir(),
2422 buf);
2423 if (!mask) {
2424 return 1;
2427 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2428 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2429 return 1;
2432 if (!cli_posix_unlink(targetcli, targetname)) {
2433 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2434 } else {
2435 d_printf("posix_unlink deleted file %s\n", targetname);
2438 return 0;
2441 static int cmd_posix_rmdir(void)
2443 TALLOC_CTX *ctx = talloc_tos();
2444 char *mask = NULL;
2445 char *buf = NULL;
2446 char *targetname = NULL;
2447 struct cli_state *targetcli;
2449 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2450 d_printf("posix_rmdir <filename>\n");
2451 return 1;
2453 mask = talloc_asprintf(ctx,
2454 "%s%s",
2455 client_get_cur_dir(),
2456 buf);
2457 if (!mask) {
2458 return 1;
2461 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2462 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2463 return 1;
2466 if (!cli_posix_rmdir(targetcli, targetname)) {
2467 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2468 } else {
2469 d_printf("posix_rmdir deleted directory %s\n", targetname);
2472 return 0;
2475 static int cmd_close(void)
2477 TALLOC_CTX *ctx = talloc_tos();
2478 char *buf = NULL;
2479 int fnum;
2481 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2482 d_printf("close <fnum>\n");
2483 return 1;
2486 fnum = atoi(buf);
2487 /* We really should use the targetcli here.... */
2488 if (!cli_close(cli, fnum)) {
2489 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2490 return 1;
2492 return 0;
2495 static int cmd_posix(void)
2497 TALLOC_CTX *ctx = talloc_tos();
2498 uint16 major, minor;
2499 uint32 caplow, caphigh;
2500 char *caps;
2502 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2503 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2504 return 1;
2507 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2508 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2509 return 1;
2512 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2514 caps = talloc_strdup(ctx, "");
2515 if (!caps) {
2516 return 1;
2518 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2519 caps = talloc_asprintf_append(caps, "locks ");
2520 if (!caps) {
2521 return 1;
2524 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2525 caps = talloc_asprintf_append(caps, "acls ");
2526 if (!caps) {
2527 return 1;
2530 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2531 caps = talloc_asprintf_append(caps, "eas ");
2532 if (!caps) {
2533 return 1;
2536 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2537 caps = talloc_asprintf_append(caps, "pathnames ");
2538 if (!caps) {
2539 return 1;
2542 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2543 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2544 if (!caps) {
2545 return 1;
2548 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2549 caps = talloc_asprintf_append(caps, "large_read ");
2550 if (!caps) {
2551 return 1;
2554 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2555 caps = talloc_asprintf_append(caps, "large_write ");
2556 if (!caps) {
2557 return 1;
2560 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2561 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2562 if (!caps) {
2563 return 1;
2566 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2567 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2568 if (!caps) {
2569 return 1;
2573 if (*caps && caps[strlen(caps)-1] == ' ') {
2574 caps[strlen(caps)-1] = '\0';
2577 d_printf("Server supports CIFS capabilities %s\n", caps);
2579 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2580 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2581 return 1;
2584 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2585 CLI_DIRSEP_CHAR = '/';
2586 *CLI_DIRSEP_STR = '/';
2587 client_set_cur_dir(CLI_DIRSEP_STR);
2590 return 0;
2593 static int cmd_lock(void)
2595 TALLOC_CTX *ctx = talloc_tos();
2596 char *buf = NULL;
2597 SMB_BIG_UINT start, len;
2598 enum brl_type lock_type;
2599 int fnum;
2601 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2602 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2603 return 1;
2605 fnum = atoi(buf);
2607 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2608 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2609 return 1;
2612 if (*buf == 'r' || *buf == 'R') {
2613 lock_type = READ_LOCK;
2614 } else if (*buf == 'w' || *buf == 'W') {
2615 lock_type = WRITE_LOCK;
2616 } else {
2617 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2618 return 1;
2621 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2622 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2623 return 1;
2626 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2628 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2629 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2630 return 1;
2633 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2635 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2636 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2639 return 0;
2642 static int cmd_unlock(void)
2644 TALLOC_CTX *ctx = talloc_tos();
2645 char *buf = NULL;
2646 SMB_BIG_UINT start, len;
2647 int fnum;
2649 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2650 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2651 return 1;
2653 fnum = atoi(buf);
2655 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2656 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2657 return 1;
2660 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2662 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2663 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2664 return 1;
2667 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2669 if (!cli_posix_unlock(cli, fnum, start, len)) {
2670 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2673 return 0;
2677 /****************************************************************************
2678 Remove a directory.
2679 ****************************************************************************/
2681 static int cmd_rmdir(void)
2683 TALLOC_CTX *ctx = talloc_tos();
2684 char *mask = NULL;
2685 char *buf = NULL;
2686 char *targetname = NULL;
2687 struct cli_state *targetcli;
2689 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2690 d_printf("rmdir <dirname>\n");
2691 return 1;
2693 mask = talloc_asprintf(ctx,
2694 "%s%s",
2695 client_get_cur_dir(),
2696 buf);
2697 if (!mask) {
2698 return 1;
2701 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2702 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2703 return 1;
2706 if (!cli_rmdir(targetcli, targetname)) {
2707 d_printf("%s removing remote directory file %s\n",
2708 cli_errstr(targetcli),mask);
2711 return 0;
2714 /****************************************************************************
2715 UNIX hardlink.
2716 ****************************************************************************/
2718 static int cmd_link(void)
2720 TALLOC_CTX *ctx = talloc_tos();
2721 char *oldname = NULL;
2722 char *newname = NULL;
2723 char *buf = NULL;
2724 char *buf2 = NULL;
2725 char *targetname = NULL;
2726 struct cli_state *targetcli;
2728 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2729 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2730 d_printf("link <oldname> <newname>\n");
2731 return 1;
2733 oldname = talloc_asprintf(ctx,
2734 "%s%s",
2735 client_get_cur_dir(),
2736 buf);
2737 if (!oldname) {
2738 return 1;
2740 newname = talloc_asprintf(ctx,
2741 "%s%s",
2742 client_get_cur_dir(),
2743 buf2);
2744 if (!newname) {
2745 return 1;
2748 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2749 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2750 return 1;
2753 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2754 d_printf("Server doesn't support UNIX CIFS calls.\n");
2755 return 1;
2758 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2759 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2760 return 1;
2762 return 0;
2765 /****************************************************************************
2766 UNIX symlink.
2767 ****************************************************************************/
2769 static int cmd_symlink(void)
2771 TALLOC_CTX *ctx = talloc_tos();
2772 char *oldname = NULL;
2773 char *newname = NULL;
2774 char *buf = NULL;
2775 char *buf2 = NULL;
2776 char *targetname = NULL;
2777 struct cli_state *targetcli;
2779 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2780 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2781 d_printf("symlink <oldname> <newname>\n");
2782 return 1;
2784 oldname = talloc_asprintf(ctx,
2785 "%s%s",
2786 client_get_cur_dir(),
2787 buf);
2788 if (!oldname) {
2789 return 1;
2791 newname = talloc_asprintf(ctx,
2792 "%s%s",
2793 client_get_cur_dir(),
2794 buf2);
2795 if (!newname) {
2796 return 1;
2799 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2800 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2801 return 1;
2804 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2805 d_printf("Server doesn't support UNIX CIFS calls.\n");
2806 return 1;
2809 if (!cli_unix_symlink(targetcli, targetname, newname)) {
2810 d_printf("%s symlinking files (%s -> %s)\n",
2811 cli_errstr(targetcli), newname, targetname);
2812 return 1;
2815 return 0;
2818 /****************************************************************************
2819 UNIX chmod.
2820 ****************************************************************************/
2822 static int cmd_chmod(void)
2824 TALLOC_CTX *ctx = talloc_tos();
2825 char *src = NULL;
2826 char *buf = NULL;
2827 char *buf2 = NULL;
2828 char *targetname = NULL;
2829 struct cli_state *targetcli;
2830 mode_t mode;
2832 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2833 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2834 d_printf("chmod mode file\n");
2835 return 1;
2837 src = talloc_asprintf(ctx,
2838 "%s%s",
2839 client_get_cur_dir(),
2840 buf2);
2841 if (!src) {
2842 return 1;
2845 mode = (mode_t)strtol(buf, NULL, 8);
2847 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2848 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2849 return 1;
2852 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2853 d_printf("Server doesn't support UNIX CIFS calls.\n");
2854 return 1;
2857 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2858 d_printf("%s chmod file %s 0%o\n",
2859 cli_errstr(targetcli), src, (unsigned int)mode);
2860 return 1;
2863 return 0;
2866 static const char *filetype_to_str(mode_t mode)
2868 if (S_ISREG(mode)) {
2869 return "regular file";
2870 } else if (S_ISDIR(mode)) {
2871 return "directory";
2872 } else
2873 #ifdef S_ISCHR
2874 if (S_ISCHR(mode)) {
2875 return "character device";
2876 } else
2877 #endif
2878 #ifdef S_ISBLK
2879 if (S_ISBLK(mode)) {
2880 return "block device";
2881 } else
2882 #endif
2883 #ifdef S_ISFIFO
2884 if (S_ISFIFO(mode)) {
2885 return "fifo";
2886 } else
2887 #endif
2888 #ifdef S_ISLNK
2889 if (S_ISLNK(mode)) {
2890 return "symbolic link";
2891 } else
2892 #endif
2893 #ifdef S_ISSOCK
2894 if (S_ISSOCK(mode)) {
2895 return "socket";
2896 } else
2897 #endif
2898 return "";
2901 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2903 if (m & bt) {
2904 return ret;
2905 } else {
2906 return '-';
2910 static char *unix_mode_to_str(char *s, mode_t m)
2912 char *p = s;
2913 const char *str = filetype_to_str(m);
2915 switch(str[0]) {
2916 case 'd':
2917 *p++ = 'd';
2918 break;
2919 case 'c':
2920 *p++ = 'c';
2921 break;
2922 case 'b':
2923 *p++ = 'b';
2924 break;
2925 case 'f':
2926 *p++ = 'p';
2927 break;
2928 case 's':
2929 *p++ = str[1] == 'y' ? 'l' : 's';
2930 break;
2931 case 'r':
2932 default:
2933 *p++ = '-';
2934 break;
2936 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2937 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2938 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2939 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2940 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2941 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2942 *p++ = rwx_to_str(m, S_IROTH, 'r');
2943 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2944 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2945 *p++ = '\0';
2946 return s;
2949 /****************************************************************************
2950 Utility function for UNIX getfacl.
2951 ****************************************************************************/
2953 static char *perms_to_string(fstring permstr, unsigned char perms)
2955 fstrcpy(permstr, "---");
2956 if (perms & SMB_POSIX_ACL_READ) {
2957 permstr[0] = 'r';
2959 if (perms & SMB_POSIX_ACL_WRITE) {
2960 permstr[1] = 'w';
2962 if (perms & SMB_POSIX_ACL_EXECUTE) {
2963 permstr[2] = 'x';
2965 return permstr;
2968 /****************************************************************************
2969 UNIX getfacl.
2970 ****************************************************************************/
2972 static int cmd_getfacl(void)
2974 TALLOC_CTX *ctx = talloc_tos();
2975 char *src = NULL;
2976 char *name = NULL;
2977 char *targetname = NULL;
2978 struct cli_state *targetcli;
2979 uint16 major, minor;
2980 uint32 caplow, caphigh;
2981 char *retbuf = NULL;
2982 size_t rb_size = 0;
2983 SMB_STRUCT_STAT sbuf;
2984 uint16 num_file_acls = 0;
2985 uint16 num_dir_acls = 0;
2986 uint16 i;
2988 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2989 d_printf("getfacl filename\n");
2990 return 1;
2992 src = talloc_asprintf(ctx,
2993 "%s%s",
2994 client_get_cur_dir(),
2995 name);
2996 if (!src) {
2997 return 1;
3000 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3001 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3002 return 1;
3005 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3006 d_printf("Server doesn't support UNIX CIFS calls.\n");
3007 return 1;
3010 if (!cli_unix_extensions_version(targetcli, &major, &minor,
3011 &caplow, &caphigh)) {
3012 d_printf("Can't get UNIX CIFS version from server.\n");
3013 return 1;
3016 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3017 d_printf("This server supports UNIX extensions "
3018 "but doesn't support POSIX ACLs.\n");
3019 return 1;
3022 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3023 d_printf("%s getfacl doing a stat on file %s\n",
3024 cli_errstr(targetcli), src);
3025 return 1;
3028 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
3029 d_printf("%s getfacl file %s\n",
3030 cli_errstr(targetcli), src);
3031 return 1;
3034 /* ToDo : Print out the ACL values. */
3035 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3036 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3037 src, (unsigned int)CVAL(retbuf,0) );
3038 SAFE_FREE(retbuf);
3039 return 1;
3042 num_file_acls = SVAL(retbuf,2);
3043 num_dir_acls = SVAL(retbuf,4);
3044 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3045 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3046 src,
3047 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3048 (unsigned int)rb_size);
3050 SAFE_FREE(retbuf);
3051 return 1;
3054 d_printf("# file: %s\n", src);
3055 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3057 if (num_file_acls == 0 && num_dir_acls == 0) {
3058 d_printf("No acls found.\n");
3061 for (i = 0; i < num_file_acls; i++) {
3062 uint32 uorg;
3063 fstring permstring;
3064 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3065 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3067 switch(tagtype) {
3068 case SMB_POSIX_ACL_USER_OBJ:
3069 d_printf("user::");
3070 break;
3071 case SMB_POSIX_ACL_USER:
3072 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3073 d_printf("user:%u:", uorg);
3074 break;
3075 case SMB_POSIX_ACL_GROUP_OBJ:
3076 d_printf("group::");
3077 break;
3078 case SMB_POSIX_ACL_GROUP:
3079 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3080 d_printf("group:%u", uorg);
3081 break;
3082 case SMB_POSIX_ACL_MASK:
3083 d_printf("mask::");
3084 break;
3085 case SMB_POSIX_ACL_OTHER:
3086 d_printf("other::");
3087 break;
3088 default:
3089 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3090 src, (unsigned int)tagtype );
3091 SAFE_FREE(retbuf);
3092 return 1;
3095 d_printf("%s\n", perms_to_string(permstring, perms));
3098 for (i = 0; i < num_dir_acls; i++) {
3099 uint32 uorg;
3100 fstring permstring;
3101 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3102 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3104 switch(tagtype) {
3105 case SMB_POSIX_ACL_USER_OBJ:
3106 d_printf("default:user::");
3107 break;
3108 case SMB_POSIX_ACL_USER:
3109 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3110 d_printf("default:user:%u:", uorg);
3111 break;
3112 case SMB_POSIX_ACL_GROUP_OBJ:
3113 d_printf("default:group::");
3114 break;
3115 case SMB_POSIX_ACL_GROUP:
3116 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3117 d_printf("default:group:%u", uorg);
3118 break;
3119 case SMB_POSIX_ACL_MASK:
3120 d_printf("default:mask::");
3121 break;
3122 case SMB_POSIX_ACL_OTHER:
3123 d_printf("default:other::");
3124 break;
3125 default:
3126 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3127 src, (unsigned int)tagtype );
3128 SAFE_FREE(retbuf);
3129 return 1;
3132 d_printf("%s\n", perms_to_string(permstring, perms));
3135 SAFE_FREE(retbuf);
3136 return 0;
3139 /****************************************************************************
3140 UNIX stat.
3141 ****************************************************************************/
3143 static int cmd_stat(void)
3145 TALLOC_CTX *ctx = talloc_tos();
3146 char *src = NULL;
3147 char *name = NULL;
3148 char *targetname = NULL;
3149 struct cli_state *targetcli;
3150 fstring mode_str;
3151 SMB_STRUCT_STAT sbuf;
3152 struct tm *lt;
3154 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3155 d_printf("stat file\n");
3156 return 1;
3158 src = talloc_asprintf(ctx,
3159 "%s%s",
3160 client_get_cur_dir(),
3161 name);
3162 if (!src) {
3163 return 1;
3166 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3167 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3168 return 1;
3171 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3172 d_printf("Server doesn't support UNIX CIFS calls.\n");
3173 return 1;
3176 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3177 d_printf("%s stat file %s\n",
3178 cli_errstr(targetcli), src);
3179 return 1;
3182 /* Print out the stat values. */
3183 d_printf("File: %s\n", src);
3184 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3185 (double)sbuf.st_size,
3186 (unsigned int)sbuf.st_blocks,
3187 filetype_to_str(sbuf.st_mode));
3189 #if defined(S_ISCHR) && defined(S_ISBLK)
3190 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3191 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3192 (double)sbuf.st_ino,
3193 (unsigned int)sbuf.st_nlink,
3194 unix_dev_major(sbuf.st_rdev),
3195 unix_dev_minor(sbuf.st_rdev));
3196 } else
3197 #endif
3198 d_printf("Inode: %.0f\tLinks: %u\n",
3199 (double)sbuf.st_ino,
3200 (unsigned int)sbuf.st_nlink);
3202 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3203 ((int)sbuf.st_mode & 0777),
3204 unix_mode_to_str(mode_str, sbuf.st_mode),
3205 (unsigned int)sbuf.st_uid,
3206 (unsigned int)sbuf.st_gid);
3208 lt = localtime(&sbuf.st_atime);
3209 if (lt) {
3210 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3211 } else {
3212 fstrcpy(mode_str, "unknown");
3214 d_printf("Access: %s\n", mode_str);
3216 lt = localtime(&sbuf.st_mtime);
3217 if (lt) {
3218 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3219 } else {
3220 fstrcpy(mode_str, "unknown");
3222 d_printf("Modify: %s\n", mode_str);
3224 lt = localtime(&sbuf.st_ctime);
3225 if (lt) {
3226 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3227 } else {
3228 fstrcpy(mode_str, "unknown");
3230 d_printf("Change: %s\n", mode_str);
3232 return 0;
3236 /****************************************************************************
3237 UNIX chown.
3238 ****************************************************************************/
3240 static int cmd_chown(void)
3242 TALLOC_CTX *ctx = talloc_tos();
3243 char *src = NULL;
3244 uid_t uid;
3245 gid_t gid;
3246 char *buf, *buf2, *buf3;
3247 struct cli_state *targetcli;
3248 char *targetname = NULL;
3250 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3251 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3252 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3253 d_printf("chown uid gid file\n");
3254 return 1;
3257 uid = (uid_t)atoi(buf);
3258 gid = (gid_t)atoi(buf2);
3260 src = talloc_asprintf(ctx,
3261 "%s%s",
3262 client_get_cur_dir(),
3263 buf3);
3264 if (!src) {
3265 return 1;
3267 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3268 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3269 return 1;
3272 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3273 d_printf("Server doesn't support UNIX CIFS calls.\n");
3274 return 1;
3277 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3278 d_printf("%s chown file %s uid=%d, gid=%d\n",
3279 cli_errstr(targetcli), src, (int)uid, (int)gid);
3280 return 1;
3283 return 0;
3286 /****************************************************************************
3287 Rename some file.
3288 ****************************************************************************/
3290 static int cmd_rename(void)
3292 TALLOC_CTX *ctx = talloc_tos();
3293 char *src, *dest;
3294 char *buf, *buf2;
3295 struct cli_state *targetcli;
3296 char *targetsrc;
3297 char *targetdest;
3299 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3300 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3301 d_printf("rename <src> <dest>\n");
3302 return 1;
3305 src = talloc_asprintf(ctx,
3306 "%s%s",
3307 client_get_cur_dir(),
3308 buf);
3309 if (!src) {
3310 return 1;
3313 dest = talloc_asprintf(ctx,
3314 "%s%s",
3315 client_get_cur_dir(),
3316 buf2);
3317 if (!dest) {
3318 return 1;
3321 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3322 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3323 return 1;
3326 if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3327 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3328 return 1;
3331 if (!cli_rename(targetcli, targetsrc, targetdest)) {
3332 d_printf("%s renaming files %s -> %s \n",
3333 cli_errstr(targetcli),
3334 targetsrc,
3335 targetdest);
3336 return 1;
3339 return 0;
3342 /****************************************************************************
3343 Print the volume name.
3344 ****************************************************************************/
3346 static int cmd_volume(void)
3348 fstring volname;
3349 uint32 serial_num;
3350 time_t create_date;
3352 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3353 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3354 return 1;
3357 d_printf("Volume: |%s| serial number 0x%x\n",
3358 volname, (unsigned int)serial_num);
3359 return 0;
3362 /****************************************************************************
3363 Hard link files using the NT call.
3364 ****************************************************************************/
3366 static int cmd_hardlink(void)
3368 TALLOC_CTX *ctx = talloc_tos();
3369 char *src, *dest;
3370 char *buf, *buf2;
3371 struct cli_state *targetcli;
3372 char *targetname;
3374 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3375 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3376 d_printf("hardlink <src> <dest>\n");
3377 return 1;
3380 src = talloc_asprintf(ctx,
3381 "%s%s",
3382 client_get_cur_dir(),
3383 buf);
3384 if (!src) {
3385 return 1;
3388 dest = talloc_asprintf(ctx,
3389 "%s%s",
3390 client_get_cur_dir(),
3391 buf2);
3392 if (!dest) {
3393 return 1;
3396 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3397 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3398 return 1;
3401 if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3402 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3403 return 1;
3406 return 0;
3409 /****************************************************************************
3410 Toggle the prompt flag.
3411 ****************************************************************************/
3413 static int cmd_prompt(void)
3415 prompt = !prompt;
3416 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3417 return 1;
3420 /****************************************************************************
3421 Set the newer than time.
3422 ****************************************************************************/
3424 static int cmd_newer(void)
3426 TALLOC_CTX *ctx = talloc_tos();
3427 char *buf;
3428 bool ok;
3429 SMB_STRUCT_STAT sbuf;
3431 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3432 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3433 newer_than = sbuf.st_mtime;
3434 DEBUG(1,("Getting files newer than %s",
3435 time_to_asc(newer_than)));
3436 } else {
3437 newer_than = 0;
3440 if (ok && newer_than == 0) {
3441 d_printf("Error setting newer-than time\n");
3442 return 1;
3445 return 0;
3448 /****************************************************************************
3449 Set the archive level.
3450 ****************************************************************************/
3452 static int cmd_archive(void)
3454 TALLOC_CTX *ctx = talloc_tos();
3455 char *buf;
3457 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3458 archive_level = atoi(buf);
3459 } else {
3460 d_printf("Archive level is %d\n",archive_level);
3463 return 0;
3466 /****************************************************************************
3467 Toggle the lowercaseflag.
3468 ****************************************************************************/
3470 static int cmd_lowercase(void)
3472 lowercase = !lowercase;
3473 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3474 return 0;
3477 /****************************************************************************
3478 Toggle the case sensitive flag.
3479 ****************************************************************************/
3481 static int cmd_setcase(void)
3483 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3485 cli_set_case_sensitive(cli, !orig_case_sensitive);
3486 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3487 "on":"off"));
3488 return 0;
3491 /****************************************************************************
3492 Toggle the showacls flag.
3493 ****************************************************************************/
3495 static int cmd_showacls(void)
3497 showacls = !showacls;
3498 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3499 return 0;
3503 /****************************************************************************
3504 Toggle the recurse flag.
3505 ****************************************************************************/
3507 static int cmd_recurse(void)
3509 recurse = !recurse;
3510 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3511 return 0;
3514 /****************************************************************************
3515 Toggle the translate flag.
3516 ****************************************************************************/
3518 static int cmd_translate(void)
3520 translation = !translation;
3521 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3522 translation?"on":"off"));
3523 return 0;
3526 /****************************************************************************
3527 Do the lcd command.
3528 ****************************************************************************/
3530 static int cmd_lcd(void)
3532 TALLOC_CTX *ctx = talloc_tos();
3533 char *buf;
3534 char *d;
3536 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3537 chdir(buf);
3539 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3540 if (!d) {
3541 return 1;
3543 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3544 return 0;
3547 /****************************************************************************
3548 Get a file restarting at end of local file.
3549 ****************************************************************************/
3551 static int cmd_reget(void)
3553 TALLOC_CTX *ctx = talloc_tos();
3554 char *local_name = NULL;
3555 char *remote_name = NULL;
3556 char *fname = NULL;
3557 char *p = NULL;
3559 remote_name = talloc_asprintf(ctx,
3560 "%s%s",
3561 client_get_cur_dir(),
3562 CLI_DIRSEP_STR);
3563 if (!remote_name) {
3564 return 1;
3567 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3568 d_printf("reget <filename>\n");
3569 return 1;
3571 remote_name = talloc_asprintf_append(remote_name, fname);
3572 if (!remote_name) {
3573 return 1;
3575 remote_name = clean_name(ctx,remote_name);
3576 if (!remote_name) {
3577 return 1;
3580 local_name = fname;
3581 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3582 if (p) {
3583 local_name = p;
3586 return do_get(remote_name, local_name, true);
3589 /****************************************************************************
3590 Put a file restarting at end of local file.
3591 ****************************************************************************/
3593 static int cmd_reput(void)
3595 TALLOC_CTX *ctx = talloc_tos();
3596 char *local_name = NULL;
3597 char *remote_name = NULL;
3598 char *buf;
3599 SMB_STRUCT_STAT st;
3601 remote_name = talloc_asprintf(ctx,
3602 "%s%s",
3603 client_get_cur_dir(),
3604 CLI_DIRSEP_STR);
3605 if (!remote_name) {
3606 return 1;
3609 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3610 d_printf("reput <filename>\n");
3611 return 1;
3614 if (!file_exist(local_name, &st)) {
3615 d_printf("%s does not exist\n", local_name);
3616 return 1;
3619 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3620 remote_name = talloc_asprintf_append(remote_name,
3621 buf);
3622 } else {
3623 remote_name = talloc_asprintf_append(remote_name,
3624 local_name);
3626 if (!remote_name) {
3627 return 1;
3630 remote_name = clean_name(ctx, remote_name);
3631 if (!remote_name) {
3632 return 1;
3635 return do_put(remote_name, local_name, true);
3638 /****************************************************************************
3639 List a share name.
3640 ****************************************************************************/
3642 static void browse_fn(const char *name, uint32 m,
3643 const char *comment, void *state)
3645 const char *typestr = "";
3647 switch (m & 7) {
3648 case STYPE_DISKTREE:
3649 typestr = "Disk";
3650 break;
3651 case STYPE_PRINTQ:
3652 typestr = "Printer";
3653 break;
3654 case STYPE_DEVICE:
3655 typestr = "Device";
3656 break;
3657 case STYPE_IPC:
3658 typestr = "IPC";
3659 break;
3661 /* FIXME: If the remote machine returns non-ascii characters
3662 in any of these fields, they can corrupt the output. We
3663 should remove them. */
3664 if (!grepable) {
3665 d_printf("\t%-15s %-10.10s%s\n",
3666 name,typestr,comment);
3667 } else {
3668 d_printf ("%s|%s|%s\n",typestr,name,comment);
3672 static bool browse_host_rpc(bool sort)
3674 NTSTATUS status;
3675 struct rpc_pipe_client *pipe_hnd;
3676 TALLOC_CTX *frame = talloc_stackframe();
3677 ENUM_HND enum_hnd;
3678 WERROR werr;
3679 SRV_SHARE_INFO_CTR ctr;
3680 int i;
3682 init_enum_hnd(&enum_hnd, 0);
3684 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SRVSVC, &status);
3686 if (pipe_hnd == NULL) {
3687 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3688 nt_errstr(status)));
3689 TALLOC_FREE(frame);
3690 return false;
3693 werr = rpccli_srvsvc_net_share_enum(pipe_hnd, frame, 1, &ctr,
3694 0xffffffff, &enum_hnd);
3696 if (!W_ERROR_IS_OK(werr)) {
3697 cli_rpc_pipe_close(pipe_hnd);
3698 TALLOC_FREE(frame);
3699 return false;
3702 for (i=0; i<ctr.num_entries; i++) {
3703 SRV_SHARE_INFO_1 *info = &ctr.share.info1[i];
3704 char *name, *comment;
3705 name = rpcstr_pull_unistr2_talloc(
3706 frame, &info->info_1_str.uni_netname);
3707 comment = rpcstr_pull_unistr2_talloc(
3708 frame, &info->info_1_str.uni_remark);
3709 browse_fn(name, info->info_1.type, comment, NULL);
3712 cli_rpc_pipe_close(pipe_hnd);
3713 TALLOC_FREE(frame);
3714 return true;
3717 /****************************************************************************
3718 Try and browse available connections on a host.
3719 ****************************************************************************/
3721 static bool browse_host(bool sort)
3723 int ret;
3724 if (!grepable) {
3725 d_printf("\n\tSharename Type Comment\n");
3726 d_printf("\t--------- ---- -------\n");
3729 if (browse_host_rpc(sort)) {
3730 return true;
3733 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3734 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3736 return (ret != -1);
3739 /****************************************************************************
3740 List a server name.
3741 ****************************************************************************/
3743 static void server_fn(const char *name, uint32 m,
3744 const char *comment, void *state)
3747 if (!grepable){
3748 d_printf("\t%-16s %s\n", name, comment);
3749 } else {
3750 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3754 /****************************************************************************
3755 Try and browse available connections on a host.
3756 ****************************************************************************/
3758 static bool list_servers(const char *wk_grp)
3760 fstring state;
3762 if (!cli->server_domain)
3763 return false;
3765 if (!grepable) {
3766 d_printf("\n\tServer Comment\n");
3767 d_printf("\t--------- -------\n");
3769 fstrcpy( state, "Server" );
3770 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3771 state);
3773 if (!grepable) {
3774 d_printf("\n\tWorkgroup Master\n");
3775 d_printf("\t--------- -------\n");
3778 fstrcpy( state, "Workgroup" );
3779 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3780 server_fn, state);
3781 return true;
3784 /****************************************************************************
3785 Print or set current VUID
3786 ****************************************************************************/
3788 static int cmd_vuid(void)
3790 TALLOC_CTX *ctx = talloc_tos();
3791 char *buf;
3793 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3794 d_printf("Current VUID is %d\n", cli->vuid);
3795 return 0;
3798 cli->vuid = atoi(buf);
3799 return 0;
3802 /****************************************************************************
3803 Setup a new VUID, by issuing a session setup
3804 ****************************************************************************/
3806 static int cmd_logon(void)
3808 TALLOC_CTX *ctx = talloc_tos();
3809 char *l_username, *l_password;
3811 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3812 d_printf("logon <username> [<password>]\n");
3813 return 0;
3816 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3817 char *pass = getpass("Password: ");
3818 if (pass) {
3819 l_password = talloc_strdup(ctx,pass);
3822 if (!l_password) {
3823 return 1;
3826 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3827 l_password, strlen(l_password),
3828 l_password, strlen(l_password),
3829 lp_workgroup()))) {
3830 d_printf("session setup failed: %s\n", cli_errstr(cli));
3831 return -1;
3834 d_printf("Current VUID is %d\n", cli->vuid);
3835 return 0;
3839 /****************************************************************************
3840 list active connections
3841 ****************************************************************************/
3843 static int cmd_list_connect(void)
3845 cli_cm_display();
3846 return 0;
3849 /****************************************************************************
3850 display the current active client connection
3851 ****************************************************************************/
3853 static int cmd_show_connect( void )
3855 TALLOC_CTX *ctx = talloc_tos();
3856 struct cli_state *targetcli;
3857 char *targetpath;
3859 if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3860 &targetcli, &targetpath ) ) {
3861 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3862 return 1;
3865 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3866 return 0;
3869 /****************************************************************************
3870 iosize command
3871 ***************************************************************************/
3873 int cmd_iosize(void)
3875 TALLOC_CTX *ctx = talloc_tos();
3876 char *buf;
3877 int iosize;
3879 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3880 if (!smb_encrypt) {
3881 d_printf("iosize <n> or iosize 0x<n>. "
3882 "Minimum is 16384 (0x4000), "
3883 "max is 16776960 (0xFFFF00)\n");
3884 } else {
3885 d_printf("iosize <n> or iosize 0x<n>. "
3886 "(Encrypted connection) ,"
3887 "Minimum is 16384 (0x4000), "
3888 "max is 130048 (0x1FC00)\n");
3890 return 1;
3893 iosize = strtol(buf,NULL,0);
3894 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3895 d_printf("iosize out of range for encrypted "
3896 "connection (min = 16384 (0x4000), "
3897 "max = 130048 (0x1FC00)");
3898 return 1;
3899 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3900 d_printf("iosize out of range (min = 16384 (0x4000), "
3901 "max = 16776960 (0xFFFF00)");
3902 return 1;
3905 io_bufsize = iosize;
3906 d_printf("iosize is now %d\n", io_bufsize);
3907 return 0;
3911 /* Some constants for completing filename arguments */
3913 #define COMPL_NONE 0 /* No completions */
3914 #define COMPL_REMOTE 1 /* Complete remote filename */
3915 #define COMPL_LOCAL 2 /* Complete local filename */
3917 /* This defines the commands supported by this client.
3918 * NOTE: The "!" must be the last one in the list because it's fn pointer
3919 * field is NULL, and NULL in that field is used in process_tok()
3920 * (below) to indicate the end of the list. crh
3922 static struct {
3923 const char *name;
3924 int (*fn)(void);
3925 const char *description;
3926 char compl_args[2]; /* Completion argument info */
3927 } commands[] = {
3928 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3929 {"allinfo",cmd_allinfo,"<file> show all available info",
3930 {COMPL_NONE,COMPL_NONE}},
3931 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3932 {"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}},
3933 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3934 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3935 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3936 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3937 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3938 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3939 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3940 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3941 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3942 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3943 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3944 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3945 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3946 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3947 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3948 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3949 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3950 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3951 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3952 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3953 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3954 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3955 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3956 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3957 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3958 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3959 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3960 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3961 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3962 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3963 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3964 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3965 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3966 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3967 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3968 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3969 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3970 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3971 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3972 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3973 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3974 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3975 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3976 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3977 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3978 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3979 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3980 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3981 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3982 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3983 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3984 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3985 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3986 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3987 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3988 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3989 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3990 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3991 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3992 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3993 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3994 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3995 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3996 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3997 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3998 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3999 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4001 /* Yes, this must be here, see crh's comment above. */
4002 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4003 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4006 /*******************************************************************
4007 Lookup a command string in the list of commands, including
4008 abbreviations.
4009 ******************************************************************/
4011 static int process_tok(char *tok)
4013 int i = 0, matches = 0;
4014 int cmd=0;
4015 int tok_len = strlen(tok);
4017 while (commands[i].fn != NULL) {
4018 if (strequal(commands[i].name,tok)) {
4019 matches = 1;
4020 cmd = i;
4021 break;
4022 } else if (strnequal(commands[i].name, tok, tok_len)) {
4023 matches++;
4024 cmd = i;
4026 i++;
4029 if (matches == 0)
4030 return(-1);
4031 else if (matches == 1)
4032 return(cmd);
4033 else
4034 return(-2);
4037 /****************************************************************************
4038 Help.
4039 ****************************************************************************/
4041 static int cmd_help(void)
4043 TALLOC_CTX *ctx = talloc_tos();
4044 int i=0,j;
4045 char *buf;
4047 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4048 if ((i = process_tok(buf)) >= 0)
4049 d_printf("HELP %s:\n\t%s\n\n",
4050 commands[i].name,commands[i].description);
4051 } else {
4052 while (commands[i].description) {
4053 for (j=0; commands[i].description && (j<5); j++) {
4054 d_printf("%-15s",commands[i].name);
4055 i++;
4057 d_printf("\n");
4060 return 0;
4063 /****************************************************************************
4064 Process a -c command string.
4065 ****************************************************************************/
4067 static int process_command_string(const char *cmd_in)
4069 TALLOC_CTX *ctx = talloc_tos();
4070 char *cmd = talloc_strdup(ctx, cmd_in);
4071 int rc = 0;
4073 if (!cmd) {
4074 return 1;
4076 /* establish the connection if not already */
4078 if (!cli) {
4079 cli = cli_cm_open(talloc_tos(), NULL, desthost,
4080 service, true, smb_encrypt);
4081 if (!cli) {
4082 return 1;
4086 while (cmd[0] != '\0') {
4087 char *line;
4088 char *p;
4089 char *tok;
4090 int i;
4092 if ((p = strchr_m(cmd, ';')) == 0) {
4093 line = cmd;
4094 cmd += strlen(cmd);
4095 } else {
4096 *p = '\0';
4097 line = cmd;
4098 cmd = p + 1;
4101 /* and get the first part of the command */
4102 cmd_ptr = line;
4103 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4104 continue;
4107 if ((i = process_tok(tok)) >= 0) {
4108 rc = commands[i].fn();
4109 } else if (i == -2) {
4110 d_printf("%s: command abbreviation ambiguous\n",tok);
4111 } else {
4112 d_printf("%s: command not found\n",tok);
4116 return rc;
4119 #define MAX_COMPLETIONS 100
4121 typedef struct {
4122 char *dirmask;
4123 char **matches;
4124 int count, samelen;
4125 const char *text;
4126 int len;
4127 } completion_remote_t;
4129 static void completion_remote_filter(const char *mnt,
4130 file_info *f,
4131 const char *mask,
4132 void *state)
4134 completion_remote_t *info = (completion_remote_t *)state;
4136 if ((info->count < MAX_COMPLETIONS - 1) &&
4137 (strncmp(info->text, f->name, info->len) == 0) &&
4138 (strcmp(f->name, ".") != 0) &&
4139 (strcmp(f->name, "..") != 0)) {
4140 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4141 info->matches[info->count] = SMB_STRDUP(f->name);
4142 else {
4143 TALLOC_CTX *ctx = talloc_stackframe();
4144 char *tmp;
4146 if (info->dirmask && info->dirmask[0] != 0) {
4147 tmp = talloc_strdup(ctx,info->dirmask);
4148 } else {
4149 tmp = talloc_strdup(ctx,"");
4151 if (!tmp) {
4152 TALLOC_FREE(ctx);
4153 return;
4155 tmp = talloc_asprintf_append(tmp, f->name);
4156 if (!tmp) {
4157 TALLOC_FREE(ctx);
4158 return;
4160 if (f->mode & aDIR) {
4161 tmp = talloc_asprintf_append(tmp, "/");
4163 if (!tmp) {
4164 TALLOC_FREE(ctx);
4165 return;
4167 info->matches[info->count] = SMB_STRDUP(tmp);
4168 TALLOC_FREE(ctx);
4170 if (info->matches[info->count] == NULL) {
4171 return;
4173 if (f->mode & aDIR) {
4174 smb_readline_ca_char(0);
4176 if (info->count == 1) {
4177 info->samelen = strlen(info->matches[info->count]);
4178 } else {
4179 while (strncmp(info->matches[info->count],
4180 info->matches[info->count-1],
4181 info->samelen) != 0) {
4182 info->samelen--;
4185 info->count++;
4189 static char **remote_completion(const char *text, int len)
4191 TALLOC_CTX *ctx = talloc_stackframe();
4192 char *dirmask = NULL;
4193 char *targetpath = NULL;
4194 struct cli_state *targetcli = NULL;
4195 int i;
4196 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4198 /* can't have non-static intialisation on Sun CC, so do it
4199 at run time here */
4200 info.samelen = len;
4201 info.text = text;
4202 info.len = len;
4204 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4205 if (!info.matches) {
4206 TALLOC_FREE(ctx);
4207 return NULL;
4211 * We're leaving matches[0] free to fill it later with the text to
4212 * display: Either the one single match or the longest common subset
4213 * of the matches.
4215 info.matches[0] = NULL;
4216 info.count = 1;
4218 for (i = len-1; i >= 0; i--) {
4219 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4220 break;
4224 info.text = text+i+1;
4225 info.samelen = info.len = len-i-1;
4227 if (i > 0) {
4228 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4229 if (!info.dirmask) {
4230 goto cleanup;
4232 strncpy(info.dirmask, text, i+1);
4233 info.dirmask[i+1] = 0;
4234 dirmask = talloc_asprintf(ctx,
4235 "%s%*s*",
4236 client_get_cur_dir(),
4237 i-1,
4238 text);
4239 } else {
4240 info.dirmask = SMB_STRDUP("");
4241 if (!info.dirmask) {
4242 goto cleanup;
4244 dirmask = talloc_asprintf(ctx,
4245 "%s*",
4246 client_get_cur_dir());
4248 if (!dirmask) {
4249 goto cleanup;
4252 if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4253 goto cleanup;
4255 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4256 completion_remote_filter, (void *)&info) < 0) {
4257 goto cleanup;
4260 if (info.count == 1) {
4262 * No matches at all, NULL indicates there is nothing
4264 SAFE_FREE(info.matches[0]);
4265 SAFE_FREE(info.matches);
4266 TALLOC_FREE(ctx);
4267 return NULL;
4270 if (info.count == 2) {
4272 * Exactly one match in matches[1], indicate this is the one
4273 * in matches[0].
4275 info.matches[0] = info.matches[1];
4276 info.matches[1] = NULL;
4277 info.count -= 1;
4278 TALLOC_FREE(ctx);
4279 return info.matches;
4283 * We got more than one possible match, set the result to the maximum
4284 * common subset
4287 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4288 info.matches[info.count] = NULL;
4289 return info.matches;
4291 cleanup:
4292 for (i = 0; i < info.count; i++) {
4293 SAFE_FREE(info.matches[i]);
4295 SAFE_FREE(info.matches);
4296 SAFE_FREE(info.dirmask);
4297 TALLOC_FREE(ctx);
4298 return NULL;
4301 static char **completion_fn(const char *text, int start, int end)
4303 smb_readline_ca_char(' ');
4305 if (start) {
4306 const char *buf, *sp;
4307 int i;
4308 char compl_type;
4310 buf = smb_readline_get_line_buffer();
4311 if (buf == NULL)
4312 return NULL;
4314 sp = strchr(buf, ' ');
4315 if (sp == NULL)
4316 return NULL;
4318 for (i = 0; commands[i].name; i++) {
4319 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4320 (commands[i].name[sp - buf] == 0)) {
4321 break;
4324 if (commands[i].name == NULL)
4325 return NULL;
4327 while (*sp == ' ')
4328 sp++;
4330 if (sp == (buf + start))
4331 compl_type = commands[i].compl_args[0];
4332 else
4333 compl_type = commands[i].compl_args[1];
4335 if (compl_type == COMPL_REMOTE)
4336 return remote_completion(text, end - start);
4337 else /* fall back to local filename completion */
4338 return NULL;
4339 } else {
4340 char **matches;
4341 int i, len, samelen = 0, count=1;
4343 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4344 if (!matches) {
4345 return NULL;
4347 matches[0] = NULL;
4349 len = strlen(text);
4350 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4351 if (strncmp(text, commands[i].name, len) == 0) {
4352 matches[count] = SMB_STRDUP(commands[i].name);
4353 if (!matches[count])
4354 goto cleanup;
4355 if (count == 1)
4356 samelen = strlen(matches[count]);
4357 else
4358 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4359 samelen--;
4360 count++;
4364 switch (count) {
4365 case 0: /* should never happen */
4366 case 1:
4367 goto cleanup;
4368 case 2:
4369 matches[0] = SMB_STRDUP(matches[1]);
4370 break;
4371 default:
4372 matches[0] = (char *)SMB_MALLOC(samelen+1);
4373 if (!matches[0])
4374 goto cleanup;
4375 strncpy(matches[0], matches[1], samelen);
4376 matches[0][samelen] = 0;
4378 matches[count] = NULL;
4379 return matches;
4381 cleanup:
4382 for (i = 0; i < count; i++)
4383 free(matches[i]);
4385 free(matches);
4386 return NULL;
4390 /****************************************************************************
4391 Make sure we swallow keepalives during idle time.
4392 ****************************************************************************/
4394 static void readline_callback(void)
4396 fd_set fds;
4397 struct timeval timeout;
4398 static time_t last_t;
4399 time_t t;
4401 t = time(NULL);
4403 if (t - last_t < 5)
4404 return;
4406 last_t = t;
4408 again:
4410 if (cli->fd == -1)
4411 return;
4413 FD_ZERO(&fds);
4414 FD_SET(cli->fd,&fds);
4416 timeout.tv_sec = 0;
4417 timeout.tv_usec = 0;
4418 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4420 /* We deliberately use receive_smb_raw instead of
4421 client_receive_smb as we want to receive
4422 session keepalives and then drop them here.
4424 if (FD_ISSET(cli->fd,&fds)) {
4425 if (receive_smb_raw(cli->fd,cli->inbuf,0,0,&cli->smb_rw_error) == -1) {
4426 DEBUG(0, ("Read from server failed, maybe it closed the "
4427 "connection\n"));
4428 return;
4430 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4431 DEBUG(0, ("Read from server "
4432 "returned unexpected packet!\n"));
4433 return;
4436 goto again;
4439 /* Ping the server to keep the connection alive using SMBecho. */
4441 unsigned char garbage[16];
4442 memset(garbage, 0xf0, sizeof(garbage));
4443 cli_echo(cli, 1, garbage, sizeof(garbage));
4447 /****************************************************************************
4448 Process commands on stdin.
4449 ****************************************************************************/
4451 static int process_stdin(void)
4453 int rc = 0;
4455 while (1) {
4456 TALLOC_CTX *frame = talloc_stackframe();
4457 char *tok = NULL;
4458 char *the_prompt = NULL;
4459 char *line = NULL;
4460 int i;
4462 /* display a prompt */
4463 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4464 TALLOC_FREE(frame);
4465 break;
4467 line = smb_readline(the_prompt, readline_callback, completion_fn);
4468 SAFE_FREE(the_prompt);
4469 if (!line) {
4470 TALLOC_FREE(frame);
4471 break;
4474 /* special case - first char is ! */
4475 if (*line == '!') {
4476 system(line + 1);
4477 SAFE_FREE(line);
4478 TALLOC_FREE(frame);
4479 continue;
4482 /* and get the first part of the command */
4483 cmd_ptr = line;
4484 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4485 TALLOC_FREE(frame);
4486 SAFE_FREE(line);
4487 continue;
4490 if ((i = process_tok(tok)) >= 0) {
4491 rc = commands[i].fn();
4492 } else if (i == -2) {
4493 d_printf("%s: command abbreviation ambiguous\n",tok);
4494 } else {
4495 d_printf("%s: command not found\n",tok);
4497 SAFE_FREE(line);
4498 TALLOC_FREE(frame);
4500 return rc;
4503 /****************************************************************************
4504 Process commands from the client.
4505 ****************************************************************************/
4507 static int process(const char *base_directory)
4509 int rc = 0;
4511 cli = cli_cm_open(talloc_tos(), NULL,
4512 desthost, service, true, smb_encrypt);
4513 if (!cli) {
4514 return 1;
4517 if (base_directory && *base_directory) {
4518 rc = do_cd(base_directory);
4519 if (rc) {
4520 cli_cm_shutdown();
4521 return rc;
4525 if (cmdstr) {
4526 rc = process_command_string(cmdstr);
4527 } else {
4528 process_stdin();
4531 cli_cm_shutdown();
4532 return rc;
4535 /****************************************************************************
4536 Handle a -L query.
4537 ****************************************************************************/
4539 static int do_host_query(const char *query_host)
4541 cli = cli_cm_open(talloc_tos(), NULL,
4542 query_host, "IPC$", true, smb_encrypt);
4543 if (!cli)
4544 return 1;
4546 browse_host(true);
4548 if (port != 139) {
4550 /* Workgroups simply don't make sense over anything
4551 else but port 139... */
4553 cli_cm_shutdown();
4554 cli_cm_set_port( 139 );
4555 cli = cli_cm_open(talloc_tos(), NULL,
4556 query_host, "IPC$", true, smb_encrypt);
4559 if (cli == NULL) {
4560 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4561 return 1;
4564 list_servers(lp_workgroup());
4566 cli_cm_shutdown();
4568 return(0);
4571 /****************************************************************************
4572 Handle a tar operation.
4573 ****************************************************************************/
4575 static int do_tar_op(const char *base_directory)
4577 int ret;
4579 /* do we already have a connection? */
4580 if (!cli) {
4581 cli = cli_cm_open(talloc_tos(), NULL,
4582 desthost, service, true, smb_encrypt);
4583 if (!cli)
4584 return 1;
4587 recurse=true;
4589 if (base_directory && *base_directory) {
4590 ret = do_cd(base_directory);
4591 if (ret) {
4592 cli_cm_shutdown();
4593 return ret;
4597 ret=process_tar();
4599 cli_cm_shutdown();
4601 return(ret);
4604 /****************************************************************************
4605 Handle a message operation.
4606 ****************************************************************************/
4608 static int do_message_op(void)
4610 struct sockaddr_storage ss;
4611 struct nmb_name called, calling;
4612 fstring server_name;
4613 char name_type_hex[10];
4614 int msg_port;
4615 NTSTATUS status;
4617 make_nmb_name(&calling, calling_name, 0x0);
4618 make_nmb_name(&called , desthost, name_type);
4620 fstrcpy(server_name, desthost);
4621 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4622 fstrcat(server_name, name_type_hex);
4624 zero_addr(&ss);
4625 if (have_ip)
4626 ss = dest_ss;
4628 /* we can only do messages over port 139 (to windows clients at least) */
4630 msg_port = port ? port : 139;
4632 if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4633 d_printf("Connection to %s failed\n", desthost);
4634 return 1;
4637 status = cli_connect(cli, server_name, &ss);
4638 if (!NT_STATUS_IS_OK(status)) {
4639 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4640 return 1;
4643 if (!cli_session_request(cli, &calling, &called)) {
4644 d_printf("session request failed\n");
4645 cli_cm_shutdown();
4646 return 1;
4649 send_message();
4650 cli_cm_shutdown();
4652 return 0;
4655 /****************************************************************************
4656 main program
4657 ****************************************************************************/
4659 int main(int argc,char *argv[])
4661 char *base_directory = NULL;
4662 int opt;
4663 char *query_host = NULL;
4664 bool message = false;
4665 char *term_code = NULL;
4666 static const char *new_name_resolve_order = NULL;
4667 poptContext pc;
4668 char *p;
4669 int rc = 0;
4670 fstring new_workgroup;
4671 bool tar_opt = false;
4672 bool service_opt = false;
4673 struct poptOption long_options[] = {
4674 POPT_AUTOHELP
4676 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4677 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4678 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4679 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4680 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4681 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4682 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4683 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4684 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4685 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4686 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4687 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4688 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4689 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4690 POPT_COMMON_SAMBA
4691 POPT_COMMON_CONNECTION
4692 POPT_COMMON_CREDENTIALS
4693 POPT_TABLEEND
4695 TALLOC_CTX *frame = talloc_stackframe();
4697 if (!client_set_cur_dir("\\")) {
4698 exit(ENOMEM);
4701 #ifdef KANJI
4702 term_code = talloc_strdup(frame,KANJI);
4703 #else /* KANJI */
4704 term_code = talloc_strdup(frame,"");
4705 #endif /* KANJI */
4706 if (!term_code) {
4707 exit(ENOMEM);
4710 /* initialize the workgroup name so we can determine whether or
4711 not it was set by a command line option */
4713 set_global_myworkgroup( "" );
4714 set_global_myname( "" );
4716 /* set default debug level to 1 regardless of what smb.conf sets */
4717 setup_logging( "smbclient", true );
4718 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4719 if ((dbf = x_fdup(x_stderr))) {
4720 x_setbuf( dbf, NULL );
4723 load_case_tables();
4725 /* skip argv(0) */
4726 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4727 poptSetOtherOptionHelp(pc, "service <password>");
4729 in_client = true; /* Make sure that we tell lp_load we are */
4731 while ((opt = poptGetNextOpt(pc)) != -1) {
4733 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4734 /* I see no other way to keep things sane --SSS */
4735 if (tar_opt == true) {
4736 while (poptPeekArg(pc)) {
4737 poptGetArg(pc);
4739 tar_opt = false;
4742 /* if the service has not yet been specified lets see if it is available in the popt stack */
4743 if (!service_opt && poptPeekArg(pc)) {
4744 service = talloc_strdup(frame, poptGetArg(pc));
4745 if (!service) {
4746 exit(ENOMEM);
4748 service_opt = true;
4751 /* if the service has already been retrieved then check if we have also a password */
4752 if (service_opt && (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc)) {
4753 set_cmdline_auth_info_password(poptGetArg(pc));
4756 switch (opt) {
4757 case 'M':
4758 /* Messages are sent to NetBIOS name type 0x3
4759 * (Messenger Service). Make sure we default
4760 * to port 139 instead of port 445. srl,crh
4762 name_type = 0x03;
4763 cli_cm_set_dest_name_type( name_type );
4764 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4765 if (!desthost) {
4766 exit(ENOMEM);
4768 if( !port )
4769 cli_cm_set_port( 139 );
4770 message = true;
4771 break;
4772 case 'I':
4774 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4775 exit(1);
4777 have_ip = true;
4779 cli_cm_set_dest_ss(&dest_ss);
4781 break;
4782 case 'E':
4783 if (dbf) {
4784 x_fclose(dbf);
4786 dbf = x_stderr;
4787 display_set_stderr();
4788 break;
4790 case 'L':
4791 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4792 if (!query_host) {
4793 exit(ENOMEM);
4795 break;
4796 case 't':
4797 term_code = talloc_strdup(frame,poptGetOptArg(pc));
4798 if (!term_code) {
4799 exit(ENOMEM);
4801 break;
4802 case 'm':
4803 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4804 break;
4805 case 'T':
4806 /* We must use old option processing for this. Find the
4807 * position of the -T option in the raw argv[]. */
4809 int i;
4810 for (i = 1; i < argc; i++) {
4811 if (strncmp("-T", argv[i],2)==0)
4812 break;
4814 i++;
4815 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4816 poptPrintUsage(pc, stderr, 0);
4817 exit(1);
4820 /* this must be the last option, mark we have parsed it so that we know we have */
4821 tar_opt = true;
4822 break;
4823 case 'D':
4824 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4825 if (!base_directory) {
4826 exit(ENOMEM);
4828 break;
4829 case 'g':
4830 grepable=true;
4831 break;
4832 case 'e':
4833 smb_encrypt=true;
4834 break;
4835 case 'B':
4836 return(do_smb_browse());
4841 /* We may still have some leftovers after the last popt option has been called */
4842 if (tar_opt == true) {
4843 while (poptPeekArg(pc)) {
4844 poptGetArg(pc);
4846 tar_opt = false;
4849 /* if the service has not yet been specified lets see if it is available in the popt stack */
4850 if (!service_opt && poptPeekArg(pc)) {
4851 service = talloc_strdup(frame,poptGetArg(pc));
4852 if (!service) {
4853 exit(ENOMEM);
4855 service_opt = true;
4858 /* if the service has already been retrieved then check if we have also a password */
4859 if (service_opt && !get_cmdline_auth_info_got_pass() && poptPeekArg(pc)) {
4860 set_cmdline_auth_info_password(poptGetArg(pc));
4863 /* check for the -P option */
4865 if ( port != 0 )
4866 cli_cm_set_port( port );
4869 * Don't load debug level from smb.conf. It should be
4870 * set by cmdline arg or remain default (0)
4872 AllowDebugChange = false;
4874 /* save the workgroup...
4876 FIXME!! do we need to do this for other options as well
4877 (or maybe a generic way to keep lp_load() from overwriting
4878 everything)? */
4880 fstrcpy( new_workgroup, lp_workgroup() );
4881 calling_name = talloc_strdup(frame, global_myname() );
4882 if (!calling_name) {
4883 exit(ENOMEM);
4886 if ( override_logfile )
4887 setup_logging( lp_logfile(), false );
4889 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4890 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4891 argv[0], get_dyn_CONFIGFILE());
4894 load_interfaces();
4896 if (service_opt && service) {
4897 size_t len;
4899 /* Convert any '/' characters in the service name to '\' characters */
4900 string_replace(service, '/','\\');
4901 if (count_chars(service,'\\') < 3) {
4902 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4903 poptPrintUsage(pc, stderr, 0);
4904 exit(1);
4906 /* Remove trailing slashes */
4907 len = strlen(service);
4908 while(len > 0 && service[len - 1] == '\\') {
4909 --len;
4910 service[len] = '\0';
4914 if ( strlen(new_workgroup) != 0 ) {
4915 set_global_myworkgroup( new_workgroup );
4918 if ( strlen(calling_name) != 0 ) {
4919 set_global_myname( calling_name );
4920 } else {
4921 TALLOC_FREE(calling_name);
4922 calling_name = talloc_strdup(frame, global_myname() );
4925 smb_encrypt = get_cmdline_auth_info_smb_encrypt();
4926 init_names();
4928 if(new_name_resolve_order)
4929 lp_set_name_resolve_order(new_name_resolve_order);
4931 if (!tar_type && !query_host && !service && !message) {
4932 poptPrintUsage(pc, stderr, 0);
4933 exit(1);
4936 poptFreeContext(pc);
4938 /* Store the username and password for dfs support */
4940 cli_cm_set_credentials();
4942 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4944 if (tar_type) {
4945 if (cmdstr)
4946 process_command_string(cmdstr);
4947 return do_tar_op(base_directory);
4950 if (query_host && *query_host) {
4951 char *qhost = query_host;
4952 char *slash;
4954 while (*qhost == '\\' || *qhost == '/')
4955 qhost++;
4957 if ((slash = strchr_m(qhost, '/'))
4958 || (slash = strchr_m(qhost, '\\'))) {
4959 *slash = 0;
4962 if ((p=strchr_m(qhost, '#'))) {
4963 *p = 0;
4964 p++;
4965 sscanf(p, "%x", &name_type);
4966 cli_cm_set_dest_name_type( name_type );
4969 return do_host_query(qhost);
4972 if (message) {
4973 return do_message_op();
4976 if (process(base_directory)) {
4977 return 1;
4980 TALLOC_FREE(frame);
4981 return rc;