idmap-autorid: Slightly simplify idmap_autorid_get_domainrange
[Samba.git] / source3 / client / client.c
bloba6a7a22e3f3e338a6ee7d264325e4322857fb365
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 "popt_common.h"
26 #include "rpc_client/cli_pipe.h"
27 #include "client/client_proto.h"
28 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
29 #include "../lib/util/select.h"
30 #include "system/readline.h"
31 #include "../libcli/smbreadline/smbreadline.h"
32 #include "../libcli/security/security.h"
33 #include "system/select.h"
34 #include "libsmb/clirap.h"
36 #ifndef REGISTER
37 #define REGISTER 0
38 #endif
40 extern int do_smb_browse(void); /* mDNS browsing */
42 extern bool override_logfile;
43 extern char tar_type;
45 static int port = 0;
46 static char *service;
47 static char *desthost;
48 static char *calling_name;
49 static bool grepable = false;
50 static char *cmdstr = NULL;
51 const char *cmd_ptr = NULL;
53 static int io_bufsize = 524288;
55 static int name_type = 0x20;
56 static int max_protocol = PROTOCOL_NT1;
58 static int process_tok(char *tok);
59 static int cmd_help(void);
61 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
63 /* 30 second timeout on most commands */
64 #define CLIENT_TIMEOUT (30*1000)
65 #define SHORT_TIMEOUT (5*1000)
67 /* value for unused fid field in trans2 secondary request */
68 #define FID_UNUSED (0xFFFF)
70 time_t newer_than = 0;
71 static int archive_level = 0;
73 static bool translation = false;
74 static bool have_ip;
76 /* clitar bits insert */
77 extern int blocksize;
78 extern bool tar_inc;
79 extern bool tar_reset;
80 /* clitar bits end */
82 static bool prompt = true;
84 static bool recurse = false;
85 static bool showacls = false;
86 bool lowercase = false;
88 static struct sockaddr_storage dest_ss;
89 static char dest_ss_str[INET6_ADDRSTRLEN];
91 #define SEPARATORS " \t\n\r"
93 static bool abort_mget = true;
95 /* timing globals */
96 uint64_t get_total_size = 0;
97 unsigned int get_total_time_ms = 0;
98 static uint64_t put_total_size = 0;
99 static unsigned int put_total_time_ms = 0;
101 /* totals globals */
102 static double dir_total;
104 /* encrypted state. */
105 static bool smb_encrypt;
107 /* root cli_state connection */
109 struct cli_state *cli;
111 static char CLI_DIRSEP_CHAR = '\\';
112 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
114 /* Authentication for client connections. */
115 struct user_auth_info *auth_info;
117 /* Accessor functions for directory paths. */
118 static char *fileselection;
119 static const char *client_get_fileselection(void)
121 if (fileselection) {
122 return fileselection;
124 return "";
127 static const char *client_set_fileselection(const char *new_fs)
129 SAFE_FREE(fileselection);
130 if (new_fs) {
131 fileselection = SMB_STRDUP(new_fs);
133 return client_get_fileselection();
136 static char *cwd;
137 static const char *client_get_cwd(void)
139 if (cwd) {
140 return cwd;
142 return CLI_DIRSEP_STR;
145 static const char *client_set_cwd(const char *new_cwd)
147 SAFE_FREE(cwd);
148 if (new_cwd) {
149 cwd = SMB_STRDUP(new_cwd);
151 return client_get_cwd();
154 static char *cur_dir;
155 const char *client_get_cur_dir(void)
157 if (cur_dir) {
158 return cur_dir;
160 return CLI_DIRSEP_STR;
163 const char *client_set_cur_dir(const char *newdir)
165 SAFE_FREE(cur_dir);
166 if (newdir) {
167 cur_dir = SMB_STRDUP(newdir);
169 return client_get_cur_dir();
172 /****************************************************************************
173 Put up a yes/no prompt.
174 ****************************************************************************/
176 static bool yesno(const char *p)
178 char ans[20];
179 printf("%s",p);
181 if (!fgets(ans,sizeof(ans)-1,stdin))
182 return(False);
184 if (*ans == 'y' || *ans == 'Y')
185 return(True);
187 return(False);
190 /****************************************************************************
191 Write to a local file with CR/LF->LF translation if appropriate. Return the
192 number taken from the buffer. This may not equal the number written.
193 ****************************************************************************/
195 static int writefile(int f, char *b, int n)
197 int i;
199 if (!translation) {
200 return write(f,b,n);
203 i = 0;
204 while (i < n) {
205 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
206 b++;i++;
208 if (write(f, b, 1) != 1) {
209 break;
211 b++;
212 i++;
215 return(i);
218 /****************************************************************************
219 Read from a file with LF->CR/LF translation if appropriate. Return the
220 number read. read approx n bytes.
221 ****************************************************************************/
223 static int readfile(uint8_t *b, int n, XFILE *f)
225 int i;
226 int c;
228 if (!translation)
229 return x_fread(b,1,n,f);
231 i = 0;
232 while (i < (n - 1) && (i < BUFFER_SIZE)) {
233 if ((c = x_getc(f)) == EOF) {
234 break;
237 if (c == '\n') { /* change all LFs to CR/LF */
238 b[i++] = '\r';
241 b[i++] = c;
244 return(i);
247 struct push_state {
248 XFILE *f;
249 SMB_OFF_T nread;
252 static size_t push_source(uint8_t *buf, size_t n, void *priv)
254 struct push_state *state = (struct push_state *)priv;
255 int result;
257 if (x_feof(state->f)) {
258 return 0;
261 result = readfile(buf, n, state->f);
262 state->nread += result;
263 return result;
266 /****************************************************************************
267 Send a message.
268 ****************************************************************************/
270 static void send_message(const char *username)
272 char buf[1600];
273 NTSTATUS status;
274 int i;
276 d_printf("Type your message, ending it with a Control-D\n");
278 i = 0;
279 while (i<sizeof(buf)-2) {
280 int c = fgetc(stdin);
281 if (c == EOF) {
282 break;
284 if (c == '\n') {
285 buf[i++] = '\r';
287 buf[i++] = c;
289 buf[i] = '\0';
291 status = cli_message(cli, desthost, username, buf);
292 if (!NT_STATUS_IS_OK(status)) {
293 d_fprintf(stderr, "cli_message returned %s\n",
294 nt_errstr(status));
298 /****************************************************************************
299 Check the space on a device.
300 ****************************************************************************/
302 static int do_dskattr(void)
304 int total, bsize, avail;
305 struct cli_state *targetcli = NULL;
306 char *targetpath = NULL;
307 TALLOC_CTX *ctx = talloc_tos();
308 NTSTATUS status;
310 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
311 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
312 return 1;
315 status = cli_dskattr(targetcli, &bsize, &total, &avail);
316 if (!NT_STATUS_IS_OK(status)) {
317 d_printf("Error in dskattr: %s\n", nt_errstr(status));
318 return 1;
321 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
322 total, bsize, avail);
324 return 0;
327 /****************************************************************************
328 Show cd/pwd.
329 ****************************************************************************/
331 static int cmd_pwd(void)
333 d_printf("Current directory is %s",service);
334 d_printf("%s\n",client_get_cur_dir());
335 return 0;
338 /****************************************************************************
339 Ensure name has correct directory separators.
340 ****************************************************************************/
342 static void normalize_name(char *newdir)
344 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
345 string_replace(newdir,'/','\\');
349 /****************************************************************************
350 Change directory - inner section.
351 ****************************************************************************/
353 static int do_cd(const char *new_dir)
355 char *newdir = NULL;
356 char *saved_dir = NULL;
357 char *new_cd = NULL;
358 char *targetpath = NULL;
359 struct cli_state *targetcli = NULL;
360 SMB_STRUCT_STAT sbuf;
361 uint32 attributes;
362 int ret = 1;
363 TALLOC_CTX *ctx = talloc_stackframe();
365 newdir = talloc_strdup(ctx, new_dir);
366 if (!newdir) {
367 TALLOC_FREE(ctx);
368 return 1;
371 normalize_name(newdir);
373 /* Save the current directory in case the new directory is invalid */
375 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
376 if (!saved_dir) {
377 TALLOC_FREE(ctx);
378 return 1;
381 if (*newdir == CLI_DIRSEP_CHAR) {
382 client_set_cur_dir(newdir);
383 new_cd = newdir;
384 } else {
385 new_cd = talloc_asprintf(ctx, "%s%s",
386 client_get_cur_dir(),
387 newdir);
388 if (!new_cd) {
389 goto out;
393 /* Ensure cur_dir ends in a DIRSEP */
394 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
395 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
396 if (!new_cd) {
397 goto out;
400 client_set_cur_dir(new_cd);
402 new_cd = clean_name(ctx, new_cd);
403 client_set_cur_dir(new_cd);
405 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
406 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
407 client_set_cur_dir(saved_dir);
408 goto out;
411 if (strequal(targetpath,CLI_DIRSEP_STR )) {
412 TALLOC_FREE(ctx);
413 return 0;
416 /* Use a trans2_qpathinfo to test directories for modern servers.
417 Except Win9x doesn't support the qpathinfo_basic() call..... */
419 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
420 NTSTATUS status;
422 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
423 &attributes);
424 if (!NT_STATUS_IS_OK(status)) {
425 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
426 client_set_cur_dir(saved_dir);
427 goto out;
430 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
431 d_printf("cd %s: not a directory\n", new_cd);
432 client_set_cur_dir(saved_dir);
433 goto out;
435 } else {
436 NTSTATUS status;
438 targetpath = talloc_asprintf(ctx,
439 "%s%s",
440 targetpath,
441 CLI_DIRSEP_STR );
442 if (!targetpath) {
443 client_set_cur_dir(saved_dir);
444 goto out;
446 targetpath = clean_name(ctx, targetpath);
447 if (!targetpath) {
448 client_set_cur_dir(saved_dir);
449 goto out;
452 status = cli_chkpath(targetcli, targetpath);
453 if (!NT_STATUS_IS_OK(status)) {
454 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
455 client_set_cur_dir(saved_dir);
456 goto out;
460 ret = 0;
462 out:
464 TALLOC_FREE(ctx);
465 return ret;
468 /****************************************************************************
469 Change directory.
470 ****************************************************************************/
472 static int cmd_cd(void)
474 char *buf = NULL;
475 int rc = 0;
477 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
478 rc = do_cd(buf);
479 } else {
480 d_printf("Current directory is %s\n",client_get_cur_dir());
483 return rc;
486 /****************************************************************************
487 Change directory.
488 ****************************************************************************/
490 static int cmd_cd_oneup(void)
492 return do_cd("..");
495 /*******************************************************************
496 Decide if a file should be operated on.
497 ********************************************************************/
499 static bool do_this_one(struct file_info *finfo)
501 if (!finfo->name) {
502 return false;
505 if (finfo->mode & aDIR) {
506 return true;
509 if (*client_get_fileselection() &&
510 !mask_match(finfo->name,client_get_fileselection(),false)) {
511 DEBUG(3,("mask_match %s failed\n", finfo->name));
512 return false;
515 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
516 DEBUG(3,("newer_than %s failed\n", finfo->name));
517 return false;
520 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
521 DEBUG(3,("archive %s failed\n", finfo->name));
522 return false;
525 return true;
528 /****************************************************************************
529 Display info about a file.
530 ****************************************************************************/
532 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
533 const char *dir)
535 time_t t;
536 TALLOC_CTX *ctx = talloc_tos();
537 NTSTATUS status = NT_STATUS_OK;
539 if (!do_this_one(finfo)) {
540 return NT_STATUS_OK;
543 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
544 if (!showacls) {
545 d_printf(" %-30s%7.7s %8.0f %s",
546 finfo->name,
547 attrib_string(finfo->mode),
548 (double)finfo->size,
549 time_to_asc(t));
550 dir_total += finfo->size;
551 } else {
552 char *afname = NULL;
553 uint16_t fnum;
555 /* skip if this is . or .. */
556 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
557 return NT_STATUS_OK;
558 /* create absolute filename for cli_ntcreate() FIXME */
559 afname = talloc_asprintf(ctx,
560 "%s%s%s",
561 dir,
562 CLI_DIRSEP_STR,
563 finfo->name);
564 if (!afname) {
565 return NT_STATUS_NO_MEMORY;
567 /* print file meta date header */
568 d_printf( "FILENAME:%s\n", finfo->name);
569 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
570 d_printf( "SIZE:%.0f\n", (double)finfo->size);
571 d_printf( "MTIME:%s", time_to_asc(t));
572 status = cli_ntcreate(cli_state, afname, 0,
573 CREATE_ACCESS_READ, 0,
574 FILE_SHARE_READ|FILE_SHARE_WRITE,
575 FILE_OPEN, 0x0, 0x0, &fnum);
576 if (!NT_STATUS_IS_OK(status)) {
577 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
578 afname, nt_errstr(status)));
579 } else {
580 struct security_descriptor *sd = NULL;
581 sd = cli_query_secdesc(cli_state, fnum, ctx);
582 if (!sd) {
583 DEBUG( 0, ("display_finfo() failed to "
584 "get security descriptor: %s",
585 cli_errstr(cli_state)));
586 status = cli_nt_error(cli_state);
587 } else {
588 display_sec_desc(sd);
590 TALLOC_FREE(sd);
592 TALLOC_FREE(afname);
594 return status;
597 /****************************************************************************
598 Accumulate size of a file.
599 ****************************************************************************/
601 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
602 const char *dir)
604 if (do_this_one(finfo)) {
605 dir_total += finfo->size;
607 return NT_STATUS_OK;
610 static bool do_list_recurse;
611 static bool do_list_dirs;
612 static char *do_list_queue = 0;
613 static long do_list_queue_size = 0;
614 static long do_list_queue_start = 0;
615 static long do_list_queue_end = 0;
616 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
617 const char *dir);
619 /****************************************************************************
620 Functions for do_list_queue.
621 ****************************************************************************/
624 * The do_list_queue is a NUL-separated list of strings stored in a
625 * char*. Since this is a FIFO, we keep track of the beginning and
626 * ending locations of the data in the queue. When we overflow, we
627 * double the size of the char*. When the start of the data passes
628 * the midpoint, we move everything back. This is logically more
629 * complex than a linked list, but easier from a memory management
630 * angle. In any memory error condition, do_list_queue is reset.
631 * Functions check to ensure that do_list_queue is non-NULL before
632 * accessing it.
635 static void reset_do_list_queue(void)
637 SAFE_FREE(do_list_queue);
638 do_list_queue_size = 0;
639 do_list_queue_start = 0;
640 do_list_queue_end = 0;
643 static void init_do_list_queue(void)
645 reset_do_list_queue();
646 do_list_queue_size = 1024;
647 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
648 if (do_list_queue == 0) {
649 d_printf("malloc fail for size %d\n",
650 (int)do_list_queue_size);
651 reset_do_list_queue();
652 } else {
653 memset(do_list_queue, 0, do_list_queue_size);
657 static void adjust_do_list_queue(void)
660 * If the starting point of the queue is more than half way through,
661 * move everything toward the beginning.
664 if (do_list_queue == NULL) {
665 DEBUG(4,("do_list_queue is empty\n"));
666 do_list_queue_start = do_list_queue_end = 0;
667 return;
670 if (do_list_queue_start == do_list_queue_end) {
671 DEBUG(4,("do_list_queue is empty\n"));
672 do_list_queue_start = do_list_queue_end = 0;
673 *do_list_queue = '\0';
674 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
675 DEBUG(4,("sliding do_list_queue backward\n"));
676 memmove(do_list_queue,
677 do_list_queue + do_list_queue_start,
678 do_list_queue_end - do_list_queue_start);
679 do_list_queue_end -= do_list_queue_start;
680 do_list_queue_start = 0;
684 static void add_to_do_list_queue(const char *entry)
686 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
687 while (new_end > do_list_queue_size) {
688 do_list_queue_size *= 2;
689 DEBUG(4,("enlarging do_list_queue to %d\n",
690 (int)do_list_queue_size));
691 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
692 if (! do_list_queue) {
693 d_printf("failure enlarging do_list_queue to %d bytes\n",
694 (int)do_list_queue_size);
695 reset_do_list_queue();
696 } else {
697 memset(do_list_queue + do_list_queue_size / 2,
698 0, do_list_queue_size / 2);
701 if (do_list_queue) {
702 safe_strcpy_base(do_list_queue + do_list_queue_end,
703 entry, do_list_queue, do_list_queue_size);
704 do_list_queue_end = new_end;
705 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
706 entry, (int)do_list_queue_start, (int)do_list_queue_end));
710 static char *do_list_queue_head(void)
712 return do_list_queue + do_list_queue_start;
715 static void remove_do_list_queue_head(void)
717 if (do_list_queue_end > do_list_queue_start) {
718 do_list_queue_start += strlen(do_list_queue_head()) + 1;
719 adjust_do_list_queue();
720 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
721 (int)do_list_queue_start, (int)do_list_queue_end));
725 static int do_list_queue_empty(void)
727 return (! (do_list_queue && *do_list_queue));
730 /****************************************************************************
731 A helper for do_list.
732 ****************************************************************************/
734 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
735 const char *mask, void *state)
737 struct cli_state *cli_state = (struct cli_state *)state;
738 TALLOC_CTX *ctx = talloc_tos();
739 char *dir = NULL;
740 char *dir_end = NULL;
741 NTSTATUS status = NT_STATUS_OK;
743 /* Work out the directory. */
744 dir = talloc_strdup(ctx, mask);
745 if (!dir) {
746 return NT_STATUS_NO_MEMORY;
748 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
749 *dir_end = '\0';
752 if (f->mode & aDIR) {
753 if (do_list_dirs && do_this_one(f)) {
754 status = do_list_fn(cli_state, f, dir);
755 if (!NT_STATUS_IS_OK(status)) {
756 return status;
759 if (do_list_recurse &&
760 f->name &&
761 !strequal(f->name,".") &&
762 !strequal(f->name,"..")) {
763 char *mask2 = NULL;
764 char *p = NULL;
766 if (!f->name[0]) {
767 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
768 TALLOC_FREE(dir);
769 return NT_STATUS_UNSUCCESSFUL;
772 mask2 = talloc_asprintf(ctx,
773 "%s%s",
774 mntpoint,
775 mask);
776 if (!mask2) {
777 TALLOC_FREE(dir);
778 return NT_STATUS_NO_MEMORY;
780 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
781 if (p) {
782 p[1] = 0;
783 } else {
784 mask2[0] = '\0';
786 mask2 = talloc_asprintf_append(mask2,
787 "%s%s*",
788 f->name,
789 CLI_DIRSEP_STR);
790 if (!mask2) {
791 TALLOC_FREE(dir);
792 return NT_STATUS_NO_MEMORY;
794 add_to_do_list_queue(mask2);
795 TALLOC_FREE(mask2);
797 TALLOC_FREE(dir);
798 return NT_STATUS_OK;
801 if (do_this_one(f)) {
802 status = do_list_fn(cli_state, f, dir);
804 TALLOC_FREE(dir);
805 return status;
808 /****************************************************************************
809 A wrapper around cli_list that adds recursion.
810 ****************************************************************************/
812 NTSTATUS do_list(const char *mask,
813 uint16 attribute,
814 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
815 const char *dir),
816 bool rec,
817 bool dirs)
819 static int in_do_list = 0;
820 TALLOC_CTX *ctx = talloc_tos();
821 struct cli_state *targetcli = NULL;
822 char *targetpath = NULL;
823 NTSTATUS ret_status = NT_STATUS_OK;
824 NTSTATUS status = NT_STATUS_OK;
826 if (in_do_list && rec) {
827 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
828 exit(1);
831 in_do_list = 1;
833 do_list_recurse = rec;
834 do_list_dirs = dirs;
835 do_list_fn = fn;
837 if (rec) {
838 init_do_list_queue();
839 add_to_do_list_queue(mask);
841 while (!do_list_queue_empty()) {
843 * Need to copy head so that it doesn't become
844 * invalid inside the call to cli_list. This
845 * would happen if the list were expanded
846 * during the call.
847 * Fix from E. Jay Berkenbilt (ejb@ql.org)
849 char *head = talloc_strdup(ctx, do_list_queue_head());
851 if (!head) {
852 return NT_STATUS_NO_MEMORY;
855 /* check for dfs */
857 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
858 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
859 remove_do_list_queue_head();
860 continue;
863 status = cli_list(targetcli, targetpath, attribute,
864 do_list_helper, targetcli);
865 if (!NT_STATUS_IS_OK(status)) {
866 d_printf("%s listing %s\n",
867 nt_errstr(status), targetpath);
868 ret_status = status;
870 remove_do_list_queue_head();
871 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
872 char *next_file = do_list_queue_head();
873 char *save_ch = 0;
874 if ((strlen(next_file) >= 2) &&
875 (next_file[strlen(next_file) - 1] == '*') &&
876 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
877 save_ch = next_file +
878 strlen(next_file) - 2;
879 *save_ch = '\0';
880 if (showacls) {
881 /* cwd is only used if showacls is on */
882 client_set_cwd(next_file);
885 if (!showacls) /* don't disturbe the showacls output */
886 d_printf("\n%s\n",next_file);
887 if (save_ch) {
888 *save_ch = CLI_DIRSEP_CHAR;
891 TALLOC_FREE(head);
892 TALLOC_FREE(targetpath);
894 } else {
895 /* check for dfs */
896 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
898 status = cli_list(targetcli, targetpath, attribute,
899 do_list_helper, targetcli);
900 if (!NT_STATUS_IS_OK(status)) {
901 d_printf("%s listing %s\n",
902 nt_errstr(status), targetpath);
903 ret_status = status;
905 TALLOC_FREE(targetpath);
906 } else {
907 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
908 ret_status = cli_nt_error(cli);
912 in_do_list = 0;
913 reset_do_list_queue();
914 return ret_status;
917 /****************************************************************************
918 Get a directory listing.
919 ****************************************************************************/
921 static int cmd_dir(void)
923 TALLOC_CTX *ctx = talloc_tos();
924 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
925 char *mask = NULL;
926 char *buf = NULL;
927 int rc = 1;
928 NTSTATUS status;
930 dir_total = 0;
931 mask = talloc_strdup(ctx, client_get_cur_dir());
932 if (!mask) {
933 return 1;
936 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
937 normalize_name(buf);
938 if (*buf == CLI_DIRSEP_CHAR) {
939 mask = talloc_strdup(ctx, buf);
940 } else {
941 mask = talloc_asprintf_append(mask, "%s", buf);
943 } else {
944 mask = talloc_asprintf_append(mask, "*");
946 if (!mask) {
947 return 1;
950 if (showacls) {
951 /* cwd is only used if showacls is on */
952 client_set_cwd(client_get_cur_dir());
955 status = do_list(mask, attribute, display_finfo, recurse, true);
956 if (!NT_STATUS_IS_OK(status)) {
957 return 1;
960 rc = do_dskattr();
962 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
964 return rc;
967 /****************************************************************************
968 Get a directory listing.
969 ****************************************************************************/
971 static int cmd_du(void)
973 TALLOC_CTX *ctx = talloc_tos();
974 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
975 char *mask = NULL;
976 char *buf = NULL;
977 NTSTATUS status;
978 int rc = 1;
980 dir_total = 0;
981 mask = talloc_strdup(ctx, client_get_cur_dir());
982 if (!mask) {
983 return 1;
985 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
986 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
987 if (!mask) {
988 return 1;
992 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
993 normalize_name(buf);
994 if (*buf == CLI_DIRSEP_CHAR) {
995 mask = talloc_strdup(ctx, buf);
996 } else {
997 mask = talloc_asprintf_append(mask, "%s", buf);
999 } else {
1000 mask = talloc_strdup(ctx, "*");
1003 status = do_list(mask, attribute, do_du, recurse, true);
1004 if (!NT_STATUS_IS_OK(status)) {
1005 return 1;
1008 rc = do_dskattr();
1010 d_printf("Total number of bytes: %.0f\n", dir_total);
1012 return rc;
1015 static int cmd_echo(void)
1017 TALLOC_CTX *ctx = talloc_tos();
1018 char *num;
1019 char *data;
1020 NTSTATUS status;
1022 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1023 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1024 d_printf("echo <num> <data>\n");
1025 return 1;
1028 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1030 if (!NT_STATUS_IS_OK(status)) {
1031 d_printf("echo failed: %s\n", nt_errstr(status));
1032 return 1;
1035 return 0;
1038 /****************************************************************************
1039 Get a file from rname to lname
1040 ****************************************************************************/
1042 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1044 int *pfd = (int *)priv;
1045 if (writefile(*pfd, buf, n) == -1) {
1046 return map_nt_error_from_unix(errno);
1048 return NT_STATUS_OK;
1051 static int do_get(const char *rname, const char *lname_in, bool reget)
1053 TALLOC_CTX *ctx = talloc_tos();
1054 int handle = 0;
1055 uint16_t fnum;
1056 bool newhandle = false;
1057 struct timespec tp_start;
1058 uint16 attr;
1059 SMB_OFF_T size;
1060 off_t start = 0;
1061 SMB_OFF_T nread = 0;
1062 int rc = 0;
1063 struct cli_state *targetcli = NULL;
1064 char *targetname = NULL;
1065 char *lname = NULL;
1066 NTSTATUS status;
1068 lname = talloc_strdup(ctx, lname_in);
1069 if (!lname) {
1070 return 1;
1073 if (lowercase) {
1074 strlower_m(lname);
1077 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1078 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1079 return 1;
1082 clock_gettime_mono(&tp_start);
1084 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1085 if (!NT_STATUS_IS_OK(status)) {
1086 d_printf("%s opening remote file %s\n", nt_errstr(status),
1087 rname);
1088 return 1;
1091 if(!strcmp(lname,"-")) {
1092 handle = fileno(stdout);
1093 } else {
1094 if (reget) {
1095 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1096 if (handle >= 0) {
1097 start = sys_lseek(handle, 0, SEEK_END);
1098 if (start == -1) {
1099 d_printf("Error seeking local file\n");
1100 return 1;
1103 } else {
1104 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1106 newhandle = true;
1108 if (handle < 0) {
1109 d_printf("Error opening local file %s\n",lname);
1110 return 1;
1114 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1115 NULL, NULL, NULL);
1116 if (!NT_STATUS_IS_OK(status)) {
1117 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1118 NULL);
1119 if(!NT_STATUS_IS_OK(status)) {
1120 d_printf("getattrib: %s\n", nt_errstr(status));
1121 return 1;
1125 DEBUG(1,("getting file %s of size %.0f as %s ",
1126 rname, (double)size, lname));
1128 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1129 writefile_sink, (void *)&handle, &nread);
1130 if (!NT_STATUS_IS_OK(status)) {
1131 d_fprintf(stderr, "parallel_read returned %s\n",
1132 nt_errstr(status));
1133 cli_close(targetcli, fnum);
1134 return 1;
1137 status = cli_close(targetcli, fnum);
1138 if (!NT_STATUS_IS_OK(status)) {
1139 d_printf("Error %s closing remote file\n", nt_errstr(status));
1140 rc = 1;
1143 if (newhandle) {
1144 close(handle);
1147 if (archive_level >= 2 && (attr & aARCH)) {
1148 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1152 struct timespec tp_end;
1153 int this_time;
1155 clock_gettime_mono(&tp_end);
1156 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1157 get_total_time_ms += this_time;
1158 get_total_size += nread;
1160 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1161 nread / (1.024*this_time + 1.0e-4),
1162 get_total_size / (1.024*get_total_time_ms)));
1165 TALLOC_FREE(targetname);
1166 return rc;
1169 /****************************************************************************
1170 Get a file.
1171 ****************************************************************************/
1173 static int cmd_get(void)
1175 TALLOC_CTX *ctx = talloc_tos();
1176 char *lname = NULL;
1177 char *rname = NULL;
1178 char *fname = NULL;
1180 rname = talloc_strdup(ctx, client_get_cur_dir());
1181 if (!rname) {
1182 return 1;
1185 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1186 d_printf("get <filename> [localname]\n");
1187 return 1;
1189 rname = talloc_asprintf_append(rname, "%s", fname);
1190 if (!rname) {
1191 return 1;
1193 rname = clean_name(ctx, rname);
1194 if (!rname) {
1195 return 1;
1198 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1199 if (!lname) {
1200 lname = fname;
1203 return do_get(rname, lname, false);
1206 /****************************************************************************
1207 Do an mget operation on one file.
1208 ****************************************************************************/
1210 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1211 const char *dir)
1213 TALLOC_CTX *ctx = talloc_tos();
1214 NTSTATUS status = NT_STATUS_OK;
1215 char *rname = NULL;
1216 char *quest = NULL;
1217 char *saved_curdir = NULL;
1218 char *mget_mask = NULL;
1219 char *new_cd = NULL;
1221 if (!finfo->name) {
1222 return NT_STATUS_OK;
1225 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1226 return NT_STATUS_OK;
1228 if (abort_mget) {
1229 d_printf("mget aborted\n");
1230 return NT_STATUS_UNSUCCESSFUL;
1233 if (finfo->mode & aDIR) {
1234 if (asprintf(&quest,
1235 "Get directory %s? ",finfo->name) < 0) {
1236 return NT_STATUS_NO_MEMORY;
1238 } else {
1239 if (asprintf(&quest,
1240 "Get file %s? ",finfo->name) < 0) {
1241 return NT_STATUS_NO_MEMORY;
1245 if (prompt && !yesno(quest)) {
1246 SAFE_FREE(quest);
1247 return NT_STATUS_OK;
1249 SAFE_FREE(quest);
1251 if (!(finfo->mode & aDIR)) {
1252 rname = talloc_asprintf(ctx,
1253 "%s%s",
1254 client_get_cur_dir(),
1255 finfo->name);
1256 if (!rname) {
1257 return NT_STATUS_NO_MEMORY;
1259 do_get(rname, finfo->name, false);
1260 TALLOC_FREE(rname);
1261 return NT_STATUS_OK;
1264 /* handle directories */
1265 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1266 if (!saved_curdir) {
1267 return NT_STATUS_NO_MEMORY;
1270 new_cd = talloc_asprintf(ctx,
1271 "%s%s%s",
1272 client_get_cur_dir(),
1273 finfo->name,
1274 CLI_DIRSEP_STR);
1275 if (!new_cd) {
1276 return NT_STATUS_NO_MEMORY;
1278 client_set_cur_dir(new_cd);
1280 string_replace(finfo->name,'\\','/');
1281 if (lowercase) {
1282 strlower_m(finfo->name);
1285 if (!directory_exist(finfo->name) &&
1286 mkdir(finfo->name,0777) != 0) {
1287 d_printf("failed to create directory %s\n",finfo->name);
1288 client_set_cur_dir(saved_curdir);
1289 return map_nt_error_from_unix(errno);
1292 if (chdir(finfo->name) != 0) {
1293 d_printf("failed to chdir to directory %s\n",finfo->name);
1294 client_set_cur_dir(saved_curdir);
1295 return map_nt_error_from_unix(errno);
1298 mget_mask = talloc_asprintf(ctx,
1299 "%s*",
1300 client_get_cur_dir());
1302 if (!mget_mask) {
1303 return NT_STATUS_NO_MEMORY;
1306 status = do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1307 if (!NT_STATUS_IS_OK(status)) {
1308 return status;
1311 if (chdir("..") == -1) {
1312 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1313 strerror(errno) );
1314 return map_nt_error_from_unix(errno);
1316 client_set_cur_dir(saved_curdir);
1317 TALLOC_FREE(mget_mask);
1318 TALLOC_FREE(saved_curdir);
1319 TALLOC_FREE(new_cd);
1320 return NT_STATUS_OK;
1323 /****************************************************************************
1324 View the file using the pager.
1325 ****************************************************************************/
1327 static int cmd_more(void)
1329 TALLOC_CTX *ctx = talloc_tos();
1330 char *rname = NULL;
1331 char *fname = NULL;
1332 char *lname = NULL;
1333 char *pager_cmd = NULL;
1334 const char *pager;
1335 int fd;
1336 int rc = 0;
1338 rname = talloc_strdup(ctx, client_get_cur_dir());
1339 if (!rname) {
1340 return 1;
1343 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1344 if (!lname) {
1345 return 1;
1347 fd = mkstemp(lname);
1348 if (fd == -1) {
1349 d_printf("failed to create temporary file for more\n");
1350 return 1;
1352 close(fd);
1354 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1355 d_printf("more <filename>\n");
1356 unlink(lname);
1357 return 1;
1359 rname = talloc_asprintf_append(rname, "%s", fname);
1360 if (!rname) {
1361 return 1;
1363 rname = clean_name(ctx,rname);
1364 if (!rname) {
1365 return 1;
1368 rc = do_get(rname, lname, false);
1370 pager=getenv("PAGER");
1372 pager_cmd = talloc_asprintf(ctx,
1373 "%s %s",
1374 (pager? pager:PAGER),
1375 lname);
1376 if (!pager_cmd) {
1377 return 1;
1379 if (system(pager_cmd) == -1) {
1380 d_printf("system command '%s' returned -1\n",
1381 pager_cmd);
1383 unlink(lname);
1385 return rc;
1388 /****************************************************************************
1389 Do a mget command.
1390 ****************************************************************************/
1392 static int cmd_mget(void)
1394 TALLOC_CTX *ctx = talloc_tos();
1395 uint16 attribute = aSYSTEM | aHIDDEN;
1396 char *mget_mask = NULL;
1397 char *buf = NULL;
1398 NTSTATUS status = NT_STATUS_OK;
1400 if (recurse) {
1401 attribute |= aDIR;
1404 abort_mget = false;
1406 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1408 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1409 if (!mget_mask) {
1410 return 1;
1412 if (*buf == CLI_DIRSEP_CHAR) {
1413 mget_mask = talloc_strdup(ctx, buf);
1414 } else {
1415 mget_mask = talloc_asprintf_append(mget_mask,
1416 "%s", buf);
1418 if (!mget_mask) {
1419 return 1;
1421 status = do_list(mget_mask, attribute, do_mget, false, true);
1422 if (!NT_STATUS_IS_OK(status)) {
1423 return 1;
1427 if (mget_mask == NULL) {
1428 d_printf("nothing to mget\n");
1429 return 0;
1432 if (!*mget_mask) {
1433 mget_mask = talloc_asprintf(ctx,
1434 "%s*",
1435 client_get_cur_dir());
1436 if (!mget_mask) {
1437 return 1;
1439 status = do_list(mget_mask, attribute, do_mget, false, true);
1440 if (!NT_STATUS_IS_OK(status)) {
1441 return 1;
1445 return 0;
1448 /****************************************************************************
1449 Make a directory of name "name".
1450 ****************************************************************************/
1452 static bool do_mkdir(const char *name)
1454 TALLOC_CTX *ctx = talloc_tos();
1455 struct cli_state *targetcli;
1456 char *targetname = NULL;
1457 NTSTATUS status;
1459 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1460 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1461 return false;
1464 status = cli_mkdir(targetcli, targetname);
1465 if (!NT_STATUS_IS_OK(status)) {
1466 d_printf("%s making remote directory %s\n",
1467 nt_errstr(status),name);
1468 return false;
1471 return true;
1474 /****************************************************************************
1475 Show 8.3 name of a file.
1476 ****************************************************************************/
1478 static bool do_altname(const char *name)
1480 fstring altname;
1481 NTSTATUS status;
1483 status = cli_qpathinfo_alt_name(cli, name, altname);
1484 if (!NT_STATUS_IS_OK(status)) {
1485 d_printf("%s getting alt name for %s\n",
1486 nt_errstr(status),name);
1487 return false;
1489 d_printf("%s\n", altname);
1491 return true;
1494 /****************************************************************************
1495 Exit client.
1496 ****************************************************************************/
1498 static int cmd_quit(void)
1500 cli_shutdown(cli);
1501 exit(0);
1502 /* NOTREACHED */
1503 return 0;
1506 /****************************************************************************
1507 Make a directory.
1508 ****************************************************************************/
1510 static int cmd_mkdir(void)
1512 TALLOC_CTX *ctx = talloc_tos();
1513 char *mask = NULL;
1514 char *buf = NULL;
1516 mask = talloc_strdup(ctx, client_get_cur_dir());
1517 if (!mask) {
1518 return 1;
1521 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1522 if (!recurse) {
1523 d_printf("mkdir <dirname>\n");
1525 return 1;
1527 mask = talloc_asprintf_append(mask, "%s", buf);
1528 if (!mask) {
1529 return 1;
1532 if (recurse) {
1533 char *ddir = NULL;
1534 char *ddir2 = NULL;
1535 struct cli_state *targetcli;
1536 char *targetname = NULL;
1537 char *p = NULL;
1538 char *saveptr;
1540 ddir2 = talloc_strdup(ctx, "");
1541 if (!ddir2) {
1542 return 1;
1545 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1546 return 1;
1549 ddir = talloc_strdup(ctx, targetname);
1550 if (!ddir) {
1551 return 1;
1553 trim_char(ddir,'.','\0');
1554 p = strtok_r(ddir, "/\\", &saveptr);
1555 while (p) {
1556 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1557 if (!ddir2) {
1558 return 1;
1560 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1561 do_mkdir(ddir2);
1563 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1564 if (!ddir2) {
1565 return 1;
1567 p = strtok_r(NULL, "/\\", &saveptr);
1569 } else {
1570 do_mkdir(mask);
1573 return 0;
1576 /****************************************************************************
1577 Show alt name.
1578 ****************************************************************************/
1580 static int cmd_altname(void)
1582 TALLOC_CTX *ctx = talloc_tos();
1583 char *name;
1584 char *buf;
1586 name = talloc_strdup(ctx, client_get_cur_dir());
1587 if (!name) {
1588 return 1;
1591 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1592 d_printf("altname <file>\n");
1593 return 1;
1595 name = talloc_asprintf_append(name, "%s", buf);
1596 if (!name) {
1597 return 1;
1599 do_altname(name);
1600 return 0;
1603 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1605 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1606 int i = 0;
1608 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1609 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1610 attrs[i++] = 'E';
1612 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1613 attrs[i++] = 'N';
1615 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1616 attrs[i++] = 'O';
1618 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1619 attrs[i++] = 'C';
1621 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1622 attrs[i++] = 'r';
1624 if (mode & FILE_ATTRIBUTE_SPARSE) {
1625 attrs[i++] = 's';
1627 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1628 attrs[i++] = 'T';
1630 if (mode & FILE_ATTRIBUTE_NORMAL) {
1631 attrs[i++] = 'N';
1633 if (mode & FILE_ATTRIBUTE_READONLY) {
1634 attrs[i++] = 'R';
1636 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1637 attrs[i++] = 'H';
1639 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1640 attrs[i++] = 'S';
1642 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1643 attrs[i++] = 'D';
1645 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1646 attrs[i++] = 'A';
1649 return attrs;
1652 /****************************************************************************
1653 Show all info we can get
1654 ****************************************************************************/
1656 static int do_allinfo(const char *name)
1658 fstring altname;
1659 struct timespec b_time, a_time, m_time, c_time;
1660 SMB_OFF_T size;
1661 uint16_t mode;
1662 SMB_INO_T ino;
1663 NTTIME tmp;
1664 uint16_t fnum;
1665 unsigned int num_streams;
1666 struct stream_struct *streams;
1667 int num_snapshots;
1668 char **snapshots;
1669 unsigned int i;
1670 NTSTATUS status;
1672 status = cli_qpathinfo_alt_name(cli, name, altname);
1673 if (!NT_STATUS_IS_OK(status)) {
1674 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1675 name);
1676 return false;
1678 d_printf("altname: %s\n", altname);
1680 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1681 &size, &mode, &ino);
1682 if (!NT_STATUS_IS_OK(status)) {
1683 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1684 name);
1685 return false;
1688 unix_timespec_to_nt_time(&tmp, b_time);
1689 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1691 unix_timespec_to_nt_time(&tmp, a_time);
1692 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1694 unix_timespec_to_nt_time(&tmp, m_time);
1695 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1697 unix_timespec_to_nt_time(&tmp, c_time);
1698 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1700 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1702 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1703 &streams);
1704 if (!NT_STATUS_IS_OK(status)) {
1705 d_printf("%s getting streams for %s\n", nt_errstr(status),
1706 name);
1707 return false;
1710 for (i=0; i<num_streams; i++) {
1711 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1712 (unsigned long long)streams[i].size);
1715 status = cli_open(cli, name, O_RDONLY, DENY_NONE, &fnum);
1716 if (!NT_STATUS_IS_OK(status)) {
1718 * Ignore failure, it does not hurt if we can't list
1719 * snapshots
1721 return 0;
1723 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1724 true, &snapshots, &num_snapshots);
1725 if (!NT_STATUS_IS_OK(status)) {
1726 cli_close(cli, fnum);
1727 return 0;
1730 for (i=0; i<num_snapshots; i++) {
1731 char *snap_name;
1733 d_printf("%s\n", snapshots[i]);
1734 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1735 snapshots[i], name);
1736 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1737 &m_time, &c_time, &size,
1738 NULL, NULL);
1739 if (!NT_STATUS_IS_OK(status)) {
1740 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1741 snap_name, nt_errstr(status));
1742 TALLOC_FREE(snap_name);
1743 continue;
1745 unix_timespec_to_nt_time(&tmp, b_time);
1746 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1747 unix_timespec_to_nt_time(&tmp, a_time);
1748 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1749 unix_timespec_to_nt_time(&tmp, m_time);
1750 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1751 unix_timespec_to_nt_time(&tmp, c_time);
1752 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1753 d_printf("size: %d\n", (int)size);
1756 TALLOC_FREE(snapshots);
1758 return 0;
1761 /****************************************************************************
1762 Show all info we can get
1763 ****************************************************************************/
1765 static int cmd_allinfo(void)
1767 TALLOC_CTX *ctx = talloc_tos();
1768 char *name;
1769 char *buf;
1771 name = talloc_strdup(ctx, client_get_cur_dir());
1772 if (!name) {
1773 return 1;
1776 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1777 d_printf("allinfo <file>\n");
1778 return 1;
1780 name = talloc_asprintf_append(name, "%s", buf);
1781 if (!name) {
1782 return 1;
1785 do_allinfo(name);
1787 return 0;
1790 /****************************************************************************
1791 Put a single file.
1792 ****************************************************************************/
1794 static int do_put(const char *rname, const char *lname, bool reput)
1796 TALLOC_CTX *ctx = talloc_tos();
1797 uint16_t fnum;
1798 XFILE *f;
1799 SMB_OFF_T start = 0;
1800 int rc = 0;
1801 struct timespec tp_start;
1802 struct cli_state *targetcli;
1803 char *targetname = NULL;
1804 struct push_state state;
1805 NTSTATUS status;
1807 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1808 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1809 return 1;
1812 clock_gettime_mono(&tp_start);
1814 if (reput) {
1815 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1816 if (NT_STATUS_IS_OK(status)) {
1817 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1818 targetcli, fnum, NULL,
1819 &start, NULL, NULL,
1820 NULL, NULL, NULL)) &&
1821 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1822 d_printf("getattrib: %s\n",cli_errstr(cli));
1823 return 1;
1826 } else {
1827 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1830 if (!NT_STATUS_IS_OK(status)) {
1831 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1832 return 1;
1835 /* allow files to be piped into smbclient
1836 jdblair 24.jun.98
1838 Note that in this case this function will exit(0) rather
1839 than returning. */
1840 if (!strcmp(lname, "-")) {
1841 f = x_stdin;
1842 /* size of file is not known */
1843 } else {
1844 f = x_fopen(lname,O_RDONLY, 0);
1845 if (f && reput) {
1846 if (x_tseek(f, start, SEEK_SET) == -1) {
1847 d_printf("Error seeking local file\n");
1848 x_fclose(f);
1849 return 1;
1854 if (!f) {
1855 d_printf("Error opening local file %s\n",lname);
1856 return 1;
1859 DEBUG(1,("putting file %s as %s ",lname,
1860 rname));
1862 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1864 state.f = f;
1865 state.nread = 0;
1867 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1868 &state);
1869 if (!NT_STATUS_IS_OK(status)) {
1870 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1871 rc = 1;
1874 status = cli_close(targetcli, fnum);
1875 if (!NT_STATUS_IS_OK(status)) {
1876 d_printf("%s closing remote file %s\n", nt_errstr(status),
1877 rname);
1878 if (f != x_stdin) {
1879 x_fclose(f);
1881 return 1;
1884 if (f != x_stdin) {
1885 x_fclose(f);
1889 struct timespec tp_end;
1890 int this_time;
1892 clock_gettime_mono(&tp_end);
1893 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1894 put_total_time_ms += this_time;
1895 put_total_size += state.nread;
1897 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1898 state.nread / (1.024*this_time + 1.0e-4),
1899 put_total_size / (1.024*put_total_time_ms)));
1902 if (f == x_stdin) {
1903 cli_shutdown(cli);
1904 exit(0);
1907 return rc;
1910 /****************************************************************************
1911 Put a file.
1912 ****************************************************************************/
1914 static int cmd_put(void)
1916 TALLOC_CTX *ctx = talloc_tos();
1917 char *lname;
1918 char *rname;
1919 char *buf;
1921 rname = talloc_strdup(ctx, client_get_cur_dir());
1922 if (!rname) {
1923 return 1;
1926 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1927 d_printf("put <filename>\n");
1928 return 1;
1931 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1932 rname = talloc_asprintf_append(rname, "%s", buf);
1933 } else {
1934 rname = talloc_asprintf_append(rname, "%s", lname);
1936 if (!rname) {
1937 return 1;
1940 rname = clean_name(ctx, rname);
1941 if (!rname) {
1942 return 1;
1946 SMB_STRUCT_STAT st;
1947 /* allow '-' to represent stdin
1948 jdblair, 24.jun.98 */
1949 if (!file_exist_stat(lname, &st, false) &&
1950 (strcmp(lname,"-"))) {
1951 d_printf("%s does not exist\n",lname);
1952 return 1;
1956 return do_put(rname, lname, false);
1959 /*************************************
1960 File list structure.
1961 *************************************/
1963 static struct file_list {
1964 struct file_list *prev, *next;
1965 char *file_path;
1966 bool isdir;
1967 } *file_list;
1969 /****************************************************************************
1970 Free a file_list structure.
1971 ****************************************************************************/
1973 static void free_file_list (struct file_list *l_head)
1975 struct file_list *list, *next;
1977 for (list = l_head; list; list = next) {
1978 next = list->next;
1979 DLIST_REMOVE(l_head, list);
1980 SAFE_FREE(list->file_path);
1981 SAFE_FREE(list);
1985 /****************************************************************************
1986 Seek in a directory/file list until you get something that doesn't start with
1987 the specified name.
1988 ****************************************************************************/
1990 static bool seek_list(struct file_list *list, char *name)
1992 while (list) {
1993 trim_string(list->file_path,"./","\n");
1994 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1995 return true;
1997 list = list->next;
2000 return false;
2003 /****************************************************************************
2004 Set the file selection mask.
2005 ****************************************************************************/
2007 static int cmd_select(void)
2009 TALLOC_CTX *ctx = talloc_tos();
2010 char *new_fs = NULL;
2011 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2013 if (new_fs) {
2014 client_set_fileselection(new_fs);
2015 } else {
2016 client_set_fileselection("");
2018 return 0;
2021 /****************************************************************************
2022 Recursive file matching function act as find
2023 match must be always set to true when calling this function
2024 ****************************************************************************/
2026 static int file_find(struct file_list **list, const char *directory,
2027 const char *expression, bool match)
2029 SMB_STRUCT_DIR *dir;
2030 struct file_list *entry;
2031 struct stat statbuf;
2032 int ret;
2033 char *path;
2034 bool isdir;
2035 const char *dname;
2037 dir = sys_opendir(directory);
2038 if (!dir)
2039 return -1;
2041 while ((dname = readdirname(dir))) {
2042 if (!strcmp("..", dname))
2043 continue;
2044 if (!strcmp(".", dname))
2045 continue;
2047 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2048 continue;
2051 isdir = false;
2052 if (!match || !gen_fnmatch(expression, dname)) {
2053 if (recurse) {
2054 ret = stat(path, &statbuf);
2055 if (ret == 0) {
2056 if (S_ISDIR(statbuf.st_mode)) {
2057 isdir = true;
2058 ret = file_find(list, path, expression, false);
2060 } else {
2061 d_printf("file_find: cannot stat file %s\n", path);
2064 if (ret == -1) {
2065 SAFE_FREE(path);
2066 sys_closedir(dir);
2067 return -1;
2070 entry = SMB_MALLOC_P(struct file_list);
2071 if (!entry) {
2072 d_printf("Out of memory in file_find\n");
2073 sys_closedir(dir);
2074 return -1;
2076 entry->file_path = path;
2077 entry->isdir = isdir;
2078 DLIST_ADD(*list, entry);
2079 } else {
2080 SAFE_FREE(path);
2084 sys_closedir(dir);
2085 return 0;
2088 /****************************************************************************
2089 mput some files.
2090 ****************************************************************************/
2092 static int cmd_mput(void)
2094 TALLOC_CTX *ctx = talloc_tos();
2095 char *p = NULL;
2097 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2098 int ret;
2099 struct file_list *temp_list;
2100 char *quest, *lname, *rname;
2102 file_list = NULL;
2104 ret = file_find(&file_list, ".", p, true);
2105 if (ret) {
2106 free_file_list(file_list);
2107 continue;
2110 quest = NULL;
2111 lname = NULL;
2112 rname = NULL;
2114 for (temp_list = file_list; temp_list;
2115 temp_list = temp_list->next) {
2117 SAFE_FREE(lname);
2118 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2119 continue;
2121 trim_string(lname, "./", "/");
2123 /* check if it's a directory */
2124 if (temp_list->isdir) {
2125 /* if (!recurse) continue; */
2127 SAFE_FREE(quest);
2128 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2129 break;
2131 if (prompt && !yesno(quest)) { /* No */
2132 /* Skip the directory */
2133 lname[strlen(lname)-1] = '/';
2134 if (!seek_list(temp_list, lname))
2135 break;
2136 } else { /* Yes */
2137 SAFE_FREE(rname);
2138 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2139 break;
2141 normalize_name(rname);
2142 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2143 !do_mkdir(rname)) {
2144 DEBUG (0, ("Unable to make dir, skipping..."));
2145 /* Skip the directory */
2146 lname[strlen(lname)-1] = '/';
2147 if (!seek_list(temp_list, lname)) {
2148 break;
2152 continue;
2153 } else {
2154 SAFE_FREE(quest);
2155 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2156 break;
2158 if (prompt && !yesno(quest)) {
2159 /* No */
2160 continue;
2163 /* Yes */
2164 SAFE_FREE(rname);
2165 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2166 break;
2170 normalize_name(rname);
2172 do_put(rname, lname, false);
2174 free_file_list(file_list);
2175 SAFE_FREE(quest);
2176 SAFE_FREE(lname);
2177 SAFE_FREE(rname);
2180 return 0;
2183 /****************************************************************************
2184 Cancel a print job.
2185 ****************************************************************************/
2187 static int do_cancel(int job)
2189 if (cli_printjob_del(cli, job)) {
2190 d_printf("Job %d cancelled\n",job);
2191 return 0;
2192 } else {
2193 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2194 return 1;
2198 /****************************************************************************
2199 Cancel a print job.
2200 ****************************************************************************/
2202 static int cmd_cancel(void)
2204 TALLOC_CTX *ctx = talloc_tos();
2205 char *buf = NULL;
2206 int job;
2208 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2209 d_printf("cancel <jobid> ...\n");
2210 return 1;
2212 do {
2213 job = atoi(buf);
2214 do_cancel(job);
2215 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2217 return 0;
2220 /****************************************************************************
2221 Print a file.
2222 ****************************************************************************/
2224 static int cmd_print(void)
2226 TALLOC_CTX *ctx = talloc_tos();
2227 char *lname = NULL;
2228 char *rname = NULL;
2229 char *p = NULL;
2231 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2232 d_printf("print <filename>\n");
2233 return 1;
2236 rname = talloc_strdup(ctx, lname);
2237 if (!rname) {
2238 return 1;
2240 p = strrchr_m(rname,'/');
2241 if (p) {
2242 rname = talloc_asprintf(ctx,
2243 "%s-%d",
2244 p+1,
2245 (int)sys_getpid());
2247 if (strequal(lname,"-")) {
2248 rname = talloc_asprintf(ctx,
2249 "stdin-%d",
2250 (int)sys_getpid());
2252 if (!rname) {
2253 return 1;
2256 return do_put(rname, lname, false);
2259 /****************************************************************************
2260 Show a print queue entry.
2261 ****************************************************************************/
2263 static void queue_fn(struct print_job_info *p)
2265 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2268 /****************************************************************************
2269 Show a print queue.
2270 ****************************************************************************/
2272 static int cmd_queue(void)
2274 cli_print_queue(cli, queue_fn);
2275 return 0;
2278 /****************************************************************************
2279 Delete some files.
2280 ****************************************************************************/
2282 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2283 const char *dir)
2285 TALLOC_CTX *ctx = talloc_tos();
2286 char *mask = NULL;
2287 NTSTATUS status;
2289 mask = talloc_asprintf(ctx,
2290 "%s%c%s",
2291 dir,
2292 CLI_DIRSEP_CHAR,
2293 finfo->name);
2294 if (!mask) {
2295 return NT_STATUS_NO_MEMORY;
2298 if (finfo->mode & aDIR) {
2299 TALLOC_FREE(mask);
2300 return NT_STATUS_OK;
2303 status = cli_unlink(cli_state, mask, aSYSTEM | aHIDDEN);
2304 if (!NT_STATUS_IS_OK(status)) {
2305 d_printf("%s deleting remote file %s\n",
2306 nt_errstr(status), mask);
2308 TALLOC_FREE(mask);
2309 return status;
2312 /****************************************************************************
2313 Delete some files.
2314 ****************************************************************************/
2316 static int cmd_del(void)
2318 TALLOC_CTX *ctx = talloc_tos();
2319 char *mask = NULL;
2320 char *buf = NULL;
2321 NTSTATUS status = NT_STATUS_OK;
2322 uint16 attribute = aSYSTEM | aHIDDEN;
2324 if (recurse) {
2325 attribute |= aDIR;
2328 mask = talloc_strdup(ctx, client_get_cur_dir());
2329 if (!mask) {
2330 return 1;
2332 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2333 d_printf("del <filename>\n");
2334 return 1;
2336 mask = talloc_asprintf_append(mask, "%s", buf);
2337 if (!mask) {
2338 return 1;
2341 status = do_list(mask,attribute,do_del,false,false);
2342 if (!NT_STATUS_IS_OK(status)) {
2343 return 1;
2345 return 0;
2348 /****************************************************************************
2349 Wildcard delete some files.
2350 ****************************************************************************/
2352 static int cmd_wdel(void)
2354 TALLOC_CTX *ctx = talloc_tos();
2355 char *mask = NULL;
2356 char *buf = NULL;
2357 uint16 attribute;
2358 struct cli_state *targetcli;
2359 char *targetname = NULL;
2360 NTSTATUS status;
2362 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2363 d_printf("wdel 0x<attrib> <wcard>\n");
2364 return 1;
2367 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2369 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2370 d_printf("wdel 0x<attrib> <wcard>\n");
2371 return 1;
2374 mask = talloc_asprintf(ctx, "%s%s",
2375 client_get_cur_dir(),
2376 buf);
2377 if (!mask) {
2378 return 1;
2381 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2382 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2383 return 1;
2386 status = cli_unlink(targetcli, targetname, attribute);
2387 if (!NT_STATUS_IS_OK(status)) {
2388 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2389 targetname);
2391 return 0;
2394 /****************************************************************************
2395 ****************************************************************************/
2397 static int cmd_open(void)
2399 TALLOC_CTX *ctx = talloc_tos();
2400 char *mask = NULL;
2401 char *buf = NULL;
2402 char *targetname = NULL;
2403 struct cli_state *targetcli;
2404 uint16_t fnum = (uint16_t)-1;
2406 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2407 d_printf("open <filename>\n");
2408 return 1;
2410 mask = talloc_asprintf(ctx,
2411 "%s%s",
2412 client_get_cur_dir(),
2413 buf);
2414 if (!mask) {
2415 return 1;
2418 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2419 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2420 return 1;
2423 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2424 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2425 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2426 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2427 FILE_READ_DATA, 0,
2428 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2429 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2430 } else {
2431 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2433 } else {
2434 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2436 return 0;
2439 static int cmd_posix_encrypt(void)
2441 TALLOC_CTX *ctx = talloc_tos();
2442 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2444 if (cli->use_kerberos) {
2445 status = cli_gss_smb_encryption_start(cli);
2446 } else {
2447 char *domain = NULL;
2448 char *user = NULL;
2449 char *password = NULL;
2451 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2452 d_printf("posix_encrypt domain user password\n");
2453 return 1;
2456 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2457 d_printf("posix_encrypt domain user password\n");
2458 return 1;
2461 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2462 d_printf("posix_encrypt domain user password\n");
2463 return 1;
2466 status = cli_raw_ntlm_smb_encryption_start(cli,
2467 user,
2468 password,
2469 domain);
2472 if (!NT_STATUS_IS_OK(status)) {
2473 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2474 } else {
2475 d_printf("encryption on\n");
2476 smb_encrypt = true;
2479 return 0;
2482 /****************************************************************************
2483 ****************************************************************************/
2485 static int cmd_posix_open(void)
2487 TALLOC_CTX *ctx = talloc_tos();
2488 char *mask = NULL;
2489 char *buf = NULL;
2490 char *targetname = NULL;
2491 struct cli_state *targetcli;
2492 mode_t mode;
2493 uint16_t fnum;
2495 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2496 d_printf("posix_open <filename> 0<mode>\n");
2497 return 1;
2499 mask = talloc_asprintf(ctx,
2500 "%s%s",
2501 client_get_cur_dir(),
2502 buf);
2503 if (!mask) {
2504 return 1;
2507 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2508 d_printf("posix_open <filename> 0<mode>\n");
2509 return 1;
2511 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2513 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2514 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2515 return 1;
2518 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2519 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2520 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2521 } else {
2522 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2524 } else {
2525 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2528 return 0;
2531 static int cmd_posix_mkdir(void)
2533 TALLOC_CTX *ctx = talloc_tos();
2534 char *mask = NULL;
2535 char *buf = NULL;
2536 char *targetname = NULL;
2537 struct cli_state *targetcli;
2538 mode_t mode;
2540 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2541 d_printf("posix_mkdir <filename> 0<mode>\n");
2542 return 1;
2544 mask = talloc_asprintf(ctx,
2545 "%s%s",
2546 client_get_cur_dir(),
2547 buf);
2548 if (!mask) {
2549 return 1;
2552 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2553 d_printf("posix_mkdir <filename> 0<mode>\n");
2554 return 1;
2556 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2558 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2559 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2560 return 1;
2563 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2564 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2565 } else {
2566 d_printf("posix_mkdir created directory %s\n", targetname);
2568 return 0;
2571 static int cmd_posix_unlink(void)
2573 TALLOC_CTX *ctx = talloc_tos();
2574 char *mask = NULL;
2575 char *buf = NULL;
2576 char *targetname = NULL;
2577 struct cli_state *targetcli;
2579 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2580 d_printf("posix_unlink <filename>\n");
2581 return 1;
2583 mask = talloc_asprintf(ctx,
2584 "%s%s",
2585 client_get_cur_dir(),
2586 buf);
2587 if (!mask) {
2588 return 1;
2591 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2592 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2593 return 1;
2596 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2597 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2598 } else {
2599 d_printf("posix_unlink deleted file %s\n", targetname);
2602 return 0;
2605 static int cmd_posix_rmdir(void)
2607 TALLOC_CTX *ctx = talloc_tos();
2608 char *mask = NULL;
2609 char *buf = NULL;
2610 char *targetname = NULL;
2611 struct cli_state *targetcli;
2613 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2614 d_printf("posix_rmdir <filename>\n");
2615 return 1;
2617 mask = talloc_asprintf(ctx,
2618 "%s%s",
2619 client_get_cur_dir(),
2620 buf);
2621 if (!mask) {
2622 return 1;
2625 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2626 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2627 return 1;
2630 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2631 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2632 } else {
2633 d_printf("posix_rmdir deleted directory %s\n", targetname);
2636 return 0;
2639 static int cmd_close(void)
2641 TALLOC_CTX *ctx = talloc_tos();
2642 char *buf = NULL;
2643 int fnum;
2645 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2646 d_printf("close <fnum>\n");
2647 return 1;
2650 fnum = atoi(buf);
2651 /* We really should use the targetcli here.... */
2652 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2653 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2654 return 1;
2656 return 0;
2659 static int cmd_posix(void)
2661 TALLOC_CTX *ctx = talloc_tos();
2662 uint16 major, minor;
2663 uint32 caplow, caphigh;
2664 char *caps;
2665 NTSTATUS status;
2667 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2668 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2669 return 1;
2672 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2673 &caphigh);
2674 if (!NT_STATUS_IS_OK(status)) {
2675 d_printf("Can't get UNIX CIFS extensions version from "
2676 "server: %s\n", nt_errstr(status));
2677 return 1;
2680 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2682 caps = talloc_strdup(ctx, "");
2683 if (!caps) {
2684 return 1;
2686 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2687 caps = talloc_asprintf_append(caps, "locks ");
2688 if (!caps) {
2689 return 1;
2692 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2693 caps = talloc_asprintf_append(caps, "acls ");
2694 if (!caps) {
2695 return 1;
2698 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2699 caps = talloc_asprintf_append(caps, "eas ");
2700 if (!caps) {
2701 return 1;
2704 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2705 caps = talloc_asprintf_append(caps, "pathnames ");
2706 if (!caps) {
2707 return 1;
2710 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2711 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2712 if (!caps) {
2713 return 1;
2716 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2717 caps = talloc_asprintf_append(caps, "large_read ");
2718 if (!caps) {
2719 return 1;
2722 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2723 caps = talloc_asprintf_append(caps, "large_write ");
2724 if (!caps) {
2725 return 1;
2728 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2729 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2730 if (!caps) {
2731 return 1;
2734 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2735 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2736 if (!caps) {
2737 return 1;
2741 if (*caps && caps[strlen(caps)-1] == ' ') {
2742 caps[strlen(caps)-1] = '\0';
2745 d_printf("Server supports CIFS capabilities %s\n", caps);
2747 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2748 caplow, caphigh);
2749 if (!NT_STATUS_IS_OK(status)) {
2750 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2751 nt_errstr(status));
2752 return 1;
2755 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2756 CLI_DIRSEP_CHAR = '/';
2757 *CLI_DIRSEP_STR = '/';
2758 client_set_cur_dir(CLI_DIRSEP_STR);
2761 return 0;
2764 static int cmd_lock(void)
2766 TALLOC_CTX *ctx = talloc_tos();
2767 char *buf = NULL;
2768 uint64_t start, len;
2769 enum brl_type lock_type;
2770 int fnum;
2772 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2773 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2774 return 1;
2776 fnum = atoi(buf);
2778 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2779 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2780 return 1;
2783 if (*buf == 'r' || *buf == 'R') {
2784 lock_type = READ_LOCK;
2785 } else if (*buf == 'w' || *buf == 'W') {
2786 lock_type = WRITE_LOCK;
2787 } else {
2788 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2789 return 1;
2792 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2793 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2794 return 1;
2797 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2799 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2800 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2801 return 1;
2804 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2806 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2807 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2810 return 0;
2813 static int cmd_unlock(void)
2815 TALLOC_CTX *ctx = talloc_tos();
2816 char *buf = NULL;
2817 uint64_t start, len;
2818 int fnum;
2820 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2821 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2822 return 1;
2824 fnum = atoi(buf);
2826 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2827 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2828 return 1;
2831 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2833 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2834 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2835 return 1;
2838 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2840 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2841 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2844 return 0;
2848 /****************************************************************************
2849 Remove a directory.
2850 ****************************************************************************/
2852 static int cmd_rmdir(void)
2854 TALLOC_CTX *ctx = talloc_tos();
2855 char *mask = NULL;
2856 char *buf = NULL;
2857 char *targetname = NULL;
2858 struct cli_state *targetcli;
2860 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2861 d_printf("rmdir <dirname>\n");
2862 return 1;
2864 mask = talloc_asprintf(ctx,
2865 "%s%s",
2866 client_get_cur_dir(),
2867 buf);
2868 if (!mask) {
2869 return 1;
2872 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2873 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2874 return 1;
2877 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2878 d_printf("%s removing remote directory file %s\n",
2879 cli_errstr(targetcli),mask);
2882 return 0;
2885 /****************************************************************************
2886 UNIX hardlink.
2887 ****************************************************************************/
2889 static int cmd_link(void)
2891 TALLOC_CTX *ctx = talloc_tos();
2892 char *oldname = NULL;
2893 char *newname = NULL;
2894 char *buf = NULL;
2895 char *buf2 = NULL;
2896 char *targetname = NULL;
2897 struct cli_state *targetcli;
2899 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2900 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2901 d_printf("link <oldname> <newname>\n");
2902 return 1;
2904 oldname = talloc_asprintf(ctx,
2905 "%s%s",
2906 client_get_cur_dir(),
2907 buf);
2908 if (!oldname) {
2909 return 1;
2911 newname = talloc_asprintf(ctx,
2912 "%s%s",
2913 client_get_cur_dir(),
2914 buf2);
2915 if (!newname) {
2916 return 1;
2919 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2920 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2921 return 1;
2924 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2925 d_printf("Server doesn't support UNIX CIFS calls.\n");
2926 return 1;
2929 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2930 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2931 return 1;
2933 return 0;
2936 /****************************************************************************
2937 UNIX readlink.
2938 ****************************************************************************/
2940 static int cmd_readlink(void)
2942 TALLOC_CTX *ctx = talloc_tos();
2943 char *name= NULL;
2944 char *buf = NULL;
2945 char *targetname = NULL;
2946 char linkname[PATH_MAX+1];
2947 struct cli_state *targetcli;
2949 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2950 d_printf("readlink <name>\n");
2951 return 1;
2953 name = talloc_asprintf(ctx,
2954 "%s%s",
2955 client_get_cur_dir(),
2956 buf);
2957 if (!name) {
2958 return 1;
2961 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2962 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2963 return 1;
2966 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2967 d_printf("Server doesn't support UNIX CIFS calls.\n");
2968 return 1;
2971 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2972 linkname, PATH_MAX+1))) {
2973 d_printf("%s readlink on file %s\n",
2974 cli_errstr(targetcli), name);
2975 return 1;
2978 d_printf("%s -> %s\n", name, linkname);
2980 return 0;
2984 /****************************************************************************
2985 UNIX symlink.
2986 ****************************************************************************/
2988 static int cmd_symlink(void)
2990 TALLOC_CTX *ctx = talloc_tos();
2991 char *oldname = NULL;
2992 char *newname = NULL;
2993 char *buf = NULL;
2994 char *buf2 = NULL;
2995 struct cli_state *newcli;
2997 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2998 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2999 d_printf("symlink <oldname> <newname>\n");
3000 return 1;
3002 /* Oldname (link target) must be an untouched blob. */
3003 oldname = buf;
3005 newname = talloc_asprintf(ctx,
3006 "%s%s",
3007 client_get_cur_dir(),
3008 buf2);
3009 if (!newname) {
3010 return 1;
3013 /* New name must be present in share namespace. */
3014 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
3015 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
3016 return 1;
3019 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
3020 d_printf("Server doesn't support UNIX CIFS calls.\n");
3021 return 1;
3024 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
3025 d_printf("%s symlinking files (%s -> %s)\n",
3026 cli_errstr(newcli), newname, newname);
3027 return 1;
3030 return 0;
3033 /****************************************************************************
3034 UNIX chmod.
3035 ****************************************************************************/
3037 static int cmd_chmod(void)
3039 TALLOC_CTX *ctx = talloc_tos();
3040 char *src = NULL;
3041 char *buf = NULL;
3042 char *buf2 = NULL;
3043 char *targetname = NULL;
3044 struct cli_state *targetcli;
3045 mode_t mode;
3047 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3048 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3049 d_printf("chmod mode file\n");
3050 return 1;
3052 src = talloc_asprintf(ctx,
3053 "%s%s",
3054 client_get_cur_dir(),
3055 buf2);
3056 if (!src) {
3057 return 1;
3060 mode = (mode_t)strtol(buf, NULL, 8);
3062 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3063 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
3064 return 1;
3067 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3068 d_printf("Server doesn't support UNIX CIFS calls.\n");
3069 return 1;
3072 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
3073 d_printf("%s chmod file %s 0%o\n",
3074 cli_errstr(targetcli), src, (unsigned int)mode);
3075 return 1;
3078 return 0;
3081 static const char *filetype_to_str(mode_t mode)
3083 if (S_ISREG(mode)) {
3084 return "regular file";
3085 } else if (S_ISDIR(mode)) {
3086 return "directory";
3087 } else
3088 #ifdef S_ISCHR
3089 if (S_ISCHR(mode)) {
3090 return "character device";
3091 } else
3092 #endif
3093 #ifdef S_ISBLK
3094 if (S_ISBLK(mode)) {
3095 return "block device";
3096 } else
3097 #endif
3098 #ifdef S_ISFIFO
3099 if (S_ISFIFO(mode)) {
3100 return "fifo";
3101 } else
3102 #endif
3103 #ifdef S_ISLNK
3104 if (S_ISLNK(mode)) {
3105 return "symbolic link";
3106 } else
3107 #endif
3108 #ifdef S_ISSOCK
3109 if (S_ISSOCK(mode)) {
3110 return "socket";
3111 } else
3112 #endif
3113 return "";
3116 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3118 if (m & bt) {
3119 return ret;
3120 } else {
3121 return '-';
3125 static char *unix_mode_to_str(char *s, mode_t m)
3127 char *p = s;
3128 const char *str = filetype_to_str(m);
3130 switch(str[0]) {
3131 case 'd':
3132 *p++ = 'd';
3133 break;
3134 case 'c':
3135 *p++ = 'c';
3136 break;
3137 case 'b':
3138 *p++ = 'b';
3139 break;
3140 case 'f':
3141 *p++ = 'p';
3142 break;
3143 case 's':
3144 *p++ = str[1] == 'y' ? 'l' : 's';
3145 break;
3146 case 'r':
3147 default:
3148 *p++ = '-';
3149 break;
3151 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3152 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3153 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3154 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3155 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3156 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3157 *p++ = rwx_to_str(m, S_IROTH, 'r');
3158 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3159 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3160 *p++ = '\0';
3161 return s;
3164 /****************************************************************************
3165 Utility function for UNIX getfacl.
3166 ****************************************************************************/
3168 static char *perms_to_string(fstring permstr, unsigned char perms)
3170 fstrcpy(permstr, "---");
3171 if (perms & SMB_POSIX_ACL_READ) {
3172 permstr[0] = 'r';
3174 if (perms & SMB_POSIX_ACL_WRITE) {
3175 permstr[1] = 'w';
3177 if (perms & SMB_POSIX_ACL_EXECUTE) {
3178 permstr[2] = 'x';
3180 return permstr;
3183 /****************************************************************************
3184 UNIX getfacl.
3185 ****************************************************************************/
3187 static int cmd_getfacl(void)
3189 TALLOC_CTX *ctx = talloc_tos();
3190 char *src = NULL;
3191 char *name = NULL;
3192 char *targetname = NULL;
3193 struct cli_state *targetcli;
3194 uint16 major, minor;
3195 uint32 caplow, caphigh;
3196 char *retbuf = NULL;
3197 size_t rb_size = 0;
3198 SMB_STRUCT_STAT sbuf;
3199 uint16 num_file_acls = 0;
3200 uint16 num_dir_acls = 0;
3201 uint16 i;
3202 NTSTATUS status;
3204 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3205 d_printf("getfacl filename\n");
3206 return 1;
3208 src = talloc_asprintf(ctx,
3209 "%s%s",
3210 client_get_cur_dir(),
3211 name);
3212 if (!src) {
3213 return 1;
3216 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3217 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3218 return 1;
3221 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3222 d_printf("Server doesn't support UNIX CIFS calls.\n");
3223 return 1;
3226 status = cli_unix_extensions_version(targetcli, &major, &minor,
3227 &caplow, &caphigh);
3228 if (!NT_STATUS_IS_OK(status)) {
3229 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3230 nt_errstr(status));
3231 return 1;
3234 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3235 d_printf("This server supports UNIX extensions "
3236 "but doesn't support POSIX ACLs.\n");
3237 return 1;
3240 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3241 d_printf("%s getfacl doing a stat on file %s\n",
3242 cli_errstr(targetcli), src);
3243 return 1;
3246 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3247 d_printf("%s getfacl file %s\n",
3248 cli_errstr(targetcli), src);
3249 return 1;
3252 /* ToDo : Print out the ACL values. */
3253 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3254 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3255 src, (unsigned int)CVAL(retbuf,0) );
3256 return 1;
3259 num_file_acls = SVAL(retbuf,2);
3260 num_dir_acls = SVAL(retbuf,4);
3261 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3262 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3263 src,
3264 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3265 (unsigned int)rb_size);
3266 return 1;
3269 d_printf("# file: %s\n", src);
3270 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3272 if (num_file_acls == 0 && num_dir_acls == 0) {
3273 d_printf("No acls found.\n");
3276 for (i = 0; i < num_file_acls; i++) {
3277 uint32 uorg;
3278 fstring permstring;
3279 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3280 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3282 switch(tagtype) {
3283 case SMB_POSIX_ACL_USER_OBJ:
3284 d_printf("user::");
3285 break;
3286 case SMB_POSIX_ACL_USER:
3287 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3288 d_printf("user:%u:", uorg);
3289 break;
3290 case SMB_POSIX_ACL_GROUP_OBJ:
3291 d_printf("group::");
3292 break;
3293 case SMB_POSIX_ACL_GROUP:
3294 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3295 d_printf("group:%u:", uorg);
3296 break;
3297 case SMB_POSIX_ACL_MASK:
3298 d_printf("mask::");
3299 break;
3300 case SMB_POSIX_ACL_OTHER:
3301 d_printf("other::");
3302 break;
3303 default:
3304 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3305 src, (unsigned int)tagtype );
3306 SAFE_FREE(retbuf);
3307 return 1;
3310 d_printf("%s\n", perms_to_string(permstring, perms));
3313 for (i = 0; i < num_dir_acls; i++) {
3314 uint32 uorg;
3315 fstring permstring;
3316 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3317 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3319 switch(tagtype) {
3320 case SMB_POSIX_ACL_USER_OBJ:
3321 d_printf("default:user::");
3322 break;
3323 case SMB_POSIX_ACL_USER:
3324 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3325 d_printf("default:user:%u:", uorg);
3326 break;
3327 case SMB_POSIX_ACL_GROUP_OBJ:
3328 d_printf("default:group::");
3329 break;
3330 case SMB_POSIX_ACL_GROUP:
3331 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3332 d_printf("default:group:%u:", uorg);
3333 break;
3334 case SMB_POSIX_ACL_MASK:
3335 d_printf("default:mask::");
3336 break;
3337 case SMB_POSIX_ACL_OTHER:
3338 d_printf("default:other::");
3339 break;
3340 default:
3341 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3342 src, (unsigned int)tagtype );
3343 SAFE_FREE(retbuf);
3344 return 1;
3347 d_printf("%s\n", perms_to_string(permstring, perms));
3350 return 0;
3353 static void printf_cb(const char *buf, void *private_data)
3355 printf("%s", buf);
3358 /****************************************************************************
3359 Get the EA list of a file
3360 ****************************************************************************/
3362 static int cmd_geteas(void)
3364 TALLOC_CTX *ctx = talloc_tos();
3365 char *src = NULL;
3366 char *name = NULL;
3367 char *targetname = NULL;
3368 struct cli_state *targetcli;
3369 NTSTATUS status;
3370 size_t i, num_eas;
3371 struct ea_struct *eas;
3373 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3374 d_printf("geteas filename\n");
3375 return 1;
3377 src = talloc_asprintf(ctx,
3378 "%s%s",
3379 client_get_cur_dir(),
3380 name);
3381 if (!src) {
3382 return 1;
3385 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3386 &targetname)) {
3387 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3388 return 1;
3391 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3392 &num_eas, &eas);
3393 if (!NT_STATUS_IS_OK(status)) {
3394 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3395 return 1;
3398 for (i=0; i<num_eas; i++) {
3399 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3400 dump_data_cb(eas[i].value.data, eas[i].value.length, false,
3401 printf_cb, NULL);
3402 d_printf("\n");
3405 TALLOC_FREE(eas);
3407 return 0;
3410 /****************************************************************************
3411 Set an EA of a file
3412 ****************************************************************************/
3414 static int cmd_setea(void)
3416 TALLOC_CTX *ctx = talloc_tos();
3417 char *src = NULL;
3418 char *name = NULL;
3419 char *eaname = NULL;
3420 char *eavalue = NULL;
3421 char *targetname = NULL;
3422 struct cli_state *targetcli;
3423 NTSTATUS status;
3425 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3426 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3427 d_printf("setea filename eaname value\n");
3428 return 1;
3430 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3431 eavalue = talloc_strdup(ctx, "");
3433 src = talloc_asprintf(ctx,
3434 "%s%s",
3435 client_get_cur_dir(),
3436 name);
3437 if (!src) {
3438 return 1;
3441 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3442 &targetname)) {
3443 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3444 return 1;
3447 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3448 strlen(eavalue));
3449 if (!NT_STATUS_IS_OK(status)) {
3450 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3451 return 1;
3454 return 0;
3457 /****************************************************************************
3458 UNIX stat.
3459 ****************************************************************************/
3461 static int cmd_stat(void)
3463 TALLOC_CTX *ctx = talloc_tos();
3464 char *src = NULL;
3465 char *name = NULL;
3466 char *targetname = NULL;
3467 struct cli_state *targetcli;
3468 fstring mode_str;
3469 SMB_STRUCT_STAT sbuf;
3470 struct tm *lt;
3471 time_t tmp_time;
3473 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3474 d_printf("stat file\n");
3475 return 1;
3477 src = talloc_asprintf(ctx,
3478 "%s%s",
3479 client_get_cur_dir(),
3480 name);
3481 if (!src) {
3482 return 1;
3485 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3486 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3487 return 1;
3490 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3491 d_printf("Server doesn't support UNIX CIFS calls.\n");
3492 return 1;
3495 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3496 d_printf("%s stat file %s\n",
3497 cli_errstr(targetcli), src);
3498 return 1;
3501 /* Print out the stat values. */
3502 d_printf("File: %s\n", src);
3503 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3504 (double)sbuf.st_ex_size,
3505 (unsigned int)sbuf.st_ex_blocks,
3506 filetype_to_str(sbuf.st_ex_mode));
3508 #if defined(S_ISCHR) && defined(S_ISBLK)
3509 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3510 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3511 (double)sbuf.st_ex_ino,
3512 (unsigned int)sbuf.st_ex_nlink,
3513 unix_dev_major(sbuf.st_ex_rdev),
3514 unix_dev_minor(sbuf.st_ex_rdev));
3515 } else
3516 #endif
3517 d_printf("Inode: %.0f\tLinks: %u\n",
3518 (double)sbuf.st_ex_ino,
3519 (unsigned int)sbuf.st_ex_nlink);
3521 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3522 ((int)sbuf.st_ex_mode & 0777),
3523 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3524 (unsigned int)sbuf.st_ex_uid,
3525 (unsigned int)sbuf.st_ex_gid);
3527 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3528 lt = localtime(&tmp_time);
3529 if (lt) {
3530 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3531 } else {
3532 fstrcpy(mode_str, "unknown");
3534 d_printf("Access: %s\n", mode_str);
3536 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3537 lt = localtime(&tmp_time);
3538 if (lt) {
3539 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3540 } else {
3541 fstrcpy(mode_str, "unknown");
3543 d_printf("Modify: %s\n", mode_str);
3545 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3546 lt = localtime(&tmp_time);
3547 if (lt) {
3548 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3549 } else {
3550 fstrcpy(mode_str, "unknown");
3552 d_printf("Change: %s\n", mode_str);
3554 return 0;
3558 /****************************************************************************
3559 UNIX chown.
3560 ****************************************************************************/
3562 static int cmd_chown(void)
3564 TALLOC_CTX *ctx = talloc_tos();
3565 char *src = NULL;
3566 uid_t uid;
3567 gid_t gid;
3568 char *buf, *buf2, *buf3;
3569 struct cli_state *targetcli;
3570 char *targetname = NULL;
3572 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3573 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3574 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3575 d_printf("chown uid gid file\n");
3576 return 1;
3579 uid = (uid_t)atoi(buf);
3580 gid = (gid_t)atoi(buf2);
3582 src = talloc_asprintf(ctx,
3583 "%s%s",
3584 client_get_cur_dir(),
3585 buf3);
3586 if (!src) {
3587 return 1;
3589 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3590 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3591 return 1;
3594 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3595 d_printf("Server doesn't support UNIX CIFS calls.\n");
3596 return 1;
3599 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3600 d_printf("%s chown file %s uid=%d, gid=%d\n",
3601 cli_errstr(targetcli), src, (int)uid, (int)gid);
3602 return 1;
3605 return 0;
3608 /****************************************************************************
3609 Rename some file.
3610 ****************************************************************************/
3612 static int cmd_rename(void)
3614 TALLOC_CTX *ctx = talloc_tos();
3615 char *src, *dest;
3616 char *buf, *buf2;
3617 struct cli_state *targetcli;
3618 char *targetsrc;
3619 char *targetdest;
3621 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3622 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3623 d_printf("rename <src> <dest>\n");
3624 return 1;
3627 src = talloc_asprintf(ctx,
3628 "%s%s",
3629 client_get_cur_dir(),
3630 buf);
3631 if (!src) {
3632 return 1;
3635 dest = talloc_asprintf(ctx,
3636 "%s%s",
3637 client_get_cur_dir(),
3638 buf2);
3639 if (!dest) {
3640 return 1;
3643 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3644 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3645 return 1;
3648 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3649 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3650 return 1;
3653 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3654 d_printf("%s renaming files %s -> %s \n",
3655 cli_errstr(targetcli),
3656 targetsrc,
3657 targetdest);
3658 return 1;
3661 return 0;
3664 /****************************************************************************
3665 Print the volume name.
3666 ****************************************************************************/
3668 static int cmd_volume(void)
3670 fstring volname;
3671 uint32 serial_num;
3672 time_t create_date;
3673 NTSTATUS status;
3675 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3676 &create_date);
3677 if (!NT_STATUS_IS_OK(status)) {
3678 d_printf("Error %s getting volume info\n", nt_errstr(status));
3679 return 1;
3682 d_printf("Volume: |%s| serial number 0x%x\n",
3683 volname, (unsigned int)serial_num);
3684 return 0;
3687 /****************************************************************************
3688 Hard link files using the NT call.
3689 ****************************************************************************/
3691 static int cmd_hardlink(void)
3693 TALLOC_CTX *ctx = talloc_tos();
3694 char *src, *dest;
3695 char *buf, *buf2;
3696 struct cli_state *targetcli;
3697 char *targetname;
3699 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3700 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3701 d_printf("hardlink <src> <dest>\n");
3702 return 1;
3705 src = talloc_asprintf(ctx,
3706 "%s%s",
3707 client_get_cur_dir(),
3708 buf);
3709 if (!src) {
3710 return 1;
3713 dest = talloc_asprintf(ctx,
3714 "%s%s",
3715 client_get_cur_dir(),
3716 buf2);
3717 if (!dest) {
3718 return 1;
3721 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3722 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3723 return 1;
3726 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3727 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3728 return 1;
3731 return 0;
3734 /****************************************************************************
3735 Toggle the prompt flag.
3736 ****************************************************************************/
3738 static int cmd_prompt(void)
3740 prompt = !prompt;
3741 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3742 return 1;
3745 /****************************************************************************
3746 Set the newer than time.
3747 ****************************************************************************/
3749 static int cmd_newer(void)
3751 TALLOC_CTX *ctx = talloc_tos();
3752 char *buf;
3753 bool ok;
3754 SMB_STRUCT_STAT sbuf;
3756 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3757 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3758 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3759 DEBUG(1,("Getting files newer than %s",
3760 time_to_asc(newer_than)));
3761 } else {
3762 newer_than = 0;
3765 if (ok && newer_than == 0) {
3766 d_printf("Error setting newer-than time\n");
3767 return 1;
3770 return 0;
3773 /****************************************************************************
3774 Set the archive level.
3775 ****************************************************************************/
3777 static int cmd_archive(void)
3779 TALLOC_CTX *ctx = talloc_tos();
3780 char *buf;
3782 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3783 archive_level = atoi(buf);
3784 } else {
3785 d_printf("Archive level is %d\n",archive_level);
3788 return 0;
3791 /****************************************************************************
3792 Toggle the lowercaseflag.
3793 ****************************************************************************/
3795 static int cmd_lowercase(void)
3797 lowercase = !lowercase;
3798 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3799 return 0;
3802 /****************************************************************************
3803 Toggle the case sensitive flag.
3804 ****************************************************************************/
3806 static int cmd_setcase(void)
3808 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3810 cli_set_case_sensitive(cli, !orig_case_sensitive);
3811 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3812 "on":"off"));
3813 return 0;
3816 /****************************************************************************
3817 Toggle the showacls flag.
3818 ****************************************************************************/
3820 static int cmd_showacls(void)
3822 showacls = !showacls;
3823 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3824 return 0;
3828 /****************************************************************************
3829 Toggle the recurse flag.
3830 ****************************************************************************/
3832 static int cmd_recurse(void)
3834 recurse = !recurse;
3835 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3836 return 0;
3839 /****************************************************************************
3840 Toggle the translate flag.
3841 ****************************************************************************/
3843 static int cmd_translate(void)
3845 translation = !translation;
3846 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3847 translation?"on":"off"));
3848 return 0;
3851 /****************************************************************************
3852 Do the lcd command.
3853 ****************************************************************************/
3855 static int cmd_lcd(void)
3857 TALLOC_CTX *ctx = talloc_tos();
3858 char *buf;
3859 char *d;
3861 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3862 if (chdir(buf) == -1) {
3863 d_printf("chdir to %s failed (%s)\n",
3864 buf, strerror(errno));
3867 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3868 if (!d) {
3869 return 1;
3871 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3872 return 0;
3875 /****************************************************************************
3876 Get a file restarting at end of local file.
3877 ****************************************************************************/
3879 static int cmd_reget(void)
3881 TALLOC_CTX *ctx = talloc_tos();
3882 char *local_name = NULL;
3883 char *remote_name = NULL;
3884 char *fname = NULL;
3885 char *p = NULL;
3887 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3888 if (!remote_name) {
3889 return 1;
3892 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3893 d_printf("reget <filename>\n");
3894 return 1;
3896 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3897 if (!remote_name) {
3898 return 1;
3900 remote_name = clean_name(ctx,remote_name);
3901 if (!remote_name) {
3902 return 1;
3905 local_name = fname;
3906 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3907 if (p) {
3908 local_name = p;
3911 return do_get(remote_name, local_name, true);
3914 /****************************************************************************
3915 Put a file restarting at end of local file.
3916 ****************************************************************************/
3918 static int cmd_reput(void)
3920 TALLOC_CTX *ctx = talloc_tos();
3921 char *local_name = NULL;
3922 char *remote_name = NULL;
3923 char *buf;
3924 SMB_STRUCT_STAT st;
3926 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3927 if (!remote_name) {
3928 return 1;
3931 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3932 d_printf("reput <filename>\n");
3933 return 1;
3936 if (!file_exist_stat(local_name, &st, false)) {
3937 d_printf("%s does not exist\n", local_name);
3938 return 1;
3941 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3942 remote_name = talloc_asprintf_append(remote_name,
3943 "%s", buf);
3944 } else {
3945 remote_name = talloc_asprintf_append(remote_name,
3946 "%s", local_name);
3948 if (!remote_name) {
3949 return 1;
3952 remote_name = clean_name(ctx, remote_name);
3953 if (!remote_name) {
3954 return 1;
3957 return do_put(remote_name, local_name, true);
3960 /****************************************************************************
3961 List a share name.
3962 ****************************************************************************/
3964 static void browse_fn(const char *name, uint32 m,
3965 const char *comment, void *state)
3967 const char *typestr = "";
3969 switch (m & 7) {
3970 case STYPE_DISKTREE:
3971 typestr = "Disk";
3972 break;
3973 case STYPE_PRINTQ:
3974 typestr = "Printer";
3975 break;
3976 case STYPE_DEVICE:
3977 typestr = "Device";
3978 break;
3979 case STYPE_IPC:
3980 typestr = "IPC";
3981 break;
3983 /* FIXME: If the remote machine returns non-ascii characters
3984 in any of these fields, they can corrupt the output. We
3985 should remove them. */
3986 if (!grepable) {
3987 d_printf("\t%-15s %-10.10s%s\n",
3988 name,typestr,comment);
3989 } else {
3990 d_printf ("%s|%s|%s\n",typestr,name,comment);
3994 static bool browse_host_rpc(bool sort)
3996 NTSTATUS status;
3997 struct rpc_pipe_client *pipe_hnd = NULL;
3998 TALLOC_CTX *frame = talloc_stackframe();
3999 WERROR werr;
4000 struct srvsvc_NetShareInfoCtr info_ctr;
4001 struct srvsvc_NetShareCtr1 ctr1;
4002 uint32_t resume_handle = 0;
4003 uint32_t total_entries = 0;
4004 int i;
4005 struct dcerpc_binding_handle *b;
4007 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4008 &pipe_hnd);
4010 if (!NT_STATUS_IS_OK(status)) {
4011 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4012 nt_errstr(status)));
4013 TALLOC_FREE(frame);
4014 return false;
4017 b = pipe_hnd->binding_handle;
4019 ZERO_STRUCT(info_ctr);
4020 ZERO_STRUCT(ctr1);
4022 info_ctr.level = 1;
4023 info_ctr.ctr.ctr1 = &ctr1;
4025 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4026 pipe_hnd->desthost,
4027 &info_ctr,
4028 0xffffffff,
4029 &total_entries,
4030 &resume_handle,
4031 &werr);
4033 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4034 TALLOC_FREE(pipe_hnd);
4035 TALLOC_FREE(frame);
4036 return false;
4039 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4040 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4041 browse_fn(info.name, info.type, info.comment, NULL);
4044 TALLOC_FREE(pipe_hnd);
4045 TALLOC_FREE(frame);
4046 return true;
4049 /****************************************************************************
4050 Try and browse available connections on a host.
4051 ****************************************************************************/
4053 static bool browse_host(bool sort)
4055 int ret;
4056 if (!grepable) {
4057 d_printf("\n\tSharename Type Comment\n");
4058 d_printf("\t--------- ---- -------\n");
4061 if (browse_host_rpc(sort)) {
4062 return true;
4065 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
4066 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
4068 return (ret != -1);
4071 /****************************************************************************
4072 List a server name.
4073 ****************************************************************************/
4075 static void server_fn(const char *name, uint32 m,
4076 const char *comment, void *state)
4079 if (!grepable){
4080 d_printf("\t%-16s %s\n", name, comment);
4081 } else {
4082 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4086 /****************************************************************************
4087 Try and browse available connections on a host.
4088 ****************************************************************************/
4090 static bool list_servers(const char *wk_grp)
4092 fstring state;
4094 if (!cli->server_domain)
4095 return false;
4097 if (!grepable) {
4098 d_printf("\n\tServer Comment\n");
4099 d_printf("\t--------- -------\n");
4101 fstrcpy( state, "Server" );
4102 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4103 state);
4105 if (!grepable) {
4106 d_printf("\n\tWorkgroup Master\n");
4107 d_printf("\t--------- -------\n");
4110 fstrcpy( state, "Workgroup" );
4111 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4112 server_fn, state);
4113 return true;
4116 /****************************************************************************
4117 Print or set current VUID
4118 ****************************************************************************/
4120 static int cmd_vuid(void)
4122 TALLOC_CTX *ctx = talloc_tos();
4123 char *buf;
4125 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4126 d_printf("Current VUID is %d\n", cli->vuid);
4127 return 0;
4130 cli->vuid = atoi(buf);
4131 return 0;
4134 /****************************************************************************
4135 Setup a new VUID, by issuing a session setup
4136 ****************************************************************************/
4138 static int cmd_logon(void)
4140 TALLOC_CTX *ctx = talloc_tos();
4141 char *l_username, *l_password;
4142 NTSTATUS nt_status;
4144 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4145 d_printf("logon <username> [<password>]\n");
4146 return 0;
4149 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4150 char *pass = getpass("Password: ");
4151 if (pass) {
4152 l_password = talloc_strdup(ctx,pass);
4155 if (!l_password) {
4156 return 1;
4159 nt_status = cli_session_setup(cli, l_username,
4160 l_password, strlen(l_password),
4161 l_password, strlen(l_password),
4162 lp_workgroup());
4163 if (!NT_STATUS_IS_OK(nt_status)) {
4164 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4165 return -1;
4168 d_printf("Current VUID is %d\n", cli->vuid);
4169 return 0;
4173 /****************************************************************************
4174 list active connections
4175 ****************************************************************************/
4177 static int cmd_list_connect(void)
4179 cli_cm_display(cli);
4180 return 0;
4183 /****************************************************************************
4184 display the current active client connection
4185 ****************************************************************************/
4187 static int cmd_show_connect( void )
4189 TALLOC_CTX *ctx = talloc_tos();
4190 struct cli_state *targetcli;
4191 char *targetpath;
4193 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
4194 &targetcli, &targetpath ) ) {
4195 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
4196 return 1;
4199 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
4200 return 0;
4203 /****************************************************************************
4204 iosize command
4205 ***************************************************************************/
4207 int cmd_iosize(void)
4209 TALLOC_CTX *ctx = talloc_tos();
4210 char *buf;
4211 int iosize;
4213 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4214 if (!smb_encrypt) {
4215 d_printf("iosize <n> or iosize 0x<n>. "
4216 "Minimum is 16384 (0x4000), "
4217 "max is 16776960 (0xFFFF00)\n");
4218 } else {
4219 d_printf("iosize <n> or iosize 0x<n>. "
4220 "(Encrypted connection) ,"
4221 "Minimum is 16384 (0x4000), "
4222 "max is 130048 (0x1FC00)\n");
4224 return 1;
4227 iosize = strtol(buf,NULL,0);
4228 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4229 d_printf("iosize out of range for encrypted "
4230 "connection (min = 16384 (0x4000), "
4231 "max = 130048 (0x1FC00)");
4232 return 1;
4233 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4234 d_printf("iosize out of range (min = 16384 (0x4000), "
4235 "max = 16776960 (0xFFFF00)");
4236 return 1;
4239 io_bufsize = iosize;
4240 d_printf("iosize is now %d\n", io_bufsize);
4241 return 0;
4244 /****************************************************************************
4245 history
4246 ****************************************************************************/
4247 static int cmd_history(void)
4249 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4250 HIST_ENTRY **hlist;
4251 int i;
4253 hlist = history_list();
4255 for (i = 0; hlist && hlist[i]; i++) {
4256 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4258 #else
4259 DEBUG(0,("no history without readline support\n"));
4260 #endif
4262 return 0;
4265 /* Some constants for completing filename arguments */
4267 #define COMPL_NONE 0 /* No completions */
4268 #define COMPL_REMOTE 1 /* Complete remote filename */
4269 #define COMPL_LOCAL 2 /* Complete local filename */
4271 /* This defines the commands supported by this client.
4272 * NOTE: The "!" must be the last one in the list because it's fn pointer
4273 * field is NULL, and NULL in that field is used in process_tok()
4274 * (below) to indicate the end of the list. crh
4276 static struct {
4277 const char *name;
4278 int (*fn)(void);
4279 const char *description;
4280 char compl_args[2]; /* Completion argument info */
4281 } commands[] = {
4282 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4283 {"allinfo",cmd_allinfo,"<file> show all available info",
4284 {COMPL_NONE,COMPL_NONE}},
4285 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4286 {"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}},
4287 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4288 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4289 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4290 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4291 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4292 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4293 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4294 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4295 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4296 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4297 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4298 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4299 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4300 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4301 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4302 {COMPL_REMOTE, COMPL_LOCAL}},
4303 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4304 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4305 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4306 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4307 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4308 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4309 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4310 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4311 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4312 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4313 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4314 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4315 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4316 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4317 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4318 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4319 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4320 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4321 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4322 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4323 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4324 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4325 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4326 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4327 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4328 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4329 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4330 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4331 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4332 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4333 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4334 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4335 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4336 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4337 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4338 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4339 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4340 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4341 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4342 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4343 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4344 {COMPL_REMOTE, COMPL_LOCAL}},
4345 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4346 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4347 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4348 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4349 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4350 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4351 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4352 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4353 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4354 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4355 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4356 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4357 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4358 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4360 /* Yes, this must be here, see crh's comment above. */
4361 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4362 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4365 /*******************************************************************
4366 Lookup a command string in the list of commands, including
4367 abbreviations.
4368 ******************************************************************/
4370 static int process_tok(char *tok)
4372 int i = 0, matches = 0;
4373 int cmd=0;
4374 int tok_len = strlen(tok);
4376 while (commands[i].fn != NULL) {
4377 if (strequal(commands[i].name,tok)) {
4378 matches = 1;
4379 cmd = i;
4380 break;
4381 } else if (strnequal(commands[i].name, tok, tok_len)) {
4382 matches++;
4383 cmd = i;
4385 i++;
4388 if (matches == 0)
4389 return(-1);
4390 else if (matches == 1)
4391 return(cmd);
4392 else
4393 return(-2);
4396 /****************************************************************************
4397 Help.
4398 ****************************************************************************/
4400 static int cmd_help(void)
4402 TALLOC_CTX *ctx = talloc_tos();
4403 int i=0,j;
4404 char *buf;
4406 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4407 if ((i = process_tok(buf)) >= 0)
4408 d_printf("HELP %s:\n\t%s\n\n",
4409 commands[i].name,commands[i].description);
4410 } else {
4411 while (commands[i].description) {
4412 for (j=0; commands[i].description && (j<5); j++) {
4413 d_printf("%-15s",commands[i].name);
4414 i++;
4416 d_printf("\n");
4419 return 0;
4422 /****************************************************************************
4423 Process a -c command string.
4424 ****************************************************************************/
4426 static int process_command_string(const char *cmd_in)
4428 TALLOC_CTX *ctx = talloc_tos();
4429 char *cmd = talloc_strdup(ctx, cmd_in);
4430 int rc = 0;
4432 if (!cmd) {
4433 return 1;
4435 /* establish the connection if not already */
4437 if (!cli) {
4438 cli = cli_cm_open(talloc_tos(), NULL,
4439 have_ip ? dest_ss_str : desthost,
4440 service, auth_info,
4441 true, smb_encrypt,
4442 max_protocol, port, name_type);
4443 if (!cli) {
4444 return 1;
4448 while (cmd[0] != '\0') {
4449 char *line;
4450 char *p;
4451 char *tok;
4452 int i;
4454 if ((p = strchr_m(cmd, ';')) == 0) {
4455 line = cmd;
4456 cmd += strlen(cmd);
4457 } else {
4458 *p = '\0';
4459 line = cmd;
4460 cmd = p + 1;
4463 /* and get the first part of the command */
4464 cmd_ptr = line;
4465 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4466 continue;
4469 if ((i = process_tok(tok)) >= 0) {
4470 rc = commands[i].fn();
4471 } else if (i == -2) {
4472 d_printf("%s: command abbreviation ambiguous\n",tok);
4473 } else {
4474 d_printf("%s: command not found\n",tok);
4478 return rc;
4481 #define MAX_COMPLETIONS 100
4483 struct completion_remote {
4484 char *dirmask;
4485 char **matches;
4486 int count, samelen;
4487 const char *text;
4488 int len;
4491 static NTSTATUS completion_remote_filter(const char *mnt,
4492 struct file_info *f,
4493 const char *mask,
4494 void *state)
4496 struct completion_remote *info = (struct completion_remote *)state;
4498 if (info->count >= MAX_COMPLETIONS - 1) {
4499 return NT_STATUS_OK;
4501 if (strncmp(info->text, f->name, info->len) != 0) {
4502 return NT_STATUS_OK;
4504 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4505 return NT_STATUS_OK;
4508 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4509 info->matches[info->count] = SMB_STRDUP(f->name);
4510 else {
4511 TALLOC_CTX *ctx = talloc_stackframe();
4512 char *tmp;
4514 tmp = talloc_strdup(ctx,info->dirmask);
4515 if (!tmp) {
4516 TALLOC_FREE(ctx);
4517 return NT_STATUS_NO_MEMORY;
4519 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4520 if (!tmp) {
4521 TALLOC_FREE(ctx);
4522 return NT_STATUS_NO_MEMORY;
4524 if (f->mode & aDIR) {
4525 tmp = talloc_asprintf_append(tmp, "%s",
4526 CLI_DIRSEP_STR);
4528 if (!tmp) {
4529 TALLOC_FREE(ctx);
4530 return NT_STATUS_NO_MEMORY;
4532 info->matches[info->count] = SMB_STRDUP(tmp);
4533 TALLOC_FREE(ctx);
4535 if (info->matches[info->count] == NULL) {
4536 return NT_STATUS_OK;
4538 if (f->mode & aDIR) {
4539 smb_readline_ca_char(0);
4541 if (info->count == 1) {
4542 info->samelen = strlen(info->matches[info->count]);
4543 } else {
4544 while (strncmp(info->matches[info->count],
4545 info->matches[info->count-1],
4546 info->samelen) != 0) {
4547 info->samelen--;
4550 info->count++;
4551 return NT_STATUS_OK;
4554 static char **remote_completion(const char *text, int len)
4556 TALLOC_CTX *ctx = talloc_stackframe();
4557 char *dirmask = NULL;
4558 char *targetpath = NULL;
4559 struct cli_state *targetcli = NULL;
4560 int i;
4561 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4562 NTSTATUS status;
4564 /* can't have non-static initialisation on Sun CC, so do it
4565 at run time here */
4566 info.samelen = len;
4567 info.text = text;
4568 info.len = len;
4570 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4571 if (!info.matches) {
4572 TALLOC_FREE(ctx);
4573 return NULL;
4577 * We're leaving matches[0] free to fill it later with the text to
4578 * display: Either the one single match or the longest common subset
4579 * of the matches.
4581 info.matches[0] = NULL;
4582 info.count = 1;
4584 for (i = len-1; i >= 0; i--) {
4585 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4586 break;
4590 info.text = text+i+1;
4591 info.samelen = info.len = len-i-1;
4593 if (i > 0) {
4594 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4595 if (!info.dirmask) {
4596 goto cleanup;
4598 strncpy(info.dirmask, text, i+1);
4599 info.dirmask[i+1] = 0;
4600 dirmask = talloc_asprintf(ctx,
4601 "%s%*s*",
4602 client_get_cur_dir(),
4603 i-1,
4604 text);
4605 } else {
4606 info.dirmask = SMB_STRDUP("");
4607 if (!info.dirmask) {
4608 goto cleanup;
4610 dirmask = talloc_asprintf(ctx,
4611 "%s*",
4612 client_get_cur_dir());
4614 if (!dirmask) {
4615 goto cleanup;
4618 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4619 goto cleanup;
4621 status = cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4622 completion_remote_filter, (void *)&info);
4623 if (!NT_STATUS_IS_OK(status)) {
4624 goto cleanup;
4627 if (info.count == 1) {
4629 * No matches at all, NULL indicates there is nothing
4631 SAFE_FREE(info.matches[0]);
4632 SAFE_FREE(info.matches);
4633 TALLOC_FREE(ctx);
4634 return NULL;
4637 if (info.count == 2) {
4639 * Exactly one match in matches[1], indicate this is the one
4640 * in matches[0].
4642 info.matches[0] = info.matches[1];
4643 info.matches[1] = NULL;
4644 info.count -= 1;
4645 TALLOC_FREE(ctx);
4646 return info.matches;
4650 * We got more than one possible match, set the result to the maximum
4651 * common subset
4654 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4655 info.matches[info.count] = NULL;
4656 return info.matches;
4658 cleanup:
4659 for (i = 0; i < info.count; i++) {
4660 SAFE_FREE(info.matches[i]);
4662 SAFE_FREE(info.matches);
4663 SAFE_FREE(info.dirmask);
4664 TALLOC_FREE(ctx);
4665 return NULL;
4668 static char **completion_fn(const char *text, int start, int end)
4670 smb_readline_ca_char(' ');
4672 if (start) {
4673 const char *buf, *sp;
4674 int i;
4675 char compl_type;
4677 buf = smb_readline_get_line_buffer();
4678 if (buf == NULL)
4679 return NULL;
4681 sp = strchr(buf, ' ');
4682 if (sp == NULL)
4683 return NULL;
4685 for (i = 0; commands[i].name; i++) {
4686 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4687 (commands[i].name[sp - buf] == 0)) {
4688 break;
4691 if (commands[i].name == NULL)
4692 return NULL;
4694 while (*sp == ' ')
4695 sp++;
4697 if (sp == (buf + start))
4698 compl_type = commands[i].compl_args[0];
4699 else
4700 compl_type = commands[i].compl_args[1];
4702 if (compl_type == COMPL_REMOTE)
4703 return remote_completion(text, end - start);
4704 else /* fall back to local filename completion */
4705 return NULL;
4706 } else {
4707 char **matches;
4708 int i, len, samelen = 0, count=1;
4710 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4711 if (!matches) {
4712 return NULL;
4714 matches[0] = NULL;
4716 len = strlen(text);
4717 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4718 if (strncmp(text, commands[i].name, len) == 0) {
4719 matches[count] = SMB_STRDUP(commands[i].name);
4720 if (!matches[count])
4721 goto cleanup;
4722 if (count == 1)
4723 samelen = strlen(matches[count]);
4724 else
4725 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4726 samelen--;
4727 count++;
4731 switch (count) {
4732 case 0: /* should never happen */
4733 case 1:
4734 goto cleanup;
4735 case 2:
4736 matches[0] = SMB_STRDUP(matches[1]);
4737 break;
4738 default:
4739 matches[0] = (char *)SMB_MALLOC(samelen+1);
4740 if (!matches[0])
4741 goto cleanup;
4742 strncpy(matches[0], matches[1], samelen);
4743 matches[0][samelen] = 0;
4745 matches[count] = NULL;
4746 return matches;
4748 cleanup:
4749 for (i = 0; i < count; i++)
4750 free(matches[i]);
4752 free(matches);
4753 return NULL;
4757 static bool finished;
4759 /****************************************************************************
4760 Make sure we swallow keepalives during idle time.
4761 ****************************************************************************/
4763 static void readline_callback(void)
4765 static time_t last_t;
4766 struct timespec now;
4767 time_t t;
4768 int ret, revents;
4770 clock_gettime_mono(&now);
4771 t = now.tv_sec;
4773 if (t - last_t < 5)
4774 return;
4776 last_t = t;
4778 again:
4780 if (cli->fd == -1)
4781 return;
4783 /* We deliberately use receive_smb_raw instead of
4784 client_receive_smb as we want to receive
4785 session keepalives and then drop them here.
4788 ret = poll_intr_one_fd(cli->fd, POLLIN|POLLHUP, 0, &revents);
4790 if ((ret > 0) && (revents & (POLLIN|POLLHUP|POLLERR))) {
4791 NTSTATUS status;
4792 size_t len;
4794 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4796 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4798 if (!NT_STATUS_IS_OK(status)) {
4799 DEBUG(0, ("Read from server failed, maybe it closed "
4800 "the connection\n"));
4802 finished = true;
4803 smb_readline_done();
4804 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4805 set_smb_read_error(&cli->smb_rw_error,
4806 SMB_READ_EOF);
4807 return;
4810 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4811 set_smb_read_error(&cli->smb_rw_error,
4812 SMB_READ_TIMEOUT);
4813 return;
4816 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4817 return;
4819 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4820 DEBUG(0, ("Read from server "
4821 "returned unexpected packet!\n"));
4822 return;
4825 goto again;
4828 /* Ping the server to keep the connection alive using SMBecho. */
4830 NTSTATUS status;
4831 unsigned char garbage[16];
4832 memset(garbage, 0xf0, sizeof(garbage));
4833 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4835 if (!NT_STATUS_IS_OK(status)) {
4836 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4837 "the connection\n"));
4838 finished = true;
4839 smb_readline_done();
4844 /****************************************************************************
4845 Process commands on stdin.
4846 ****************************************************************************/
4848 static int process_stdin(void)
4850 int rc = 0;
4852 while (!finished) {
4853 TALLOC_CTX *frame = talloc_stackframe();
4854 char *tok = NULL;
4855 char *the_prompt = NULL;
4856 char *line = NULL;
4857 int i;
4859 /* display a prompt */
4860 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4861 TALLOC_FREE(frame);
4862 break;
4864 line = smb_readline(the_prompt, readline_callback, completion_fn);
4865 SAFE_FREE(the_prompt);
4866 if (!line) {
4867 TALLOC_FREE(frame);
4868 break;
4871 /* special case - first char is ! */
4872 if (*line == '!') {
4873 if (system(line + 1) == -1) {
4874 d_printf("system() command %s failed.\n",
4875 line+1);
4877 SAFE_FREE(line);
4878 TALLOC_FREE(frame);
4879 continue;
4882 /* and get the first part of the command */
4883 cmd_ptr = line;
4884 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4885 TALLOC_FREE(frame);
4886 SAFE_FREE(line);
4887 continue;
4890 if ((i = process_tok(tok)) >= 0) {
4891 rc = commands[i].fn();
4892 } else if (i == -2) {
4893 d_printf("%s: command abbreviation ambiguous\n",tok);
4894 } else {
4895 d_printf("%s: command not found\n",tok);
4897 SAFE_FREE(line);
4898 TALLOC_FREE(frame);
4900 return rc;
4903 /****************************************************************************
4904 Process commands from the client.
4905 ****************************************************************************/
4907 static int process(const char *base_directory)
4909 int rc = 0;
4911 cli = cli_cm_open(talloc_tos(), NULL,
4912 have_ip ? dest_ss_str : desthost,
4913 service, auth_info, true, smb_encrypt,
4914 max_protocol, port, name_type);
4915 if (!cli) {
4916 return 1;
4919 if (base_directory && *base_directory) {
4920 rc = do_cd(base_directory);
4921 if (rc) {
4922 cli_shutdown(cli);
4923 return rc;
4927 if (cmdstr) {
4928 rc = process_command_string(cmdstr);
4929 } else {
4930 process_stdin();
4933 cli_shutdown(cli);
4934 return rc;
4937 /****************************************************************************
4938 Handle a -L query.
4939 ****************************************************************************/
4941 static int do_host_query(const char *query_host)
4943 cli = cli_cm_open(talloc_tos(), NULL,
4944 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4945 max_protocol, port, name_type);
4946 if (!cli)
4947 return 1;
4949 browse_host(true);
4951 /* Ensure that the host can do IPv4 */
4953 if (!interpret_addr(query_host)) {
4954 struct sockaddr_storage ss;
4955 if (interpret_string_addr(&ss, query_host, 0) &&
4956 (ss.ss_family != AF_INET)) {
4957 d_printf("%s is an IPv6 address -- no workgroup available\n",
4958 query_host);
4959 return 1;
4963 if (port != 139) {
4965 /* Workgroups simply don't make sense over anything
4966 else but port 139... */
4968 cli_shutdown(cli);
4969 cli = cli_cm_open(talloc_tos(), NULL,
4970 have_ip ? dest_ss_str : query_host, "IPC$",
4971 auth_info, true, smb_encrypt,
4972 max_protocol, 139, name_type);
4975 if (cli == NULL) {
4976 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4977 return 1;
4980 list_servers(lp_workgroup());
4982 cli_shutdown(cli);
4984 return(0);
4987 /****************************************************************************
4988 Handle a tar operation.
4989 ****************************************************************************/
4991 static int do_tar_op(const char *base_directory)
4993 int ret;
4995 /* do we already have a connection? */
4996 if (!cli) {
4997 cli = cli_cm_open(talloc_tos(), NULL,
4998 have_ip ? dest_ss_str : desthost,
4999 service, auth_info, true, smb_encrypt,
5000 max_protocol, port, name_type);
5001 if (!cli)
5002 return 1;
5005 recurse=true;
5007 if (base_directory && *base_directory) {
5008 ret = do_cd(base_directory);
5009 if (ret) {
5010 cli_shutdown(cli);
5011 return ret;
5015 ret=process_tar();
5017 cli_shutdown(cli);
5019 return(ret);
5022 /****************************************************************************
5023 Handle a message operation.
5024 ****************************************************************************/
5026 static int do_message_op(struct user_auth_info *a_info)
5028 struct sockaddr_storage ss;
5029 struct nmb_name called, calling;
5030 fstring server_name;
5031 char name_type_hex[10];
5032 int msg_port;
5033 NTSTATUS status;
5035 make_nmb_name(&calling, calling_name, 0x0);
5036 make_nmb_name(&called , desthost, name_type);
5038 fstrcpy(server_name, desthost);
5039 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
5040 fstrcat(server_name, name_type_hex);
5042 zero_sockaddr(&ss);
5043 if (have_ip)
5044 ss = dest_ss;
5046 /* we can only do messages over port 139 (to windows clients at least) */
5048 msg_port = port ? port : 139;
5050 if (!(cli=cli_initialise())) {
5051 d_printf("Connection to %s failed\n", desthost);
5052 return 1;
5054 cli_set_port(cli, msg_port);
5056 status = cli_connect(cli, server_name, &ss);
5057 if (!NT_STATUS_IS_OK(status)) {
5058 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5059 return 1;
5062 if (!cli_session_request(cli, &calling, &called)) {
5063 d_printf("session request failed\n");
5064 cli_shutdown(cli);
5065 return 1;
5068 send_message(get_cmdline_auth_info_username(a_info));
5069 cli_shutdown(cli);
5071 return 0;
5074 /****************************************************************************
5075 main program
5076 ****************************************************************************/
5078 int main(int argc,char *argv[])
5080 char *base_directory = NULL;
5081 int opt;
5082 char *query_host = NULL;
5083 bool message = false;
5084 static const char *new_name_resolve_order = NULL;
5085 poptContext pc;
5086 char *p;
5087 int rc = 0;
5088 fstring new_workgroup;
5089 bool tar_opt = false;
5090 bool service_opt = false;
5091 struct poptOption long_options[] = {
5092 POPT_AUTOHELP
5094 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5095 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5096 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5097 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5098 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5099 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5100 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5101 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5102 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5103 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5104 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5105 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5106 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5107 POPT_COMMON_SAMBA
5108 POPT_COMMON_CONNECTION
5109 POPT_COMMON_CREDENTIALS
5110 POPT_TABLEEND
5112 TALLOC_CTX *frame = talloc_stackframe();
5114 if (!client_set_cur_dir("\\")) {
5115 exit(ENOMEM);
5118 /* initialize the workgroup name so we can determine whether or
5119 not it was set by a command line option */
5121 set_global_myworkgroup( "" );
5122 set_global_myname( "" );
5124 /* set default debug level to 1 regardless of what smb.conf sets */
5125 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5126 load_case_tables();
5128 lp_set_cmdline("log level", "1");
5130 auth_info = user_auth_info_init(frame);
5131 if (auth_info == NULL) {
5132 exit(1);
5134 popt_common_set_auth_info(auth_info);
5136 /* skip argv(0) */
5137 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5138 poptSetOtherOptionHelp(pc, "service <password>");
5140 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5142 while ((opt = poptGetNextOpt(pc)) != -1) {
5144 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5145 /* I see no other way to keep things sane --SSS */
5146 if (tar_opt == true) {
5147 while (poptPeekArg(pc)) {
5148 poptGetArg(pc);
5150 tar_opt = false;
5153 /* if the service has not yet been specified lets see if it is available in the popt stack */
5154 if (!service_opt && poptPeekArg(pc)) {
5155 service = talloc_strdup(frame, poptGetArg(pc));
5156 if (!service) {
5157 exit(ENOMEM);
5159 service_opt = true;
5162 /* if the service has already been retrieved then check if we have also a password */
5163 if (service_opt
5164 && (!get_cmdline_auth_info_got_pass(auth_info))
5165 && poptPeekArg(pc)) {
5166 set_cmdline_auth_info_password(auth_info,
5167 poptGetArg(pc));
5170 switch (opt) {
5171 case 'M':
5172 /* Messages are sent to NetBIOS name type 0x3
5173 * (Messenger Service). Make sure we default
5174 * to port 139 instead of port 445. srl,crh
5176 name_type = 0x03;
5177 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5178 if (!desthost) {
5179 exit(ENOMEM);
5181 if( !port )
5182 port = 139;
5183 message = true;
5184 break;
5185 case 'I':
5187 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5188 exit(1);
5190 have_ip = true;
5191 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5193 break;
5194 case 'E':
5195 setup_logging("smbclient", DEBUG_STDERR );
5196 display_set_stderr();
5197 break;
5199 case 'L':
5200 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5201 if (!query_host) {
5202 exit(ENOMEM);
5204 break;
5205 case 'm':
5206 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5207 break;
5208 case 'T':
5209 /* We must use old option processing for this. Find the
5210 * position of the -T option in the raw argv[]. */
5212 int i;
5213 for (i = 1; i < argc; i++) {
5214 if (strncmp("-T", argv[i],2)==0)
5215 break;
5217 i++;
5218 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5219 poptPrintUsage(pc, stderr, 0);
5220 exit(1);
5223 /* this must be the last option, mark we have parsed it so that we know we have */
5224 tar_opt = true;
5225 break;
5226 case 'D':
5227 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5228 if (!base_directory) {
5229 exit(ENOMEM);
5231 break;
5232 case 'g':
5233 grepable=true;
5234 break;
5235 case 'e':
5236 smb_encrypt=true;
5237 break;
5238 case 'B':
5239 return(do_smb_browse());
5244 /* We may still have some leftovers after the last popt option has been called */
5245 if (tar_opt == true) {
5246 while (poptPeekArg(pc)) {
5247 poptGetArg(pc);
5249 tar_opt = false;
5252 /* if the service has not yet been specified lets see if it is available in the popt stack */
5253 if (!service_opt && poptPeekArg(pc)) {
5254 service = talloc_strdup(frame,poptGetArg(pc));
5255 if (!service) {
5256 exit(ENOMEM);
5258 service_opt = true;
5261 /* if the service has already been retrieved then check if we have also a password */
5262 if (service_opt
5263 && !get_cmdline_auth_info_got_pass(auth_info)
5264 && poptPeekArg(pc)) {
5265 set_cmdline_auth_info_password(auth_info,
5266 poptGetArg(pc));
5269 /* save the workgroup...
5271 FIXME!! do we need to do this for other options as well
5272 (or maybe a generic way to keep lp_load() from overwriting
5273 everything)? */
5275 fstrcpy( new_workgroup, lp_workgroup() );
5276 calling_name = talloc_strdup(frame, global_myname() );
5277 if (!calling_name) {
5278 exit(ENOMEM);
5281 if ( override_logfile )
5282 setup_logging( lp_logfile(), DEBUG_FILE );
5284 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5285 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5286 argv[0], get_dyn_CONFIGFILE());
5289 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5290 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5291 exit(-1);
5294 load_interfaces();
5296 if (service_opt && service) {
5297 size_t len;
5299 /* Convert any '/' characters in the service name to '\' characters */
5300 string_replace(service, '/','\\');
5301 if (count_chars(service,'\\') < 3) {
5302 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5303 poptPrintUsage(pc, stderr, 0);
5304 exit(1);
5306 /* Remove trailing slashes */
5307 len = strlen(service);
5308 while(len > 0 && service[len - 1] == '\\') {
5309 --len;
5310 service[len] = '\0';
5314 if ( strlen(new_workgroup) != 0 ) {
5315 set_global_myworkgroup( new_workgroup );
5318 if ( strlen(calling_name) != 0 ) {
5319 set_global_myname( calling_name );
5320 } else {
5321 TALLOC_FREE(calling_name);
5322 calling_name = talloc_strdup(frame, global_myname() );
5325 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5326 if (!init_names()) {
5327 fprintf(stderr, "init_names() failed\n");
5328 exit(1);
5331 if(new_name_resolve_order)
5332 lp_set_name_resolve_order(new_name_resolve_order);
5334 if (!tar_type && !query_host && !service && !message) {
5335 poptPrintUsage(pc, stderr, 0);
5336 exit(1);
5339 poptFreeContext(pc);
5341 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5343 /* Ensure we have a password (or equivalent). */
5344 set_cmdline_auth_info_getpass(auth_info);
5346 if (tar_type) {
5347 if (cmdstr)
5348 process_command_string(cmdstr);
5349 return do_tar_op(base_directory);
5352 if (query_host && *query_host) {
5353 char *qhost = query_host;
5354 char *slash;
5356 while (*qhost == '\\' || *qhost == '/')
5357 qhost++;
5359 if ((slash = strchr_m(qhost, '/'))
5360 || (slash = strchr_m(qhost, '\\'))) {
5361 *slash = 0;
5364 if ((p=strchr_m(qhost, '#'))) {
5365 *p = 0;
5366 p++;
5367 sscanf(p, "%x", &name_type);
5370 return do_host_query(qhost);
5373 if (message) {
5374 return do_message_op(auth_info);
5377 if (process(base_directory)) {
5378 return 1;
5381 TALLOC_FREE(frame);
5382 return rc;