dbwrap: add parse_record_send/recv to struct db_context
[Samba.git] / source3 / client / client.c
blobd2ebea0ad39995bd2bc12deaac4c242af80991c8
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, FILE *f)
222 int i;
223 int c;
225 if (!translation)
226 return fread(b,1,n,f);
228 i = 0;
229 while (i < (n - 1)) {
230 if ((c = 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 FILE *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 (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 = NULL;
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;
1786 * In order to get shadow copy data over SMB1 we
1787 * must call twice, once with 'get_names = false'
1788 * to get the size, then again with 'get_names = true'
1789 * to get the data or a Windows server fails to return
1790 * valid info. Samba doesn't have this bug. JRA.
1793 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1794 false, &snapshots, &num_snapshots);
1795 if (!NT_STATUS_IS_OK(status)) {
1796 cli_close(cli, fnum);
1797 return 0;
1799 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1800 true, &snapshots, &num_snapshots);
1801 if (!NT_STATUS_IS_OK(status)) {
1802 cli_close(cli, fnum);
1803 return 0;
1806 for (i=0; i<num_snapshots; i++) {
1807 char *snap_name;
1809 d_printf("%s\n", snapshots[i]);
1810 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1811 snapshots[i], name);
1812 status = cli_qpathinfo3(cli, snap_name, &b_time, &a_time,
1813 &m_time, &c_time, &size,
1814 NULL, NULL);
1815 if (!NT_STATUS_IS_OK(status)) {
1816 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1817 snap_name, nt_errstr(status));
1818 TALLOC_FREE(snap_name);
1819 continue;
1821 tmp = unix_timespec_to_nt_time(b_time);
1822 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1823 tmp = unix_timespec_to_nt_time(a_time);
1824 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1825 tmp =unix_timespec_to_nt_time(m_time);
1826 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1827 tmp = unix_timespec_to_nt_time(c_time);
1828 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1829 d_printf("size: %d\n", (int)size);
1832 TALLOC_FREE(snapshots);
1833 cli_close(cli, fnum);
1835 return 0;
1838 /****************************************************************************
1839 Show all info we can get
1840 ****************************************************************************/
1842 static int cmd_allinfo(void)
1844 TALLOC_CTX *ctx = talloc_tos();
1845 char *name;
1846 char *buf;
1848 name = talloc_strdup(ctx, client_get_cur_dir());
1849 if (!name) {
1850 return 1;
1853 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1854 d_printf("allinfo <file>\n");
1855 return 1;
1857 name = talloc_asprintf_append(name, "%s", buf);
1858 if (!name) {
1859 return 1;
1862 do_allinfo(name);
1864 return 0;
1867 /****************************************************************************
1868 Put a single file.
1869 ****************************************************************************/
1871 static int do_put(const char *rname, const char *lname, bool reput)
1873 TALLOC_CTX *ctx = talloc_tos();
1874 uint16_t fnum;
1875 FILE *f;
1876 off_t start = 0;
1877 int rc = 0;
1878 struct timespec tp_start;
1879 struct cli_state *targetcli;
1880 char *targetname = NULL;
1881 struct push_state state;
1882 NTSTATUS status;
1884 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1885 &targetcli, &targetname);
1886 if (!NT_STATUS_IS_OK(status)) {
1887 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1888 return 1;
1891 clock_gettime_mono(&tp_start);
1893 if (reput) {
1894 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1895 if (NT_STATUS_IS_OK(status)) {
1896 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1897 targetcli, fnum, NULL,
1898 &start, NULL, NULL,
1899 NULL, NULL, NULL)) &&
1900 !NT_STATUS_IS_OK(status = cli_getattrE(
1901 targetcli, fnum, NULL,
1902 &start, NULL, NULL,
1903 NULL))) {
1904 d_printf("getattrib: %s\n", nt_errstr(status));
1905 return 1;
1908 } else {
1909 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1912 if (!NT_STATUS_IS_OK(status)) {
1913 d_printf("%s opening remote file %s\n", nt_errstr(status),
1914 rname);
1915 return 1;
1918 /* allow files to be piped into smbclient
1919 jdblair 24.jun.98
1921 Note that in this case this function will exit(0) rather
1922 than returning. */
1923 if (!strcmp(lname, "-")) {
1924 f = stdin;
1925 /* size of file is not known */
1926 } else {
1927 f = fopen(lname, "r");
1928 if (f && reput) {
1929 if (fseek(f, start, SEEK_SET) == -1) {
1930 d_printf("Error seeking local file\n");
1931 fclose(f);
1932 return 1;
1937 if (!f) {
1938 d_printf("Error opening local file %s\n",lname);
1939 return 1;
1942 DEBUG(1,("putting file %s as %s ",lname,
1943 rname));
1945 setvbuf(f, NULL, _IOFBF, io_bufsize);
1947 state.f = f;
1948 state.nread = 0;
1950 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1951 &state);
1952 if (!NT_STATUS_IS_OK(status)) {
1953 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1954 rc = 1;
1957 status = cli_close(targetcli, fnum);
1958 if (!NT_STATUS_IS_OK(status)) {
1959 d_printf("%s closing remote file %s\n", nt_errstr(status),
1960 rname);
1961 if (f != stdin) {
1962 fclose(f);
1964 return 1;
1967 if (f != stdin) {
1968 fclose(f);
1972 struct timespec tp_end;
1973 int this_time;
1975 clock_gettime_mono(&tp_end);
1976 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1977 put_total_time_ms += this_time;
1978 put_total_size += state.nread;
1980 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1981 state.nread / (1.024*this_time + 1.0e-4),
1982 put_total_size / (1.024*put_total_time_ms)));
1985 if (f == stdin) {
1986 cli_shutdown(cli);
1987 exit(rc);
1990 return rc;
1993 /****************************************************************************
1994 Put a file.
1995 ****************************************************************************/
1997 static int cmd_put(void)
1999 TALLOC_CTX *ctx = talloc_tos();
2000 char *lname;
2001 char *rname;
2002 char *buf;
2004 rname = talloc_strdup(ctx, client_get_cur_dir());
2005 if (!rname) {
2006 return 1;
2009 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
2010 d_printf("put <filename>\n");
2011 return 1;
2014 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2015 rname = talloc_asprintf_append(rname, "%s", buf);
2016 } else {
2017 rname = talloc_asprintf_append(rname, "%s", lname);
2019 if (!rname) {
2020 return 1;
2023 rname = clean_name(ctx, rname);
2024 if (!rname) {
2025 return 1;
2029 SMB_STRUCT_STAT st;
2030 /* allow '-' to represent stdin
2031 jdblair, 24.jun.98 */
2032 if (!file_exist_stat(lname, &st, false) &&
2033 (strcmp(lname,"-"))) {
2034 d_printf("%s does not exist\n",lname);
2035 return 1;
2039 return do_put(rname, lname, false);
2042 /*************************************
2043 File list structure.
2044 *************************************/
2046 static struct file_list {
2047 struct file_list *prev, *next;
2048 char *file_path;
2049 bool isdir;
2050 } *file_list;
2052 /****************************************************************************
2053 Free a file_list structure.
2054 ****************************************************************************/
2056 static void free_file_list (struct file_list *l_head)
2058 struct file_list *list, *next;
2060 for (list = l_head; list; list = next) {
2061 next = list->next;
2062 DLIST_REMOVE(l_head, list);
2063 SAFE_FREE(list->file_path);
2064 SAFE_FREE(list);
2068 /****************************************************************************
2069 Seek in a directory/file list until you get something that doesn't start with
2070 the specified name.
2071 ****************************************************************************/
2073 static bool seek_list(struct file_list *list, char *name)
2075 while (list) {
2076 trim_string(list->file_path,"./","\n");
2077 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2078 return true;
2080 list = list->next;
2083 return false;
2086 /****************************************************************************
2087 Set the file selection mask.
2088 ****************************************************************************/
2090 static int cmd_select(void)
2092 TALLOC_CTX *ctx = talloc_tos();
2093 char *new_fs = NULL;
2094 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2096 if (new_fs) {
2097 client_set_fileselection(new_fs);
2098 } else {
2099 client_set_fileselection("");
2101 return 0;
2104 /****************************************************************************
2105 Recursive file matching function act as find
2106 match must be always set to true when calling this function
2107 ****************************************************************************/
2109 static int file_find(struct file_list **list, const char *directory,
2110 const char *expression, bool match)
2112 DIR *dir;
2113 struct file_list *entry;
2114 struct stat statbuf;
2115 int ret;
2116 char *path;
2117 bool isdir;
2118 const char *dname;
2120 dir = opendir(directory);
2121 if (!dir)
2122 return -1;
2124 while ((dname = readdirname(dir))) {
2125 if (!strcmp("..", dname))
2126 continue;
2127 if (!strcmp(".", dname))
2128 continue;
2130 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2131 continue;
2134 isdir = false;
2135 if (!match || !gen_fnmatch(expression, dname)) {
2136 if (recurse) {
2137 ret = stat(path, &statbuf);
2138 if (ret == 0) {
2139 if (S_ISDIR(statbuf.st_mode)) {
2140 isdir = true;
2141 ret = file_find(list, path, expression, false);
2143 } else {
2144 d_printf("file_find: cannot stat file %s\n", path);
2147 if (ret == -1) {
2148 SAFE_FREE(path);
2149 closedir(dir);
2150 return -1;
2153 entry = SMB_MALLOC_P(struct file_list);
2154 if (!entry) {
2155 d_printf("Out of memory in file_find\n");
2156 closedir(dir);
2157 return -1;
2159 entry->file_path = path;
2160 entry->isdir = isdir;
2161 DLIST_ADD(*list, entry);
2162 } else {
2163 SAFE_FREE(path);
2167 closedir(dir);
2168 return 0;
2171 /****************************************************************************
2172 mput some files.
2173 ****************************************************************************/
2175 static int cmd_mput(void)
2177 TALLOC_CTX *ctx = talloc_tos();
2178 char *p = NULL;
2180 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2181 int ret;
2182 struct file_list *temp_list;
2183 char *quest, *lname, *rname;
2185 file_list = NULL;
2187 ret = file_find(&file_list, ".", p, true);
2188 if (ret) {
2189 free_file_list(file_list);
2190 continue;
2193 quest = NULL;
2194 lname = NULL;
2195 rname = NULL;
2197 for (temp_list = file_list; temp_list;
2198 temp_list = temp_list->next) {
2200 SAFE_FREE(lname);
2201 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2202 continue;
2204 trim_string(lname, "./", "/");
2206 /* check if it's a directory */
2207 if (temp_list->isdir) {
2208 /* if (!recurse) continue; */
2210 SAFE_FREE(quest);
2211 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2212 break;
2214 if (prompt && !yesno(quest)) { /* No */
2215 /* Skip the directory */
2216 lname[strlen(lname)-1] = '/';
2217 if (!seek_list(temp_list, lname))
2218 break;
2219 } else { /* Yes */
2220 SAFE_FREE(rname);
2221 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2222 break;
2224 normalize_name(rname);
2225 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2226 !do_mkdir(rname)) {
2227 DEBUG (0, ("Unable to make dir, skipping..."));
2228 /* Skip the directory */
2229 lname[strlen(lname)-1] = '/';
2230 if (!seek_list(temp_list, lname)) {
2231 break;
2235 continue;
2236 } else {
2237 SAFE_FREE(quest);
2238 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2239 break;
2241 if (prompt && !yesno(quest)) {
2242 /* No */
2243 continue;
2246 /* Yes */
2247 SAFE_FREE(rname);
2248 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2249 break;
2253 normalize_name(rname);
2255 do_put(rname, lname, false);
2257 free_file_list(file_list);
2258 SAFE_FREE(quest);
2259 SAFE_FREE(lname);
2260 SAFE_FREE(rname);
2263 return 0;
2266 /****************************************************************************
2267 Cancel a print job.
2268 ****************************************************************************/
2270 static int do_cancel(int job)
2272 if (cli_printjob_del(cli, job)) {
2273 d_printf("Job %d cancelled\n",job);
2274 return 0;
2275 } else {
2276 NTSTATUS status = cli_nt_error(cli);
2277 d_printf("Error cancelling job %d : %s\n",
2278 job, nt_errstr(status));
2279 return 1;
2283 /****************************************************************************
2284 Cancel a print job.
2285 ****************************************************************************/
2287 static int cmd_cancel(void)
2289 TALLOC_CTX *ctx = talloc_tos();
2290 char *buf = NULL;
2291 int job;
2293 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2294 d_printf("cancel <jobid> ...\n");
2295 return 1;
2297 do {
2298 job = atoi(buf);
2299 do_cancel(job);
2300 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2302 return 0;
2305 /****************************************************************************
2306 Print a file.
2307 ****************************************************************************/
2309 static int cmd_print(void)
2311 TALLOC_CTX *ctx = talloc_tos();
2312 char *lname = NULL;
2313 char *rname = NULL;
2314 char *p = NULL;
2316 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2317 d_printf("print <filename>\n");
2318 return 1;
2321 rname = talloc_strdup(ctx, lname);
2322 if (!rname) {
2323 return 1;
2325 p = strrchr_m(rname,'/');
2326 if (p) {
2327 rname = talloc_asprintf(ctx,
2328 "%s-%d",
2329 p+1,
2330 (int)getpid());
2332 if (strequal(lname,"-")) {
2333 rname = talloc_asprintf(ctx,
2334 "stdin-%d",
2335 (int)getpid());
2337 if (!rname) {
2338 return 1;
2341 return do_put(rname, lname, false);
2344 /****************************************************************************
2345 Show a print queue entry.
2346 ****************************************************************************/
2348 static void queue_fn(struct print_job_info *p)
2350 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2353 /****************************************************************************
2354 Show a print queue.
2355 ****************************************************************************/
2357 static int cmd_queue(void)
2359 cli_print_queue(cli, queue_fn);
2360 return 0;
2363 /****************************************************************************
2364 Delete some files.
2365 ****************************************************************************/
2367 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2368 const char *dir)
2370 TALLOC_CTX *ctx = talloc_tos();
2371 char *mask = NULL;
2372 NTSTATUS status;
2374 mask = talloc_asprintf(ctx,
2375 "%s%c%s",
2376 dir,
2377 CLI_DIRSEP_CHAR,
2378 finfo->name);
2379 if (!mask) {
2380 return NT_STATUS_NO_MEMORY;
2383 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2384 TALLOC_FREE(mask);
2385 return NT_STATUS_OK;
2388 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2389 if (!NT_STATUS_IS_OK(status)) {
2390 d_printf("%s deleting remote file %s\n",
2391 nt_errstr(status), mask);
2393 TALLOC_FREE(mask);
2394 return status;
2397 /****************************************************************************
2398 Delete some files.
2399 ****************************************************************************/
2401 static int cmd_del(void)
2403 TALLOC_CTX *ctx = talloc_tos();
2404 char *mask = NULL;
2405 char *buf = NULL;
2406 NTSTATUS status = NT_STATUS_OK;
2407 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2409 if (recurse) {
2410 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2413 mask = talloc_strdup(ctx, client_get_cur_dir());
2414 if (!mask) {
2415 return 1;
2417 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2418 d_printf("del <filename>\n");
2419 return 1;
2421 mask = talloc_asprintf_append(mask, "%s", buf);
2422 if (!mask) {
2423 return 1;
2426 status = do_list(mask,attribute,do_del,false,false);
2427 if (!NT_STATUS_IS_OK(status)) {
2428 return 1;
2430 return 0;
2433 /****************************************************************************
2434 Wildcard delete some files.
2435 ****************************************************************************/
2437 static int cmd_wdel(void)
2439 TALLOC_CTX *ctx = talloc_tos();
2440 char *mask = NULL;
2441 char *buf = NULL;
2442 uint16_t attribute;
2443 struct cli_state *targetcli;
2444 char *targetname = NULL;
2445 NTSTATUS status;
2447 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2448 d_printf("wdel 0x<attrib> <wcard>\n");
2449 return 1;
2452 attribute = (uint16_t)strtol(buf, (char **)NULL, 16);
2454 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2455 d_printf("wdel 0x<attrib> <wcard>\n");
2456 return 1;
2459 mask = talloc_asprintf(ctx, "%s%s",
2460 client_get_cur_dir(),
2461 buf);
2462 if (!mask) {
2463 return 1;
2466 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2467 &targetname);
2468 if (!NT_STATUS_IS_OK(status)) {
2469 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2470 return 1;
2473 status = cli_unlink(targetcli, targetname, attribute);
2474 if (!NT_STATUS_IS_OK(status)) {
2475 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2476 targetname);
2478 return 0;
2481 /****************************************************************************
2482 ****************************************************************************/
2484 static int cmd_open(void)
2486 TALLOC_CTX *ctx = talloc_tos();
2487 char *mask = NULL;
2488 char *buf = NULL;
2489 char *targetname = NULL;
2490 struct cli_state *targetcli;
2491 uint16_t fnum = (uint16_t)-1;
2492 NTSTATUS status;
2494 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2495 d_printf("open <filename>\n");
2496 return 1;
2498 mask = talloc_asprintf(ctx,
2499 "%s%s",
2500 client_get_cur_dir(),
2501 buf);
2502 if (!mask) {
2503 return 1;
2506 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2507 &targetname);
2508 if (!NT_STATUS_IS_OK(status)) {
2509 d_printf("open %s: %s\n", mask, nt_errstr(status));
2510 return 1;
2513 status = cli_ntcreate(targetcli, targetname, 0,
2514 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2515 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2516 0x0, 0x0, &fnum, NULL);
2517 if (!NT_STATUS_IS_OK(status)) {
2518 status = cli_ntcreate(targetcli, targetname, 0,
2519 FILE_READ_DATA, 0,
2520 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2521 0x0, 0x0, &fnum, NULL);
2522 if (NT_STATUS_IS_OK(status)) {
2523 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2524 } else {
2525 d_printf("Failed to open file %s. %s\n",
2526 targetname, nt_errstr(status));
2528 } else {
2529 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2531 return 0;
2534 static int cmd_posix_encrypt(void)
2536 TALLOC_CTX *ctx = talloc_tos();
2537 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2538 char *domain = NULL;
2539 char *user = NULL;
2540 char *password = NULL;
2541 struct cli_credentials *creds = NULL;
2542 struct cli_credentials *lcreds = NULL;
2544 if (next_token_talloc(ctx, &cmd_ptr, &domain, NULL)) {
2546 if (!next_token_talloc(ctx, &cmd_ptr, &user, NULL)) {
2547 d_printf("posix_encrypt domain user password\n");
2548 return 1;
2551 if (!next_token_talloc(ctx, &cmd_ptr, &password, NULL)) {
2552 d_printf("posix_encrypt domain user password\n");
2553 return 1;
2556 lcreds = cli_session_creds_init(ctx,
2557 user,
2558 domain,
2559 NULL, /* realm */
2560 password,
2561 false, /* use_kerberos */
2562 false, /* fallback_after_kerberos */
2563 false, /* use_ccache */
2564 false); /* password_is_nt_hash */
2565 if (lcreds == NULL) {
2566 d_printf("cli_session_creds_init() failed.\n");
2567 return -1;
2569 creds = lcreds;
2570 } else {
2571 bool auth_requested = false;
2573 creds = get_cmdline_auth_info_creds(auth_info);
2575 auth_requested = cli_credentials_authentication_requested(creds);
2576 if (!auth_requested) {
2577 d_printf("posix_encrypt domain user password\n");
2578 return 1;
2582 status = cli_smb1_setup_encryption(cli, creds);
2583 /* gensec currently references the creds so we can't free them here */
2584 talloc_unlink(ctx, lcreds);
2585 if (!NT_STATUS_IS_OK(status)) {
2586 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2587 } else {
2588 d_printf("encryption on\n");
2589 smb_encrypt = true;
2592 return 0;
2595 /****************************************************************************
2596 ****************************************************************************/
2598 static int cmd_posix_open(void)
2600 TALLOC_CTX *ctx = talloc_tos();
2601 char *mask = NULL;
2602 char *buf = NULL;
2603 char *targetname = NULL;
2604 struct cli_state *targetcli;
2605 mode_t mode;
2606 uint16_t fnum;
2607 NTSTATUS status;
2609 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2610 d_printf("posix_open <filename> 0<mode>\n");
2611 return 1;
2613 mask = talloc_asprintf(ctx,
2614 "%s%s",
2615 client_get_cur_dir(),
2616 buf);
2617 if (!mask) {
2618 return 1;
2621 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2622 d_printf("posix_open <filename> 0<mode>\n");
2623 return 1;
2625 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2627 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2628 &targetname);
2629 if (!NT_STATUS_IS_OK(status)) {
2630 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2631 return 1;
2634 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2635 &fnum);
2636 if (!NT_STATUS_IS_OK(status)) {
2637 status = cli_posix_open(targetcli, targetname,
2638 O_CREAT|O_RDONLY, mode, &fnum);
2639 if (!NT_STATUS_IS_OK(status)) {
2640 d_printf("Failed to open file %s. %s\n", targetname,
2641 nt_errstr(status));
2642 } else {
2643 d_printf("posix_open file %s: for readonly fnum %d\n",
2644 targetname, fnum);
2646 } else {
2647 d_printf("posix_open file %s: for read/write fnum %d\n",
2648 targetname, fnum);
2651 return 0;
2654 static int cmd_posix_mkdir(void)
2656 TALLOC_CTX *ctx = talloc_tos();
2657 char *mask = NULL;
2658 char *buf = NULL;
2659 char *targetname = NULL;
2660 struct cli_state *targetcli;
2661 mode_t mode;
2662 NTSTATUS status;
2664 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2665 d_printf("posix_mkdir <filename> 0<mode>\n");
2666 return 1;
2668 mask = talloc_asprintf(ctx,
2669 "%s%s",
2670 client_get_cur_dir(),
2671 buf);
2672 if (!mask) {
2673 return 1;
2676 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2677 d_printf("posix_mkdir <filename> 0<mode>\n");
2678 return 1;
2680 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2682 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2683 &targetname);
2684 if (!NT_STATUS_IS_OK(status)) {
2685 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2686 return 1;
2689 status = cli_posix_mkdir(targetcli, targetname, mode);
2690 if (!NT_STATUS_IS_OK(status)) {
2691 d_printf("Failed to open file %s. %s\n",
2692 targetname, nt_errstr(status));
2693 } else {
2694 d_printf("posix_mkdir created directory %s\n", targetname);
2696 return 0;
2699 static int cmd_posix_unlink(void)
2701 TALLOC_CTX *ctx = talloc_tos();
2702 char *mask = NULL;
2703 char *buf = NULL;
2704 char *targetname = NULL;
2705 struct cli_state *targetcli;
2706 NTSTATUS status;
2708 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2709 d_printf("posix_unlink <filename>\n");
2710 return 1;
2712 mask = talloc_asprintf(ctx,
2713 "%s%s",
2714 client_get_cur_dir(),
2715 buf);
2716 if (!mask) {
2717 return 1;
2720 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2721 &targetname);
2722 if (!NT_STATUS_IS_OK(status)) {
2723 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2724 return 1;
2727 status = cli_posix_unlink(targetcli, targetname);
2728 if (!NT_STATUS_IS_OK(status)) {
2729 d_printf("Failed to unlink file %s. %s\n",
2730 targetname, nt_errstr(status));
2731 } else {
2732 d_printf("posix_unlink deleted file %s\n", targetname);
2735 return 0;
2738 static int cmd_posix_rmdir(void)
2740 TALLOC_CTX *ctx = talloc_tos();
2741 char *mask = NULL;
2742 char *buf = NULL;
2743 char *targetname = NULL;
2744 struct cli_state *targetcli;
2745 NTSTATUS status;
2747 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2748 d_printf("posix_rmdir <filename>\n");
2749 return 1;
2751 mask = talloc_asprintf(ctx,
2752 "%s%s",
2753 client_get_cur_dir(),
2754 buf);
2755 if (!mask) {
2756 return 1;
2759 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2760 &targetname);
2761 if (!NT_STATUS_IS_OK(status)) {
2762 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2763 return 1;
2766 status = cli_posix_rmdir(targetcli, targetname);
2767 if (!NT_STATUS_IS_OK(status)) {
2768 d_printf("Failed to unlink directory %s. %s\n",
2769 targetname, nt_errstr(status));
2770 } else {
2771 d_printf("posix_rmdir deleted directory %s\n", targetname);
2774 return 0;
2777 static int cmd_close(void)
2779 TALLOC_CTX *ctx = talloc_tos();
2780 char *buf = NULL;
2781 int fnum;
2782 NTSTATUS status;
2784 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2785 d_printf("close <fnum>\n");
2786 return 1;
2789 fnum = atoi(buf);
2790 /* We really should use the targetcli here.... */
2791 status = cli_close(cli, fnum);
2792 if (!NT_STATUS_IS_OK(status)) {
2793 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2794 return 1;
2796 return 0;
2799 static int cmd_posix(void)
2801 TALLOC_CTX *ctx = talloc_tos();
2802 uint16_t major, minor;
2803 uint32_t caplow, caphigh;
2804 char *caps;
2805 NTSTATUS status;
2807 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2808 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2809 return 1;
2812 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2813 &caphigh);
2814 if (!NT_STATUS_IS_OK(status)) {
2815 d_printf("Can't get UNIX CIFS extensions version from "
2816 "server: %s\n", nt_errstr(status));
2817 return 1;
2820 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2822 caps = talloc_strdup(ctx, "");
2823 if (!caps) {
2824 return 1;
2826 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2827 caps = talloc_asprintf_append(caps, "locks ");
2828 if (!caps) {
2829 return 1;
2832 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2833 caps = talloc_asprintf_append(caps, "acls ");
2834 if (!caps) {
2835 return 1;
2838 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2839 caps = talloc_asprintf_append(caps, "eas ");
2840 if (!caps) {
2841 return 1;
2844 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2845 caps = talloc_asprintf_append(caps, "pathnames ");
2846 if (!caps) {
2847 return 1;
2850 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2851 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2852 if (!caps) {
2853 return 1;
2856 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2857 caps = talloc_asprintf_append(caps, "large_read ");
2858 if (!caps) {
2859 return 1;
2862 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2863 caps = talloc_asprintf_append(caps, "large_write ");
2864 if (!caps) {
2865 return 1;
2868 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2869 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2870 if (!caps) {
2871 return 1;
2874 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2875 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2876 if (!caps) {
2877 return 1;
2881 if (*caps && caps[strlen(caps)-1] == ' ') {
2882 caps[strlen(caps)-1] = '\0';
2885 d_printf("Server supports CIFS capabilities %s\n", caps);
2887 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2888 caplow, caphigh);
2889 if (!NT_STATUS_IS_OK(status)) {
2890 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2891 nt_errstr(status));
2892 return 1;
2895 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2896 CLI_DIRSEP_CHAR = '/';
2897 *CLI_DIRSEP_STR = '/';
2898 client_set_cur_dir(CLI_DIRSEP_STR);
2901 return 0;
2904 static int cmd_lock(void)
2906 TALLOC_CTX *ctx = talloc_tos();
2907 char *buf = NULL;
2908 uint64_t start, len;
2909 enum brl_type lock_type;
2910 int fnum;
2911 NTSTATUS status;
2913 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2914 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2915 return 1;
2917 fnum = atoi(buf);
2919 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2920 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2921 return 1;
2924 if (*buf == 'r' || *buf == 'R') {
2925 lock_type = READ_LOCK;
2926 } else if (*buf == 'w' || *buf == 'W') {
2927 lock_type = WRITE_LOCK;
2928 } else {
2929 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2930 return 1;
2933 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2934 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2935 return 1;
2938 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2940 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2941 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2942 return 1;
2945 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2947 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2948 if (!NT_STATUS_IS_OK(status)) {
2949 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2952 return 0;
2955 static int cmd_unlock(void)
2957 TALLOC_CTX *ctx = talloc_tos();
2958 char *buf = NULL;
2959 uint64_t start, len;
2960 int fnum;
2961 NTSTATUS status;
2963 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2964 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2965 return 1;
2967 fnum = atoi(buf);
2969 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2970 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2971 return 1;
2974 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2976 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2977 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2978 return 1;
2981 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2983 status = cli_posix_unlock(cli, fnum, start, len);
2984 if (!NT_STATUS_IS_OK(status)) {
2985 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2988 return 0;
2991 static int cmd_posix_whoami(void)
2993 TALLOC_CTX *ctx = talloc_tos();
2994 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2995 uint64_t uid = 0;
2996 uint64_t gid = 0;
2997 uint32_t num_gids = 0;
2998 uint32_t num_sids = 0;
2999 uint64_t *gids = NULL;
3000 struct dom_sid *sids = NULL;
3001 bool guest = false;
3002 uint32_t i;
3004 status = cli_posix_whoami(cli,
3005 ctx,
3006 &uid,
3007 &gid,
3008 &num_gids,
3009 &gids,
3010 &num_sids,
3011 &sids,
3012 &guest);
3014 if (!NT_STATUS_IS_OK(status)) {
3015 d_printf("posix_whoami failed with error %s\n", nt_errstr(status));
3016 return 1;
3019 d_printf("GUEST:%s\n", guest ? "True" : "False");
3020 d_printf("UID:%" PRIu64 "\n", uid);
3021 d_printf("GID:%" PRIu64 "\n", gid);
3022 d_printf("NUM_GIDS:%" PRIu32 "\n", num_gids);
3023 for (i = 0; i < num_gids; i++) {
3024 d_printf("GIDS[%" PRIu32 "]:%" PRIu64 "\n", i, gids[i]);
3026 d_printf("NUM_SIDS:%" PRIu32 "\n", num_sids);
3027 for (i = 0; i < num_sids; i++) {
3028 char *sid_str = dom_sid_string(ctx, &sids[i]);
3029 d_printf("SIDS[%" PRIu32 "]:%s\n", i, sid_str);
3030 TALLOC_FREE(sid_str);
3032 return 0;
3036 /****************************************************************************
3037 Remove a directory.
3038 ****************************************************************************/
3040 static int cmd_rmdir(void)
3042 TALLOC_CTX *ctx = talloc_tos();
3043 char *mask = NULL;
3044 char *buf = NULL;
3045 char *targetname = NULL;
3046 struct cli_state *targetcli;
3047 NTSTATUS status;
3049 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3050 d_printf("rmdir <dirname>\n");
3051 return 1;
3053 mask = talloc_asprintf(ctx,
3054 "%s%s",
3055 client_get_cur_dir(),
3056 buf);
3057 if (!mask) {
3058 return 1;
3061 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
3062 &targetname);
3063 if (!NT_STATUS_IS_OK(status)) {
3064 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
3065 return 1;
3068 status = cli_rmdir(targetcli, targetname);
3069 if (!NT_STATUS_IS_OK(status)) {
3070 d_printf("%s removing remote directory file %s\n",
3071 nt_errstr(status), mask);
3074 return 0;
3077 /****************************************************************************
3078 UNIX hardlink.
3079 ****************************************************************************/
3081 static int cmd_link(void)
3083 TALLOC_CTX *ctx = talloc_tos();
3084 char *oldname = NULL;
3085 char *newname = NULL;
3086 char *buf = NULL;
3087 char *buf2 = NULL;
3088 char *targetname = NULL;
3089 struct cli_state *targetcli;
3090 NTSTATUS status;
3092 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3093 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3094 d_printf("link <oldname> <newname>\n");
3095 return 1;
3097 oldname = talloc_asprintf(ctx,
3098 "%s%s",
3099 client_get_cur_dir(),
3100 buf);
3101 if (!oldname) {
3102 return 1;
3104 newname = talloc_asprintf(ctx,
3105 "%s%s",
3106 client_get_cur_dir(),
3107 buf2);
3108 if (!newname) {
3109 return 1;
3112 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3113 &targetname);
3114 if (!NT_STATUS_IS_OK(status)) {
3115 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3116 return 1;
3119 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3120 d_printf("Server doesn't support UNIX CIFS calls.\n");
3121 return 1;
3124 status = cli_posix_hardlink(targetcli, targetname, newname);
3125 if (!NT_STATUS_IS_OK(status)) {
3126 d_printf("%s linking files (%s -> %s)\n",
3127 nt_errstr(status), newname, oldname);
3128 return 1;
3130 return 0;
3133 /****************************************************************************
3134 UNIX readlink.
3135 ****************************************************************************/
3137 static int cmd_readlink(void)
3139 TALLOC_CTX *ctx = talloc_tos();
3140 char *name= NULL;
3141 char *buf = NULL;
3142 char *targetname = NULL;
3143 char linkname[PATH_MAX+1];
3144 struct cli_state *targetcli;
3145 NTSTATUS status;
3147 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3148 d_printf("readlink <name>\n");
3149 return 1;
3151 name = talloc_asprintf(ctx,
3152 "%s%s",
3153 client_get_cur_dir(),
3154 buf);
3155 if (!name) {
3156 return 1;
3159 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3160 &targetname);
3161 if (!NT_STATUS_IS_OK(status)) {
3162 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3163 return 1;
3166 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3167 d_printf("Server doesn't support UNIX CIFS calls.\n");
3168 return 1;
3171 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3172 if (!NT_STATUS_IS_OK(status)) {
3173 d_printf("%s readlink on file %s\n",
3174 nt_errstr(status), name);
3175 return 1;
3178 d_printf("%s -> %s\n", name, linkname);
3180 return 0;
3184 /****************************************************************************
3185 UNIX symlink.
3186 ****************************************************************************/
3188 static int cmd_symlink(void)
3190 TALLOC_CTX *ctx = talloc_tos();
3191 char *oldname = NULL;
3192 char *newname = NULL;
3193 char *buf = NULL;
3194 char *buf2 = NULL;
3195 struct cli_state *newcli;
3196 NTSTATUS status;
3198 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3199 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3200 d_printf("symlink <oldname> <newname>\n");
3201 return 1;
3203 /* Oldname (link target) must be an untouched blob. */
3204 oldname = buf;
3206 if (SERVER_HAS_UNIX_CIFS(cli)) {
3207 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3208 buf2);
3209 if (!newname) {
3210 return 1;
3212 /* New name must be present in share namespace. */
3213 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3214 &newcli, &newname);
3215 if (!NT_STATUS_IS_OK(status)) {
3216 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3217 return 1;
3219 status = cli_posix_symlink(newcli, oldname, newname);
3220 } else {
3221 status = cli_symlink(
3222 cli, oldname, buf2,
3223 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3226 if (!NT_STATUS_IS_OK(status)) {
3227 d_printf("%s symlinking files (%s -> %s)\n",
3228 nt_errstr(status), oldname, newname);
3229 return 1;
3232 return 0;
3235 /****************************************************************************
3236 UNIX chmod.
3237 ****************************************************************************/
3239 static int cmd_chmod(void)
3241 TALLOC_CTX *ctx = talloc_tos();
3242 char *src = NULL;
3243 char *buf = NULL;
3244 char *buf2 = NULL;
3245 char *targetname = NULL;
3246 struct cli_state *targetcli;
3247 mode_t mode;
3248 NTSTATUS status;
3250 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3251 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3252 d_printf("chmod mode file\n");
3253 return 1;
3255 src = talloc_asprintf(ctx,
3256 "%s%s",
3257 client_get_cur_dir(),
3258 buf2);
3259 if (!src) {
3260 return 1;
3263 mode = (mode_t)strtol(buf, NULL, 8);
3265 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3266 &targetname);
3267 if (!NT_STATUS_IS_OK(status)) {
3268 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3269 return 1;
3272 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3273 d_printf("Server doesn't support UNIX CIFS calls.\n");
3274 return 1;
3277 status = cli_posix_chmod(targetcli, targetname, mode);
3278 if (!NT_STATUS_IS_OK(status)) {
3279 d_printf("%s chmod file %s 0%o\n",
3280 nt_errstr(status), src, (unsigned int)mode);
3281 return 1;
3284 return 0;
3287 static const char *filetype_to_str(mode_t mode)
3289 if (S_ISREG(mode)) {
3290 return "regular file";
3291 } else if (S_ISDIR(mode)) {
3292 return "directory";
3293 } else
3294 #ifdef S_ISCHR
3295 if (S_ISCHR(mode)) {
3296 return "character device";
3297 } else
3298 #endif
3299 #ifdef S_ISBLK
3300 if (S_ISBLK(mode)) {
3301 return "block device";
3302 } else
3303 #endif
3304 #ifdef S_ISFIFO
3305 if (S_ISFIFO(mode)) {
3306 return "fifo";
3307 } else
3308 #endif
3309 #ifdef S_ISLNK
3310 if (S_ISLNK(mode)) {
3311 return "symbolic link";
3312 } else
3313 #endif
3314 #ifdef S_ISSOCK
3315 if (S_ISSOCK(mode)) {
3316 return "socket";
3317 } else
3318 #endif
3319 return "";
3322 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3324 if (m & bt) {
3325 return ret;
3326 } else {
3327 return '-';
3331 static char *unix_mode_to_str(char *s, mode_t m)
3333 char *p = s;
3334 const char *str = filetype_to_str(m);
3336 switch(str[0]) {
3337 case 'd':
3338 *p++ = 'd';
3339 break;
3340 case 'c':
3341 *p++ = 'c';
3342 break;
3343 case 'b':
3344 *p++ = 'b';
3345 break;
3346 case 'f':
3347 *p++ = 'p';
3348 break;
3349 case 's':
3350 *p++ = str[1] == 'y' ? 'l' : 's';
3351 break;
3352 case 'r':
3353 default:
3354 *p++ = '-';
3355 break;
3357 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3358 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3359 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3360 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3361 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3362 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3363 *p++ = rwx_to_str(m, S_IROTH, 'r');
3364 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3365 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3366 *p++ = '\0';
3367 return s;
3370 /****************************************************************************
3371 Utility function for UNIX getfacl.
3372 ****************************************************************************/
3374 static char *perms_to_string(fstring permstr, unsigned char perms)
3376 fstrcpy(permstr, "---");
3377 if (perms & SMB_POSIX_ACL_READ) {
3378 permstr[0] = 'r';
3380 if (perms & SMB_POSIX_ACL_WRITE) {
3381 permstr[1] = 'w';
3383 if (perms & SMB_POSIX_ACL_EXECUTE) {
3384 permstr[2] = 'x';
3386 return permstr;
3389 /****************************************************************************
3390 UNIX getfacl.
3391 ****************************************************************************/
3393 static int cmd_getfacl(void)
3395 TALLOC_CTX *ctx = talloc_tos();
3396 char *src = NULL;
3397 char *name = NULL;
3398 char *targetname = NULL;
3399 struct cli_state *targetcli;
3400 uint16_t major, minor;
3401 uint32_t caplow, caphigh;
3402 char *retbuf = NULL;
3403 size_t rb_size = 0;
3404 SMB_STRUCT_STAT sbuf;
3405 uint16_t num_file_acls = 0;
3406 uint16_t num_dir_acls = 0;
3407 uint16_t i;
3408 NTSTATUS status;
3410 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3411 d_printf("getfacl filename\n");
3412 return 1;
3414 src = talloc_asprintf(ctx,
3415 "%s%s",
3416 client_get_cur_dir(),
3417 name);
3418 if (!src) {
3419 return 1;
3422 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3423 &targetname);
3424 if (!NT_STATUS_IS_OK(status)) {
3425 d_printf("stat %s: %s\n", src, nt_errstr(status));
3426 return 1;
3429 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3430 d_printf("Server doesn't support UNIX CIFS calls.\n");
3431 return 1;
3434 status = cli_unix_extensions_version(targetcli, &major, &minor,
3435 &caplow, &caphigh);
3436 if (!NT_STATUS_IS_OK(status)) {
3437 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3438 nt_errstr(status));
3439 return 1;
3442 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3443 d_printf("This server supports UNIX extensions "
3444 "but doesn't support POSIX ACLs.\n");
3445 return 1;
3448 status = cli_posix_stat(targetcli, targetname, &sbuf);
3449 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3450 d_printf("%s getfacl doing a stat on file %s\n",
3451 nt_errstr(status), src);
3452 return 1;
3455 status = cli_posix_getacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3456 if (!NT_STATUS_IS_OK(status)) {
3457 d_printf("%s getfacl file %s\n",
3458 nt_errstr(status), src);
3459 return 1;
3462 /* ToDo : Print out the ACL values. */
3463 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3464 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3465 src, (unsigned int)CVAL(retbuf,0) );
3466 return 1;
3469 num_file_acls = SVAL(retbuf,2);
3470 num_dir_acls = SVAL(retbuf,4);
3471 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3472 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3473 src,
3474 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3475 (unsigned int)rb_size);
3476 return 1;
3479 d_printf("# file: %s\n", src);
3480 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3482 if (num_file_acls == 0 && num_dir_acls == 0) {
3483 d_printf("No acls found.\n");
3486 for (i = 0; i < num_file_acls; i++) {
3487 uint32_t uorg;
3488 fstring permstring;
3489 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3490 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3492 switch(tagtype) {
3493 case SMB_POSIX_ACL_USER_OBJ:
3494 d_printf("user::");
3495 break;
3496 case SMB_POSIX_ACL_USER:
3497 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3498 d_printf("user:%u:", uorg);
3499 break;
3500 case SMB_POSIX_ACL_GROUP_OBJ:
3501 d_printf("group::");
3502 break;
3503 case SMB_POSIX_ACL_GROUP:
3504 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3505 d_printf("group:%u:", uorg);
3506 break;
3507 case SMB_POSIX_ACL_MASK:
3508 d_printf("mask::");
3509 break;
3510 case SMB_POSIX_ACL_OTHER:
3511 d_printf("other::");
3512 break;
3513 default:
3514 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3515 src, (unsigned int)tagtype );
3516 SAFE_FREE(retbuf);
3517 return 1;
3520 d_printf("%s\n", perms_to_string(permstring, perms));
3523 for (i = 0; i < num_dir_acls; i++) {
3524 uint32_t uorg;
3525 fstring permstring;
3526 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3527 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3529 switch(tagtype) {
3530 case SMB_POSIX_ACL_USER_OBJ:
3531 d_printf("default:user::");
3532 break;
3533 case SMB_POSIX_ACL_USER:
3534 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3535 d_printf("default:user:%u:", uorg);
3536 break;
3537 case SMB_POSIX_ACL_GROUP_OBJ:
3538 d_printf("default:group::");
3539 break;
3540 case SMB_POSIX_ACL_GROUP:
3541 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3542 d_printf("default:group:%u:", uorg);
3543 break;
3544 case SMB_POSIX_ACL_MASK:
3545 d_printf("default:mask::");
3546 break;
3547 case SMB_POSIX_ACL_OTHER:
3548 d_printf("default:other::");
3549 break;
3550 default:
3551 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3552 src, (unsigned int)tagtype );
3553 SAFE_FREE(retbuf);
3554 return 1;
3557 d_printf("%s\n", perms_to_string(permstring, perms));
3560 return 0;
3563 /****************************************************************************
3564 Get the EA list of a file
3565 ****************************************************************************/
3567 static int cmd_geteas(void)
3569 TALLOC_CTX *ctx = talloc_tos();
3570 char *src = NULL;
3571 char *name = NULL;
3572 char *targetname = NULL;
3573 struct cli_state *targetcli;
3574 NTSTATUS status;
3575 size_t i, num_eas;
3576 struct ea_struct *eas;
3578 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3579 d_printf("geteas filename\n");
3580 return 1;
3582 src = talloc_asprintf(ctx,
3583 "%s%s",
3584 client_get_cur_dir(),
3585 name);
3586 if (!src) {
3587 return 1;
3590 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3591 &targetname);
3592 if (!NT_STATUS_IS_OK(status)) {
3593 d_printf("stat %s: %s\n", src, nt_errstr(status));
3594 return 1;
3597 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3598 &num_eas, &eas);
3599 if (!NT_STATUS_IS_OK(status)) {
3600 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3601 return 1;
3604 for (i=0; i<num_eas; i++) {
3605 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3606 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3607 stdout);
3608 d_printf("\n");
3611 TALLOC_FREE(eas);
3613 return 0;
3616 /****************************************************************************
3617 Set an EA of a file
3618 ****************************************************************************/
3620 static int cmd_setea(void)
3622 TALLOC_CTX *ctx = talloc_tos();
3623 char *src = NULL;
3624 char *name = NULL;
3625 char *eaname = NULL;
3626 char *eavalue = NULL;
3627 char *targetname = NULL;
3628 struct cli_state *targetcli;
3629 NTSTATUS status;
3631 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3632 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3633 d_printf("setea filename eaname value\n");
3634 return 1;
3636 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3637 eavalue = talloc_strdup(ctx, "");
3639 src = talloc_asprintf(ctx,
3640 "%s%s",
3641 client_get_cur_dir(),
3642 name);
3643 if (!src) {
3644 return 1;
3647 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3648 &targetname);
3649 if (!NT_STATUS_IS_OK(status)) {
3650 d_printf("stat %s: %s\n", src, nt_errstr(status));
3651 return 1;
3654 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3655 strlen(eavalue));
3656 if (!NT_STATUS_IS_OK(status)) {
3657 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3658 return 1;
3661 return 0;
3664 /****************************************************************************
3665 UNIX stat.
3666 ****************************************************************************/
3668 static int cmd_stat(void)
3670 TALLOC_CTX *ctx = talloc_tos();
3671 char *src = NULL;
3672 char *name = NULL;
3673 char *targetname = NULL;
3674 struct cli_state *targetcli;
3675 fstring mode_str;
3676 SMB_STRUCT_STAT sbuf;
3677 struct tm *lt;
3678 time_t tmp_time;
3679 NTSTATUS status;
3681 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3682 d_printf("stat file\n");
3683 return 1;
3685 src = talloc_asprintf(ctx,
3686 "%s%s",
3687 client_get_cur_dir(),
3688 name);
3689 if (!src) {
3690 return 1;
3693 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3694 &targetname);
3695 if (!NT_STATUS_IS_OK(status)) {
3696 d_printf("stat %s: %s\n", src, nt_errstr(status));
3697 return 1;
3700 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3701 d_printf("Server doesn't support UNIX CIFS calls.\n");
3702 return 1;
3705 status = cli_posix_stat(targetcli, targetname, &sbuf);
3706 if (!NT_STATUS_IS_OK(status)) {
3707 d_printf("%s stat file %s\n",
3708 nt_errstr(status), src);
3709 return 1;
3712 /* Print out the stat values. */
3713 d_printf("File: %s\n", src);
3714 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3715 (double)sbuf.st_ex_size,
3716 (unsigned int)sbuf.st_ex_blocks,
3717 filetype_to_str(sbuf.st_ex_mode));
3719 #if defined(S_ISCHR) && defined(S_ISBLK)
3720 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3721 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3722 (double)sbuf.st_ex_ino,
3723 (unsigned int)sbuf.st_ex_nlink,
3724 unix_dev_major(sbuf.st_ex_rdev),
3725 unix_dev_minor(sbuf.st_ex_rdev));
3726 } else
3727 #endif
3728 d_printf("Inode: %.0f\tLinks: %u\n",
3729 (double)sbuf.st_ex_ino,
3730 (unsigned int)sbuf.st_ex_nlink);
3732 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3733 ((int)sbuf.st_ex_mode & 0777),
3734 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3735 (unsigned int)sbuf.st_ex_uid,
3736 (unsigned int)sbuf.st_ex_gid);
3738 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3739 lt = localtime(&tmp_time);
3740 if (lt) {
3741 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3742 } else {
3743 fstrcpy(mode_str, "unknown");
3745 d_printf("Access: %s\n", mode_str);
3747 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3748 lt = localtime(&tmp_time);
3749 if (lt) {
3750 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3751 } else {
3752 fstrcpy(mode_str, "unknown");
3754 d_printf("Modify: %s\n", mode_str);
3756 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3757 lt = localtime(&tmp_time);
3758 if (lt) {
3759 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3760 } else {
3761 fstrcpy(mode_str, "unknown");
3763 d_printf("Change: %s\n", mode_str);
3765 return 0;
3769 /****************************************************************************
3770 UNIX chown.
3771 ****************************************************************************/
3773 static int cmd_chown(void)
3775 TALLOC_CTX *ctx = talloc_tos();
3776 char *src = NULL;
3777 uid_t uid;
3778 gid_t gid;
3779 char *buf, *buf2, *buf3;
3780 struct cli_state *targetcli;
3781 char *targetname = NULL;
3782 NTSTATUS status;
3784 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3785 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3786 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3787 d_printf("chown uid gid file\n");
3788 return 1;
3791 uid = (uid_t)atoi(buf);
3792 gid = (gid_t)atoi(buf2);
3794 src = talloc_asprintf(ctx,
3795 "%s%s",
3796 client_get_cur_dir(),
3797 buf3);
3798 if (!src) {
3799 return 1;
3801 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3802 &targetname);
3803 if (!NT_STATUS_IS_OK(status)) {
3804 d_printf("chown %s: %s\n", src, nt_errstr(status));
3805 return 1;
3808 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3809 d_printf("Server doesn't support UNIX CIFS calls.\n");
3810 return 1;
3813 status = cli_posix_chown(targetcli, targetname, uid, gid);
3814 if (!NT_STATUS_IS_OK(status)) {
3815 d_printf("%s chown file %s uid=%d, gid=%d\n",
3816 nt_errstr(status), src, (int)uid, (int)gid);
3817 return 1;
3820 return 0;
3823 /****************************************************************************
3824 Rename some file.
3825 ****************************************************************************/
3827 static int cmd_rename(void)
3829 TALLOC_CTX *ctx = talloc_tos();
3830 char *src, *dest;
3831 char *buf, *buf2;
3832 struct cli_state *targetcli;
3833 char *targetsrc;
3834 char *targetdest;
3835 NTSTATUS status;
3836 bool replace = false;
3838 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3839 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3840 d_printf("rename <src> <dest> [-f]\n");
3841 return 1;
3844 src = talloc_asprintf(ctx,
3845 "%s%s",
3846 client_get_cur_dir(),
3847 buf);
3848 if (!src) {
3849 return 1;
3852 dest = talloc_asprintf(ctx,
3853 "%s%s",
3854 client_get_cur_dir(),
3855 buf2);
3856 if (!dest) {
3857 return 1;
3860 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL) &&
3861 strcsequal(buf, "-f")) {
3862 replace = true;
3865 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3866 &targetsrc);
3867 if (!NT_STATUS_IS_OK(status)) {
3868 d_printf("rename %s: %s\n", src, nt_errstr(status));
3869 return 1;
3872 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3873 &targetdest);
3874 if (!NT_STATUS_IS_OK(status)) {
3875 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3876 return 1;
3879 status = cli_rename(targetcli, targetsrc, targetdest, replace);
3880 if (!NT_STATUS_IS_OK(status)) {
3881 d_printf("%s renaming files %s -> %s \n",
3882 nt_errstr(status),
3883 targetsrc,
3884 targetdest);
3885 return 1;
3888 return 0;
3891 struct scopy_timing {
3892 struct timespec tp_start;
3895 static int scopy_status(off_t written, void *priv)
3897 struct timespec tp_end;
3898 unsigned int scopy_total_time_ms;
3899 struct scopy_timing *st = priv;
3901 clock_gettime_mono(&tp_end);
3902 scopy_total_time_ms = nsec_time_diff(&tp_end,&st->tp_start)/1000000;
3904 DEBUG(5,("Copied %jd bytes at an average %3.1f kb/s\n",
3905 (intmax_t)written, written / (1.024*scopy_total_time_ms)));
3907 return true;
3910 /****************************************************************************
3911 Server-Side copy some file.
3912 ****************************************************************************/
3914 static int cmd_scopy(void)
3916 TALLOC_CTX *ctx = talloc_tos();
3917 char *src, *dest;
3918 char *buf, *buf2;
3919 struct cli_state *targetcli;
3920 char *targetsrc;
3921 char *targetdest;
3922 uint32_t DesiredAccess, ShareAccess, CreateDisposition, CreateOptions;
3923 struct smb_create_returns cr;
3924 uint16_t destfnum = (uint16_t)-1;
3925 uint16_t srcfnum = (uint16_t)-1;
3926 off_t written = 0;
3927 struct scopy_timing st;
3928 int rc = 0;
3929 NTSTATUS status;
3931 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3932 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3933 d_printf("scopy <src> <dest>\n");
3934 return 1;
3937 src = talloc_asprintf(ctx,
3938 "%s%s",
3939 client_get_cur_dir(),
3940 buf);
3941 if (!src) {
3942 return 1;
3945 dest = talloc_asprintf(ctx,
3946 "%s%s",
3947 client_get_cur_dir(),
3948 buf2);
3949 if (!dest) {
3950 return 1;
3953 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3954 &targetsrc);
3955 if (!NT_STATUS_IS_OK(status)) {
3956 d_printf("scopy %s: %s\n", src, nt_errstr(status));
3957 return 1;
3960 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3961 &targetdest);
3962 if (!NT_STATUS_IS_OK(status)) {
3963 d_printf("scopy %s: %s\n", dest, nt_errstr(status));
3964 return 1;
3968 DesiredAccess = (FILE_READ_DATA|FILE_READ_EA|FILE_READ_ATTRIBUTES|
3969 READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS);
3970 ShareAccess = FILE_SHARE_READ|FILE_SHARE_DELETE;
3971 CreateDisposition = FILE_OPEN;
3972 CreateOptions = (FILE_SEQUENTIAL_ONLY|FILE_NON_DIRECTORY_FILE|
3973 FILE_OPEN_REPARSE_POINT);
3974 status = cli_ntcreate(targetcli, targetsrc, 0, DesiredAccess, 0,
3975 ShareAccess, CreateDisposition, CreateOptions, 0x0,
3976 &srcfnum, &cr);
3977 if (!NT_STATUS_IS_OK(status)) {
3978 d_printf("Failed to open file %s. %s\n",
3979 targetsrc, nt_errstr(status));
3980 return 1;
3983 DesiredAccess = (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_READ_EA|
3984 FILE_WRITE_EA|FILE_READ_ATTRIBUTES|FILE_WRITE_ATTRIBUTES|
3985 DELETE_ACCESS|READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|SYNCHRONIZE_ACCESS);
3986 ShareAccess = FILE_SHARE_NONE;
3987 CreateDisposition = FILE_CREATE;
3988 CreateOptions = FILE_SEQUENTIAL_ONLY|FILE_NON_DIRECTORY_FILE;
3989 status = cli_ntcreate(targetcli, targetdest, 0, DesiredAccess,
3990 FILE_ATTRIBUTE_ARCHIVE, ShareAccess, CreateDisposition,
3991 CreateOptions, 0x0, &destfnum, NULL);
3992 if (!NT_STATUS_IS_OK(status)) {
3993 d_printf("Failed to create file %s. %s\n",
3994 targetdest, nt_errstr(status));
3995 cli_close(targetcli, srcfnum);
3996 return 1;
3999 clock_gettime_mono(&st.tp_start);
4000 status = cli_splice(targetcli, targetcli, srcfnum, destfnum,
4001 cr.end_of_file, 0, 0, &written, scopy_status, &st);
4002 if (!NT_STATUS_IS_OK(status)) {
4003 d_printf("%s copying file %s -> %s \n",
4004 nt_errstr(status),
4005 targetsrc,
4006 targetdest);
4007 rc = 1;
4010 status = cli_close(targetcli, srcfnum);
4011 if (!NT_STATUS_IS_OK(status)) {
4012 d_printf("Error %s closing remote source file\n", nt_errstr(status));
4013 rc = 1;
4015 status = cli_close(targetcli, destfnum);
4016 if (!NT_STATUS_IS_OK(status)) {
4017 d_printf("Error %s closing remote dest file\n", nt_errstr(status));
4018 rc = 1;
4021 return rc;
4024 /****************************************************************************
4025 Print the volume name.
4026 ****************************************************************************/
4028 static int cmd_volume(void)
4030 char *volname;
4031 uint32_t serial_num;
4032 time_t create_date;
4033 NTSTATUS status;
4035 status = cli_get_fs_volume_info(cli, talloc_tos(),
4036 &volname, &serial_num,
4037 &create_date);
4038 if (!NT_STATUS_IS_OK(status)) {
4039 d_printf("Error %s getting volume info\n", nt_errstr(status));
4040 return 1;
4043 d_printf("Volume: |%s| serial number 0x%x\n",
4044 volname, (unsigned int)serial_num);
4045 return 0;
4048 /****************************************************************************
4049 Hard link files using the NT call.
4050 ****************************************************************************/
4052 static int cmd_hardlink(void)
4054 TALLOC_CTX *ctx = talloc_tos();
4055 char *src, *dest;
4056 char *buf, *buf2;
4057 struct cli_state *targetcli;
4058 char *targetname;
4059 NTSTATUS status;
4061 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
4062 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
4063 d_printf("hardlink <src> <dest>\n");
4064 return 1;
4067 src = talloc_asprintf(ctx,
4068 "%s%s",
4069 client_get_cur_dir(),
4070 buf);
4071 if (!src) {
4072 return 1;
4075 dest = talloc_asprintf(ctx,
4076 "%s%s",
4077 client_get_cur_dir(),
4078 buf2);
4079 if (!dest) {
4080 return 1;
4083 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
4084 &targetname);
4085 if (!NT_STATUS_IS_OK(status)) {
4086 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
4087 return 1;
4090 status = cli_nt_hardlink(targetcli, targetname, dest);
4091 if (!NT_STATUS_IS_OK(status)) {
4092 d_printf("%s doing an NT hard link of files\n",
4093 nt_errstr(status));
4094 return 1;
4097 return 0;
4100 /****************************************************************************
4101 Toggle the prompt flag.
4102 ****************************************************************************/
4104 static int cmd_prompt(void)
4106 prompt = !prompt;
4107 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
4108 return 1;
4111 /****************************************************************************
4112 Set the newer than time.
4113 ****************************************************************************/
4115 static int cmd_newer(void)
4117 TALLOC_CTX *ctx = talloc_tos();
4118 char *buf;
4119 bool ok;
4120 SMB_STRUCT_STAT sbuf;
4122 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
4123 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
4124 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
4125 DEBUG(1,("Getting files newer than %s",
4126 time_to_asc(newer_than)));
4127 } else {
4128 newer_than = 0;
4131 if (ok && newer_than == 0) {
4132 d_printf("Error setting newer-than time\n");
4133 return 1;
4136 return 0;
4139 /****************************************************************************
4140 Watch directory changes
4141 ****************************************************************************/
4143 static int cmd_notify(void)
4145 TALLOC_CTX *frame = talloc_stackframe();
4146 char *name, *buf;
4147 NTSTATUS status;
4148 uint16_t fnum;
4150 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
4151 if (name == NULL) {
4152 goto fail;
4154 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
4155 goto usage;
4157 name = talloc_asprintf_append(name, "%s", buf);
4158 if (name == NULL) {
4159 goto fail;
4161 status = cli_ntcreate(
4162 cli, name, 0, FILE_READ_DATA, 0,
4163 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4164 FILE_OPEN, 0, 0, &fnum, NULL);
4165 if (!NT_STATUS_IS_OK(status)) {
4166 d_printf("Could not open file: %s\n", nt_errstr(status));
4167 goto fail;
4170 while (1) {
4171 uint32_t i, num_changes;
4172 struct notify_change *changes;
4174 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
4175 true,
4176 talloc_tos(), &num_changes, &changes);
4177 if (!NT_STATUS_IS_OK(status)) {
4178 d_printf("notify returned %s\n",
4179 nt_errstr(status));
4180 goto fail;
4182 for (i=0; i<num_changes; i++) {
4183 printf("%4.4x %s\n", changes[i].action,
4184 changes[i].name);
4186 TALLOC_FREE(changes);
4188 usage:
4189 d_printf("notify <dir name>\n");
4190 fail:
4191 TALLOC_FREE(frame);
4192 return 1;
4195 /****************************************************************************
4196 Set the archive level.
4197 ****************************************************************************/
4199 static int cmd_archive(void)
4201 TALLOC_CTX *ctx = talloc_tos();
4202 char *buf;
4204 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4205 archive_level = atoi(buf);
4206 } else {
4207 d_printf("Archive level is %d\n",archive_level);
4210 return 0;
4213 /****************************************************************************
4214 Toggle the backup_intent state.
4215 ****************************************************************************/
4217 static int cmd_backup(void)
4219 backup_intent = !backup_intent;
4220 cli_set_backup_intent(cli, backup_intent);
4221 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
4222 return 1;
4225 /****************************************************************************
4226 Toggle the lowercaseflag.
4227 ****************************************************************************/
4229 static int cmd_lowercase(void)
4231 lowercase = !lowercase;
4232 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4233 return 0;
4236 /****************************************************************************
4237 Toggle the case sensitive flag.
4238 ****************************************************************************/
4240 static int cmd_setcase(void)
4242 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4244 cli_set_case_sensitive(cli, !orig_case_sensitive);
4245 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4246 "on":"off"));
4247 return 0;
4250 /****************************************************************************
4251 Toggle the showacls flag.
4252 ****************************************************************************/
4254 static int cmd_showacls(void)
4256 showacls = !showacls;
4257 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4258 return 0;
4262 /****************************************************************************
4263 Toggle the recurse flag.
4264 ****************************************************************************/
4266 static int cmd_recurse(void)
4268 recurse = !recurse;
4269 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4270 return 0;
4273 /****************************************************************************
4274 Toggle the translate flag.
4275 ****************************************************************************/
4277 static int cmd_translate(void)
4279 translation = !translation;
4280 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4281 translation?"on":"off"));
4282 return 0;
4285 /****************************************************************************
4286 Do the lcd command.
4287 ****************************************************************************/
4289 static int cmd_lcd(void)
4291 TALLOC_CTX *ctx = talloc_tos();
4292 char *buf;
4293 char *d;
4295 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4296 if (chdir(buf) == -1) {
4297 d_printf("chdir to %s failed (%s)\n",
4298 buf, strerror(errno));
4301 d = sys_getwd();
4302 if (!d) {
4303 return 1;
4305 DEBUG(2,("the local directory is now %s\n",d));
4306 SAFE_FREE(d);
4307 return 0;
4310 /****************************************************************************
4311 Get a file restarting at end of local file.
4312 ****************************************************************************/
4314 static int cmd_reget(void)
4316 TALLOC_CTX *ctx = talloc_tos();
4317 char *local_name = NULL;
4318 char *remote_name = NULL;
4319 char *fname = NULL;
4320 char *p = NULL;
4322 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4323 if (!remote_name) {
4324 return 1;
4327 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4328 d_printf("reget <filename>\n");
4329 return 1;
4331 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4332 if (!remote_name) {
4333 return 1;
4335 remote_name = clean_name(ctx,remote_name);
4336 if (!remote_name) {
4337 return 1;
4340 local_name = fname;
4341 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4342 if (p) {
4343 local_name = p;
4346 return do_get(remote_name, local_name, true);
4349 /****************************************************************************
4350 Put a file restarting at end of local file.
4351 ****************************************************************************/
4353 static int cmd_reput(void)
4355 TALLOC_CTX *ctx = talloc_tos();
4356 char *local_name = NULL;
4357 char *remote_name = NULL;
4358 char *buf;
4359 SMB_STRUCT_STAT st;
4361 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4362 if (!remote_name) {
4363 return 1;
4366 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4367 d_printf("reput <filename>\n");
4368 return 1;
4371 if (!file_exist_stat(local_name, &st, false)) {
4372 d_printf("%s does not exist\n", local_name);
4373 return 1;
4376 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4377 remote_name = talloc_asprintf_append(remote_name,
4378 "%s", buf);
4379 } else {
4380 remote_name = talloc_asprintf_append(remote_name,
4381 "%s", local_name);
4383 if (!remote_name) {
4384 return 1;
4387 remote_name = clean_name(ctx, remote_name);
4388 if (!remote_name) {
4389 return 1;
4392 return do_put(remote_name, local_name, true);
4395 /****************************************************************************
4396 List a share name.
4397 ****************************************************************************/
4399 static void browse_fn(const char *name, uint32_t m,
4400 const char *comment, void *state)
4402 const char *typestr = "";
4404 switch (m & 7) {
4405 case STYPE_DISKTREE:
4406 typestr = "Disk";
4407 break;
4408 case STYPE_PRINTQ:
4409 typestr = "Printer";
4410 break;
4411 case STYPE_DEVICE:
4412 typestr = "Device";
4413 break;
4414 case STYPE_IPC:
4415 typestr = "IPC";
4416 break;
4418 /* FIXME: If the remote machine returns non-ascii characters
4419 in any of these fields, they can corrupt the output. We
4420 should remove them. */
4421 if (!grepable) {
4422 d_printf("\t%-15s %-10.10s%s\n",
4423 name,typestr,comment);
4424 } else {
4425 d_printf ("%s|%s|%s\n",typestr,name,comment);
4429 static bool browse_host_rpc(bool sort)
4431 NTSTATUS status;
4432 struct rpc_pipe_client *pipe_hnd = NULL;
4433 TALLOC_CTX *frame = talloc_stackframe();
4434 WERROR werr;
4435 struct srvsvc_NetShareInfoCtr info_ctr;
4436 struct srvsvc_NetShareCtr1 ctr1;
4437 uint32_t resume_handle = 0;
4438 uint32_t total_entries = 0;
4439 int i;
4440 struct dcerpc_binding_handle *b;
4442 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc,
4443 &pipe_hnd);
4445 if (!NT_STATUS_IS_OK(status)) {
4446 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4447 nt_errstr(status)));
4448 TALLOC_FREE(frame);
4449 return false;
4452 b = pipe_hnd->binding_handle;
4454 ZERO_STRUCT(info_ctr);
4455 ZERO_STRUCT(ctr1);
4457 info_ctr.level = 1;
4458 info_ctr.ctr.ctr1 = &ctr1;
4460 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4461 pipe_hnd->desthost,
4462 &info_ctr,
4463 0xffffffff,
4464 &total_entries,
4465 &resume_handle,
4466 &werr);
4468 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4469 TALLOC_FREE(pipe_hnd);
4470 TALLOC_FREE(frame);
4471 return false;
4474 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4475 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4476 browse_fn(info.name, info.type, info.comment, NULL);
4479 TALLOC_FREE(pipe_hnd);
4480 TALLOC_FREE(frame);
4481 return true;
4484 /****************************************************************************
4485 Try and browse available connections on a host.
4486 ****************************************************************************/
4488 static bool browse_host(bool sort)
4490 int ret;
4491 if (!grepable) {
4492 d_printf("\n\tSharename Type Comment\n");
4493 d_printf("\t--------- ---- -------\n");
4496 if (browse_host_rpc(sort)) {
4497 return true;
4500 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4501 NTSTATUS status = cli_nt_error(cli);
4502 d_printf("Error returning browse list: %s\n",
4503 nt_errstr(status));
4506 return (ret != -1);
4509 /****************************************************************************
4510 List a server name.
4511 ****************************************************************************/
4513 static void server_fn(const char *name, uint32_t m,
4514 const char *comment, void *state)
4517 if (!grepable){
4518 d_printf("\t%-16s %s\n", name, comment);
4519 } else {
4520 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4524 /****************************************************************************
4525 Try and browse available connections on a host.
4526 ****************************************************************************/
4528 static bool list_servers(const char *wk_grp)
4530 fstring state;
4532 if (!cli->server_domain)
4533 return false;
4535 if (!grepable) {
4536 d_printf("\n\tServer Comment\n");
4537 d_printf("\t--------- -------\n");
4539 fstrcpy( state, "Server" );
4540 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4541 state);
4543 if (!grepable) {
4544 d_printf("\n\tWorkgroup Master\n");
4545 d_printf("\t--------- -------\n");
4548 fstrcpy( state, "Workgroup" );
4549 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4550 server_fn, state);
4551 return true;
4554 /****************************************************************************
4555 Print or set current VUID
4556 ****************************************************************************/
4558 static int cmd_vuid(void)
4560 TALLOC_CTX *ctx = talloc_tos();
4561 char *buf;
4563 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4564 d_printf("Current VUID is %d\n",
4565 cli_state_get_uid(cli));
4566 return 0;
4569 cli_state_set_uid(cli, atoi(buf));
4570 return 0;
4573 /****************************************************************************
4574 Setup a new VUID, by issuing a session setup
4575 ****************************************************************************/
4577 static int cmd_logon(void)
4579 TALLOC_CTX *ctx = talloc_tos();
4580 char *l_username, *l_password;
4581 struct cli_credentials *creds = NULL;
4582 NTSTATUS nt_status;
4584 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4585 d_printf("logon <username> [<password>]\n");
4586 return 0;
4589 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4590 char pwd[256] = {0};
4591 int rc;
4593 rc = samba_getpass("Password: ", pwd, sizeof(pwd), false, false);
4594 if (rc == 0) {
4595 l_password = talloc_strdup(ctx, pwd);
4598 if (!l_password) {
4599 return 1;
4602 creds = cli_session_creds_init(ctx,
4603 l_username,
4604 lp_workgroup(),
4605 NULL, /* realm */
4606 l_password,
4607 false, /* use_kerberos */
4608 false, /* fallback_after_kerberos */
4609 false, /* use_ccache */
4610 false); /* password_is_nt_hash */
4611 if (creds == NULL) {
4612 d_printf("cli_session_creds_init() failed.\n");
4613 return -1;
4615 nt_status = cli_session_setup_creds(cli, creds);
4616 TALLOC_FREE(creds);
4617 if (!NT_STATUS_IS_OK(nt_status)) {
4618 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4619 return -1;
4622 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4623 return 0;
4627 * close the session
4630 static int cmd_logoff(void)
4632 NTSTATUS status;
4634 status = cli_ulogoff(cli);
4635 if (!NT_STATUS_IS_OK(status)) {
4636 d_printf("logoff failed: %s\n", nt_errstr(status));
4637 return -1;
4640 d_printf("logoff successful\n");
4641 return 0;
4646 * tree connect (connect to a share)
4649 static int cmd_tcon(void)
4651 TALLOC_CTX *ctx = talloc_tos();
4652 char *sharename;
4653 NTSTATUS status;
4655 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4656 d_printf("tcon <sharename>\n");
4657 return 0;
4660 if (!sharename) {
4661 return 1;
4664 status = cli_tree_connect(cli, sharename, "?????", NULL);
4665 if (!NT_STATUS_IS_OK(status)) {
4666 d_printf("tcon failed: %s\n", nt_errstr(status));
4667 return -1;
4670 talloc_free(sharename);
4672 d_printf("tcon to %s successful, tid: %u\n", sharename,
4673 cli_state_get_tid(cli));
4674 return 0;
4678 * tree disconnect (disconnect from a share)
4681 static int cmd_tdis(void)
4683 NTSTATUS status;
4685 status = cli_tdis(cli);
4686 if (!NT_STATUS_IS_OK(status)) {
4687 d_printf("tdis failed: %s\n", nt_errstr(status));
4688 return -1;
4691 d_printf("tdis successful\n");
4692 return 0;
4697 * get or set tid
4700 static int cmd_tid(void)
4702 TALLOC_CTX *ctx = talloc_tos();
4703 char *tid_str;
4705 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4706 if (cli_state_has_tcon(cli)) {
4707 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4708 } else {
4709 d_printf("no tcon currently\n");
4711 } else {
4712 uint16_t tid = atoi(tid_str);
4713 cli_state_set_tid(cli, tid);
4716 return 0;
4720 /****************************************************************************
4721 list active connections
4722 ****************************************************************************/
4724 static int cmd_list_connect(void)
4726 cli_cm_display(cli);
4727 return 0;
4730 /****************************************************************************
4731 display the current active client connection
4732 ****************************************************************************/
4734 static int cmd_show_connect( void )
4736 TALLOC_CTX *ctx = talloc_tos();
4737 struct cli_state *targetcli;
4738 char *targetpath;
4739 NTSTATUS status;
4741 status = cli_resolve_path(ctx, "", auth_info, cli,
4742 client_get_cur_dir(), &targetcli,
4743 &targetpath);
4744 if (!NT_STATUS_IS_OK(status)) {
4745 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4746 return 1;
4749 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
4750 return 0;
4754 * set_remote_attr - set DOS attributes of a remote file
4755 * @filename: path to the file name
4756 * @new_attr: attribute bit mask to use
4757 * @mode: one of ATTR_SET or ATTR_UNSET
4759 * Update the file attributes with the one provided.
4761 int set_remote_attr(const char *filename, uint16_t new_attr, int mode)
4763 extern struct cli_state *cli;
4764 uint16_t old_attr;
4765 NTSTATUS status;
4767 status = cli_getatr(cli, filename, &old_attr, NULL, NULL);
4768 if (!NT_STATUS_IS_OK(status)) {
4769 d_printf("cli_getatr failed: %s\n", nt_errstr(status));
4770 return 1;
4773 if (mode == ATTR_SET) {
4774 new_attr |= old_attr;
4775 } else {
4776 new_attr = old_attr & ~new_attr;
4779 status = cli_setatr(cli, filename, new_attr, 0);
4780 if (!NT_STATUS_IS_OK(status)) {
4781 d_printf("cli_setatr failed: %s\n", nt_errstr(status));
4782 return 1;
4785 return 0;
4789 * cmd_setmode - interactive command to set DOS attributes
4791 * Read a filename and mode from the client command line and update
4792 * the file DOS attributes.
4794 int cmd_setmode(void)
4796 const extern char *cmd_ptr;
4797 char *buf;
4798 char *fname = NULL;
4799 uint16_t attr[2] = {0};
4800 int mode = ATTR_SET;
4801 int err = 0;
4802 bool ok;
4803 TALLOC_CTX *ctx = talloc_new(NULL);
4804 if (ctx == NULL) {
4805 return 1;
4808 ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
4809 if (!ok) {
4810 d_printf("setmode <filename> <[+|-]rsha>\n");
4811 err = 1;
4812 goto out;
4815 fname = talloc_asprintf(ctx,
4816 "%s%s",
4817 client_get_cur_dir(),
4818 buf);
4819 if (fname == NULL) {
4820 err = 1;
4821 goto out;
4824 while (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4825 const char *s = buf;
4827 while (*s) {
4828 switch (*s++) {
4829 case '+':
4830 mode = ATTR_SET;
4831 break;
4832 case '-':
4833 mode = ATTR_UNSET;
4834 break;
4835 case 'r':
4836 attr[mode] |= FILE_ATTRIBUTE_READONLY;
4837 break;
4838 case 'h':
4839 attr[mode] |= FILE_ATTRIBUTE_HIDDEN;
4840 break;
4841 case 's':
4842 attr[mode] |= FILE_ATTRIBUTE_SYSTEM;
4843 break;
4844 case 'a':
4845 attr[mode] |= FILE_ATTRIBUTE_ARCHIVE;
4846 break;
4847 default:
4848 d_printf("setmode <filename> <perm=[+|-]rsha>\n");
4849 err = 1;
4850 goto out;
4855 if (attr[ATTR_SET] == 0 && attr[ATTR_UNSET] == 0) {
4856 d_printf("setmode <filename> <[+|-]rsha>\n");
4857 err = 1;
4858 goto out;
4861 DEBUG(2, ("perm set %d %d\n", attr[ATTR_SET], attr[ATTR_UNSET]));
4863 /* ignore return value: server might not store DOS attributes */
4864 set_remote_attr(fname, attr[ATTR_SET], ATTR_SET);
4865 set_remote_attr(fname, attr[ATTR_UNSET], ATTR_UNSET);
4866 out:
4867 talloc_free(ctx);
4868 return err;
4871 /****************************************************************************
4872 iosize command
4873 ***************************************************************************/
4875 int cmd_iosize(void)
4877 TALLOC_CTX *ctx = talloc_tos();
4878 char *buf;
4879 int iosize;
4881 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4882 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
4883 if (!smb_encrypt) {
4884 d_printf("iosize <n> or iosize 0x<n>. "
4885 "Minimum is 0 (default), "
4886 "max is 16776960 (0xFFFF00)\n");
4887 } else {
4888 d_printf("iosize <n> or iosize 0x<n>. "
4889 "(Encrypted connection) ,"
4890 "Minimum is 0 (default), "
4891 "max is 130048 (0x1FC00)\n");
4893 } else {
4894 d_printf("iosize <n> or iosize 0x<n>.\n");
4896 return 1;
4899 iosize = strtol(buf,NULL,0);
4900 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
4901 if (smb_encrypt && (iosize < 0 || iosize > 0xFC00)) {
4902 d_printf("iosize out of range for encrypted "
4903 "connection (min = 0 (default), "
4904 "max = 130048 (0x1FC00)\n");
4905 return 1;
4906 } else if (!smb_encrypt && (iosize < 0 || iosize > 0xFFFF00)) {
4907 d_printf("iosize out of range (min = 0 (default), "
4908 "max = 16776960 (0xFFFF00)\n");
4909 return 1;
4913 io_bufsize = iosize;
4914 d_printf("iosize is now %d\n", io_bufsize);
4915 return 0;
4918 /****************************************************************************
4919 timeout command
4920 ***************************************************************************/
4922 static int cmd_timeout(void)
4924 TALLOC_CTX *ctx = talloc_tos();
4925 char *buf;
4927 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4928 unsigned int old_timeout = cli_set_timeout(cli, 0);
4929 cli_set_timeout(cli, old_timeout);
4930 d_printf("timeout <n> (per-operation timeout "
4931 "in seconds - currently %u).\n",
4932 old_timeout/1000);
4933 return 1;
4936 io_timeout = strtol(buf,NULL,0);
4937 cli_set_timeout(cli, io_timeout*1000);
4938 d_printf("io_timeout per operation is now %d\n", io_timeout);
4939 return 0;
4943 /****************************************************************************
4944 history
4945 ****************************************************************************/
4946 static int cmd_history(void)
4948 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4949 HIST_ENTRY **hlist;
4950 int i;
4952 hlist = history_list();
4954 for (i = 0; hlist && hlist[i]; i++) {
4955 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4957 #else
4958 DEBUG(0,("no history without readline support\n"));
4959 #endif
4961 return 0;
4964 /* Some constants for completing filename arguments */
4966 #define COMPL_NONE 0 /* No completions */
4967 #define COMPL_REMOTE 1 /* Complete remote filename */
4968 #define COMPL_LOCAL 2 /* Complete local filename */
4970 /* This defines the commands supported by this client.
4971 * NOTE: The "!" must be the last one in the list because it's fn pointer
4972 * field is NULL, and NULL in that field is used in process_tok()
4973 * (below) to indicate the end of the list. crh
4975 static struct {
4976 const char *name;
4977 int (*fn)(void);
4978 const char *description;
4979 char compl_args[2]; /* Completion argument info */
4980 } commands[] = {
4981 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4982 {"allinfo",cmd_allinfo,"<file> show all available info",
4983 {COMPL_NONE,COMPL_NONE}},
4984 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4985 {"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}},
4986 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4987 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4988 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4989 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4990 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4991 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_NONE}},
4992 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_NONE}},
4993 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_NONE}},
4994 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4995 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4996 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4997 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4998 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4999 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
5000 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_NONE}},
5001 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
5002 {COMPL_REMOTE, COMPL_NONE}},
5003 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
5004 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
5005 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
5006 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
5007 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
5008 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
5009 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
5010 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
5011 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
5012 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
5013 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
5014 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
5015 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
5016 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
5017 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
5018 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
5019 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
5020 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
5021 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
5022 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
5023 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
5024 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5025 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5026 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5027 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5028 {"posix_whoami",cmd_posix_whoami,"retun logged on user information "
5029 "using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
5030 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
5031 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
5032 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
5033 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
5034 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
5035 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
5036 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
5037 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
5038 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
5039 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
5040 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
5041 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
5042 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
5043 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
5044 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_REMOTE,COMPL_NONE}},
5045 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
5046 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
5047 {COMPL_REMOTE, COMPL_LOCAL}},
5048 {"setmode",cmd_setmode,"<file name> <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
5049 {"scopy",cmd_scopy,"<src> <dest> server-side copy file",{COMPL_REMOTE,COMPL_REMOTE}},
5050 {"stat",cmd_stat,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_NONE}},
5051 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
5052 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
5053 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
5054 {"timeout",cmd_timeout,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE,COMPL_NONE}},
5055 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
5056 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
5057 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
5058 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
5059 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
5060 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
5061 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
5062 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
5063 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
5064 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
5065 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
5066 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
5067 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
5069 /* Yes, this must be here, see crh's comment above. */
5070 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
5071 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
5074 /*******************************************************************
5075 Lookup a command string in the list of commands, including
5076 abbreviations.
5077 ******************************************************************/
5079 static int process_tok(char *tok)
5081 int i = 0, matches = 0;
5082 int cmd=0;
5083 int tok_len = strlen(tok);
5085 while (commands[i].fn != NULL) {
5086 if (strequal(commands[i].name,tok)) {
5087 matches = 1;
5088 cmd = i;
5089 break;
5090 } else if (strnequal(commands[i].name, tok, tok_len)) {
5091 matches++;
5092 cmd = i;
5094 i++;
5097 if (matches == 0)
5098 return(-1);
5099 else if (matches == 1)
5100 return(cmd);
5101 else
5102 return(-2);
5105 /****************************************************************************
5106 Help.
5107 ****************************************************************************/
5109 static int cmd_help(void)
5111 TALLOC_CTX *ctx = talloc_tos();
5112 int i=0,j;
5113 char *buf;
5115 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
5116 if ((i = process_tok(buf)) >= 0)
5117 d_printf("HELP %s:\n\t%s\n\n",
5118 commands[i].name,commands[i].description);
5119 } else {
5120 while (commands[i].description) {
5121 for (j=0; commands[i].description && (j<5); j++) {
5122 d_printf("%-15s",commands[i].name);
5123 i++;
5125 d_printf("\n");
5128 return 0;
5131 /****************************************************************************
5132 Process a -c command string.
5133 ****************************************************************************/
5135 static int process_command_string(const char *cmd_in)
5137 TALLOC_CTX *ctx = talloc_tos();
5138 char *cmd = talloc_strdup(ctx, cmd_in);
5139 int rc = 0;
5141 if (!cmd) {
5142 return 1;
5144 /* establish the connection if not already */
5146 if (!cli) {
5147 NTSTATUS status;
5149 status = cli_cm_open(talloc_tos(), NULL,
5150 have_ip ? dest_ss_str : desthost,
5151 service, auth_info,
5152 true, smb_encrypt,
5153 max_protocol, port, name_type,
5154 &cli);
5155 if (!NT_STATUS_IS_OK(status)) {
5156 return 1;
5158 cli_set_timeout(cli, io_timeout*1000);
5161 while (cmd[0] != '\0') {
5162 char *line;
5163 char *p;
5164 char *tok;
5165 int i;
5167 if ((p = strchr_m(cmd, ';')) == 0) {
5168 line = cmd;
5169 cmd += strlen(cmd);
5170 } else {
5171 *p = '\0';
5172 line = cmd;
5173 cmd = p + 1;
5176 /* and get the first part of the command */
5177 cmd_ptr = line;
5178 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
5179 continue;
5182 if ((i = process_tok(tok)) >= 0) {
5183 rc = commands[i].fn();
5184 } else if (i == -2) {
5185 d_printf("%s: command abbreviation ambiguous\n",tok);
5186 } else {
5187 d_printf("%s: command not found\n",tok);
5191 return rc;
5194 #define MAX_COMPLETIONS 100
5196 struct completion_remote {
5197 char *dirmask;
5198 char **matches;
5199 int count, samelen;
5200 const char *text;
5201 int len;
5204 static NTSTATUS completion_remote_filter(const char *mnt,
5205 struct file_info *f,
5206 const char *mask,
5207 void *state)
5209 struct completion_remote *info = (struct completion_remote *)state;
5211 if (info->count >= MAX_COMPLETIONS - 1) {
5212 return NT_STATUS_OK;
5214 if (strncmp(info->text, f->name, info->len) != 0) {
5215 return NT_STATUS_OK;
5217 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
5218 return NT_STATUS_OK;
5221 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
5222 info->matches[info->count] = SMB_STRDUP(f->name);
5223 else {
5224 TALLOC_CTX *ctx = talloc_stackframe();
5225 char *tmp;
5227 tmp = talloc_strdup(ctx,info->dirmask);
5228 if (!tmp) {
5229 TALLOC_FREE(ctx);
5230 return NT_STATUS_NO_MEMORY;
5232 tmp = talloc_asprintf_append(tmp, "%s", f->name);
5233 if (!tmp) {
5234 TALLOC_FREE(ctx);
5235 return NT_STATUS_NO_MEMORY;
5237 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
5238 tmp = talloc_asprintf_append(tmp, "%s",
5239 CLI_DIRSEP_STR);
5241 if (!tmp) {
5242 TALLOC_FREE(ctx);
5243 return NT_STATUS_NO_MEMORY;
5245 info->matches[info->count] = SMB_STRDUP(tmp);
5246 TALLOC_FREE(ctx);
5248 if (info->matches[info->count] == NULL) {
5249 return NT_STATUS_OK;
5251 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
5252 smb_readline_ca_char(0);
5254 if (info->count == 1) {
5255 info->samelen = strlen(info->matches[info->count]);
5256 } else {
5257 while (strncmp(info->matches[info->count],
5258 info->matches[info->count-1],
5259 info->samelen) != 0) {
5260 info->samelen--;
5263 info->count++;
5264 return NT_STATUS_OK;
5267 static char **remote_completion(const char *text, int len)
5269 TALLOC_CTX *ctx = talloc_stackframe();
5270 char *dirmask = NULL;
5271 char *targetpath = NULL;
5272 struct cli_state *targetcli = NULL;
5273 int i;
5274 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
5275 NTSTATUS status;
5277 /* can't have non-static initialisation on Sun CC, so do it
5278 at run time here */
5279 info.samelen = len;
5280 info.text = text;
5281 info.len = len;
5283 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
5284 if (!info.matches) {
5285 TALLOC_FREE(ctx);
5286 return NULL;
5290 * We're leaving matches[0] free to fill it later with the text to
5291 * display: Either the one single match or the longest common subset
5292 * of the matches.
5294 info.matches[0] = NULL;
5295 info.count = 1;
5297 for (i = len-1; i >= 0; i--) {
5298 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
5299 break;
5303 info.text = text+i+1;
5304 info.samelen = info.len = len-i-1;
5306 if (i > 0) {
5307 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
5308 if (!info.dirmask) {
5309 goto cleanup;
5311 strncpy(info.dirmask, text, i+1);
5312 info.dirmask[i+1] = 0;
5313 dirmask = talloc_asprintf(ctx,
5314 "%s%*s*",
5315 client_get_cur_dir(),
5316 i-1,
5317 text);
5318 } else {
5319 info.dirmask = SMB_STRDUP("");
5320 if (!info.dirmask) {
5321 goto cleanup;
5323 dirmask = talloc_asprintf(ctx,
5324 "%s*",
5325 client_get_cur_dir());
5327 if (!dirmask) {
5328 goto cleanup;
5331 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
5332 &targetpath);
5333 if (!NT_STATUS_IS_OK(status)) {
5334 goto cleanup;
5336 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
5337 completion_remote_filter, (void *)&info);
5338 if (!NT_STATUS_IS_OK(status)) {
5339 goto cleanup;
5342 if (info.count == 1) {
5344 * No matches at all, NULL indicates there is nothing
5346 SAFE_FREE(info.matches[0]);
5347 SAFE_FREE(info.matches);
5348 TALLOC_FREE(ctx);
5349 return NULL;
5352 if (info.count == 2) {
5354 * Exactly one match in matches[1], indicate this is the one
5355 * in matches[0].
5357 info.matches[0] = info.matches[1];
5358 info.matches[1] = NULL;
5359 info.count -= 1;
5360 TALLOC_FREE(ctx);
5361 return info.matches;
5365 * We got more than one possible match, set the result to the maximum
5366 * common subset
5369 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
5370 info.matches[info.count] = NULL;
5371 TALLOC_FREE(ctx);
5372 return info.matches;
5374 cleanup:
5375 for (i = 0; i < info.count; i++) {
5376 SAFE_FREE(info.matches[i]);
5378 SAFE_FREE(info.matches);
5379 SAFE_FREE(info.dirmask);
5380 TALLOC_FREE(ctx);
5381 return NULL;
5384 static char **completion_fn(const char *text, int start, int end)
5386 smb_readline_ca_char(' ');
5388 if (start) {
5389 const char *buf, *sp;
5390 int i;
5391 char compl_type;
5393 buf = smb_readline_get_line_buffer();
5394 if (buf == NULL)
5395 return NULL;
5397 sp = strchr(buf, ' ');
5398 if (sp == NULL)
5399 return NULL;
5401 for (i = 0; commands[i].name; i++) {
5402 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5403 (commands[i].name[sp - buf] == 0)) {
5404 break;
5407 if (commands[i].name == NULL)
5408 return NULL;
5410 while (*sp == ' ')
5411 sp++;
5413 if (sp == (buf + start))
5414 compl_type = commands[i].compl_args[0];
5415 else
5416 compl_type = commands[i].compl_args[1];
5418 if (compl_type == COMPL_REMOTE)
5419 return remote_completion(text, end - start);
5420 else /* fall back to local filename completion */
5421 return NULL;
5422 } else {
5423 char **matches;
5424 int i, len, samelen = 0, count=1;
5426 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5427 if (!matches) {
5428 return NULL;
5430 matches[0] = NULL;
5432 len = strlen(text);
5433 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5434 if (strncmp(text, commands[i].name, len) == 0) {
5435 matches[count] = SMB_STRDUP(commands[i].name);
5436 if (!matches[count])
5437 goto cleanup;
5438 if (count == 1)
5439 samelen = strlen(matches[count]);
5440 else
5441 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5442 samelen--;
5443 count++;
5447 switch (count) {
5448 case 0: /* should never happen */
5449 case 1:
5450 goto cleanup;
5451 case 2:
5452 matches[0] = SMB_STRDUP(matches[1]);
5453 break;
5454 default:
5455 matches[0] = (char *)SMB_MALLOC(samelen+1);
5456 if (!matches[0])
5457 goto cleanup;
5458 strncpy(matches[0], matches[1], samelen);
5459 matches[0][samelen] = 0;
5461 matches[count] = NULL;
5462 return matches;
5464 cleanup:
5465 for (i = 0; i < count; i++)
5466 free(matches[i]);
5468 free(matches);
5469 return NULL;
5473 static bool finished;
5475 /****************************************************************************
5476 Make sure we swallow keepalives during idle time.
5477 ****************************************************************************/
5479 static void readline_callback(void)
5481 static time_t last_t;
5482 struct timespec now;
5483 time_t t;
5484 NTSTATUS status;
5485 unsigned char garbage[16];
5487 clock_gettime_mono(&now);
5488 t = now.tv_sec;
5490 if (t - last_t < 5)
5491 return;
5493 last_t = t;
5495 /* Ping the server to keep the connection alive using SMBecho. */
5496 memset(garbage, 0xf0, sizeof(garbage));
5497 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5498 if (NT_STATUS_IS_OK(status)) {
5499 return;
5502 if (!cli_state_is_connected(cli)) {
5503 DEBUG(0,("SMBecho failed (%s). The connection is "
5504 "disconnected now\n", nt_errstr(status)));
5505 finished = true;
5506 smb_readline_done();
5510 /****************************************************************************
5511 Process commands on stdin.
5512 ****************************************************************************/
5514 static int process_stdin(void)
5516 int rc = 0;
5518 while (!finished) {
5519 TALLOC_CTX *frame = talloc_stackframe();
5520 char *tok = NULL;
5521 char *the_prompt = NULL;
5522 char *line = NULL;
5523 int i;
5525 /* display a prompt */
5526 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5527 TALLOC_FREE(frame);
5528 break;
5530 line = smb_readline(the_prompt, readline_callback, completion_fn);
5531 SAFE_FREE(the_prompt);
5532 if (!line) {
5533 TALLOC_FREE(frame);
5534 break;
5537 /* special case - first char is ! */
5538 if (*line == '!') {
5539 if (system(line + 1) == -1) {
5540 d_printf("system() command %s failed.\n",
5541 line+1);
5543 SAFE_FREE(line);
5544 TALLOC_FREE(frame);
5545 continue;
5548 /* and get the first part of the command */
5549 cmd_ptr = line;
5550 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5551 TALLOC_FREE(frame);
5552 SAFE_FREE(line);
5553 continue;
5556 if ((i = process_tok(tok)) >= 0) {
5557 rc = commands[i].fn();
5558 } else if (i == -2) {
5559 d_printf("%s: command abbreviation ambiguous\n",tok);
5560 } else {
5561 d_printf("%s: command not found\n",tok);
5563 SAFE_FREE(line);
5564 TALLOC_FREE(frame);
5566 return rc;
5569 /****************************************************************************
5570 Process commands from the client.
5571 ****************************************************************************/
5573 static int process(const char *base_directory)
5575 int rc = 0;
5576 NTSTATUS status;
5578 status = cli_cm_open(talloc_tos(), NULL,
5579 have_ip ? dest_ss_str : desthost,
5580 service, auth_info, true, smb_encrypt,
5581 max_protocol, port, name_type, &cli);
5582 if (!NT_STATUS_IS_OK(status)) {
5583 return 1;
5586 cli_set_timeout(cli, io_timeout*1000);
5588 if (base_directory && *base_directory) {
5589 rc = do_cd(base_directory);
5590 if (rc) {
5591 cli_shutdown(cli);
5592 return rc;
5596 if (cmdstr) {
5597 rc = process_command_string(cmdstr);
5598 } else {
5599 process_stdin();
5602 cli_shutdown(cli);
5603 return rc;
5606 /****************************************************************************
5607 Handle a -L query.
5608 ****************************************************************************/
5610 static int do_host_query(const char *query_host)
5612 NTSTATUS status;
5614 status = cli_cm_open(talloc_tos(), NULL,
5615 have_ip ? dest_ss_str : query_host,
5616 "IPC$", auth_info, true, smb_encrypt,
5617 max_protocol, port, name_type, &cli);
5618 if (!NT_STATUS_IS_OK(status)) {
5619 return 1;
5622 cli_set_timeout(cli, io_timeout*1000);
5623 browse_host(true);
5625 /* Ensure that the host can do IPv4 */
5627 if (!interpret_addr(query_host)) {
5628 struct sockaddr_storage ss;
5629 if (interpret_string_addr(&ss, query_host, 0) &&
5630 (ss.ss_family != AF_INET)) {
5631 d_printf("%s is an IPv6 address -- no workgroup available\n",
5632 query_host);
5633 return 1;
5637 if (lp_disable_netbios()) {
5638 goto out;
5641 if (port != NBT_SMB_PORT) {
5643 /* Workgroups simply don't make sense over anything
5644 else but port 139... */
5646 cli_shutdown(cli);
5647 status = cli_cm_open(talloc_tos(), NULL,
5648 have_ip ? dest_ss_str : query_host,
5649 "IPC$", auth_info, true, smb_encrypt,
5650 max_protocol, NBT_SMB_PORT, name_type,
5651 &cli);
5652 if (!NT_STATUS_IS_OK(status)) {
5653 cli = NULL;
5657 if (cli == NULL) {
5658 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5659 return 0;
5662 cli_set_timeout(cli, io_timeout*1000);
5663 list_servers(lp_workgroup());
5664 out:
5665 cli_shutdown(cli);
5667 return(0);
5670 /****************************************************************************
5671 Handle a tar operation.
5672 ****************************************************************************/
5674 static int do_tar_op(const char *base_directory)
5676 struct tar *tar_ctx = tar_get_ctx();
5677 int ret = 0;
5679 /* do we already have a connection? */
5680 if (!cli) {
5681 NTSTATUS status;
5683 status = cli_cm_open(talloc_tos(), NULL,
5684 have_ip ? dest_ss_str : desthost,
5685 service, auth_info, true, smb_encrypt,
5686 max_protocol, port, name_type, &cli);
5687 if (!NT_STATUS_IS_OK(status)) {
5688 ret = 1;
5689 goto out;
5691 cli_set_timeout(cli, io_timeout*1000);
5694 recurse = true;
5696 if (base_directory && *base_directory) {
5697 ret = do_cd(base_directory);
5698 if (ret) {
5699 goto out_cli;
5703 ret = tar_process(tar_ctx);
5705 out_cli:
5706 cli_shutdown(cli);
5707 out:
5708 return ret;
5711 /****************************************************************************
5712 Handle a message operation.
5713 ****************************************************************************/
5715 static int do_message_op(struct user_auth_info *a_info)
5717 NTSTATUS status;
5719 if (lp_disable_netbios()) {
5720 d_printf("NetBIOS over TCP disabled.\n");
5721 return 1;
5724 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5725 port ? port : NBT_SMB_PORT, name_type,
5726 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5727 if (!NT_STATUS_IS_OK(status)) {
5728 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5729 return 1;
5732 cli_set_timeout(cli, io_timeout*1000);
5733 send_message(get_cmdline_auth_info_username(a_info));
5734 cli_shutdown(cli);
5736 return 0;
5739 /****************************************************************************
5740 main program
5741 ****************************************************************************/
5743 int main(int argc,char *argv[])
5745 const char **const_argv = discard_const_p(const char *, argv);
5746 char *base_directory = NULL;
5747 int opt;
5748 char *query_host = NULL;
5749 bool message = false;
5750 static const char *new_name_resolve_order = NULL;
5751 poptContext pc;
5752 char *p;
5753 int rc = 0;
5754 bool tar_opt = false;
5755 bool service_opt = false;
5756 struct tar *tar_ctx = tar_get_ctx();
5758 struct poptOption long_options[] = {
5759 POPT_AUTOHELP
5761 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5762 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5763 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5764 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5765 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5766 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5767 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5768 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5769 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5770 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5771 { "timeout", 't', POPT_ARG_INT, &io_timeout, 'b', "Changes the per-operation timeout", "SECONDS" },
5772 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5773 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5774 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5775 POPT_COMMON_SAMBA
5776 POPT_COMMON_CONNECTION
5777 POPT_COMMON_CREDENTIALS
5778 POPT_TABLEEND
5780 TALLOC_CTX *frame = talloc_stackframe();
5782 if (!client_set_cur_dir("\\")) {
5783 exit(ENOMEM);
5786 /* set default debug level to 1 regardless of what smb.conf sets */
5787 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5788 smb_init_locale();
5790 lp_set_cmdline("log level", "1");
5792 popt_common_credentials_set_ignore_missing_conf();
5793 popt_common_credentials_set_delay_post();
5795 /* skip argv(0) */
5796 pc = poptGetContext("smbclient", argc, const_argv, long_options, 0);
5797 poptSetOtherOptionHelp(pc, "service <password>");
5799 while ((opt = poptGetNextOpt(pc)) != -1) {
5801 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5802 /* I see no other way to keep things sane --SSS */
5803 if (tar_opt == true) {
5804 while (poptPeekArg(pc)) {
5805 poptGetArg(pc);
5807 tar_opt = false;
5810 /* if the service has not yet been specified lets see if it is available in the popt stack */
5811 if (!service_opt && poptPeekArg(pc)) {
5812 service = talloc_strdup(frame, poptGetArg(pc));
5813 if (!service) {
5814 exit(ENOMEM);
5816 service_opt = true;
5819 /* if the service has already been retrieved then check if we have also a password */
5820 if (service_opt
5821 && (!get_cmdline_auth_info_got_pass(cmdline_auth_info))
5822 && poptPeekArg(pc)) {
5823 set_cmdline_auth_info_password(cmdline_auth_info,
5824 poptGetArg(pc));
5828 switch (opt) {
5829 case 'M':
5830 /* Messages are sent to NetBIOS name type 0x3
5831 * (Messenger Service). Make sure we default
5832 * to port 139 instead of port 445. srl,crh
5834 name_type = 0x03;
5835 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5836 if (!desthost) {
5837 exit(ENOMEM);
5839 if( !port )
5840 port = NBT_SMB_PORT;
5841 message = true;
5842 break;
5843 case 'I':
5845 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5846 exit(1);
5848 have_ip = true;
5849 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5851 break;
5852 case 'E':
5853 setup_logging("smbclient", DEBUG_STDERR );
5854 display_set_stderr();
5855 break;
5857 case 'L':
5858 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5859 if (!query_host) {
5860 exit(ENOMEM);
5862 break;
5863 case 'm':
5864 lp_set_cmdline("client max protocol", poptGetOptArg(pc));
5865 break;
5866 case 'T':
5867 /* We must use old option processing for this. Find the
5868 * position of the -T option in the raw argv[]. */
5870 int i;
5872 for (i = 1; i < argc; i++) {
5873 if (strncmp("-T", argv[i],2)==0)
5874 break;
5876 i++;
5877 if (tar_parse_args(tar_ctx, poptGetOptArg(pc),
5878 const_argv + i, argc - i)) {
5879 poptPrintUsage(pc, stderr, 0);
5880 exit(1);
5883 /* this must be the last option, mark we have parsed it so that we know we have */
5884 tar_opt = true;
5885 break;
5886 case 'D':
5887 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5888 if (!base_directory) {
5889 exit(ENOMEM);
5891 break;
5892 case 'g':
5893 grepable=true;
5894 break;
5895 case 'e':
5896 smb_encrypt=true;
5897 break;
5898 case 'B':
5899 return(do_smb_browse());
5904 /* We may still have some leftovers after the last popt option has been called */
5905 if (tar_opt == true) {
5906 while (poptPeekArg(pc)) {
5907 poptGetArg(pc);
5909 tar_opt = false;
5912 /* if the service has not yet been specified lets see if it is available in the popt stack */
5913 if (!service_opt && poptPeekArg(pc)) {
5914 service = talloc_strdup(frame,poptGetArg(pc));
5915 if (!service) {
5916 exit(ENOMEM);
5918 service_opt = true;
5921 /* if the service has already been retrieved then check if we have also a password */
5922 if (service_opt
5923 && !get_cmdline_auth_info_got_pass(cmdline_auth_info)
5924 && poptPeekArg(pc)) {
5925 set_cmdline_auth_info_password(cmdline_auth_info,
5926 poptGetArg(pc));
5929 if (service_opt && service) {
5930 size_t len;
5932 /* Convert any '/' characters in the service name to '\' characters */
5933 string_replace(service, '/','\\');
5934 if (count_chars(service,'\\') < 3) {
5935 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5936 poptPrintUsage(pc, stderr, 0);
5937 exit(1);
5939 /* Remove trailing slashes */
5940 len = strlen(service);
5941 while(len > 0 && service[len - 1] == '\\') {
5942 --len;
5943 service[len] = '\0';
5947 if (!init_names()) {
5948 fprintf(stderr, "init_names() failed\n");
5949 exit(1);
5952 if(new_name_resolve_order)
5953 lp_set_cmdline("name resolve order", new_name_resolve_order);
5955 if (!tar_to_process(tar_ctx) && !query_host && !service && !message) {
5956 poptPrintUsage(pc, stderr, 0);
5957 exit(1);
5960 poptFreeContext(pc);
5961 popt_burn_cmdline_password(argc, argv);
5963 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5965 /* Ensure we have a password (or equivalent). */
5966 popt_common_credentials_post();
5967 auth_info = cmdline_auth_info;
5968 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5970 max_protocol = lp_client_max_protocol();
5972 if (tar_to_process(tar_ctx)) {
5973 if (cmdstr)
5974 process_command_string(cmdstr);
5975 rc = do_tar_op(base_directory);
5976 } else if (query_host && *query_host) {
5977 char *qhost = query_host;
5978 char *slash;
5980 while (*qhost == '\\' || *qhost == '/')
5981 qhost++;
5983 if ((slash = strchr_m(qhost, '/'))
5984 || (slash = strchr_m(qhost, '\\'))) {
5985 *slash = 0;
5988 if ((p=strchr_m(qhost, '#'))) {
5989 *p = 0;
5990 p++;
5991 sscanf(p, "%x", &name_type);
5994 rc = do_host_query(qhost);
5995 } else if (message) {
5996 rc = do_message_op(auth_info);
5997 } else if (process(base_directory)) {
5998 rc = 1;
6001 TALLOC_FREE(frame);
6002 return rc;