s3-debug Impove setup_logging() to specify logging to stderr
[Samba/gebeck_regimport.git] / source3 / client / client.c
bloba7c09cf6c52f8a770655bf786b8fc0b5e6090b91
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 unsigned int num_streams;
1637 struct stream_struct *streams;
1638 unsigned int i;
1639 NTSTATUS status;
1641 status = cli_qpathinfo_alt_name(cli, name, altname);
1642 if (!NT_STATUS_IS_OK(status)) {
1643 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1644 name);
1645 return false;
1647 d_printf("altname: %s\n", altname);
1649 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1650 &size, &mode, &ino);
1651 if (!NT_STATUS_IS_OK(status)) {
1652 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1653 name);
1654 return false;
1657 unix_timespec_to_nt_time(&tmp, b_time);
1658 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1660 unix_timespec_to_nt_time(&tmp, a_time);
1661 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1663 unix_timespec_to_nt_time(&tmp, m_time);
1664 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1666 unix_timespec_to_nt_time(&tmp, c_time);
1667 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1669 d_printf("attributes: %s\n", attr_str(talloc_tos(), mode));
1671 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1672 &streams);
1673 if (!NT_STATUS_IS_OK(status)) {
1674 d_printf("%s getting streams for %s\n", nt_errstr(status),
1675 name);
1676 return false;
1679 for (i=0; i<num_streams; i++) {
1680 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1681 (unsigned long long)streams[i].size);
1684 return 0;
1687 /****************************************************************************
1688 Show all info we can get
1689 ****************************************************************************/
1691 static int cmd_allinfo(void)
1693 TALLOC_CTX *ctx = talloc_tos();
1694 char *name;
1695 char *buf;
1697 name = talloc_strdup(ctx, client_get_cur_dir());
1698 if (!name) {
1699 return 1;
1702 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1703 d_printf("allinfo <file>\n");
1704 return 1;
1706 name = talloc_asprintf_append(name, "%s", buf);
1707 if (!name) {
1708 return 1;
1711 do_allinfo(name);
1713 return 0;
1716 /****************************************************************************
1717 Put a single file.
1718 ****************************************************************************/
1720 static int do_put(const char *rname, const char *lname, bool reput)
1722 TALLOC_CTX *ctx = talloc_tos();
1723 uint16_t fnum;
1724 XFILE *f;
1725 SMB_OFF_T start = 0;
1726 int rc = 0;
1727 struct timespec tp_start;
1728 struct cli_state *targetcli;
1729 char *targetname = NULL;
1730 struct push_state state;
1731 NTSTATUS status;
1733 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1734 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1735 return 1;
1738 clock_gettime_mono(&tp_start);
1740 if (reput) {
1741 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1742 if (NT_STATUS_IS_OK(status)) {
1743 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1744 targetcli, fnum, NULL,
1745 &start, NULL, NULL,
1746 NULL, NULL, NULL)) &&
1747 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1748 d_printf("getattrib: %s\n",cli_errstr(cli));
1749 return 1;
1752 } else {
1753 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1756 if (!NT_STATUS_IS_OK(status)) {
1757 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1758 return 1;
1761 /* allow files to be piped into smbclient
1762 jdblair 24.jun.98
1764 Note that in this case this function will exit(0) rather
1765 than returning. */
1766 if (!strcmp(lname, "-")) {
1767 f = x_stdin;
1768 /* size of file is not known */
1769 } else {
1770 f = x_fopen(lname,O_RDONLY, 0);
1771 if (f && reput) {
1772 if (x_tseek(f, start, SEEK_SET) == -1) {
1773 d_printf("Error seeking local file\n");
1774 x_fclose(f);
1775 return 1;
1780 if (!f) {
1781 d_printf("Error opening local file %s\n",lname);
1782 return 1;
1785 DEBUG(1,("putting file %s as %s ",lname,
1786 rname));
1788 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1790 state.f = f;
1791 state.nread = 0;
1793 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1794 &state);
1795 if (!NT_STATUS_IS_OK(status)) {
1796 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1797 rc = 1;
1800 status = cli_close(targetcli, fnum);
1801 if (!NT_STATUS_IS_OK(status)) {
1802 d_printf("%s closing remote file %s\n", nt_errstr(status),
1803 rname);
1804 if (f != x_stdin) {
1805 x_fclose(f);
1807 return 1;
1810 if (f != x_stdin) {
1811 x_fclose(f);
1815 struct timespec tp_end;
1816 int this_time;
1818 clock_gettime_mono(&tp_end);
1819 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1820 put_total_time_ms += this_time;
1821 put_total_size += state.nread;
1823 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1824 state.nread / (1.024*this_time + 1.0e-4),
1825 put_total_size / (1.024*put_total_time_ms)));
1828 if (f == x_stdin) {
1829 cli_shutdown(cli);
1830 exit(0);
1833 return rc;
1836 /****************************************************************************
1837 Put a file.
1838 ****************************************************************************/
1840 static int cmd_put(void)
1842 TALLOC_CTX *ctx = talloc_tos();
1843 char *lname;
1844 char *rname;
1845 char *buf;
1847 rname = talloc_strdup(ctx, client_get_cur_dir());
1848 if (!rname) {
1849 return 1;
1852 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1853 d_printf("put <filename>\n");
1854 return 1;
1857 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1858 rname = talloc_asprintf_append(rname, "%s", buf);
1859 } else {
1860 rname = talloc_asprintf_append(rname, "%s", lname);
1862 if (!rname) {
1863 return 1;
1866 rname = clean_name(ctx, rname);
1867 if (!rname) {
1868 return 1;
1872 SMB_STRUCT_STAT st;
1873 /* allow '-' to represent stdin
1874 jdblair, 24.jun.98 */
1875 if (!file_exist_stat(lname, &st, false) &&
1876 (strcmp(lname,"-"))) {
1877 d_printf("%s does not exist\n",lname);
1878 return 1;
1882 return do_put(rname, lname, false);
1885 /*************************************
1886 File list structure.
1887 *************************************/
1889 static struct file_list {
1890 struct file_list *prev, *next;
1891 char *file_path;
1892 bool isdir;
1893 } *file_list;
1895 /****************************************************************************
1896 Free a file_list structure.
1897 ****************************************************************************/
1899 static void free_file_list (struct file_list *l_head)
1901 struct file_list *list, *next;
1903 for (list = l_head; list; list = next) {
1904 next = list->next;
1905 DLIST_REMOVE(l_head, list);
1906 SAFE_FREE(list->file_path);
1907 SAFE_FREE(list);
1911 /****************************************************************************
1912 Seek in a directory/file list until you get something that doesn't start with
1913 the specified name.
1914 ****************************************************************************/
1916 static bool seek_list(struct file_list *list, char *name)
1918 while (list) {
1919 trim_string(list->file_path,"./","\n");
1920 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1921 return true;
1923 list = list->next;
1926 return false;
1929 /****************************************************************************
1930 Set the file selection mask.
1931 ****************************************************************************/
1933 static int cmd_select(void)
1935 TALLOC_CTX *ctx = talloc_tos();
1936 char *new_fs = NULL;
1937 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1939 if (new_fs) {
1940 client_set_fileselection(new_fs);
1941 } else {
1942 client_set_fileselection("");
1944 return 0;
1947 /****************************************************************************
1948 Recursive file matching function act as find
1949 match must be always set to true when calling this function
1950 ****************************************************************************/
1952 static int file_find(struct file_list **list, const char *directory,
1953 const char *expression, bool match)
1955 SMB_STRUCT_DIR *dir;
1956 struct file_list *entry;
1957 struct stat statbuf;
1958 int ret;
1959 char *path;
1960 bool isdir;
1961 const char *dname;
1963 dir = sys_opendir(directory);
1964 if (!dir)
1965 return -1;
1967 while ((dname = readdirname(dir))) {
1968 if (!strcmp("..", dname))
1969 continue;
1970 if (!strcmp(".", dname))
1971 continue;
1973 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1974 continue;
1977 isdir = false;
1978 if (!match || !gen_fnmatch(expression, dname)) {
1979 if (recurse) {
1980 ret = stat(path, &statbuf);
1981 if (ret == 0) {
1982 if (S_ISDIR(statbuf.st_mode)) {
1983 isdir = true;
1984 ret = file_find(list, path, expression, false);
1986 } else {
1987 d_printf("file_find: cannot stat file %s\n", path);
1990 if (ret == -1) {
1991 SAFE_FREE(path);
1992 sys_closedir(dir);
1993 return -1;
1996 entry = SMB_MALLOC_P(struct file_list);
1997 if (!entry) {
1998 d_printf("Out of memory in file_find\n");
1999 sys_closedir(dir);
2000 return -1;
2002 entry->file_path = path;
2003 entry->isdir = isdir;
2004 DLIST_ADD(*list, entry);
2005 } else {
2006 SAFE_FREE(path);
2010 sys_closedir(dir);
2011 return 0;
2014 /****************************************************************************
2015 mput some files.
2016 ****************************************************************************/
2018 static int cmd_mput(void)
2020 TALLOC_CTX *ctx = talloc_tos();
2021 char *p = NULL;
2023 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2024 int ret;
2025 struct file_list *temp_list;
2026 char *quest, *lname, *rname;
2028 file_list = NULL;
2030 ret = file_find(&file_list, ".", p, true);
2031 if (ret) {
2032 free_file_list(file_list);
2033 continue;
2036 quest = NULL;
2037 lname = NULL;
2038 rname = NULL;
2040 for (temp_list = file_list; temp_list;
2041 temp_list = temp_list->next) {
2043 SAFE_FREE(lname);
2044 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2045 continue;
2047 trim_string(lname, "./", "/");
2049 /* check if it's a directory */
2050 if (temp_list->isdir) {
2051 /* if (!recurse) continue; */
2053 SAFE_FREE(quest);
2054 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2055 break;
2057 if (prompt && !yesno(quest)) { /* No */
2058 /* Skip the directory */
2059 lname[strlen(lname)-1] = '/';
2060 if (!seek_list(temp_list, lname))
2061 break;
2062 } else { /* Yes */
2063 SAFE_FREE(rname);
2064 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2065 break;
2067 normalize_name(rname);
2068 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2069 !do_mkdir(rname)) {
2070 DEBUG (0, ("Unable to make dir, skipping..."));
2071 /* Skip the directory */
2072 lname[strlen(lname)-1] = '/';
2073 if (!seek_list(temp_list, lname)) {
2074 break;
2078 continue;
2079 } else {
2080 SAFE_FREE(quest);
2081 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2082 break;
2084 if (prompt && !yesno(quest)) {
2085 /* No */
2086 continue;
2089 /* Yes */
2090 SAFE_FREE(rname);
2091 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2092 break;
2096 normalize_name(rname);
2098 do_put(rname, lname, false);
2100 free_file_list(file_list);
2101 SAFE_FREE(quest);
2102 SAFE_FREE(lname);
2103 SAFE_FREE(rname);
2106 return 0;
2109 /****************************************************************************
2110 Cancel a print job.
2111 ****************************************************************************/
2113 static int do_cancel(int job)
2115 if (cli_printjob_del(cli, job)) {
2116 d_printf("Job %d cancelled\n",job);
2117 return 0;
2118 } else {
2119 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2120 return 1;
2124 /****************************************************************************
2125 Cancel a print job.
2126 ****************************************************************************/
2128 static int cmd_cancel(void)
2130 TALLOC_CTX *ctx = talloc_tos();
2131 char *buf = NULL;
2132 int job;
2134 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2135 d_printf("cancel <jobid> ...\n");
2136 return 1;
2138 do {
2139 job = atoi(buf);
2140 do_cancel(job);
2141 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2143 return 0;
2146 /****************************************************************************
2147 Print a file.
2148 ****************************************************************************/
2150 static int cmd_print(void)
2152 TALLOC_CTX *ctx = talloc_tos();
2153 char *lname = NULL;
2154 char *rname = NULL;
2155 char *p = NULL;
2157 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2158 d_printf("print <filename>\n");
2159 return 1;
2162 rname = talloc_strdup(ctx, lname);
2163 if (!rname) {
2164 return 1;
2166 p = strrchr_m(rname,'/');
2167 if (p) {
2168 rname = talloc_asprintf(ctx,
2169 "%s-%d",
2170 p+1,
2171 (int)sys_getpid());
2173 if (strequal(lname,"-")) {
2174 rname = talloc_asprintf(ctx,
2175 "stdin-%d",
2176 (int)sys_getpid());
2178 if (!rname) {
2179 return 1;
2182 return do_put(rname, lname, false);
2185 /****************************************************************************
2186 Show a print queue entry.
2187 ****************************************************************************/
2189 static void queue_fn(struct print_job_info *p)
2191 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2194 /****************************************************************************
2195 Show a print queue.
2196 ****************************************************************************/
2198 static int cmd_queue(void)
2200 cli_print_queue(cli, queue_fn);
2201 return 0;
2204 /****************************************************************************
2205 Delete some files.
2206 ****************************************************************************/
2208 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2209 const char *dir)
2211 TALLOC_CTX *ctx = talloc_tos();
2212 char *mask = NULL;
2213 NTSTATUS status;
2215 mask = talloc_asprintf(ctx,
2216 "%s%c%s",
2217 dir,
2218 CLI_DIRSEP_CHAR,
2219 finfo->name);
2220 if (!mask) {
2221 return NT_STATUS_NO_MEMORY;
2224 if (finfo->mode & aDIR) {
2225 TALLOC_FREE(mask);
2226 return NT_STATUS_OK;
2229 status = cli_unlink(cli_state, mask, aSYSTEM | aHIDDEN);
2230 if (!NT_STATUS_IS_OK(status)) {
2231 d_printf("%s deleting remote file %s\n",
2232 nt_errstr(status), mask);
2234 TALLOC_FREE(mask);
2235 return status;
2238 /****************************************************************************
2239 Delete some files.
2240 ****************************************************************************/
2242 static int cmd_del(void)
2244 TALLOC_CTX *ctx = talloc_tos();
2245 char *mask = NULL;
2246 char *buf = NULL;
2247 NTSTATUS status = NT_STATUS_OK;
2248 uint16 attribute = aSYSTEM | aHIDDEN;
2250 if (recurse) {
2251 attribute |= aDIR;
2254 mask = talloc_strdup(ctx, client_get_cur_dir());
2255 if (!mask) {
2256 return 1;
2258 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2259 d_printf("del <filename>\n");
2260 return 1;
2262 mask = talloc_asprintf_append(mask, "%s", buf);
2263 if (!mask) {
2264 return 1;
2267 status = do_list(mask,attribute,do_del,false,false);
2268 if (!NT_STATUS_IS_OK(status)) {
2269 return 1;
2271 return 0;
2274 /****************************************************************************
2275 Wildcard delete some files.
2276 ****************************************************************************/
2278 static int cmd_wdel(void)
2280 TALLOC_CTX *ctx = talloc_tos();
2281 char *mask = NULL;
2282 char *buf = NULL;
2283 uint16 attribute;
2284 struct cli_state *targetcli;
2285 char *targetname = NULL;
2286 NTSTATUS status;
2288 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2289 d_printf("wdel 0x<attrib> <wcard>\n");
2290 return 1;
2293 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2295 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2296 d_printf("wdel 0x<attrib> <wcard>\n");
2297 return 1;
2300 mask = talloc_asprintf(ctx, "%s%s",
2301 client_get_cur_dir(),
2302 buf);
2303 if (!mask) {
2304 return 1;
2307 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2308 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2309 return 1;
2312 status = cli_unlink(targetcli, targetname, attribute);
2313 if (!NT_STATUS_IS_OK(status)) {
2314 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2315 targetname);
2317 return 0;
2320 /****************************************************************************
2321 ****************************************************************************/
2323 static int cmd_open(void)
2325 TALLOC_CTX *ctx = talloc_tos();
2326 char *mask = NULL;
2327 char *buf = NULL;
2328 char *targetname = NULL;
2329 struct cli_state *targetcli;
2330 uint16_t fnum = (uint16_t)-1;
2332 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2333 d_printf("open <filename>\n");
2334 return 1;
2336 mask = talloc_asprintf(ctx,
2337 "%s%s",
2338 client_get_cur_dir(),
2339 buf);
2340 if (!mask) {
2341 return 1;
2344 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2345 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2346 return 1;
2349 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2350 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2351 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2352 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2353 FILE_READ_DATA, 0,
2354 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2355 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2356 } else {
2357 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2359 } else {
2360 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2362 return 0;
2365 static int cmd_posix_encrypt(void)
2367 TALLOC_CTX *ctx = talloc_tos();
2368 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2370 if (cli->use_kerberos) {
2371 status = cli_gss_smb_encryption_start(cli);
2372 } else {
2373 char *domain = NULL;
2374 char *user = NULL;
2375 char *password = NULL;
2377 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2378 d_printf("posix_encrypt domain user password\n");
2379 return 1;
2382 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2383 d_printf("posix_encrypt domain user password\n");
2384 return 1;
2387 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2388 d_printf("posix_encrypt domain user password\n");
2389 return 1;
2392 status = cli_raw_ntlm_smb_encryption_start(cli,
2393 user,
2394 password,
2395 domain);
2398 if (!NT_STATUS_IS_OK(status)) {
2399 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2400 } else {
2401 d_printf("encryption on\n");
2402 smb_encrypt = true;
2405 return 0;
2408 /****************************************************************************
2409 ****************************************************************************/
2411 static int cmd_posix_open(void)
2413 TALLOC_CTX *ctx = talloc_tos();
2414 char *mask = NULL;
2415 char *buf = NULL;
2416 char *targetname = NULL;
2417 struct cli_state *targetcli;
2418 mode_t mode;
2419 uint16_t fnum;
2421 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2422 d_printf("posix_open <filename> 0<mode>\n");
2423 return 1;
2425 mask = talloc_asprintf(ctx,
2426 "%s%s",
2427 client_get_cur_dir(),
2428 buf);
2429 if (!mask) {
2430 return 1;
2433 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2434 d_printf("posix_open <filename> 0<mode>\n");
2435 return 1;
2437 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2439 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2440 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2441 return 1;
2444 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2445 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2446 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2447 } else {
2448 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2450 } else {
2451 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2454 return 0;
2457 static int cmd_posix_mkdir(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;
2466 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2467 d_printf("posix_mkdir <filename> 0<mode>\n");
2468 return 1;
2470 mask = talloc_asprintf(ctx,
2471 "%s%s",
2472 client_get_cur_dir(),
2473 buf);
2474 if (!mask) {
2475 return 1;
2478 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2479 d_printf("posix_mkdir <filename> 0<mode>\n");
2480 return 1;
2482 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2484 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2485 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2486 return 1;
2489 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2490 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2491 } else {
2492 d_printf("posix_mkdir created directory %s\n", targetname);
2494 return 0;
2497 static int cmd_posix_unlink(void)
2499 TALLOC_CTX *ctx = talloc_tos();
2500 char *mask = NULL;
2501 char *buf = NULL;
2502 char *targetname = NULL;
2503 struct cli_state *targetcli;
2505 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2506 d_printf("posix_unlink <filename>\n");
2507 return 1;
2509 mask = talloc_asprintf(ctx,
2510 "%s%s",
2511 client_get_cur_dir(),
2512 buf);
2513 if (!mask) {
2514 return 1;
2517 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2518 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2519 return 1;
2522 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2523 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2524 } else {
2525 d_printf("posix_unlink deleted file %s\n", targetname);
2528 return 0;
2531 static int cmd_posix_rmdir(void)
2533 TALLOC_CTX *ctx = talloc_tos();
2534 char *mask = NULL;
2535 char *buf = NULL;
2536 char *targetname = NULL;
2537 struct cli_state *targetcli;
2539 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2540 d_printf("posix_rmdir <filename>\n");
2541 return 1;
2543 mask = talloc_asprintf(ctx,
2544 "%s%s",
2545 client_get_cur_dir(),
2546 buf);
2547 if (!mask) {
2548 return 1;
2551 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2552 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2553 return 1;
2556 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2557 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2558 } else {
2559 d_printf("posix_rmdir deleted directory %s\n", targetname);
2562 return 0;
2565 static int cmd_close(void)
2567 TALLOC_CTX *ctx = talloc_tos();
2568 char *buf = NULL;
2569 int fnum;
2571 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2572 d_printf("close <fnum>\n");
2573 return 1;
2576 fnum = atoi(buf);
2577 /* We really should use the targetcli here.... */
2578 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2579 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2580 return 1;
2582 return 0;
2585 static int cmd_posix(void)
2587 TALLOC_CTX *ctx = talloc_tos();
2588 uint16 major, minor;
2589 uint32 caplow, caphigh;
2590 char *caps;
2591 NTSTATUS status;
2593 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2594 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2595 return 1;
2598 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2599 &caphigh);
2600 if (!NT_STATUS_IS_OK(status)) {
2601 d_printf("Can't get UNIX CIFS extensions version from "
2602 "server: %s\n", nt_errstr(status));
2603 return 1;
2606 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2608 caps = talloc_strdup(ctx, "");
2609 if (!caps) {
2610 return 1;
2612 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2613 caps = talloc_asprintf_append(caps, "locks ");
2614 if (!caps) {
2615 return 1;
2618 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2619 caps = talloc_asprintf_append(caps, "acls ");
2620 if (!caps) {
2621 return 1;
2624 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2625 caps = talloc_asprintf_append(caps, "eas ");
2626 if (!caps) {
2627 return 1;
2630 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2631 caps = talloc_asprintf_append(caps, "pathnames ");
2632 if (!caps) {
2633 return 1;
2636 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2637 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2638 if (!caps) {
2639 return 1;
2642 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2643 caps = talloc_asprintf_append(caps, "large_read ");
2644 if (!caps) {
2645 return 1;
2648 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2649 caps = talloc_asprintf_append(caps, "large_write ");
2650 if (!caps) {
2651 return 1;
2654 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2655 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2656 if (!caps) {
2657 return 1;
2660 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2661 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2662 if (!caps) {
2663 return 1;
2667 if (*caps && caps[strlen(caps)-1] == ' ') {
2668 caps[strlen(caps)-1] = '\0';
2671 d_printf("Server supports CIFS capabilities %s\n", caps);
2673 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2674 caplow, caphigh);
2675 if (!NT_STATUS_IS_OK(status)) {
2676 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2677 nt_errstr(status));
2678 return 1;
2681 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2682 CLI_DIRSEP_CHAR = '/';
2683 *CLI_DIRSEP_STR = '/';
2684 client_set_cur_dir(CLI_DIRSEP_STR);
2687 return 0;
2690 static int cmd_lock(void)
2692 TALLOC_CTX *ctx = talloc_tos();
2693 char *buf = NULL;
2694 uint64_t start, len;
2695 enum brl_type lock_type;
2696 int fnum;
2698 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2699 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2700 return 1;
2702 fnum = atoi(buf);
2704 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2705 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2706 return 1;
2709 if (*buf == 'r' || *buf == 'R') {
2710 lock_type = READ_LOCK;
2711 } else if (*buf == 'w' || *buf == 'W') {
2712 lock_type = WRITE_LOCK;
2713 } else {
2714 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2715 return 1;
2718 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2719 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2720 return 1;
2723 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2725 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2726 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2727 return 1;
2730 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2732 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2733 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2736 return 0;
2739 static int cmd_unlock(void)
2741 TALLOC_CTX *ctx = talloc_tos();
2742 char *buf = NULL;
2743 uint64_t start, len;
2744 int fnum;
2746 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2747 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2748 return 1;
2750 fnum = atoi(buf);
2752 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2753 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2754 return 1;
2757 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2759 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2760 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2761 return 1;
2764 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2766 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2767 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2770 return 0;
2774 /****************************************************************************
2775 Remove a directory.
2776 ****************************************************************************/
2778 static int cmd_rmdir(void)
2780 TALLOC_CTX *ctx = talloc_tos();
2781 char *mask = NULL;
2782 char *buf = NULL;
2783 char *targetname = NULL;
2784 struct cli_state *targetcli;
2786 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2787 d_printf("rmdir <dirname>\n");
2788 return 1;
2790 mask = talloc_asprintf(ctx,
2791 "%s%s",
2792 client_get_cur_dir(),
2793 buf);
2794 if (!mask) {
2795 return 1;
2798 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2799 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2800 return 1;
2803 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2804 d_printf("%s removing remote directory file %s\n",
2805 cli_errstr(targetcli),mask);
2808 return 0;
2811 /****************************************************************************
2812 UNIX hardlink.
2813 ****************************************************************************/
2815 static int cmd_link(void)
2817 TALLOC_CTX *ctx = talloc_tos();
2818 char *oldname = NULL;
2819 char *newname = NULL;
2820 char *buf = NULL;
2821 char *buf2 = NULL;
2822 char *targetname = NULL;
2823 struct cli_state *targetcli;
2825 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2826 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2827 d_printf("link <oldname> <newname>\n");
2828 return 1;
2830 oldname = talloc_asprintf(ctx,
2831 "%s%s",
2832 client_get_cur_dir(),
2833 buf);
2834 if (!oldname) {
2835 return 1;
2837 newname = talloc_asprintf(ctx,
2838 "%s%s",
2839 client_get_cur_dir(),
2840 buf2);
2841 if (!newname) {
2842 return 1;
2845 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2846 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2847 return 1;
2850 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2851 d_printf("Server doesn't support UNIX CIFS calls.\n");
2852 return 1;
2855 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2856 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2857 return 1;
2859 return 0;
2862 /****************************************************************************
2863 UNIX readlink.
2864 ****************************************************************************/
2866 static int cmd_readlink(void)
2868 TALLOC_CTX *ctx = talloc_tos();
2869 char *name= NULL;
2870 char *buf = NULL;
2871 char *targetname = NULL;
2872 char linkname[PATH_MAX+1];
2873 struct cli_state *targetcli;
2875 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2876 d_printf("readlink <name>\n");
2877 return 1;
2879 name = talloc_asprintf(ctx,
2880 "%s%s",
2881 client_get_cur_dir(),
2882 buf);
2883 if (!name) {
2884 return 1;
2887 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2888 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2889 return 1;
2892 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2893 d_printf("Server doesn't support UNIX CIFS calls.\n");
2894 return 1;
2897 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2898 linkname, PATH_MAX+1))) {
2899 d_printf("%s readlink on file %s\n",
2900 cli_errstr(targetcli), name);
2901 return 1;
2904 d_printf("%s -> %s\n", name, linkname);
2906 return 0;
2910 /****************************************************************************
2911 UNIX symlink.
2912 ****************************************************************************/
2914 static int cmd_symlink(void)
2916 TALLOC_CTX *ctx = talloc_tos();
2917 char *oldname = NULL;
2918 char *newname = NULL;
2919 char *buf = NULL;
2920 char *buf2 = NULL;
2921 struct cli_state *newcli;
2923 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2924 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2925 d_printf("symlink <oldname> <newname>\n");
2926 return 1;
2928 /* Oldname (link target) must be an untouched blob. */
2929 oldname = buf;
2931 newname = talloc_asprintf(ctx,
2932 "%s%s",
2933 client_get_cur_dir(),
2934 buf2);
2935 if (!newname) {
2936 return 1;
2939 /* New name must be present in share namespace. */
2940 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
2941 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2942 return 1;
2945 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
2946 d_printf("Server doesn't support UNIX CIFS calls.\n");
2947 return 1;
2950 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
2951 d_printf("%s symlinking files (%s -> %s)\n",
2952 cli_errstr(newcli), newname, newname);
2953 return 1;
2956 return 0;
2959 /****************************************************************************
2960 UNIX chmod.
2961 ****************************************************************************/
2963 static int cmd_chmod(void)
2965 TALLOC_CTX *ctx = talloc_tos();
2966 char *src = NULL;
2967 char *buf = NULL;
2968 char *buf2 = NULL;
2969 char *targetname = NULL;
2970 struct cli_state *targetcli;
2971 mode_t mode;
2973 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2974 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2975 d_printf("chmod mode file\n");
2976 return 1;
2978 src = talloc_asprintf(ctx,
2979 "%s%s",
2980 client_get_cur_dir(),
2981 buf2);
2982 if (!src) {
2983 return 1;
2986 mode = (mode_t)strtol(buf, NULL, 8);
2988 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2989 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2990 return 1;
2993 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2994 d_printf("Server doesn't support UNIX CIFS calls.\n");
2995 return 1;
2998 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2999 d_printf("%s chmod file %s 0%o\n",
3000 cli_errstr(targetcli), src, (unsigned int)mode);
3001 return 1;
3004 return 0;
3007 static const char *filetype_to_str(mode_t mode)
3009 if (S_ISREG(mode)) {
3010 return "regular file";
3011 } else if (S_ISDIR(mode)) {
3012 return "directory";
3013 } else
3014 #ifdef S_ISCHR
3015 if (S_ISCHR(mode)) {
3016 return "character device";
3017 } else
3018 #endif
3019 #ifdef S_ISBLK
3020 if (S_ISBLK(mode)) {
3021 return "block device";
3022 } else
3023 #endif
3024 #ifdef S_ISFIFO
3025 if (S_ISFIFO(mode)) {
3026 return "fifo";
3027 } else
3028 #endif
3029 #ifdef S_ISLNK
3030 if (S_ISLNK(mode)) {
3031 return "symbolic link";
3032 } else
3033 #endif
3034 #ifdef S_ISSOCK
3035 if (S_ISSOCK(mode)) {
3036 return "socket";
3037 } else
3038 #endif
3039 return "";
3042 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3044 if (m & bt) {
3045 return ret;
3046 } else {
3047 return '-';
3051 static char *unix_mode_to_str(char *s, mode_t m)
3053 char *p = s;
3054 const char *str = filetype_to_str(m);
3056 switch(str[0]) {
3057 case 'd':
3058 *p++ = 'd';
3059 break;
3060 case 'c':
3061 *p++ = 'c';
3062 break;
3063 case 'b':
3064 *p++ = 'b';
3065 break;
3066 case 'f':
3067 *p++ = 'p';
3068 break;
3069 case 's':
3070 *p++ = str[1] == 'y' ? 'l' : 's';
3071 break;
3072 case 'r':
3073 default:
3074 *p++ = '-';
3075 break;
3077 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3078 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3079 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3080 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3081 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3082 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3083 *p++ = rwx_to_str(m, S_IROTH, 'r');
3084 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3085 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3086 *p++ = '\0';
3087 return s;
3090 /****************************************************************************
3091 Utility function for UNIX getfacl.
3092 ****************************************************************************/
3094 static char *perms_to_string(fstring permstr, unsigned char perms)
3096 fstrcpy(permstr, "---");
3097 if (perms & SMB_POSIX_ACL_READ) {
3098 permstr[0] = 'r';
3100 if (perms & SMB_POSIX_ACL_WRITE) {
3101 permstr[1] = 'w';
3103 if (perms & SMB_POSIX_ACL_EXECUTE) {
3104 permstr[2] = 'x';
3106 return permstr;
3109 /****************************************************************************
3110 UNIX getfacl.
3111 ****************************************************************************/
3113 static int cmd_getfacl(void)
3115 TALLOC_CTX *ctx = talloc_tos();
3116 char *src = NULL;
3117 char *name = NULL;
3118 char *targetname = NULL;
3119 struct cli_state *targetcli;
3120 uint16 major, minor;
3121 uint32 caplow, caphigh;
3122 char *retbuf = NULL;
3123 size_t rb_size = 0;
3124 SMB_STRUCT_STAT sbuf;
3125 uint16 num_file_acls = 0;
3126 uint16 num_dir_acls = 0;
3127 uint16 i;
3128 NTSTATUS status;
3130 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3131 d_printf("getfacl filename\n");
3132 return 1;
3134 src = talloc_asprintf(ctx,
3135 "%s%s",
3136 client_get_cur_dir(),
3137 name);
3138 if (!src) {
3139 return 1;
3142 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3143 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3144 return 1;
3147 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3148 d_printf("Server doesn't support UNIX CIFS calls.\n");
3149 return 1;
3152 status = cli_unix_extensions_version(targetcli, &major, &minor,
3153 &caplow, &caphigh);
3154 if (!NT_STATUS_IS_OK(status)) {
3155 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3156 nt_errstr(status));
3157 return 1;
3160 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3161 d_printf("This server supports UNIX extensions "
3162 "but doesn't support POSIX ACLs.\n");
3163 return 1;
3166 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3167 d_printf("%s getfacl doing a stat on file %s\n",
3168 cli_errstr(targetcli), src);
3169 return 1;
3172 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3173 d_printf("%s getfacl file %s\n",
3174 cli_errstr(targetcli), src);
3175 return 1;
3178 /* ToDo : Print out the ACL values. */
3179 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3180 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3181 src, (unsigned int)CVAL(retbuf,0) );
3182 return 1;
3185 num_file_acls = SVAL(retbuf,2);
3186 num_dir_acls = SVAL(retbuf,4);
3187 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3188 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3189 src,
3190 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3191 (unsigned int)rb_size);
3192 return 1;
3195 d_printf("# file: %s\n", src);
3196 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3198 if (num_file_acls == 0 && num_dir_acls == 0) {
3199 d_printf("No acls found.\n");
3202 for (i = 0; i < num_file_acls; i++) {
3203 uint32 uorg;
3204 fstring permstring;
3205 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3206 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3208 switch(tagtype) {
3209 case SMB_POSIX_ACL_USER_OBJ:
3210 d_printf("user::");
3211 break;
3212 case SMB_POSIX_ACL_USER:
3213 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3214 d_printf("user:%u:", uorg);
3215 break;
3216 case SMB_POSIX_ACL_GROUP_OBJ:
3217 d_printf("group::");
3218 break;
3219 case SMB_POSIX_ACL_GROUP:
3220 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3221 d_printf("group:%u:", uorg);
3222 break;
3223 case SMB_POSIX_ACL_MASK:
3224 d_printf("mask::");
3225 break;
3226 case SMB_POSIX_ACL_OTHER:
3227 d_printf("other::");
3228 break;
3229 default:
3230 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3231 src, (unsigned int)tagtype );
3232 SAFE_FREE(retbuf);
3233 return 1;
3236 d_printf("%s\n", perms_to_string(permstring, perms));
3239 for (i = 0; i < num_dir_acls; i++) {
3240 uint32 uorg;
3241 fstring permstring;
3242 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3243 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3245 switch(tagtype) {
3246 case SMB_POSIX_ACL_USER_OBJ:
3247 d_printf("default:user::");
3248 break;
3249 case SMB_POSIX_ACL_USER:
3250 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3251 d_printf("default:user:%u:", uorg);
3252 break;
3253 case SMB_POSIX_ACL_GROUP_OBJ:
3254 d_printf("default:group::");
3255 break;
3256 case SMB_POSIX_ACL_GROUP:
3257 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3258 d_printf("default:group:%u:", uorg);
3259 break;
3260 case SMB_POSIX_ACL_MASK:
3261 d_printf("default:mask::");
3262 break;
3263 case SMB_POSIX_ACL_OTHER:
3264 d_printf("default:other::");
3265 break;
3266 default:
3267 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3268 src, (unsigned int)tagtype );
3269 SAFE_FREE(retbuf);
3270 return 1;
3273 d_printf("%s\n", perms_to_string(permstring, perms));
3276 return 0;
3279 static void printf_cb(const char *buf, void *private_data)
3281 printf("%s", buf);
3284 /****************************************************************************
3285 Get the EA list of a file
3286 ****************************************************************************/
3288 static int cmd_geteas(void)
3290 TALLOC_CTX *ctx = talloc_tos();
3291 char *src = NULL;
3292 char *name = NULL;
3293 char *targetname = NULL;
3294 struct cli_state *targetcli;
3295 NTSTATUS status;
3296 size_t i, num_eas;
3297 struct ea_struct *eas;
3299 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3300 d_printf("geteas filename\n");
3301 return 1;
3303 src = talloc_asprintf(ctx,
3304 "%s%s",
3305 client_get_cur_dir(),
3306 name);
3307 if (!src) {
3308 return 1;
3311 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3312 &targetname)) {
3313 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3314 return 1;
3317 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3318 &num_eas, &eas);
3319 if (!NT_STATUS_IS_OK(status)) {
3320 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3321 return 1;
3324 for (i=0; i<num_eas; i++) {
3325 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3326 dump_data_cb(eas[i].value.data, eas[i].value.length, false,
3327 printf_cb, NULL);
3328 d_printf("\n");
3331 TALLOC_FREE(eas);
3333 return 0;
3336 /****************************************************************************
3337 Set an EA of a file
3338 ****************************************************************************/
3340 static int cmd_setea(void)
3342 TALLOC_CTX *ctx = talloc_tos();
3343 char *src = NULL;
3344 char *name = NULL;
3345 char *eaname = NULL;
3346 char *eavalue = NULL;
3347 char *targetname = NULL;
3348 struct cli_state *targetcli;
3350 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3351 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3352 d_printf("setea filename eaname value\n");
3353 return 1;
3355 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3356 eavalue = talloc_strdup(ctx, "");
3358 src = talloc_asprintf(ctx,
3359 "%s%s",
3360 client_get_cur_dir(),
3361 name);
3362 if (!src) {
3363 return 1;
3366 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3367 &targetname)) {
3368 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3369 return 1;
3372 if (!cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3373 strlen(eavalue))) {
3374 d_printf("set_ea %s: %s\n", src, cli_errstr(cli));
3375 return 1;
3378 return 0;
3381 /****************************************************************************
3382 UNIX stat.
3383 ****************************************************************************/
3385 static int cmd_stat(void)
3387 TALLOC_CTX *ctx = talloc_tos();
3388 char *src = NULL;
3389 char *name = NULL;
3390 char *targetname = NULL;
3391 struct cli_state *targetcli;
3392 fstring mode_str;
3393 SMB_STRUCT_STAT sbuf;
3394 struct tm *lt;
3395 time_t tmp_time;
3397 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3398 d_printf("stat file\n");
3399 return 1;
3401 src = talloc_asprintf(ctx,
3402 "%s%s",
3403 client_get_cur_dir(),
3404 name);
3405 if (!src) {
3406 return 1;
3409 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3410 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3411 return 1;
3414 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3415 d_printf("Server doesn't support UNIX CIFS calls.\n");
3416 return 1;
3419 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3420 d_printf("%s stat file %s\n",
3421 cli_errstr(targetcli), src);
3422 return 1;
3425 /* Print out the stat values. */
3426 d_printf("File: %s\n", src);
3427 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3428 (double)sbuf.st_ex_size,
3429 (unsigned int)sbuf.st_ex_blocks,
3430 filetype_to_str(sbuf.st_ex_mode));
3432 #if defined(S_ISCHR) && defined(S_ISBLK)
3433 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3434 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3435 (double)sbuf.st_ex_ino,
3436 (unsigned int)sbuf.st_ex_nlink,
3437 unix_dev_major(sbuf.st_ex_rdev),
3438 unix_dev_minor(sbuf.st_ex_rdev));
3439 } else
3440 #endif
3441 d_printf("Inode: %.0f\tLinks: %u\n",
3442 (double)sbuf.st_ex_ino,
3443 (unsigned int)sbuf.st_ex_nlink);
3445 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3446 ((int)sbuf.st_ex_mode & 0777),
3447 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3448 (unsigned int)sbuf.st_ex_uid,
3449 (unsigned int)sbuf.st_ex_gid);
3451 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3452 lt = localtime(&tmp_time);
3453 if (lt) {
3454 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3455 } else {
3456 fstrcpy(mode_str, "unknown");
3458 d_printf("Access: %s\n", mode_str);
3460 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3461 lt = localtime(&tmp_time);
3462 if (lt) {
3463 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3464 } else {
3465 fstrcpy(mode_str, "unknown");
3467 d_printf("Modify: %s\n", mode_str);
3469 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3470 lt = localtime(&tmp_time);
3471 if (lt) {
3472 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3473 } else {
3474 fstrcpy(mode_str, "unknown");
3476 d_printf("Change: %s\n", mode_str);
3478 return 0;
3482 /****************************************************************************
3483 UNIX chown.
3484 ****************************************************************************/
3486 static int cmd_chown(void)
3488 TALLOC_CTX *ctx = talloc_tos();
3489 char *src = NULL;
3490 uid_t uid;
3491 gid_t gid;
3492 char *buf, *buf2, *buf3;
3493 struct cli_state *targetcli;
3494 char *targetname = NULL;
3496 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3497 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3498 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3499 d_printf("chown uid gid file\n");
3500 return 1;
3503 uid = (uid_t)atoi(buf);
3504 gid = (gid_t)atoi(buf2);
3506 src = talloc_asprintf(ctx,
3507 "%s%s",
3508 client_get_cur_dir(),
3509 buf3);
3510 if (!src) {
3511 return 1;
3513 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3514 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3515 return 1;
3518 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3519 d_printf("Server doesn't support UNIX CIFS calls.\n");
3520 return 1;
3523 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3524 d_printf("%s chown file %s uid=%d, gid=%d\n",
3525 cli_errstr(targetcli), src, (int)uid, (int)gid);
3526 return 1;
3529 return 0;
3532 /****************************************************************************
3533 Rename some file.
3534 ****************************************************************************/
3536 static int cmd_rename(void)
3538 TALLOC_CTX *ctx = talloc_tos();
3539 char *src, *dest;
3540 char *buf, *buf2;
3541 struct cli_state *targetcli;
3542 char *targetsrc;
3543 char *targetdest;
3545 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3546 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3547 d_printf("rename <src> <dest>\n");
3548 return 1;
3551 src = talloc_asprintf(ctx,
3552 "%s%s",
3553 client_get_cur_dir(),
3554 buf);
3555 if (!src) {
3556 return 1;
3559 dest = talloc_asprintf(ctx,
3560 "%s%s",
3561 client_get_cur_dir(),
3562 buf2);
3563 if (!dest) {
3564 return 1;
3567 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3568 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3569 return 1;
3572 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3573 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3574 return 1;
3577 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3578 d_printf("%s renaming files %s -> %s \n",
3579 cli_errstr(targetcli),
3580 targetsrc,
3581 targetdest);
3582 return 1;
3585 return 0;
3588 /****************************************************************************
3589 Print the volume name.
3590 ****************************************************************************/
3592 static int cmd_volume(void)
3594 fstring volname;
3595 uint32 serial_num;
3596 time_t create_date;
3597 NTSTATUS status;
3599 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3600 &create_date);
3601 if (!NT_STATUS_IS_OK(status)) {
3602 d_printf("Error %s getting volume info\n", nt_errstr(status));
3603 return 1;
3606 d_printf("Volume: |%s| serial number 0x%x\n",
3607 volname, (unsigned int)serial_num);
3608 return 0;
3611 /****************************************************************************
3612 Hard link files using the NT call.
3613 ****************************************************************************/
3615 static int cmd_hardlink(void)
3617 TALLOC_CTX *ctx = talloc_tos();
3618 char *src, *dest;
3619 char *buf, *buf2;
3620 struct cli_state *targetcli;
3621 char *targetname;
3623 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3624 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3625 d_printf("hardlink <src> <dest>\n");
3626 return 1;
3629 src = talloc_asprintf(ctx,
3630 "%s%s",
3631 client_get_cur_dir(),
3632 buf);
3633 if (!src) {
3634 return 1;
3637 dest = talloc_asprintf(ctx,
3638 "%s%s",
3639 client_get_cur_dir(),
3640 buf2);
3641 if (!dest) {
3642 return 1;
3645 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3646 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3647 return 1;
3650 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3651 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3652 return 1;
3655 return 0;
3658 /****************************************************************************
3659 Toggle the prompt flag.
3660 ****************************************************************************/
3662 static int cmd_prompt(void)
3664 prompt = !prompt;
3665 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3666 return 1;
3669 /****************************************************************************
3670 Set the newer than time.
3671 ****************************************************************************/
3673 static int cmd_newer(void)
3675 TALLOC_CTX *ctx = talloc_tos();
3676 char *buf;
3677 bool ok;
3678 SMB_STRUCT_STAT sbuf;
3680 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3681 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3682 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3683 DEBUG(1,("Getting files newer than %s",
3684 time_to_asc(newer_than)));
3685 } else {
3686 newer_than = 0;
3689 if (ok && newer_than == 0) {
3690 d_printf("Error setting newer-than time\n");
3691 return 1;
3694 return 0;
3697 /****************************************************************************
3698 Set the archive level.
3699 ****************************************************************************/
3701 static int cmd_archive(void)
3703 TALLOC_CTX *ctx = talloc_tos();
3704 char *buf;
3706 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3707 archive_level = atoi(buf);
3708 } else {
3709 d_printf("Archive level is %d\n",archive_level);
3712 return 0;
3715 /****************************************************************************
3716 Toggle the lowercaseflag.
3717 ****************************************************************************/
3719 static int cmd_lowercase(void)
3721 lowercase = !lowercase;
3722 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3723 return 0;
3726 /****************************************************************************
3727 Toggle the case sensitive flag.
3728 ****************************************************************************/
3730 static int cmd_setcase(void)
3732 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3734 cli_set_case_sensitive(cli, !orig_case_sensitive);
3735 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3736 "on":"off"));
3737 return 0;
3740 /****************************************************************************
3741 Toggle the showacls flag.
3742 ****************************************************************************/
3744 static int cmd_showacls(void)
3746 showacls = !showacls;
3747 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3748 return 0;
3752 /****************************************************************************
3753 Toggle the recurse flag.
3754 ****************************************************************************/
3756 static int cmd_recurse(void)
3758 recurse = !recurse;
3759 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3760 return 0;
3763 /****************************************************************************
3764 Toggle the translate flag.
3765 ****************************************************************************/
3767 static int cmd_translate(void)
3769 translation = !translation;
3770 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3771 translation?"on":"off"));
3772 return 0;
3775 /****************************************************************************
3776 Do the lcd command.
3777 ****************************************************************************/
3779 static int cmd_lcd(void)
3781 TALLOC_CTX *ctx = talloc_tos();
3782 char *buf;
3783 char *d;
3785 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3786 if (chdir(buf) == -1) {
3787 d_printf("chdir to %s failed (%s)\n",
3788 buf, strerror(errno));
3791 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3792 if (!d) {
3793 return 1;
3795 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3796 return 0;
3799 /****************************************************************************
3800 Get a file restarting at end of local file.
3801 ****************************************************************************/
3803 static int cmd_reget(void)
3805 TALLOC_CTX *ctx = talloc_tos();
3806 char *local_name = NULL;
3807 char *remote_name = NULL;
3808 char *fname = NULL;
3809 char *p = NULL;
3811 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3812 if (!remote_name) {
3813 return 1;
3816 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3817 d_printf("reget <filename>\n");
3818 return 1;
3820 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3821 if (!remote_name) {
3822 return 1;
3824 remote_name = clean_name(ctx,remote_name);
3825 if (!remote_name) {
3826 return 1;
3829 local_name = fname;
3830 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3831 if (p) {
3832 local_name = p;
3835 return do_get(remote_name, local_name, true);
3838 /****************************************************************************
3839 Put a file restarting at end of local file.
3840 ****************************************************************************/
3842 static int cmd_reput(void)
3844 TALLOC_CTX *ctx = talloc_tos();
3845 char *local_name = NULL;
3846 char *remote_name = NULL;
3847 char *buf;
3848 SMB_STRUCT_STAT st;
3850 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3851 if (!remote_name) {
3852 return 1;
3855 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3856 d_printf("reput <filename>\n");
3857 return 1;
3860 if (!file_exist_stat(local_name, &st, false)) {
3861 d_printf("%s does not exist\n", local_name);
3862 return 1;
3865 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3866 remote_name = talloc_asprintf_append(remote_name,
3867 "%s", buf);
3868 } else {
3869 remote_name = talloc_asprintf_append(remote_name,
3870 "%s", local_name);
3872 if (!remote_name) {
3873 return 1;
3876 remote_name = clean_name(ctx, remote_name);
3877 if (!remote_name) {
3878 return 1;
3881 return do_put(remote_name, local_name, true);
3884 /****************************************************************************
3885 List a share name.
3886 ****************************************************************************/
3888 static void browse_fn(const char *name, uint32 m,
3889 const char *comment, void *state)
3891 const char *typestr = "";
3893 switch (m & 7) {
3894 case STYPE_DISKTREE:
3895 typestr = "Disk";
3896 break;
3897 case STYPE_PRINTQ:
3898 typestr = "Printer";
3899 break;
3900 case STYPE_DEVICE:
3901 typestr = "Device";
3902 break;
3903 case STYPE_IPC:
3904 typestr = "IPC";
3905 break;
3907 /* FIXME: If the remote machine returns non-ascii characters
3908 in any of these fields, they can corrupt the output. We
3909 should remove them. */
3910 if (!grepable) {
3911 d_printf("\t%-15s %-10.10s%s\n",
3912 name,typestr,comment);
3913 } else {
3914 d_printf ("%s|%s|%s\n",typestr,name,comment);
3918 static bool browse_host_rpc(bool sort)
3920 NTSTATUS status;
3921 struct rpc_pipe_client *pipe_hnd = NULL;
3922 TALLOC_CTX *frame = talloc_stackframe();
3923 WERROR werr;
3924 struct srvsvc_NetShareInfoCtr info_ctr;
3925 struct srvsvc_NetShareCtr1 ctr1;
3926 uint32_t resume_handle = 0;
3927 uint32_t total_entries = 0;
3928 int i;
3930 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3931 &pipe_hnd);
3933 if (!NT_STATUS_IS_OK(status)) {
3934 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3935 nt_errstr(status)));
3936 TALLOC_FREE(frame);
3937 return false;
3940 ZERO_STRUCT(info_ctr);
3941 ZERO_STRUCT(ctr1);
3943 info_ctr.level = 1;
3944 info_ctr.ctr.ctr1 = &ctr1;
3946 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3947 pipe_hnd->desthost,
3948 &info_ctr,
3949 0xffffffff,
3950 &total_entries,
3951 &resume_handle,
3952 &werr);
3954 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3955 TALLOC_FREE(pipe_hnd);
3956 TALLOC_FREE(frame);
3957 return false;
3960 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3961 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3962 browse_fn(info.name, info.type, info.comment, NULL);
3965 TALLOC_FREE(pipe_hnd);
3966 TALLOC_FREE(frame);
3967 return true;
3970 /****************************************************************************
3971 Try and browse available connections on a host.
3972 ****************************************************************************/
3974 static bool browse_host(bool sort)
3976 int ret;
3977 if (!grepable) {
3978 d_printf("\n\tSharename Type Comment\n");
3979 d_printf("\t--------- ---- -------\n");
3982 if (browse_host_rpc(sort)) {
3983 return true;
3986 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3987 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3989 return (ret != -1);
3992 /****************************************************************************
3993 List a server name.
3994 ****************************************************************************/
3996 static void server_fn(const char *name, uint32 m,
3997 const char *comment, void *state)
4000 if (!grepable){
4001 d_printf("\t%-16s %s\n", name, comment);
4002 } else {
4003 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4007 /****************************************************************************
4008 Try and browse available connections on a host.
4009 ****************************************************************************/
4011 static bool list_servers(const char *wk_grp)
4013 fstring state;
4015 if (!cli->server_domain)
4016 return false;
4018 if (!grepable) {
4019 d_printf("\n\tServer Comment\n");
4020 d_printf("\t--------- -------\n");
4022 fstrcpy( state, "Server" );
4023 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4024 state);
4026 if (!grepable) {
4027 d_printf("\n\tWorkgroup Master\n");
4028 d_printf("\t--------- -------\n");
4031 fstrcpy( state, "Workgroup" );
4032 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4033 server_fn, state);
4034 return true;
4037 /****************************************************************************
4038 Print or set current VUID
4039 ****************************************************************************/
4041 static int cmd_vuid(void)
4043 TALLOC_CTX *ctx = talloc_tos();
4044 char *buf;
4046 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4047 d_printf("Current VUID is %d\n", cli->vuid);
4048 return 0;
4051 cli->vuid = atoi(buf);
4052 return 0;
4055 /****************************************************************************
4056 Setup a new VUID, by issuing a session setup
4057 ****************************************************************************/
4059 static int cmd_logon(void)
4061 TALLOC_CTX *ctx = talloc_tos();
4062 char *l_username, *l_password;
4064 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4065 d_printf("logon <username> [<password>]\n");
4066 return 0;
4069 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4070 char *pass = getpass("Password: ");
4071 if (pass) {
4072 l_password = talloc_strdup(ctx,pass);
4075 if (!l_password) {
4076 return 1;
4079 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
4080 l_password, strlen(l_password),
4081 l_password, strlen(l_password),
4082 lp_workgroup()))) {
4083 d_printf("session setup failed: %s\n", cli_errstr(cli));
4084 return -1;
4087 d_printf("Current VUID is %d\n", cli->vuid);
4088 return 0;
4092 /****************************************************************************
4093 list active connections
4094 ****************************************************************************/
4096 static int cmd_list_connect(void)
4098 cli_cm_display(cli);
4099 return 0;
4102 /****************************************************************************
4103 display the current active client connection
4104 ****************************************************************************/
4106 static int cmd_show_connect( void )
4108 TALLOC_CTX *ctx = talloc_tos();
4109 struct cli_state *targetcli;
4110 char *targetpath;
4112 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
4113 &targetcli, &targetpath ) ) {
4114 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
4115 return 1;
4118 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
4119 return 0;
4122 /****************************************************************************
4123 iosize command
4124 ***************************************************************************/
4126 int cmd_iosize(void)
4128 TALLOC_CTX *ctx = talloc_tos();
4129 char *buf;
4130 int iosize;
4132 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4133 if (!smb_encrypt) {
4134 d_printf("iosize <n> or iosize 0x<n>. "
4135 "Minimum is 16384 (0x4000), "
4136 "max is 16776960 (0xFFFF00)\n");
4137 } else {
4138 d_printf("iosize <n> or iosize 0x<n>. "
4139 "(Encrypted connection) ,"
4140 "Minimum is 16384 (0x4000), "
4141 "max is 130048 (0x1FC00)\n");
4143 return 1;
4146 iosize = strtol(buf,NULL,0);
4147 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4148 d_printf("iosize out of range for encrypted "
4149 "connection (min = 16384 (0x4000), "
4150 "max = 130048 (0x1FC00)");
4151 return 1;
4152 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4153 d_printf("iosize out of range (min = 16384 (0x4000), "
4154 "max = 16776960 (0xFFFF00)");
4155 return 1;
4158 io_bufsize = iosize;
4159 d_printf("iosize is now %d\n", io_bufsize);
4160 return 0;
4163 /****************************************************************************
4164 history
4165 ****************************************************************************/
4166 static int cmd_history(void)
4168 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4169 HIST_ENTRY **hlist;
4170 int i;
4172 hlist = history_list();
4174 for (i = 0; hlist && hlist[i]; i++) {
4175 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4177 #else
4178 DEBUG(0,("no history without readline support\n"));
4179 #endif
4181 return 0;
4184 /* Some constants for completing filename arguments */
4186 #define COMPL_NONE 0 /* No completions */
4187 #define COMPL_REMOTE 1 /* Complete remote filename */
4188 #define COMPL_LOCAL 2 /* Complete local filename */
4190 /* This defines the commands supported by this client.
4191 * NOTE: The "!" must be the last one in the list because it's fn pointer
4192 * field is NULL, and NULL in that field is used in process_tok()
4193 * (below) to indicate the end of the list. crh
4195 static struct {
4196 const char *name;
4197 int (*fn)(void);
4198 const char *description;
4199 char compl_args[2]; /* Completion argument info */
4200 } commands[] = {
4201 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4202 {"allinfo",cmd_allinfo,"<file> show all available info",
4203 {COMPL_NONE,COMPL_NONE}},
4204 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4205 {"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}},
4206 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4207 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4208 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4209 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4210 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4211 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4212 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4213 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4214 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4215 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4216 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4217 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4218 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4219 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4220 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4221 {COMPL_REMOTE, COMPL_LOCAL}},
4222 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4223 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4224 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4225 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4226 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4227 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4228 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4229 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4230 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4231 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4232 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4233 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4234 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4235 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4236 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4237 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4238 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4239 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4240 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4241 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4242 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4243 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4244 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4245 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4246 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4247 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4248 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4249 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4250 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4251 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4252 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4253 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4254 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4255 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4256 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4257 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4258 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4259 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4260 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4261 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4262 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4263 {COMPL_REMOTE, COMPL_LOCAL}},
4264 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4265 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4266 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4267 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4268 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4269 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4270 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4271 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4272 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4273 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4274 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4275 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4276 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4277 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4279 /* Yes, this must be here, see crh's comment above. */
4280 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4281 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4284 /*******************************************************************
4285 Lookup a command string in the list of commands, including
4286 abbreviations.
4287 ******************************************************************/
4289 static int process_tok(char *tok)
4291 int i = 0, matches = 0;
4292 int cmd=0;
4293 int tok_len = strlen(tok);
4295 while (commands[i].fn != NULL) {
4296 if (strequal(commands[i].name,tok)) {
4297 matches = 1;
4298 cmd = i;
4299 break;
4300 } else if (strnequal(commands[i].name, tok, tok_len)) {
4301 matches++;
4302 cmd = i;
4304 i++;
4307 if (matches == 0)
4308 return(-1);
4309 else if (matches == 1)
4310 return(cmd);
4311 else
4312 return(-2);
4315 /****************************************************************************
4316 Help.
4317 ****************************************************************************/
4319 static int cmd_help(void)
4321 TALLOC_CTX *ctx = talloc_tos();
4322 int i=0,j;
4323 char *buf;
4325 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4326 if ((i = process_tok(buf)) >= 0)
4327 d_printf("HELP %s:\n\t%s\n\n",
4328 commands[i].name,commands[i].description);
4329 } else {
4330 while (commands[i].description) {
4331 for (j=0; commands[i].description && (j<5); j++) {
4332 d_printf("%-15s",commands[i].name);
4333 i++;
4335 d_printf("\n");
4338 return 0;
4341 /****************************************************************************
4342 Process a -c command string.
4343 ****************************************************************************/
4345 static int process_command_string(const char *cmd_in)
4347 TALLOC_CTX *ctx = talloc_tos();
4348 char *cmd = talloc_strdup(ctx, cmd_in);
4349 int rc = 0;
4351 if (!cmd) {
4352 return 1;
4354 /* establish the connection if not already */
4356 if (!cli) {
4357 cli = cli_cm_open(talloc_tos(), NULL,
4358 have_ip ? dest_ss_str : desthost,
4359 service, auth_info,
4360 true, smb_encrypt,
4361 max_protocol, port, name_type);
4362 if (!cli) {
4363 return 1;
4367 while (cmd[0] != '\0') {
4368 char *line;
4369 char *p;
4370 char *tok;
4371 int i;
4373 if ((p = strchr_m(cmd, ';')) == 0) {
4374 line = cmd;
4375 cmd += strlen(cmd);
4376 } else {
4377 *p = '\0';
4378 line = cmd;
4379 cmd = p + 1;
4382 /* and get the first part of the command */
4383 cmd_ptr = line;
4384 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4385 continue;
4388 if ((i = process_tok(tok)) >= 0) {
4389 rc = commands[i].fn();
4390 } else if (i == -2) {
4391 d_printf("%s: command abbreviation ambiguous\n",tok);
4392 } else {
4393 d_printf("%s: command not found\n",tok);
4397 return rc;
4400 #define MAX_COMPLETIONS 100
4402 struct completion_remote {
4403 char *dirmask;
4404 char **matches;
4405 int count, samelen;
4406 const char *text;
4407 int len;
4410 static NTSTATUS completion_remote_filter(const char *mnt,
4411 struct file_info *f,
4412 const char *mask,
4413 void *state)
4415 struct completion_remote *info = (struct completion_remote *)state;
4417 if (info->count >= MAX_COMPLETIONS - 1) {
4418 return NT_STATUS_OK;
4420 if (strncmp(info->text, f->name, info->len) != 0) {
4421 return NT_STATUS_OK;
4423 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4424 return NT_STATUS_OK;
4427 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4428 info->matches[info->count] = SMB_STRDUP(f->name);
4429 else {
4430 TALLOC_CTX *ctx = talloc_stackframe();
4431 char *tmp;
4433 tmp = talloc_strdup(ctx,info->dirmask);
4434 if (!tmp) {
4435 TALLOC_FREE(ctx);
4436 return NT_STATUS_NO_MEMORY;
4438 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4439 if (!tmp) {
4440 TALLOC_FREE(ctx);
4441 return NT_STATUS_NO_MEMORY;
4443 if (f->mode & aDIR) {
4444 tmp = talloc_asprintf_append(tmp, "%s",
4445 CLI_DIRSEP_STR);
4447 if (!tmp) {
4448 TALLOC_FREE(ctx);
4449 return NT_STATUS_NO_MEMORY;
4451 info->matches[info->count] = SMB_STRDUP(tmp);
4452 TALLOC_FREE(ctx);
4454 if (info->matches[info->count] == NULL) {
4455 return NT_STATUS_OK;
4457 if (f->mode & aDIR) {
4458 smb_readline_ca_char(0);
4460 if (info->count == 1) {
4461 info->samelen = strlen(info->matches[info->count]);
4462 } else {
4463 while (strncmp(info->matches[info->count],
4464 info->matches[info->count-1],
4465 info->samelen) != 0) {
4466 info->samelen--;
4469 info->count++;
4470 return NT_STATUS_OK;
4473 static char **remote_completion(const char *text, int len)
4475 TALLOC_CTX *ctx = talloc_stackframe();
4476 char *dirmask = NULL;
4477 char *targetpath = NULL;
4478 struct cli_state *targetcli = NULL;
4479 int i;
4480 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4481 NTSTATUS status;
4483 /* can't have non-static initialisation on Sun CC, so do it
4484 at run time here */
4485 info.samelen = len;
4486 info.text = text;
4487 info.len = len;
4489 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4490 if (!info.matches) {
4491 TALLOC_FREE(ctx);
4492 return NULL;
4496 * We're leaving matches[0] free to fill it later with the text to
4497 * display: Either the one single match or the longest common subset
4498 * of the matches.
4500 info.matches[0] = NULL;
4501 info.count = 1;
4503 for (i = len-1; i >= 0; i--) {
4504 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4505 break;
4509 info.text = text+i+1;
4510 info.samelen = info.len = len-i-1;
4512 if (i > 0) {
4513 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4514 if (!info.dirmask) {
4515 goto cleanup;
4517 strncpy(info.dirmask, text, i+1);
4518 info.dirmask[i+1] = 0;
4519 dirmask = talloc_asprintf(ctx,
4520 "%s%*s*",
4521 client_get_cur_dir(),
4522 i-1,
4523 text);
4524 } else {
4525 info.dirmask = SMB_STRDUP("");
4526 if (!info.dirmask) {
4527 goto cleanup;
4529 dirmask = talloc_asprintf(ctx,
4530 "%s*",
4531 client_get_cur_dir());
4533 if (!dirmask) {
4534 goto cleanup;
4537 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4538 goto cleanup;
4540 status = cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4541 completion_remote_filter, (void *)&info);
4542 if (!NT_STATUS_IS_OK(status)) {
4543 goto cleanup;
4546 if (info.count == 1) {
4548 * No matches at all, NULL indicates there is nothing
4550 SAFE_FREE(info.matches[0]);
4551 SAFE_FREE(info.matches);
4552 TALLOC_FREE(ctx);
4553 return NULL;
4556 if (info.count == 2) {
4558 * Exactly one match in matches[1], indicate this is the one
4559 * in matches[0].
4561 info.matches[0] = info.matches[1];
4562 info.matches[1] = NULL;
4563 info.count -= 1;
4564 TALLOC_FREE(ctx);
4565 return info.matches;
4569 * We got more than one possible match, set the result to the maximum
4570 * common subset
4573 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4574 info.matches[info.count] = NULL;
4575 return info.matches;
4577 cleanup:
4578 for (i = 0; i < info.count; i++) {
4579 SAFE_FREE(info.matches[i]);
4581 SAFE_FREE(info.matches);
4582 SAFE_FREE(info.dirmask);
4583 TALLOC_FREE(ctx);
4584 return NULL;
4587 static char **completion_fn(const char *text, int start, int end)
4589 smb_readline_ca_char(' ');
4591 if (start) {
4592 const char *buf, *sp;
4593 int i;
4594 char compl_type;
4596 buf = smb_readline_get_line_buffer();
4597 if (buf == NULL)
4598 return NULL;
4600 sp = strchr(buf, ' ');
4601 if (sp == NULL)
4602 return NULL;
4604 for (i = 0; commands[i].name; i++) {
4605 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4606 (commands[i].name[sp - buf] == 0)) {
4607 break;
4610 if (commands[i].name == NULL)
4611 return NULL;
4613 while (*sp == ' ')
4614 sp++;
4616 if (sp == (buf + start))
4617 compl_type = commands[i].compl_args[0];
4618 else
4619 compl_type = commands[i].compl_args[1];
4621 if (compl_type == COMPL_REMOTE)
4622 return remote_completion(text, end - start);
4623 else /* fall back to local filename completion */
4624 return NULL;
4625 } else {
4626 char **matches;
4627 int i, len, samelen = 0, count=1;
4629 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4630 if (!matches) {
4631 return NULL;
4633 matches[0] = NULL;
4635 len = strlen(text);
4636 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4637 if (strncmp(text, commands[i].name, len) == 0) {
4638 matches[count] = SMB_STRDUP(commands[i].name);
4639 if (!matches[count])
4640 goto cleanup;
4641 if (count == 1)
4642 samelen = strlen(matches[count]);
4643 else
4644 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4645 samelen--;
4646 count++;
4650 switch (count) {
4651 case 0: /* should never happen */
4652 case 1:
4653 goto cleanup;
4654 case 2:
4655 matches[0] = SMB_STRDUP(matches[1]);
4656 break;
4657 default:
4658 matches[0] = (char *)SMB_MALLOC(samelen+1);
4659 if (!matches[0])
4660 goto cleanup;
4661 strncpy(matches[0], matches[1], samelen);
4662 matches[0][samelen] = 0;
4664 matches[count] = NULL;
4665 return matches;
4667 cleanup:
4668 for (i = 0; i < count; i++)
4669 free(matches[i]);
4671 free(matches);
4672 return NULL;
4676 static bool finished;
4678 /****************************************************************************
4679 Make sure we swallow keepalives during idle time.
4680 ****************************************************************************/
4682 static void readline_callback(void)
4684 fd_set fds;
4685 struct timeval timeout;
4686 static time_t last_t;
4687 struct timespec now;
4688 time_t t;
4690 clock_gettime_mono(&now);
4691 t = now.tv_sec;
4693 if (t - last_t < 5)
4694 return;
4696 last_t = t;
4698 again:
4700 if (cli->fd == -1)
4701 return;
4703 FD_ZERO(&fds);
4704 FD_SET(cli->fd,&fds);
4706 timeout.tv_sec = 0;
4707 timeout.tv_usec = 0;
4708 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4710 /* We deliberately use receive_smb_raw instead of
4711 client_receive_smb as we want to receive
4712 session keepalives and then drop them here.
4714 if (FD_ISSET(cli->fd,&fds)) {
4715 NTSTATUS status;
4716 size_t len;
4718 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4720 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4722 if (!NT_STATUS_IS_OK(status)) {
4723 DEBUG(0, ("Read from server failed, maybe it closed "
4724 "the connection\n"));
4726 finished = true;
4727 smb_readline_done();
4728 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4729 set_smb_read_error(&cli->smb_rw_error,
4730 SMB_READ_EOF);
4731 return;
4734 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4735 set_smb_read_error(&cli->smb_rw_error,
4736 SMB_READ_TIMEOUT);
4737 return;
4740 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4741 return;
4743 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4744 DEBUG(0, ("Read from server "
4745 "returned unexpected packet!\n"));
4746 return;
4749 goto again;
4752 /* Ping the server to keep the connection alive using SMBecho. */
4754 NTSTATUS status;
4755 unsigned char garbage[16];
4756 memset(garbage, 0xf0, sizeof(garbage));
4757 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4759 if (!NT_STATUS_IS_OK(status)) {
4760 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4761 "the connection\n"));
4762 finished = true;
4763 smb_readline_done();
4768 /****************************************************************************
4769 Process commands on stdin.
4770 ****************************************************************************/
4772 static int process_stdin(void)
4774 int rc = 0;
4776 while (!finished) {
4777 TALLOC_CTX *frame = talloc_stackframe();
4778 char *tok = NULL;
4779 char *the_prompt = NULL;
4780 char *line = NULL;
4781 int i;
4783 /* display a prompt */
4784 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4785 TALLOC_FREE(frame);
4786 break;
4788 line = smb_readline(the_prompt, readline_callback, completion_fn);
4789 SAFE_FREE(the_prompt);
4790 if (!line) {
4791 TALLOC_FREE(frame);
4792 break;
4795 /* special case - first char is ! */
4796 if (*line == '!') {
4797 if (system(line + 1) == -1) {
4798 d_printf("system() command %s failed.\n",
4799 line+1);
4801 SAFE_FREE(line);
4802 TALLOC_FREE(frame);
4803 continue;
4806 /* and get the first part of the command */
4807 cmd_ptr = line;
4808 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4809 TALLOC_FREE(frame);
4810 SAFE_FREE(line);
4811 continue;
4814 if ((i = process_tok(tok)) >= 0) {
4815 rc = commands[i].fn();
4816 } else if (i == -2) {
4817 d_printf("%s: command abbreviation ambiguous\n",tok);
4818 } else {
4819 d_printf("%s: command not found\n",tok);
4821 SAFE_FREE(line);
4822 TALLOC_FREE(frame);
4824 return rc;
4827 /****************************************************************************
4828 Process commands from the client.
4829 ****************************************************************************/
4831 static int process(const char *base_directory)
4833 int rc = 0;
4835 cli = cli_cm_open(talloc_tos(), NULL,
4836 have_ip ? dest_ss_str : desthost,
4837 service, auth_info, true, smb_encrypt,
4838 max_protocol, port, name_type);
4839 if (!cli) {
4840 return 1;
4843 if (base_directory && *base_directory) {
4844 rc = do_cd(base_directory);
4845 if (rc) {
4846 cli_shutdown(cli);
4847 return rc;
4851 if (cmdstr) {
4852 rc = process_command_string(cmdstr);
4853 } else {
4854 process_stdin();
4857 cli_shutdown(cli);
4858 return rc;
4861 /****************************************************************************
4862 Handle a -L query.
4863 ****************************************************************************/
4865 static int do_host_query(const char *query_host)
4867 cli = cli_cm_open(talloc_tos(), NULL,
4868 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4869 max_protocol, port, name_type);
4870 if (!cli)
4871 return 1;
4873 browse_host(true);
4875 /* Ensure that the host can do IPv4 */
4877 if (!interpret_addr(query_host)) {
4878 struct sockaddr_storage ss;
4879 if (interpret_string_addr(&ss, query_host, 0) &&
4880 (ss.ss_family != AF_INET)) {
4881 d_printf("%s is an IPv6 address -- no workgroup available\n",
4882 query_host);
4883 return 1;
4887 if (port != 139) {
4889 /* Workgroups simply don't make sense over anything
4890 else but port 139... */
4892 cli_shutdown(cli);
4893 cli = cli_cm_open(talloc_tos(), NULL,
4894 have_ip ? dest_ss_str : query_host, "IPC$",
4895 auth_info, true, smb_encrypt,
4896 max_protocol, 139, name_type);
4899 if (cli == NULL) {
4900 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4901 return 1;
4904 list_servers(lp_workgroup());
4906 cli_shutdown(cli);
4908 return(0);
4911 /****************************************************************************
4912 Handle a tar operation.
4913 ****************************************************************************/
4915 static int do_tar_op(const char *base_directory)
4917 int ret;
4919 /* do we already have a connection? */
4920 if (!cli) {
4921 cli = cli_cm_open(talloc_tos(), NULL,
4922 have_ip ? dest_ss_str : desthost,
4923 service, auth_info, true, smb_encrypt,
4924 max_protocol, port, name_type);
4925 if (!cli)
4926 return 1;
4929 recurse=true;
4931 if (base_directory && *base_directory) {
4932 ret = do_cd(base_directory);
4933 if (ret) {
4934 cli_shutdown(cli);
4935 return ret;
4939 ret=process_tar();
4941 cli_shutdown(cli);
4943 return(ret);
4946 /****************************************************************************
4947 Handle a message operation.
4948 ****************************************************************************/
4950 static int do_message_op(struct user_auth_info *a_info)
4952 struct sockaddr_storage ss;
4953 struct nmb_name called, calling;
4954 fstring server_name;
4955 char name_type_hex[10];
4956 int msg_port;
4957 NTSTATUS status;
4959 make_nmb_name(&calling, calling_name, 0x0);
4960 make_nmb_name(&called , desthost, name_type);
4962 fstrcpy(server_name, desthost);
4963 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4964 fstrcat(server_name, name_type_hex);
4966 zero_sockaddr(&ss);
4967 if (have_ip)
4968 ss = dest_ss;
4970 /* we can only do messages over port 139 (to windows clients at least) */
4972 msg_port = port ? port : 139;
4974 if (!(cli=cli_initialise())) {
4975 d_printf("Connection to %s failed\n", desthost);
4976 return 1;
4978 cli_set_port(cli, msg_port);
4980 status = cli_connect(cli, server_name, &ss);
4981 if (!NT_STATUS_IS_OK(status)) {
4982 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4983 return 1;
4986 if (!cli_session_request(cli, &calling, &called)) {
4987 d_printf("session request failed\n");
4988 cli_shutdown(cli);
4989 return 1;
4992 send_message(get_cmdline_auth_info_username(a_info));
4993 cli_shutdown(cli);
4995 return 0;
4998 /****************************************************************************
4999 main program
5000 ****************************************************************************/
5002 int main(int argc,char *argv[])
5004 char *base_directory = NULL;
5005 int opt;
5006 char *query_host = NULL;
5007 bool message = false;
5008 static const char *new_name_resolve_order = NULL;
5009 poptContext pc;
5010 char *p;
5011 int rc = 0;
5012 fstring new_workgroup;
5013 bool tar_opt = false;
5014 bool service_opt = false;
5015 struct poptOption long_options[] = {
5016 POPT_AUTOHELP
5018 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5019 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5020 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5021 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5022 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5023 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5024 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5025 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5026 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5027 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5028 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5029 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5030 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5031 POPT_COMMON_SAMBA
5032 POPT_COMMON_CONNECTION
5033 POPT_COMMON_CREDENTIALS
5034 POPT_TABLEEND
5036 TALLOC_CTX *frame = talloc_stackframe();
5038 if (!client_set_cur_dir("\\")) {
5039 exit(ENOMEM);
5042 /* initialize the workgroup name so we can determine whether or
5043 not it was set by a command line option */
5045 set_global_myworkgroup( "" );
5046 set_global_myname( "" );
5048 /* set default debug level to 1 regardless of what smb.conf sets */
5049 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5050 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
5052 load_case_tables();
5054 auth_info = user_auth_info_init(frame);
5055 if (auth_info == NULL) {
5056 exit(1);
5058 popt_common_set_auth_info(auth_info);
5060 /* skip argv(0) */
5061 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5062 poptSetOtherOptionHelp(pc, "service <password>");
5064 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5066 while ((opt = poptGetNextOpt(pc)) != -1) {
5068 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5069 /* I see no other way to keep things sane --SSS */
5070 if (tar_opt == true) {
5071 while (poptPeekArg(pc)) {
5072 poptGetArg(pc);
5074 tar_opt = false;
5077 /* if the service has not yet been specified lets see if it is available in the popt stack */
5078 if (!service_opt && poptPeekArg(pc)) {
5079 service = talloc_strdup(frame, poptGetArg(pc));
5080 if (!service) {
5081 exit(ENOMEM);
5083 service_opt = true;
5086 /* if the service has already been retrieved then check if we have also a password */
5087 if (service_opt
5088 && (!get_cmdline_auth_info_got_pass(auth_info))
5089 && poptPeekArg(pc)) {
5090 set_cmdline_auth_info_password(auth_info,
5091 poptGetArg(pc));
5094 switch (opt) {
5095 case 'M':
5096 /* Messages are sent to NetBIOS name type 0x3
5097 * (Messenger Service). Make sure we default
5098 * to port 139 instead of port 445. srl,crh
5100 name_type = 0x03;
5101 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5102 if (!desthost) {
5103 exit(ENOMEM);
5105 if( !port )
5106 port = 139;
5107 message = true;
5108 break;
5109 case 'I':
5111 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5112 exit(1);
5114 have_ip = true;
5115 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5117 break;
5118 case 'E':
5119 setup_logging("smbclient", DEBUG_STDERR );
5120 display_set_stderr();
5121 break;
5123 case 'L':
5124 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5125 if (!query_host) {
5126 exit(ENOMEM);
5128 break;
5129 case 'm':
5130 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5131 break;
5132 case 'T':
5133 /* We must use old option processing for this. Find the
5134 * position of the -T option in the raw argv[]. */
5136 int i;
5137 for (i = 1; i < argc; i++) {
5138 if (strncmp("-T", argv[i],2)==0)
5139 break;
5141 i++;
5142 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5143 poptPrintUsage(pc, stderr, 0);
5144 exit(1);
5147 /* this must be the last option, mark we have parsed it so that we know we have */
5148 tar_opt = true;
5149 break;
5150 case 'D':
5151 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5152 if (!base_directory) {
5153 exit(ENOMEM);
5155 break;
5156 case 'g':
5157 grepable=true;
5158 break;
5159 case 'e':
5160 smb_encrypt=true;
5161 break;
5162 case 'B':
5163 return(do_smb_browse());
5168 /* We may still have some leftovers after the last popt option has been called */
5169 if (tar_opt == true) {
5170 while (poptPeekArg(pc)) {
5171 poptGetArg(pc);
5173 tar_opt = false;
5176 /* if the service has not yet been specified lets see if it is available in the popt stack */
5177 if (!service_opt && poptPeekArg(pc)) {
5178 service = talloc_strdup(frame,poptGetArg(pc));
5179 if (!service) {
5180 exit(ENOMEM);
5182 service_opt = true;
5185 /* if the service has already been retrieved then check if we have also a password */
5186 if (service_opt
5187 && !get_cmdline_auth_info_got_pass(auth_info)
5188 && poptPeekArg(pc)) {
5189 set_cmdline_auth_info_password(auth_info,
5190 poptGetArg(pc));
5194 * Don't load debug level from smb.conf. It should be
5195 * set by cmdline arg or remain default (0)
5197 AllowDebugChange = false;
5199 /* save the workgroup...
5201 FIXME!! do we need to do this for other options as well
5202 (or maybe a generic way to keep lp_load() from overwriting
5203 everything)? */
5205 fstrcpy( new_workgroup, lp_workgroup() );
5206 calling_name = talloc_strdup(frame, global_myname() );
5207 if (!calling_name) {
5208 exit(ENOMEM);
5211 if ( override_logfile )
5212 setup_logging( lp_logfile(), DEBUG_FILE );
5214 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5215 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5216 argv[0], get_dyn_CONFIGFILE());
5219 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5220 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5221 exit(-1);
5224 load_interfaces();
5226 if (service_opt && service) {
5227 size_t len;
5229 /* Convert any '/' characters in the service name to '\' characters */
5230 string_replace(service, '/','\\');
5231 if (count_chars(service,'\\') < 3) {
5232 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5233 poptPrintUsage(pc, stderr, 0);
5234 exit(1);
5236 /* Remove trailing slashes */
5237 len = strlen(service);
5238 while(len > 0 && service[len - 1] == '\\') {
5239 --len;
5240 service[len] = '\0';
5244 if ( strlen(new_workgroup) != 0 ) {
5245 set_global_myworkgroup( new_workgroup );
5248 if ( strlen(calling_name) != 0 ) {
5249 set_global_myname( calling_name );
5250 } else {
5251 TALLOC_FREE(calling_name);
5252 calling_name = talloc_strdup(frame, global_myname() );
5255 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5256 if (!init_names()) {
5257 fprintf(stderr, "init_names() failed\n");
5258 exit(1);
5261 if(new_name_resolve_order)
5262 lp_set_name_resolve_order(new_name_resolve_order);
5264 if (!tar_type && !query_host && !service && !message) {
5265 poptPrintUsage(pc, stderr, 0);
5266 exit(1);
5269 poptFreeContext(pc);
5271 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5273 /* Ensure we have a password (or equivalent). */
5274 set_cmdline_auth_info_getpass(auth_info);
5276 if (tar_type) {
5277 if (cmdstr)
5278 process_command_string(cmdstr);
5279 return do_tar_op(base_directory);
5282 if (query_host && *query_host) {
5283 char *qhost = query_host;
5284 char *slash;
5286 while (*qhost == '\\' || *qhost == '/')
5287 qhost++;
5289 if ((slash = strchr_m(qhost, '/'))
5290 || (slash = strchr_m(qhost, '\\'))) {
5291 *slash = 0;
5294 if ((p=strchr_m(qhost, '#'))) {
5295 *p = 0;
5296 p++;
5297 sscanf(p, "%x", &name_type);
5300 return do_host_query(qhost);
5303 if (message) {
5304 return do_message_op(auth_info);
5307 if (process(base_directory)) {
5308 return 1;
5311 TALLOC_FREE(frame);
5312 return rc;