s3:winbindd: pass 'interactive' down through winbindd_dual_auth_passdb()
[Samba.git] / source3 / client / client.c
blob45dc11c2ba8ab277821733375285209d26bb1019
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 "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "client/clitar_proto.h"
30 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
31 #include "../lib/util/select.h"
32 #include "system/readline.h"
33 #include "../libcli/smbreadline/smbreadline.h"
34 #include "../libcli/security/security.h"
35 #include "system/select.h"
36 #include "libsmb/libsmb.h"
37 #include "libsmb/clirap.h"
38 #include "trans2.h"
39 #include "libsmb/nmblib.h"
40 #include "include/ntioctl.h"
41 #include "../libcli/smb/smbXcli_base.h"
43 #ifndef REGISTER
44 #define REGISTER 0
45 #endif
47 extern int do_smb_browse(void); /* mDNS browsing */
49 extern bool override_logfile;
51 static int port = 0;
52 static char *service;
53 static char *desthost;
54 static bool grepable = false;
55 static char *cmdstr = NULL;
56 const char *cmd_ptr = NULL;
58 static int io_bufsize = 0; /* we use the default size */
59 static int io_timeout = (CLIENT_TIMEOUT/1000); /* Per operation timeout (in seconds). */
61 static int name_type = 0x20;
62 static int max_protocol = -1;
64 static int process_tok(char *tok);
65 static int cmd_help(void);
67 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
69 /* value for unused fid field in trans2 secondary request */
70 #define FID_UNUSED (0xFFFF)
72 time_t newer_than = 0;
73 static int archive_level = 0;
75 static bool translation = false;
76 static bool have_ip;
78 static bool prompt = true;
80 static bool recurse = false;
81 static bool showacls = false;
82 bool lowercase = false;
83 static bool backup_intent = false;
85 static struct sockaddr_storage dest_ss;
86 static char dest_ss_str[INET6_ADDRSTRLEN];
88 #define SEPARATORS " \t\n\r"
90 static bool abort_mget = true;
92 /* timing globals */
93 uint64_t get_total_size = 0;
94 unsigned int get_total_time_ms = 0;
95 static uint64_t put_total_size = 0;
96 static unsigned int put_total_time_ms = 0;
98 /* totals globals */
99 static double dir_total;
101 /* encrypted state. */
102 static bool smb_encrypt;
104 /* root cli_state connection */
106 struct cli_state *cli;
108 static char CLI_DIRSEP_CHAR = '\\';
109 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
111 /* Authentication for client connections. */
112 struct user_auth_info *auth_info;
114 /* Accessor functions for directory paths. */
115 static char *fileselection;
116 static const char *client_get_fileselection(void)
118 if (fileselection) {
119 return fileselection;
121 return "";
124 static const char *client_set_fileselection(const char *new_fs)
126 SAFE_FREE(fileselection);
127 if (new_fs) {
128 fileselection = SMB_STRDUP(new_fs);
130 return client_get_fileselection();
133 static char *cwd;
134 static const char *client_get_cwd(void)
136 if (cwd) {
137 return cwd;
139 return CLI_DIRSEP_STR;
142 static const char *client_set_cwd(const char *new_cwd)
144 SAFE_FREE(cwd);
145 if (new_cwd) {
146 cwd = SMB_STRDUP(new_cwd);
148 return client_get_cwd();
151 static char *cur_dir;
152 const char *client_get_cur_dir(void)
154 if (cur_dir) {
155 return cur_dir;
157 return CLI_DIRSEP_STR;
160 const char *client_set_cur_dir(const char *newdir)
162 SAFE_FREE(cur_dir);
163 if (newdir) {
164 cur_dir = SMB_STRDUP(newdir);
166 return client_get_cur_dir();
169 /****************************************************************************
170 Put up a yes/no prompt.
171 ****************************************************************************/
173 static bool yesno(const char *p)
175 char ans[20];
176 printf("%s",p);
178 if (!fgets(ans,sizeof(ans)-1,stdin))
179 return(False);
181 if (*ans == 'y' || *ans == 'Y')
182 return(True);
184 return(False);
187 /****************************************************************************
188 Write to a local file with CR/LF->LF translation if appropriate. Return the
189 number taken from the buffer. This may not equal the number written.
190 ****************************************************************************/
192 static int writefile(int f, char *b, int n)
194 int i;
196 if (!translation) {
197 return write(f,b,n);
200 i = 0;
201 while (i < n) {
202 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
203 b++;i++;
205 if (write(f, b, 1) != 1) {
206 break;
208 b++;
209 i++;
212 return(i);
215 /****************************************************************************
216 Read from a file with LF->CR/LF translation if appropriate. Return the
217 number read. read approx n bytes.
218 ****************************************************************************/
220 static int readfile(uint8_t *b, int n, XFILE *f)
222 int i;
223 int c;
225 if (!translation)
226 return x_fread(b,1,n,f);
228 i = 0;
229 while (i < (n - 1)) {
230 if ((c = x_getc(f)) == EOF) {
231 break;
234 if (c == '\n') { /* change all LFs to CR/LF */
235 b[i++] = '\r';
238 b[i++] = c;
241 return(i);
244 struct push_state {
245 XFILE *f;
246 off_t nread;
249 static size_t push_source(uint8_t *buf, size_t n, void *priv)
251 struct push_state *state = (struct push_state *)priv;
252 int result;
254 if (x_feof(state->f)) {
255 return 0;
258 result = readfile(buf, n, state->f);
259 state->nread += result;
260 return result;
263 /****************************************************************************
264 Send a message.
265 ****************************************************************************/
267 static void send_message(const char *username)
269 char buf[1600];
270 NTSTATUS status;
271 int i;
273 d_printf("Type your message, ending it with a Control-D\n");
275 i = 0;
276 while (i<sizeof(buf)-2) {
277 int c = fgetc(stdin);
278 if (c == EOF) {
279 break;
281 if (c == '\n') {
282 buf[i++] = '\r';
284 buf[i++] = c;
286 buf[i] = '\0';
288 status = cli_message(cli, desthost, username, buf);
289 if (!NT_STATUS_IS_OK(status)) {
290 d_fprintf(stderr, "cli_message returned %s\n",
291 nt_errstr(status));
295 /****************************************************************************
296 Check the space on a device.
297 ****************************************************************************/
299 static int do_dskattr(void)
301 uint64_t total, bsize, avail;
302 struct cli_state *targetcli = NULL;
303 char *targetpath = NULL;
304 TALLOC_CTX *ctx = talloc_tos();
305 NTSTATUS status;
307 status = cli_resolve_path(ctx, "", auth_info, cli,
308 client_get_cur_dir(), &targetcli,
309 &targetpath);
310 if (!NT_STATUS_IS_OK(status)) {
311 d_printf("Error in dskattr: %s\n", nt_errstr(status));
312 return 1;
315 status = cli_disk_size(targetcli, targetpath, &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%" PRIu64
322 " blocks of size %" PRIu64
323 ". %" PRIu64 " blocks available\n",
324 total, bsize, avail);
326 return 0;
329 /****************************************************************************
330 Show cd/pwd.
331 ****************************************************************************/
333 static int cmd_pwd(void)
335 d_printf("Current directory is %s",service);
336 d_printf("%s\n",client_get_cur_dir());
337 return 0;
340 /****************************************************************************
341 Ensure name has correct directory separators.
342 ****************************************************************************/
344 static void normalize_name(char *newdir)
346 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
347 string_replace(newdir,'/','\\');
351 /****************************************************************************
352 Change directory - inner section.
353 ****************************************************************************/
355 static int do_cd(const char *new_dir)
357 char *newdir = NULL;
358 char *saved_dir = NULL;
359 char *new_cd = NULL;
360 char *targetpath = NULL;
361 struct cli_state *targetcli = NULL;
362 SMB_STRUCT_STAT sbuf;
363 uint32_t attributes;
364 int ret = 1;
365 TALLOC_CTX *ctx = talloc_stackframe();
366 NTSTATUS status;
368 newdir = talloc_strdup(ctx, new_dir);
369 if (!newdir) {
370 TALLOC_FREE(ctx);
371 return 1;
374 normalize_name(newdir);
376 /* Save the current directory in case the new directory is invalid */
378 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
379 if (!saved_dir) {
380 TALLOC_FREE(ctx);
381 return 1;
384 if (*newdir == CLI_DIRSEP_CHAR) {
385 client_set_cur_dir(newdir);
386 new_cd = newdir;
387 } else {
388 new_cd = talloc_asprintf(ctx, "%s%s",
389 client_get_cur_dir(),
390 newdir);
391 if (!new_cd) {
392 goto out;
396 /* Ensure cur_dir ends in a DIRSEP */
397 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
398 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
399 if (!new_cd) {
400 goto out;
403 client_set_cur_dir(new_cd);
405 new_cd = clean_name(ctx, new_cd);
406 client_set_cur_dir(new_cd);
408 status = cli_resolve_path(ctx, "", auth_info, cli, new_cd,
409 &targetcli, &targetpath);
410 if (!NT_STATUS_IS_OK(status)) {
411 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
412 client_set_cur_dir(saved_dir);
413 goto out;
416 if (strequal(targetpath,CLI_DIRSEP_STR )) {
417 TALLOC_FREE(ctx);
418 return 0;
421 /* Use a trans2_qpathinfo to test directories for modern servers.
422 Except Win9x doesn't support the qpathinfo_basic() call..... */
424 if (smbXcli_conn_protocol(targetcli->conn) > PROTOCOL_LANMAN2 && !targetcli->win95) {
426 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
427 &attributes);
428 if (!NT_STATUS_IS_OK(status)) {
429 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
430 client_set_cur_dir(saved_dir);
431 goto out;
434 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
435 d_printf("cd %s: not a directory\n", new_cd);
436 client_set_cur_dir(saved_dir);
437 goto out;
439 } else {
441 targetpath = talloc_asprintf(ctx,
442 "%s%s",
443 targetpath,
444 CLI_DIRSEP_STR );
445 if (!targetpath) {
446 client_set_cur_dir(saved_dir);
447 goto out;
449 targetpath = clean_name(ctx, targetpath);
450 if (!targetpath) {
451 client_set_cur_dir(saved_dir);
452 goto out;
455 status = cli_chkpath(targetcli, targetpath);
456 if (!NT_STATUS_IS_OK(status)) {
457 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
458 client_set_cur_dir(saved_dir);
459 goto out;
463 ret = 0;
465 out:
467 TALLOC_FREE(ctx);
468 return ret;
471 /****************************************************************************
472 Change directory.
473 ****************************************************************************/
475 static int cmd_cd(void)
477 char *buf = NULL;
478 int rc = 0;
480 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
481 rc = do_cd(buf);
482 } else {
483 d_printf("Current directory is %s\n",client_get_cur_dir());
486 return rc;
489 /****************************************************************************
490 Change directory.
491 ****************************************************************************/
493 static int cmd_cd_oneup(void)
495 return do_cd("..");
498 /*******************************************************************
499 Decide if a file should be operated on.
500 ********************************************************************/
502 static bool do_this_one(struct file_info *finfo)
504 if (!finfo->name) {
505 return false;
508 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
509 return true;
512 if (*client_get_fileselection() &&
513 !mask_match(finfo->name,client_get_fileselection(),false)) {
514 DEBUG(3,("mask_match %s failed\n", finfo->name));
515 return false;
518 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
519 DEBUG(3,("newer_than %s failed\n", finfo->name));
520 return false;
523 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
524 DEBUG(3,("archive %s failed\n", finfo->name));
525 return false;
528 return true;
531 /****************************************************************************
532 Display info about a file.
533 ****************************************************************************/
535 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
536 const char *dir)
538 time_t t;
539 TALLOC_CTX *ctx = talloc_tos();
540 NTSTATUS status = NT_STATUS_OK;
542 if (!do_this_one(finfo)) {
543 return NT_STATUS_OK;
546 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
547 if (!showacls) {
548 d_printf(" %-30s%7.7s %8.0f %s",
549 finfo->name,
550 attrib_string(talloc_tos(), finfo->mode),
551 (double)finfo->size,
552 time_to_asc(t));
553 dir_total += finfo->size;
554 } else {
555 char *afname = NULL;
556 uint16_t fnum;
558 /* skip if this is . or .. */
559 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
560 return NT_STATUS_OK;
561 /* create absolute filename for cli_ntcreate() FIXME */
562 afname = talloc_asprintf(ctx,
563 "%s%s%s",
564 dir,
565 CLI_DIRSEP_STR,
566 finfo->name);
567 if (!afname) {
568 return NT_STATUS_NO_MEMORY;
570 /* print file meta date header */
571 d_printf( "FILENAME:%s\n", finfo->name);
572 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
573 d_printf( "SIZE:%.0f\n", (double)finfo->size);
574 d_printf( "MTIME:%s", time_to_asc(t));
575 status = cli_ntcreate(cli_state, afname, 0,
576 CREATE_ACCESS_READ, 0,
577 FILE_SHARE_READ|FILE_SHARE_WRITE,
578 FILE_OPEN, 0x0, 0x0, &fnum, NULL);
579 if (!NT_STATUS_IS_OK(status)) {
580 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
581 afname, nt_errstr(status)));
582 } else {
583 struct security_descriptor *sd = NULL;
584 status = cli_query_secdesc(cli_state, fnum,
585 ctx, &sd);
586 if (!NT_STATUS_IS_OK(status)) {
587 DEBUG( 0, ("display_finfo() failed to "
588 "get security descriptor: %s",
589 nt_errstr(status)));
590 } else {
591 display_sec_desc(sd);
593 TALLOC_FREE(sd);
595 TALLOC_FREE(afname);
597 return status;
600 /****************************************************************************
601 Accumulate size of a file.
602 ****************************************************************************/
604 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
605 const char *dir)
607 if (do_this_one(finfo)) {
608 dir_total += finfo->size;
610 return NT_STATUS_OK;
613 static bool do_list_recurse;
614 static bool do_list_dirs;
615 static char *do_list_queue = 0;
616 static long do_list_queue_size = 0;
617 static long do_list_queue_start = 0;
618 static long do_list_queue_end = 0;
619 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
620 const char *dir);
622 /****************************************************************************
623 Functions for do_list_queue.
624 ****************************************************************************/
627 * The do_list_queue is a NUL-separated list of strings stored in a
628 * char*. Since this is a FIFO, we keep track of the beginning and
629 * ending locations of the data in the queue. When we overflow, we
630 * double the size of the char*. When the start of the data passes
631 * the midpoint, we move everything back. This is logically more
632 * complex than a linked list, but easier from a memory management
633 * angle. In any memory error condition, do_list_queue is reset.
634 * Functions check to ensure that do_list_queue is non-NULL before
635 * accessing it.
638 static void reset_do_list_queue(void)
640 SAFE_FREE(do_list_queue);
641 do_list_queue_size = 0;
642 do_list_queue_start = 0;
643 do_list_queue_end = 0;
646 static void init_do_list_queue(void)
648 reset_do_list_queue();
649 do_list_queue_size = 1024;
650 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
651 if (do_list_queue == 0) {
652 d_printf("malloc fail for size %d\n",
653 (int)do_list_queue_size);
654 reset_do_list_queue();
655 } else {
656 memset(do_list_queue, 0, do_list_queue_size);
660 static void adjust_do_list_queue(void)
663 * If the starting point of the queue is more than half way through,
664 * move everything toward the beginning.
667 if (do_list_queue == NULL) {
668 DEBUG(4,("do_list_queue is empty\n"));
669 do_list_queue_start = do_list_queue_end = 0;
670 return;
673 if (do_list_queue_start == do_list_queue_end) {
674 DEBUG(4,("do_list_queue is empty\n"));
675 do_list_queue_start = do_list_queue_end = 0;
676 *do_list_queue = '\0';
677 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
678 DEBUG(4,("sliding do_list_queue backward\n"));
679 memmove(do_list_queue,
680 do_list_queue + do_list_queue_start,
681 do_list_queue_end - do_list_queue_start);
682 do_list_queue_end -= do_list_queue_start;
683 do_list_queue_start = 0;
687 static void add_to_do_list_queue(const char *entry)
689 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
690 while (new_end > do_list_queue_size) {
691 do_list_queue_size *= 2;
692 DEBUG(4,("enlarging do_list_queue to %d\n",
693 (int)do_list_queue_size));
694 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
695 if (! do_list_queue) {
696 d_printf("failure enlarging do_list_queue to %d bytes\n",
697 (int)do_list_queue_size);
698 reset_do_list_queue();
699 } else {
700 memset(do_list_queue + do_list_queue_size / 2,
701 0, do_list_queue_size / 2);
704 if (do_list_queue) {
705 strlcpy_base(do_list_queue + do_list_queue_end,
706 entry, do_list_queue, do_list_queue_size);
707 do_list_queue_end = new_end;
708 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
709 entry, (int)do_list_queue_start, (int)do_list_queue_end));
713 static char *do_list_queue_head(void)
715 return do_list_queue + do_list_queue_start;
718 static void remove_do_list_queue_head(void)
720 if (do_list_queue_end > do_list_queue_start) {
721 do_list_queue_start += strlen(do_list_queue_head()) + 1;
722 adjust_do_list_queue();
723 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
724 (int)do_list_queue_start, (int)do_list_queue_end));
728 static int do_list_queue_empty(void)
730 return (! (do_list_queue && *do_list_queue));
733 /****************************************************************************
734 A helper for do_list.
735 ****************************************************************************/
737 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
738 const char *mask, void *state)
740 struct cli_state *cli_state = (struct cli_state *)state;
741 TALLOC_CTX *ctx = talloc_tos();
742 char *dir = NULL;
743 char *dir_end = NULL;
744 NTSTATUS status = NT_STATUS_OK;
746 /* Work out the directory. */
747 dir = talloc_strdup(ctx, mask);
748 if (!dir) {
749 return NT_STATUS_NO_MEMORY;
751 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
752 *dir_end = '\0';
755 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
756 if (do_list_dirs && do_this_one(f)) {
757 status = do_list_fn(cli_state, f, dir);
758 if (!NT_STATUS_IS_OK(status)) {
759 return status;
762 if (do_list_recurse &&
763 f->name &&
764 !strequal(f->name,".") &&
765 !strequal(f->name,"..")) {
766 char *mask2 = NULL;
767 char *p = NULL;
769 if (!f->name[0]) {
770 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
771 TALLOC_FREE(dir);
772 return NT_STATUS_UNSUCCESSFUL;
775 mask2 = talloc_asprintf(ctx,
776 "%s%s",
777 mntpoint,
778 mask);
779 if (!mask2) {
780 TALLOC_FREE(dir);
781 return NT_STATUS_NO_MEMORY;
783 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
784 if (p) {
785 p[1] = 0;
786 } else {
787 mask2[0] = '\0';
789 mask2 = talloc_asprintf_append(mask2,
790 "%s%s*",
791 f->name,
792 CLI_DIRSEP_STR);
793 if (!mask2) {
794 TALLOC_FREE(dir);
795 return NT_STATUS_NO_MEMORY;
797 add_to_do_list_queue(mask2);
798 TALLOC_FREE(mask2);
800 TALLOC_FREE(dir);
801 return NT_STATUS_OK;
804 if (do_this_one(f)) {
805 status = do_list_fn(cli_state, f, dir);
807 TALLOC_FREE(dir);
808 return status;
811 /****************************************************************************
812 A wrapper around cli_list that adds recursion.
813 ****************************************************************************/
815 NTSTATUS do_list(const char *mask,
816 uint16_t attribute,
817 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
818 const char *dir),
819 bool rec,
820 bool dirs)
822 static int in_do_list = 0;
823 TALLOC_CTX *ctx = talloc_tos();
824 struct cli_state *targetcli = NULL;
825 char *targetpath = NULL;
826 NTSTATUS ret_status = NT_STATUS_OK;
827 NTSTATUS status = NT_STATUS_OK;
829 if (in_do_list && rec) {
830 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
831 exit(1);
834 in_do_list = 1;
836 do_list_recurse = rec;
837 do_list_dirs = dirs;
838 do_list_fn = fn;
840 if (rec) {
841 init_do_list_queue();
842 add_to_do_list_queue(mask);
844 while (!do_list_queue_empty()) {
846 * Need to copy head so that it doesn't become
847 * invalid inside the call to cli_list. This
848 * would happen if the list were expanded
849 * during the call.
850 * Fix from E. Jay Berkenbilt (ejb@ql.org)
852 char *head = talloc_strdup(ctx, do_list_queue_head());
854 if (!head) {
855 return NT_STATUS_NO_MEMORY;
858 /* check for dfs */
860 status = cli_resolve_path(ctx, "", auth_info, cli,
861 head, &targetcli,
862 &targetpath);
863 if (!NT_STATUS_IS_OK(status)) {
864 d_printf("do_list: [%s] %s\n", head,
865 nt_errstr(status));
866 remove_do_list_queue_head();
867 continue;
870 status = cli_list(targetcli, targetpath, attribute,
871 do_list_helper, targetcli);
872 if (!NT_STATUS_IS_OK(status)) {
873 d_printf("%s listing %s\n",
874 nt_errstr(status), targetpath);
875 ret_status = status;
877 remove_do_list_queue_head();
878 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
879 char *next_file = do_list_queue_head();
880 char *save_ch = 0;
881 if ((strlen(next_file) >= 2) &&
882 (next_file[strlen(next_file) - 1] == '*') &&
883 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
884 save_ch = next_file +
885 strlen(next_file) - 2;
886 *save_ch = '\0';
887 if (showacls) {
888 /* cwd is only used if showacls is on */
889 client_set_cwd(next_file);
892 if (!showacls) /* don't disturbe the showacls output */
893 d_printf("\n%s\n",next_file);
894 if (save_ch) {
895 *save_ch = CLI_DIRSEP_CHAR;
898 TALLOC_FREE(head);
899 TALLOC_FREE(targetpath);
901 } else {
902 /* check for dfs */
903 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
904 &targetcli, &targetpath);
905 if (NT_STATUS_IS_OK(status)) {
906 status = cli_list(targetcli, targetpath, attribute,
907 do_list_helper, targetcli);
908 if (!NT_STATUS_IS_OK(status)) {
909 d_printf("%s listing %s\n",
910 nt_errstr(status), targetpath);
911 ret_status = status;
913 TALLOC_FREE(targetpath);
914 } else {
915 d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
916 ret_status = status;
920 in_do_list = 0;
921 reset_do_list_queue();
922 return ret_status;
925 /****************************************************************************
926 Get a directory listing.
927 ****************************************************************************/
929 static int cmd_dir(void)
931 TALLOC_CTX *ctx = talloc_tos();
932 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
933 char *mask = NULL;
934 char *buf = NULL;
935 int rc = 1;
936 NTSTATUS status;
938 dir_total = 0;
939 mask = talloc_strdup(ctx, client_get_cur_dir());
940 if (!mask) {
941 return 1;
944 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
945 normalize_name(buf);
946 if (*buf == CLI_DIRSEP_CHAR) {
947 mask = talloc_strdup(ctx, buf);
948 } else {
949 mask = talloc_asprintf_append(mask, "%s", buf);
951 } else {
952 mask = talloc_asprintf_append(mask, "*");
954 if (!mask) {
955 return 1;
958 if (showacls) {
959 /* cwd is only used if showacls is on */
960 client_set_cwd(client_get_cur_dir());
963 status = do_list(mask, attribute, display_finfo, recurse, true);
964 if (!NT_STATUS_IS_OK(status)) {
965 return 1;
968 rc = do_dskattr();
970 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
972 return rc;
975 /****************************************************************************
976 Get a directory listing.
977 ****************************************************************************/
979 static int cmd_du(void)
981 TALLOC_CTX *ctx = talloc_tos();
982 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
983 char *mask = NULL;
984 char *buf = NULL;
985 NTSTATUS status;
986 int rc = 1;
988 dir_total = 0;
989 mask = talloc_strdup(ctx, client_get_cur_dir());
990 if (!mask) {
991 return 1;
993 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
994 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
995 if (!mask) {
996 return 1;
1000 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1001 normalize_name(buf);
1002 if (*buf == CLI_DIRSEP_CHAR) {
1003 mask = talloc_strdup(ctx, buf);
1004 } else {
1005 mask = talloc_asprintf_append(mask, "%s", buf);
1007 } else {
1008 mask = talloc_strdup(ctx, "*");
1011 status = do_list(mask, attribute, do_du, recurse, true);
1012 if (!NT_STATUS_IS_OK(status)) {
1013 return 1;
1016 rc = do_dskattr();
1018 d_printf("Total number of bytes: %.0f\n", dir_total);
1020 return rc;
1023 static int cmd_echo(void)
1025 TALLOC_CTX *ctx = talloc_tos();
1026 char *num;
1027 char *data;
1028 NTSTATUS status;
1030 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1031 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1032 d_printf("echo <num> <data>\n");
1033 return 1;
1036 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1038 if (!NT_STATUS_IS_OK(status)) {
1039 d_printf("echo failed: %s\n", nt_errstr(status));
1040 return 1;
1043 return 0;
1046 /****************************************************************************
1047 Get a file from rname to lname
1048 ****************************************************************************/
1050 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1052 int *pfd = (int *)priv;
1053 if (writefile(*pfd, buf, n) == -1) {
1054 return map_nt_error_from_unix(errno);
1056 return NT_STATUS_OK;
1059 static int do_get(const char *rname, const char *lname_in, bool reget)
1061 TALLOC_CTX *ctx = talloc_tos();
1062 int handle = 0;
1063 uint16_t fnum;
1064 bool newhandle = false;
1065 struct timespec tp_start;
1066 uint16_t attr;
1067 off_t size;
1068 off_t start = 0;
1069 off_t nread = 0;
1070 int rc = 0;
1071 struct cli_state *targetcli = NULL;
1072 char *targetname = NULL;
1073 char *lname = NULL;
1074 NTSTATUS status;
1076 lname = talloc_strdup(ctx, lname_in);
1077 if (!lname) {
1078 return 1;
1081 if (lowercase) {
1082 if (!strlower_m(lname)) {
1083 d_printf("strlower_m %s failed\n", lname);
1084 return 1;
1088 status = cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli,
1089 &targetname);
1090 if (!NT_STATUS_IS_OK(status)) {
1091 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1092 return 1;
1095 clock_gettime_mono(&tp_start);
1097 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1098 if (!NT_STATUS_IS_OK(status)) {
1099 d_printf("%s opening remote file %s\n", nt_errstr(status),
1100 rname);
1101 return 1;
1104 if(!strcmp(lname,"-")) {
1105 handle = fileno(stdout);
1106 } else {
1107 if (reget) {
1108 handle = open(lname, O_WRONLY|O_CREAT, 0644);
1109 if (handle >= 0) {
1110 start = lseek(handle, 0, SEEK_END);
1111 if (start == -1) {
1112 d_printf("Error seeking local file\n");
1113 return 1;
1116 } else {
1117 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1119 newhandle = true;
1121 if (handle < 0) {
1122 d_printf("Error opening local file %s\n",lname);
1123 return 1;
1127 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1128 NULL, NULL, NULL);
1129 if (!NT_STATUS_IS_OK(status)) {
1130 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1131 NULL);
1132 if(!NT_STATUS_IS_OK(status)) {
1133 d_printf("getattrib: %s\n", nt_errstr(status));
1134 return 1;
1138 DEBUG(1,("getting file %s of size %.0f as %s ",
1139 rname, (double)size, lname));
1141 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1142 writefile_sink, (void *)&handle, &nread);
1143 if (!NT_STATUS_IS_OK(status)) {
1144 d_fprintf(stderr, "parallel_read returned %s\n",
1145 nt_errstr(status));
1146 cli_close(targetcli, fnum);
1147 return 1;
1150 status = cli_close(targetcli, fnum);
1151 if (!NT_STATUS_IS_OK(status)) {
1152 d_printf("Error %s closing remote file\n", nt_errstr(status));
1153 rc = 1;
1156 if (newhandle) {
1157 close(handle);
1160 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1161 cli_setatr(cli, rname, attr & ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE, 0);
1165 struct timespec tp_end;
1166 int this_time;
1168 clock_gettime_mono(&tp_end);
1169 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1170 get_total_time_ms += this_time;
1171 get_total_size += nread;
1173 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1174 nread / (1.024*this_time + 1.0e-4),
1175 get_total_size / (1.024*get_total_time_ms)));
1178 TALLOC_FREE(targetname);
1179 return rc;
1182 /****************************************************************************
1183 Get a file.
1184 ****************************************************************************/
1186 static int cmd_get(void)
1188 TALLOC_CTX *ctx = talloc_tos();
1189 char *lname = NULL;
1190 char *rname = NULL;
1191 char *fname = NULL;
1193 rname = talloc_strdup(ctx, client_get_cur_dir());
1194 if (!rname) {
1195 return 1;
1198 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1199 d_printf("get <filename> [localname]\n");
1200 return 1;
1202 rname = talloc_asprintf_append(rname, "%s", fname);
1203 if (!rname) {
1204 return 1;
1206 rname = clean_name(ctx, rname);
1207 if (!rname) {
1208 return 1;
1211 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1212 if (!lname) {
1213 lname = fname;
1216 return do_get(rname, lname, false);
1219 /****************************************************************************
1220 Do an mget operation on one file.
1221 ****************************************************************************/
1223 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1224 const char *dir)
1226 TALLOC_CTX *ctx = talloc_tos();
1227 NTSTATUS status = NT_STATUS_OK;
1228 char *rname = NULL;
1229 char *quest = NULL;
1230 char *saved_curdir = NULL;
1231 char *mget_mask = NULL;
1232 char *new_cd = NULL;
1234 if (!finfo->name) {
1235 return NT_STATUS_OK;
1238 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1239 return NT_STATUS_OK;
1241 if (abort_mget) {
1242 d_printf("mget aborted\n");
1243 return NT_STATUS_UNSUCCESSFUL;
1246 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1247 if (asprintf(&quest,
1248 "Get directory %s? ",finfo->name) < 0) {
1249 return NT_STATUS_NO_MEMORY;
1251 } else {
1252 if (asprintf(&quest,
1253 "Get file %s? ",finfo->name) < 0) {
1254 return NT_STATUS_NO_MEMORY;
1258 if (prompt && !yesno(quest)) {
1259 SAFE_FREE(quest);
1260 return NT_STATUS_OK;
1262 SAFE_FREE(quest);
1264 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1265 rname = talloc_asprintf(ctx,
1266 "%s%s",
1267 client_get_cur_dir(),
1268 finfo->name);
1269 if (!rname) {
1270 return NT_STATUS_NO_MEMORY;
1272 do_get(rname, finfo->name, false);
1273 TALLOC_FREE(rname);
1274 return NT_STATUS_OK;
1277 /* handle directories */
1278 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1279 if (!saved_curdir) {
1280 return NT_STATUS_NO_MEMORY;
1283 new_cd = talloc_asprintf(ctx,
1284 "%s%s%s",
1285 client_get_cur_dir(),
1286 finfo->name,
1287 CLI_DIRSEP_STR);
1288 if (!new_cd) {
1289 return NT_STATUS_NO_MEMORY;
1291 client_set_cur_dir(new_cd);
1293 string_replace(finfo->name,'\\','/');
1294 if (lowercase) {
1295 if (!strlower_m(finfo->name)) {
1296 return NT_STATUS_INVALID_PARAMETER;
1300 if (!directory_exist(finfo->name) &&
1301 mkdir(finfo->name,0777) != 0) {
1302 d_printf("failed to create directory %s\n",finfo->name);
1303 client_set_cur_dir(saved_curdir);
1304 return map_nt_error_from_unix(errno);
1307 if (chdir(finfo->name) != 0) {
1308 d_printf("failed to chdir to directory %s\n",finfo->name);
1309 client_set_cur_dir(saved_curdir);
1310 return map_nt_error_from_unix(errno);
1313 mget_mask = talloc_asprintf(ctx,
1314 "%s*",
1315 client_get_cur_dir());
1317 if (!mget_mask) {
1318 return NT_STATUS_NO_MEMORY;
1321 status = do_list(mget_mask,
1322 (FILE_ATTRIBUTE_SYSTEM
1323 | FILE_ATTRIBUTE_HIDDEN
1324 | FILE_ATTRIBUTE_DIRECTORY),
1325 do_mget, false, true);
1326 if (!NT_STATUS_IS_OK(status)
1327 && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
1329 * Ignore access denied errors to ensure all permitted files are
1330 * pulled down.
1332 return status;
1335 if (chdir("..") == -1) {
1336 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1337 strerror(errno) );
1338 return map_nt_error_from_unix(errno);
1340 client_set_cur_dir(saved_curdir);
1341 TALLOC_FREE(mget_mask);
1342 TALLOC_FREE(saved_curdir);
1343 TALLOC_FREE(new_cd);
1344 return NT_STATUS_OK;
1347 /****************************************************************************
1348 View the file using the pager.
1349 ****************************************************************************/
1351 static int cmd_more(void)
1353 TALLOC_CTX *ctx = talloc_tos();
1354 char *rname = NULL;
1355 char *fname = NULL;
1356 char *lname = NULL;
1357 char *pager_cmd = NULL;
1358 const char *pager;
1359 int fd;
1360 int rc = 0;
1361 mode_t mask;
1363 rname = talloc_strdup(ctx, client_get_cur_dir());
1364 if (!rname) {
1365 return 1;
1368 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1369 if (!lname) {
1370 return 1;
1372 mask = umask(S_IRWXO | S_IRWXG);
1373 fd = mkstemp(lname);
1374 umask(mask);
1375 if (fd == -1) {
1376 d_printf("failed to create temporary file for more\n");
1377 return 1;
1379 close(fd);
1381 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1382 d_printf("more <filename>\n");
1383 unlink(lname);
1384 return 1;
1386 rname = talloc_asprintf_append(rname, "%s", fname);
1387 if (!rname) {
1388 return 1;
1390 rname = clean_name(ctx,rname);
1391 if (!rname) {
1392 return 1;
1395 rc = do_get(rname, lname, false);
1397 pager=getenv("PAGER");
1399 pager_cmd = talloc_asprintf(ctx,
1400 "%s %s",
1401 (pager? pager:PAGER),
1402 lname);
1403 if (!pager_cmd) {
1404 return 1;
1406 if (system(pager_cmd) == -1) {
1407 d_printf("system command '%s' returned -1\n",
1408 pager_cmd);
1410 unlink(lname);
1412 return rc;
1415 /****************************************************************************
1416 Do a mget command.
1417 ****************************************************************************/
1419 static int cmd_mget(void)
1421 TALLOC_CTX *ctx = talloc_tos();
1422 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1423 char *mget_mask = NULL;
1424 char *buf = NULL;
1425 NTSTATUS status = NT_STATUS_OK;
1427 if (recurse) {
1428 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1431 abort_mget = false;
1433 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1435 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1436 if (!mget_mask) {
1437 return 1;
1439 if (*buf == CLI_DIRSEP_CHAR) {
1440 mget_mask = talloc_strdup(ctx, buf);
1441 } else {
1442 mget_mask = talloc_asprintf_append(mget_mask,
1443 "%s", buf);
1445 if (!mget_mask) {
1446 return 1;
1448 status = do_list(mget_mask, attribute, do_mget, false, true);
1449 if (!NT_STATUS_IS_OK(status)) {
1450 return 1;
1454 if (mget_mask == NULL) {
1455 d_printf("nothing to mget\n");
1456 return 0;
1459 if (!*mget_mask) {
1460 mget_mask = talloc_asprintf(ctx,
1461 "%s*",
1462 client_get_cur_dir());
1463 if (!mget_mask) {
1464 return 1;
1466 status = do_list(mget_mask, attribute, do_mget, false, true);
1467 if (!NT_STATUS_IS_OK(status)) {
1468 return 1;
1472 return 0;
1475 /****************************************************************************
1476 Make a directory of name "name".
1477 ****************************************************************************/
1479 static bool do_mkdir(const char *name)
1481 TALLOC_CTX *ctx = talloc_tos();
1482 struct cli_state *targetcli;
1483 char *targetname = NULL;
1484 NTSTATUS status;
1486 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
1487 &targetname);
1488 if (!NT_STATUS_IS_OK(status)) {
1489 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1490 return false;
1493 status = cli_mkdir(targetcli, targetname);
1494 if (!NT_STATUS_IS_OK(status)) {
1495 d_printf("%s making remote directory %s\n",
1496 nt_errstr(status),name);
1497 return false;
1500 return true;
1503 /****************************************************************************
1504 Show 8.3 name of a file.
1505 ****************************************************************************/
1507 static bool do_altname(const char *name)
1509 fstring altname;
1510 NTSTATUS status;
1512 status = cli_qpathinfo_alt_name(cli, name, altname);
1513 if (!NT_STATUS_IS_OK(status)) {
1514 d_printf("%s getting alt name for %s\n",
1515 nt_errstr(status),name);
1516 return false;
1518 d_printf("%s\n", altname);
1520 return true;
1523 /****************************************************************************
1524 Exit client.
1525 ****************************************************************************/
1527 static int cmd_quit(void)
1529 cli_shutdown(cli);
1530 exit(0);
1531 /* NOTREACHED */
1532 return 0;
1535 /****************************************************************************
1536 Make a directory.
1537 ****************************************************************************/
1539 static int cmd_mkdir(void)
1541 TALLOC_CTX *ctx = talloc_tos();
1542 char *mask = NULL;
1543 char *buf = NULL;
1544 NTSTATUS status;
1546 mask = talloc_strdup(ctx, client_get_cur_dir());
1547 if (!mask) {
1548 return 1;
1551 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1552 if (!recurse) {
1553 d_printf("mkdir <dirname>\n");
1555 return 1;
1557 mask = talloc_asprintf_append(mask, "%s", buf);
1558 if (!mask) {
1559 return 1;
1562 if (recurse) {
1563 char *ddir = NULL;
1564 char *ddir2 = NULL;
1565 struct cli_state *targetcli;
1566 char *targetname = NULL;
1567 char *p = NULL;
1568 char *saveptr;
1570 ddir2 = talloc_strdup(ctx, "");
1571 if (!ddir2) {
1572 return 1;
1575 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
1576 &targetcli, &targetname);
1577 if (!NT_STATUS_IS_OK(status)) {
1578 return 1;
1581 ddir = talloc_strdup(ctx, targetname);
1582 if (!ddir) {
1583 return 1;
1585 trim_char(ddir,'.','\0');
1586 p = strtok_r(ddir, "/\\", &saveptr);
1587 while (p) {
1588 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1589 if (!ddir2) {
1590 return 1;
1592 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1593 do_mkdir(ddir2);
1595 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1596 if (!ddir2) {
1597 return 1;
1599 p = strtok_r(NULL, "/\\", &saveptr);
1601 } else {
1602 do_mkdir(mask);
1605 return 0;
1608 /****************************************************************************
1609 Show alt name.
1610 ****************************************************************************/
1612 static int cmd_altname(void)
1614 TALLOC_CTX *ctx = talloc_tos();
1615 char *name;
1616 char *buf;
1618 name = talloc_strdup(ctx, client_get_cur_dir());
1619 if (!name) {
1620 return 1;
1623 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1624 d_printf("altname <file>\n");
1625 return 1;
1627 name = talloc_asprintf_append(name, "%s", buf);
1628 if (!name) {
1629 return 1;
1631 do_altname(name);
1632 return 0;
1635 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1637 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1638 int i = 0;
1640 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1641 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1642 attrs[i++] = 'E';
1644 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1645 attrs[i++] = 'N';
1647 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1648 attrs[i++] = 'O';
1650 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1651 attrs[i++] = 'C';
1653 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1654 attrs[i++] = 'r';
1656 if (mode & FILE_ATTRIBUTE_SPARSE) {
1657 attrs[i++] = 's';
1659 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1660 attrs[i++] = 'T';
1662 if (mode & FILE_ATTRIBUTE_NORMAL) {
1663 attrs[i++] = 'N';
1665 if (mode & FILE_ATTRIBUTE_READONLY) {
1666 attrs[i++] = 'R';
1668 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1669 attrs[i++] = 'H';
1671 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1672 attrs[i++] = 'S';
1674 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1675 attrs[i++] = 'D';
1677 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1678 attrs[i++] = 'A';
1681 return attrs;
1684 /****************************************************************************
1685 Show all info we can get
1686 ****************************************************************************/
1688 static int do_allinfo(const char *name)
1690 fstring altname;
1691 struct timespec b_time, a_time, m_time, c_time;
1692 off_t size;
1693 uint16_t mode;
1694 NTTIME tmp;
1695 uint16_t fnum;
1696 unsigned int num_streams;
1697 struct stream_struct *streams;
1698 int num_snapshots;
1699 char **snapshots;
1700 unsigned int i;
1701 NTSTATUS status;
1703 status = cli_qpathinfo_alt_name(cli, name, altname);
1704 if (!NT_STATUS_IS_OK(status)) {
1705 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1706 name);
1708 * Ignore not supported or not implemented, it does not
1709 * hurt if we can't list alternate names.
1711 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED) ||
1712 NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) {
1713 altname[0] = '\0';
1714 } else {
1715 return false;
1718 d_printf("altname: %s\n", altname);
1720 status = cli_qpathinfo3(cli, name, &b_time, &a_time, &m_time, &c_time,
1721 &size, &mode, NULL);
1722 if (!NT_STATUS_IS_OK(status)) {
1723 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1724 name);
1725 return false;
1728 tmp = unix_timespec_to_nt_time(b_time);
1729 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1731 tmp = unix_timespec_to_nt_time(a_time);
1732 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1734 tmp = unix_timespec_to_nt_time(m_time);
1735 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1737 tmp = unix_timespec_to_nt_time(c_time);
1738 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1740 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1742 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1743 &streams);
1744 if (!NT_STATUS_IS_OK(status)) {
1745 d_printf("%s getting streams for %s\n", nt_errstr(status),
1746 name);
1747 return false;
1750 for (i=0; i<num_streams; i++) {
1751 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1752 (unsigned long long)streams[i].size);
1755 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1756 char *subst, *print;
1757 uint32_t flags;
1759 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1760 &flags);
1761 if (!NT_STATUS_IS_OK(status)) {
1762 d_fprintf(stderr, "cli_readlink returned %s\n",
1763 nt_errstr(status));
1764 } else {
1765 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1766 subst, print, flags);
1767 TALLOC_FREE(subst);
1768 TALLOC_FREE(print);
1772 status = cli_ntcreate(cli, name, 0,
1773 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1774 SEC_STD_SYNCHRONIZE, 0,
1775 FILE_SHARE_READ|FILE_SHARE_WRITE
1776 |FILE_SHARE_DELETE,
1777 FILE_OPEN, 0x0, 0x0, &fnum, NULL);
1778 if (!NT_STATUS_IS_OK(status)) {
1780 * Ignore failure, it does not hurt if we can't list
1781 * snapshots
1783 return 0;
1785 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1786 true, &snapshots, &num_snapshots);
1787 if (!NT_STATUS_IS_OK(status)) {
1788 cli_close(cli, fnum);
1789 return 0;
1792 for (i=0; i<num_snapshots; i++) {
1793 char *snap_name;
1795 d_printf("%s\n", snapshots[i]);
1796 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1797 snapshots[i], name);
1798 status = cli_qpathinfo3(cli, snap_name, &b_time, &a_time,
1799 &m_time, &c_time, &size,
1800 NULL, NULL);
1801 if (!NT_STATUS_IS_OK(status)) {
1802 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1803 snap_name, nt_errstr(status));
1804 TALLOC_FREE(snap_name);
1805 continue;
1807 tmp = unix_timespec_to_nt_time(b_time);
1808 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1809 tmp = unix_timespec_to_nt_time(a_time);
1810 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1811 tmp =unix_timespec_to_nt_time(m_time);
1812 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1813 tmp = unix_timespec_to_nt_time(c_time);
1814 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1815 d_printf("size: %d\n", (int)size);
1818 TALLOC_FREE(snapshots);
1819 cli_close(cli, fnum);
1821 return 0;
1824 /****************************************************************************
1825 Show all info we can get
1826 ****************************************************************************/
1828 static int cmd_allinfo(void)
1830 TALLOC_CTX *ctx = talloc_tos();
1831 char *name;
1832 char *buf;
1834 name = talloc_strdup(ctx, client_get_cur_dir());
1835 if (!name) {
1836 return 1;
1839 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1840 d_printf("allinfo <file>\n");
1841 return 1;
1843 name = talloc_asprintf_append(name, "%s", buf);
1844 if (!name) {
1845 return 1;
1848 do_allinfo(name);
1850 return 0;
1853 /****************************************************************************
1854 Put a single file.
1855 ****************************************************************************/
1857 static int do_put(const char *rname, const char *lname, bool reput)
1859 TALLOC_CTX *ctx = talloc_tos();
1860 uint16_t fnum;
1861 XFILE *f;
1862 off_t start = 0;
1863 int rc = 0;
1864 struct timespec tp_start;
1865 struct cli_state *targetcli;
1866 char *targetname = NULL;
1867 struct push_state state;
1868 NTSTATUS status;
1870 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1871 &targetcli, &targetname);
1872 if (!NT_STATUS_IS_OK(status)) {
1873 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1874 return 1;
1877 clock_gettime_mono(&tp_start);
1879 if (reput) {
1880 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1881 if (NT_STATUS_IS_OK(status)) {
1882 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1883 targetcli, fnum, NULL,
1884 &start, NULL, NULL,
1885 NULL, NULL, NULL)) &&
1886 !NT_STATUS_IS_OK(status = cli_getattrE(
1887 targetcli, fnum, NULL,
1888 &start, NULL, NULL,
1889 NULL))) {
1890 d_printf("getattrib: %s\n", nt_errstr(status));
1891 return 1;
1894 } else {
1895 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1898 if (!NT_STATUS_IS_OK(status)) {
1899 d_printf("%s opening remote file %s\n", nt_errstr(status),
1900 rname);
1901 return 1;
1904 /* allow files to be piped into smbclient
1905 jdblair 24.jun.98
1907 Note that in this case this function will exit(0) rather
1908 than returning. */
1909 if (!strcmp(lname, "-")) {
1910 f = x_stdin;
1911 /* size of file is not known */
1912 } else {
1913 f = x_fopen(lname,O_RDONLY, 0);
1914 if (f && reput) {
1915 if (x_tseek(f, start, SEEK_SET) == -1) {
1916 d_printf("Error seeking local file\n");
1917 x_fclose(f);
1918 return 1;
1923 if (!f) {
1924 d_printf("Error opening local file %s\n",lname);
1925 return 1;
1928 DEBUG(1,("putting file %s as %s ",lname,
1929 rname));
1931 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1933 state.f = f;
1934 state.nread = 0;
1936 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1937 &state);
1938 if (!NT_STATUS_IS_OK(status)) {
1939 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1940 rc = 1;
1943 status = cli_close(targetcli, fnum);
1944 if (!NT_STATUS_IS_OK(status)) {
1945 d_printf("%s closing remote file %s\n", nt_errstr(status),
1946 rname);
1947 if (f != x_stdin) {
1948 x_fclose(f);
1950 return 1;
1953 if (f != x_stdin) {
1954 x_fclose(f);
1958 struct timespec tp_end;
1959 int this_time;
1961 clock_gettime_mono(&tp_end);
1962 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1963 put_total_time_ms += this_time;
1964 put_total_size += state.nread;
1966 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1967 state.nread / (1.024*this_time + 1.0e-4),
1968 put_total_size / (1.024*put_total_time_ms)));
1971 if (f == x_stdin) {
1972 cli_shutdown(cli);
1973 exit(rc);
1976 return rc;
1979 /****************************************************************************
1980 Put a file.
1981 ****************************************************************************/
1983 static int cmd_put(void)
1985 TALLOC_CTX *ctx = talloc_tos();
1986 char *lname;
1987 char *rname;
1988 char *buf;
1990 rname = talloc_strdup(ctx, client_get_cur_dir());
1991 if (!rname) {
1992 return 1;
1995 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1996 d_printf("put <filename>\n");
1997 return 1;
2000 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2001 rname = talloc_asprintf_append(rname, "%s", buf);
2002 } else {
2003 rname = talloc_asprintf_append(rname, "%s", lname);
2005 if (!rname) {
2006 return 1;
2009 rname = clean_name(ctx, rname);
2010 if (!rname) {
2011 return 1;
2015 SMB_STRUCT_STAT st;
2016 /* allow '-' to represent stdin
2017 jdblair, 24.jun.98 */
2018 if (!file_exist_stat(lname, &st, false) &&
2019 (strcmp(lname,"-"))) {
2020 d_printf("%s does not exist\n",lname);
2021 return 1;
2025 return do_put(rname, lname, false);
2028 /*************************************
2029 File list structure.
2030 *************************************/
2032 static struct file_list {
2033 struct file_list *prev, *next;
2034 char *file_path;
2035 bool isdir;
2036 } *file_list;
2038 /****************************************************************************
2039 Free a file_list structure.
2040 ****************************************************************************/
2042 static void free_file_list (struct file_list *l_head)
2044 struct file_list *list, *next;
2046 for (list = l_head; list; list = next) {
2047 next = list->next;
2048 DLIST_REMOVE(l_head, list);
2049 SAFE_FREE(list->file_path);
2050 SAFE_FREE(list);
2054 /****************************************************************************
2055 Seek in a directory/file list until you get something that doesn't start with
2056 the specified name.
2057 ****************************************************************************/
2059 static bool seek_list(struct file_list *list, char *name)
2061 while (list) {
2062 trim_string(list->file_path,"./","\n");
2063 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2064 return true;
2066 list = list->next;
2069 return false;
2072 /****************************************************************************
2073 Set the file selection mask.
2074 ****************************************************************************/
2076 static int cmd_select(void)
2078 TALLOC_CTX *ctx = talloc_tos();
2079 char *new_fs = NULL;
2080 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2082 if (new_fs) {
2083 client_set_fileselection(new_fs);
2084 } else {
2085 client_set_fileselection("");
2087 return 0;
2090 /****************************************************************************
2091 Recursive file matching function act as find
2092 match must be always set to true when calling this function
2093 ****************************************************************************/
2095 static int file_find(struct file_list **list, const char *directory,
2096 const char *expression, bool match)
2098 DIR *dir;
2099 struct file_list *entry;
2100 struct stat statbuf;
2101 int ret;
2102 char *path;
2103 bool isdir;
2104 const char *dname;
2106 dir = opendir(directory);
2107 if (!dir)
2108 return -1;
2110 while ((dname = readdirname(dir))) {
2111 if (!strcmp("..", dname))
2112 continue;
2113 if (!strcmp(".", dname))
2114 continue;
2116 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2117 continue;
2120 isdir = false;
2121 if (!match || !gen_fnmatch(expression, dname)) {
2122 if (recurse) {
2123 ret = stat(path, &statbuf);
2124 if (ret == 0) {
2125 if (S_ISDIR(statbuf.st_mode)) {
2126 isdir = true;
2127 ret = file_find(list, path, expression, false);
2129 } else {
2130 d_printf("file_find: cannot stat file %s\n", path);
2133 if (ret == -1) {
2134 SAFE_FREE(path);
2135 closedir(dir);
2136 return -1;
2139 entry = SMB_MALLOC_P(struct file_list);
2140 if (!entry) {
2141 d_printf("Out of memory in file_find\n");
2142 closedir(dir);
2143 return -1;
2145 entry->file_path = path;
2146 entry->isdir = isdir;
2147 DLIST_ADD(*list, entry);
2148 } else {
2149 SAFE_FREE(path);
2153 closedir(dir);
2154 return 0;
2157 /****************************************************************************
2158 mput some files.
2159 ****************************************************************************/
2161 static int cmd_mput(void)
2163 TALLOC_CTX *ctx = talloc_tos();
2164 char *p = NULL;
2166 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2167 int ret;
2168 struct file_list *temp_list;
2169 char *quest, *lname, *rname;
2171 file_list = NULL;
2173 ret = file_find(&file_list, ".", p, true);
2174 if (ret) {
2175 free_file_list(file_list);
2176 continue;
2179 quest = NULL;
2180 lname = NULL;
2181 rname = NULL;
2183 for (temp_list = file_list; temp_list;
2184 temp_list = temp_list->next) {
2186 SAFE_FREE(lname);
2187 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2188 continue;
2190 trim_string(lname, "./", "/");
2192 /* check if it's a directory */
2193 if (temp_list->isdir) {
2194 /* if (!recurse) continue; */
2196 SAFE_FREE(quest);
2197 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2198 break;
2200 if (prompt && !yesno(quest)) { /* No */
2201 /* Skip the directory */
2202 lname[strlen(lname)-1] = '/';
2203 if (!seek_list(temp_list, lname))
2204 break;
2205 } else { /* Yes */
2206 SAFE_FREE(rname);
2207 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2208 break;
2210 normalize_name(rname);
2211 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2212 !do_mkdir(rname)) {
2213 DEBUG (0, ("Unable to make dir, skipping..."));
2214 /* Skip the directory */
2215 lname[strlen(lname)-1] = '/';
2216 if (!seek_list(temp_list, lname)) {
2217 break;
2221 continue;
2222 } else {
2223 SAFE_FREE(quest);
2224 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2225 break;
2227 if (prompt && !yesno(quest)) {
2228 /* No */
2229 continue;
2232 /* Yes */
2233 SAFE_FREE(rname);
2234 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2235 break;
2239 normalize_name(rname);
2241 do_put(rname, lname, false);
2243 free_file_list(file_list);
2244 SAFE_FREE(quest);
2245 SAFE_FREE(lname);
2246 SAFE_FREE(rname);
2249 return 0;
2252 /****************************************************************************
2253 Cancel a print job.
2254 ****************************************************************************/
2256 static int do_cancel(int job)
2258 if (cli_printjob_del(cli, job)) {
2259 d_printf("Job %d cancelled\n",job);
2260 return 0;
2261 } else {
2262 NTSTATUS status = cli_nt_error(cli);
2263 d_printf("Error cancelling job %d : %s\n",
2264 job, nt_errstr(status));
2265 return 1;
2269 /****************************************************************************
2270 Cancel a print job.
2271 ****************************************************************************/
2273 static int cmd_cancel(void)
2275 TALLOC_CTX *ctx = talloc_tos();
2276 char *buf = NULL;
2277 int job;
2279 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2280 d_printf("cancel <jobid> ...\n");
2281 return 1;
2283 do {
2284 job = atoi(buf);
2285 do_cancel(job);
2286 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2288 return 0;
2291 /****************************************************************************
2292 Print a file.
2293 ****************************************************************************/
2295 static int cmd_print(void)
2297 TALLOC_CTX *ctx = talloc_tos();
2298 char *lname = NULL;
2299 char *rname = NULL;
2300 char *p = NULL;
2302 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2303 d_printf("print <filename>\n");
2304 return 1;
2307 rname = talloc_strdup(ctx, lname);
2308 if (!rname) {
2309 return 1;
2311 p = strrchr_m(rname,'/');
2312 if (p) {
2313 rname = talloc_asprintf(ctx,
2314 "%s-%d",
2315 p+1,
2316 (int)getpid());
2318 if (strequal(lname,"-")) {
2319 rname = talloc_asprintf(ctx,
2320 "stdin-%d",
2321 (int)getpid());
2323 if (!rname) {
2324 return 1;
2327 return do_put(rname, lname, false);
2330 /****************************************************************************
2331 Show a print queue entry.
2332 ****************************************************************************/
2334 static void queue_fn(struct print_job_info *p)
2336 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2339 /****************************************************************************
2340 Show a print queue.
2341 ****************************************************************************/
2343 static int cmd_queue(void)
2345 cli_print_queue(cli, queue_fn);
2346 return 0;
2349 /****************************************************************************
2350 Delete some files.
2351 ****************************************************************************/
2353 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2354 const char *dir)
2356 TALLOC_CTX *ctx = talloc_tos();
2357 char *mask = NULL;
2358 NTSTATUS status;
2360 mask = talloc_asprintf(ctx,
2361 "%s%c%s",
2362 dir,
2363 CLI_DIRSEP_CHAR,
2364 finfo->name);
2365 if (!mask) {
2366 return NT_STATUS_NO_MEMORY;
2369 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2370 TALLOC_FREE(mask);
2371 return NT_STATUS_OK;
2374 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2375 if (!NT_STATUS_IS_OK(status)) {
2376 d_printf("%s deleting remote file %s\n",
2377 nt_errstr(status), mask);
2379 TALLOC_FREE(mask);
2380 return status;
2383 /****************************************************************************
2384 Delete some files.
2385 ****************************************************************************/
2387 static int cmd_del(void)
2389 TALLOC_CTX *ctx = talloc_tos();
2390 char *mask = NULL;
2391 char *buf = NULL;
2392 NTSTATUS status = NT_STATUS_OK;
2393 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2395 if (recurse) {
2396 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2399 mask = talloc_strdup(ctx, client_get_cur_dir());
2400 if (!mask) {
2401 return 1;
2403 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2404 d_printf("del <filename>\n");
2405 return 1;
2407 mask = talloc_asprintf_append(mask, "%s", buf);
2408 if (!mask) {
2409 return 1;
2412 status = do_list(mask,attribute,do_del,false,false);
2413 if (!NT_STATUS_IS_OK(status)) {
2414 return 1;
2416 return 0;
2419 /****************************************************************************
2420 Wildcard delete some files.
2421 ****************************************************************************/
2423 static int cmd_wdel(void)
2425 TALLOC_CTX *ctx = talloc_tos();
2426 char *mask = NULL;
2427 char *buf = NULL;
2428 uint16_t attribute;
2429 struct cli_state *targetcli;
2430 char *targetname = NULL;
2431 NTSTATUS status;
2433 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2434 d_printf("wdel 0x<attrib> <wcard>\n");
2435 return 1;
2438 attribute = (uint16_t)strtol(buf, (char **)NULL, 16);
2440 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2441 d_printf("wdel 0x<attrib> <wcard>\n");
2442 return 1;
2445 mask = talloc_asprintf(ctx, "%s%s",
2446 client_get_cur_dir(),
2447 buf);
2448 if (!mask) {
2449 return 1;
2452 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2453 &targetname);
2454 if (!NT_STATUS_IS_OK(status)) {
2455 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2456 return 1;
2459 status = cli_unlink(targetcli, targetname, attribute);
2460 if (!NT_STATUS_IS_OK(status)) {
2461 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2462 targetname);
2464 return 0;
2467 /****************************************************************************
2468 ****************************************************************************/
2470 static int cmd_open(void)
2472 TALLOC_CTX *ctx = talloc_tos();
2473 char *mask = NULL;
2474 char *buf = NULL;
2475 char *targetname = NULL;
2476 struct cli_state *targetcli;
2477 uint16_t fnum = (uint16_t)-1;
2478 NTSTATUS status;
2480 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2481 d_printf("open <filename>\n");
2482 return 1;
2484 mask = talloc_asprintf(ctx,
2485 "%s%s",
2486 client_get_cur_dir(),
2487 buf);
2488 if (!mask) {
2489 return 1;
2492 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2493 &targetname);
2494 if (!NT_STATUS_IS_OK(status)) {
2495 d_printf("open %s: %s\n", mask, nt_errstr(status));
2496 return 1;
2499 status = cli_ntcreate(targetcli, targetname, 0,
2500 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2501 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2502 0x0, 0x0, &fnum, NULL);
2503 if (!NT_STATUS_IS_OK(status)) {
2504 status = cli_ntcreate(targetcli, targetname, 0,
2505 FILE_READ_DATA, 0,
2506 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2507 0x0, 0x0, &fnum, NULL);
2508 if (NT_STATUS_IS_OK(status)) {
2509 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2510 } else {
2511 d_printf("Failed to open file %s. %s\n",
2512 targetname, nt_errstr(status));
2514 } else {
2515 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2517 return 0;
2520 static int cmd_posix_encrypt(void)
2522 TALLOC_CTX *ctx = talloc_tos();
2523 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2525 if (cli->use_kerberos) {
2526 status = cli_gss_smb_encryption_start(cli);
2527 } else {
2528 char *domain = NULL;
2529 char *user = NULL;
2530 char *password = NULL;
2532 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2533 d_printf("posix_encrypt domain user password\n");
2534 return 1;
2537 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2538 d_printf("posix_encrypt domain user password\n");
2539 return 1;
2542 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2543 d_printf("posix_encrypt domain user password\n");
2544 return 1;
2547 status = cli_raw_ntlm_smb_encryption_start(cli,
2548 user,
2549 password,
2550 domain);
2553 if (!NT_STATUS_IS_OK(status)) {
2554 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2555 } else {
2556 d_printf("encryption on\n");
2557 smb_encrypt = true;
2560 return 0;
2563 /****************************************************************************
2564 ****************************************************************************/
2566 static int cmd_posix_open(void)
2568 TALLOC_CTX *ctx = talloc_tos();
2569 char *mask = NULL;
2570 char *buf = NULL;
2571 char *targetname = NULL;
2572 struct cli_state *targetcli;
2573 mode_t mode;
2574 uint16_t fnum;
2575 NTSTATUS status;
2577 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2578 d_printf("posix_open <filename> 0<mode>\n");
2579 return 1;
2581 mask = talloc_asprintf(ctx,
2582 "%s%s",
2583 client_get_cur_dir(),
2584 buf);
2585 if (!mask) {
2586 return 1;
2589 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2590 d_printf("posix_open <filename> 0<mode>\n");
2591 return 1;
2593 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2595 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2596 &targetname);
2597 if (!NT_STATUS_IS_OK(status)) {
2598 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2599 return 1;
2602 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2603 &fnum);
2604 if (!NT_STATUS_IS_OK(status)) {
2605 status = cli_posix_open(targetcli, targetname,
2606 O_CREAT|O_RDONLY, mode, &fnum);
2607 if (!NT_STATUS_IS_OK(status)) {
2608 d_printf("Failed to open file %s. %s\n", targetname,
2609 nt_errstr(status));
2610 } else {
2611 d_printf("posix_open file %s: for readonly fnum %d\n",
2612 targetname, fnum);
2614 } else {
2615 d_printf("posix_open file %s: for read/write fnum %d\n",
2616 targetname, fnum);
2619 return 0;
2622 static int cmd_posix_mkdir(void)
2624 TALLOC_CTX *ctx = talloc_tos();
2625 char *mask = NULL;
2626 char *buf = NULL;
2627 char *targetname = NULL;
2628 struct cli_state *targetcli;
2629 mode_t mode;
2630 NTSTATUS status;
2632 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2633 d_printf("posix_mkdir <filename> 0<mode>\n");
2634 return 1;
2636 mask = talloc_asprintf(ctx,
2637 "%s%s",
2638 client_get_cur_dir(),
2639 buf);
2640 if (!mask) {
2641 return 1;
2644 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2645 d_printf("posix_mkdir <filename> 0<mode>\n");
2646 return 1;
2648 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2650 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2651 &targetname);
2652 if (!NT_STATUS_IS_OK(status)) {
2653 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2654 return 1;
2657 status = cli_posix_mkdir(targetcli, targetname, mode);
2658 if (!NT_STATUS_IS_OK(status)) {
2659 d_printf("Failed to open file %s. %s\n",
2660 targetname, nt_errstr(status));
2661 } else {
2662 d_printf("posix_mkdir created directory %s\n", targetname);
2664 return 0;
2667 static int cmd_posix_unlink(void)
2669 TALLOC_CTX *ctx = talloc_tos();
2670 char *mask = NULL;
2671 char *buf = NULL;
2672 char *targetname = NULL;
2673 struct cli_state *targetcli;
2674 NTSTATUS status;
2676 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2677 d_printf("posix_unlink <filename>\n");
2678 return 1;
2680 mask = talloc_asprintf(ctx,
2681 "%s%s",
2682 client_get_cur_dir(),
2683 buf);
2684 if (!mask) {
2685 return 1;
2688 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2689 &targetname);
2690 if (!NT_STATUS_IS_OK(status)) {
2691 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2692 return 1;
2695 status = cli_posix_unlink(targetcli, targetname);
2696 if (!NT_STATUS_IS_OK(status)) {
2697 d_printf("Failed to unlink file %s. %s\n",
2698 targetname, nt_errstr(status));
2699 } else {
2700 d_printf("posix_unlink deleted file %s\n", targetname);
2703 return 0;
2706 static int cmd_posix_rmdir(void)
2708 TALLOC_CTX *ctx = talloc_tos();
2709 char *mask = NULL;
2710 char *buf = NULL;
2711 char *targetname = NULL;
2712 struct cli_state *targetcli;
2713 NTSTATUS status;
2715 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2716 d_printf("posix_rmdir <filename>\n");
2717 return 1;
2719 mask = talloc_asprintf(ctx,
2720 "%s%s",
2721 client_get_cur_dir(),
2722 buf);
2723 if (!mask) {
2724 return 1;
2727 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2728 &targetname);
2729 if (!NT_STATUS_IS_OK(status)) {
2730 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2731 return 1;
2734 status = cli_posix_rmdir(targetcli, targetname);
2735 if (!NT_STATUS_IS_OK(status)) {
2736 d_printf("Failed to unlink directory %s. %s\n",
2737 targetname, nt_errstr(status));
2738 } else {
2739 d_printf("posix_rmdir deleted directory %s\n", targetname);
2742 return 0;
2745 static int cmd_close(void)
2747 TALLOC_CTX *ctx = talloc_tos();
2748 char *buf = NULL;
2749 int fnum;
2750 NTSTATUS status;
2752 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2753 d_printf("close <fnum>\n");
2754 return 1;
2757 fnum = atoi(buf);
2758 /* We really should use the targetcli here.... */
2759 status = cli_close(cli, fnum);
2760 if (!NT_STATUS_IS_OK(status)) {
2761 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2762 return 1;
2764 return 0;
2767 static int cmd_posix(void)
2769 TALLOC_CTX *ctx = talloc_tos();
2770 uint16_t major, minor;
2771 uint32_t caplow, caphigh;
2772 char *caps;
2773 NTSTATUS status;
2775 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2776 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2777 return 1;
2780 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2781 &caphigh);
2782 if (!NT_STATUS_IS_OK(status)) {
2783 d_printf("Can't get UNIX CIFS extensions version from "
2784 "server: %s\n", nt_errstr(status));
2785 return 1;
2788 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2790 caps = talloc_strdup(ctx, "");
2791 if (!caps) {
2792 return 1;
2794 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2795 caps = talloc_asprintf_append(caps, "locks ");
2796 if (!caps) {
2797 return 1;
2800 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2801 caps = talloc_asprintf_append(caps, "acls ");
2802 if (!caps) {
2803 return 1;
2806 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2807 caps = talloc_asprintf_append(caps, "eas ");
2808 if (!caps) {
2809 return 1;
2812 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2813 caps = talloc_asprintf_append(caps, "pathnames ");
2814 if (!caps) {
2815 return 1;
2818 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2819 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2820 if (!caps) {
2821 return 1;
2824 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2825 caps = talloc_asprintf_append(caps, "large_read ");
2826 if (!caps) {
2827 return 1;
2830 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2831 caps = talloc_asprintf_append(caps, "large_write ");
2832 if (!caps) {
2833 return 1;
2836 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2837 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2838 if (!caps) {
2839 return 1;
2842 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2843 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2844 if (!caps) {
2845 return 1;
2849 if (*caps && caps[strlen(caps)-1] == ' ') {
2850 caps[strlen(caps)-1] = '\0';
2853 d_printf("Server supports CIFS capabilities %s\n", caps);
2855 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2856 caplow, caphigh);
2857 if (!NT_STATUS_IS_OK(status)) {
2858 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2859 nt_errstr(status));
2860 return 1;
2863 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2864 CLI_DIRSEP_CHAR = '/';
2865 *CLI_DIRSEP_STR = '/';
2866 client_set_cur_dir(CLI_DIRSEP_STR);
2869 return 0;
2872 static int cmd_lock(void)
2874 TALLOC_CTX *ctx = talloc_tos();
2875 char *buf = NULL;
2876 uint64_t start, len;
2877 enum brl_type lock_type;
2878 int fnum;
2879 NTSTATUS status;
2881 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2882 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2883 return 1;
2885 fnum = atoi(buf);
2887 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2888 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2889 return 1;
2892 if (*buf == 'r' || *buf == 'R') {
2893 lock_type = READ_LOCK;
2894 } else if (*buf == 'w' || *buf == 'W') {
2895 lock_type = WRITE_LOCK;
2896 } else {
2897 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2898 return 1;
2901 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2902 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2903 return 1;
2906 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2908 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2909 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2910 return 1;
2913 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2915 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2916 if (!NT_STATUS_IS_OK(status)) {
2917 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2920 return 0;
2923 static int cmd_unlock(void)
2925 TALLOC_CTX *ctx = talloc_tos();
2926 char *buf = NULL;
2927 uint64_t start, len;
2928 int fnum;
2929 NTSTATUS status;
2931 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2932 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2933 return 1;
2935 fnum = atoi(buf);
2937 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2938 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2939 return 1;
2942 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2944 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2945 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2946 return 1;
2949 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2951 status = cli_posix_unlock(cli, fnum, start, len);
2952 if (!NT_STATUS_IS_OK(status)) {
2953 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2956 return 0;
2959 static int cmd_posix_whoami(void)
2961 TALLOC_CTX *ctx = talloc_tos();
2962 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2963 uint64_t uid = 0;
2964 uint64_t gid = 0;
2965 uint32_t num_gids = 0;
2966 uint32_t num_sids = 0;
2967 uint64_t *gids = NULL;
2968 struct dom_sid *sids = NULL;
2969 bool guest = false;
2970 uint32_t i;
2972 status = cli_posix_whoami(cli,
2973 ctx,
2974 &uid,
2975 &gid,
2976 &num_gids,
2977 &gids,
2978 &num_sids,
2979 &sids,
2980 &guest);
2982 if (!NT_STATUS_IS_OK(status)) {
2983 d_printf("posix_whoami failed with error %s\n", nt_errstr(status));
2984 return 1;
2987 d_printf("GUEST:%s\n", guest ? "True" : "False");
2988 d_printf("UID:%" PRIu64 "\n", uid);
2989 d_printf("GID:%" PRIu64 "\n", gid);
2990 d_printf("NUM_GIDS:%" PRIu32 "\n", num_gids);
2991 for (i = 0; i < num_gids; i++) {
2992 d_printf("GIDS[%" PRIu32 "]:%" PRIu64 "\n", i, gids[i]);
2994 d_printf("NUM_SIDS:%" PRIu32 "\n", num_sids);
2995 for (i = 0; i < num_sids; i++) {
2996 char *sid_str = dom_sid_string(ctx, &sids[i]);
2997 d_printf("SIDS[%" PRIu32 "]:%s\n", i, sid_str);
2998 TALLOC_FREE(sid_str);
3000 return 0;
3004 /****************************************************************************
3005 Remove a directory.
3006 ****************************************************************************/
3008 static int cmd_rmdir(void)
3010 TALLOC_CTX *ctx = talloc_tos();
3011 char *mask = NULL;
3012 char *buf = NULL;
3013 char *targetname = NULL;
3014 struct cli_state *targetcli;
3015 NTSTATUS status;
3017 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3018 d_printf("rmdir <dirname>\n");
3019 return 1;
3021 mask = talloc_asprintf(ctx,
3022 "%s%s",
3023 client_get_cur_dir(),
3024 buf);
3025 if (!mask) {
3026 return 1;
3029 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
3030 &targetname);
3031 if (!NT_STATUS_IS_OK(status)) {
3032 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
3033 return 1;
3036 status = cli_rmdir(targetcli, targetname);
3037 if (!NT_STATUS_IS_OK(status)) {
3038 d_printf("%s removing remote directory file %s\n",
3039 nt_errstr(status), mask);
3042 return 0;
3045 /****************************************************************************
3046 UNIX hardlink.
3047 ****************************************************************************/
3049 static int cmd_link(void)
3051 TALLOC_CTX *ctx = talloc_tos();
3052 char *oldname = NULL;
3053 char *newname = NULL;
3054 char *buf = NULL;
3055 char *buf2 = NULL;
3056 char *targetname = NULL;
3057 struct cli_state *targetcli;
3058 NTSTATUS status;
3060 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3061 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3062 d_printf("link <oldname> <newname>\n");
3063 return 1;
3065 oldname = talloc_asprintf(ctx,
3066 "%s%s",
3067 client_get_cur_dir(),
3068 buf);
3069 if (!oldname) {
3070 return 1;
3072 newname = talloc_asprintf(ctx,
3073 "%s%s",
3074 client_get_cur_dir(),
3075 buf2);
3076 if (!newname) {
3077 return 1;
3080 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3081 &targetname);
3082 if (!NT_STATUS_IS_OK(status)) {
3083 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3084 return 1;
3087 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3088 d_printf("Server doesn't support UNIX CIFS calls.\n");
3089 return 1;
3092 status = cli_posix_hardlink(targetcli, targetname, newname);
3093 if (!NT_STATUS_IS_OK(status)) {
3094 d_printf("%s linking files (%s -> %s)\n",
3095 nt_errstr(status), newname, oldname);
3096 return 1;
3098 return 0;
3101 /****************************************************************************
3102 UNIX readlink.
3103 ****************************************************************************/
3105 static int cmd_readlink(void)
3107 TALLOC_CTX *ctx = talloc_tos();
3108 char *name= NULL;
3109 char *buf = NULL;
3110 char *targetname = NULL;
3111 char linkname[PATH_MAX+1];
3112 struct cli_state *targetcli;
3113 NTSTATUS status;
3115 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3116 d_printf("readlink <name>\n");
3117 return 1;
3119 name = talloc_asprintf(ctx,
3120 "%s%s",
3121 client_get_cur_dir(),
3122 buf);
3123 if (!name) {
3124 return 1;
3127 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3128 &targetname);
3129 if (!NT_STATUS_IS_OK(status)) {
3130 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3131 return 1;
3134 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3135 d_printf("Server doesn't support UNIX CIFS calls.\n");
3136 return 1;
3139 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3140 if (!NT_STATUS_IS_OK(status)) {
3141 d_printf("%s readlink on file %s\n",
3142 nt_errstr(status), name);
3143 return 1;
3146 d_printf("%s -> %s\n", name, linkname);
3148 return 0;
3152 /****************************************************************************
3153 UNIX symlink.
3154 ****************************************************************************/
3156 static int cmd_symlink(void)
3158 TALLOC_CTX *ctx = talloc_tos();
3159 char *oldname = NULL;
3160 char *newname = NULL;
3161 char *buf = NULL;
3162 char *buf2 = NULL;
3163 struct cli_state *newcli;
3164 NTSTATUS status;
3166 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3167 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3168 d_printf("symlink <oldname> <newname>\n");
3169 return 1;
3171 /* Oldname (link target) must be an untouched blob. */
3172 oldname = buf;
3174 if (SERVER_HAS_UNIX_CIFS(cli)) {
3175 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3176 buf2);
3177 if (!newname) {
3178 return 1;
3180 /* New name must be present in share namespace. */
3181 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3182 &newcli, &newname);
3183 if (!NT_STATUS_IS_OK(status)) {
3184 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3185 return 1;
3187 status = cli_posix_symlink(newcli, oldname, newname);
3188 } else {
3189 status = cli_symlink(
3190 cli, oldname, buf2,
3191 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3194 if (!NT_STATUS_IS_OK(status)) {
3195 d_printf("%s symlinking files (%s -> %s)\n",
3196 nt_errstr(status), oldname, newname);
3197 return 1;
3200 return 0;
3203 /****************************************************************************
3204 UNIX chmod.
3205 ****************************************************************************/
3207 static int cmd_chmod(void)
3209 TALLOC_CTX *ctx = talloc_tos();
3210 char *src = NULL;
3211 char *buf = NULL;
3212 char *buf2 = NULL;
3213 char *targetname = NULL;
3214 struct cli_state *targetcli;
3215 mode_t mode;
3216 NTSTATUS status;
3218 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3219 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3220 d_printf("chmod mode file\n");
3221 return 1;
3223 src = talloc_asprintf(ctx,
3224 "%s%s",
3225 client_get_cur_dir(),
3226 buf2);
3227 if (!src) {
3228 return 1;
3231 mode = (mode_t)strtol(buf, NULL, 8);
3233 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3234 &targetname);
3235 if (!NT_STATUS_IS_OK(status)) {
3236 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3237 return 1;
3240 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3241 d_printf("Server doesn't support UNIX CIFS calls.\n");
3242 return 1;
3245 status = cli_posix_chmod(targetcli, targetname, mode);
3246 if (!NT_STATUS_IS_OK(status)) {
3247 d_printf("%s chmod file %s 0%o\n",
3248 nt_errstr(status), src, (unsigned int)mode);
3249 return 1;
3252 return 0;
3255 static const char *filetype_to_str(mode_t mode)
3257 if (S_ISREG(mode)) {
3258 return "regular file";
3259 } else if (S_ISDIR(mode)) {
3260 return "directory";
3261 } else
3262 #ifdef S_ISCHR
3263 if (S_ISCHR(mode)) {
3264 return "character device";
3265 } else
3266 #endif
3267 #ifdef S_ISBLK
3268 if (S_ISBLK(mode)) {
3269 return "block device";
3270 } else
3271 #endif
3272 #ifdef S_ISFIFO
3273 if (S_ISFIFO(mode)) {
3274 return "fifo";
3275 } else
3276 #endif
3277 #ifdef S_ISLNK
3278 if (S_ISLNK(mode)) {
3279 return "symbolic link";
3280 } else
3281 #endif
3282 #ifdef S_ISSOCK
3283 if (S_ISSOCK(mode)) {
3284 return "socket";
3285 } else
3286 #endif
3287 return "";
3290 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3292 if (m & bt) {
3293 return ret;
3294 } else {
3295 return '-';
3299 static char *unix_mode_to_str(char *s, mode_t m)
3301 char *p = s;
3302 const char *str = filetype_to_str(m);
3304 switch(str[0]) {
3305 case 'd':
3306 *p++ = 'd';
3307 break;
3308 case 'c':
3309 *p++ = 'c';
3310 break;
3311 case 'b':
3312 *p++ = 'b';
3313 break;
3314 case 'f':
3315 *p++ = 'p';
3316 break;
3317 case 's':
3318 *p++ = str[1] == 'y' ? 'l' : 's';
3319 break;
3320 case 'r':
3321 default:
3322 *p++ = '-';
3323 break;
3325 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3326 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3327 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3328 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3329 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3330 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3331 *p++ = rwx_to_str(m, S_IROTH, 'r');
3332 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3333 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3334 *p++ = '\0';
3335 return s;
3338 /****************************************************************************
3339 Utility function for UNIX getfacl.
3340 ****************************************************************************/
3342 static char *perms_to_string(fstring permstr, unsigned char perms)
3344 fstrcpy(permstr, "---");
3345 if (perms & SMB_POSIX_ACL_READ) {
3346 permstr[0] = 'r';
3348 if (perms & SMB_POSIX_ACL_WRITE) {
3349 permstr[1] = 'w';
3351 if (perms & SMB_POSIX_ACL_EXECUTE) {
3352 permstr[2] = 'x';
3354 return permstr;
3357 /****************************************************************************
3358 UNIX getfacl.
3359 ****************************************************************************/
3361 static int cmd_getfacl(void)
3363 TALLOC_CTX *ctx = talloc_tos();
3364 char *src = NULL;
3365 char *name = NULL;
3366 char *targetname = NULL;
3367 struct cli_state *targetcli;
3368 uint16_t major, minor;
3369 uint32_t caplow, caphigh;
3370 char *retbuf = NULL;
3371 size_t rb_size = 0;
3372 SMB_STRUCT_STAT sbuf;
3373 uint16_t num_file_acls = 0;
3374 uint16_t num_dir_acls = 0;
3375 uint16_t i;
3376 NTSTATUS status;
3378 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3379 d_printf("getfacl filename\n");
3380 return 1;
3382 src = talloc_asprintf(ctx,
3383 "%s%s",
3384 client_get_cur_dir(),
3385 name);
3386 if (!src) {
3387 return 1;
3390 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3391 &targetname);
3392 if (!NT_STATUS_IS_OK(status)) {
3393 d_printf("stat %s: %s\n", src, nt_errstr(status));
3394 return 1;
3397 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3398 d_printf("Server doesn't support UNIX CIFS calls.\n");
3399 return 1;
3402 status = cli_unix_extensions_version(targetcli, &major, &minor,
3403 &caplow, &caphigh);
3404 if (!NT_STATUS_IS_OK(status)) {
3405 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3406 nt_errstr(status));
3407 return 1;
3410 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3411 d_printf("This server supports UNIX extensions "
3412 "but doesn't support POSIX ACLs.\n");
3413 return 1;
3416 status = cli_posix_stat(targetcli, targetname, &sbuf);
3417 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3418 d_printf("%s getfacl doing a stat on file %s\n",
3419 nt_errstr(status), src);
3420 return 1;
3423 status = cli_posix_getacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3424 if (!NT_STATUS_IS_OK(status)) {
3425 d_printf("%s getfacl file %s\n",
3426 nt_errstr(status), src);
3427 return 1;
3430 /* ToDo : Print out the ACL values. */
3431 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3432 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3433 src, (unsigned int)CVAL(retbuf,0) );
3434 return 1;
3437 num_file_acls = SVAL(retbuf,2);
3438 num_dir_acls = SVAL(retbuf,4);
3439 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3440 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3441 src,
3442 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3443 (unsigned int)rb_size);
3444 return 1;
3447 d_printf("# file: %s\n", src);
3448 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3450 if (num_file_acls == 0 && num_dir_acls == 0) {
3451 d_printf("No acls found.\n");
3454 for (i = 0; i < num_file_acls; i++) {
3455 uint32_t uorg;
3456 fstring permstring;
3457 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3458 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3460 switch(tagtype) {
3461 case SMB_POSIX_ACL_USER_OBJ:
3462 d_printf("user::");
3463 break;
3464 case SMB_POSIX_ACL_USER:
3465 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3466 d_printf("user:%u:", uorg);
3467 break;
3468 case SMB_POSIX_ACL_GROUP_OBJ:
3469 d_printf("group::");
3470 break;
3471 case SMB_POSIX_ACL_GROUP:
3472 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3473 d_printf("group:%u:", uorg);
3474 break;
3475 case SMB_POSIX_ACL_MASK:
3476 d_printf("mask::");
3477 break;
3478 case SMB_POSIX_ACL_OTHER:
3479 d_printf("other::");
3480 break;
3481 default:
3482 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3483 src, (unsigned int)tagtype );
3484 SAFE_FREE(retbuf);
3485 return 1;
3488 d_printf("%s\n", perms_to_string(permstring, perms));
3491 for (i = 0; i < num_dir_acls; i++) {
3492 uint32_t uorg;
3493 fstring permstring;
3494 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3495 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3497 switch(tagtype) {
3498 case SMB_POSIX_ACL_USER_OBJ:
3499 d_printf("default:user::");
3500 break;
3501 case SMB_POSIX_ACL_USER:
3502 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3503 d_printf("default:user:%u:", uorg);
3504 break;
3505 case SMB_POSIX_ACL_GROUP_OBJ:
3506 d_printf("default:group::");
3507 break;
3508 case SMB_POSIX_ACL_GROUP:
3509 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3510 d_printf("default:group:%u:", uorg);
3511 break;
3512 case SMB_POSIX_ACL_MASK:
3513 d_printf("default:mask::");
3514 break;
3515 case SMB_POSIX_ACL_OTHER:
3516 d_printf("default:other::");
3517 break;
3518 default:
3519 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3520 src, (unsigned int)tagtype );
3521 SAFE_FREE(retbuf);
3522 return 1;
3525 d_printf("%s\n", perms_to_string(permstring, perms));
3528 return 0;
3531 /****************************************************************************
3532 Get the EA list of a file
3533 ****************************************************************************/
3535 static int cmd_geteas(void)
3537 TALLOC_CTX *ctx = talloc_tos();
3538 char *src = NULL;
3539 char *name = NULL;
3540 char *targetname = NULL;
3541 struct cli_state *targetcli;
3542 NTSTATUS status;
3543 size_t i, num_eas;
3544 struct ea_struct *eas;
3546 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3547 d_printf("geteas filename\n");
3548 return 1;
3550 src = talloc_asprintf(ctx,
3551 "%s%s",
3552 client_get_cur_dir(),
3553 name);
3554 if (!src) {
3555 return 1;
3558 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3559 &targetname);
3560 if (!NT_STATUS_IS_OK(status)) {
3561 d_printf("stat %s: %s\n", src, nt_errstr(status));
3562 return 1;
3565 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3566 &num_eas, &eas);
3567 if (!NT_STATUS_IS_OK(status)) {
3568 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3569 return 1;
3572 for (i=0; i<num_eas; i++) {
3573 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3574 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3575 stdout);
3576 d_printf("\n");
3579 TALLOC_FREE(eas);
3581 return 0;
3584 /****************************************************************************
3585 Set an EA of a file
3586 ****************************************************************************/
3588 static int cmd_setea(void)
3590 TALLOC_CTX *ctx = talloc_tos();
3591 char *src = NULL;
3592 char *name = NULL;
3593 char *eaname = NULL;
3594 char *eavalue = NULL;
3595 char *targetname = NULL;
3596 struct cli_state *targetcli;
3597 NTSTATUS status;
3599 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3600 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3601 d_printf("setea filename eaname value\n");
3602 return 1;
3604 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3605 eavalue = talloc_strdup(ctx, "");
3607 src = talloc_asprintf(ctx,
3608 "%s%s",
3609 client_get_cur_dir(),
3610 name);
3611 if (!src) {
3612 return 1;
3615 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3616 &targetname);
3617 if (!NT_STATUS_IS_OK(status)) {
3618 d_printf("stat %s: %s\n", src, nt_errstr(status));
3619 return 1;
3622 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3623 strlen(eavalue));
3624 if (!NT_STATUS_IS_OK(status)) {
3625 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3626 return 1;
3629 return 0;
3632 /****************************************************************************
3633 UNIX stat.
3634 ****************************************************************************/
3636 static int cmd_stat(void)
3638 TALLOC_CTX *ctx = talloc_tos();
3639 char *src = NULL;
3640 char *name = NULL;
3641 char *targetname = NULL;
3642 struct cli_state *targetcli;
3643 fstring mode_str;
3644 SMB_STRUCT_STAT sbuf;
3645 struct tm *lt;
3646 time_t tmp_time;
3647 NTSTATUS status;
3649 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3650 d_printf("stat file\n");
3651 return 1;
3653 src = talloc_asprintf(ctx,
3654 "%s%s",
3655 client_get_cur_dir(),
3656 name);
3657 if (!src) {
3658 return 1;
3661 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3662 &targetname);
3663 if (!NT_STATUS_IS_OK(status)) {
3664 d_printf("stat %s: %s\n", src, nt_errstr(status));
3665 return 1;
3668 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3669 d_printf("Server doesn't support UNIX CIFS calls.\n");
3670 return 1;
3673 status = cli_posix_stat(targetcli, targetname, &sbuf);
3674 if (!NT_STATUS_IS_OK(status)) {
3675 d_printf("%s stat file %s\n",
3676 nt_errstr(status), src);
3677 return 1;
3680 /* Print out the stat values. */
3681 d_printf("File: %s\n", src);
3682 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3683 (double)sbuf.st_ex_size,
3684 (unsigned int)sbuf.st_ex_blocks,
3685 filetype_to_str(sbuf.st_ex_mode));
3687 #if defined(S_ISCHR) && defined(S_ISBLK)
3688 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3689 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3690 (double)sbuf.st_ex_ino,
3691 (unsigned int)sbuf.st_ex_nlink,
3692 unix_dev_major(sbuf.st_ex_rdev),
3693 unix_dev_minor(sbuf.st_ex_rdev));
3694 } else
3695 #endif
3696 d_printf("Inode: %.0f\tLinks: %u\n",
3697 (double)sbuf.st_ex_ino,
3698 (unsigned int)sbuf.st_ex_nlink);
3700 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3701 ((int)sbuf.st_ex_mode & 0777),
3702 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3703 (unsigned int)sbuf.st_ex_uid,
3704 (unsigned int)sbuf.st_ex_gid);
3706 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3707 lt = localtime(&tmp_time);
3708 if (lt) {
3709 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3710 } else {
3711 fstrcpy(mode_str, "unknown");
3713 d_printf("Access: %s\n", mode_str);
3715 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3716 lt = localtime(&tmp_time);
3717 if (lt) {
3718 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3719 } else {
3720 fstrcpy(mode_str, "unknown");
3722 d_printf("Modify: %s\n", mode_str);
3724 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3725 lt = localtime(&tmp_time);
3726 if (lt) {
3727 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3728 } else {
3729 fstrcpy(mode_str, "unknown");
3731 d_printf("Change: %s\n", mode_str);
3733 return 0;
3737 /****************************************************************************
3738 UNIX chown.
3739 ****************************************************************************/
3741 static int cmd_chown(void)
3743 TALLOC_CTX *ctx = talloc_tos();
3744 char *src = NULL;
3745 uid_t uid;
3746 gid_t gid;
3747 char *buf, *buf2, *buf3;
3748 struct cli_state *targetcli;
3749 char *targetname = NULL;
3750 NTSTATUS status;
3752 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3753 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3754 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3755 d_printf("chown uid gid file\n");
3756 return 1;
3759 uid = (uid_t)atoi(buf);
3760 gid = (gid_t)atoi(buf2);
3762 src = talloc_asprintf(ctx,
3763 "%s%s",
3764 client_get_cur_dir(),
3765 buf3);
3766 if (!src) {
3767 return 1;
3769 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3770 &targetname);
3771 if (!NT_STATUS_IS_OK(status)) {
3772 d_printf("chown %s: %s\n", src, nt_errstr(status));
3773 return 1;
3776 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3777 d_printf("Server doesn't support UNIX CIFS calls.\n");
3778 return 1;
3781 status = cli_posix_chown(targetcli, targetname, uid, gid);
3782 if (!NT_STATUS_IS_OK(status)) {
3783 d_printf("%s chown file %s uid=%d, gid=%d\n",
3784 nt_errstr(status), src, (int)uid, (int)gid);
3785 return 1;
3788 return 0;
3791 /****************************************************************************
3792 Rename some file.
3793 ****************************************************************************/
3795 static int cmd_rename(void)
3797 TALLOC_CTX *ctx = talloc_tos();
3798 char *src, *dest;
3799 char *buf, *buf2;
3800 struct cli_state *targetcli;
3801 char *targetsrc;
3802 char *targetdest;
3803 NTSTATUS status;
3805 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3806 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3807 d_printf("rename <src> <dest>\n");
3808 return 1;
3811 src = talloc_asprintf(ctx,
3812 "%s%s",
3813 client_get_cur_dir(),
3814 buf);
3815 if (!src) {
3816 return 1;
3819 dest = talloc_asprintf(ctx,
3820 "%s%s",
3821 client_get_cur_dir(),
3822 buf2);
3823 if (!dest) {
3824 return 1;
3827 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3828 &targetsrc);
3829 if (!NT_STATUS_IS_OK(status)) {
3830 d_printf("rename %s: %s\n", src, nt_errstr(status));
3831 return 1;
3834 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3835 &targetdest);
3836 if (!NT_STATUS_IS_OK(status)) {
3837 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3838 return 1;
3841 status = cli_rename(targetcli, targetsrc, targetdest);
3842 if (!NT_STATUS_IS_OK(status)) {
3843 d_printf("%s renaming files %s -> %s \n",
3844 nt_errstr(status),
3845 targetsrc,
3846 targetdest);
3847 return 1;
3850 return 0;
3853 struct scopy_timing {
3854 struct timespec tp_start;
3857 static int scopy_status(off_t written, void *priv)
3859 struct timespec tp_end;
3860 unsigned int scopy_total_time_ms;
3861 struct scopy_timing *st = priv;
3863 clock_gettime_mono(&tp_end);
3864 scopy_total_time_ms = nsec_time_diff(&tp_end,&st->tp_start)/1000000;
3866 DEBUG(5,("Copied %jd bytes at an average %3.1f kb/s\n",
3867 (intmax_t)written, written / (1.024*scopy_total_time_ms)));
3869 return true;
3872 /****************************************************************************
3873 Server-Side copy some file.
3874 ****************************************************************************/
3876 static int cmd_scopy(void)
3878 TALLOC_CTX *ctx = talloc_tos();
3879 char *src, *dest;
3880 char *buf, *buf2;
3881 struct cli_state *targetcli;
3882 char *targetsrc;
3883 char *targetdest;
3884 uint32_t DesiredAccess, ShareAccess, CreateDisposition, CreateOptions;
3885 struct smb_create_returns cr;
3886 uint16_t destfnum = (uint16_t)-1;
3887 uint16_t srcfnum = (uint16_t)-1;
3888 off_t written = 0;
3889 struct scopy_timing st;
3890 int rc = 0;
3891 NTSTATUS status;
3893 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3894 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3895 d_printf("scopy <src> <dest>\n");
3896 return 1;
3899 src = talloc_asprintf(ctx,
3900 "%s%s",
3901 client_get_cur_dir(),
3902 buf);
3903 if (!src) {
3904 return 1;
3907 dest = talloc_asprintf(ctx,
3908 "%s%s",
3909 client_get_cur_dir(),
3910 buf2);
3911 if (!dest) {
3912 return 1;
3915 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3916 &targetsrc);
3917 if (!NT_STATUS_IS_OK(status)) {
3918 d_printf("scopy %s: %s\n", src, nt_errstr(status));
3919 return 1;
3922 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3923 &targetdest);
3924 if (!NT_STATUS_IS_OK(status)) {
3925 d_printf("scopy %s: %s\n", dest, nt_errstr(status));
3926 return 1;
3930 DesiredAccess = (FILE_READ_DATA|FILE_READ_EA|FILE_READ_ATTRIBUTES|
3931 READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS);
3932 ShareAccess = FILE_SHARE_READ|FILE_SHARE_DELETE;
3933 CreateDisposition = FILE_OPEN;
3934 CreateOptions = (FILE_SEQUENTIAL_ONLY|FILE_NON_DIRECTORY_FILE|
3935 FILE_OPEN_REPARSE_POINT);
3936 status = cli_ntcreate(targetcli, targetsrc, 0, DesiredAccess, 0,
3937 ShareAccess, CreateDisposition, CreateOptions, 0x0,
3938 &srcfnum, &cr);
3939 if (!NT_STATUS_IS_OK(status)) {
3940 d_printf("Failed to open file %s. %s\n",
3941 targetsrc, nt_errstr(status));
3942 return 1;
3945 DesiredAccess = (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_READ_EA|
3946 FILE_WRITE_EA|FILE_READ_ATTRIBUTES|FILE_WRITE_ATTRIBUTES|
3947 DELETE_ACCESS|READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|SYNCHRONIZE_ACCESS);
3948 ShareAccess = FILE_SHARE_NONE;
3949 CreateDisposition = FILE_CREATE;
3950 CreateOptions = FILE_SEQUENTIAL_ONLY|FILE_NON_DIRECTORY_FILE;
3951 status = cli_ntcreate(targetcli, targetdest, 0, DesiredAccess,
3952 FILE_ATTRIBUTE_ARCHIVE, ShareAccess, CreateDisposition,
3953 CreateOptions, 0x0, &destfnum, NULL);
3954 if (!NT_STATUS_IS_OK(status)) {
3955 d_printf("Failed to create file %s. %s\n",
3956 targetdest, nt_errstr(status));
3957 cli_close(targetcli, srcfnum);
3958 return 1;
3961 clock_gettime_mono(&st.tp_start);
3962 status = cli_splice(targetcli, targetcli, srcfnum, destfnum,
3963 cr.end_of_file, 0, 0, &written, scopy_status, &st);
3964 if (!NT_STATUS_IS_OK(status)) {
3965 d_printf("%s copying file %s -> %s \n",
3966 nt_errstr(status),
3967 targetsrc,
3968 targetdest);
3969 rc = 1;
3972 status = cli_close(targetcli, srcfnum);
3973 if (!NT_STATUS_IS_OK(status)) {
3974 d_printf("Error %s closing remote source file\n", nt_errstr(status));
3975 rc = 1;
3977 status = cli_close(targetcli, destfnum);
3978 if (!NT_STATUS_IS_OK(status)) {
3979 d_printf("Error %s closing remote dest file\n", nt_errstr(status));
3980 rc = 1;
3983 return rc;
3986 /****************************************************************************
3987 Print the volume name.
3988 ****************************************************************************/
3990 static int cmd_volume(void)
3992 char *volname;
3993 uint32_t serial_num;
3994 time_t create_date;
3995 NTSTATUS status;
3997 status = cli_get_fs_volume_info(cli, talloc_tos(),
3998 &volname, &serial_num,
3999 &create_date);
4000 if (!NT_STATUS_IS_OK(status)) {
4001 d_printf("Error %s getting volume info\n", nt_errstr(status));
4002 return 1;
4005 d_printf("Volume: |%s| serial number 0x%x\n",
4006 volname, (unsigned int)serial_num);
4007 return 0;
4010 /****************************************************************************
4011 Hard link files using the NT call.
4012 ****************************************************************************/
4014 static int cmd_hardlink(void)
4016 TALLOC_CTX *ctx = talloc_tos();
4017 char *src, *dest;
4018 char *buf, *buf2;
4019 struct cli_state *targetcli;
4020 char *targetname;
4021 NTSTATUS status;
4023 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
4024 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
4025 d_printf("hardlink <src> <dest>\n");
4026 return 1;
4029 src = talloc_asprintf(ctx,
4030 "%s%s",
4031 client_get_cur_dir(),
4032 buf);
4033 if (!src) {
4034 return 1;
4037 dest = talloc_asprintf(ctx,
4038 "%s%s",
4039 client_get_cur_dir(),
4040 buf2);
4041 if (!dest) {
4042 return 1;
4045 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
4046 &targetname);
4047 if (!NT_STATUS_IS_OK(status)) {
4048 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
4049 return 1;
4052 status = cli_nt_hardlink(targetcli, targetname, dest);
4053 if (!NT_STATUS_IS_OK(status)) {
4054 d_printf("%s doing an NT hard link of files\n",
4055 nt_errstr(status));
4056 return 1;
4059 return 0;
4062 /****************************************************************************
4063 Toggle the prompt flag.
4064 ****************************************************************************/
4066 static int cmd_prompt(void)
4068 prompt = !prompt;
4069 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
4070 return 1;
4073 /****************************************************************************
4074 Set the newer than time.
4075 ****************************************************************************/
4077 static int cmd_newer(void)
4079 TALLOC_CTX *ctx = talloc_tos();
4080 char *buf;
4081 bool ok;
4082 SMB_STRUCT_STAT sbuf;
4084 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
4085 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
4086 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
4087 DEBUG(1,("Getting files newer than %s",
4088 time_to_asc(newer_than)));
4089 } else {
4090 newer_than = 0;
4093 if (ok && newer_than == 0) {
4094 d_printf("Error setting newer-than time\n");
4095 return 1;
4098 return 0;
4101 /****************************************************************************
4102 Watch directory changes
4103 ****************************************************************************/
4105 static int cmd_notify(void)
4107 TALLOC_CTX *frame = talloc_stackframe();
4108 char *name, *buf;
4109 NTSTATUS status;
4110 uint16_t fnum;
4112 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
4113 if (name == NULL) {
4114 goto fail;
4116 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
4117 goto usage;
4119 name = talloc_asprintf_append(name, "%s", buf);
4120 if (name == NULL) {
4121 goto fail;
4123 status = cli_ntcreate(
4124 cli, name, 0, FILE_READ_DATA, 0,
4125 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4126 FILE_OPEN, 0, 0, &fnum, NULL);
4127 if (!NT_STATUS_IS_OK(status)) {
4128 d_printf("Could not open file: %s\n", nt_errstr(status));
4129 goto fail;
4132 while (1) {
4133 uint32_t i, num_changes;
4134 struct notify_change *changes;
4136 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
4137 true,
4138 talloc_tos(), &num_changes, &changes);
4139 if (!NT_STATUS_IS_OK(status)) {
4140 d_printf("notify returned %s\n",
4141 nt_errstr(status));
4142 goto fail;
4144 for (i=0; i<num_changes; i++) {
4145 printf("%4.4x %s\n", changes[i].action,
4146 changes[i].name);
4148 TALLOC_FREE(changes);
4150 usage:
4151 d_printf("notify <file>\n");
4152 fail:
4153 TALLOC_FREE(frame);
4154 return 1;
4157 /****************************************************************************
4158 Set the archive level.
4159 ****************************************************************************/
4161 static int cmd_archive(void)
4163 TALLOC_CTX *ctx = talloc_tos();
4164 char *buf;
4166 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4167 archive_level = atoi(buf);
4168 } else {
4169 d_printf("Archive level is %d\n",archive_level);
4172 return 0;
4175 /****************************************************************************
4176 Toggle the backup_intent state.
4177 ****************************************************************************/
4179 static int cmd_backup(void)
4181 backup_intent = !backup_intent;
4182 cli_set_backup_intent(cli, backup_intent);
4183 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
4184 return 1;
4187 /****************************************************************************
4188 Toggle the lowercaseflag.
4189 ****************************************************************************/
4191 static int cmd_lowercase(void)
4193 lowercase = !lowercase;
4194 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4195 return 0;
4198 /****************************************************************************
4199 Toggle the case sensitive flag.
4200 ****************************************************************************/
4202 static int cmd_setcase(void)
4204 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4206 cli_set_case_sensitive(cli, !orig_case_sensitive);
4207 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4208 "on":"off"));
4209 return 0;
4212 /****************************************************************************
4213 Toggle the showacls flag.
4214 ****************************************************************************/
4216 static int cmd_showacls(void)
4218 showacls = !showacls;
4219 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4220 return 0;
4224 /****************************************************************************
4225 Toggle the recurse flag.
4226 ****************************************************************************/
4228 static int cmd_recurse(void)
4230 recurse = !recurse;
4231 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4232 return 0;
4235 /****************************************************************************
4236 Toggle the translate flag.
4237 ****************************************************************************/
4239 static int cmd_translate(void)
4241 translation = !translation;
4242 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4243 translation?"on":"off"));
4244 return 0;
4247 /****************************************************************************
4248 Do the lcd command.
4249 ****************************************************************************/
4251 static int cmd_lcd(void)
4253 TALLOC_CTX *ctx = talloc_tos();
4254 char *buf;
4255 char *d;
4257 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4258 if (chdir(buf) == -1) {
4259 d_printf("chdir to %s failed (%s)\n",
4260 buf, strerror(errno));
4263 d = sys_getwd();
4264 if (!d) {
4265 return 1;
4267 DEBUG(2,("the local directory is now %s\n",d));
4268 SAFE_FREE(d);
4269 return 0;
4272 /****************************************************************************
4273 Get a file restarting at end of local file.
4274 ****************************************************************************/
4276 static int cmd_reget(void)
4278 TALLOC_CTX *ctx = talloc_tos();
4279 char *local_name = NULL;
4280 char *remote_name = NULL;
4281 char *fname = NULL;
4282 char *p = NULL;
4284 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4285 if (!remote_name) {
4286 return 1;
4289 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4290 d_printf("reget <filename>\n");
4291 return 1;
4293 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4294 if (!remote_name) {
4295 return 1;
4297 remote_name = clean_name(ctx,remote_name);
4298 if (!remote_name) {
4299 return 1;
4302 local_name = fname;
4303 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4304 if (p) {
4305 local_name = p;
4308 return do_get(remote_name, local_name, true);
4311 /****************************************************************************
4312 Put a file restarting at end of local file.
4313 ****************************************************************************/
4315 static int cmd_reput(void)
4317 TALLOC_CTX *ctx = talloc_tos();
4318 char *local_name = NULL;
4319 char *remote_name = NULL;
4320 char *buf;
4321 SMB_STRUCT_STAT st;
4323 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4324 if (!remote_name) {
4325 return 1;
4328 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4329 d_printf("reput <filename>\n");
4330 return 1;
4333 if (!file_exist_stat(local_name, &st, false)) {
4334 d_printf("%s does not exist\n", local_name);
4335 return 1;
4338 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4339 remote_name = talloc_asprintf_append(remote_name,
4340 "%s", buf);
4341 } else {
4342 remote_name = talloc_asprintf_append(remote_name,
4343 "%s", local_name);
4345 if (!remote_name) {
4346 return 1;
4349 remote_name = clean_name(ctx, remote_name);
4350 if (!remote_name) {
4351 return 1;
4354 return do_put(remote_name, local_name, true);
4357 /****************************************************************************
4358 List a share name.
4359 ****************************************************************************/
4361 static void browse_fn(const char *name, uint32_t m,
4362 const char *comment, void *state)
4364 const char *typestr = "";
4366 switch (m & 7) {
4367 case STYPE_DISKTREE:
4368 typestr = "Disk";
4369 break;
4370 case STYPE_PRINTQ:
4371 typestr = "Printer";
4372 break;
4373 case STYPE_DEVICE:
4374 typestr = "Device";
4375 break;
4376 case STYPE_IPC:
4377 typestr = "IPC";
4378 break;
4380 /* FIXME: If the remote machine returns non-ascii characters
4381 in any of these fields, they can corrupt the output. We
4382 should remove them. */
4383 if (!grepable) {
4384 d_printf("\t%-15s %-10.10s%s\n",
4385 name,typestr,comment);
4386 } else {
4387 d_printf ("%s|%s|%s\n",typestr,name,comment);
4391 static bool browse_host_rpc(bool sort)
4393 NTSTATUS status;
4394 struct rpc_pipe_client *pipe_hnd = NULL;
4395 TALLOC_CTX *frame = talloc_stackframe();
4396 WERROR werr;
4397 struct srvsvc_NetShareInfoCtr info_ctr;
4398 struct srvsvc_NetShareCtr1 ctr1;
4399 uint32_t resume_handle = 0;
4400 uint32_t total_entries = 0;
4401 int i;
4402 struct dcerpc_binding_handle *b;
4404 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc,
4405 &pipe_hnd);
4407 if (!NT_STATUS_IS_OK(status)) {
4408 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4409 nt_errstr(status)));
4410 TALLOC_FREE(frame);
4411 return false;
4414 b = pipe_hnd->binding_handle;
4416 ZERO_STRUCT(info_ctr);
4417 ZERO_STRUCT(ctr1);
4419 info_ctr.level = 1;
4420 info_ctr.ctr.ctr1 = &ctr1;
4422 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4423 pipe_hnd->desthost,
4424 &info_ctr,
4425 0xffffffff,
4426 &total_entries,
4427 &resume_handle,
4428 &werr);
4430 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4431 TALLOC_FREE(pipe_hnd);
4432 TALLOC_FREE(frame);
4433 return false;
4436 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4437 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4438 browse_fn(info.name, info.type, info.comment, NULL);
4441 TALLOC_FREE(pipe_hnd);
4442 TALLOC_FREE(frame);
4443 return true;
4446 /****************************************************************************
4447 Try and browse available connections on a host.
4448 ****************************************************************************/
4450 static bool browse_host(bool sort)
4452 int ret;
4453 if (!grepable) {
4454 d_printf("\n\tSharename Type Comment\n");
4455 d_printf("\t--------- ---- -------\n");
4458 if (browse_host_rpc(sort)) {
4459 return true;
4462 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4463 NTSTATUS status = cli_nt_error(cli);
4464 d_printf("Error returning browse list: %s\n",
4465 nt_errstr(status));
4468 return (ret != -1);
4471 /****************************************************************************
4472 List a server name.
4473 ****************************************************************************/
4475 static void server_fn(const char *name, uint32_t m,
4476 const char *comment, void *state)
4479 if (!grepable){
4480 d_printf("\t%-16s %s\n", name, comment);
4481 } else {
4482 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4486 /****************************************************************************
4487 Try and browse available connections on a host.
4488 ****************************************************************************/
4490 static bool list_servers(const char *wk_grp)
4492 fstring state;
4494 if (!cli->server_domain)
4495 return false;
4497 if (!grepable) {
4498 d_printf("\n\tServer Comment\n");
4499 d_printf("\t--------- -------\n");
4501 fstrcpy( state, "Server" );
4502 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4503 state);
4505 if (!grepable) {
4506 d_printf("\n\tWorkgroup Master\n");
4507 d_printf("\t--------- -------\n");
4510 fstrcpy( state, "Workgroup" );
4511 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4512 server_fn, state);
4513 return true;
4516 /****************************************************************************
4517 Print or set current VUID
4518 ****************************************************************************/
4520 static int cmd_vuid(void)
4522 TALLOC_CTX *ctx = talloc_tos();
4523 char *buf;
4525 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4526 d_printf("Current VUID is %d\n",
4527 cli_state_get_uid(cli));
4528 return 0;
4531 cli_state_set_uid(cli, atoi(buf));
4532 return 0;
4535 /****************************************************************************
4536 Setup a new VUID, by issuing a session setup
4537 ****************************************************************************/
4539 static int cmd_logon(void)
4541 TALLOC_CTX *ctx = talloc_tos();
4542 char *l_username, *l_password;
4543 NTSTATUS nt_status;
4545 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4546 d_printf("logon <username> [<password>]\n");
4547 return 0;
4550 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4551 char pwd[256] = {0};
4552 int rc;
4554 rc = samba_getpass("Password: ", pwd, sizeof(pwd), false, false);
4555 if (rc == 0) {
4556 l_password = talloc_strdup(ctx, pwd);
4559 if (!l_password) {
4560 return 1;
4563 nt_status = cli_session_setup(cli, l_username,
4564 l_password, strlen(l_password),
4565 l_password, strlen(l_password),
4566 lp_workgroup());
4567 if (!NT_STATUS_IS_OK(nt_status)) {
4568 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4569 return -1;
4572 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4573 return 0;
4577 * close the session
4580 static int cmd_logoff(void)
4582 NTSTATUS status;
4584 status = cli_ulogoff(cli);
4585 if (!NT_STATUS_IS_OK(status)) {
4586 d_printf("logoff failed: %s\n", nt_errstr(status));
4587 return -1;
4590 d_printf("logoff successful\n");
4591 return 0;
4596 * tree connect (connect to a share)
4599 static int cmd_tcon(void)
4601 TALLOC_CTX *ctx = talloc_tos();
4602 char *sharename;
4603 NTSTATUS status;
4605 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4606 d_printf("tcon <sharename>\n");
4607 return 0;
4610 if (!sharename) {
4611 return 1;
4614 status = cli_tree_connect(cli, sharename, "?????", "", 0);
4615 if (!NT_STATUS_IS_OK(status)) {
4616 d_printf("tcon failed: %s\n", nt_errstr(status));
4617 return -1;
4620 talloc_free(sharename);
4622 d_printf("tcon to %s successful, tid: %u\n", sharename,
4623 cli_state_get_tid(cli));
4624 return 0;
4628 * tree disconnect (disconnect from a share)
4631 static int cmd_tdis(void)
4633 NTSTATUS status;
4635 status = cli_tdis(cli);
4636 if (!NT_STATUS_IS_OK(status)) {
4637 d_printf("tdis failed: %s\n", nt_errstr(status));
4638 return -1;
4641 d_printf("tdis successful\n");
4642 return 0;
4647 * get or set tid
4650 static int cmd_tid(void)
4652 TALLOC_CTX *ctx = talloc_tos();
4653 char *tid_str;
4655 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4656 if (cli_state_has_tcon(cli)) {
4657 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4658 } else {
4659 d_printf("no tcon currently\n");
4661 } else {
4662 uint16_t tid = atoi(tid_str);
4663 cli_state_set_tid(cli, tid);
4666 return 0;
4670 /****************************************************************************
4671 list active connections
4672 ****************************************************************************/
4674 static int cmd_list_connect(void)
4676 cli_cm_display(cli);
4677 return 0;
4680 /****************************************************************************
4681 display the current active client connection
4682 ****************************************************************************/
4684 static int cmd_show_connect( void )
4686 TALLOC_CTX *ctx = talloc_tos();
4687 struct cli_state *targetcli;
4688 char *targetpath;
4689 NTSTATUS status;
4691 status = cli_resolve_path(ctx, "", auth_info, cli,
4692 client_get_cur_dir(), &targetcli,
4693 &targetpath);
4694 if (!NT_STATUS_IS_OK(status)) {
4695 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4696 return 1;
4699 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
4700 return 0;
4704 * set_remote_attr - set DOS attributes of a remote file
4705 * @filename: path to the file name
4706 * @new_attr: attribute bit mask to use
4707 * @mode: one of ATTR_SET or ATTR_UNSET
4709 * Update the file attributes with the one provided.
4711 int set_remote_attr(const char *filename, uint16_t new_attr, int mode)
4713 extern struct cli_state *cli;
4714 uint16_t old_attr;
4715 NTSTATUS status;
4717 status = cli_getatr(cli, filename, &old_attr, NULL, NULL);
4718 if (!NT_STATUS_IS_OK(status)) {
4719 d_printf("cli_getatr failed: %s\n", nt_errstr(status));
4720 return 1;
4723 if (mode == ATTR_SET) {
4724 new_attr |= old_attr;
4725 } else {
4726 new_attr = old_attr & ~new_attr;
4729 status = cli_setatr(cli, filename, new_attr, 0);
4730 if (!NT_STATUS_IS_OK(status)) {
4731 d_printf("cli_setatr failed: %s\n", nt_errstr(status));
4732 return 1;
4735 return 0;
4739 * cmd_setmode - interactive command to set DOS attributes
4741 * Read a filename and mode from the client command line and update
4742 * the file DOS attributes.
4744 int cmd_setmode(void)
4746 const extern char *cmd_ptr;
4747 char *buf;
4748 char *fname = NULL;
4749 uint16_t attr[2] = {0};
4750 int mode = ATTR_SET;
4751 int err = 0;
4752 bool ok;
4753 TALLOC_CTX *ctx = talloc_new(NULL);
4754 if (ctx == NULL) {
4755 return 1;
4758 ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
4759 if (!ok) {
4760 d_printf("setmode <filename> <[+|-]rsha>\n");
4761 err = 1;
4762 goto out;
4765 fname = talloc_asprintf(ctx,
4766 "%s%s",
4767 client_get_cur_dir(),
4768 buf);
4769 if (fname == NULL) {
4770 err = 1;
4771 goto out;
4774 while (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4775 const char *s = buf;
4777 while (*s) {
4778 switch (*s++) {
4779 case '+':
4780 mode = ATTR_SET;
4781 break;
4782 case '-':
4783 mode = ATTR_UNSET;
4784 break;
4785 case 'r':
4786 attr[mode] |= FILE_ATTRIBUTE_READONLY;
4787 break;
4788 case 'h':
4789 attr[mode] |= FILE_ATTRIBUTE_HIDDEN;
4790 break;
4791 case 's':
4792 attr[mode] |= FILE_ATTRIBUTE_SYSTEM;
4793 break;
4794 case 'a':
4795 attr[mode] |= FILE_ATTRIBUTE_ARCHIVE;
4796 break;
4797 default:
4798 d_printf("setmode <filename> <perm=[+|-]rsha>\n");
4799 err = 1;
4800 goto out;
4805 if (attr[ATTR_SET] == 0 && attr[ATTR_UNSET] == 0) {
4806 d_printf("setmode <filename> <[+|-]rsha>\n");
4807 err = 1;
4808 goto out;
4811 DEBUG(2, ("perm set %d %d\n", attr[ATTR_SET], attr[ATTR_UNSET]));
4813 /* ignore return value: server might not store DOS attributes */
4814 set_remote_attr(fname, attr[ATTR_SET], ATTR_SET);
4815 set_remote_attr(fname, attr[ATTR_UNSET], ATTR_UNSET);
4816 out:
4817 talloc_free(ctx);
4818 return err;
4821 /****************************************************************************
4822 iosize command
4823 ***************************************************************************/
4825 int cmd_iosize(void)
4827 TALLOC_CTX *ctx = talloc_tos();
4828 char *buf;
4829 int iosize;
4831 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4832 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
4833 if (!smb_encrypt) {
4834 d_printf("iosize <n> or iosize 0x<n>. "
4835 "Minimum is 0 (default), "
4836 "max is 16776960 (0xFFFF00)\n");
4837 } else {
4838 d_printf("iosize <n> or iosize 0x<n>. "
4839 "(Encrypted connection) ,"
4840 "Minimum is 0 (default), "
4841 "max is 130048 (0x1FC00)\n");
4843 } else {
4844 d_printf("iosize <n> or iosize 0x<n>.\n");
4846 return 1;
4849 iosize = strtol(buf,NULL,0);
4850 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
4851 if (smb_encrypt && (iosize < 0 || iosize > 0xFC00)) {
4852 d_printf("iosize out of range for encrypted "
4853 "connection (min = 0 (default), "
4854 "max = 130048 (0x1FC00)\n");
4855 return 1;
4856 } else if (!smb_encrypt && (iosize < 0 || iosize > 0xFFFF00)) {
4857 d_printf("iosize out of range (min = 0 (default), "
4858 "max = 16776960 (0xFFFF00)\n");
4859 return 1;
4863 io_bufsize = iosize;
4864 d_printf("iosize is now %d\n", io_bufsize);
4865 return 0;
4868 /****************************************************************************
4869 timeout command
4870 ***************************************************************************/
4872 static int cmd_timeout(void)
4874 TALLOC_CTX *ctx = talloc_tos();
4875 char *buf;
4877 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4878 unsigned int old_timeout = cli_set_timeout(cli, 0);
4879 cli_set_timeout(cli, old_timeout);
4880 d_printf("timeout <n> (per-operation timeout "
4881 "in seconds - currently %u).\n",
4882 old_timeout/1000);
4883 return 1;
4886 io_timeout = strtol(buf,NULL,0);
4887 cli_set_timeout(cli, io_timeout*1000);
4888 d_printf("io_timeout per operation is now %d\n", io_timeout);
4889 return 0;
4893 /****************************************************************************
4894 history
4895 ****************************************************************************/
4896 static int cmd_history(void)
4898 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4899 HIST_ENTRY **hlist;
4900 int i;
4902 hlist = history_list();
4904 for (i = 0; hlist && hlist[i]; i++) {
4905 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4907 #else
4908 DEBUG(0,("no history without readline support\n"));
4909 #endif
4911 return 0;
4914 /* Some constants for completing filename arguments */
4916 #define COMPL_NONE 0 /* No completions */
4917 #define COMPL_REMOTE 1 /* Complete remote filename */
4918 #define COMPL_LOCAL 2 /* Complete local filename */
4920 /* This defines the commands supported by this client.
4921 * NOTE: The "!" must be the last one in the list because it's fn pointer
4922 * field is NULL, and NULL in that field is used in process_tok()
4923 * (below) to indicate the end of the list. crh
4925 static struct {
4926 const char *name;
4927 int (*fn)(void);
4928 const char *description;
4929 char compl_args[2]; /* Completion argument info */
4930 } commands[] = {
4931 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4932 {"allinfo",cmd_allinfo,"<file> show all available info",
4933 {COMPL_NONE,COMPL_NONE}},
4934 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4935 {"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}},
4936 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4937 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4938 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4939 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4940 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4941 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_NONE}},
4942 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_NONE}},
4943 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_NONE}},
4944 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4945 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4946 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4947 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4948 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4949 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4950 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_NONE}},
4951 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4952 {COMPL_REMOTE, COMPL_NONE}},
4953 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4954 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4955 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4956 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4957 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4958 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4959 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4960 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4961 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4962 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4963 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4964 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4965 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4966 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4967 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4968 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4969 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4970 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4971 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4972 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4973 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4974 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4975 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4976 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4977 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4978 {"posix_whoami",cmd_posix_whoami,"retun logged on user information "
4979 "using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4980 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4981 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4982 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4983 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4984 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4985 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4986 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4987 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4988 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4989 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4990 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4991 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4992 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4993 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4994 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_REMOTE,COMPL_NONE}},
4995 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4996 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4997 {COMPL_REMOTE, COMPL_LOCAL}},
4998 {"setmode",cmd_setmode,"<file name> <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4999 {"scopy",cmd_scopy,"<src> <dest> server-side copy file",{COMPL_REMOTE,COMPL_REMOTE}},
5000 {"stat",cmd_stat,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_NONE}},
5001 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
5002 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
5003 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
5004 {"timeout",cmd_timeout,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE,COMPL_NONE}},
5005 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
5006 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
5007 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
5008 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
5009 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
5010 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
5011 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
5012 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
5013 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
5014 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
5015 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
5016 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
5017 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
5019 /* Yes, this must be here, see crh's comment above. */
5020 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
5021 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
5024 /*******************************************************************
5025 Lookup a command string in the list of commands, including
5026 abbreviations.
5027 ******************************************************************/
5029 static int process_tok(char *tok)
5031 int i = 0, matches = 0;
5032 int cmd=0;
5033 int tok_len = strlen(tok);
5035 while (commands[i].fn != NULL) {
5036 if (strequal(commands[i].name,tok)) {
5037 matches = 1;
5038 cmd = i;
5039 break;
5040 } else if (strnequal(commands[i].name, tok, tok_len)) {
5041 matches++;
5042 cmd = i;
5044 i++;
5047 if (matches == 0)
5048 return(-1);
5049 else if (matches == 1)
5050 return(cmd);
5051 else
5052 return(-2);
5055 /****************************************************************************
5056 Help.
5057 ****************************************************************************/
5059 static int cmd_help(void)
5061 TALLOC_CTX *ctx = talloc_tos();
5062 int i=0,j;
5063 char *buf;
5065 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
5066 if ((i = process_tok(buf)) >= 0)
5067 d_printf("HELP %s:\n\t%s\n\n",
5068 commands[i].name,commands[i].description);
5069 } else {
5070 while (commands[i].description) {
5071 for (j=0; commands[i].description && (j<5); j++) {
5072 d_printf("%-15s",commands[i].name);
5073 i++;
5075 d_printf("\n");
5078 return 0;
5081 /****************************************************************************
5082 Process a -c command string.
5083 ****************************************************************************/
5085 static int process_command_string(const char *cmd_in)
5087 TALLOC_CTX *ctx = talloc_tos();
5088 char *cmd = talloc_strdup(ctx, cmd_in);
5089 int rc = 0;
5091 if (!cmd) {
5092 return 1;
5094 /* establish the connection if not already */
5096 if (!cli) {
5097 NTSTATUS status;
5099 status = cli_cm_open(talloc_tos(), NULL,
5100 have_ip ? dest_ss_str : desthost,
5101 service, auth_info,
5102 true, smb_encrypt,
5103 max_protocol, port, name_type,
5104 &cli);
5105 if (!NT_STATUS_IS_OK(status)) {
5106 return 1;
5108 cli_set_timeout(cli, io_timeout*1000);
5111 while (cmd[0] != '\0') {
5112 char *line;
5113 char *p;
5114 char *tok;
5115 int i;
5117 if ((p = strchr_m(cmd, ';')) == 0) {
5118 line = cmd;
5119 cmd += strlen(cmd);
5120 } else {
5121 *p = '\0';
5122 line = cmd;
5123 cmd = p + 1;
5126 /* and get the first part of the command */
5127 cmd_ptr = line;
5128 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
5129 continue;
5132 if ((i = process_tok(tok)) >= 0) {
5133 rc = commands[i].fn();
5134 } else if (i == -2) {
5135 d_printf("%s: command abbreviation ambiguous\n",tok);
5136 } else {
5137 d_printf("%s: command not found\n",tok);
5141 return rc;
5144 #define MAX_COMPLETIONS 100
5146 struct completion_remote {
5147 char *dirmask;
5148 char **matches;
5149 int count, samelen;
5150 const char *text;
5151 int len;
5154 static NTSTATUS completion_remote_filter(const char *mnt,
5155 struct file_info *f,
5156 const char *mask,
5157 void *state)
5159 struct completion_remote *info = (struct completion_remote *)state;
5161 if (info->count >= MAX_COMPLETIONS - 1) {
5162 return NT_STATUS_OK;
5164 if (strncmp(info->text, f->name, info->len) != 0) {
5165 return NT_STATUS_OK;
5167 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
5168 return NT_STATUS_OK;
5171 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
5172 info->matches[info->count] = SMB_STRDUP(f->name);
5173 else {
5174 TALLOC_CTX *ctx = talloc_stackframe();
5175 char *tmp;
5177 tmp = talloc_strdup(ctx,info->dirmask);
5178 if (!tmp) {
5179 TALLOC_FREE(ctx);
5180 return NT_STATUS_NO_MEMORY;
5182 tmp = talloc_asprintf_append(tmp, "%s", f->name);
5183 if (!tmp) {
5184 TALLOC_FREE(ctx);
5185 return NT_STATUS_NO_MEMORY;
5187 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
5188 tmp = talloc_asprintf_append(tmp, "%s",
5189 CLI_DIRSEP_STR);
5191 if (!tmp) {
5192 TALLOC_FREE(ctx);
5193 return NT_STATUS_NO_MEMORY;
5195 info->matches[info->count] = SMB_STRDUP(tmp);
5196 TALLOC_FREE(ctx);
5198 if (info->matches[info->count] == NULL) {
5199 return NT_STATUS_OK;
5201 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
5202 smb_readline_ca_char(0);
5204 if (info->count == 1) {
5205 info->samelen = strlen(info->matches[info->count]);
5206 } else {
5207 while (strncmp(info->matches[info->count],
5208 info->matches[info->count-1],
5209 info->samelen) != 0) {
5210 info->samelen--;
5213 info->count++;
5214 return NT_STATUS_OK;
5217 static char **remote_completion(const char *text, int len)
5219 TALLOC_CTX *ctx = talloc_stackframe();
5220 char *dirmask = NULL;
5221 char *targetpath = NULL;
5222 struct cli_state *targetcli = NULL;
5223 int i;
5224 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
5225 NTSTATUS status;
5227 /* can't have non-static initialisation on Sun CC, so do it
5228 at run time here */
5229 info.samelen = len;
5230 info.text = text;
5231 info.len = len;
5233 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
5234 if (!info.matches) {
5235 TALLOC_FREE(ctx);
5236 return NULL;
5240 * We're leaving matches[0] free to fill it later with the text to
5241 * display: Either the one single match or the longest common subset
5242 * of the matches.
5244 info.matches[0] = NULL;
5245 info.count = 1;
5247 for (i = len-1; i >= 0; i--) {
5248 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
5249 break;
5253 info.text = text+i+1;
5254 info.samelen = info.len = len-i-1;
5256 if (i > 0) {
5257 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
5258 if (!info.dirmask) {
5259 goto cleanup;
5261 strncpy(info.dirmask, text, i+1);
5262 info.dirmask[i+1] = 0;
5263 dirmask = talloc_asprintf(ctx,
5264 "%s%*s*",
5265 client_get_cur_dir(),
5266 i-1,
5267 text);
5268 } else {
5269 info.dirmask = SMB_STRDUP("");
5270 if (!info.dirmask) {
5271 goto cleanup;
5273 dirmask = talloc_asprintf(ctx,
5274 "%s*",
5275 client_get_cur_dir());
5277 if (!dirmask) {
5278 goto cleanup;
5281 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
5282 &targetpath);
5283 if (!NT_STATUS_IS_OK(status)) {
5284 goto cleanup;
5286 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
5287 completion_remote_filter, (void *)&info);
5288 if (!NT_STATUS_IS_OK(status)) {
5289 goto cleanup;
5292 if (info.count == 1) {
5294 * No matches at all, NULL indicates there is nothing
5296 SAFE_FREE(info.matches[0]);
5297 SAFE_FREE(info.matches);
5298 TALLOC_FREE(ctx);
5299 return NULL;
5302 if (info.count == 2) {
5304 * Exactly one match in matches[1], indicate this is the one
5305 * in matches[0].
5307 info.matches[0] = info.matches[1];
5308 info.matches[1] = NULL;
5309 info.count -= 1;
5310 TALLOC_FREE(ctx);
5311 return info.matches;
5315 * We got more than one possible match, set the result to the maximum
5316 * common subset
5319 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
5320 info.matches[info.count] = NULL;
5321 TALLOC_FREE(ctx);
5322 return info.matches;
5324 cleanup:
5325 for (i = 0; i < info.count; i++) {
5326 SAFE_FREE(info.matches[i]);
5328 SAFE_FREE(info.matches);
5329 SAFE_FREE(info.dirmask);
5330 TALLOC_FREE(ctx);
5331 return NULL;
5334 static char **completion_fn(const char *text, int start, int end)
5336 smb_readline_ca_char(' ');
5338 if (start) {
5339 const char *buf, *sp;
5340 int i;
5341 char compl_type;
5343 buf = smb_readline_get_line_buffer();
5344 if (buf == NULL)
5345 return NULL;
5347 sp = strchr(buf, ' ');
5348 if (sp == NULL)
5349 return NULL;
5351 for (i = 0; commands[i].name; i++) {
5352 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5353 (commands[i].name[sp - buf] == 0)) {
5354 break;
5357 if (commands[i].name == NULL)
5358 return NULL;
5360 while (*sp == ' ')
5361 sp++;
5363 if (sp == (buf + start))
5364 compl_type = commands[i].compl_args[0];
5365 else
5366 compl_type = commands[i].compl_args[1];
5368 if (compl_type == COMPL_REMOTE)
5369 return remote_completion(text, end - start);
5370 else /* fall back to local filename completion */
5371 return NULL;
5372 } else {
5373 char **matches;
5374 int i, len, samelen = 0, count=1;
5376 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5377 if (!matches) {
5378 return NULL;
5380 matches[0] = NULL;
5382 len = strlen(text);
5383 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5384 if (strncmp(text, commands[i].name, len) == 0) {
5385 matches[count] = SMB_STRDUP(commands[i].name);
5386 if (!matches[count])
5387 goto cleanup;
5388 if (count == 1)
5389 samelen = strlen(matches[count]);
5390 else
5391 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5392 samelen--;
5393 count++;
5397 switch (count) {
5398 case 0: /* should never happen */
5399 case 1:
5400 goto cleanup;
5401 case 2:
5402 matches[0] = SMB_STRDUP(matches[1]);
5403 break;
5404 default:
5405 matches[0] = (char *)SMB_MALLOC(samelen+1);
5406 if (!matches[0])
5407 goto cleanup;
5408 strncpy(matches[0], matches[1], samelen);
5409 matches[0][samelen] = 0;
5411 matches[count] = NULL;
5412 return matches;
5414 cleanup:
5415 for (i = 0; i < count; i++)
5416 free(matches[i]);
5418 free(matches);
5419 return NULL;
5423 static bool finished;
5425 /****************************************************************************
5426 Make sure we swallow keepalives during idle time.
5427 ****************************************************************************/
5429 static void readline_callback(void)
5431 static time_t last_t;
5432 struct timespec now;
5433 time_t t;
5434 NTSTATUS status;
5435 unsigned char garbage[16];
5437 clock_gettime_mono(&now);
5438 t = now.tv_sec;
5440 if (t - last_t < 5)
5441 return;
5443 last_t = t;
5445 /* Ping the server to keep the connection alive using SMBecho. */
5446 memset(garbage, 0xf0, sizeof(garbage));
5447 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5448 if (NT_STATUS_IS_OK(status)) {
5449 return;
5452 if (!cli_state_is_connected(cli)) {
5453 DEBUG(0,("SMBecho failed (%s). The connection is "
5454 "disconnected now\n", nt_errstr(status)));
5455 finished = true;
5456 smb_readline_done();
5460 /****************************************************************************
5461 Process commands on stdin.
5462 ****************************************************************************/
5464 static int process_stdin(void)
5466 int rc = 0;
5468 while (!finished) {
5469 TALLOC_CTX *frame = talloc_stackframe();
5470 char *tok = NULL;
5471 char *the_prompt = NULL;
5472 char *line = NULL;
5473 int i;
5475 /* display a prompt */
5476 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5477 TALLOC_FREE(frame);
5478 break;
5480 line = smb_readline(the_prompt, readline_callback, completion_fn);
5481 SAFE_FREE(the_prompt);
5482 if (!line) {
5483 TALLOC_FREE(frame);
5484 break;
5487 /* special case - first char is ! */
5488 if (*line == '!') {
5489 if (system(line + 1) == -1) {
5490 d_printf("system() command %s failed.\n",
5491 line+1);
5493 SAFE_FREE(line);
5494 TALLOC_FREE(frame);
5495 continue;
5498 /* and get the first part of the command */
5499 cmd_ptr = line;
5500 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5501 TALLOC_FREE(frame);
5502 SAFE_FREE(line);
5503 continue;
5506 if ((i = process_tok(tok)) >= 0) {
5507 rc = commands[i].fn();
5508 } else if (i == -2) {
5509 d_printf("%s: command abbreviation ambiguous\n",tok);
5510 } else {
5511 d_printf("%s: command not found\n",tok);
5513 SAFE_FREE(line);
5514 TALLOC_FREE(frame);
5516 return rc;
5519 /****************************************************************************
5520 Process commands from the client.
5521 ****************************************************************************/
5523 static int process(const char *base_directory)
5525 int rc = 0;
5526 NTSTATUS status;
5528 status = cli_cm_open(talloc_tos(), NULL,
5529 have_ip ? dest_ss_str : desthost,
5530 service, auth_info, true, smb_encrypt,
5531 max_protocol, port, name_type, &cli);
5532 if (!NT_STATUS_IS_OK(status)) {
5533 return 1;
5536 cli_set_timeout(cli, io_timeout*1000);
5538 if (base_directory && *base_directory) {
5539 rc = do_cd(base_directory);
5540 if (rc) {
5541 cli_shutdown(cli);
5542 return rc;
5546 if (cmdstr) {
5547 rc = process_command_string(cmdstr);
5548 } else {
5549 process_stdin();
5552 cli_shutdown(cli);
5553 return rc;
5556 /****************************************************************************
5557 Handle a -L query.
5558 ****************************************************************************/
5560 static int do_host_query(const char *query_host)
5562 NTSTATUS status;
5564 status = cli_cm_open(talloc_tos(), NULL,
5565 have_ip ? dest_ss_str : query_host,
5566 "IPC$", auth_info, true, smb_encrypt,
5567 max_protocol, port, name_type, &cli);
5568 if (!NT_STATUS_IS_OK(status)) {
5569 return 1;
5572 cli_set_timeout(cli, io_timeout*1000);
5573 browse_host(true);
5575 /* Ensure that the host can do IPv4 */
5577 if (!interpret_addr(query_host)) {
5578 struct sockaddr_storage ss;
5579 if (interpret_string_addr(&ss, query_host, 0) &&
5580 (ss.ss_family != AF_INET)) {
5581 d_printf("%s is an IPv6 address -- no workgroup available\n",
5582 query_host);
5583 return 1;
5587 if (port != NBT_SMB_PORT) {
5589 /* Workgroups simply don't make sense over anything
5590 else but port 139... */
5592 cli_shutdown(cli);
5593 status = cli_cm_open(talloc_tos(), NULL,
5594 have_ip ? dest_ss_str : query_host,
5595 "IPC$", auth_info, true, smb_encrypt,
5596 max_protocol, NBT_SMB_PORT, name_type,
5597 &cli);
5598 if (!NT_STATUS_IS_OK(status)) {
5599 cli = NULL;
5603 if (cli == NULL) {
5604 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5605 return 0;
5608 cli_set_timeout(cli, io_timeout*1000);
5609 list_servers(lp_workgroup());
5611 cli_shutdown(cli);
5613 return(0);
5616 /****************************************************************************
5617 Handle a tar operation.
5618 ****************************************************************************/
5620 static int do_tar_op(const char *base_directory)
5622 struct tar *tar_ctx = tar_get_ctx();
5623 int ret = 0;
5625 /* do we already have a connection? */
5626 if (!cli) {
5627 NTSTATUS status;
5629 status = cli_cm_open(talloc_tos(), NULL,
5630 have_ip ? dest_ss_str : desthost,
5631 service, auth_info, true, smb_encrypt,
5632 max_protocol, port, name_type, &cli);
5633 if (!NT_STATUS_IS_OK(status)) {
5634 ret = 1;
5635 goto out;
5637 cli_set_timeout(cli, io_timeout*1000);
5640 recurse = true;
5642 if (base_directory && *base_directory) {
5643 ret = do_cd(base_directory);
5644 if (ret) {
5645 goto out_cli;
5649 ret = tar_process(tar_ctx);
5651 out_cli:
5652 cli_shutdown(cli);
5653 out:
5654 return ret;
5657 /****************************************************************************
5658 Handle a message operation.
5659 ****************************************************************************/
5661 static int do_message_op(struct user_auth_info *a_info)
5663 NTSTATUS status;
5665 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5666 port ? port : NBT_SMB_PORT, name_type,
5667 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5668 if (!NT_STATUS_IS_OK(status)) {
5669 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5670 return 1;
5673 cli_set_timeout(cli, io_timeout*1000);
5674 send_message(get_cmdline_auth_info_username(a_info));
5675 cli_shutdown(cli);
5677 return 0;
5680 /****************************************************************************
5681 main program
5682 ****************************************************************************/
5684 int main(int argc,char *argv[])
5686 const char **const_argv = discard_const_p(const char *, argv);
5687 char *base_directory = NULL;
5688 int opt;
5689 char *query_host = NULL;
5690 bool message = false;
5691 static const char *new_name_resolve_order = NULL;
5692 poptContext pc;
5693 char *p;
5694 int rc = 0;
5695 bool tar_opt = false;
5696 bool service_opt = false;
5697 struct tar *tar_ctx = tar_get_ctx();
5699 struct poptOption long_options[] = {
5700 POPT_AUTOHELP
5702 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5703 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5704 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5705 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5706 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5707 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5708 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5709 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5710 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5711 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5712 { "timeout", 't', POPT_ARG_INT, &io_timeout, 'b', "Changes the per-operation timeout", "SECONDS" },
5713 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5714 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5715 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5716 POPT_COMMON_SAMBA
5717 POPT_COMMON_CONNECTION
5718 POPT_COMMON_CREDENTIALS
5719 POPT_TABLEEND
5721 TALLOC_CTX *frame = talloc_stackframe();
5723 if (!client_set_cur_dir("\\")) {
5724 exit(ENOMEM);
5727 /* set default debug level to 1 regardless of what smb.conf sets */
5728 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5729 smb_init_locale();
5731 lp_set_cmdline("log level", "1");
5733 auth_info = user_auth_info_init(frame);
5734 if (auth_info == NULL) {
5735 exit(1);
5737 popt_common_set_auth_info(auth_info);
5739 /* skip argv(0) */
5740 pc = poptGetContext("smbclient", argc, const_argv, long_options, 0);
5741 poptSetOtherOptionHelp(pc, "service <password>");
5743 while ((opt = poptGetNextOpt(pc)) != -1) {
5745 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5746 /* I see no other way to keep things sane --SSS */
5747 if (tar_opt == true) {
5748 while (poptPeekArg(pc)) {
5749 poptGetArg(pc);
5751 tar_opt = false;
5754 /* if the service has not yet been specified lets see if it is available in the popt stack */
5755 if (!service_opt && poptPeekArg(pc)) {
5756 service = talloc_strdup(frame, poptGetArg(pc));
5757 if (!service) {
5758 exit(ENOMEM);
5760 service_opt = true;
5763 /* if the service has already been retrieved then check if we have also a password */
5764 if (service_opt
5765 && (!get_cmdline_auth_info_got_pass(auth_info))
5766 && poptPeekArg(pc)) {
5767 set_cmdline_auth_info_password(auth_info,
5768 poptGetArg(pc));
5772 switch (opt) {
5773 case 'M':
5774 /* Messages are sent to NetBIOS name type 0x3
5775 * (Messenger Service). Make sure we default
5776 * to port 139 instead of port 445. srl,crh
5778 name_type = 0x03;
5779 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5780 if (!desthost) {
5781 exit(ENOMEM);
5783 if( !port )
5784 port = NBT_SMB_PORT;
5785 message = true;
5786 break;
5787 case 'I':
5789 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5790 exit(1);
5792 have_ip = true;
5793 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5795 break;
5796 case 'E':
5797 setup_logging("smbclient", DEBUG_STDERR );
5798 display_set_stderr();
5799 break;
5801 case 'L':
5802 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5803 if (!query_host) {
5804 exit(ENOMEM);
5806 break;
5807 case 'm':
5808 lp_set_cmdline("client max protocol", poptGetOptArg(pc));
5809 break;
5810 case 'T':
5811 /* We must use old option processing for this. Find the
5812 * position of the -T option in the raw argv[]. */
5814 int i;
5816 for (i = 1; i < argc; i++) {
5817 if (strncmp("-T", argv[i],2)==0)
5818 break;
5820 i++;
5821 if (tar_parse_args(tar_ctx, poptGetOptArg(pc),
5822 const_argv + i, argc - i)) {
5823 poptPrintUsage(pc, stderr, 0);
5824 exit(1);
5827 /* this must be the last option, mark we have parsed it so that we know we have */
5828 tar_opt = true;
5829 break;
5830 case 'D':
5831 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5832 if (!base_directory) {
5833 exit(ENOMEM);
5835 break;
5836 case 'g':
5837 grepable=true;
5838 break;
5839 case 'e':
5840 smb_encrypt=true;
5841 break;
5842 case 'B':
5843 return(do_smb_browse());
5848 /* We may still have some leftovers after the last popt option has been called */
5849 if (tar_opt == true) {
5850 while (poptPeekArg(pc)) {
5851 poptGetArg(pc);
5853 tar_opt = false;
5856 /* if the service has not yet been specified lets see if it is available in the popt stack */
5857 if (!service_opt && poptPeekArg(pc)) {
5858 service = talloc_strdup(frame,poptGetArg(pc));
5859 if (!service) {
5860 exit(ENOMEM);
5862 service_opt = true;
5865 /* if the service has already been retrieved then check if we have also a password */
5866 if (service_opt
5867 && !get_cmdline_auth_info_got_pass(auth_info)
5868 && poptPeekArg(pc)) {
5869 set_cmdline_auth_info_password(auth_info,
5870 poptGetArg(pc));
5873 if ( override_logfile )
5874 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE );
5876 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5877 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5878 argv[0], get_dyn_CONFIGFILE());
5881 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5882 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5883 exit(-1);
5886 load_interfaces();
5888 if (service_opt && service) {
5889 size_t len;
5891 /* Convert any '/' characters in the service name to '\' characters */
5892 string_replace(service, '/','\\');
5893 if (count_chars(service,'\\') < 3) {
5894 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5895 poptPrintUsage(pc, stderr, 0);
5896 exit(1);
5898 /* Remove trailing slashes */
5899 len = strlen(service);
5900 while(len > 0 && service[len - 1] == '\\') {
5901 --len;
5902 service[len] = '\0';
5906 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5907 if (!init_names()) {
5908 fprintf(stderr, "init_names() failed\n");
5909 exit(1);
5912 if(new_name_resolve_order)
5913 lp_set_cmdline("name resolve order", new_name_resolve_order);
5915 if (!tar_to_process(tar_ctx) && !query_host && !service && !message) {
5916 poptPrintUsage(pc, stderr, 0);
5917 exit(1);
5920 poptFreeContext(pc);
5921 popt_burn_cmdline_password(argc, argv);
5923 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5925 /* Ensure we have a password (or equivalent). */
5926 set_cmdline_auth_info_getpass(auth_info);
5928 max_protocol = lp_client_max_protocol();
5930 if (tar_to_process(tar_ctx)) {
5931 if (cmdstr)
5932 process_command_string(cmdstr);
5933 rc = do_tar_op(base_directory);
5934 } else if (query_host && *query_host) {
5935 char *qhost = query_host;
5936 char *slash;
5938 while (*qhost == '\\' || *qhost == '/')
5939 qhost++;
5941 if ((slash = strchr_m(qhost, '/'))
5942 || (slash = strchr_m(qhost, '\\'))) {
5943 *slash = 0;
5946 if ((p=strchr_m(qhost, '#'))) {
5947 *p = 0;
5948 p++;
5949 sscanf(p, "%x", &name_type);
5952 rc = do_host_query(qhost);
5953 } else if (message) {
5954 rc = do_message_op(auth_info);
5955 } else if (process(base_directory)) {
5956 rc = 1;
5959 TALLOC_FREE(frame);
5960 return rc;