s4-dsdb/schema: Implement multi-pass working schema creation function
[Samba.git] / source3 / client / client.c
blobb3bbcf5cd7d05f2a21053b496169566023de97d2
1 /*
2 Unix SMB/CIFS implementation.
3 SMB client
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "popt_common.h"
26 #include "client/client_proto.h"
27 #include "../librpc/gen_ndr/cli_srvsvc.h"
28 #include "../lib/util/select.h"
29 #include "system/readline.h"
30 #include "../libcli/smbreadline/smbreadline.h"
31 #include "../libcli/security/security.h"
33 #ifndef REGISTER
34 #define REGISTER 0
35 #endif
37 extern int do_smb_browse(void); /* mDNS browsing */
39 extern bool AllowDebugChange;
40 extern bool override_logfile;
41 extern char tar_type;
43 static int port = 0;
44 static char *service;
45 static char *desthost;
46 static char *calling_name;
47 static bool grepable = false;
48 static char *cmdstr = NULL;
49 const char *cmd_ptr = NULL;
51 static int io_bufsize = 524288;
53 static int name_type = 0x20;
54 static int max_protocol = PROTOCOL_NT1;
56 static int process_tok(char *tok);
57 static int cmd_help(void);
59 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
61 /* 30 second timeout on most commands */
62 #define CLIENT_TIMEOUT (30*1000)
63 #define SHORT_TIMEOUT (5*1000)
65 /* value for unused fid field in trans2 secondary request */
66 #define FID_UNUSED (0xFFFF)
68 time_t newer_than = 0;
69 static int archive_level = 0;
71 static bool translation = false;
72 static bool have_ip;
74 /* clitar bits insert */
75 extern int blocksize;
76 extern bool tar_inc;
77 extern bool tar_reset;
78 /* clitar bits end */
80 static bool prompt = true;
82 static bool recurse = false;
83 static bool showacls = false;
84 bool lowercase = false;
86 static struct sockaddr_storage dest_ss;
87 static char dest_ss_str[INET6_ADDRSTRLEN];
89 #define SEPARATORS " \t\n\r"
91 static bool abort_mget = true;
93 /* timing globals */
94 uint64_t get_total_size = 0;
95 unsigned int get_total_time_ms = 0;
96 static uint64_t put_total_size = 0;
97 static unsigned int put_total_time_ms = 0;
99 /* totals globals */
100 static double dir_total;
102 /* encrypted state. */
103 static bool smb_encrypt;
105 /* root cli_state connection */
107 struct cli_state *cli;
109 static char CLI_DIRSEP_CHAR = '\\';
110 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
112 /* Authentication for client connections. */
113 struct user_auth_info *auth_info;
115 /* Accessor functions for directory paths. */
116 static char *fileselection;
117 static const char *client_get_fileselection(void)
119 if (fileselection) {
120 return fileselection;
122 return "";
125 static const char *client_set_fileselection(const char *new_fs)
127 SAFE_FREE(fileselection);
128 if (new_fs) {
129 fileselection = SMB_STRDUP(new_fs);
131 return client_get_fileselection();
134 static char *cwd;
135 static const char *client_get_cwd(void)
137 if (cwd) {
138 return cwd;
140 return CLI_DIRSEP_STR;
143 static const char *client_set_cwd(const char *new_cwd)
145 SAFE_FREE(cwd);
146 if (new_cwd) {
147 cwd = SMB_STRDUP(new_cwd);
149 return client_get_cwd();
152 static char *cur_dir;
153 const char *client_get_cur_dir(void)
155 if (cur_dir) {
156 return cur_dir;
158 return CLI_DIRSEP_STR;
161 const char *client_set_cur_dir(const char *newdir)
163 SAFE_FREE(cur_dir);
164 if (newdir) {
165 cur_dir = SMB_STRDUP(newdir);
167 return client_get_cur_dir();
170 /****************************************************************************
171 Put up a yes/no prompt.
172 ****************************************************************************/
174 static bool yesno(const char *p)
176 char ans[20];
177 printf("%s",p);
179 if (!fgets(ans,sizeof(ans)-1,stdin))
180 return(False);
182 if (*ans == 'y' || *ans == 'Y')
183 return(True);
185 return(False);
188 /****************************************************************************
189 Write to a local file with CR/LF->LF translation if appropriate. Return the
190 number taken from the buffer. This may not equal the number written.
191 ****************************************************************************/
193 static int writefile(int f, char *b, int n)
195 int i;
197 if (!translation) {
198 return write(f,b,n);
201 i = 0;
202 while (i < n) {
203 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
204 b++;i++;
206 if (write(f, b, 1) != 1) {
207 break;
209 b++;
210 i++;
213 return(i);
216 /****************************************************************************
217 Read from a file with LF->CR/LF translation if appropriate. Return the
218 number read. read approx n bytes.
219 ****************************************************************************/
221 static int readfile(uint8_t *b, int n, XFILE *f)
223 int i;
224 int c;
226 if (!translation)
227 return x_fread(b,1,n,f);
229 i = 0;
230 while (i < (n - 1) && (i < BUFFER_SIZE)) {
231 if ((c = x_getc(f)) == EOF) {
232 break;
235 if (c == '\n') { /* change all LFs to CR/LF */
236 b[i++] = '\r';
239 b[i++] = c;
242 return(i);
245 struct push_state {
246 XFILE *f;
247 SMB_OFF_T nread;
250 static size_t push_source(uint8_t *buf, size_t n, void *priv)
252 struct push_state *state = (struct push_state *)priv;
253 int result;
255 if (x_feof(state->f)) {
256 return 0;
259 result = readfile(buf, n, state->f);
260 state->nread += result;
261 return result;
264 /****************************************************************************
265 Send a message.
266 ****************************************************************************/
268 static void send_message(const char *username)
270 char buf[1600];
271 NTSTATUS status;
272 int i;
274 d_printf("Type your message, ending it with a Control-D\n");
276 i = 0;
277 while (i<sizeof(buf)-2) {
278 int c = fgetc(stdin);
279 if (c == EOF) {
280 break;
282 if (c == '\n') {
283 buf[i++] = '\r';
285 buf[i++] = c;
287 buf[i] = '\0';
289 status = cli_message(cli, desthost, username, buf);
290 if (!NT_STATUS_IS_OK(status)) {
291 d_fprintf(stderr, "cli_message returned %s\n",
292 nt_errstr(status));
296 /****************************************************************************
297 Check the space on a device.
298 ****************************************************************************/
300 static int do_dskattr(void)
302 int total, bsize, avail;
303 struct cli_state *targetcli = NULL;
304 char *targetpath = NULL;
305 TALLOC_CTX *ctx = talloc_tos();
306 NTSTATUS status;
308 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
309 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
310 return 1;
313 status = cli_dskattr(targetcli, &bsize, &total, &avail);
314 if (!NT_STATUS_IS_OK(status)) {
315 d_printf("Error in dskattr: %s\n", nt_errstr(status));
316 return 1;
319 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
320 total, bsize, avail);
322 return 0;
325 /****************************************************************************
326 Show cd/pwd.
327 ****************************************************************************/
329 static int cmd_pwd(void)
331 d_printf("Current directory is %s",service);
332 d_printf("%s\n",client_get_cur_dir());
333 return 0;
336 /****************************************************************************
337 Ensure name has correct directory separators.
338 ****************************************************************************/
340 static void normalize_name(char *newdir)
342 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
343 string_replace(newdir,'/','\\');
347 /****************************************************************************
348 Change directory - inner section.
349 ****************************************************************************/
351 static int do_cd(const char *new_dir)
353 char *newdir = NULL;
354 char *saved_dir = NULL;
355 char *new_cd = NULL;
356 char *targetpath = NULL;
357 struct cli_state *targetcli = NULL;
358 SMB_STRUCT_STAT sbuf;
359 uint32 attributes;
360 int ret = 1;
361 TALLOC_CTX *ctx = talloc_stackframe();
363 newdir = talloc_strdup(ctx, new_dir);
364 if (!newdir) {
365 TALLOC_FREE(ctx);
366 return 1;
369 normalize_name(newdir);
371 /* Save the current directory in case the new directory is invalid */
373 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
374 if (!saved_dir) {
375 TALLOC_FREE(ctx);
376 return 1;
379 if (*newdir == CLI_DIRSEP_CHAR) {
380 client_set_cur_dir(newdir);
381 new_cd = newdir;
382 } else {
383 new_cd = talloc_asprintf(ctx, "%s%s",
384 client_get_cur_dir(),
385 newdir);
386 if (!new_cd) {
387 goto out;
391 /* Ensure cur_dir ends in a DIRSEP */
392 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
393 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
394 if (!new_cd) {
395 goto out;
398 client_set_cur_dir(new_cd);
400 new_cd = clean_name(ctx, new_cd);
401 client_set_cur_dir(new_cd);
403 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
404 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
405 client_set_cur_dir(saved_dir);
406 goto out;
409 if (strequal(targetpath,CLI_DIRSEP_STR )) {
410 TALLOC_FREE(ctx);
411 return 0;
414 /* Use a trans2_qpathinfo to test directories for modern servers.
415 Except Win9x doesn't support the qpathinfo_basic() call..... */
417 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
418 NTSTATUS status;
420 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
421 &attributes);
422 if (!NT_STATUS_IS_OK(status)) {
423 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
424 client_set_cur_dir(saved_dir);
425 goto out;
428 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
429 d_printf("cd %s: not a directory\n", new_cd);
430 client_set_cur_dir(saved_dir);
431 goto out;
433 } else {
434 NTSTATUS status;
436 targetpath = talloc_asprintf(ctx,
437 "%s%s",
438 targetpath,
439 CLI_DIRSEP_STR );
440 if (!targetpath) {
441 client_set_cur_dir(saved_dir);
442 goto out;
444 targetpath = clean_name(ctx, targetpath);
445 if (!targetpath) {
446 client_set_cur_dir(saved_dir);
447 goto out;
450 status = cli_chkpath(targetcli, targetpath);
451 if (!NT_STATUS_IS_OK(status)) {
452 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
453 client_set_cur_dir(saved_dir);
454 goto out;
458 ret = 0;
460 out:
462 TALLOC_FREE(ctx);
463 return ret;
466 /****************************************************************************
467 Change directory.
468 ****************************************************************************/
470 static int cmd_cd(void)
472 char *buf = NULL;
473 int rc = 0;
475 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
476 rc = do_cd(buf);
477 } else {
478 d_printf("Current directory is %s\n",client_get_cur_dir());
481 return rc;
484 /****************************************************************************
485 Change directory.
486 ****************************************************************************/
488 static int cmd_cd_oneup(void)
490 return do_cd("..");
493 /*******************************************************************
494 Decide if a file should be operated on.
495 ********************************************************************/
497 static bool do_this_one(struct file_info *finfo)
499 if (!finfo->name) {
500 return false;
503 if (finfo->mode & aDIR) {
504 return true;
507 if (*client_get_fileselection() &&
508 !mask_match(finfo->name,client_get_fileselection(),false)) {
509 DEBUG(3,("mask_match %s failed\n", finfo->name));
510 return false;
513 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
514 DEBUG(3,("newer_than %s failed\n", finfo->name));
515 return false;
518 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
519 DEBUG(3,("archive %s failed\n", finfo->name));
520 return false;
523 return true;
526 /****************************************************************************
527 Display info about a file.
528 ****************************************************************************/
530 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
531 const char *dir)
533 time_t t;
534 TALLOC_CTX *ctx = talloc_tos();
535 NTSTATUS status = NT_STATUS_OK;
537 if (!do_this_one(finfo)) {
538 return NT_STATUS_OK;
541 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
542 if (!showacls) {
543 d_printf(" %-30s%7.7s %8.0f %s",
544 finfo->name,
545 attrib_string(finfo->mode),
546 (double)finfo->size,
547 time_to_asc(t));
548 dir_total += finfo->size;
549 } else {
550 char *afname = NULL;
551 uint16_t fnum;
553 /* skip if this is . or .. */
554 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
555 return NT_STATUS_OK;
556 /* create absolute filename for cli_ntcreate() FIXME */
557 afname = talloc_asprintf(ctx,
558 "%s%s%s",
559 dir,
560 CLI_DIRSEP_STR,
561 finfo->name);
562 if (!afname) {
563 return NT_STATUS_NO_MEMORY;
565 /* print file meta date header */
566 d_printf( "FILENAME:%s\n", finfo->name);
567 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
568 d_printf( "SIZE:%.0f\n", (double)finfo->size);
569 d_printf( "MTIME:%s", time_to_asc(t));
570 status = cli_ntcreate(cli_state, afname, 0,
571 CREATE_ACCESS_READ, 0,
572 FILE_SHARE_READ|FILE_SHARE_WRITE,
573 FILE_OPEN, 0x0, 0x0, &fnum);
574 if (!NT_STATUS_IS_OK(status)) {
575 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
576 afname, nt_errstr(status)));
577 } else {
578 struct security_descriptor *sd = NULL;
579 sd = cli_query_secdesc(cli_state, fnum, ctx);
580 if (!sd) {
581 DEBUG( 0, ("display_finfo() failed to "
582 "get security descriptor: %s",
583 cli_errstr(cli_state)));
584 status = cli_nt_error(cli_state);
585 } else {
586 display_sec_desc(sd);
588 TALLOC_FREE(sd);
590 TALLOC_FREE(afname);
592 return status;
595 /****************************************************************************
596 Accumulate size of a file.
597 ****************************************************************************/
599 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
600 const char *dir)
602 if (do_this_one(finfo)) {
603 dir_total += finfo->size;
605 return NT_STATUS_OK;
608 static bool do_list_recurse;
609 static bool do_list_dirs;
610 static char *do_list_queue = 0;
611 static long do_list_queue_size = 0;
612 static long do_list_queue_start = 0;
613 static long do_list_queue_end = 0;
614 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
615 const char *dir);
617 /****************************************************************************
618 Functions for do_list_queue.
619 ****************************************************************************/
622 * The do_list_queue is a NUL-separated list of strings stored in a
623 * char*. Since this is a FIFO, we keep track of the beginning and
624 * ending locations of the data in the queue. When we overflow, we
625 * double the size of the char*. When the start of the data passes
626 * the midpoint, we move everything back. This is logically more
627 * complex than a linked list, but easier from a memory management
628 * angle. In any memory error condition, do_list_queue is reset.
629 * Functions check to ensure that do_list_queue is non-NULL before
630 * accessing it.
633 static void reset_do_list_queue(void)
635 SAFE_FREE(do_list_queue);
636 do_list_queue_size = 0;
637 do_list_queue_start = 0;
638 do_list_queue_end = 0;
641 static void init_do_list_queue(void)
643 reset_do_list_queue();
644 do_list_queue_size = 1024;
645 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
646 if (do_list_queue == 0) {
647 d_printf("malloc fail for size %d\n",
648 (int)do_list_queue_size);
649 reset_do_list_queue();
650 } else {
651 memset(do_list_queue, 0, do_list_queue_size);
655 static void adjust_do_list_queue(void)
658 * If the starting point of the queue is more than half way through,
659 * move everything toward the beginning.
662 if (do_list_queue == NULL) {
663 DEBUG(4,("do_list_queue is empty\n"));
664 do_list_queue_start = do_list_queue_end = 0;
665 return;
668 if (do_list_queue_start == do_list_queue_end) {
669 DEBUG(4,("do_list_queue is empty\n"));
670 do_list_queue_start = do_list_queue_end = 0;
671 *do_list_queue = '\0';
672 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
673 DEBUG(4,("sliding do_list_queue backward\n"));
674 memmove(do_list_queue,
675 do_list_queue + do_list_queue_start,
676 do_list_queue_end - do_list_queue_start);
677 do_list_queue_end -= do_list_queue_start;
678 do_list_queue_start = 0;
682 static void add_to_do_list_queue(const char *entry)
684 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
685 while (new_end > do_list_queue_size) {
686 do_list_queue_size *= 2;
687 DEBUG(4,("enlarging do_list_queue to %d\n",
688 (int)do_list_queue_size));
689 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
690 if (! do_list_queue) {
691 d_printf("failure enlarging do_list_queue to %d bytes\n",
692 (int)do_list_queue_size);
693 reset_do_list_queue();
694 } else {
695 memset(do_list_queue + do_list_queue_size / 2,
696 0, do_list_queue_size / 2);
699 if (do_list_queue) {
700 safe_strcpy_base(do_list_queue + do_list_queue_end,
701 entry, do_list_queue, do_list_queue_size);
702 do_list_queue_end = new_end;
703 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
704 entry, (int)do_list_queue_start, (int)do_list_queue_end));
708 static char *do_list_queue_head(void)
710 return do_list_queue + do_list_queue_start;
713 static void remove_do_list_queue_head(void)
715 if (do_list_queue_end > do_list_queue_start) {
716 do_list_queue_start += strlen(do_list_queue_head()) + 1;
717 adjust_do_list_queue();
718 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
719 (int)do_list_queue_start, (int)do_list_queue_end));
723 static int do_list_queue_empty(void)
725 return (! (do_list_queue && *do_list_queue));
728 /****************************************************************************
729 A helper for do_list.
730 ****************************************************************************/
732 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
733 const char *mask, void *state)
735 struct cli_state *cli_state = (struct cli_state *)state;
736 TALLOC_CTX *ctx = talloc_tos();
737 char *dir = NULL;
738 char *dir_end = NULL;
739 NTSTATUS status = NT_STATUS_OK;
741 /* Work out the directory. */
742 dir = talloc_strdup(ctx, mask);
743 if (!dir) {
744 return NT_STATUS_NO_MEMORY;
746 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
747 *dir_end = '\0';
750 if (f->mode & aDIR) {
751 if (do_list_dirs && do_this_one(f)) {
752 status = do_list_fn(cli_state, f, dir);
753 if (!NT_STATUS_IS_OK(status)) {
754 return status;
757 if (do_list_recurse &&
758 f->name &&
759 !strequal(f->name,".") &&
760 !strequal(f->name,"..")) {
761 char *mask2 = NULL;
762 char *p = NULL;
764 if (!f->name[0]) {
765 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
766 TALLOC_FREE(dir);
767 return NT_STATUS_UNSUCCESSFUL;
770 mask2 = talloc_asprintf(ctx,
771 "%s%s",
772 mntpoint,
773 mask);
774 if (!mask2) {
775 TALLOC_FREE(dir);
776 return NT_STATUS_NO_MEMORY;
778 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
779 if (p) {
780 p[1] = 0;
781 } else {
782 mask2[0] = '\0';
784 mask2 = talloc_asprintf_append(mask2,
785 "%s%s*",
786 f->name,
787 CLI_DIRSEP_STR);
788 if (!mask2) {
789 TALLOC_FREE(dir);
790 return NT_STATUS_NO_MEMORY;
792 add_to_do_list_queue(mask2);
793 TALLOC_FREE(mask2);
795 TALLOC_FREE(dir);
796 return NT_STATUS_OK;
799 if (do_this_one(f)) {
800 status = do_list_fn(cli_state, f, dir);
802 TALLOC_FREE(dir);
803 return status;
806 /****************************************************************************
807 A wrapper around cli_list that adds recursion.
808 ****************************************************************************/
810 NTSTATUS do_list(const char *mask,
811 uint16 attribute,
812 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
813 const char *dir),
814 bool rec,
815 bool dirs)
817 static int in_do_list = 0;
818 TALLOC_CTX *ctx = talloc_tos();
819 struct cli_state *targetcli = NULL;
820 char *targetpath = NULL;
821 NTSTATUS ret_status = NT_STATUS_OK;
822 NTSTATUS status = NT_STATUS_OK;
824 if (in_do_list && rec) {
825 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
826 exit(1);
829 in_do_list = 1;
831 do_list_recurse = rec;
832 do_list_dirs = dirs;
833 do_list_fn = fn;
835 if (rec) {
836 init_do_list_queue();
837 add_to_do_list_queue(mask);
839 while (!do_list_queue_empty()) {
841 * Need to copy head so that it doesn't become
842 * invalid inside the call to cli_list. This
843 * would happen if the list were expanded
844 * during the call.
845 * Fix from E. Jay Berkenbilt (ejb@ql.org)
847 char *head = talloc_strdup(ctx, do_list_queue_head());
849 if (!head) {
850 return NT_STATUS_NO_MEMORY;
853 /* check for dfs */
855 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
856 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
857 remove_do_list_queue_head();
858 continue;
861 status = cli_list(targetcli, targetpath, attribute,
862 do_list_helper, targetcli);
863 if (!NT_STATUS_IS_OK(status)) {
864 d_printf("%s listing %s\n",
865 nt_errstr(status), targetpath);
866 ret_status = status;
868 remove_do_list_queue_head();
869 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
870 char *next_file = do_list_queue_head();
871 char *save_ch = 0;
872 if ((strlen(next_file) >= 2) &&
873 (next_file[strlen(next_file) - 1] == '*') &&
874 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
875 save_ch = next_file +
876 strlen(next_file) - 2;
877 *save_ch = '\0';
878 if (showacls) {
879 /* cwd is only used if showacls is on */
880 client_set_cwd(next_file);
883 if (!showacls) /* don't disturbe the showacls output */
884 d_printf("\n%s\n",next_file);
885 if (save_ch) {
886 *save_ch = CLI_DIRSEP_CHAR;
889 TALLOC_FREE(head);
890 TALLOC_FREE(targetpath);
892 } else {
893 /* check for dfs */
894 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
896 status = cli_list(targetcli, targetpath, attribute,
897 do_list_helper, targetcli);
898 if (!NT_STATUS_IS_OK(status)) {
899 d_printf("%s listing %s\n",
900 nt_errstr(status), targetpath);
901 ret_status = status;
903 TALLOC_FREE(targetpath);
904 } else {
905 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
906 ret_status = cli_nt_error(cli);
910 in_do_list = 0;
911 reset_do_list_queue();
912 return ret_status;
915 /****************************************************************************
916 Get a directory listing.
917 ****************************************************************************/
919 static int cmd_dir(void)
921 TALLOC_CTX *ctx = talloc_tos();
922 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
923 char *mask = NULL;
924 char *buf = NULL;
925 int rc = 1;
926 NTSTATUS status;
928 dir_total = 0;
929 mask = talloc_strdup(ctx, client_get_cur_dir());
930 if (!mask) {
931 return 1;
934 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
935 normalize_name(buf);
936 if (*buf == CLI_DIRSEP_CHAR) {
937 mask = talloc_strdup(ctx, buf);
938 } else {
939 mask = talloc_asprintf_append(mask, "%s", buf);
941 } else {
942 mask = talloc_asprintf_append(mask, "*");
944 if (!mask) {
945 return 1;
948 if (showacls) {
949 /* cwd is only used if showacls is on */
950 client_set_cwd(client_get_cur_dir());
953 status = do_list(mask, attribute, display_finfo, recurse, true);
954 if (!NT_STATUS_IS_OK(status)) {
955 return 1;
958 rc = do_dskattr();
960 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
962 return rc;
965 /****************************************************************************
966 Get a directory listing.
967 ****************************************************************************/
969 static int cmd_du(void)
971 TALLOC_CTX *ctx = talloc_tos();
972 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
973 char *mask = NULL;
974 char *buf = NULL;
975 NTSTATUS status;
976 int rc = 1;
978 dir_total = 0;
979 mask = talloc_strdup(ctx, client_get_cur_dir());
980 if (!mask) {
981 return 1;
983 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
984 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
985 if (!mask) {
986 return 1;
990 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
991 normalize_name(buf);
992 if (*buf == CLI_DIRSEP_CHAR) {
993 mask = talloc_strdup(ctx, buf);
994 } else {
995 mask = talloc_asprintf_append(mask, "%s", buf);
997 } else {
998 mask = talloc_strdup(ctx, "*");
1001 status = do_list(mask, attribute, do_du, recurse, true);
1002 if (!NT_STATUS_IS_OK(status)) {
1003 return 1;
1006 rc = do_dskattr();
1008 d_printf("Total number of bytes: %.0f\n", dir_total);
1010 return rc;
1013 static int cmd_echo(void)
1015 TALLOC_CTX *ctx = talloc_tos();
1016 char *num;
1017 char *data;
1018 NTSTATUS status;
1020 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1021 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1022 d_printf("echo <num> <data>\n");
1023 return 1;
1026 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1028 if (!NT_STATUS_IS_OK(status)) {
1029 d_printf("echo failed: %s\n", nt_errstr(status));
1030 return 1;
1033 return 0;
1036 /****************************************************************************
1037 Get a file from rname to lname
1038 ****************************************************************************/
1040 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1042 int *pfd = (int *)priv;
1043 if (writefile(*pfd, buf, n) == -1) {
1044 return map_nt_error_from_unix(errno);
1046 return NT_STATUS_OK;
1049 static int do_get(const char *rname, const char *lname_in, bool reget)
1051 TALLOC_CTX *ctx = talloc_tos();
1052 int handle = 0;
1053 uint16_t fnum;
1054 bool newhandle = false;
1055 struct timespec tp_start;
1056 uint16 attr;
1057 SMB_OFF_T size;
1058 off_t start = 0;
1059 SMB_OFF_T nread = 0;
1060 int rc = 0;
1061 struct cli_state *targetcli = NULL;
1062 char *targetname = NULL;
1063 char *lname = NULL;
1064 NTSTATUS status;
1066 lname = talloc_strdup(ctx, lname_in);
1067 if (!lname) {
1068 return 1;
1071 if (lowercase) {
1072 strlower_m(lname);
1075 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1076 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1077 return 1;
1080 clock_gettime_mono(&tp_start);
1082 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1083 if (!NT_STATUS_IS_OK(status)) {
1084 d_printf("%s opening remote file %s\n", nt_errstr(status),
1085 rname);
1086 return 1;
1089 if(!strcmp(lname,"-")) {
1090 handle = fileno(stdout);
1091 } else {
1092 if (reget) {
1093 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1094 if (handle >= 0) {
1095 start = sys_lseek(handle, 0, SEEK_END);
1096 if (start == -1) {
1097 d_printf("Error seeking local file\n");
1098 return 1;
1101 } else {
1102 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1104 newhandle = true;
1106 if (handle < 0) {
1107 d_printf("Error opening local file %s\n",lname);
1108 return 1;
1112 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1113 targetcli, fnum, &attr, &size, NULL, NULL,
1114 NULL, NULL, NULL)) &&
1115 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1116 &attr, &size, NULL, NULL, NULL))) {
1117 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1118 return 1;
1121 DEBUG(1,("getting file %s of size %.0f as %s ",
1122 rname, (double)size, lname));
1124 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1125 writefile_sink, (void *)&handle, &nread);
1126 if (!NT_STATUS_IS_OK(status)) {
1127 d_fprintf(stderr, "parallel_read returned %s\n",
1128 nt_errstr(status));
1129 cli_close(targetcli, fnum);
1130 return 1;
1133 status = cli_close(targetcli, fnum);
1134 if (!NT_STATUS_IS_OK(status)) {
1135 d_printf("Error %s closing remote file\n", nt_errstr(status));
1136 rc = 1;
1139 if (newhandle) {
1140 close(handle);
1143 if (archive_level >= 2 && (attr & aARCH)) {
1144 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1148 struct timespec tp_end;
1149 int this_time;
1151 clock_gettime_mono(&tp_end);
1152 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1153 get_total_time_ms += this_time;
1154 get_total_size += nread;
1156 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1157 nread / (1.024*this_time + 1.0e-4),
1158 get_total_size / (1.024*get_total_time_ms)));
1161 TALLOC_FREE(targetname);
1162 return rc;
1165 /****************************************************************************
1166 Get a file.
1167 ****************************************************************************/
1169 static int cmd_get(void)
1171 TALLOC_CTX *ctx = talloc_tos();
1172 char *lname = NULL;
1173 char *rname = NULL;
1174 char *fname = NULL;
1176 rname = talloc_strdup(ctx, client_get_cur_dir());
1177 if (!rname) {
1178 return 1;
1181 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1182 d_printf("get <filename> [localname]\n");
1183 return 1;
1185 rname = talloc_asprintf_append(rname, "%s", fname);
1186 if (!rname) {
1187 return 1;
1189 rname = clean_name(ctx, rname);
1190 if (!rname) {
1191 return 1;
1194 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1195 if (!lname) {
1196 lname = fname;
1199 return do_get(rname, lname, false);
1202 /****************************************************************************
1203 Do an mget operation on one file.
1204 ****************************************************************************/
1206 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1207 const char *dir)
1209 TALLOC_CTX *ctx = talloc_tos();
1210 NTSTATUS status = NT_STATUS_OK;
1211 char *rname = NULL;
1212 char *quest = NULL;
1213 char *saved_curdir = NULL;
1214 char *mget_mask = NULL;
1215 char *new_cd = NULL;
1217 if (!finfo->name) {
1218 return NT_STATUS_OK;
1221 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1222 return NT_STATUS_OK;
1224 if (abort_mget) {
1225 d_printf("mget aborted\n");
1226 return NT_STATUS_UNSUCCESSFUL;
1229 if (finfo->mode & aDIR) {
1230 if (asprintf(&quest,
1231 "Get directory %s? ",finfo->name) < 0) {
1232 return NT_STATUS_NO_MEMORY;
1234 } else {
1235 if (asprintf(&quest,
1236 "Get file %s? ",finfo->name) < 0) {
1237 return NT_STATUS_NO_MEMORY;
1241 if (prompt && !yesno(quest)) {
1242 SAFE_FREE(quest);
1243 return NT_STATUS_OK;
1245 SAFE_FREE(quest);
1247 if (!(finfo->mode & aDIR)) {
1248 rname = talloc_asprintf(ctx,
1249 "%s%s",
1250 client_get_cur_dir(),
1251 finfo->name);
1252 if (!rname) {
1253 return NT_STATUS_NO_MEMORY;
1255 do_get(rname, finfo->name, false);
1256 TALLOC_FREE(rname);
1257 return NT_STATUS_OK;
1260 /* handle directories */
1261 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1262 if (!saved_curdir) {
1263 return NT_STATUS_NO_MEMORY;
1266 new_cd = talloc_asprintf(ctx,
1267 "%s%s%s",
1268 client_get_cur_dir(),
1269 finfo->name,
1270 CLI_DIRSEP_STR);
1271 if (!new_cd) {
1272 return NT_STATUS_NO_MEMORY;
1274 client_set_cur_dir(new_cd);
1276 string_replace(finfo->name,'\\','/');
1277 if (lowercase) {
1278 strlower_m(finfo->name);
1281 if (!directory_exist(finfo->name) &&
1282 mkdir(finfo->name,0777) != 0) {
1283 d_printf("failed to create directory %s\n",finfo->name);
1284 client_set_cur_dir(saved_curdir);
1285 return map_nt_error_from_unix(errno);
1288 if (chdir(finfo->name) != 0) {
1289 d_printf("failed to chdir to directory %s\n",finfo->name);
1290 client_set_cur_dir(saved_curdir);
1291 return map_nt_error_from_unix(errno);
1294 mget_mask = talloc_asprintf(ctx,
1295 "%s*",
1296 client_get_cur_dir());
1298 if (!mget_mask) {
1299 return NT_STATUS_NO_MEMORY;
1302 status = do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1303 if (!NT_STATUS_IS_OK(status)) {
1304 return status;
1307 if (chdir("..") == -1) {
1308 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1309 strerror(errno) );
1310 return map_nt_error_from_unix(errno);
1312 client_set_cur_dir(saved_curdir);
1313 TALLOC_FREE(mget_mask);
1314 TALLOC_FREE(saved_curdir);
1315 TALLOC_FREE(new_cd);
1316 return NT_STATUS_OK;
1319 /****************************************************************************
1320 View the file using the pager.
1321 ****************************************************************************/
1323 static int cmd_more(void)
1325 TALLOC_CTX *ctx = talloc_tos();
1326 char *rname = NULL;
1327 char *fname = NULL;
1328 char *lname = NULL;
1329 char *pager_cmd = NULL;
1330 const char *pager;
1331 int fd;
1332 int rc = 0;
1334 rname = talloc_strdup(ctx, client_get_cur_dir());
1335 if (!rname) {
1336 return 1;
1339 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1340 if (!lname) {
1341 return 1;
1343 fd = mkstemp(lname);
1344 if (fd == -1) {
1345 d_printf("failed to create temporary file for more\n");
1346 return 1;
1348 close(fd);
1350 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1351 d_printf("more <filename>\n");
1352 unlink(lname);
1353 return 1;
1355 rname = talloc_asprintf_append(rname, "%s", fname);
1356 if (!rname) {
1357 return 1;
1359 rname = clean_name(ctx,rname);
1360 if (!rname) {
1361 return 1;
1364 rc = do_get(rname, lname, false);
1366 pager=getenv("PAGER");
1368 pager_cmd = talloc_asprintf(ctx,
1369 "%s %s",
1370 (pager? pager:PAGER),
1371 lname);
1372 if (!pager_cmd) {
1373 return 1;
1375 if (system(pager_cmd) == -1) {
1376 d_printf("system command '%s' returned -1\n",
1377 pager_cmd);
1379 unlink(lname);
1381 return rc;
1384 /****************************************************************************
1385 Do a mget command.
1386 ****************************************************************************/
1388 static int cmd_mget(void)
1390 TALLOC_CTX *ctx = talloc_tos();
1391 uint16 attribute = aSYSTEM | aHIDDEN;
1392 char *mget_mask = NULL;
1393 char *buf = NULL;
1394 NTSTATUS status = NT_STATUS_OK;
1396 if (recurse) {
1397 attribute |= aDIR;
1400 abort_mget = false;
1402 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1404 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1405 if (!mget_mask) {
1406 return 1;
1408 if (*buf == CLI_DIRSEP_CHAR) {
1409 mget_mask = talloc_strdup(ctx, buf);
1410 } else {
1411 mget_mask = talloc_asprintf_append(mget_mask,
1412 "%s", buf);
1414 if (!mget_mask) {
1415 return 1;
1417 status = do_list(mget_mask, attribute, do_mget, false, true);
1418 if (!NT_STATUS_IS_OK(status)) {
1419 return 1;
1423 if (mget_mask == NULL) {
1424 d_printf("nothing to mget\n");
1425 return 0;
1428 if (!*mget_mask) {
1429 mget_mask = talloc_asprintf(ctx,
1430 "%s*",
1431 client_get_cur_dir());
1432 if (!mget_mask) {
1433 return 1;
1435 status = do_list(mget_mask, attribute, do_mget, false, true);
1436 if (!NT_STATUS_IS_OK(status)) {
1437 return 1;
1441 return 0;
1444 /****************************************************************************
1445 Make a directory of name "name".
1446 ****************************************************************************/
1448 static bool do_mkdir(const char *name)
1450 TALLOC_CTX *ctx = talloc_tos();
1451 struct cli_state *targetcli;
1452 char *targetname = NULL;
1453 NTSTATUS status;
1455 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1456 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1457 return false;
1460 status = cli_mkdir(targetcli, targetname);
1461 if (!NT_STATUS_IS_OK(status)) {
1462 d_printf("%s making remote directory %s\n",
1463 nt_errstr(status),name);
1464 return false;
1467 return true;
1470 /****************************************************************************
1471 Show 8.3 name of a file.
1472 ****************************************************************************/
1474 static bool do_altname(const char *name)
1476 fstring altname;
1477 NTSTATUS status;
1479 status = cli_qpathinfo_alt_name(cli, name, altname);
1480 if (!NT_STATUS_IS_OK(status)) {
1481 d_printf("%s getting alt name for %s\n",
1482 nt_errstr(status),name);
1483 return false;
1485 d_printf("%s\n", altname);
1487 return true;
1490 /****************************************************************************
1491 Exit client.
1492 ****************************************************************************/
1494 static int cmd_quit(void)
1496 cli_shutdown(cli);
1497 exit(0);
1498 /* NOTREACHED */
1499 return 0;
1502 /****************************************************************************
1503 Make a directory.
1504 ****************************************************************************/
1506 static int cmd_mkdir(void)
1508 TALLOC_CTX *ctx = talloc_tos();
1509 char *mask = NULL;
1510 char *buf = NULL;
1512 mask = talloc_strdup(ctx, client_get_cur_dir());
1513 if (!mask) {
1514 return 1;
1517 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1518 if (!recurse) {
1519 d_printf("mkdir <dirname>\n");
1521 return 1;
1523 mask = talloc_asprintf_append(mask, "%s", buf);
1524 if (!mask) {
1525 return 1;
1528 if (recurse) {
1529 char *ddir = NULL;
1530 char *ddir2 = NULL;
1531 struct cli_state *targetcli;
1532 char *targetname = NULL;
1533 char *p = NULL;
1534 char *saveptr;
1536 ddir2 = talloc_strdup(ctx, "");
1537 if (!ddir2) {
1538 return 1;
1541 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1542 return 1;
1545 ddir = talloc_strdup(ctx, targetname);
1546 if (!ddir) {
1547 return 1;
1549 trim_char(ddir,'.','\0');
1550 p = strtok_r(ddir, "/\\", &saveptr);
1551 while (p) {
1552 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1553 if (!ddir2) {
1554 return 1;
1556 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1557 do_mkdir(ddir2);
1559 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1560 if (!ddir2) {
1561 return 1;
1563 p = strtok_r(NULL, "/\\", &saveptr);
1565 } else {
1566 do_mkdir(mask);
1569 return 0;
1572 /****************************************************************************
1573 Show alt name.
1574 ****************************************************************************/
1576 static int cmd_altname(void)
1578 TALLOC_CTX *ctx = talloc_tos();
1579 char *name;
1580 char *buf;
1582 name = talloc_strdup(ctx, client_get_cur_dir());
1583 if (!name) {
1584 return 1;
1587 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1588 d_printf("altname <file>\n");
1589 return 1;
1591 name = talloc_asprintf_append(name, "%s", buf);
1592 if (!name) {
1593 return 1;
1595 do_altname(name);
1596 return 0;
1599 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1601 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1602 int i = 0;
1604 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1605 if (mode & FILE_ATTRIBUTE_READONLY) {
1606 attrs[i++] = 'R';
1608 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1609 attrs[i++] = 'H';
1611 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1612 attrs[i++] = 'S';
1614 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1615 attrs[i++] = 'D';
1617 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1618 attrs[i++] = 'A';
1621 return attrs;
1624 /****************************************************************************
1625 Show all info we can get
1626 ****************************************************************************/
1628 static int do_allinfo(const char *name)
1630 fstring altname;
1631 struct timespec b_time, a_time, m_time, c_time;
1632 SMB_OFF_T size;
1633 uint16_t mode;
1634 SMB_INO_T ino;
1635 NTTIME tmp;
1636 uint16_t fnum;
1637 unsigned int num_streams;
1638 struct stream_struct *streams;
1639 int num_snapshots;
1640 char **snapshots;
1641 unsigned int i;
1642 NTSTATUS status;
1644 status = cli_qpathinfo_alt_name(cli, name, altname);
1645 if (!NT_STATUS_IS_OK(status)) {
1646 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1647 name);
1648 return false;
1650 d_printf("altname: %s\n", altname);
1652 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1653 &size, &mode, &ino);
1654 if (!NT_STATUS_IS_OK(status)) {
1655 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1656 name);
1657 return false;
1660 unix_timespec_to_nt_time(&tmp, b_time);
1661 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1663 unix_timespec_to_nt_time(&tmp, a_time);
1664 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1666 unix_timespec_to_nt_time(&tmp, m_time);
1667 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1669 unix_timespec_to_nt_time(&tmp, c_time);
1670 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1672 d_printf("attributes: %s\n", attr_str(talloc_tos(), mode));
1674 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1675 &streams);
1676 if (!NT_STATUS_IS_OK(status)) {
1677 d_printf("%s getting streams for %s\n", nt_errstr(status),
1678 name);
1679 return false;
1682 for (i=0; i<num_streams; i++) {
1683 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1684 (unsigned long long)streams[i].size);
1687 status = cli_open(cli, name, O_RDONLY, DENY_NONE, &fnum);
1688 if (!NT_STATUS_IS_OK(status)) {
1690 * Ignore failure, it does not hurt if we can't list
1691 * snapshots
1693 return 0;
1695 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1696 true, &snapshots, &num_snapshots);
1697 if (!NT_STATUS_IS_OK(status)) {
1698 cli_close(cli, fnum);
1699 return 0;
1702 for (i=0; i<num_snapshots; i++) {
1703 char *snap_name;
1705 d_printf("%s\n", snapshots[i]);
1706 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1707 snapshots[i], name);
1708 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1709 &m_time, &c_time, &size,
1710 NULL, NULL);
1711 if (!NT_STATUS_IS_OK(status)) {
1712 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1713 snap_name, nt_errstr(status));
1714 TALLOC_FREE(snap_name);
1715 continue;
1717 unix_timespec_to_nt_time(&tmp, b_time);
1718 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1719 unix_timespec_to_nt_time(&tmp, a_time);
1720 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1721 unix_timespec_to_nt_time(&tmp, m_time);
1722 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1723 unix_timespec_to_nt_time(&tmp, c_time);
1724 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1725 d_printf("size: %d\n", (int)size);
1728 TALLOC_FREE(snapshots);
1730 return 0;
1733 /****************************************************************************
1734 Show all info we can get
1735 ****************************************************************************/
1737 static int cmd_allinfo(void)
1739 TALLOC_CTX *ctx = talloc_tos();
1740 char *name;
1741 char *buf;
1743 name = talloc_strdup(ctx, client_get_cur_dir());
1744 if (!name) {
1745 return 1;
1748 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1749 d_printf("allinfo <file>\n");
1750 return 1;
1752 name = talloc_asprintf_append(name, "%s", buf);
1753 if (!name) {
1754 return 1;
1757 do_allinfo(name);
1759 return 0;
1762 /****************************************************************************
1763 Put a single file.
1764 ****************************************************************************/
1766 static int do_put(const char *rname, const char *lname, bool reput)
1768 TALLOC_CTX *ctx = talloc_tos();
1769 uint16_t fnum;
1770 XFILE *f;
1771 SMB_OFF_T start = 0;
1772 int rc = 0;
1773 struct timespec tp_start;
1774 struct cli_state *targetcli;
1775 char *targetname = NULL;
1776 struct push_state state;
1777 NTSTATUS status;
1779 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1780 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1781 return 1;
1784 clock_gettime_mono(&tp_start);
1786 if (reput) {
1787 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1788 if (NT_STATUS_IS_OK(status)) {
1789 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1790 targetcli, fnum, NULL,
1791 &start, NULL, NULL,
1792 NULL, NULL, NULL)) &&
1793 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1794 d_printf("getattrib: %s\n",cli_errstr(cli));
1795 return 1;
1798 } else {
1799 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1802 if (!NT_STATUS_IS_OK(status)) {
1803 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1804 return 1;
1807 /* allow files to be piped into smbclient
1808 jdblair 24.jun.98
1810 Note that in this case this function will exit(0) rather
1811 than returning. */
1812 if (!strcmp(lname, "-")) {
1813 f = x_stdin;
1814 /* size of file is not known */
1815 } else {
1816 f = x_fopen(lname,O_RDONLY, 0);
1817 if (f && reput) {
1818 if (x_tseek(f, start, SEEK_SET) == -1) {
1819 d_printf("Error seeking local file\n");
1820 x_fclose(f);
1821 return 1;
1826 if (!f) {
1827 d_printf("Error opening local file %s\n",lname);
1828 return 1;
1831 DEBUG(1,("putting file %s as %s ",lname,
1832 rname));
1834 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1836 state.f = f;
1837 state.nread = 0;
1839 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1840 &state);
1841 if (!NT_STATUS_IS_OK(status)) {
1842 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1843 rc = 1;
1846 status = cli_close(targetcli, fnum);
1847 if (!NT_STATUS_IS_OK(status)) {
1848 d_printf("%s closing remote file %s\n", nt_errstr(status),
1849 rname);
1850 if (f != x_stdin) {
1851 x_fclose(f);
1853 return 1;
1856 if (f != x_stdin) {
1857 x_fclose(f);
1861 struct timespec tp_end;
1862 int this_time;
1864 clock_gettime_mono(&tp_end);
1865 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1866 put_total_time_ms += this_time;
1867 put_total_size += state.nread;
1869 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1870 state.nread / (1.024*this_time + 1.0e-4),
1871 put_total_size / (1.024*put_total_time_ms)));
1874 if (f == x_stdin) {
1875 cli_shutdown(cli);
1876 exit(0);
1879 return rc;
1882 /****************************************************************************
1883 Put a file.
1884 ****************************************************************************/
1886 static int cmd_put(void)
1888 TALLOC_CTX *ctx = talloc_tos();
1889 char *lname;
1890 char *rname;
1891 char *buf;
1893 rname = talloc_strdup(ctx, client_get_cur_dir());
1894 if (!rname) {
1895 return 1;
1898 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1899 d_printf("put <filename>\n");
1900 return 1;
1903 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1904 rname = talloc_asprintf_append(rname, "%s", buf);
1905 } else {
1906 rname = talloc_asprintf_append(rname, "%s", lname);
1908 if (!rname) {
1909 return 1;
1912 rname = clean_name(ctx, rname);
1913 if (!rname) {
1914 return 1;
1918 SMB_STRUCT_STAT st;
1919 /* allow '-' to represent stdin
1920 jdblair, 24.jun.98 */
1921 if (!file_exist_stat(lname, &st, false) &&
1922 (strcmp(lname,"-"))) {
1923 d_printf("%s does not exist\n",lname);
1924 return 1;
1928 return do_put(rname, lname, false);
1931 /*************************************
1932 File list structure.
1933 *************************************/
1935 static struct file_list {
1936 struct file_list *prev, *next;
1937 char *file_path;
1938 bool isdir;
1939 } *file_list;
1941 /****************************************************************************
1942 Free a file_list structure.
1943 ****************************************************************************/
1945 static void free_file_list (struct file_list *l_head)
1947 struct file_list *list, *next;
1949 for (list = l_head; list; list = next) {
1950 next = list->next;
1951 DLIST_REMOVE(l_head, list);
1952 SAFE_FREE(list->file_path);
1953 SAFE_FREE(list);
1957 /****************************************************************************
1958 Seek in a directory/file list until you get something that doesn't start with
1959 the specified name.
1960 ****************************************************************************/
1962 static bool seek_list(struct file_list *list, char *name)
1964 while (list) {
1965 trim_string(list->file_path,"./","\n");
1966 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1967 return true;
1969 list = list->next;
1972 return false;
1975 /****************************************************************************
1976 Set the file selection mask.
1977 ****************************************************************************/
1979 static int cmd_select(void)
1981 TALLOC_CTX *ctx = talloc_tos();
1982 char *new_fs = NULL;
1983 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1985 if (new_fs) {
1986 client_set_fileselection(new_fs);
1987 } else {
1988 client_set_fileselection("");
1990 return 0;
1993 /****************************************************************************
1994 Recursive file matching function act as find
1995 match must be always set to true when calling this function
1996 ****************************************************************************/
1998 static int file_find(struct file_list **list, const char *directory,
1999 const char *expression, bool match)
2001 SMB_STRUCT_DIR *dir;
2002 struct file_list *entry;
2003 struct stat statbuf;
2004 int ret;
2005 char *path;
2006 bool isdir;
2007 const char *dname;
2009 dir = sys_opendir(directory);
2010 if (!dir)
2011 return -1;
2013 while ((dname = readdirname(dir))) {
2014 if (!strcmp("..", dname))
2015 continue;
2016 if (!strcmp(".", dname))
2017 continue;
2019 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2020 continue;
2023 isdir = false;
2024 if (!match || !gen_fnmatch(expression, dname)) {
2025 if (recurse) {
2026 ret = stat(path, &statbuf);
2027 if (ret == 0) {
2028 if (S_ISDIR(statbuf.st_mode)) {
2029 isdir = true;
2030 ret = file_find(list, path, expression, false);
2032 } else {
2033 d_printf("file_find: cannot stat file %s\n", path);
2036 if (ret == -1) {
2037 SAFE_FREE(path);
2038 sys_closedir(dir);
2039 return -1;
2042 entry = SMB_MALLOC_P(struct file_list);
2043 if (!entry) {
2044 d_printf("Out of memory in file_find\n");
2045 sys_closedir(dir);
2046 return -1;
2048 entry->file_path = path;
2049 entry->isdir = isdir;
2050 DLIST_ADD(*list, entry);
2051 } else {
2052 SAFE_FREE(path);
2056 sys_closedir(dir);
2057 return 0;
2060 /****************************************************************************
2061 mput some files.
2062 ****************************************************************************/
2064 static int cmd_mput(void)
2066 TALLOC_CTX *ctx = talloc_tos();
2067 char *p = NULL;
2069 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2070 int ret;
2071 struct file_list *temp_list;
2072 char *quest, *lname, *rname;
2074 file_list = NULL;
2076 ret = file_find(&file_list, ".", p, true);
2077 if (ret) {
2078 free_file_list(file_list);
2079 continue;
2082 quest = NULL;
2083 lname = NULL;
2084 rname = NULL;
2086 for (temp_list = file_list; temp_list;
2087 temp_list = temp_list->next) {
2089 SAFE_FREE(lname);
2090 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2091 continue;
2093 trim_string(lname, "./", "/");
2095 /* check if it's a directory */
2096 if (temp_list->isdir) {
2097 /* if (!recurse) continue; */
2099 SAFE_FREE(quest);
2100 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2101 break;
2103 if (prompt && !yesno(quest)) { /* No */
2104 /* Skip the directory */
2105 lname[strlen(lname)-1] = '/';
2106 if (!seek_list(temp_list, lname))
2107 break;
2108 } else { /* Yes */
2109 SAFE_FREE(rname);
2110 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2111 break;
2113 normalize_name(rname);
2114 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2115 !do_mkdir(rname)) {
2116 DEBUG (0, ("Unable to make dir, skipping..."));
2117 /* Skip the directory */
2118 lname[strlen(lname)-1] = '/';
2119 if (!seek_list(temp_list, lname)) {
2120 break;
2124 continue;
2125 } else {
2126 SAFE_FREE(quest);
2127 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2128 break;
2130 if (prompt && !yesno(quest)) {
2131 /* No */
2132 continue;
2135 /* Yes */
2136 SAFE_FREE(rname);
2137 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2138 break;
2142 normalize_name(rname);
2144 do_put(rname, lname, false);
2146 free_file_list(file_list);
2147 SAFE_FREE(quest);
2148 SAFE_FREE(lname);
2149 SAFE_FREE(rname);
2152 return 0;
2155 /****************************************************************************
2156 Cancel a print job.
2157 ****************************************************************************/
2159 static int do_cancel(int job)
2161 if (cli_printjob_del(cli, job)) {
2162 d_printf("Job %d cancelled\n",job);
2163 return 0;
2164 } else {
2165 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2166 return 1;
2170 /****************************************************************************
2171 Cancel a print job.
2172 ****************************************************************************/
2174 static int cmd_cancel(void)
2176 TALLOC_CTX *ctx = talloc_tos();
2177 char *buf = NULL;
2178 int job;
2180 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2181 d_printf("cancel <jobid> ...\n");
2182 return 1;
2184 do {
2185 job = atoi(buf);
2186 do_cancel(job);
2187 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2189 return 0;
2192 /****************************************************************************
2193 Print a file.
2194 ****************************************************************************/
2196 static int cmd_print(void)
2198 TALLOC_CTX *ctx = talloc_tos();
2199 char *lname = NULL;
2200 char *rname = NULL;
2201 char *p = NULL;
2203 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2204 d_printf("print <filename>\n");
2205 return 1;
2208 rname = talloc_strdup(ctx, lname);
2209 if (!rname) {
2210 return 1;
2212 p = strrchr_m(rname,'/');
2213 if (p) {
2214 rname = talloc_asprintf(ctx,
2215 "%s-%d",
2216 p+1,
2217 (int)sys_getpid());
2219 if (strequal(lname,"-")) {
2220 rname = talloc_asprintf(ctx,
2221 "stdin-%d",
2222 (int)sys_getpid());
2224 if (!rname) {
2225 return 1;
2228 return do_put(rname, lname, false);
2231 /****************************************************************************
2232 Show a print queue entry.
2233 ****************************************************************************/
2235 static void queue_fn(struct print_job_info *p)
2237 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2240 /****************************************************************************
2241 Show a print queue.
2242 ****************************************************************************/
2244 static int cmd_queue(void)
2246 cli_print_queue(cli, queue_fn);
2247 return 0;
2250 /****************************************************************************
2251 Delete some files.
2252 ****************************************************************************/
2254 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2255 const char *dir)
2257 TALLOC_CTX *ctx = talloc_tos();
2258 char *mask = NULL;
2259 NTSTATUS status;
2261 mask = talloc_asprintf(ctx,
2262 "%s%c%s",
2263 dir,
2264 CLI_DIRSEP_CHAR,
2265 finfo->name);
2266 if (!mask) {
2267 return NT_STATUS_NO_MEMORY;
2270 if (finfo->mode & aDIR) {
2271 TALLOC_FREE(mask);
2272 return NT_STATUS_OK;
2275 status = cli_unlink(cli_state, mask, aSYSTEM | aHIDDEN);
2276 if (!NT_STATUS_IS_OK(status)) {
2277 d_printf("%s deleting remote file %s\n",
2278 nt_errstr(status), mask);
2280 TALLOC_FREE(mask);
2281 return status;
2284 /****************************************************************************
2285 Delete some files.
2286 ****************************************************************************/
2288 static int cmd_del(void)
2290 TALLOC_CTX *ctx = talloc_tos();
2291 char *mask = NULL;
2292 char *buf = NULL;
2293 NTSTATUS status = NT_STATUS_OK;
2294 uint16 attribute = aSYSTEM | aHIDDEN;
2296 if (recurse) {
2297 attribute |= aDIR;
2300 mask = talloc_strdup(ctx, client_get_cur_dir());
2301 if (!mask) {
2302 return 1;
2304 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2305 d_printf("del <filename>\n");
2306 return 1;
2308 mask = talloc_asprintf_append(mask, "%s", buf);
2309 if (!mask) {
2310 return 1;
2313 status = do_list(mask,attribute,do_del,false,false);
2314 if (!NT_STATUS_IS_OK(status)) {
2315 return 1;
2317 return 0;
2320 /****************************************************************************
2321 Wildcard delete some files.
2322 ****************************************************************************/
2324 static int cmd_wdel(void)
2326 TALLOC_CTX *ctx = talloc_tos();
2327 char *mask = NULL;
2328 char *buf = NULL;
2329 uint16 attribute;
2330 struct cli_state *targetcli;
2331 char *targetname = NULL;
2332 NTSTATUS status;
2334 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2335 d_printf("wdel 0x<attrib> <wcard>\n");
2336 return 1;
2339 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2341 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2342 d_printf("wdel 0x<attrib> <wcard>\n");
2343 return 1;
2346 mask = talloc_asprintf(ctx, "%s%s",
2347 client_get_cur_dir(),
2348 buf);
2349 if (!mask) {
2350 return 1;
2353 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2354 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2355 return 1;
2358 status = cli_unlink(targetcli, targetname, attribute);
2359 if (!NT_STATUS_IS_OK(status)) {
2360 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2361 targetname);
2363 return 0;
2366 /****************************************************************************
2367 ****************************************************************************/
2369 static int cmd_open(void)
2371 TALLOC_CTX *ctx = talloc_tos();
2372 char *mask = NULL;
2373 char *buf = NULL;
2374 char *targetname = NULL;
2375 struct cli_state *targetcli;
2376 uint16_t fnum = (uint16_t)-1;
2378 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2379 d_printf("open <filename>\n");
2380 return 1;
2382 mask = talloc_asprintf(ctx,
2383 "%s%s",
2384 client_get_cur_dir(),
2385 buf);
2386 if (!mask) {
2387 return 1;
2390 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2391 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2392 return 1;
2395 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2396 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2397 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2398 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2399 FILE_READ_DATA, 0,
2400 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2401 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2402 } else {
2403 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2405 } else {
2406 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2408 return 0;
2411 static int cmd_posix_encrypt(void)
2413 TALLOC_CTX *ctx = talloc_tos();
2414 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2416 if (cli->use_kerberos) {
2417 status = cli_gss_smb_encryption_start(cli);
2418 } else {
2419 char *domain = NULL;
2420 char *user = NULL;
2421 char *password = NULL;
2423 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2424 d_printf("posix_encrypt domain user password\n");
2425 return 1;
2428 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2429 d_printf("posix_encrypt domain user password\n");
2430 return 1;
2433 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2434 d_printf("posix_encrypt domain user password\n");
2435 return 1;
2438 status = cli_raw_ntlm_smb_encryption_start(cli,
2439 user,
2440 password,
2441 domain);
2444 if (!NT_STATUS_IS_OK(status)) {
2445 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2446 } else {
2447 d_printf("encryption on\n");
2448 smb_encrypt = true;
2451 return 0;
2454 /****************************************************************************
2455 ****************************************************************************/
2457 static int cmd_posix_open(void)
2459 TALLOC_CTX *ctx = talloc_tos();
2460 char *mask = NULL;
2461 char *buf = NULL;
2462 char *targetname = NULL;
2463 struct cli_state *targetcli;
2464 mode_t mode;
2465 uint16_t fnum;
2467 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2468 d_printf("posix_open <filename> 0<mode>\n");
2469 return 1;
2471 mask = talloc_asprintf(ctx,
2472 "%s%s",
2473 client_get_cur_dir(),
2474 buf);
2475 if (!mask) {
2476 return 1;
2479 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2480 d_printf("posix_open <filename> 0<mode>\n");
2481 return 1;
2483 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2485 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2486 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2487 return 1;
2490 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2491 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2492 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2493 } else {
2494 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2496 } else {
2497 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2500 return 0;
2503 static int cmd_posix_mkdir(void)
2505 TALLOC_CTX *ctx = talloc_tos();
2506 char *mask = NULL;
2507 char *buf = NULL;
2508 char *targetname = NULL;
2509 struct cli_state *targetcli;
2510 mode_t mode;
2512 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2513 d_printf("posix_mkdir <filename> 0<mode>\n");
2514 return 1;
2516 mask = talloc_asprintf(ctx,
2517 "%s%s",
2518 client_get_cur_dir(),
2519 buf);
2520 if (!mask) {
2521 return 1;
2524 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2525 d_printf("posix_mkdir <filename> 0<mode>\n");
2526 return 1;
2528 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2530 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2531 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2532 return 1;
2535 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2536 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2537 } else {
2538 d_printf("posix_mkdir created directory %s\n", targetname);
2540 return 0;
2543 static int cmd_posix_unlink(void)
2545 TALLOC_CTX *ctx = talloc_tos();
2546 char *mask = NULL;
2547 char *buf = NULL;
2548 char *targetname = NULL;
2549 struct cli_state *targetcli;
2551 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2552 d_printf("posix_unlink <filename>\n");
2553 return 1;
2555 mask = talloc_asprintf(ctx,
2556 "%s%s",
2557 client_get_cur_dir(),
2558 buf);
2559 if (!mask) {
2560 return 1;
2563 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2564 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2565 return 1;
2568 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2569 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2570 } else {
2571 d_printf("posix_unlink deleted file %s\n", targetname);
2574 return 0;
2577 static int cmd_posix_rmdir(void)
2579 TALLOC_CTX *ctx = talloc_tos();
2580 char *mask = NULL;
2581 char *buf = NULL;
2582 char *targetname = NULL;
2583 struct cli_state *targetcli;
2585 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2586 d_printf("posix_rmdir <filename>\n");
2587 return 1;
2589 mask = talloc_asprintf(ctx,
2590 "%s%s",
2591 client_get_cur_dir(),
2592 buf);
2593 if (!mask) {
2594 return 1;
2597 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2598 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2599 return 1;
2602 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2603 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2604 } else {
2605 d_printf("posix_rmdir deleted directory %s\n", targetname);
2608 return 0;
2611 static int cmd_close(void)
2613 TALLOC_CTX *ctx = talloc_tos();
2614 char *buf = NULL;
2615 int fnum;
2617 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2618 d_printf("close <fnum>\n");
2619 return 1;
2622 fnum = atoi(buf);
2623 /* We really should use the targetcli here.... */
2624 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2625 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2626 return 1;
2628 return 0;
2631 static int cmd_posix(void)
2633 TALLOC_CTX *ctx = talloc_tos();
2634 uint16 major, minor;
2635 uint32 caplow, caphigh;
2636 char *caps;
2637 NTSTATUS status;
2639 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2640 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2641 return 1;
2644 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2645 &caphigh);
2646 if (!NT_STATUS_IS_OK(status)) {
2647 d_printf("Can't get UNIX CIFS extensions version from "
2648 "server: %s\n", nt_errstr(status));
2649 return 1;
2652 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2654 caps = talloc_strdup(ctx, "");
2655 if (!caps) {
2656 return 1;
2658 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2659 caps = talloc_asprintf_append(caps, "locks ");
2660 if (!caps) {
2661 return 1;
2664 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2665 caps = talloc_asprintf_append(caps, "acls ");
2666 if (!caps) {
2667 return 1;
2670 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2671 caps = talloc_asprintf_append(caps, "eas ");
2672 if (!caps) {
2673 return 1;
2676 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2677 caps = talloc_asprintf_append(caps, "pathnames ");
2678 if (!caps) {
2679 return 1;
2682 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2683 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2684 if (!caps) {
2685 return 1;
2688 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2689 caps = talloc_asprintf_append(caps, "large_read ");
2690 if (!caps) {
2691 return 1;
2694 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2695 caps = talloc_asprintf_append(caps, "large_write ");
2696 if (!caps) {
2697 return 1;
2700 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2701 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2702 if (!caps) {
2703 return 1;
2706 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2707 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2708 if (!caps) {
2709 return 1;
2713 if (*caps && caps[strlen(caps)-1] == ' ') {
2714 caps[strlen(caps)-1] = '\0';
2717 d_printf("Server supports CIFS capabilities %s\n", caps);
2719 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2720 caplow, caphigh);
2721 if (!NT_STATUS_IS_OK(status)) {
2722 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2723 nt_errstr(status));
2724 return 1;
2727 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2728 CLI_DIRSEP_CHAR = '/';
2729 *CLI_DIRSEP_STR = '/';
2730 client_set_cur_dir(CLI_DIRSEP_STR);
2733 return 0;
2736 static int cmd_lock(void)
2738 TALLOC_CTX *ctx = talloc_tos();
2739 char *buf = NULL;
2740 uint64_t start, len;
2741 enum brl_type lock_type;
2742 int fnum;
2744 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2745 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2746 return 1;
2748 fnum = atoi(buf);
2750 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2751 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2752 return 1;
2755 if (*buf == 'r' || *buf == 'R') {
2756 lock_type = READ_LOCK;
2757 } else if (*buf == 'w' || *buf == 'W') {
2758 lock_type = WRITE_LOCK;
2759 } else {
2760 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2761 return 1;
2764 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2765 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2766 return 1;
2769 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2771 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2772 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2773 return 1;
2776 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2778 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2779 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2782 return 0;
2785 static int cmd_unlock(void)
2787 TALLOC_CTX *ctx = talloc_tos();
2788 char *buf = NULL;
2789 uint64_t start, len;
2790 int fnum;
2792 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2793 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2794 return 1;
2796 fnum = atoi(buf);
2798 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2799 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2800 return 1;
2803 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2805 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2806 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2807 return 1;
2810 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2812 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2813 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2816 return 0;
2820 /****************************************************************************
2821 Remove a directory.
2822 ****************************************************************************/
2824 static int cmd_rmdir(void)
2826 TALLOC_CTX *ctx = talloc_tos();
2827 char *mask = NULL;
2828 char *buf = NULL;
2829 char *targetname = NULL;
2830 struct cli_state *targetcli;
2832 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2833 d_printf("rmdir <dirname>\n");
2834 return 1;
2836 mask = talloc_asprintf(ctx,
2837 "%s%s",
2838 client_get_cur_dir(),
2839 buf);
2840 if (!mask) {
2841 return 1;
2844 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2845 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2846 return 1;
2849 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2850 d_printf("%s removing remote directory file %s\n",
2851 cli_errstr(targetcli),mask);
2854 return 0;
2857 /****************************************************************************
2858 UNIX hardlink.
2859 ****************************************************************************/
2861 static int cmd_link(void)
2863 TALLOC_CTX *ctx = talloc_tos();
2864 char *oldname = NULL;
2865 char *newname = NULL;
2866 char *buf = NULL;
2867 char *buf2 = NULL;
2868 char *targetname = NULL;
2869 struct cli_state *targetcli;
2871 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2872 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2873 d_printf("link <oldname> <newname>\n");
2874 return 1;
2876 oldname = talloc_asprintf(ctx,
2877 "%s%s",
2878 client_get_cur_dir(),
2879 buf);
2880 if (!oldname) {
2881 return 1;
2883 newname = talloc_asprintf(ctx,
2884 "%s%s",
2885 client_get_cur_dir(),
2886 buf2);
2887 if (!newname) {
2888 return 1;
2891 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2892 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2893 return 1;
2896 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2897 d_printf("Server doesn't support UNIX CIFS calls.\n");
2898 return 1;
2901 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2902 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2903 return 1;
2905 return 0;
2908 /****************************************************************************
2909 UNIX readlink.
2910 ****************************************************************************/
2912 static int cmd_readlink(void)
2914 TALLOC_CTX *ctx = talloc_tos();
2915 char *name= NULL;
2916 char *buf = NULL;
2917 char *targetname = NULL;
2918 char linkname[PATH_MAX+1];
2919 struct cli_state *targetcli;
2921 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2922 d_printf("readlink <name>\n");
2923 return 1;
2925 name = talloc_asprintf(ctx,
2926 "%s%s",
2927 client_get_cur_dir(),
2928 buf);
2929 if (!name) {
2930 return 1;
2933 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2934 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2935 return 1;
2938 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2939 d_printf("Server doesn't support UNIX CIFS calls.\n");
2940 return 1;
2943 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2944 linkname, PATH_MAX+1))) {
2945 d_printf("%s readlink on file %s\n",
2946 cli_errstr(targetcli), name);
2947 return 1;
2950 d_printf("%s -> %s\n", name, linkname);
2952 return 0;
2956 /****************************************************************************
2957 UNIX symlink.
2958 ****************************************************************************/
2960 static int cmd_symlink(void)
2962 TALLOC_CTX *ctx = talloc_tos();
2963 char *oldname = NULL;
2964 char *newname = NULL;
2965 char *buf = NULL;
2966 char *buf2 = NULL;
2967 struct cli_state *newcli;
2969 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2970 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2971 d_printf("symlink <oldname> <newname>\n");
2972 return 1;
2974 /* Oldname (link target) must be an untouched blob. */
2975 oldname = buf;
2977 newname = talloc_asprintf(ctx,
2978 "%s%s",
2979 client_get_cur_dir(),
2980 buf2);
2981 if (!newname) {
2982 return 1;
2985 /* New name must be present in share namespace. */
2986 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
2987 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2988 return 1;
2991 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
2992 d_printf("Server doesn't support UNIX CIFS calls.\n");
2993 return 1;
2996 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
2997 d_printf("%s symlinking files (%s -> %s)\n",
2998 cli_errstr(newcli), newname, newname);
2999 return 1;
3002 return 0;
3005 /****************************************************************************
3006 UNIX chmod.
3007 ****************************************************************************/
3009 static int cmd_chmod(void)
3011 TALLOC_CTX *ctx = talloc_tos();
3012 char *src = NULL;
3013 char *buf = NULL;
3014 char *buf2 = NULL;
3015 char *targetname = NULL;
3016 struct cli_state *targetcli;
3017 mode_t mode;
3019 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3020 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3021 d_printf("chmod mode file\n");
3022 return 1;
3024 src = talloc_asprintf(ctx,
3025 "%s%s",
3026 client_get_cur_dir(),
3027 buf2);
3028 if (!src) {
3029 return 1;
3032 mode = (mode_t)strtol(buf, NULL, 8);
3034 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3035 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
3036 return 1;
3039 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3040 d_printf("Server doesn't support UNIX CIFS calls.\n");
3041 return 1;
3044 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
3045 d_printf("%s chmod file %s 0%o\n",
3046 cli_errstr(targetcli), src, (unsigned int)mode);
3047 return 1;
3050 return 0;
3053 static const char *filetype_to_str(mode_t mode)
3055 if (S_ISREG(mode)) {
3056 return "regular file";
3057 } else if (S_ISDIR(mode)) {
3058 return "directory";
3059 } else
3060 #ifdef S_ISCHR
3061 if (S_ISCHR(mode)) {
3062 return "character device";
3063 } else
3064 #endif
3065 #ifdef S_ISBLK
3066 if (S_ISBLK(mode)) {
3067 return "block device";
3068 } else
3069 #endif
3070 #ifdef S_ISFIFO
3071 if (S_ISFIFO(mode)) {
3072 return "fifo";
3073 } else
3074 #endif
3075 #ifdef S_ISLNK
3076 if (S_ISLNK(mode)) {
3077 return "symbolic link";
3078 } else
3079 #endif
3080 #ifdef S_ISSOCK
3081 if (S_ISSOCK(mode)) {
3082 return "socket";
3083 } else
3084 #endif
3085 return "";
3088 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3090 if (m & bt) {
3091 return ret;
3092 } else {
3093 return '-';
3097 static char *unix_mode_to_str(char *s, mode_t m)
3099 char *p = s;
3100 const char *str = filetype_to_str(m);
3102 switch(str[0]) {
3103 case 'd':
3104 *p++ = 'd';
3105 break;
3106 case 'c':
3107 *p++ = 'c';
3108 break;
3109 case 'b':
3110 *p++ = 'b';
3111 break;
3112 case 'f':
3113 *p++ = 'p';
3114 break;
3115 case 's':
3116 *p++ = str[1] == 'y' ? 'l' : 's';
3117 break;
3118 case 'r':
3119 default:
3120 *p++ = '-';
3121 break;
3123 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3124 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3125 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3126 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3127 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3128 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3129 *p++ = rwx_to_str(m, S_IROTH, 'r');
3130 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3131 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3132 *p++ = '\0';
3133 return s;
3136 /****************************************************************************
3137 Utility function for UNIX getfacl.
3138 ****************************************************************************/
3140 static char *perms_to_string(fstring permstr, unsigned char perms)
3142 fstrcpy(permstr, "---");
3143 if (perms & SMB_POSIX_ACL_READ) {
3144 permstr[0] = 'r';
3146 if (perms & SMB_POSIX_ACL_WRITE) {
3147 permstr[1] = 'w';
3149 if (perms & SMB_POSIX_ACL_EXECUTE) {
3150 permstr[2] = 'x';
3152 return permstr;
3155 /****************************************************************************
3156 UNIX getfacl.
3157 ****************************************************************************/
3159 static int cmd_getfacl(void)
3161 TALLOC_CTX *ctx = talloc_tos();
3162 char *src = NULL;
3163 char *name = NULL;
3164 char *targetname = NULL;
3165 struct cli_state *targetcli;
3166 uint16 major, minor;
3167 uint32 caplow, caphigh;
3168 char *retbuf = NULL;
3169 size_t rb_size = 0;
3170 SMB_STRUCT_STAT sbuf;
3171 uint16 num_file_acls = 0;
3172 uint16 num_dir_acls = 0;
3173 uint16 i;
3174 NTSTATUS status;
3176 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3177 d_printf("getfacl filename\n");
3178 return 1;
3180 src = talloc_asprintf(ctx,
3181 "%s%s",
3182 client_get_cur_dir(),
3183 name);
3184 if (!src) {
3185 return 1;
3188 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3189 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3190 return 1;
3193 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3194 d_printf("Server doesn't support UNIX CIFS calls.\n");
3195 return 1;
3198 status = cli_unix_extensions_version(targetcli, &major, &minor,
3199 &caplow, &caphigh);
3200 if (!NT_STATUS_IS_OK(status)) {
3201 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3202 nt_errstr(status));
3203 return 1;
3206 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3207 d_printf("This server supports UNIX extensions "
3208 "but doesn't support POSIX ACLs.\n");
3209 return 1;
3212 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3213 d_printf("%s getfacl doing a stat on file %s\n",
3214 cli_errstr(targetcli), src);
3215 return 1;
3218 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3219 d_printf("%s getfacl file %s\n",
3220 cli_errstr(targetcli), src);
3221 return 1;
3224 /* ToDo : Print out the ACL values. */
3225 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3226 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3227 src, (unsigned int)CVAL(retbuf,0) );
3228 return 1;
3231 num_file_acls = SVAL(retbuf,2);
3232 num_dir_acls = SVAL(retbuf,4);
3233 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3234 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3235 src,
3236 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3237 (unsigned int)rb_size);
3238 return 1;
3241 d_printf("# file: %s\n", src);
3242 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3244 if (num_file_acls == 0 && num_dir_acls == 0) {
3245 d_printf("No acls found.\n");
3248 for (i = 0; i < num_file_acls; i++) {
3249 uint32 uorg;
3250 fstring permstring;
3251 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3252 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3254 switch(tagtype) {
3255 case SMB_POSIX_ACL_USER_OBJ:
3256 d_printf("user::");
3257 break;
3258 case SMB_POSIX_ACL_USER:
3259 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3260 d_printf("user:%u:", uorg);
3261 break;
3262 case SMB_POSIX_ACL_GROUP_OBJ:
3263 d_printf("group::");
3264 break;
3265 case SMB_POSIX_ACL_GROUP:
3266 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3267 d_printf("group:%u:", uorg);
3268 break;
3269 case SMB_POSIX_ACL_MASK:
3270 d_printf("mask::");
3271 break;
3272 case SMB_POSIX_ACL_OTHER:
3273 d_printf("other::");
3274 break;
3275 default:
3276 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3277 src, (unsigned int)tagtype );
3278 SAFE_FREE(retbuf);
3279 return 1;
3282 d_printf("%s\n", perms_to_string(permstring, perms));
3285 for (i = 0; i < num_dir_acls; i++) {
3286 uint32 uorg;
3287 fstring permstring;
3288 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3289 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3291 switch(tagtype) {
3292 case SMB_POSIX_ACL_USER_OBJ:
3293 d_printf("default:user::");
3294 break;
3295 case SMB_POSIX_ACL_USER:
3296 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3297 d_printf("default:user:%u:", uorg);
3298 break;
3299 case SMB_POSIX_ACL_GROUP_OBJ:
3300 d_printf("default:group::");
3301 break;
3302 case SMB_POSIX_ACL_GROUP:
3303 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3304 d_printf("default:group:%u:", uorg);
3305 break;
3306 case SMB_POSIX_ACL_MASK:
3307 d_printf("default:mask::");
3308 break;
3309 case SMB_POSIX_ACL_OTHER:
3310 d_printf("default:other::");
3311 break;
3312 default:
3313 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3314 src, (unsigned int)tagtype );
3315 SAFE_FREE(retbuf);
3316 return 1;
3319 d_printf("%s\n", perms_to_string(permstring, perms));
3322 return 0;
3325 static void printf_cb(const char *buf, void *private_data)
3327 printf("%s", buf);
3330 /****************************************************************************
3331 Get the EA list of a file
3332 ****************************************************************************/
3334 static int cmd_geteas(void)
3336 TALLOC_CTX *ctx = talloc_tos();
3337 char *src = NULL;
3338 char *name = NULL;
3339 char *targetname = NULL;
3340 struct cli_state *targetcli;
3341 NTSTATUS status;
3342 size_t i, num_eas;
3343 struct ea_struct *eas;
3345 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3346 d_printf("geteas filename\n");
3347 return 1;
3349 src = talloc_asprintf(ctx,
3350 "%s%s",
3351 client_get_cur_dir(),
3352 name);
3353 if (!src) {
3354 return 1;
3357 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3358 &targetname)) {
3359 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3360 return 1;
3363 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3364 &num_eas, &eas);
3365 if (!NT_STATUS_IS_OK(status)) {
3366 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3367 return 1;
3370 for (i=0; i<num_eas; i++) {
3371 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3372 dump_data_cb(eas[i].value.data, eas[i].value.length, false,
3373 printf_cb, NULL);
3374 d_printf("\n");
3377 TALLOC_FREE(eas);
3379 return 0;
3382 /****************************************************************************
3383 Set an EA of a file
3384 ****************************************************************************/
3386 static int cmd_setea(void)
3388 TALLOC_CTX *ctx = talloc_tos();
3389 char *src = NULL;
3390 char *name = NULL;
3391 char *eaname = NULL;
3392 char *eavalue = NULL;
3393 char *targetname = NULL;
3394 struct cli_state *targetcli;
3395 NTSTATUS status;
3397 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3398 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3399 d_printf("setea filename eaname value\n");
3400 return 1;
3402 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3403 eavalue = talloc_strdup(ctx, "");
3405 src = talloc_asprintf(ctx,
3406 "%s%s",
3407 client_get_cur_dir(),
3408 name);
3409 if (!src) {
3410 return 1;
3413 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3414 &targetname)) {
3415 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3416 return 1;
3419 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3420 strlen(eavalue));
3421 if (!NT_STATUS_IS_OK(status)) {
3422 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3423 return 1;
3426 return 0;
3429 /****************************************************************************
3430 UNIX stat.
3431 ****************************************************************************/
3433 static int cmd_stat(void)
3435 TALLOC_CTX *ctx = talloc_tos();
3436 char *src = NULL;
3437 char *name = NULL;
3438 char *targetname = NULL;
3439 struct cli_state *targetcli;
3440 fstring mode_str;
3441 SMB_STRUCT_STAT sbuf;
3442 struct tm *lt;
3443 time_t tmp_time;
3445 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3446 d_printf("stat file\n");
3447 return 1;
3449 src = talloc_asprintf(ctx,
3450 "%s%s",
3451 client_get_cur_dir(),
3452 name);
3453 if (!src) {
3454 return 1;
3457 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3458 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3459 return 1;
3462 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3463 d_printf("Server doesn't support UNIX CIFS calls.\n");
3464 return 1;
3467 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3468 d_printf("%s stat file %s\n",
3469 cli_errstr(targetcli), src);
3470 return 1;
3473 /* Print out the stat values. */
3474 d_printf("File: %s\n", src);
3475 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3476 (double)sbuf.st_ex_size,
3477 (unsigned int)sbuf.st_ex_blocks,
3478 filetype_to_str(sbuf.st_ex_mode));
3480 #if defined(S_ISCHR) && defined(S_ISBLK)
3481 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3482 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3483 (double)sbuf.st_ex_ino,
3484 (unsigned int)sbuf.st_ex_nlink,
3485 unix_dev_major(sbuf.st_ex_rdev),
3486 unix_dev_minor(sbuf.st_ex_rdev));
3487 } else
3488 #endif
3489 d_printf("Inode: %.0f\tLinks: %u\n",
3490 (double)sbuf.st_ex_ino,
3491 (unsigned int)sbuf.st_ex_nlink);
3493 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3494 ((int)sbuf.st_ex_mode & 0777),
3495 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3496 (unsigned int)sbuf.st_ex_uid,
3497 (unsigned int)sbuf.st_ex_gid);
3499 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3500 lt = localtime(&tmp_time);
3501 if (lt) {
3502 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3503 } else {
3504 fstrcpy(mode_str, "unknown");
3506 d_printf("Access: %s\n", mode_str);
3508 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3509 lt = localtime(&tmp_time);
3510 if (lt) {
3511 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3512 } else {
3513 fstrcpy(mode_str, "unknown");
3515 d_printf("Modify: %s\n", mode_str);
3517 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3518 lt = localtime(&tmp_time);
3519 if (lt) {
3520 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3521 } else {
3522 fstrcpy(mode_str, "unknown");
3524 d_printf("Change: %s\n", mode_str);
3526 return 0;
3530 /****************************************************************************
3531 UNIX chown.
3532 ****************************************************************************/
3534 static int cmd_chown(void)
3536 TALLOC_CTX *ctx = talloc_tos();
3537 char *src = NULL;
3538 uid_t uid;
3539 gid_t gid;
3540 char *buf, *buf2, *buf3;
3541 struct cli_state *targetcli;
3542 char *targetname = NULL;
3544 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3545 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3546 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3547 d_printf("chown uid gid file\n");
3548 return 1;
3551 uid = (uid_t)atoi(buf);
3552 gid = (gid_t)atoi(buf2);
3554 src = talloc_asprintf(ctx,
3555 "%s%s",
3556 client_get_cur_dir(),
3557 buf3);
3558 if (!src) {
3559 return 1;
3561 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3562 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3563 return 1;
3566 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3567 d_printf("Server doesn't support UNIX CIFS calls.\n");
3568 return 1;
3571 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3572 d_printf("%s chown file %s uid=%d, gid=%d\n",
3573 cli_errstr(targetcli), src, (int)uid, (int)gid);
3574 return 1;
3577 return 0;
3580 /****************************************************************************
3581 Rename some file.
3582 ****************************************************************************/
3584 static int cmd_rename(void)
3586 TALLOC_CTX *ctx = talloc_tos();
3587 char *src, *dest;
3588 char *buf, *buf2;
3589 struct cli_state *targetcli;
3590 char *targetsrc;
3591 char *targetdest;
3593 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3594 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3595 d_printf("rename <src> <dest>\n");
3596 return 1;
3599 src = talloc_asprintf(ctx,
3600 "%s%s",
3601 client_get_cur_dir(),
3602 buf);
3603 if (!src) {
3604 return 1;
3607 dest = talloc_asprintf(ctx,
3608 "%s%s",
3609 client_get_cur_dir(),
3610 buf2);
3611 if (!dest) {
3612 return 1;
3615 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3616 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3617 return 1;
3620 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3621 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3622 return 1;
3625 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3626 d_printf("%s renaming files %s -> %s \n",
3627 cli_errstr(targetcli),
3628 targetsrc,
3629 targetdest);
3630 return 1;
3633 return 0;
3636 /****************************************************************************
3637 Print the volume name.
3638 ****************************************************************************/
3640 static int cmd_volume(void)
3642 fstring volname;
3643 uint32 serial_num;
3644 time_t create_date;
3645 NTSTATUS status;
3647 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3648 &create_date);
3649 if (!NT_STATUS_IS_OK(status)) {
3650 d_printf("Error %s getting volume info\n", nt_errstr(status));
3651 return 1;
3654 d_printf("Volume: |%s| serial number 0x%x\n",
3655 volname, (unsigned int)serial_num);
3656 return 0;
3659 /****************************************************************************
3660 Hard link files using the NT call.
3661 ****************************************************************************/
3663 static int cmd_hardlink(void)
3665 TALLOC_CTX *ctx = talloc_tos();
3666 char *src, *dest;
3667 char *buf, *buf2;
3668 struct cli_state *targetcli;
3669 char *targetname;
3671 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3672 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3673 d_printf("hardlink <src> <dest>\n");
3674 return 1;
3677 src = talloc_asprintf(ctx,
3678 "%s%s",
3679 client_get_cur_dir(),
3680 buf);
3681 if (!src) {
3682 return 1;
3685 dest = talloc_asprintf(ctx,
3686 "%s%s",
3687 client_get_cur_dir(),
3688 buf2);
3689 if (!dest) {
3690 return 1;
3693 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3694 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3695 return 1;
3698 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3699 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3700 return 1;
3703 return 0;
3706 /****************************************************************************
3707 Toggle the prompt flag.
3708 ****************************************************************************/
3710 static int cmd_prompt(void)
3712 prompt = !prompt;
3713 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3714 return 1;
3717 /****************************************************************************
3718 Set the newer than time.
3719 ****************************************************************************/
3721 static int cmd_newer(void)
3723 TALLOC_CTX *ctx = talloc_tos();
3724 char *buf;
3725 bool ok;
3726 SMB_STRUCT_STAT sbuf;
3728 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3729 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3730 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3731 DEBUG(1,("Getting files newer than %s",
3732 time_to_asc(newer_than)));
3733 } else {
3734 newer_than = 0;
3737 if (ok && newer_than == 0) {
3738 d_printf("Error setting newer-than time\n");
3739 return 1;
3742 return 0;
3745 /****************************************************************************
3746 Set the archive level.
3747 ****************************************************************************/
3749 static int cmd_archive(void)
3751 TALLOC_CTX *ctx = talloc_tos();
3752 char *buf;
3754 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3755 archive_level = atoi(buf);
3756 } else {
3757 d_printf("Archive level is %d\n",archive_level);
3760 return 0;
3763 /****************************************************************************
3764 Toggle the lowercaseflag.
3765 ****************************************************************************/
3767 static int cmd_lowercase(void)
3769 lowercase = !lowercase;
3770 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3771 return 0;
3774 /****************************************************************************
3775 Toggle the case sensitive flag.
3776 ****************************************************************************/
3778 static int cmd_setcase(void)
3780 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3782 cli_set_case_sensitive(cli, !orig_case_sensitive);
3783 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3784 "on":"off"));
3785 return 0;
3788 /****************************************************************************
3789 Toggle the showacls flag.
3790 ****************************************************************************/
3792 static int cmd_showacls(void)
3794 showacls = !showacls;
3795 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3796 return 0;
3800 /****************************************************************************
3801 Toggle the recurse flag.
3802 ****************************************************************************/
3804 static int cmd_recurse(void)
3806 recurse = !recurse;
3807 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3808 return 0;
3811 /****************************************************************************
3812 Toggle the translate flag.
3813 ****************************************************************************/
3815 static int cmd_translate(void)
3817 translation = !translation;
3818 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3819 translation?"on":"off"));
3820 return 0;
3823 /****************************************************************************
3824 Do the lcd command.
3825 ****************************************************************************/
3827 static int cmd_lcd(void)
3829 TALLOC_CTX *ctx = talloc_tos();
3830 char *buf;
3831 char *d;
3833 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3834 if (chdir(buf) == -1) {
3835 d_printf("chdir to %s failed (%s)\n",
3836 buf, strerror(errno));
3839 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3840 if (!d) {
3841 return 1;
3843 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3844 return 0;
3847 /****************************************************************************
3848 Get a file restarting at end of local file.
3849 ****************************************************************************/
3851 static int cmd_reget(void)
3853 TALLOC_CTX *ctx = talloc_tos();
3854 char *local_name = NULL;
3855 char *remote_name = NULL;
3856 char *fname = NULL;
3857 char *p = NULL;
3859 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3860 if (!remote_name) {
3861 return 1;
3864 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3865 d_printf("reget <filename>\n");
3866 return 1;
3868 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3869 if (!remote_name) {
3870 return 1;
3872 remote_name = clean_name(ctx,remote_name);
3873 if (!remote_name) {
3874 return 1;
3877 local_name = fname;
3878 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3879 if (p) {
3880 local_name = p;
3883 return do_get(remote_name, local_name, true);
3886 /****************************************************************************
3887 Put a file restarting at end of local file.
3888 ****************************************************************************/
3890 static int cmd_reput(void)
3892 TALLOC_CTX *ctx = talloc_tos();
3893 char *local_name = NULL;
3894 char *remote_name = NULL;
3895 char *buf;
3896 SMB_STRUCT_STAT st;
3898 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3899 if (!remote_name) {
3900 return 1;
3903 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3904 d_printf("reput <filename>\n");
3905 return 1;
3908 if (!file_exist_stat(local_name, &st, false)) {
3909 d_printf("%s does not exist\n", local_name);
3910 return 1;
3913 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3914 remote_name = talloc_asprintf_append(remote_name,
3915 "%s", buf);
3916 } else {
3917 remote_name = talloc_asprintf_append(remote_name,
3918 "%s", local_name);
3920 if (!remote_name) {
3921 return 1;
3924 remote_name = clean_name(ctx, remote_name);
3925 if (!remote_name) {
3926 return 1;
3929 return do_put(remote_name, local_name, true);
3932 /****************************************************************************
3933 List a share name.
3934 ****************************************************************************/
3936 static void browse_fn(const char *name, uint32 m,
3937 const char *comment, void *state)
3939 const char *typestr = "";
3941 switch (m & 7) {
3942 case STYPE_DISKTREE:
3943 typestr = "Disk";
3944 break;
3945 case STYPE_PRINTQ:
3946 typestr = "Printer";
3947 break;
3948 case STYPE_DEVICE:
3949 typestr = "Device";
3950 break;
3951 case STYPE_IPC:
3952 typestr = "IPC";
3953 break;
3955 /* FIXME: If the remote machine returns non-ascii characters
3956 in any of these fields, they can corrupt the output. We
3957 should remove them. */
3958 if (!grepable) {
3959 d_printf("\t%-15s %-10.10s%s\n",
3960 name,typestr,comment);
3961 } else {
3962 d_printf ("%s|%s|%s\n",typestr,name,comment);
3966 static bool browse_host_rpc(bool sort)
3968 NTSTATUS status;
3969 struct rpc_pipe_client *pipe_hnd = NULL;
3970 TALLOC_CTX *frame = talloc_stackframe();
3971 WERROR werr;
3972 struct srvsvc_NetShareInfoCtr info_ctr;
3973 struct srvsvc_NetShareCtr1 ctr1;
3974 uint32_t resume_handle = 0;
3975 uint32_t total_entries = 0;
3976 int i;
3978 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3979 &pipe_hnd);
3981 if (!NT_STATUS_IS_OK(status)) {
3982 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3983 nt_errstr(status)));
3984 TALLOC_FREE(frame);
3985 return false;
3988 ZERO_STRUCT(info_ctr);
3989 ZERO_STRUCT(ctr1);
3991 info_ctr.level = 1;
3992 info_ctr.ctr.ctr1 = &ctr1;
3994 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3995 pipe_hnd->desthost,
3996 &info_ctr,
3997 0xffffffff,
3998 &total_entries,
3999 &resume_handle,
4000 &werr);
4002 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4003 TALLOC_FREE(pipe_hnd);
4004 TALLOC_FREE(frame);
4005 return false;
4008 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4009 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4010 browse_fn(info.name, info.type, info.comment, NULL);
4013 TALLOC_FREE(pipe_hnd);
4014 TALLOC_FREE(frame);
4015 return true;
4018 /****************************************************************************
4019 Try and browse available connections on a host.
4020 ****************************************************************************/
4022 static bool browse_host(bool sort)
4024 int ret;
4025 if (!grepable) {
4026 d_printf("\n\tSharename Type Comment\n");
4027 d_printf("\t--------- ---- -------\n");
4030 if (browse_host_rpc(sort)) {
4031 return true;
4034 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
4035 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
4037 return (ret != -1);
4040 /****************************************************************************
4041 List a server name.
4042 ****************************************************************************/
4044 static void server_fn(const char *name, uint32 m,
4045 const char *comment, void *state)
4048 if (!grepable){
4049 d_printf("\t%-16s %s\n", name, comment);
4050 } else {
4051 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4055 /****************************************************************************
4056 Try and browse available connections on a host.
4057 ****************************************************************************/
4059 static bool list_servers(const char *wk_grp)
4061 fstring state;
4063 if (!cli->server_domain)
4064 return false;
4066 if (!grepable) {
4067 d_printf("\n\tServer Comment\n");
4068 d_printf("\t--------- -------\n");
4070 fstrcpy( state, "Server" );
4071 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4072 state);
4074 if (!grepable) {
4075 d_printf("\n\tWorkgroup Master\n");
4076 d_printf("\t--------- -------\n");
4079 fstrcpy( state, "Workgroup" );
4080 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4081 server_fn, state);
4082 return true;
4085 /****************************************************************************
4086 Print or set current VUID
4087 ****************************************************************************/
4089 static int cmd_vuid(void)
4091 TALLOC_CTX *ctx = talloc_tos();
4092 char *buf;
4094 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4095 d_printf("Current VUID is %d\n", cli->vuid);
4096 return 0;
4099 cli->vuid = atoi(buf);
4100 return 0;
4103 /****************************************************************************
4104 Setup a new VUID, by issuing a session setup
4105 ****************************************************************************/
4107 static int cmd_logon(void)
4109 TALLOC_CTX *ctx = talloc_tos();
4110 char *l_username, *l_password;
4112 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4113 d_printf("logon <username> [<password>]\n");
4114 return 0;
4117 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4118 char *pass = getpass("Password: ");
4119 if (pass) {
4120 l_password = talloc_strdup(ctx,pass);
4123 if (!l_password) {
4124 return 1;
4127 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
4128 l_password, strlen(l_password),
4129 l_password, strlen(l_password),
4130 lp_workgroup()))) {
4131 d_printf("session setup failed: %s\n", cli_errstr(cli));
4132 return -1;
4135 d_printf("Current VUID is %d\n", cli->vuid);
4136 return 0;
4140 /****************************************************************************
4141 list active connections
4142 ****************************************************************************/
4144 static int cmd_list_connect(void)
4146 cli_cm_display(cli);
4147 return 0;
4150 /****************************************************************************
4151 display the current active client connection
4152 ****************************************************************************/
4154 static int cmd_show_connect( void )
4156 TALLOC_CTX *ctx = talloc_tos();
4157 struct cli_state *targetcli;
4158 char *targetpath;
4160 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
4161 &targetcli, &targetpath ) ) {
4162 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
4163 return 1;
4166 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
4167 return 0;
4170 /****************************************************************************
4171 iosize command
4172 ***************************************************************************/
4174 int cmd_iosize(void)
4176 TALLOC_CTX *ctx = talloc_tos();
4177 char *buf;
4178 int iosize;
4180 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4181 if (!smb_encrypt) {
4182 d_printf("iosize <n> or iosize 0x<n>. "
4183 "Minimum is 16384 (0x4000), "
4184 "max is 16776960 (0xFFFF00)\n");
4185 } else {
4186 d_printf("iosize <n> or iosize 0x<n>. "
4187 "(Encrypted connection) ,"
4188 "Minimum is 16384 (0x4000), "
4189 "max is 130048 (0x1FC00)\n");
4191 return 1;
4194 iosize = strtol(buf,NULL,0);
4195 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4196 d_printf("iosize out of range for encrypted "
4197 "connection (min = 16384 (0x4000), "
4198 "max = 130048 (0x1FC00)");
4199 return 1;
4200 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4201 d_printf("iosize out of range (min = 16384 (0x4000), "
4202 "max = 16776960 (0xFFFF00)");
4203 return 1;
4206 io_bufsize = iosize;
4207 d_printf("iosize is now %d\n", io_bufsize);
4208 return 0;
4211 /****************************************************************************
4212 history
4213 ****************************************************************************/
4214 static int cmd_history(void)
4216 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4217 HIST_ENTRY **hlist;
4218 int i;
4220 hlist = history_list();
4222 for (i = 0; hlist && hlist[i]; i++) {
4223 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4225 #else
4226 DEBUG(0,("no history without readline support\n"));
4227 #endif
4229 return 0;
4232 /* Some constants for completing filename arguments */
4234 #define COMPL_NONE 0 /* No completions */
4235 #define COMPL_REMOTE 1 /* Complete remote filename */
4236 #define COMPL_LOCAL 2 /* Complete local filename */
4238 /* This defines the commands supported by this client.
4239 * NOTE: The "!" must be the last one in the list because it's fn pointer
4240 * field is NULL, and NULL in that field is used in process_tok()
4241 * (below) to indicate the end of the list. crh
4243 static struct {
4244 const char *name;
4245 int (*fn)(void);
4246 const char *description;
4247 char compl_args[2]; /* Completion argument info */
4248 } commands[] = {
4249 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4250 {"allinfo",cmd_allinfo,"<file> show all available info",
4251 {COMPL_NONE,COMPL_NONE}},
4252 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4253 {"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}},
4254 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4255 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4256 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4257 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4258 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4259 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4260 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4261 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4262 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4263 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4264 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4265 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4266 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4267 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4268 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4269 {COMPL_REMOTE, COMPL_LOCAL}},
4270 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4271 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4272 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4273 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4274 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4275 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4276 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4277 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4278 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4279 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4280 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4281 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4282 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4283 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4284 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4285 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4286 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4287 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4288 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4289 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4290 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4291 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4292 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4293 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4294 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4295 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4296 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4297 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4298 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4299 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4300 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4301 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4302 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4303 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4304 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4305 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4306 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4307 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4308 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4309 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4310 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4311 {COMPL_REMOTE, COMPL_LOCAL}},
4312 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4313 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4314 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4315 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4316 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4317 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4318 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4319 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4320 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4321 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4322 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4323 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4324 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4325 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4327 /* Yes, this must be here, see crh's comment above. */
4328 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4329 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4332 /*******************************************************************
4333 Lookup a command string in the list of commands, including
4334 abbreviations.
4335 ******************************************************************/
4337 static int process_tok(char *tok)
4339 int i = 0, matches = 0;
4340 int cmd=0;
4341 int tok_len = strlen(tok);
4343 while (commands[i].fn != NULL) {
4344 if (strequal(commands[i].name,tok)) {
4345 matches = 1;
4346 cmd = i;
4347 break;
4348 } else if (strnequal(commands[i].name, tok, tok_len)) {
4349 matches++;
4350 cmd = i;
4352 i++;
4355 if (matches == 0)
4356 return(-1);
4357 else if (matches == 1)
4358 return(cmd);
4359 else
4360 return(-2);
4363 /****************************************************************************
4364 Help.
4365 ****************************************************************************/
4367 static int cmd_help(void)
4369 TALLOC_CTX *ctx = talloc_tos();
4370 int i=0,j;
4371 char *buf;
4373 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4374 if ((i = process_tok(buf)) >= 0)
4375 d_printf("HELP %s:\n\t%s\n\n",
4376 commands[i].name,commands[i].description);
4377 } else {
4378 while (commands[i].description) {
4379 for (j=0; commands[i].description && (j<5); j++) {
4380 d_printf("%-15s",commands[i].name);
4381 i++;
4383 d_printf("\n");
4386 return 0;
4389 /****************************************************************************
4390 Process a -c command string.
4391 ****************************************************************************/
4393 static int process_command_string(const char *cmd_in)
4395 TALLOC_CTX *ctx = talloc_tos();
4396 char *cmd = talloc_strdup(ctx, cmd_in);
4397 int rc = 0;
4399 if (!cmd) {
4400 return 1;
4402 /* establish the connection if not already */
4404 if (!cli) {
4405 cli = cli_cm_open(talloc_tos(), NULL,
4406 have_ip ? dest_ss_str : desthost,
4407 service, auth_info,
4408 true, smb_encrypt,
4409 max_protocol, port, name_type);
4410 if (!cli) {
4411 return 1;
4415 while (cmd[0] != '\0') {
4416 char *line;
4417 char *p;
4418 char *tok;
4419 int i;
4421 if ((p = strchr_m(cmd, ';')) == 0) {
4422 line = cmd;
4423 cmd += strlen(cmd);
4424 } else {
4425 *p = '\0';
4426 line = cmd;
4427 cmd = p + 1;
4430 /* and get the first part of the command */
4431 cmd_ptr = line;
4432 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4433 continue;
4436 if ((i = process_tok(tok)) >= 0) {
4437 rc = commands[i].fn();
4438 } else if (i == -2) {
4439 d_printf("%s: command abbreviation ambiguous\n",tok);
4440 } else {
4441 d_printf("%s: command not found\n",tok);
4445 return rc;
4448 #define MAX_COMPLETIONS 100
4450 struct completion_remote {
4451 char *dirmask;
4452 char **matches;
4453 int count, samelen;
4454 const char *text;
4455 int len;
4458 static NTSTATUS completion_remote_filter(const char *mnt,
4459 struct file_info *f,
4460 const char *mask,
4461 void *state)
4463 struct completion_remote *info = (struct completion_remote *)state;
4465 if (info->count >= MAX_COMPLETIONS - 1) {
4466 return NT_STATUS_OK;
4468 if (strncmp(info->text, f->name, info->len) != 0) {
4469 return NT_STATUS_OK;
4471 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4472 return NT_STATUS_OK;
4475 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4476 info->matches[info->count] = SMB_STRDUP(f->name);
4477 else {
4478 TALLOC_CTX *ctx = talloc_stackframe();
4479 char *tmp;
4481 tmp = talloc_strdup(ctx,info->dirmask);
4482 if (!tmp) {
4483 TALLOC_FREE(ctx);
4484 return NT_STATUS_NO_MEMORY;
4486 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4487 if (!tmp) {
4488 TALLOC_FREE(ctx);
4489 return NT_STATUS_NO_MEMORY;
4491 if (f->mode & aDIR) {
4492 tmp = talloc_asprintf_append(tmp, "%s",
4493 CLI_DIRSEP_STR);
4495 if (!tmp) {
4496 TALLOC_FREE(ctx);
4497 return NT_STATUS_NO_MEMORY;
4499 info->matches[info->count] = SMB_STRDUP(tmp);
4500 TALLOC_FREE(ctx);
4502 if (info->matches[info->count] == NULL) {
4503 return NT_STATUS_OK;
4505 if (f->mode & aDIR) {
4506 smb_readline_ca_char(0);
4508 if (info->count == 1) {
4509 info->samelen = strlen(info->matches[info->count]);
4510 } else {
4511 while (strncmp(info->matches[info->count],
4512 info->matches[info->count-1],
4513 info->samelen) != 0) {
4514 info->samelen--;
4517 info->count++;
4518 return NT_STATUS_OK;
4521 static char **remote_completion(const char *text, int len)
4523 TALLOC_CTX *ctx = talloc_stackframe();
4524 char *dirmask = NULL;
4525 char *targetpath = NULL;
4526 struct cli_state *targetcli = NULL;
4527 int i;
4528 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4529 NTSTATUS status;
4531 /* can't have non-static initialisation on Sun CC, so do it
4532 at run time here */
4533 info.samelen = len;
4534 info.text = text;
4535 info.len = len;
4537 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4538 if (!info.matches) {
4539 TALLOC_FREE(ctx);
4540 return NULL;
4544 * We're leaving matches[0] free to fill it later with the text to
4545 * display: Either the one single match or the longest common subset
4546 * of the matches.
4548 info.matches[0] = NULL;
4549 info.count = 1;
4551 for (i = len-1; i >= 0; i--) {
4552 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4553 break;
4557 info.text = text+i+1;
4558 info.samelen = info.len = len-i-1;
4560 if (i > 0) {
4561 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4562 if (!info.dirmask) {
4563 goto cleanup;
4565 strncpy(info.dirmask, text, i+1);
4566 info.dirmask[i+1] = 0;
4567 dirmask = talloc_asprintf(ctx,
4568 "%s%*s*",
4569 client_get_cur_dir(),
4570 i-1,
4571 text);
4572 } else {
4573 info.dirmask = SMB_STRDUP("");
4574 if (!info.dirmask) {
4575 goto cleanup;
4577 dirmask = talloc_asprintf(ctx,
4578 "%s*",
4579 client_get_cur_dir());
4581 if (!dirmask) {
4582 goto cleanup;
4585 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4586 goto cleanup;
4588 status = cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4589 completion_remote_filter, (void *)&info);
4590 if (!NT_STATUS_IS_OK(status)) {
4591 goto cleanup;
4594 if (info.count == 1) {
4596 * No matches at all, NULL indicates there is nothing
4598 SAFE_FREE(info.matches[0]);
4599 SAFE_FREE(info.matches);
4600 TALLOC_FREE(ctx);
4601 return NULL;
4604 if (info.count == 2) {
4606 * Exactly one match in matches[1], indicate this is the one
4607 * in matches[0].
4609 info.matches[0] = info.matches[1];
4610 info.matches[1] = NULL;
4611 info.count -= 1;
4612 TALLOC_FREE(ctx);
4613 return info.matches;
4617 * We got more than one possible match, set the result to the maximum
4618 * common subset
4621 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4622 info.matches[info.count] = NULL;
4623 return info.matches;
4625 cleanup:
4626 for (i = 0; i < info.count; i++) {
4627 SAFE_FREE(info.matches[i]);
4629 SAFE_FREE(info.matches);
4630 SAFE_FREE(info.dirmask);
4631 TALLOC_FREE(ctx);
4632 return NULL;
4635 static char **completion_fn(const char *text, int start, int end)
4637 smb_readline_ca_char(' ');
4639 if (start) {
4640 const char *buf, *sp;
4641 int i;
4642 char compl_type;
4644 buf = smb_readline_get_line_buffer();
4645 if (buf == NULL)
4646 return NULL;
4648 sp = strchr(buf, ' ');
4649 if (sp == NULL)
4650 return NULL;
4652 for (i = 0; commands[i].name; i++) {
4653 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4654 (commands[i].name[sp - buf] == 0)) {
4655 break;
4658 if (commands[i].name == NULL)
4659 return NULL;
4661 while (*sp == ' ')
4662 sp++;
4664 if (sp == (buf + start))
4665 compl_type = commands[i].compl_args[0];
4666 else
4667 compl_type = commands[i].compl_args[1];
4669 if (compl_type == COMPL_REMOTE)
4670 return remote_completion(text, end - start);
4671 else /* fall back to local filename completion */
4672 return NULL;
4673 } else {
4674 char **matches;
4675 int i, len, samelen = 0, count=1;
4677 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4678 if (!matches) {
4679 return NULL;
4681 matches[0] = NULL;
4683 len = strlen(text);
4684 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4685 if (strncmp(text, commands[i].name, len) == 0) {
4686 matches[count] = SMB_STRDUP(commands[i].name);
4687 if (!matches[count])
4688 goto cleanup;
4689 if (count == 1)
4690 samelen = strlen(matches[count]);
4691 else
4692 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4693 samelen--;
4694 count++;
4698 switch (count) {
4699 case 0: /* should never happen */
4700 case 1:
4701 goto cleanup;
4702 case 2:
4703 matches[0] = SMB_STRDUP(matches[1]);
4704 break;
4705 default:
4706 matches[0] = (char *)SMB_MALLOC(samelen+1);
4707 if (!matches[0])
4708 goto cleanup;
4709 strncpy(matches[0], matches[1], samelen);
4710 matches[0][samelen] = 0;
4712 matches[count] = NULL;
4713 return matches;
4715 cleanup:
4716 for (i = 0; i < count; i++)
4717 free(matches[i]);
4719 free(matches);
4720 return NULL;
4724 static bool finished;
4726 /****************************************************************************
4727 Make sure we swallow keepalives during idle time.
4728 ****************************************************************************/
4730 static void readline_callback(void)
4732 fd_set fds;
4733 struct timeval timeout;
4734 static time_t last_t;
4735 struct timespec now;
4736 time_t t;
4738 clock_gettime_mono(&now);
4739 t = now.tv_sec;
4741 if (t - last_t < 5)
4742 return;
4744 last_t = t;
4746 again:
4748 if (cli->fd == -1)
4749 return;
4751 FD_ZERO(&fds);
4752 FD_SET(cli->fd,&fds);
4754 timeout.tv_sec = 0;
4755 timeout.tv_usec = 0;
4756 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4758 /* We deliberately use receive_smb_raw instead of
4759 client_receive_smb as we want to receive
4760 session keepalives and then drop them here.
4762 if (FD_ISSET(cli->fd,&fds)) {
4763 NTSTATUS status;
4764 size_t len;
4766 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4768 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4770 if (!NT_STATUS_IS_OK(status)) {
4771 DEBUG(0, ("Read from server failed, maybe it closed "
4772 "the connection\n"));
4774 finished = true;
4775 smb_readline_done();
4776 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4777 set_smb_read_error(&cli->smb_rw_error,
4778 SMB_READ_EOF);
4779 return;
4782 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4783 set_smb_read_error(&cli->smb_rw_error,
4784 SMB_READ_TIMEOUT);
4785 return;
4788 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4789 return;
4791 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4792 DEBUG(0, ("Read from server "
4793 "returned unexpected packet!\n"));
4794 return;
4797 goto again;
4800 /* Ping the server to keep the connection alive using SMBecho. */
4802 NTSTATUS status;
4803 unsigned char garbage[16];
4804 memset(garbage, 0xf0, sizeof(garbage));
4805 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4807 if (!NT_STATUS_IS_OK(status)) {
4808 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4809 "the connection\n"));
4810 finished = true;
4811 smb_readline_done();
4816 /****************************************************************************
4817 Process commands on stdin.
4818 ****************************************************************************/
4820 static int process_stdin(void)
4822 int rc = 0;
4824 while (!finished) {
4825 TALLOC_CTX *frame = talloc_stackframe();
4826 char *tok = NULL;
4827 char *the_prompt = NULL;
4828 char *line = NULL;
4829 int i;
4831 /* display a prompt */
4832 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4833 TALLOC_FREE(frame);
4834 break;
4836 line = smb_readline(the_prompt, readline_callback, completion_fn);
4837 SAFE_FREE(the_prompt);
4838 if (!line) {
4839 TALLOC_FREE(frame);
4840 break;
4843 /* special case - first char is ! */
4844 if (*line == '!') {
4845 if (system(line + 1) == -1) {
4846 d_printf("system() command %s failed.\n",
4847 line+1);
4849 SAFE_FREE(line);
4850 TALLOC_FREE(frame);
4851 continue;
4854 /* and get the first part of the command */
4855 cmd_ptr = line;
4856 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4857 TALLOC_FREE(frame);
4858 SAFE_FREE(line);
4859 continue;
4862 if ((i = process_tok(tok)) >= 0) {
4863 rc = commands[i].fn();
4864 } else if (i == -2) {
4865 d_printf("%s: command abbreviation ambiguous\n",tok);
4866 } else {
4867 d_printf("%s: command not found\n",tok);
4869 SAFE_FREE(line);
4870 TALLOC_FREE(frame);
4872 return rc;
4875 /****************************************************************************
4876 Process commands from the client.
4877 ****************************************************************************/
4879 static int process(const char *base_directory)
4881 int rc = 0;
4883 cli = cli_cm_open(talloc_tos(), NULL,
4884 have_ip ? dest_ss_str : desthost,
4885 service, auth_info, true, smb_encrypt,
4886 max_protocol, port, name_type);
4887 if (!cli) {
4888 return 1;
4891 if (base_directory && *base_directory) {
4892 rc = do_cd(base_directory);
4893 if (rc) {
4894 cli_shutdown(cli);
4895 return rc;
4899 if (cmdstr) {
4900 rc = process_command_string(cmdstr);
4901 } else {
4902 process_stdin();
4905 cli_shutdown(cli);
4906 return rc;
4909 /****************************************************************************
4910 Handle a -L query.
4911 ****************************************************************************/
4913 static int do_host_query(const char *query_host)
4915 cli = cli_cm_open(talloc_tos(), NULL,
4916 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4917 max_protocol, port, name_type);
4918 if (!cli)
4919 return 1;
4921 browse_host(true);
4923 /* Ensure that the host can do IPv4 */
4925 if (!interpret_addr(query_host)) {
4926 struct sockaddr_storage ss;
4927 if (interpret_string_addr(&ss, query_host, 0) &&
4928 (ss.ss_family != AF_INET)) {
4929 d_printf("%s is an IPv6 address -- no workgroup available\n",
4930 query_host);
4931 return 1;
4935 if (port != 139) {
4937 /* Workgroups simply don't make sense over anything
4938 else but port 139... */
4940 cli_shutdown(cli);
4941 cli = cli_cm_open(talloc_tos(), NULL,
4942 have_ip ? dest_ss_str : query_host, "IPC$",
4943 auth_info, true, smb_encrypt,
4944 max_protocol, 139, name_type);
4947 if (cli == NULL) {
4948 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4949 return 1;
4952 list_servers(lp_workgroup());
4954 cli_shutdown(cli);
4956 return(0);
4959 /****************************************************************************
4960 Handle a tar operation.
4961 ****************************************************************************/
4963 static int do_tar_op(const char *base_directory)
4965 int ret;
4967 /* do we already have a connection? */
4968 if (!cli) {
4969 cli = cli_cm_open(talloc_tos(), NULL,
4970 have_ip ? dest_ss_str : desthost,
4971 service, auth_info, true, smb_encrypt,
4972 max_protocol, port, name_type);
4973 if (!cli)
4974 return 1;
4977 recurse=true;
4979 if (base_directory && *base_directory) {
4980 ret = do_cd(base_directory);
4981 if (ret) {
4982 cli_shutdown(cli);
4983 return ret;
4987 ret=process_tar();
4989 cli_shutdown(cli);
4991 return(ret);
4994 /****************************************************************************
4995 Handle a message operation.
4996 ****************************************************************************/
4998 static int do_message_op(struct user_auth_info *a_info)
5000 struct sockaddr_storage ss;
5001 struct nmb_name called, calling;
5002 fstring server_name;
5003 char name_type_hex[10];
5004 int msg_port;
5005 NTSTATUS status;
5007 make_nmb_name(&calling, calling_name, 0x0);
5008 make_nmb_name(&called , desthost, name_type);
5010 fstrcpy(server_name, desthost);
5011 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
5012 fstrcat(server_name, name_type_hex);
5014 zero_sockaddr(&ss);
5015 if (have_ip)
5016 ss = dest_ss;
5018 /* we can only do messages over port 139 (to windows clients at least) */
5020 msg_port = port ? port : 139;
5022 if (!(cli=cli_initialise())) {
5023 d_printf("Connection to %s failed\n", desthost);
5024 return 1;
5026 cli_set_port(cli, msg_port);
5028 status = cli_connect(cli, server_name, &ss);
5029 if (!NT_STATUS_IS_OK(status)) {
5030 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5031 return 1;
5034 if (!cli_session_request(cli, &calling, &called)) {
5035 d_printf("session request failed\n");
5036 cli_shutdown(cli);
5037 return 1;
5040 send_message(get_cmdline_auth_info_username(a_info));
5041 cli_shutdown(cli);
5043 return 0;
5046 /****************************************************************************
5047 main program
5048 ****************************************************************************/
5050 int main(int argc,char *argv[])
5052 char *base_directory = NULL;
5053 int opt;
5054 char *query_host = NULL;
5055 bool message = false;
5056 static const char *new_name_resolve_order = NULL;
5057 poptContext pc;
5058 char *p;
5059 int rc = 0;
5060 fstring new_workgroup;
5061 bool tar_opt = false;
5062 bool service_opt = false;
5063 struct poptOption long_options[] = {
5064 POPT_AUTOHELP
5066 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5067 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5068 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5069 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5070 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5071 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5072 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5073 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5074 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5075 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5076 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5077 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5078 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5079 POPT_COMMON_SAMBA
5080 POPT_COMMON_CONNECTION
5081 POPT_COMMON_CREDENTIALS
5082 POPT_TABLEEND
5084 TALLOC_CTX *frame = talloc_stackframe();
5086 if (!client_set_cur_dir("\\")) {
5087 exit(ENOMEM);
5090 /* initialize the workgroup name so we can determine whether or
5091 not it was set by a command line option */
5093 set_global_myworkgroup( "" );
5094 set_global_myname( "" );
5096 /* set default debug level to 1 regardless of what smb.conf sets */
5097 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5098 load_case_tables();
5100 lp_set_cmdline("log level", "1");
5102 auth_info = user_auth_info_init(frame);
5103 if (auth_info == NULL) {
5104 exit(1);
5106 popt_common_set_auth_info(auth_info);
5108 /* skip argv(0) */
5109 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5110 poptSetOtherOptionHelp(pc, "service <password>");
5112 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5114 while ((opt = poptGetNextOpt(pc)) != -1) {
5116 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5117 /* I see no other way to keep things sane --SSS */
5118 if (tar_opt == true) {
5119 while (poptPeekArg(pc)) {
5120 poptGetArg(pc);
5122 tar_opt = false;
5125 /* if the service has not yet been specified lets see if it is available in the popt stack */
5126 if (!service_opt && poptPeekArg(pc)) {
5127 service = talloc_strdup(frame, poptGetArg(pc));
5128 if (!service) {
5129 exit(ENOMEM);
5131 service_opt = true;
5134 /* if the service has already been retrieved then check if we have also a password */
5135 if (service_opt
5136 && (!get_cmdline_auth_info_got_pass(auth_info))
5137 && poptPeekArg(pc)) {
5138 set_cmdline_auth_info_password(auth_info,
5139 poptGetArg(pc));
5142 switch (opt) {
5143 case 'M':
5144 /* Messages are sent to NetBIOS name type 0x3
5145 * (Messenger Service). Make sure we default
5146 * to port 139 instead of port 445. srl,crh
5148 name_type = 0x03;
5149 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5150 if (!desthost) {
5151 exit(ENOMEM);
5153 if( !port )
5154 port = 139;
5155 message = true;
5156 break;
5157 case 'I':
5159 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5160 exit(1);
5162 have_ip = true;
5163 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5165 break;
5166 case 'E':
5167 setup_logging("smbclient", DEBUG_STDERR );
5168 display_set_stderr();
5169 break;
5171 case 'L':
5172 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5173 if (!query_host) {
5174 exit(ENOMEM);
5176 break;
5177 case 'm':
5178 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5179 break;
5180 case 'T':
5181 /* We must use old option processing for this. Find the
5182 * position of the -T option in the raw argv[]. */
5184 int i;
5185 for (i = 1; i < argc; i++) {
5186 if (strncmp("-T", argv[i],2)==0)
5187 break;
5189 i++;
5190 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5191 poptPrintUsage(pc, stderr, 0);
5192 exit(1);
5195 /* this must be the last option, mark we have parsed it so that we know we have */
5196 tar_opt = true;
5197 break;
5198 case 'D':
5199 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5200 if (!base_directory) {
5201 exit(ENOMEM);
5203 break;
5204 case 'g':
5205 grepable=true;
5206 break;
5207 case 'e':
5208 smb_encrypt=true;
5209 break;
5210 case 'B':
5211 return(do_smb_browse());
5216 /* We may still have some leftovers after the last popt option has been called */
5217 if (tar_opt == true) {
5218 while (poptPeekArg(pc)) {
5219 poptGetArg(pc);
5221 tar_opt = false;
5224 /* if the service has not yet been specified lets see if it is available in the popt stack */
5225 if (!service_opt && poptPeekArg(pc)) {
5226 service = talloc_strdup(frame,poptGetArg(pc));
5227 if (!service) {
5228 exit(ENOMEM);
5230 service_opt = true;
5233 /* if the service has already been retrieved then check if we have also a password */
5234 if (service_opt
5235 && !get_cmdline_auth_info_got_pass(auth_info)
5236 && poptPeekArg(pc)) {
5237 set_cmdline_auth_info_password(auth_info,
5238 poptGetArg(pc));
5241 /* save the workgroup...
5243 FIXME!! do we need to do this for other options as well
5244 (or maybe a generic way to keep lp_load() from overwriting
5245 everything)? */
5247 fstrcpy( new_workgroup, lp_workgroup() );
5248 calling_name = talloc_strdup(frame, global_myname() );
5249 if (!calling_name) {
5250 exit(ENOMEM);
5253 if ( override_logfile )
5254 setup_logging( lp_logfile(), DEBUG_FILE );
5256 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5257 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5258 argv[0], get_dyn_CONFIGFILE());
5261 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5262 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5263 exit(-1);
5266 load_interfaces();
5268 if (service_opt && service) {
5269 size_t len;
5271 /* Convert any '/' characters in the service name to '\' characters */
5272 string_replace(service, '/','\\');
5273 if (count_chars(service,'\\') < 3) {
5274 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5275 poptPrintUsage(pc, stderr, 0);
5276 exit(1);
5278 /* Remove trailing slashes */
5279 len = strlen(service);
5280 while(len > 0 && service[len - 1] == '\\') {
5281 --len;
5282 service[len] = '\0';
5286 if ( strlen(new_workgroup) != 0 ) {
5287 set_global_myworkgroup( new_workgroup );
5290 if ( strlen(calling_name) != 0 ) {
5291 set_global_myname( calling_name );
5292 } else {
5293 TALLOC_FREE(calling_name);
5294 calling_name = talloc_strdup(frame, global_myname() );
5297 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5298 if (!init_names()) {
5299 fprintf(stderr, "init_names() failed\n");
5300 exit(1);
5303 if(new_name_resolve_order)
5304 lp_set_name_resolve_order(new_name_resolve_order);
5306 if (!tar_type && !query_host && !service && !message) {
5307 poptPrintUsage(pc, stderr, 0);
5308 exit(1);
5311 poptFreeContext(pc);
5313 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5315 /* Ensure we have a password (or equivalent). */
5316 set_cmdline_auth_info_getpass(auth_info);
5318 if (tar_type) {
5319 if (cmdstr)
5320 process_command_string(cmdstr);
5321 return do_tar_op(base_directory);
5324 if (query_host && *query_host) {
5325 char *qhost = query_host;
5326 char *slash;
5328 while (*qhost == '\\' || *qhost == '/')
5329 qhost++;
5331 if ((slash = strchr_m(qhost, '/'))
5332 || (slash = strchr_m(qhost, '\\'))) {
5333 *slash = 0;
5336 if ((p=strchr_m(qhost, '#'))) {
5337 *p = 0;
5338 p++;
5339 sscanf(p, "%x", &name_type);
5342 return do_host_query(qhost);
5345 if (message) {
5346 return do_message_op(auth_info);
5349 if (process(base_directory)) {
5350 return 1;
5353 TALLOC_FREE(frame);
5354 return rc;