WHATSNEW: Update changes.
[Samba.git] / source3 / client / client.c
blob6afdde0ebb3bfe096072857764a4a856466d4287
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 "../librpc/gen_ndr/cli_srvsvc.h"
28 #ifndef REGISTER
29 #define REGISTER 0
30 #endif
32 extern int do_smb_browse(void); /* mDNS browsing */
34 extern bool AllowDebugChange;
35 extern bool override_logfile;
36 extern char tar_type;
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 const char *cmd_ptr = NULL;
46 static int io_bufsize = 524288;
48 static int name_type = 0x20;
49 static int max_protocol = PROTOCOL_NT1;
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;
82 static char dest_ss_str[INET6_ADDRSTRLEN];
84 #define SEPARATORS " \t\n\r"
86 static bool abort_mget = true;
88 /* timing globals */
89 uint64_t get_total_size = 0;
90 unsigned int get_total_time_ms = 0;
91 static uint64_t put_total_size = 0;
92 static unsigned int put_total_time_ms = 0;
94 /* totals globals */
95 static double dir_total;
97 /* encrypted state. */
98 static bool smb_encrypt;
100 /* root cli_state connection */
102 struct cli_state *cli;
104 static char CLI_DIRSEP_CHAR = '\\';
105 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
107 /* Authentication for client connections. */
108 struct user_auth_info *auth_info;
110 /* Accessor functions for directory paths. */
111 static char *fileselection;
112 static const char *client_get_fileselection(void)
114 if (fileselection) {
115 return fileselection;
117 return "";
120 static const char *client_set_fileselection(const char *new_fs)
122 SAFE_FREE(fileselection);
123 if (new_fs) {
124 fileselection = SMB_STRDUP(new_fs);
126 return client_get_fileselection();
129 static char *cwd;
130 static const char *client_get_cwd(void)
132 if (cwd) {
133 return cwd;
135 return CLI_DIRSEP_STR;
138 static const char *client_set_cwd(const char *new_cwd)
140 SAFE_FREE(cwd);
141 if (new_cwd) {
142 cwd = SMB_STRDUP(new_cwd);
144 return client_get_cwd();
147 static char *cur_dir;
148 const char *client_get_cur_dir(void)
150 if (cur_dir) {
151 return cur_dir;
153 return CLI_DIRSEP_STR;
156 const char *client_set_cur_dir(const char *newdir)
158 SAFE_FREE(cur_dir);
159 if (newdir) {
160 cur_dir = SMB_STRDUP(newdir);
162 return client_get_cur_dir();
165 /****************************************************************************
166 Put up a yes/no prompt.
167 ****************************************************************************/
169 static bool yesno(const char *p)
171 char ans[20];
172 printf("%s",p);
174 if (!fgets(ans,sizeof(ans)-1,stdin))
175 return(False);
177 if (*ans == 'y' || *ans == 'Y')
178 return(True);
180 return(False);
183 /****************************************************************************
184 Write to a local file with CR/LF->LF translation if appropriate. Return the
185 number taken from the buffer. This may not equal the number written.
186 ****************************************************************************/
188 static int writefile(int f, char *b, int n)
190 int i;
192 if (!translation) {
193 return write(f,b,n);
196 i = 0;
197 while (i < n) {
198 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
199 b++;i++;
201 if (write(f, b, 1) != 1) {
202 break;
204 b++;
205 i++;
208 return(i);
211 /****************************************************************************
212 Read from a file with LF->CR/LF translation if appropriate. Return the
213 number read. read approx n bytes.
214 ****************************************************************************/
216 static int readfile(uint8_t *b, int n, XFILE *f)
218 int i;
219 int c;
221 if (!translation)
222 return x_fread(b,1,n,f);
224 i = 0;
225 while (i < (n - 1) && (i < BUFFER_SIZE)) {
226 if ((c = x_getc(f)) == EOF) {
227 break;
230 if (c == '\n') { /* change all LFs to CR/LF */
231 b[i++] = '\r';
234 b[i++] = c;
237 return(i);
240 struct push_state {
241 XFILE *f;
242 SMB_OFF_T nread;
245 static size_t push_source(uint8_t *buf, size_t n, void *priv)
247 struct push_state *state = (struct push_state *)priv;
248 int result;
250 if (x_feof(state->f)) {
251 return 0;
254 result = readfile(buf, n, state->f);
255 state->nread += result;
256 return result;
259 /****************************************************************************
260 Send a message.
261 ****************************************************************************/
263 static void send_message(const char *username)
265 char buf[1600];
266 NTSTATUS status;
267 int i;
269 d_printf("Type your message, ending it with a Control-D\n");
271 i = 0;
272 while (i<sizeof(buf)-2) {
273 int c = fgetc(stdin);
274 if (c == EOF) {
275 break;
277 if (c == '\n') {
278 buf[i++] = '\r';
280 buf[i++] = c;
282 buf[i] = '\0';
284 status = cli_message(cli, desthost, username, buf);
285 if (!NT_STATUS_IS_OK(status)) {
286 d_fprintf(stderr, "cli_message returned %s\n",
287 nt_errstr(status));
291 /****************************************************************************
292 Check the space on a device.
293 ****************************************************************************/
295 static int do_dskattr(void)
297 int total, bsize, avail;
298 struct cli_state *targetcli = NULL;
299 char *targetpath = NULL;
300 TALLOC_CTX *ctx = talloc_tos();
302 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
303 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
304 return 1;
307 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
308 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
309 return 1;
312 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
313 total, bsize, avail);
315 return 0;
318 /****************************************************************************
319 Show cd/pwd.
320 ****************************************************************************/
322 static int cmd_pwd(void)
324 d_printf("Current directory is %s",service);
325 d_printf("%s\n",client_get_cur_dir());
326 return 0;
329 /****************************************************************************
330 Ensure name has correct directory separators.
331 ****************************************************************************/
333 static void normalize_name(char *newdir)
335 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
336 string_replace(newdir,'/','\\');
340 /****************************************************************************
341 Change directory - inner section.
342 ****************************************************************************/
344 static int do_cd(const char *new_dir)
346 char *newdir = NULL;
347 char *saved_dir = NULL;
348 char *new_cd = NULL;
349 char *targetpath = NULL;
350 struct cli_state *targetcli = NULL;
351 SMB_STRUCT_STAT sbuf;
352 uint32 attributes;
353 int ret = 1;
354 TALLOC_CTX *ctx = talloc_stackframe();
356 newdir = talloc_strdup(ctx, new_dir);
357 if (!newdir) {
358 TALLOC_FREE(ctx);
359 return 1;
362 normalize_name(newdir);
364 /* Save the current directory in case the new directory is invalid */
366 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
367 if (!saved_dir) {
368 TALLOC_FREE(ctx);
369 return 1;
372 if (*newdir == CLI_DIRSEP_CHAR) {
373 client_set_cur_dir(newdir);
374 new_cd = newdir;
375 } else {
376 new_cd = talloc_asprintf(ctx, "%s%s",
377 client_get_cur_dir(),
378 newdir);
379 if (!new_cd) {
380 goto out;
384 /* Ensure cur_dir ends in a DIRSEP */
385 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
386 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
387 if (!new_cd) {
388 goto out;
391 client_set_cur_dir(new_cd);
393 new_cd = clean_name(ctx, new_cd);
394 client_set_cur_dir(new_cd);
396 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
397 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
398 client_set_cur_dir(saved_dir);
399 goto out;
402 if (strequal(targetpath,CLI_DIRSEP_STR )) {
403 TALLOC_FREE(ctx);
404 return 0;
407 /* Use a trans2_qpathinfo to test directories for modern servers.
408 Except Win9x doesn't support the qpathinfo_basic() call..... */
410 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
411 NTSTATUS status;
413 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
414 &attributes);
415 if (!NT_STATUS_IS_OK(status)) {
416 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
417 client_set_cur_dir(saved_dir);
418 goto out;
421 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
422 d_printf("cd %s: not a directory\n", new_cd);
423 client_set_cur_dir(saved_dir);
424 goto out;
426 } else {
427 targetpath = talloc_asprintf(ctx,
428 "%s%s",
429 targetpath,
430 CLI_DIRSEP_STR );
431 if (!targetpath) {
432 client_set_cur_dir(saved_dir);
433 goto out;
435 targetpath = clean_name(ctx, targetpath);
436 if (!targetpath) {
437 client_set_cur_dir(saved_dir);
438 goto out;
441 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
442 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
443 client_set_cur_dir(saved_dir);
444 goto out;
448 ret = 0;
450 out:
452 TALLOC_FREE(ctx);
453 return ret;
456 /****************************************************************************
457 Change directory.
458 ****************************************************************************/
460 static int cmd_cd(void)
462 char *buf = NULL;
463 int rc = 0;
465 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
466 rc = do_cd(buf);
467 } else {
468 d_printf("Current directory is %s\n",client_get_cur_dir());
471 return rc;
474 /****************************************************************************
475 Change directory.
476 ****************************************************************************/
478 static int cmd_cd_oneup(void)
480 return do_cd("..");
483 /*******************************************************************
484 Decide if a file should be operated on.
485 ********************************************************************/
487 static bool do_this_one(struct file_info *finfo)
489 if (!finfo->name) {
490 return false;
493 if (finfo->mode & aDIR) {
494 return true;
497 if (*client_get_fileselection() &&
498 !mask_match(finfo->name,client_get_fileselection(),false)) {
499 DEBUG(3,("mask_match %s failed\n", finfo->name));
500 return false;
503 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
504 DEBUG(3,("newer_than %s failed\n", finfo->name));
505 return false;
508 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
509 DEBUG(3,("archive %s failed\n", finfo->name));
510 return false;
513 return true;
516 /****************************************************************************
517 Display info about a file.
518 ****************************************************************************/
520 static void display_finfo(struct file_info *finfo, const char *dir)
522 time_t t;
523 TALLOC_CTX *ctx = talloc_tos();
525 if (!do_this_one(finfo)) {
526 return;
529 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
530 if (!showacls) {
531 d_printf(" %-30s%7.7s %8.0f %s",
532 finfo->name,
533 attrib_string(finfo->mode),
534 (double)finfo->size,
535 time_to_asc(t));
536 dir_total += finfo->size;
537 } else {
538 char *afname = NULL;
539 uint16_t fnum;
541 /* skip if this is . or .. */
542 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
543 return;
544 /* create absolute filename for cli_ntcreate() FIXME */
545 afname = talloc_asprintf(ctx,
546 "%s%s%s",
547 dir,
548 CLI_DIRSEP_STR,
549 finfo->name);
550 if (!afname) {
551 return;
553 /* print file meta date header */
554 d_printf( "FILENAME:%s\n", finfo->name);
555 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
556 d_printf( "SIZE:%.0f\n", (double)finfo->size);
557 d_printf( "MTIME:%s", time_to_asc(t));
558 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo->cli, afname, 0,
559 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
560 FILE_OPEN, 0x0, 0x0, &fnum))) {
561 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
562 afname,
563 cli_errstr( finfo->cli)));
564 } else {
565 struct security_descriptor *sd = NULL;
566 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
567 if (!sd) {
568 DEBUG( 0, ("display_finfo() failed to "
569 "get security descriptor: %s",
570 cli_errstr( finfo->cli)));
571 } else {
572 display_sec_desc(sd);
574 TALLOC_FREE(sd);
576 TALLOC_FREE(afname);
580 /****************************************************************************
581 Accumulate size of a file.
582 ****************************************************************************/
584 static void do_du(struct file_info *finfo, const char *dir)
586 if (do_this_one(finfo)) {
587 dir_total += finfo->size;
591 static bool do_list_recurse;
592 static bool do_list_dirs;
593 static char *do_list_queue = 0;
594 static long do_list_queue_size = 0;
595 static long do_list_queue_start = 0;
596 static long do_list_queue_end = 0;
597 static void (*do_list_fn)(struct file_info *, const char *dir);
599 /****************************************************************************
600 Functions for do_list_queue.
601 ****************************************************************************/
604 * The do_list_queue is a NUL-separated list of strings stored in a
605 * char*. Since this is a FIFO, we keep track of the beginning and
606 * ending locations of the data in the queue. When we overflow, we
607 * double the size of the char*. When the start of the data passes
608 * the midpoint, we move everything back. This is logically more
609 * complex than a linked list, but easier from a memory management
610 * angle. In any memory error condition, do_list_queue is reset.
611 * Functions check to ensure that do_list_queue is non-NULL before
612 * accessing it.
615 static void reset_do_list_queue(void)
617 SAFE_FREE(do_list_queue);
618 do_list_queue_size = 0;
619 do_list_queue_start = 0;
620 do_list_queue_end = 0;
623 static void init_do_list_queue(void)
625 reset_do_list_queue();
626 do_list_queue_size = 1024;
627 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
628 if (do_list_queue == 0) {
629 d_printf("malloc fail for size %d\n",
630 (int)do_list_queue_size);
631 reset_do_list_queue();
632 } else {
633 memset(do_list_queue, 0, do_list_queue_size);
637 static void adjust_do_list_queue(void)
640 * If the starting point of the queue is more than half way through,
641 * move everything toward the beginning.
644 if (do_list_queue == NULL) {
645 DEBUG(4,("do_list_queue is empty\n"));
646 do_list_queue_start = do_list_queue_end = 0;
647 return;
650 if (do_list_queue_start == do_list_queue_end) {
651 DEBUG(4,("do_list_queue is empty\n"));
652 do_list_queue_start = do_list_queue_end = 0;
653 *do_list_queue = '\0';
654 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
655 DEBUG(4,("sliding do_list_queue backward\n"));
656 memmove(do_list_queue,
657 do_list_queue + do_list_queue_start,
658 do_list_queue_end - do_list_queue_start);
659 do_list_queue_end -= do_list_queue_start;
660 do_list_queue_start = 0;
664 static void add_to_do_list_queue(const char *entry)
666 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
667 while (new_end > do_list_queue_size) {
668 do_list_queue_size *= 2;
669 DEBUG(4,("enlarging do_list_queue to %d\n",
670 (int)do_list_queue_size));
671 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
672 if (! do_list_queue) {
673 d_printf("failure enlarging do_list_queue to %d bytes\n",
674 (int)do_list_queue_size);
675 reset_do_list_queue();
676 } else {
677 memset(do_list_queue + do_list_queue_size / 2,
678 0, do_list_queue_size / 2);
681 if (do_list_queue) {
682 safe_strcpy_base(do_list_queue + do_list_queue_end,
683 entry, do_list_queue, do_list_queue_size);
684 do_list_queue_end = new_end;
685 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
686 entry, (int)do_list_queue_start, (int)do_list_queue_end));
690 static char *do_list_queue_head(void)
692 return do_list_queue + do_list_queue_start;
695 static void remove_do_list_queue_head(void)
697 if (do_list_queue_end > do_list_queue_start) {
698 do_list_queue_start += strlen(do_list_queue_head()) + 1;
699 adjust_do_list_queue();
700 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
701 (int)do_list_queue_start, (int)do_list_queue_end));
705 static int do_list_queue_empty(void)
707 return (! (do_list_queue && *do_list_queue));
710 /****************************************************************************
711 A helper for do_list.
712 ****************************************************************************/
714 static void do_list_helper(const char *mntpoint, struct file_info *f,
715 const char *mask, void *state)
717 TALLOC_CTX *ctx = talloc_tos();
718 char *dir = NULL;
719 char *dir_end = NULL;
721 /* Work out the directory. */
722 dir = talloc_strdup(ctx, mask);
723 if (!dir) {
724 return;
726 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
727 *dir_end = '\0';
730 if (f->mode & aDIR) {
731 if (do_list_dirs && do_this_one(f)) {
732 do_list_fn(f, dir);
734 if (do_list_recurse &&
735 f->name &&
736 !strequal(f->name,".") &&
737 !strequal(f->name,"..")) {
738 char *mask2 = NULL;
739 char *p = NULL;
741 if (!f->name[0]) {
742 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
743 TALLOC_FREE(dir);
744 return;
747 mask2 = talloc_asprintf(ctx,
748 "%s%s",
749 mntpoint,
750 mask);
751 if (!mask2) {
752 TALLOC_FREE(dir);
753 return;
755 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
756 if (p) {
757 p[1] = 0;
758 } else {
759 mask2[0] = '\0';
761 mask2 = talloc_asprintf_append(mask2,
762 "%s%s*",
763 f->name,
764 CLI_DIRSEP_STR);
765 if (!mask2) {
766 TALLOC_FREE(dir);
767 return;
769 add_to_do_list_queue(mask2);
770 TALLOC_FREE(mask2);
772 TALLOC_FREE(dir);
773 return;
776 if (do_this_one(f)) {
777 do_list_fn(f,dir);
779 TALLOC_FREE(dir);
782 /****************************************************************************
783 A wrapper around cli_list that adds recursion.
784 ****************************************************************************/
786 void do_list(const char *mask,
787 uint16 attribute,
788 void (*fn)(struct file_info *, const char *dir),
789 bool rec,
790 bool dirs)
792 static int in_do_list = 0;
793 TALLOC_CTX *ctx = talloc_tos();
794 struct cli_state *targetcli = NULL;
795 char *targetpath = NULL;
797 if (in_do_list && rec) {
798 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
799 exit(1);
802 in_do_list = 1;
804 do_list_recurse = rec;
805 do_list_dirs = dirs;
806 do_list_fn = fn;
808 if (rec) {
809 init_do_list_queue();
810 add_to_do_list_queue(mask);
812 while (!do_list_queue_empty()) {
814 * Need to copy head so that it doesn't become
815 * invalid inside the call to cli_list. This
816 * would happen if the list were expanded
817 * during the call.
818 * Fix from E. Jay Berkenbilt (ejb@ql.org)
820 char *head = talloc_strdup(ctx, do_list_queue_head());
822 if (!head) {
823 return;
826 /* check for dfs */
828 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
829 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
830 remove_do_list_queue_head();
831 continue;
834 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
835 remove_do_list_queue_head();
836 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
837 char *next_file = do_list_queue_head();
838 char *save_ch = 0;
839 if ((strlen(next_file) >= 2) &&
840 (next_file[strlen(next_file) - 1] == '*') &&
841 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
842 save_ch = next_file +
843 strlen(next_file) - 2;
844 *save_ch = '\0';
845 if (showacls) {
846 /* cwd is only used if showacls is on */
847 client_set_cwd(next_file);
850 if (!showacls) /* don't disturbe the showacls output */
851 d_printf("\n%s\n",next_file);
852 if (save_ch) {
853 *save_ch = CLI_DIRSEP_CHAR;
856 TALLOC_FREE(head);
857 TALLOC_FREE(targetpath);
859 } else {
860 /* check for dfs */
861 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
862 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
863 d_printf("%s listing %s\n",
864 cli_errstr(targetcli), targetpath);
866 TALLOC_FREE(targetpath);
867 } else {
868 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
872 in_do_list = 0;
873 reset_do_list_queue();
876 /****************************************************************************
877 Get a directory listing.
878 ****************************************************************************/
880 static int cmd_dir(void)
882 TALLOC_CTX *ctx = talloc_tos();
883 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
884 char *mask = NULL;
885 char *buf = NULL;
886 int rc = 1;
888 dir_total = 0;
889 mask = talloc_strdup(ctx, client_get_cur_dir());
890 if (!mask) {
891 return 1;
894 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
895 normalize_name(buf);
896 if (*buf == CLI_DIRSEP_CHAR) {
897 mask = talloc_strdup(ctx, buf);
898 } else {
899 mask = talloc_asprintf_append(mask, "%s", buf);
901 } else {
902 mask = talloc_asprintf_append(mask, "*");
904 if (!mask) {
905 return 1;
908 if (showacls) {
909 /* cwd is only used if showacls is on */
910 client_set_cwd(client_get_cur_dir());
913 do_list(mask, attribute, display_finfo, recurse, true);
915 rc = do_dskattr();
917 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
919 return rc;
922 /****************************************************************************
923 Get a directory listing.
924 ****************************************************************************/
926 static int cmd_du(void)
928 TALLOC_CTX *ctx = talloc_tos();
929 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
930 char *mask = NULL;
931 char *buf = NULL;
932 int rc = 1;
934 dir_total = 0;
935 mask = talloc_strdup(ctx, client_get_cur_dir());
936 if (!mask) {
937 return 1;
939 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
940 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
941 if (!mask) {
942 return 1;
946 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
947 normalize_name(buf);
948 if (*buf == CLI_DIRSEP_CHAR) {
949 mask = talloc_strdup(ctx, buf);
950 } else {
951 mask = talloc_asprintf_append(mask, "%s", buf);
953 } else {
954 mask = talloc_strdup(ctx, "*");
957 do_list(mask, attribute, do_du, recurse, true);
959 rc = do_dskattr();
961 d_printf("Total number of bytes: %.0f\n", dir_total);
963 return rc;
966 static int cmd_echo(void)
968 TALLOC_CTX *ctx = talloc_tos();
969 char *num;
970 char *data;
971 NTSTATUS status;
973 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
974 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
975 d_printf("echo <num> <data>\n");
976 return 1;
979 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
981 if (!NT_STATUS_IS_OK(status)) {
982 d_printf("echo failed: %s\n", nt_errstr(status));
983 return 1;
986 return 0;
989 /****************************************************************************
990 Get a file from rname to lname
991 ****************************************************************************/
993 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
995 int *pfd = (int *)priv;
996 if (writefile(*pfd, buf, n) == -1) {
997 return map_nt_error_from_unix(errno);
999 return NT_STATUS_OK;
1002 static int do_get(const char *rname, const char *lname_in, bool reget)
1004 TALLOC_CTX *ctx = talloc_tos();
1005 int handle = 0;
1006 uint16_t fnum;
1007 bool newhandle = false;
1008 struct timeval tp_start;
1009 uint16 attr;
1010 SMB_OFF_T size;
1011 off_t start = 0;
1012 SMB_OFF_T nread = 0;
1013 int rc = 0;
1014 struct cli_state *targetcli = NULL;
1015 char *targetname = NULL;
1016 char *lname = NULL;
1017 NTSTATUS status;
1019 lname = talloc_strdup(ctx, lname_in);
1020 if (!lname) {
1021 return 1;
1024 if (lowercase) {
1025 strlower_m(lname);
1028 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1029 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1030 return 1;
1033 GetTimeOfDay(&tp_start);
1035 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1036 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1037 return 1;
1040 if(!strcmp(lname,"-")) {
1041 handle = fileno(stdout);
1042 } else {
1043 if (reget) {
1044 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1045 if (handle >= 0) {
1046 start = sys_lseek(handle, 0, SEEK_END);
1047 if (start == -1) {
1048 d_printf("Error seeking local file\n");
1049 return 1;
1052 } else {
1053 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1055 newhandle = true;
1057 if (handle < 0) {
1058 d_printf("Error opening local file %s\n",lname);
1059 return 1;
1063 if (!cli_qfileinfo(targetcli, fnum,
1064 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1065 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1066 &attr, &size, NULL, NULL, NULL))) {
1067 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1068 return 1;
1071 DEBUG(1,("getting file %s of size %.0f as %s ",
1072 rname, (double)size, lname));
1074 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1075 writefile_sink, (void *)&handle, &nread);
1076 if (!NT_STATUS_IS_OK(status)) {
1077 d_fprintf(stderr, "parallel_read returned %s\n",
1078 nt_errstr(status));
1079 cli_close(targetcli, fnum);
1080 return 1;
1083 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1084 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1085 rc = 1;
1088 if (newhandle) {
1089 close(handle);
1092 if (archive_level >= 2 && (attr & aARCH)) {
1093 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1097 struct timeval tp_end;
1098 int this_time;
1100 GetTimeOfDay(&tp_end);
1101 this_time =
1102 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1103 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1104 get_total_time_ms += this_time;
1105 get_total_size += nread;
1107 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1108 nread / (1.024*this_time + 1.0e-4),
1109 get_total_size / (1.024*get_total_time_ms)));
1112 TALLOC_FREE(targetname);
1113 return rc;
1116 /****************************************************************************
1117 Get a file.
1118 ****************************************************************************/
1120 static int cmd_get(void)
1122 TALLOC_CTX *ctx = talloc_tos();
1123 char *lname = NULL;
1124 char *rname = NULL;
1125 char *fname = NULL;
1127 rname = talloc_strdup(ctx, client_get_cur_dir());
1128 if (!rname) {
1129 return 1;
1132 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1133 d_printf("get <filename> [localname]\n");
1134 return 1;
1136 rname = talloc_asprintf_append(rname, "%s", fname);
1137 if (!rname) {
1138 return 1;
1140 rname = clean_name(ctx, rname);
1141 if (!rname) {
1142 return 1;
1145 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1146 if (!lname) {
1147 lname = fname;
1150 return do_get(rname, lname, false);
1153 /****************************************************************************
1154 Do an mget operation on one file.
1155 ****************************************************************************/
1157 static void do_mget(struct file_info *finfo, const char *dir)
1159 TALLOC_CTX *ctx = talloc_tos();
1160 char *rname = NULL;
1161 char *quest = NULL;
1162 char *saved_curdir = NULL;
1163 char *mget_mask = NULL;
1164 char *new_cd = NULL;
1166 if (!finfo->name) {
1167 return;
1170 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1171 return;
1173 if (abort_mget) {
1174 d_printf("mget aborted\n");
1175 return;
1178 if (finfo->mode & aDIR) {
1179 if (asprintf(&quest,
1180 "Get directory %s? ",finfo->name) < 0) {
1181 return;
1183 } else {
1184 if (asprintf(&quest,
1185 "Get file %s? ",finfo->name) < 0) {
1186 return;
1190 if (prompt && !yesno(quest)) {
1191 SAFE_FREE(quest);
1192 return;
1194 SAFE_FREE(quest);
1196 if (!(finfo->mode & aDIR)) {
1197 rname = talloc_asprintf(ctx,
1198 "%s%s",
1199 client_get_cur_dir(),
1200 finfo->name);
1201 if (!rname) {
1202 return;
1204 do_get(rname, finfo->name, false);
1205 TALLOC_FREE(rname);
1206 return;
1209 /* handle directories */
1210 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1211 if (!saved_curdir) {
1212 return;
1215 new_cd = talloc_asprintf(ctx,
1216 "%s%s%s",
1217 client_get_cur_dir(),
1218 finfo->name,
1219 CLI_DIRSEP_STR);
1220 if (!new_cd) {
1221 return;
1223 client_set_cur_dir(new_cd);
1225 string_replace(finfo->name,'\\','/');
1226 if (lowercase) {
1227 strlower_m(finfo->name);
1230 if (!directory_exist(finfo->name) &&
1231 mkdir(finfo->name,0777) != 0) {
1232 d_printf("failed to create directory %s\n",finfo->name);
1233 client_set_cur_dir(saved_curdir);
1234 return;
1237 if (chdir(finfo->name) != 0) {
1238 d_printf("failed to chdir to directory %s\n",finfo->name);
1239 client_set_cur_dir(saved_curdir);
1240 return;
1243 mget_mask = talloc_asprintf(ctx,
1244 "%s*",
1245 client_get_cur_dir());
1247 if (!mget_mask) {
1248 return;
1251 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1252 if (chdir("..") == -1) {
1253 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1254 strerror(errno) );
1256 client_set_cur_dir(saved_curdir);
1257 TALLOC_FREE(mget_mask);
1258 TALLOC_FREE(saved_curdir);
1259 TALLOC_FREE(new_cd);
1262 /****************************************************************************
1263 View the file using the pager.
1264 ****************************************************************************/
1266 static int cmd_more(void)
1268 TALLOC_CTX *ctx = talloc_tos();
1269 char *rname = NULL;
1270 char *fname = NULL;
1271 char *lname = NULL;
1272 char *pager_cmd = NULL;
1273 const char *pager;
1274 int fd;
1275 int rc = 0;
1277 rname = talloc_strdup(ctx, client_get_cur_dir());
1278 if (!rname) {
1279 return 1;
1282 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1283 if (!lname) {
1284 return 1;
1286 fd = mkstemp(lname);
1287 if (fd == -1) {
1288 d_printf("failed to create temporary file for more\n");
1289 return 1;
1291 close(fd);
1293 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1294 d_printf("more <filename>\n");
1295 unlink(lname);
1296 return 1;
1298 rname = talloc_asprintf_append(rname, "%s", fname);
1299 if (!rname) {
1300 return 1;
1302 rname = clean_name(ctx,rname);
1303 if (!rname) {
1304 return 1;
1307 rc = do_get(rname, lname, false);
1309 pager=getenv("PAGER");
1311 pager_cmd = talloc_asprintf(ctx,
1312 "%s %s",
1313 (pager? pager:PAGER),
1314 lname);
1315 if (!pager_cmd) {
1316 return 1;
1318 if (system(pager_cmd) == -1) {
1319 d_printf("system command '%s' returned -1\n",
1320 pager_cmd);
1322 unlink(lname);
1324 return rc;
1327 /****************************************************************************
1328 Do a mget command.
1329 ****************************************************************************/
1331 static int cmd_mget(void)
1333 TALLOC_CTX *ctx = talloc_tos();
1334 uint16 attribute = aSYSTEM | aHIDDEN;
1335 char *mget_mask = NULL;
1336 char *buf = NULL;
1338 if (recurse) {
1339 attribute |= aDIR;
1342 abort_mget = false;
1344 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1345 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1346 if (!mget_mask) {
1347 return 1;
1349 if (*buf == CLI_DIRSEP_CHAR) {
1350 mget_mask = talloc_strdup(ctx, buf);
1351 } else {
1352 mget_mask = talloc_asprintf_append(mget_mask,
1353 "%s", buf);
1355 if (!mget_mask) {
1356 return 1;
1358 do_list(mget_mask, attribute, do_mget, false, true);
1361 if (mget_mask == NULL) {
1362 d_printf("nothing to mget\n");
1363 return 0;
1366 if (!*mget_mask) {
1367 mget_mask = talloc_asprintf(ctx,
1368 "%s*",
1369 client_get_cur_dir());
1370 if (!mget_mask) {
1371 return 1;
1373 do_list(mget_mask, attribute, do_mget, false, true);
1376 return 0;
1379 /****************************************************************************
1380 Make a directory of name "name".
1381 ****************************************************************************/
1383 static bool do_mkdir(const char *name)
1385 TALLOC_CTX *ctx = talloc_tos();
1386 struct cli_state *targetcli;
1387 char *targetname = NULL;
1389 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1390 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1391 return false;
1394 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1395 d_printf("%s making remote directory %s\n",
1396 cli_errstr(targetcli),name);
1397 return false;
1400 return true;
1403 /****************************************************************************
1404 Show 8.3 name of a file.
1405 ****************************************************************************/
1407 static bool do_altname(const char *name)
1409 fstring altname;
1411 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1412 d_printf("%s getting alt name for %s\n",
1413 cli_errstr(cli),name);
1414 return false;
1416 d_printf("%s\n", altname);
1418 return true;
1421 /****************************************************************************
1422 Exit client.
1423 ****************************************************************************/
1425 static int cmd_quit(void)
1427 cli_shutdown(cli);
1428 exit(0);
1429 /* NOTREACHED */
1430 return 0;
1433 /****************************************************************************
1434 Make a directory.
1435 ****************************************************************************/
1437 static int cmd_mkdir(void)
1439 TALLOC_CTX *ctx = talloc_tos();
1440 char *mask = NULL;
1441 char *buf = NULL;
1443 mask = talloc_strdup(ctx, client_get_cur_dir());
1444 if (!mask) {
1445 return 1;
1448 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1449 if (!recurse) {
1450 d_printf("mkdir <dirname>\n");
1452 return 1;
1454 mask = talloc_asprintf_append(mask, "%s", buf);
1455 if (!mask) {
1456 return 1;
1459 if (recurse) {
1460 char *ddir = NULL;
1461 char *ddir2 = NULL;
1462 struct cli_state *targetcli;
1463 char *targetname = NULL;
1464 char *p = NULL;
1465 char *saveptr;
1467 ddir2 = talloc_strdup(ctx, "");
1468 if (!ddir2) {
1469 return 1;
1472 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1473 return 1;
1476 ddir = talloc_strdup(ctx, targetname);
1477 if (!ddir) {
1478 return 1;
1480 trim_char(ddir,'.','\0');
1481 p = strtok_r(ddir, "/\\", &saveptr);
1482 while (p) {
1483 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1484 if (!ddir2) {
1485 return 1;
1487 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1488 do_mkdir(ddir2);
1490 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1491 if (!ddir2) {
1492 return 1;
1494 p = strtok_r(NULL, "/\\", &saveptr);
1496 } else {
1497 do_mkdir(mask);
1500 return 0;
1503 /****************************************************************************
1504 Show alt name.
1505 ****************************************************************************/
1507 static int cmd_altname(void)
1509 TALLOC_CTX *ctx = talloc_tos();
1510 char *name;
1511 char *buf;
1513 name = talloc_strdup(ctx, client_get_cur_dir());
1514 if (!name) {
1515 return 1;
1518 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1519 d_printf("altname <file>\n");
1520 return 1;
1522 name = talloc_asprintf_append(name, "%s", buf);
1523 if (!name) {
1524 return 1;
1526 do_altname(name);
1527 return 0;
1530 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1532 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1533 int i = 0;
1535 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1536 if (mode & FILE_ATTRIBUTE_READONLY) {
1537 attrs[i++] = 'R';
1539 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1540 attrs[i++] = 'H';
1542 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1543 attrs[i++] = 'S';
1545 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1546 attrs[i++] = 'D';
1548 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1549 attrs[i++] = 'A';
1552 return attrs;
1555 /****************************************************************************
1556 Show all info we can get
1557 ****************************************************************************/
1559 static int do_allinfo(const char *name)
1561 fstring altname;
1562 struct timespec b_time, a_time, m_time, c_time;
1563 SMB_OFF_T size;
1564 uint16_t mode;
1565 SMB_INO_T ino;
1566 NTTIME tmp;
1567 unsigned int num_streams;
1568 struct stream_struct *streams;
1569 unsigned int i;
1570 NTSTATUS status;
1572 status = cli_qpathinfo_alt_name(cli, name, altname);
1573 if (!NT_STATUS_IS_OK(status)) {
1574 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1575 name);
1576 return false;
1578 d_printf("altname: %s\n", altname);
1580 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1581 &size, &mode, &ino);
1582 if (!NT_STATUS_IS_OK(status)) {
1583 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1584 name);
1585 return false;
1588 unix_timespec_to_nt_time(&tmp, b_time);
1589 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1591 unix_timespec_to_nt_time(&tmp, a_time);
1592 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1594 unix_timespec_to_nt_time(&tmp, m_time);
1595 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1597 unix_timespec_to_nt_time(&tmp, c_time);
1598 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1600 d_printf("attributes: %s\n", attr_str(talloc_tos(), mode));
1602 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1603 &streams);
1604 if (!NT_STATUS_IS_OK(status)) {
1605 d_printf("%s getting streams for %s\n", nt_errstr(status),
1606 name);
1607 return false;
1610 for (i=0; i<num_streams; i++) {
1611 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1612 (unsigned long long)streams[i].size);
1615 return 0;
1618 /****************************************************************************
1619 Show all info we can get
1620 ****************************************************************************/
1622 static int cmd_allinfo(void)
1624 TALLOC_CTX *ctx = talloc_tos();
1625 char *name;
1626 char *buf;
1628 name = talloc_strdup(ctx, client_get_cur_dir());
1629 if (!name) {
1630 return 1;
1633 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1634 d_printf("allinfo <file>\n");
1635 return 1;
1637 name = talloc_asprintf_append(name, "%s", buf);
1638 if (!name) {
1639 return 1;
1642 do_allinfo(name);
1644 return 0;
1647 /****************************************************************************
1648 Put a single file.
1649 ****************************************************************************/
1651 static int do_put(const char *rname, const char *lname, bool reput)
1653 TALLOC_CTX *ctx = talloc_tos();
1654 uint16_t fnum;
1655 XFILE *f;
1656 SMB_OFF_T start = 0;
1657 int rc = 0;
1658 struct timeval tp_start;
1659 struct cli_state *targetcli;
1660 char *targetname = NULL;
1661 struct push_state state;
1662 NTSTATUS status;
1664 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1665 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1666 return 1;
1669 GetTimeOfDay(&tp_start);
1671 if (reput) {
1672 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1673 if (NT_STATUS_IS_OK(status)) {
1674 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1675 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1676 d_printf("getattrib: %s\n",cli_errstr(cli));
1677 return 1;
1680 } else {
1681 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1684 if (!NT_STATUS_IS_OK(status)) {
1685 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1686 return 1;
1689 /* allow files to be piped into smbclient
1690 jdblair 24.jun.98
1692 Note that in this case this function will exit(0) rather
1693 than returning. */
1694 if (!strcmp(lname, "-")) {
1695 f = x_stdin;
1696 /* size of file is not known */
1697 } else {
1698 f = x_fopen(lname,O_RDONLY, 0);
1699 if (f && reput) {
1700 if (x_tseek(f, start, SEEK_SET) == -1) {
1701 d_printf("Error seeking local file\n");
1702 x_fclose(f);
1703 return 1;
1708 if (!f) {
1709 d_printf("Error opening local file %s\n",lname);
1710 return 1;
1713 DEBUG(1,("putting file %s as %s ",lname,
1714 rname));
1716 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1718 state.f = f;
1719 state.nread = 0;
1721 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1722 &state);
1723 if (!NT_STATUS_IS_OK(status)) {
1724 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1725 rc = 1;
1728 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1729 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1730 if (f != x_stdin) {
1731 x_fclose(f);
1733 return 1;
1736 if (f != x_stdin) {
1737 x_fclose(f);
1741 struct timeval tp_end;
1742 int this_time;
1744 GetTimeOfDay(&tp_end);
1745 this_time =
1746 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1747 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1748 put_total_time_ms += this_time;
1749 put_total_size += state.nread;
1751 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1752 state.nread / (1.024*this_time + 1.0e-4),
1753 put_total_size / (1.024*put_total_time_ms)));
1756 if (f == x_stdin) {
1757 cli_shutdown(cli);
1758 exit(0);
1761 return rc;
1764 /****************************************************************************
1765 Put a file.
1766 ****************************************************************************/
1768 static int cmd_put(void)
1770 TALLOC_CTX *ctx = talloc_tos();
1771 char *lname;
1772 char *rname;
1773 char *buf;
1775 rname = talloc_strdup(ctx, client_get_cur_dir());
1776 if (!rname) {
1777 return 1;
1780 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1781 d_printf("put <filename>\n");
1782 return 1;
1785 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1786 rname = talloc_asprintf_append(rname, "%s", buf);
1787 } else {
1788 rname = talloc_asprintf_append(rname, "%s", lname);
1790 if (!rname) {
1791 return 1;
1794 rname = clean_name(ctx, rname);
1795 if (!rname) {
1796 return 1;
1800 SMB_STRUCT_STAT st;
1801 /* allow '-' to represent stdin
1802 jdblair, 24.jun.98 */
1803 if (!file_exist_stat(lname, &st, false) &&
1804 (strcmp(lname,"-"))) {
1805 d_printf("%s does not exist\n",lname);
1806 return 1;
1810 return do_put(rname, lname, false);
1813 /*************************************
1814 File list structure.
1815 *************************************/
1817 static struct file_list {
1818 struct file_list *prev, *next;
1819 char *file_path;
1820 bool isdir;
1821 } *file_list;
1823 /****************************************************************************
1824 Free a file_list structure.
1825 ****************************************************************************/
1827 static void free_file_list (struct file_list *l_head)
1829 struct file_list *list, *next;
1831 for (list = l_head; list; list = next) {
1832 next = list->next;
1833 DLIST_REMOVE(l_head, list);
1834 SAFE_FREE(list->file_path);
1835 SAFE_FREE(list);
1839 /****************************************************************************
1840 Seek in a directory/file list until you get something that doesn't start with
1841 the specified name.
1842 ****************************************************************************/
1844 static bool seek_list(struct file_list *list, char *name)
1846 while (list) {
1847 trim_string(list->file_path,"./","\n");
1848 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1849 return true;
1851 list = list->next;
1854 return false;
1857 /****************************************************************************
1858 Set the file selection mask.
1859 ****************************************************************************/
1861 static int cmd_select(void)
1863 TALLOC_CTX *ctx = talloc_tos();
1864 char *new_fs = NULL;
1865 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1867 if (new_fs) {
1868 client_set_fileselection(new_fs);
1869 } else {
1870 client_set_fileselection("");
1872 return 0;
1875 /****************************************************************************
1876 Recursive file matching function act as find
1877 match must be always set to true when calling this function
1878 ****************************************************************************/
1880 static int file_find(struct file_list **list, const char *directory,
1881 const char *expression, bool match)
1883 SMB_STRUCT_DIR *dir;
1884 struct file_list *entry;
1885 struct stat statbuf;
1886 int ret;
1887 char *path;
1888 bool isdir;
1889 const char *dname;
1891 dir = sys_opendir(directory);
1892 if (!dir)
1893 return -1;
1895 while ((dname = readdirname(dir))) {
1896 if (!strcmp("..", dname))
1897 continue;
1898 if (!strcmp(".", dname))
1899 continue;
1901 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1902 continue;
1905 isdir = false;
1906 if (!match || !gen_fnmatch(expression, dname)) {
1907 if (recurse) {
1908 ret = stat(path, &statbuf);
1909 if (ret == 0) {
1910 if (S_ISDIR(statbuf.st_mode)) {
1911 isdir = true;
1912 ret = file_find(list, path, expression, false);
1914 } else {
1915 d_printf("file_find: cannot stat file %s\n", path);
1918 if (ret == -1) {
1919 SAFE_FREE(path);
1920 sys_closedir(dir);
1921 return -1;
1924 entry = SMB_MALLOC_P(struct file_list);
1925 if (!entry) {
1926 d_printf("Out of memory in file_find\n");
1927 sys_closedir(dir);
1928 return -1;
1930 entry->file_path = path;
1931 entry->isdir = isdir;
1932 DLIST_ADD(*list, entry);
1933 } else {
1934 SAFE_FREE(path);
1938 sys_closedir(dir);
1939 return 0;
1942 /****************************************************************************
1943 mput some files.
1944 ****************************************************************************/
1946 static int cmd_mput(void)
1948 TALLOC_CTX *ctx = talloc_tos();
1949 char *p = NULL;
1951 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1952 int ret;
1953 struct file_list *temp_list;
1954 char *quest, *lname, *rname;
1956 file_list = NULL;
1958 ret = file_find(&file_list, ".", p, true);
1959 if (ret) {
1960 free_file_list(file_list);
1961 continue;
1964 quest = NULL;
1965 lname = NULL;
1966 rname = NULL;
1968 for (temp_list = file_list; temp_list;
1969 temp_list = temp_list->next) {
1971 SAFE_FREE(lname);
1972 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1973 continue;
1975 trim_string(lname, "./", "/");
1977 /* check if it's a directory */
1978 if (temp_list->isdir) {
1979 /* if (!recurse) continue; */
1981 SAFE_FREE(quest);
1982 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1983 break;
1985 if (prompt && !yesno(quest)) { /* No */
1986 /* Skip the directory */
1987 lname[strlen(lname)-1] = '/';
1988 if (!seek_list(temp_list, lname))
1989 break;
1990 } else { /* Yes */
1991 SAFE_FREE(rname);
1992 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1993 break;
1995 normalize_name(rname);
1996 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1997 !do_mkdir(rname)) {
1998 DEBUG (0, ("Unable to make dir, skipping..."));
1999 /* Skip the directory */
2000 lname[strlen(lname)-1] = '/';
2001 if (!seek_list(temp_list, lname)) {
2002 break;
2006 continue;
2007 } else {
2008 SAFE_FREE(quest);
2009 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2010 break;
2012 if (prompt && !yesno(quest)) {
2013 /* No */
2014 continue;
2017 /* Yes */
2018 SAFE_FREE(rname);
2019 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2020 break;
2024 normalize_name(rname);
2026 do_put(rname, lname, false);
2028 free_file_list(file_list);
2029 SAFE_FREE(quest);
2030 SAFE_FREE(lname);
2031 SAFE_FREE(rname);
2034 return 0;
2037 /****************************************************************************
2038 Cancel a print job.
2039 ****************************************************************************/
2041 static int do_cancel(int job)
2043 if (cli_printjob_del(cli, job)) {
2044 d_printf("Job %d cancelled\n",job);
2045 return 0;
2046 } else {
2047 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2048 return 1;
2052 /****************************************************************************
2053 Cancel a print job.
2054 ****************************************************************************/
2056 static int cmd_cancel(void)
2058 TALLOC_CTX *ctx = talloc_tos();
2059 char *buf = NULL;
2060 int job;
2062 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2063 d_printf("cancel <jobid> ...\n");
2064 return 1;
2066 do {
2067 job = atoi(buf);
2068 do_cancel(job);
2069 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2071 return 0;
2074 /****************************************************************************
2075 Print a file.
2076 ****************************************************************************/
2078 static int cmd_print(void)
2080 TALLOC_CTX *ctx = talloc_tos();
2081 char *lname = NULL;
2082 char *rname = NULL;
2083 char *p = NULL;
2085 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2086 d_printf("print <filename>\n");
2087 return 1;
2090 rname = talloc_strdup(ctx, lname);
2091 if (!rname) {
2092 return 1;
2094 p = strrchr_m(rname,'/');
2095 if (p) {
2096 rname = talloc_asprintf(ctx,
2097 "%s-%d",
2098 p+1,
2099 (int)sys_getpid());
2101 if (strequal(lname,"-")) {
2102 rname = talloc_asprintf(ctx,
2103 "stdin-%d",
2104 (int)sys_getpid());
2106 if (!rname) {
2107 return 1;
2110 return do_put(rname, lname, false);
2113 /****************************************************************************
2114 Show a print queue entry.
2115 ****************************************************************************/
2117 static void queue_fn(struct print_job_info *p)
2119 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2122 /****************************************************************************
2123 Show a print queue.
2124 ****************************************************************************/
2126 static int cmd_queue(void)
2128 cli_print_queue(cli, queue_fn);
2129 return 0;
2132 /****************************************************************************
2133 Delete some files.
2134 ****************************************************************************/
2136 static void do_del(struct file_info *finfo, const char *dir)
2138 TALLOC_CTX *ctx = talloc_tos();
2139 char *mask = NULL;
2141 mask = talloc_asprintf(ctx,
2142 "%s%c%s",
2143 dir,
2144 CLI_DIRSEP_CHAR,
2145 finfo->name);
2146 if (!mask) {
2147 return;
2150 if (finfo->mode & aDIR) {
2151 TALLOC_FREE(mask);
2152 return;
2155 if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2156 d_printf("%s deleting remote file %s\n",
2157 cli_errstr(finfo->cli),mask);
2159 TALLOC_FREE(mask);
2162 /****************************************************************************
2163 Delete some files.
2164 ****************************************************************************/
2166 static int cmd_del(void)
2168 TALLOC_CTX *ctx = talloc_tos();
2169 char *mask = NULL;
2170 char *buf = NULL;
2171 uint16 attribute = aSYSTEM | aHIDDEN;
2173 if (recurse) {
2174 attribute |= aDIR;
2177 mask = talloc_strdup(ctx, client_get_cur_dir());
2178 if (!mask) {
2179 return 1;
2181 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2182 d_printf("del <filename>\n");
2183 return 1;
2185 mask = talloc_asprintf_append(mask, "%s", buf);
2186 if (!mask) {
2187 return 1;
2190 do_list(mask,attribute,do_del,false,false);
2191 return 0;
2194 /****************************************************************************
2195 Wildcard delete some files.
2196 ****************************************************************************/
2198 static int cmd_wdel(void)
2200 TALLOC_CTX *ctx = talloc_tos();
2201 char *mask = NULL;
2202 char *buf = NULL;
2203 uint16 attribute;
2204 struct cli_state *targetcli;
2205 char *targetname = NULL;
2207 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2208 d_printf("wdel 0x<attrib> <wcard>\n");
2209 return 1;
2212 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2214 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2215 d_printf("wdel 0x<attrib> <wcard>\n");
2216 return 1;
2219 mask = talloc_asprintf(ctx, "%s%s",
2220 client_get_cur_dir(),
2221 buf);
2222 if (!mask) {
2223 return 1;
2226 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2227 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2228 return 1;
2231 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2232 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2234 return 0;
2237 /****************************************************************************
2238 ****************************************************************************/
2240 static int cmd_open(void)
2242 TALLOC_CTX *ctx = talloc_tos();
2243 char *mask = NULL;
2244 char *buf = NULL;
2245 char *targetname = NULL;
2246 struct cli_state *targetcli;
2247 uint16_t fnum = (uint16_t)-1;
2249 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2250 d_printf("open <filename>\n");
2251 return 1;
2253 mask = talloc_asprintf(ctx,
2254 "%s%s",
2255 client_get_cur_dir(),
2256 buf);
2257 if (!mask) {
2258 return 1;
2261 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2262 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2263 return 1;
2266 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2267 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2268 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2269 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2270 FILE_READ_DATA, 0,
2271 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2272 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2273 } else {
2274 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2276 } else {
2277 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2279 return 0;
2282 static int cmd_posix_encrypt(void)
2284 TALLOC_CTX *ctx = talloc_tos();
2285 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2287 if (cli->use_kerberos) {
2288 status = cli_gss_smb_encryption_start(cli);
2289 } else {
2290 char *domain = NULL;
2291 char *user = NULL;
2292 char *password = NULL;
2294 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2295 d_printf("posix_encrypt domain user password\n");
2296 return 1;
2299 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2300 d_printf("posix_encrypt domain user password\n");
2301 return 1;
2304 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2305 d_printf("posix_encrypt domain user password\n");
2306 return 1;
2309 status = cli_raw_ntlm_smb_encryption_start(cli,
2310 user,
2311 password,
2312 domain);
2315 if (!NT_STATUS_IS_OK(status)) {
2316 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2317 } else {
2318 d_printf("encryption on\n");
2319 smb_encrypt = true;
2322 return 0;
2325 /****************************************************************************
2326 ****************************************************************************/
2328 static int cmd_posix_open(void)
2330 TALLOC_CTX *ctx = talloc_tos();
2331 char *mask = NULL;
2332 char *buf = NULL;
2333 char *targetname = NULL;
2334 struct cli_state *targetcli;
2335 mode_t mode;
2336 uint16_t fnum;
2338 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2339 d_printf("posix_open <filename> 0<mode>\n");
2340 return 1;
2342 mask = talloc_asprintf(ctx,
2343 "%s%s",
2344 client_get_cur_dir(),
2345 buf);
2346 if (!mask) {
2347 return 1;
2350 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2351 d_printf("posix_open <filename> 0<mode>\n");
2352 return 1;
2354 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2356 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2357 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2358 return 1;
2361 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2362 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2363 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2364 } else {
2365 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2367 } else {
2368 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2371 return 0;
2374 static int cmd_posix_mkdir(void)
2376 TALLOC_CTX *ctx = talloc_tos();
2377 char *mask = NULL;
2378 char *buf = NULL;
2379 char *targetname = NULL;
2380 struct cli_state *targetcli;
2381 mode_t mode;
2383 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2384 d_printf("posix_mkdir <filename> 0<mode>\n");
2385 return 1;
2387 mask = talloc_asprintf(ctx,
2388 "%s%s",
2389 client_get_cur_dir(),
2390 buf);
2391 if (!mask) {
2392 return 1;
2395 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2396 d_printf("posix_mkdir <filename> 0<mode>\n");
2397 return 1;
2399 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2401 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2402 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2403 return 1;
2406 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2407 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2408 } else {
2409 d_printf("posix_mkdir created directory %s\n", targetname);
2411 return 0;
2414 static int cmd_posix_unlink(void)
2416 TALLOC_CTX *ctx = talloc_tos();
2417 char *mask = NULL;
2418 char *buf = NULL;
2419 char *targetname = NULL;
2420 struct cli_state *targetcli;
2422 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2423 d_printf("posix_unlink <filename>\n");
2424 return 1;
2426 mask = talloc_asprintf(ctx,
2427 "%s%s",
2428 client_get_cur_dir(),
2429 buf);
2430 if (!mask) {
2431 return 1;
2434 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2435 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2436 return 1;
2439 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2440 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2441 } else {
2442 d_printf("posix_unlink deleted file %s\n", targetname);
2445 return 0;
2448 static int cmd_posix_rmdir(void)
2450 TALLOC_CTX *ctx = talloc_tos();
2451 char *mask = NULL;
2452 char *buf = NULL;
2453 char *targetname = NULL;
2454 struct cli_state *targetcli;
2456 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2457 d_printf("posix_rmdir <filename>\n");
2458 return 1;
2460 mask = talloc_asprintf(ctx,
2461 "%s%s",
2462 client_get_cur_dir(),
2463 buf);
2464 if (!mask) {
2465 return 1;
2468 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2469 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2470 return 1;
2473 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2474 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2475 } else {
2476 d_printf("posix_rmdir deleted directory %s\n", targetname);
2479 return 0;
2482 static int cmd_close(void)
2484 TALLOC_CTX *ctx = talloc_tos();
2485 char *buf = NULL;
2486 int fnum;
2488 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2489 d_printf("close <fnum>\n");
2490 return 1;
2493 fnum = atoi(buf);
2494 /* We really should use the targetcli here.... */
2495 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2496 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2497 return 1;
2499 return 0;
2502 static int cmd_posix(void)
2504 TALLOC_CTX *ctx = talloc_tos();
2505 uint16 major, minor;
2506 uint32 caplow, caphigh;
2507 char *caps;
2508 NTSTATUS status;
2510 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2511 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2512 return 1;
2515 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2516 &caphigh);
2517 if (!NT_STATUS_IS_OK(status)) {
2518 d_printf("Can't get UNIX CIFS extensions version from "
2519 "server: %s\n", nt_errstr(status));
2520 return 1;
2523 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2525 caps = talloc_strdup(ctx, "");
2526 if (!caps) {
2527 return 1;
2529 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2530 caps = talloc_asprintf_append(caps, "locks ");
2531 if (!caps) {
2532 return 1;
2535 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2536 caps = talloc_asprintf_append(caps, "acls ");
2537 if (!caps) {
2538 return 1;
2541 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2542 caps = talloc_asprintf_append(caps, "eas ");
2543 if (!caps) {
2544 return 1;
2547 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2548 caps = talloc_asprintf_append(caps, "pathnames ");
2549 if (!caps) {
2550 return 1;
2553 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2554 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2555 if (!caps) {
2556 return 1;
2559 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2560 caps = talloc_asprintf_append(caps, "large_read ");
2561 if (!caps) {
2562 return 1;
2565 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2566 caps = talloc_asprintf_append(caps, "large_write ");
2567 if (!caps) {
2568 return 1;
2571 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2572 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2573 if (!caps) {
2574 return 1;
2577 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2578 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2579 if (!caps) {
2580 return 1;
2584 if (*caps && caps[strlen(caps)-1] == ' ') {
2585 caps[strlen(caps)-1] = '\0';
2588 d_printf("Server supports CIFS capabilities %s\n", caps);
2590 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2591 caplow, caphigh);
2592 if (!NT_STATUS_IS_OK(status)) {
2593 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2594 nt_errstr(status));
2595 return 1;
2598 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2599 CLI_DIRSEP_CHAR = '/';
2600 *CLI_DIRSEP_STR = '/';
2601 client_set_cur_dir(CLI_DIRSEP_STR);
2604 return 0;
2607 static int cmd_lock(void)
2609 TALLOC_CTX *ctx = talloc_tos();
2610 char *buf = NULL;
2611 uint64_t start, len;
2612 enum brl_type lock_type;
2613 int fnum;
2615 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2616 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2617 return 1;
2619 fnum = atoi(buf);
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 if (*buf == 'r' || *buf == 'R') {
2627 lock_type = READ_LOCK;
2628 } else if (*buf == 'w' || *buf == 'W') {
2629 lock_type = WRITE_LOCK;
2630 } else {
2631 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2632 return 1;
2635 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2636 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2637 return 1;
2640 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2642 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2643 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2644 return 1;
2647 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2649 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2650 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2653 return 0;
2656 static int cmd_unlock(void)
2658 TALLOC_CTX *ctx = talloc_tos();
2659 char *buf = NULL;
2660 uint64_t start, len;
2661 int fnum;
2663 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2664 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2665 return 1;
2667 fnum = atoi(buf);
2669 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2670 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2671 return 1;
2674 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2676 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2677 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2678 return 1;
2681 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2683 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2684 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2687 return 0;
2691 /****************************************************************************
2692 Remove a directory.
2693 ****************************************************************************/
2695 static int cmd_rmdir(void)
2697 TALLOC_CTX *ctx = talloc_tos();
2698 char *mask = NULL;
2699 char *buf = NULL;
2700 char *targetname = NULL;
2701 struct cli_state *targetcli;
2703 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2704 d_printf("rmdir <dirname>\n");
2705 return 1;
2707 mask = talloc_asprintf(ctx,
2708 "%s%s",
2709 client_get_cur_dir(),
2710 buf);
2711 if (!mask) {
2712 return 1;
2715 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2716 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2717 return 1;
2720 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2721 d_printf("%s removing remote directory file %s\n",
2722 cli_errstr(targetcli),mask);
2725 return 0;
2728 /****************************************************************************
2729 UNIX hardlink.
2730 ****************************************************************************/
2732 static int cmd_link(void)
2734 TALLOC_CTX *ctx = talloc_tos();
2735 char *oldname = NULL;
2736 char *newname = NULL;
2737 char *buf = NULL;
2738 char *buf2 = NULL;
2739 char *targetname = NULL;
2740 struct cli_state *targetcli;
2742 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2743 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2744 d_printf("link <oldname> <newname>\n");
2745 return 1;
2747 oldname = talloc_asprintf(ctx,
2748 "%s%s",
2749 client_get_cur_dir(),
2750 buf);
2751 if (!oldname) {
2752 return 1;
2754 newname = talloc_asprintf(ctx,
2755 "%s%s",
2756 client_get_cur_dir(),
2757 buf2);
2758 if (!newname) {
2759 return 1;
2762 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2763 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2764 return 1;
2767 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2768 d_printf("Server doesn't support UNIX CIFS calls.\n");
2769 return 1;
2772 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2773 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2774 return 1;
2776 return 0;
2779 /****************************************************************************
2780 UNIX readlink.
2781 ****************************************************************************/
2783 static int cmd_readlink(void)
2785 TALLOC_CTX *ctx = talloc_tos();
2786 char *name= NULL;
2787 char *buf = NULL;
2788 char *targetname = NULL;
2789 char linkname[PATH_MAX+1];
2790 struct cli_state *targetcli;
2792 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2793 d_printf("readlink <name>\n");
2794 return 1;
2796 name = talloc_asprintf(ctx,
2797 "%s%s",
2798 client_get_cur_dir(),
2799 buf);
2800 if (!name) {
2801 return 1;
2804 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2805 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2806 return 1;
2809 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2810 d_printf("Server doesn't support UNIX CIFS calls.\n");
2811 return 1;
2814 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2815 linkname, PATH_MAX+1))) {
2816 d_printf("%s readlink on file %s\n",
2817 cli_errstr(targetcli), name);
2818 return 1;
2821 d_printf("%s -> %s\n", name, linkname);
2823 return 0;
2827 /****************************************************************************
2828 UNIX symlink.
2829 ****************************************************************************/
2831 static int cmd_symlink(void)
2833 TALLOC_CTX *ctx = talloc_tos();
2834 char *oldname = NULL;
2835 char *newname = NULL;
2836 char *buf = NULL;
2837 char *buf2 = NULL;
2838 char *targetname = NULL;
2839 struct cli_state *targetcli;
2841 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2842 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2843 d_printf("symlink <oldname> <newname>\n");
2844 return 1;
2846 oldname = talloc_asprintf(ctx,
2847 "%s%s",
2848 client_get_cur_dir(),
2849 buf);
2850 if (!oldname) {
2851 return 1;
2853 newname = talloc_asprintf(ctx,
2854 "%s%s",
2855 client_get_cur_dir(),
2856 buf2);
2857 if (!newname) {
2858 return 1;
2861 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2862 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2863 return 1;
2866 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2867 d_printf("Server doesn't support UNIX CIFS calls.\n");
2868 return 1;
2871 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2872 d_printf("%s symlinking files (%s -> %s)\n",
2873 cli_errstr(targetcli), newname, targetname);
2874 return 1;
2877 return 0;
2880 /****************************************************************************
2881 UNIX chmod.
2882 ****************************************************************************/
2884 static int cmd_chmod(void)
2886 TALLOC_CTX *ctx = talloc_tos();
2887 char *src = NULL;
2888 char *buf = NULL;
2889 char *buf2 = NULL;
2890 char *targetname = NULL;
2891 struct cli_state *targetcli;
2892 mode_t mode;
2894 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2895 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2896 d_printf("chmod mode file\n");
2897 return 1;
2899 src = talloc_asprintf(ctx,
2900 "%s%s",
2901 client_get_cur_dir(),
2902 buf2);
2903 if (!src) {
2904 return 1;
2907 mode = (mode_t)strtol(buf, NULL, 8);
2909 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2910 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2911 return 1;
2914 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2915 d_printf("Server doesn't support UNIX CIFS calls.\n");
2916 return 1;
2919 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2920 d_printf("%s chmod file %s 0%o\n",
2921 cli_errstr(targetcli), src, (unsigned int)mode);
2922 return 1;
2925 return 0;
2928 static const char *filetype_to_str(mode_t mode)
2930 if (S_ISREG(mode)) {
2931 return "regular file";
2932 } else if (S_ISDIR(mode)) {
2933 return "directory";
2934 } else
2935 #ifdef S_ISCHR
2936 if (S_ISCHR(mode)) {
2937 return "character device";
2938 } else
2939 #endif
2940 #ifdef S_ISBLK
2941 if (S_ISBLK(mode)) {
2942 return "block device";
2943 } else
2944 #endif
2945 #ifdef S_ISFIFO
2946 if (S_ISFIFO(mode)) {
2947 return "fifo";
2948 } else
2949 #endif
2950 #ifdef S_ISLNK
2951 if (S_ISLNK(mode)) {
2952 return "symbolic link";
2953 } else
2954 #endif
2955 #ifdef S_ISSOCK
2956 if (S_ISSOCK(mode)) {
2957 return "socket";
2958 } else
2959 #endif
2960 return "";
2963 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2965 if (m & bt) {
2966 return ret;
2967 } else {
2968 return '-';
2972 static char *unix_mode_to_str(char *s, mode_t m)
2974 char *p = s;
2975 const char *str = filetype_to_str(m);
2977 switch(str[0]) {
2978 case 'd':
2979 *p++ = 'd';
2980 break;
2981 case 'c':
2982 *p++ = 'c';
2983 break;
2984 case 'b':
2985 *p++ = 'b';
2986 break;
2987 case 'f':
2988 *p++ = 'p';
2989 break;
2990 case 's':
2991 *p++ = str[1] == 'y' ? 'l' : 's';
2992 break;
2993 case 'r':
2994 default:
2995 *p++ = '-';
2996 break;
2998 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2999 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3000 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3001 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3002 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3003 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3004 *p++ = rwx_to_str(m, S_IROTH, 'r');
3005 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3006 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3007 *p++ = '\0';
3008 return s;
3011 /****************************************************************************
3012 Utility function for UNIX getfacl.
3013 ****************************************************************************/
3015 static char *perms_to_string(fstring permstr, unsigned char perms)
3017 fstrcpy(permstr, "---");
3018 if (perms & SMB_POSIX_ACL_READ) {
3019 permstr[0] = 'r';
3021 if (perms & SMB_POSIX_ACL_WRITE) {
3022 permstr[1] = 'w';
3024 if (perms & SMB_POSIX_ACL_EXECUTE) {
3025 permstr[2] = 'x';
3027 return permstr;
3030 /****************************************************************************
3031 UNIX getfacl.
3032 ****************************************************************************/
3034 static int cmd_getfacl(void)
3036 TALLOC_CTX *ctx = talloc_tos();
3037 char *src = NULL;
3038 char *name = NULL;
3039 char *targetname = NULL;
3040 struct cli_state *targetcli;
3041 uint16 major, minor;
3042 uint32 caplow, caphigh;
3043 char *retbuf = NULL;
3044 size_t rb_size = 0;
3045 SMB_STRUCT_STAT sbuf;
3046 uint16 num_file_acls = 0;
3047 uint16 num_dir_acls = 0;
3048 uint16 i;
3049 NTSTATUS status;
3051 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3052 d_printf("getfacl filename\n");
3053 return 1;
3055 src = talloc_asprintf(ctx,
3056 "%s%s",
3057 client_get_cur_dir(),
3058 name);
3059 if (!src) {
3060 return 1;
3063 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3064 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3065 return 1;
3068 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3069 d_printf("Server doesn't support UNIX CIFS calls.\n");
3070 return 1;
3073 status = cli_unix_extensions_version(targetcli, &major, &minor,
3074 &caplow, &caphigh);
3075 if (!NT_STATUS_IS_OK(status)) {
3076 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3077 nt_errstr(status));
3078 return 1;
3081 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3082 d_printf("This server supports UNIX extensions "
3083 "but doesn't support POSIX ACLs.\n");
3084 return 1;
3087 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3088 d_printf("%s getfacl doing a stat on file %s\n",
3089 cli_errstr(targetcli), src);
3090 return 1;
3093 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3094 d_printf("%s getfacl file %s\n",
3095 cli_errstr(targetcli), src);
3096 return 1;
3099 /* ToDo : Print out the ACL values. */
3100 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3101 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3102 src, (unsigned int)CVAL(retbuf,0) );
3103 return 1;
3106 num_file_acls = SVAL(retbuf,2);
3107 num_dir_acls = SVAL(retbuf,4);
3108 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3109 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3110 src,
3111 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3112 (unsigned int)rb_size);
3113 return 1;
3116 d_printf("# file: %s\n", src);
3117 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3119 if (num_file_acls == 0 && num_dir_acls == 0) {
3120 d_printf("No acls found.\n");
3123 for (i = 0; i < num_file_acls; i++) {
3124 uint32 uorg;
3125 fstring permstring;
3126 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3127 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3129 switch(tagtype) {
3130 case SMB_POSIX_ACL_USER_OBJ:
3131 d_printf("user::");
3132 break;
3133 case SMB_POSIX_ACL_USER:
3134 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3135 d_printf("user:%u:", uorg);
3136 break;
3137 case SMB_POSIX_ACL_GROUP_OBJ:
3138 d_printf("group::");
3139 break;
3140 case SMB_POSIX_ACL_GROUP:
3141 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3142 d_printf("group:%u:", uorg);
3143 break;
3144 case SMB_POSIX_ACL_MASK:
3145 d_printf("mask::");
3146 break;
3147 case SMB_POSIX_ACL_OTHER:
3148 d_printf("other::");
3149 break;
3150 default:
3151 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3152 src, (unsigned int)tagtype );
3153 SAFE_FREE(retbuf);
3154 return 1;
3157 d_printf("%s\n", perms_to_string(permstring, perms));
3160 for (i = 0; i < num_dir_acls; i++) {
3161 uint32 uorg;
3162 fstring permstring;
3163 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3164 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3166 switch(tagtype) {
3167 case SMB_POSIX_ACL_USER_OBJ:
3168 d_printf("default:user::");
3169 break;
3170 case SMB_POSIX_ACL_USER:
3171 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3172 d_printf("default:user:%u:", uorg);
3173 break;
3174 case SMB_POSIX_ACL_GROUP_OBJ:
3175 d_printf("default:group::");
3176 break;
3177 case SMB_POSIX_ACL_GROUP:
3178 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3179 d_printf("default:group:%u:", uorg);
3180 break;
3181 case SMB_POSIX_ACL_MASK:
3182 d_printf("default:mask::");
3183 break;
3184 case SMB_POSIX_ACL_OTHER:
3185 d_printf("default:other::");
3186 break;
3187 default:
3188 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3189 src, (unsigned int)tagtype );
3190 SAFE_FREE(retbuf);
3191 return 1;
3194 d_printf("%s\n", perms_to_string(permstring, perms));
3197 return 0;
3200 /****************************************************************************
3201 UNIX stat.
3202 ****************************************************************************/
3204 static int cmd_stat(void)
3206 TALLOC_CTX *ctx = talloc_tos();
3207 char *src = NULL;
3208 char *name = NULL;
3209 char *targetname = NULL;
3210 struct cli_state *targetcli;
3211 fstring mode_str;
3212 SMB_STRUCT_STAT sbuf;
3213 struct tm *lt;
3214 time_t tmp_time;
3216 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3217 d_printf("stat file\n");
3218 return 1;
3220 src = talloc_asprintf(ctx,
3221 "%s%s",
3222 client_get_cur_dir(),
3223 name);
3224 if (!src) {
3225 return 1;
3228 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3229 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3230 return 1;
3233 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3234 d_printf("Server doesn't support UNIX CIFS calls.\n");
3235 return 1;
3238 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3239 d_printf("%s stat file %s\n",
3240 cli_errstr(targetcli), src);
3241 return 1;
3244 /* Print out the stat values. */
3245 d_printf("File: %s\n", src);
3246 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3247 (double)sbuf.st_ex_size,
3248 (unsigned int)sbuf.st_ex_blocks,
3249 filetype_to_str(sbuf.st_ex_mode));
3251 #if defined(S_ISCHR) && defined(S_ISBLK)
3252 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3253 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3254 (double)sbuf.st_ex_ino,
3255 (unsigned int)sbuf.st_ex_nlink,
3256 unix_dev_major(sbuf.st_ex_rdev),
3257 unix_dev_minor(sbuf.st_ex_rdev));
3258 } else
3259 #endif
3260 d_printf("Inode: %.0f\tLinks: %u\n",
3261 (double)sbuf.st_ex_ino,
3262 (unsigned int)sbuf.st_ex_nlink);
3264 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3265 ((int)sbuf.st_ex_mode & 0777),
3266 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3267 (unsigned int)sbuf.st_ex_uid,
3268 (unsigned int)sbuf.st_ex_gid);
3270 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3271 lt = localtime(&tmp_time);
3272 if (lt) {
3273 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3274 } else {
3275 fstrcpy(mode_str, "unknown");
3277 d_printf("Access: %s\n", mode_str);
3279 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3280 lt = localtime(&tmp_time);
3281 if (lt) {
3282 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3283 } else {
3284 fstrcpy(mode_str, "unknown");
3286 d_printf("Modify: %s\n", mode_str);
3288 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3289 lt = localtime(&tmp_time);
3290 if (lt) {
3291 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3292 } else {
3293 fstrcpy(mode_str, "unknown");
3295 d_printf("Change: %s\n", mode_str);
3297 return 0;
3301 /****************************************************************************
3302 UNIX chown.
3303 ****************************************************************************/
3305 static int cmd_chown(void)
3307 TALLOC_CTX *ctx = talloc_tos();
3308 char *src = NULL;
3309 uid_t uid;
3310 gid_t gid;
3311 char *buf, *buf2, *buf3;
3312 struct cli_state *targetcli;
3313 char *targetname = NULL;
3315 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3316 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3317 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3318 d_printf("chown uid gid file\n");
3319 return 1;
3322 uid = (uid_t)atoi(buf);
3323 gid = (gid_t)atoi(buf2);
3325 src = talloc_asprintf(ctx,
3326 "%s%s",
3327 client_get_cur_dir(),
3328 buf3);
3329 if (!src) {
3330 return 1;
3332 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3333 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3334 return 1;
3337 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3338 d_printf("Server doesn't support UNIX CIFS calls.\n");
3339 return 1;
3342 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3343 d_printf("%s chown file %s uid=%d, gid=%d\n",
3344 cli_errstr(targetcli), src, (int)uid, (int)gid);
3345 return 1;
3348 return 0;
3351 /****************************************************************************
3352 Rename some file.
3353 ****************************************************************************/
3355 static int cmd_rename(void)
3357 TALLOC_CTX *ctx = talloc_tos();
3358 char *src, *dest;
3359 char *buf, *buf2;
3360 struct cli_state *targetcli;
3361 char *targetsrc;
3362 char *targetdest;
3364 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3365 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3366 d_printf("rename <src> <dest>\n");
3367 return 1;
3370 src = talloc_asprintf(ctx,
3371 "%s%s",
3372 client_get_cur_dir(),
3373 buf);
3374 if (!src) {
3375 return 1;
3378 dest = talloc_asprintf(ctx,
3379 "%s%s",
3380 client_get_cur_dir(),
3381 buf2);
3382 if (!dest) {
3383 return 1;
3386 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3387 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3388 return 1;
3391 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3392 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3393 return 1;
3396 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3397 d_printf("%s renaming files %s -> %s \n",
3398 cli_errstr(targetcli),
3399 targetsrc,
3400 targetdest);
3401 return 1;
3404 return 0;
3407 /****************************************************************************
3408 Print the volume name.
3409 ****************************************************************************/
3411 static int cmd_volume(void)
3413 fstring volname;
3414 uint32 serial_num;
3415 time_t create_date;
3416 NTSTATUS status;
3418 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3419 &create_date);
3420 if (!NT_STATUS_IS_OK(status)) {
3421 d_printf("Error %s getting volume info\n", nt_errstr(status));
3422 return 1;
3425 d_printf("Volume: |%s| serial number 0x%x\n",
3426 volname, (unsigned int)serial_num);
3427 return 0;
3430 /****************************************************************************
3431 Hard link files using the NT call.
3432 ****************************************************************************/
3434 static int cmd_hardlink(void)
3436 TALLOC_CTX *ctx = talloc_tos();
3437 char *src, *dest;
3438 char *buf, *buf2;
3439 struct cli_state *targetcli;
3440 char *targetname;
3442 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3443 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3444 d_printf("hardlink <src> <dest>\n");
3445 return 1;
3448 src = talloc_asprintf(ctx,
3449 "%s%s",
3450 client_get_cur_dir(),
3451 buf);
3452 if (!src) {
3453 return 1;
3456 dest = talloc_asprintf(ctx,
3457 "%s%s",
3458 client_get_cur_dir(),
3459 buf2);
3460 if (!dest) {
3461 return 1;
3464 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3465 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3466 return 1;
3469 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3470 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3471 return 1;
3474 return 0;
3477 /****************************************************************************
3478 Toggle the prompt flag.
3479 ****************************************************************************/
3481 static int cmd_prompt(void)
3483 prompt = !prompt;
3484 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3485 return 1;
3488 /****************************************************************************
3489 Set the newer than time.
3490 ****************************************************************************/
3492 static int cmd_newer(void)
3494 TALLOC_CTX *ctx = talloc_tos();
3495 char *buf;
3496 bool ok;
3497 SMB_STRUCT_STAT sbuf;
3499 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3500 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3501 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3502 DEBUG(1,("Getting files newer than %s",
3503 time_to_asc(newer_than)));
3504 } else {
3505 newer_than = 0;
3508 if (ok && newer_than == 0) {
3509 d_printf("Error setting newer-than time\n");
3510 return 1;
3513 return 0;
3516 /****************************************************************************
3517 Set the archive level.
3518 ****************************************************************************/
3520 static int cmd_archive(void)
3522 TALLOC_CTX *ctx = talloc_tos();
3523 char *buf;
3525 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3526 archive_level = atoi(buf);
3527 } else {
3528 d_printf("Archive level is %d\n",archive_level);
3531 return 0;
3534 /****************************************************************************
3535 Toggle the lowercaseflag.
3536 ****************************************************************************/
3538 static int cmd_lowercase(void)
3540 lowercase = !lowercase;
3541 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3542 return 0;
3545 /****************************************************************************
3546 Toggle the case sensitive flag.
3547 ****************************************************************************/
3549 static int cmd_setcase(void)
3551 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3553 cli_set_case_sensitive(cli, !orig_case_sensitive);
3554 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3555 "on":"off"));
3556 return 0;
3559 /****************************************************************************
3560 Toggle the showacls flag.
3561 ****************************************************************************/
3563 static int cmd_showacls(void)
3565 showacls = !showacls;
3566 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3567 return 0;
3571 /****************************************************************************
3572 Toggle the recurse flag.
3573 ****************************************************************************/
3575 static int cmd_recurse(void)
3577 recurse = !recurse;
3578 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3579 return 0;
3582 /****************************************************************************
3583 Toggle the translate flag.
3584 ****************************************************************************/
3586 static int cmd_translate(void)
3588 translation = !translation;
3589 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3590 translation?"on":"off"));
3591 return 0;
3594 /****************************************************************************
3595 Do the lcd command.
3596 ****************************************************************************/
3598 static int cmd_lcd(void)
3600 TALLOC_CTX *ctx = talloc_tos();
3601 char *buf;
3602 char *d;
3604 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3605 if (chdir(buf) == -1) {
3606 d_printf("chdir to %s failed (%s)\n",
3607 buf, strerror(errno));
3610 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3611 if (!d) {
3612 return 1;
3614 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3615 return 0;
3618 /****************************************************************************
3619 Get a file restarting at end of local file.
3620 ****************************************************************************/
3622 static int cmd_reget(void)
3624 TALLOC_CTX *ctx = talloc_tos();
3625 char *local_name = NULL;
3626 char *remote_name = NULL;
3627 char *fname = NULL;
3628 char *p = NULL;
3630 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3631 if (!remote_name) {
3632 return 1;
3635 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3636 d_printf("reget <filename>\n");
3637 return 1;
3639 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3640 if (!remote_name) {
3641 return 1;
3643 remote_name = clean_name(ctx,remote_name);
3644 if (!remote_name) {
3645 return 1;
3648 local_name = fname;
3649 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3650 if (p) {
3651 local_name = p;
3654 return do_get(remote_name, local_name, true);
3657 /****************************************************************************
3658 Put a file restarting at end of local file.
3659 ****************************************************************************/
3661 static int cmd_reput(void)
3663 TALLOC_CTX *ctx = talloc_tos();
3664 char *local_name = NULL;
3665 char *remote_name = NULL;
3666 char *buf;
3667 SMB_STRUCT_STAT st;
3669 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3670 if (!remote_name) {
3671 return 1;
3674 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3675 d_printf("reput <filename>\n");
3676 return 1;
3679 if (!file_exist_stat(local_name, &st, false)) {
3680 d_printf("%s does not exist\n", local_name);
3681 return 1;
3684 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3685 remote_name = talloc_asprintf_append(remote_name,
3686 "%s", buf);
3687 } else {
3688 remote_name = talloc_asprintf_append(remote_name,
3689 "%s", local_name);
3691 if (!remote_name) {
3692 return 1;
3695 remote_name = clean_name(ctx, remote_name);
3696 if (!remote_name) {
3697 return 1;
3700 return do_put(remote_name, local_name, true);
3703 /****************************************************************************
3704 List a share name.
3705 ****************************************************************************/
3707 static void browse_fn(const char *name, uint32 m,
3708 const char *comment, void *state)
3710 const char *typestr = "";
3712 switch (m & 7) {
3713 case STYPE_DISKTREE:
3714 typestr = "Disk";
3715 break;
3716 case STYPE_PRINTQ:
3717 typestr = "Printer";
3718 break;
3719 case STYPE_DEVICE:
3720 typestr = "Device";
3721 break;
3722 case STYPE_IPC:
3723 typestr = "IPC";
3724 break;
3726 /* FIXME: If the remote machine returns non-ascii characters
3727 in any of these fields, they can corrupt the output. We
3728 should remove them. */
3729 if (!grepable) {
3730 d_printf("\t%-15s %-10.10s%s\n",
3731 name,typestr,comment);
3732 } else {
3733 d_printf ("%s|%s|%s\n",typestr,name,comment);
3737 static bool browse_host_rpc(bool sort)
3739 NTSTATUS status;
3740 struct rpc_pipe_client *pipe_hnd = NULL;
3741 TALLOC_CTX *frame = talloc_stackframe();
3742 WERROR werr;
3743 struct srvsvc_NetShareInfoCtr info_ctr;
3744 struct srvsvc_NetShareCtr1 ctr1;
3745 uint32_t resume_handle = 0;
3746 uint32_t total_entries = 0;
3747 int i;
3749 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3750 &pipe_hnd);
3752 if (!NT_STATUS_IS_OK(status)) {
3753 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3754 nt_errstr(status)));
3755 TALLOC_FREE(frame);
3756 return false;
3759 ZERO_STRUCT(info_ctr);
3760 ZERO_STRUCT(ctr1);
3762 info_ctr.level = 1;
3763 info_ctr.ctr.ctr1 = &ctr1;
3765 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3766 pipe_hnd->desthost,
3767 &info_ctr,
3768 0xffffffff,
3769 &total_entries,
3770 &resume_handle,
3771 &werr);
3773 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3774 TALLOC_FREE(pipe_hnd);
3775 TALLOC_FREE(frame);
3776 return false;
3779 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3780 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3781 browse_fn(info.name, info.type, info.comment, NULL);
3784 TALLOC_FREE(pipe_hnd);
3785 TALLOC_FREE(frame);
3786 return true;
3789 /****************************************************************************
3790 Try and browse available connections on a host.
3791 ****************************************************************************/
3793 static bool browse_host(bool sort)
3795 int ret;
3796 if (!grepable) {
3797 d_printf("\n\tSharename Type Comment\n");
3798 d_printf("\t--------- ---- -------\n");
3801 if (browse_host_rpc(sort)) {
3802 return true;
3805 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3806 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3808 return (ret != -1);
3811 /****************************************************************************
3812 List a server name.
3813 ****************************************************************************/
3815 static void server_fn(const char *name, uint32 m,
3816 const char *comment, void *state)
3819 if (!grepable){
3820 d_printf("\t%-16s %s\n", name, comment);
3821 } else {
3822 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3826 /****************************************************************************
3827 Try and browse available connections on a host.
3828 ****************************************************************************/
3830 static bool list_servers(const char *wk_grp)
3832 fstring state;
3834 if (!cli->server_domain)
3835 return false;
3837 if (!grepable) {
3838 d_printf("\n\tServer Comment\n");
3839 d_printf("\t--------- -------\n");
3841 fstrcpy( state, "Server" );
3842 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3843 state);
3845 if (!grepable) {
3846 d_printf("\n\tWorkgroup Master\n");
3847 d_printf("\t--------- -------\n");
3850 fstrcpy( state, "Workgroup" );
3851 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3852 server_fn, state);
3853 return true;
3856 /****************************************************************************
3857 Print or set current VUID
3858 ****************************************************************************/
3860 static int cmd_vuid(void)
3862 TALLOC_CTX *ctx = talloc_tos();
3863 char *buf;
3865 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3866 d_printf("Current VUID is %d\n", cli->vuid);
3867 return 0;
3870 cli->vuid = atoi(buf);
3871 return 0;
3874 /****************************************************************************
3875 Setup a new VUID, by issuing a session setup
3876 ****************************************************************************/
3878 static int cmd_logon(void)
3880 TALLOC_CTX *ctx = talloc_tos();
3881 char *l_username, *l_password;
3883 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3884 d_printf("logon <username> [<password>]\n");
3885 return 0;
3888 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3889 char *pass = getpass("Password: ");
3890 if (pass) {
3891 l_password = talloc_strdup(ctx,pass);
3894 if (!l_password) {
3895 return 1;
3898 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3899 l_password, strlen(l_password),
3900 l_password, strlen(l_password),
3901 lp_workgroup()))) {
3902 d_printf("session setup failed: %s\n", cli_errstr(cli));
3903 return -1;
3906 d_printf("Current VUID is %d\n", cli->vuid);
3907 return 0;
3911 /****************************************************************************
3912 list active connections
3913 ****************************************************************************/
3915 static int cmd_list_connect(void)
3917 cli_cm_display(cli);
3918 return 0;
3921 /****************************************************************************
3922 display the current active client connection
3923 ****************************************************************************/
3925 static int cmd_show_connect( void )
3927 TALLOC_CTX *ctx = talloc_tos();
3928 struct cli_state *targetcli;
3929 char *targetpath;
3931 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3932 &targetcli, &targetpath ) ) {
3933 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3934 return 1;
3937 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3938 return 0;
3941 /****************************************************************************
3942 iosize command
3943 ***************************************************************************/
3945 int cmd_iosize(void)
3947 TALLOC_CTX *ctx = talloc_tos();
3948 char *buf;
3949 int iosize;
3951 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3952 if (!smb_encrypt) {
3953 d_printf("iosize <n> or iosize 0x<n>. "
3954 "Minimum is 16384 (0x4000), "
3955 "max is 16776960 (0xFFFF00)\n");
3956 } else {
3957 d_printf("iosize <n> or iosize 0x<n>. "
3958 "(Encrypted connection) ,"
3959 "Minimum is 16384 (0x4000), "
3960 "max is 130048 (0x1FC00)\n");
3962 return 1;
3965 iosize = strtol(buf,NULL,0);
3966 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3967 d_printf("iosize out of range for encrypted "
3968 "connection (min = 16384 (0x4000), "
3969 "max = 130048 (0x1FC00)");
3970 return 1;
3971 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3972 d_printf("iosize out of range (min = 16384 (0x4000), "
3973 "max = 16776960 (0xFFFF00)");
3974 return 1;
3977 io_bufsize = iosize;
3978 d_printf("iosize is now %d\n", io_bufsize);
3979 return 0;
3983 /* Some constants for completing filename arguments */
3985 #define COMPL_NONE 0 /* No completions */
3986 #define COMPL_REMOTE 1 /* Complete remote filename */
3987 #define COMPL_LOCAL 2 /* Complete local filename */
3989 /* This defines the commands supported by this client.
3990 * NOTE: The "!" must be the last one in the list because it's fn pointer
3991 * field is NULL, and NULL in that field is used in process_tok()
3992 * (below) to indicate the end of the list. crh
3994 static struct {
3995 const char *name;
3996 int (*fn)(void);
3997 const char *description;
3998 char compl_args[2]; /* Completion argument info */
3999 } commands[] = {
4000 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4001 {"allinfo",cmd_allinfo,"<file> show all available info",
4002 {COMPL_NONE,COMPL_NONE}},
4003 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4004 {"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}},
4005 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4006 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4007 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4008 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4009 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4010 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4011 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4012 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4013 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4014 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4015 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4016 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4017 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4018 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4019 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4020 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4021 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4022 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4023 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4024 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4025 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4026 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4027 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4028 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4029 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4030 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4031 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4032 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4033 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4034 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4035 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4036 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4037 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4038 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4039 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4040 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4041 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4042 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4043 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4044 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4045 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4046 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4047 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4048 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4049 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4050 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4051 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4052 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4053 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4054 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4055 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4056 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4057 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4058 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4059 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4060 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4061 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4062 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4063 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4064 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4065 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4066 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4067 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4068 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4069 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4070 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4071 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4072 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4074 /* Yes, this must be here, see crh's comment above. */
4075 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4076 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4079 /*******************************************************************
4080 Lookup a command string in the list of commands, including
4081 abbreviations.
4082 ******************************************************************/
4084 static int process_tok(char *tok)
4086 int i = 0, matches = 0;
4087 int cmd=0;
4088 int tok_len = strlen(tok);
4090 while (commands[i].fn != NULL) {
4091 if (strequal(commands[i].name,tok)) {
4092 matches = 1;
4093 cmd = i;
4094 break;
4095 } else if (strnequal(commands[i].name, tok, tok_len)) {
4096 matches++;
4097 cmd = i;
4099 i++;
4102 if (matches == 0)
4103 return(-1);
4104 else if (matches == 1)
4105 return(cmd);
4106 else
4107 return(-2);
4110 /****************************************************************************
4111 Help.
4112 ****************************************************************************/
4114 static int cmd_help(void)
4116 TALLOC_CTX *ctx = talloc_tos();
4117 int i=0,j;
4118 char *buf;
4120 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4121 if ((i = process_tok(buf)) >= 0)
4122 d_printf("HELP %s:\n\t%s\n\n",
4123 commands[i].name,commands[i].description);
4124 } else {
4125 while (commands[i].description) {
4126 for (j=0; commands[i].description && (j<5); j++) {
4127 d_printf("%-15s",commands[i].name);
4128 i++;
4130 d_printf("\n");
4133 return 0;
4136 /****************************************************************************
4137 Process a -c command string.
4138 ****************************************************************************/
4140 static int process_command_string(const char *cmd_in)
4142 TALLOC_CTX *ctx = talloc_tos();
4143 char *cmd = talloc_strdup(ctx, cmd_in);
4144 int rc = 0;
4146 if (!cmd) {
4147 return 1;
4149 /* establish the connection if not already */
4151 if (!cli) {
4152 cli = cli_cm_open(talloc_tos(), NULL,
4153 have_ip ? dest_ss_str : desthost,
4154 service, auth_info,
4155 true, smb_encrypt,
4156 max_protocol, port, name_type);
4157 if (!cli) {
4158 return 1;
4162 while (cmd[0] != '\0') {
4163 char *line;
4164 char *p;
4165 char *tok;
4166 int i;
4168 if ((p = strchr_m(cmd, ';')) == 0) {
4169 line = cmd;
4170 cmd += strlen(cmd);
4171 } else {
4172 *p = '\0';
4173 line = cmd;
4174 cmd = p + 1;
4177 /* and get the first part of the command */
4178 cmd_ptr = line;
4179 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4180 continue;
4183 if ((i = process_tok(tok)) >= 0) {
4184 rc = commands[i].fn();
4185 } else if (i == -2) {
4186 d_printf("%s: command abbreviation ambiguous\n",tok);
4187 } else {
4188 d_printf("%s: command not found\n",tok);
4192 return rc;
4195 #define MAX_COMPLETIONS 100
4197 struct completion_remote {
4198 char *dirmask;
4199 char **matches;
4200 int count, samelen;
4201 const char *text;
4202 int len;
4205 static void completion_remote_filter(const char *mnt,
4206 struct file_info *f,
4207 const char *mask,
4208 void *state)
4210 struct completion_remote *info = (struct completion_remote *)state;
4212 if (info->count >= MAX_COMPLETIONS - 1) {
4213 return;
4215 if (strncmp(info->text, f->name, info->len) != 0) {
4216 return;
4218 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4219 return;
4222 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4223 info->matches[info->count] = SMB_STRDUP(f->name);
4224 else {
4225 TALLOC_CTX *ctx = talloc_stackframe();
4226 char *tmp;
4228 tmp = talloc_strdup(ctx,info->dirmask);
4229 if (!tmp) {
4230 TALLOC_FREE(ctx);
4231 return;
4233 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4234 if (!tmp) {
4235 TALLOC_FREE(ctx);
4236 return;
4238 if (f->mode & aDIR) {
4239 tmp = talloc_asprintf_append(tmp, "%s",
4240 CLI_DIRSEP_STR);
4242 if (!tmp) {
4243 TALLOC_FREE(ctx);
4244 return;
4246 info->matches[info->count] = SMB_STRDUP(tmp);
4247 TALLOC_FREE(ctx);
4249 if (info->matches[info->count] == NULL) {
4250 return;
4252 if (f->mode & aDIR) {
4253 smb_readline_ca_char(0);
4255 if (info->count == 1) {
4256 info->samelen = strlen(info->matches[info->count]);
4257 } else {
4258 while (strncmp(info->matches[info->count],
4259 info->matches[info->count-1],
4260 info->samelen) != 0) {
4261 info->samelen--;
4264 info->count++;
4267 static char **remote_completion(const char *text, int len)
4269 TALLOC_CTX *ctx = talloc_stackframe();
4270 char *dirmask = NULL;
4271 char *targetpath = NULL;
4272 struct cli_state *targetcli = NULL;
4273 int i;
4274 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4276 /* can't have non-static initialisation on Sun CC, so do it
4277 at run time here */
4278 info.samelen = len;
4279 info.text = text;
4280 info.len = len;
4282 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4283 if (!info.matches) {
4284 TALLOC_FREE(ctx);
4285 return NULL;
4289 * We're leaving matches[0] free to fill it later with the text to
4290 * display: Either the one single match or the longest common subset
4291 * of the matches.
4293 info.matches[0] = NULL;
4294 info.count = 1;
4296 for (i = len-1; i >= 0; i--) {
4297 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4298 break;
4302 info.text = text+i+1;
4303 info.samelen = info.len = len-i-1;
4305 if (i > 0) {
4306 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4307 if (!info.dirmask) {
4308 goto cleanup;
4310 strncpy(info.dirmask, text, i+1);
4311 info.dirmask[i+1] = 0;
4312 dirmask = talloc_asprintf(ctx,
4313 "%s%*s*",
4314 client_get_cur_dir(),
4315 i-1,
4316 text);
4317 } else {
4318 info.dirmask = SMB_STRDUP("");
4319 if (!info.dirmask) {
4320 goto cleanup;
4322 dirmask = talloc_asprintf(ctx,
4323 "%s*",
4324 client_get_cur_dir());
4326 if (!dirmask) {
4327 goto cleanup;
4330 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4331 goto cleanup;
4333 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4334 completion_remote_filter, (void *)&info) < 0) {
4335 goto cleanup;
4338 if (info.count == 1) {
4340 * No matches at all, NULL indicates there is nothing
4342 SAFE_FREE(info.matches[0]);
4343 SAFE_FREE(info.matches);
4344 TALLOC_FREE(ctx);
4345 return NULL;
4348 if (info.count == 2) {
4350 * Exactly one match in matches[1], indicate this is the one
4351 * in matches[0].
4353 info.matches[0] = info.matches[1];
4354 info.matches[1] = NULL;
4355 info.count -= 1;
4356 TALLOC_FREE(ctx);
4357 return info.matches;
4361 * We got more than one possible match, set the result to the maximum
4362 * common subset
4365 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4366 info.matches[info.count] = NULL;
4367 return info.matches;
4369 cleanup:
4370 for (i = 0; i < info.count; i++) {
4371 SAFE_FREE(info.matches[i]);
4373 SAFE_FREE(info.matches);
4374 SAFE_FREE(info.dirmask);
4375 TALLOC_FREE(ctx);
4376 return NULL;
4379 static char **completion_fn(const char *text, int start, int end)
4381 smb_readline_ca_char(' ');
4383 if (start) {
4384 const char *buf, *sp;
4385 int i;
4386 char compl_type;
4388 buf = smb_readline_get_line_buffer();
4389 if (buf == NULL)
4390 return NULL;
4392 sp = strchr(buf, ' ');
4393 if (sp == NULL)
4394 return NULL;
4396 for (i = 0; commands[i].name; i++) {
4397 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4398 (commands[i].name[sp - buf] == 0)) {
4399 break;
4402 if (commands[i].name == NULL)
4403 return NULL;
4405 while (*sp == ' ')
4406 sp++;
4408 if (sp == (buf + start))
4409 compl_type = commands[i].compl_args[0];
4410 else
4411 compl_type = commands[i].compl_args[1];
4413 if (compl_type == COMPL_REMOTE)
4414 return remote_completion(text, end - start);
4415 else /* fall back to local filename completion */
4416 return NULL;
4417 } else {
4418 char **matches;
4419 int i, len, samelen = 0, count=1;
4421 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4422 if (!matches) {
4423 return NULL;
4425 matches[0] = NULL;
4427 len = strlen(text);
4428 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4429 if (strncmp(text, commands[i].name, len) == 0) {
4430 matches[count] = SMB_STRDUP(commands[i].name);
4431 if (!matches[count])
4432 goto cleanup;
4433 if (count == 1)
4434 samelen = strlen(matches[count]);
4435 else
4436 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4437 samelen--;
4438 count++;
4442 switch (count) {
4443 case 0: /* should never happen */
4444 case 1:
4445 goto cleanup;
4446 case 2:
4447 matches[0] = SMB_STRDUP(matches[1]);
4448 break;
4449 default:
4450 matches[0] = (char *)SMB_MALLOC(samelen+1);
4451 if (!matches[0])
4452 goto cleanup;
4453 strncpy(matches[0], matches[1], samelen);
4454 matches[0][samelen] = 0;
4456 matches[count] = NULL;
4457 return matches;
4459 cleanup:
4460 for (i = 0; i < count; i++)
4461 free(matches[i]);
4463 free(matches);
4464 return NULL;
4468 static bool finished;
4470 /****************************************************************************
4471 Make sure we swallow keepalives during idle time.
4472 ****************************************************************************/
4474 static void readline_callback(void)
4476 fd_set fds;
4477 struct timeval timeout;
4478 static time_t last_t;
4479 time_t t;
4481 t = time(NULL);
4483 if (t - last_t < 5)
4484 return;
4486 last_t = t;
4488 again:
4490 if (cli->fd == -1)
4491 return;
4493 FD_ZERO(&fds);
4494 FD_SET(cli->fd,&fds);
4496 timeout.tv_sec = 0;
4497 timeout.tv_usec = 0;
4498 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4500 /* We deliberately use receive_smb_raw instead of
4501 client_receive_smb as we want to receive
4502 session keepalives and then drop them here.
4504 if (FD_ISSET(cli->fd,&fds)) {
4505 NTSTATUS status;
4506 size_t len;
4508 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4510 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4512 if (!NT_STATUS_IS_OK(status)) {
4513 DEBUG(0, ("Read from server failed, maybe it closed "
4514 "the connection\n"));
4516 finished = true;
4517 smb_readline_done();
4518 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4519 set_smb_read_error(&cli->smb_rw_error,
4520 SMB_READ_EOF);
4521 return;
4524 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4525 set_smb_read_error(&cli->smb_rw_error,
4526 SMB_READ_TIMEOUT);
4527 return;
4530 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4531 return;
4533 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4534 DEBUG(0, ("Read from server "
4535 "returned unexpected packet!\n"));
4536 return;
4539 goto again;
4542 /* Ping the server to keep the connection alive using SMBecho. */
4544 NTSTATUS status;
4545 unsigned char garbage[16];
4546 memset(garbage, 0xf0, sizeof(garbage));
4547 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4549 if (!NT_STATUS_IS_OK(status)) {
4550 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4551 "the connection\n"));
4552 finished = true;
4553 smb_readline_done();
4558 /****************************************************************************
4559 Process commands on stdin.
4560 ****************************************************************************/
4562 static int process_stdin(void)
4564 int rc = 0;
4566 while (!finished) {
4567 TALLOC_CTX *frame = talloc_stackframe();
4568 char *tok = NULL;
4569 char *the_prompt = NULL;
4570 char *line = NULL;
4571 int i;
4573 /* display a prompt */
4574 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4575 TALLOC_FREE(frame);
4576 break;
4578 line = smb_readline(the_prompt, readline_callback, completion_fn);
4579 SAFE_FREE(the_prompt);
4580 if (!line) {
4581 TALLOC_FREE(frame);
4582 break;
4585 /* special case - first char is ! */
4586 if (*line == '!') {
4587 if (system(line + 1) == -1) {
4588 d_printf("system() command %s failed.\n",
4589 line+1);
4591 SAFE_FREE(line);
4592 TALLOC_FREE(frame);
4593 continue;
4596 /* and get the first part of the command */
4597 cmd_ptr = line;
4598 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4599 TALLOC_FREE(frame);
4600 SAFE_FREE(line);
4601 continue;
4604 if ((i = process_tok(tok)) >= 0) {
4605 rc = commands[i].fn();
4606 } else if (i == -2) {
4607 d_printf("%s: command abbreviation ambiguous\n",tok);
4608 } else {
4609 d_printf("%s: command not found\n",tok);
4611 SAFE_FREE(line);
4612 TALLOC_FREE(frame);
4614 return rc;
4617 /****************************************************************************
4618 Process commands from the client.
4619 ****************************************************************************/
4621 static int process(const char *base_directory)
4623 int rc = 0;
4625 cli = cli_cm_open(talloc_tos(), NULL,
4626 have_ip ? dest_ss_str : desthost,
4627 service, auth_info, true, smb_encrypt,
4628 max_protocol, port, name_type);
4629 if (!cli) {
4630 return 1;
4633 if (base_directory && *base_directory) {
4634 rc = do_cd(base_directory);
4635 if (rc) {
4636 cli_shutdown(cli);
4637 return rc;
4641 if (cmdstr) {
4642 rc = process_command_string(cmdstr);
4643 } else {
4644 process_stdin();
4647 cli_shutdown(cli);
4648 return rc;
4651 /****************************************************************************
4652 Handle a -L query.
4653 ****************************************************************************/
4655 static int do_host_query(const char *query_host)
4657 cli = cli_cm_open(talloc_tos(), NULL,
4658 query_host, "IPC$", auth_info, true, smb_encrypt,
4659 max_protocol, port, name_type);
4660 if (!cli)
4661 return 1;
4663 browse_host(true);
4665 /* Ensure that the host can do IPv4 */
4667 if (!interpret_addr(query_host)) {
4668 struct sockaddr_storage ss;
4669 if (interpret_string_addr(&ss, query_host, 0) &&
4670 (ss.ss_family != AF_INET)) {
4671 d_printf("%s is an IPv6 address -- no workgroup available\n",
4672 query_host);
4673 return 1;
4677 if (port != 139) {
4679 /* Workgroups simply don't make sense over anything
4680 else but port 139... */
4682 cli_shutdown(cli);
4683 cli = cli_cm_open(talloc_tos(), NULL,
4684 query_host, "IPC$", auth_info, true, smb_encrypt,
4685 max_protocol, 139, name_type);
4688 if (cli == NULL) {
4689 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4690 return 1;
4693 list_servers(lp_workgroup());
4695 cli_shutdown(cli);
4697 return(0);
4700 /****************************************************************************
4701 Handle a tar operation.
4702 ****************************************************************************/
4704 static int do_tar_op(const char *base_directory)
4706 int ret;
4708 /* do we already have a connection? */
4709 if (!cli) {
4710 cli = cli_cm_open(talloc_tos(), NULL,
4711 have_ip ? dest_ss_str : desthost,
4712 service, auth_info, true, smb_encrypt,
4713 max_protocol, port, name_type);
4714 if (!cli)
4715 return 1;
4718 recurse=true;
4720 if (base_directory && *base_directory) {
4721 ret = do_cd(base_directory);
4722 if (ret) {
4723 cli_shutdown(cli);
4724 return ret;
4728 ret=process_tar();
4730 cli_shutdown(cli);
4732 return(ret);
4735 /****************************************************************************
4736 Handle a message operation.
4737 ****************************************************************************/
4739 static int do_message_op(struct user_auth_info *a_info)
4741 struct sockaddr_storage ss;
4742 struct nmb_name called, calling;
4743 fstring server_name;
4744 char name_type_hex[10];
4745 int msg_port;
4746 NTSTATUS status;
4748 make_nmb_name(&calling, calling_name, 0x0);
4749 make_nmb_name(&called , desthost, name_type);
4751 fstrcpy(server_name, desthost);
4752 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4753 fstrcat(server_name, name_type_hex);
4755 zero_sockaddr(&ss);
4756 if (have_ip)
4757 ss = dest_ss;
4759 /* we can only do messages over port 139 (to windows clients at least) */
4761 msg_port = port ? port : 139;
4763 if (!(cli=cli_initialise())) {
4764 d_printf("Connection to %s failed\n", desthost);
4765 return 1;
4767 cli_set_port(cli, msg_port);
4769 status = cli_connect(cli, server_name, &ss);
4770 if (!NT_STATUS_IS_OK(status)) {
4771 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4772 return 1;
4775 if (!cli_session_request(cli, &calling, &called)) {
4776 d_printf("session request failed\n");
4777 cli_shutdown(cli);
4778 return 1;
4781 send_message(get_cmdline_auth_info_username(a_info));
4782 cli_shutdown(cli);
4784 return 0;
4787 /****************************************************************************
4788 main program
4789 ****************************************************************************/
4791 int main(int argc,char *argv[])
4793 char *base_directory = NULL;
4794 int opt;
4795 char *query_host = NULL;
4796 bool message = false;
4797 static const char *new_name_resolve_order = NULL;
4798 poptContext pc;
4799 char *p;
4800 int rc = 0;
4801 fstring new_workgroup;
4802 bool tar_opt = false;
4803 bool service_opt = false;
4804 struct poptOption long_options[] = {
4805 POPT_AUTOHELP
4807 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4808 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4809 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4810 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4811 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4812 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4813 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4814 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4815 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4816 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4817 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4818 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4819 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4820 POPT_COMMON_SAMBA
4821 POPT_COMMON_CONNECTION
4822 POPT_COMMON_CREDENTIALS
4823 POPT_TABLEEND
4825 TALLOC_CTX *frame = talloc_stackframe();
4827 if (!client_set_cur_dir("\\")) {
4828 exit(ENOMEM);
4831 /* initialize the workgroup name so we can determine whether or
4832 not it was set by a command line option */
4834 set_global_myworkgroup( "" );
4835 set_global_myname( "" );
4837 /* set default debug level to 1 regardless of what smb.conf sets */
4838 setup_logging( "smbclient", true );
4839 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4840 if ((dbf = x_fdup(x_stderr))) {
4841 x_setbuf( dbf, NULL );
4844 load_case_tables();
4846 auth_info = user_auth_info_init(frame);
4847 if (auth_info == NULL) {
4848 exit(1);
4850 popt_common_set_auth_info(auth_info);
4852 /* skip argv(0) */
4853 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4854 poptSetOtherOptionHelp(pc, "service <password>");
4856 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4858 while ((opt = poptGetNextOpt(pc)) != -1) {
4860 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4861 /* I see no other way to keep things sane --SSS */
4862 if (tar_opt == true) {
4863 while (poptPeekArg(pc)) {
4864 poptGetArg(pc);
4866 tar_opt = false;
4869 /* if the service has not yet been specified lets see if it is available in the popt stack */
4870 if (!service_opt && poptPeekArg(pc)) {
4871 service = talloc_strdup(frame, poptGetArg(pc));
4872 if (!service) {
4873 exit(ENOMEM);
4875 service_opt = true;
4878 /* if the service has already been retrieved then check if we have also a password */
4879 if (service_opt
4880 && (!get_cmdline_auth_info_got_pass(auth_info))
4881 && poptPeekArg(pc)) {
4882 set_cmdline_auth_info_password(auth_info,
4883 poptGetArg(pc));
4886 switch (opt) {
4887 case 'M':
4888 /* Messages are sent to NetBIOS name type 0x3
4889 * (Messenger Service). Make sure we default
4890 * to port 139 instead of port 445. srl,crh
4892 name_type = 0x03;
4893 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4894 if (!desthost) {
4895 exit(ENOMEM);
4897 if( !port )
4898 port = 139;
4899 message = true;
4900 break;
4901 case 'I':
4903 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4904 exit(1);
4906 have_ip = true;
4907 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4909 break;
4910 case 'E':
4911 if (dbf) {
4912 x_fclose(dbf);
4914 dbf = x_stderr;
4915 display_set_stderr();
4916 break;
4918 case 'L':
4919 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4920 if (!query_host) {
4921 exit(ENOMEM);
4923 break;
4924 case 'm':
4925 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4926 break;
4927 case 'T':
4928 /* We must use old option processing for this. Find the
4929 * position of the -T option in the raw argv[]. */
4931 int i;
4932 for (i = 1; i < argc; i++) {
4933 if (strncmp("-T", argv[i],2)==0)
4934 break;
4936 i++;
4937 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4938 poptPrintUsage(pc, stderr, 0);
4939 exit(1);
4942 /* this must be the last option, mark we have parsed it so that we know we have */
4943 tar_opt = true;
4944 break;
4945 case 'D':
4946 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4947 if (!base_directory) {
4948 exit(ENOMEM);
4950 break;
4951 case 'g':
4952 grepable=true;
4953 break;
4954 case 'e':
4955 smb_encrypt=true;
4956 break;
4957 case 'B':
4958 return(do_smb_browse());
4963 /* We may still have some leftovers after the last popt option has been called */
4964 if (tar_opt == true) {
4965 while (poptPeekArg(pc)) {
4966 poptGetArg(pc);
4968 tar_opt = false;
4971 /* if the service has not yet been specified lets see if it is available in the popt stack */
4972 if (!service_opt && poptPeekArg(pc)) {
4973 service = talloc_strdup(frame,poptGetArg(pc));
4974 if (!service) {
4975 exit(ENOMEM);
4977 service_opt = true;
4980 /* if the service has already been retrieved then check if we have also a password */
4981 if (service_opt
4982 && !get_cmdline_auth_info_got_pass(auth_info)
4983 && poptPeekArg(pc)) {
4984 set_cmdline_auth_info_password(auth_info,
4985 poptGetArg(pc));
4989 * Don't load debug level from smb.conf. It should be
4990 * set by cmdline arg or remain default (0)
4992 AllowDebugChange = false;
4994 /* save the workgroup...
4996 FIXME!! do we need to do this for other options as well
4997 (or maybe a generic way to keep lp_load() from overwriting
4998 everything)? */
5000 fstrcpy( new_workgroup, lp_workgroup() );
5001 calling_name = talloc_strdup(frame, global_myname() );
5002 if (!calling_name) {
5003 exit(ENOMEM);
5006 if ( override_logfile )
5007 setup_logging( lp_logfile(), false );
5009 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5010 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5011 argv[0], get_dyn_CONFIGFILE());
5014 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5015 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5016 exit(-1);
5019 load_interfaces();
5021 if (service_opt && service) {
5022 size_t len;
5024 /* Convert any '/' characters in the service name to '\' characters */
5025 string_replace(service, '/','\\');
5026 if (count_chars(service,'\\') < 3) {
5027 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5028 poptPrintUsage(pc, stderr, 0);
5029 exit(1);
5031 /* Remove trailing slashes */
5032 len = strlen(service);
5033 while(len > 0 && service[len - 1] == '\\') {
5034 --len;
5035 service[len] = '\0';
5039 if ( strlen(new_workgroup) != 0 ) {
5040 set_global_myworkgroup( new_workgroup );
5043 if ( strlen(calling_name) != 0 ) {
5044 set_global_myname( calling_name );
5045 } else {
5046 TALLOC_FREE(calling_name);
5047 calling_name = talloc_strdup(frame, global_myname() );
5050 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5051 if (!init_names()) {
5052 fprintf(stderr, "init_names() failed\n");
5053 exit(1);
5056 if(new_name_resolve_order)
5057 lp_set_name_resolve_order(new_name_resolve_order);
5059 if (!tar_type && !query_host && !service && !message) {
5060 poptPrintUsage(pc, stderr, 0);
5061 exit(1);
5064 poptFreeContext(pc);
5066 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5068 /* Ensure we have a password (or equivalent). */
5069 set_cmdline_auth_info_getpass(auth_info);
5071 if (tar_type) {
5072 if (cmdstr)
5073 process_command_string(cmdstr);
5074 return do_tar_op(base_directory);
5077 if (query_host && *query_host) {
5078 char *qhost = query_host;
5079 char *slash;
5081 while (*qhost == '\\' || *qhost == '/')
5082 qhost++;
5084 if ((slash = strchr_m(qhost, '/'))
5085 || (slash = strchr_m(qhost, '\\'))) {
5086 *slash = 0;
5089 if ((p=strchr_m(qhost, '#'))) {
5090 *p = 0;
5091 p++;
5092 sscanf(p, "%x", &name_type);
5095 return do_host_query(qhost);
5098 if (message) {
5099 return do_message_op(auth_info);
5102 if (process(base_directory)) {
5103 return 1;
5106 TALLOC_FREE(frame);
5107 return rc;