s3: fix order of arguments in nsec_time_diff call
[Samba.git] / source3 / client / client.c
blob2731c0356eb10918b637e1ac1130d38a003d839f
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"
29 #ifndef REGISTER
30 #define REGISTER 0
31 #endif
33 extern int do_smb_browse(void); /* mDNS browsing */
35 extern bool AllowDebugChange;
36 extern bool override_logfile;
37 extern char tar_type;
39 static int port = 0;
40 static char *service;
41 static char *desthost;
42 static char *calling_name;
43 static bool grepable = false;
44 static char *cmdstr = NULL;
45 const char *cmd_ptr = NULL;
47 static int io_bufsize = 524288;
49 static int name_type = 0x20;
50 static int max_protocol = PROTOCOL_NT1;
52 static int process_tok(char *tok);
53 static int cmd_help(void);
55 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
57 /* 30 second timeout on most commands */
58 #define CLIENT_TIMEOUT (30*1000)
59 #define SHORT_TIMEOUT (5*1000)
61 /* value for unused fid field in trans2 secondary request */
62 #define FID_UNUSED (0xFFFF)
64 time_t newer_than = 0;
65 static int archive_level = 0;
67 static bool translation = false;
68 static bool have_ip;
70 /* clitar bits insert */
71 extern int blocksize;
72 extern bool tar_inc;
73 extern bool tar_reset;
74 /* clitar bits end */
76 static bool prompt = true;
78 static bool recurse = false;
79 static bool showacls = false;
80 bool lowercase = false;
82 static struct sockaddr_storage dest_ss;
83 static char dest_ss_str[INET6_ADDRSTRLEN];
85 #define SEPARATORS " \t\n\r"
87 static bool abort_mget = true;
89 /* timing globals */
90 uint64_t get_total_size = 0;
91 unsigned int get_total_time_ms = 0;
92 static uint64_t put_total_size = 0;
93 static unsigned int put_total_time_ms = 0;
95 /* totals globals */
96 static double dir_total;
98 /* encrypted state. */
99 static bool smb_encrypt;
101 /* root cli_state connection */
103 struct cli_state *cli;
105 static char CLI_DIRSEP_CHAR = '\\';
106 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
108 /* Authentication for client connections. */
109 struct user_auth_info *auth_info;
111 /* Accessor functions for directory paths. */
112 static char *fileselection;
113 static const char *client_get_fileselection(void)
115 if (fileselection) {
116 return fileselection;
118 return "";
121 static const char *client_set_fileselection(const char *new_fs)
123 SAFE_FREE(fileselection);
124 if (new_fs) {
125 fileselection = SMB_STRDUP(new_fs);
127 return client_get_fileselection();
130 static char *cwd;
131 static const char *client_get_cwd(void)
133 if (cwd) {
134 return cwd;
136 return CLI_DIRSEP_STR;
139 static const char *client_set_cwd(const char *new_cwd)
141 SAFE_FREE(cwd);
142 if (new_cwd) {
143 cwd = SMB_STRDUP(new_cwd);
145 return client_get_cwd();
148 static char *cur_dir;
149 const char *client_get_cur_dir(void)
151 if (cur_dir) {
152 return cur_dir;
154 return CLI_DIRSEP_STR;
157 const char *client_set_cur_dir(const char *newdir)
159 SAFE_FREE(cur_dir);
160 if (newdir) {
161 cur_dir = SMB_STRDUP(newdir);
163 return client_get_cur_dir();
166 /****************************************************************************
167 Put up a yes/no prompt.
168 ****************************************************************************/
170 static bool yesno(const char *p)
172 char ans[20];
173 printf("%s",p);
175 if (!fgets(ans,sizeof(ans)-1,stdin))
176 return(False);
178 if (*ans == 'y' || *ans == 'Y')
179 return(True);
181 return(False);
184 /****************************************************************************
185 Write to a local file with CR/LF->LF translation if appropriate. Return the
186 number taken from the buffer. This may not equal the number written.
187 ****************************************************************************/
189 static int writefile(int f, char *b, int n)
191 int i;
193 if (!translation) {
194 return write(f,b,n);
197 i = 0;
198 while (i < n) {
199 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
200 b++;i++;
202 if (write(f, b, 1) != 1) {
203 break;
205 b++;
206 i++;
209 return(i);
212 /****************************************************************************
213 Read from a file with LF->CR/LF translation if appropriate. Return the
214 number read. read approx n bytes.
215 ****************************************************************************/
217 static int readfile(uint8_t *b, int n, XFILE *f)
219 int i;
220 int c;
222 if (!translation)
223 return x_fread(b,1,n,f);
225 i = 0;
226 while (i < (n - 1) && (i < BUFFER_SIZE)) {
227 if ((c = x_getc(f)) == EOF) {
228 break;
231 if (c == '\n') { /* change all LFs to CR/LF */
232 b[i++] = '\r';
235 b[i++] = c;
238 return(i);
241 struct push_state {
242 XFILE *f;
243 SMB_OFF_T nread;
246 static size_t push_source(uint8_t *buf, size_t n, void *priv)
248 struct push_state *state = (struct push_state *)priv;
249 int result;
251 if (x_feof(state->f)) {
252 return 0;
255 result = readfile(buf, n, state->f);
256 state->nread += result;
257 return result;
260 /****************************************************************************
261 Send a message.
262 ****************************************************************************/
264 static void send_message(const char *username)
266 char buf[1600];
267 NTSTATUS status;
268 int i;
270 d_printf("Type your message, ending it with a Control-D\n");
272 i = 0;
273 while (i<sizeof(buf)-2) {
274 int c = fgetc(stdin);
275 if (c == EOF) {
276 break;
278 if (c == '\n') {
279 buf[i++] = '\r';
281 buf[i++] = c;
283 buf[i] = '\0';
285 status = cli_message(cli, desthost, username, buf);
286 if (!NT_STATUS_IS_OK(status)) {
287 d_fprintf(stderr, "cli_message returned %s\n",
288 nt_errstr(status));
292 /****************************************************************************
293 Check the space on a device.
294 ****************************************************************************/
296 static int do_dskattr(void)
298 int total, bsize, avail;
299 struct cli_state *targetcli = NULL;
300 char *targetpath = NULL;
301 TALLOC_CTX *ctx = talloc_tos();
303 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
304 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
305 return 1;
308 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
309 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
310 return 1;
313 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
314 total, bsize, avail);
316 return 0;
319 /****************************************************************************
320 Show cd/pwd.
321 ****************************************************************************/
323 static int cmd_pwd(void)
325 d_printf("Current directory is %s",service);
326 d_printf("%s\n",client_get_cur_dir());
327 return 0;
330 /****************************************************************************
331 Ensure name has correct directory separators.
332 ****************************************************************************/
334 static void normalize_name(char *newdir)
336 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
337 string_replace(newdir,'/','\\');
341 /****************************************************************************
342 Change directory - inner section.
343 ****************************************************************************/
345 static int do_cd(const char *new_dir)
347 char *newdir = NULL;
348 char *saved_dir = NULL;
349 char *new_cd = NULL;
350 char *targetpath = NULL;
351 struct cli_state *targetcli = NULL;
352 SMB_STRUCT_STAT sbuf;
353 uint32 attributes;
354 int ret = 1;
355 TALLOC_CTX *ctx = talloc_stackframe();
357 newdir = talloc_strdup(ctx, new_dir);
358 if (!newdir) {
359 TALLOC_FREE(ctx);
360 return 1;
363 normalize_name(newdir);
365 /* Save the current directory in case the new directory is invalid */
367 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
368 if (!saved_dir) {
369 TALLOC_FREE(ctx);
370 return 1;
373 if (*newdir == CLI_DIRSEP_CHAR) {
374 client_set_cur_dir(newdir);
375 new_cd = newdir;
376 } else {
377 new_cd = talloc_asprintf(ctx, "%s%s",
378 client_get_cur_dir(),
379 newdir);
380 if (!new_cd) {
381 goto out;
385 /* Ensure cur_dir ends in a DIRSEP */
386 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
387 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
388 if (!new_cd) {
389 goto out;
392 client_set_cur_dir(new_cd);
394 new_cd = clean_name(ctx, new_cd);
395 client_set_cur_dir(new_cd);
397 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
398 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
399 client_set_cur_dir(saved_dir);
400 goto out;
403 if (strequal(targetpath,CLI_DIRSEP_STR )) {
404 TALLOC_FREE(ctx);
405 return 0;
408 /* Use a trans2_qpathinfo to test directories for modern servers.
409 Except Win9x doesn't support the qpathinfo_basic() call..... */
411 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
412 NTSTATUS status;
414 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
415 &attributes);
416 if (!NT_STATUS_IS_OK(status)) {
417 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
418 client_set_cur_dir(saved_dir);
419 goto out;
422 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
423 d_printf("cd %s: not a directory\n", new_cd);
424 client_set_cur_dir(saved_dir);
425 goto out;
427 } else {
428 targetpath = talloc_asprintf(ctx,
429 "%s%s",
430 targetpath,
431 CLI_DIRSEP_STR );
432 if (!targetpath) {
433 client_set_cur_dir(saved_dir);
434 goto out;
436 targetpath = clean_name(ctx, targetpath);
437 if (!targetpath) {
438 client_set_cur_dir(saved_dir);
439 goto out;
442 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
443 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
444 client_set_cur_dir(saved_dir);
445 goto out;
449 ret = 0;
451 out:
453 TALLOC_FREE(ctx);
454 return ret;
457 /****************************************************************************
458 Change directory.
459 ****************************************************************************/
461 static int cmd_cd(void)
463 char *buf = NULL;
464 int rc = 0;
466 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
467 rc = do_cd(buf);
468 } else {
469 d_printf("Current directory is %s\n",client_get_cur_dir());
472 return rc;
475 /****************************************************************************
476 Change directory.
477 ****************************************************************************/
479 static int cmd_cd_oneup(void)
481 return do_cd("..");
484 /*******************************************************************
485 Decide if a file should be operated on.
486 ********************************************************************/
488 static bool do_this_one(struct file_info *finfo)
490 if (!finfo->name) {
491 return false;
494 if (finfo->mode & aDIR) {
495 return true;
498 if (*client_get_fileselection() &&
499 !mask_match(finfo->name,client_get_fileselection(),false)) {
500 DEBUG(3,("mask_match %s failed\n", finfo->name));
501 return false;
504 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
505 DEBUG(3,("newer_than %s failed\n", finfo->name));
506 return false;
509 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
510 DEBUG(3,("archive %s failed\n", finfo->name));
511 return false;
514 return true;
517 /****************************************************************************
518 Display info about a file.
519 ****************************************************************************/
521 static void display_finfo(struct cli_state *cli_state, struct file_info *finfo,
522 const char *dir)
524 time_t t;
525 TALLOC_CTX *ctx = talloc_tos();
527 if (!do_this_one(finfo)) {
528 return;
531 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
532 if (!showacls) {
533 d_printf(" %-30s%7.7s %8.0f %s",
534 finfo->name,
535 attrib_string(finfo->mode),
536 (double)finfo->size,
537 time_to_asc(t));
538 dir_total += finfo->size;
539 } else {
540 char *afname = NULL;
541 uint16_t fnum;
543 /* skip if this is . or .. */
544 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
545 return;
546 /* create absolute filename for cli_ntcreate() FIXME */
547 afname = talloc_asprintf(ctx,
548 "%s%s%s",
549 dir,
550 CLI_DIRSEP_STR,
551 finfo->name);
552 if (!afname) {
553 return;
555 /* print file meta date header */
556 d_printf( "FILENAME:%s\n", finfo->name);
557 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
558 d_printf( "SIZE:%.0f\n", (double)finfo->size);
559 d_printf( "MTIME:%s", time_to_asc(t));
560 if (!NT_STATUS_IS_OK(cli_ntcreate(cli_state, afname, 0,
561 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
562 FILE_OPEN, 0x0, 0x0, &fnum))) {
563 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
564 afname,
565 cli_errstr(cli_state)));
566 } else {
567 struct security_descriptor *sd = NULL;
568 sd = cli_query_secdesc(cli_state, fnum, ctx);
569 if (!sd) {
570 DEBUG( 0, ("display_finfo() failed to "
571 "get security descriptor: %s",
572 cli_errstr(cli_state)));
573 } else {
574 display_sec_desc(sd);
576 TALLOC_FREE(sd);
578 TALLOC_FREE(afname);
582 /****************************************************************************
583 Accumulate size of a file.
584 ****************************************************************************/
586 static void do_du(struct cli_state *cli_state, struct file_info *finfo,
587 const char *dir)
589 if (do_this_one(finfo)) {
590 dir_total += finfo->size;
594 static bool do_list_recurse;
595 static bool do_list_dirs;
596 static char *do_list_queue = 0;
597 static long do_list_queue_size = 0;
598 static long do_list_queue_start = 0;
599 static long do_list_queue_end = 0;
600 static void (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
601 const char *dir);
603 /****************************************************************************
604 Functions for do_list_queue.
605 ****************************************************************************/
608 * The do_list_queue is a NUL-separated list of strings stored in a
609 * char*. Since this is a FIFO, we keep track of the beginning and
610 * ending locations of the data in the queue. When we overflow, we
611 * double the size of the char*. When the start of the data passes
612 * the midpoint, we move everything back. This is logically more
613 * complex than a linked list, but easier from a memory management
614 * angle. In any memory error condition, do_list_queue is reset.
615 * Functions check to ensure that do_list_queue is non-NULL before
616 * accessing it.
619 static void reset_do_list_queue(void)
621 SAFE_FREE(do_list_queue);
622 do_list_queue_size = 0;
623 do_list_queue_start = 0;
624 do_list_queue_end = 0;
627 static void init_do_list_queue(void)
629 reset_do_list_queue();
630 do_list_queue_size = 1024;
631 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
632 if (do_list_queue == 0) {
633 d_printf("malloc fail for size %d\n",
634 (int)do_list_queue_size);
635 reset_do_list_queue();
636 } else {
637 memset(do_list_queue, 0, do_list_queue_size);
641 static void adjust_do_list_queue(void)
644 * If the starting point of the queue is more than half way through,
645 * move everything toward the beginning.
648 if (do_list_queue == NULL) {
649 DEBUG(4,("do_list_queue is empty\n"));
650 do_list_queue_start = do_list_queue_end = 0;
651 return;
654 if (do_list_queue_start == do_list_queue_end) {
655 DEBUG(4,("do_list_queue is empty\n"));
656 do_list_queue_start = do_list_queue_end = 0;
657 *do_list_queue = '\0';
658 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
659 DEBUG(4,("sliding do_list_queue backward\n"));
660 memmove(do_list_queue,
661 do_list_queue + do_list_queue_start,
662 do_list_queue_end - do_list_queue_start);
663 do_list_queue_end -= do_list_queue_start;
664 do_list_queue_start = 0;
668 static void add_to_do_list_queue(const char *entry)
670 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
671 while (new_end > do_list_queue_size) {
672 do_list_queue_size *= 2;
673 DEBUG(4,("enlarging do_list_queue to %d\n",
674 (int)do_list_queue_size));
675 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
676 if (! do_list_queue) {
677 d_printf("failure enlarging do_list_queue to %d bytes\n",
678 (int)do_list_queue_size);
679 reset_do_list_queue();
680 } else {
681 memset(do_list_queue + do_list_queue_size / 2,
682 0, do_list_queue_size / 2);
685 if (do_list_queue) {
686 safe_strcpy_base(do_list_queue + do_list_queue_end,
687 entry, do_list_queue, do_list_queue_size);
688 do_list_queue_end = new_end;
689 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
690 entry, (int)do_list_queue_start, (int)do_list_queue_end));
694 static char *do_list_queue_head(void)
696 return do_list_queue + do_list_queue_start;
699 static void remove_do_list_queue_head(void)
701 if (do_list_queue_end > do_list_queue_start) {
702 do_list_queue_start += strlen(do_list_queue_head()) + 1;
703 adjust_do_list_queue();
704 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
705 (int)do_list_queue_start, (int)do_list_queue_end));
709 static int do_list_queue_empty(void)
711 return (! (do_list_queue && *do_list_queue));
714 /****************************************************************************
715 A helper for do_list.
716 ****************************************************************************/
718 static void do_list_helper(const char *mntpoint, struct file_info *f,
719 const char *mask, void *state)
721 struct cli_state *cli_state = (struct cli_state *)state;
722 TALLOC_CTX *ctx = talloc_tos();
723 char *dir = NULL;
724 char *dir_end = NULL;
726 /* Work out the directory. */
727 dir = talloc_strdup(ctx, mask);
728 if (!dir) {
729 return;
731 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
732 *dir_end = '\0';
735 if (f->mode & aDIR) {
736 if (do_list_dirs && do_this_one(f)) {
737 do_list_fn(cli_state, f, dir);
739 if (do_list_recurse &&
740 f->name &&
741 !strequal(f->name,".") &&
742 !strequal(f->name,"..")) {
743 char *mask2 = NULL;
744 char *p = NULL;
746 if (!f->name[0]) {
747 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
748 TALLOC_FREE(dir);
749 return;
752 mask2 = talloc_asprintf(ctx,
753 "%s%s",
754 mntpoint,
755 mask);
756 if (!mask2) {
757 TALLOC_FREE(dir);
758 return;
760 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
761 if (p) {
762 p[1] = 0;
763 } else {
764 mask2[0] = '\0';
766 mask2 = talloc_asprintf_append(mask2,
767 "%s%s*",
768 f->name,
769 CLI_DIRSEP_STR);
770 if (!mask2) {
771 TALLOC_FREE(dir);
772 return;
774 add_to_do_list_queue(mask2);
775 TALLOC_FREE(mask2);
777 TALLOC_FREE(dir);
778 return;
781 if (do_this_one(f)) {
782 do_list_fn(cli_state, f, dir);
784 TALLOC_FREE(dir);
787 /****************************************************************************
788 A wrapper around cli_list that adds recursion.
789 ****************************************************************************/
791 void do_list(const char *mask,
792 uint16 attribute,
793 void (*fn)(struct cli_state *cli_state, struct file_info *,
794 const char *dir),
795 bool rec,
796 bool dirs)
798 static int in_do_list = 0;
799 TALLOC_CTX *ctx = talloc_tos();
800 struct cli_state *targetcli = NULL;
801 char *targetpath = NULL;
803 if (in_do_list && rec) {
804 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
805 exit(1);
808 in_do_list = 1;
810 do_list_recurse = rec;
811 do_list_dirs = dirs;
812 do_list_fn = fn;
814 if (rec) {
815 init_do_list_queue();
816 add_to_do_list_queue(mask);
818 while (!do_list_queue_empty()) {
820 * Need to copy head so that it doesn't become
821 * invalid inside the call to cli_list. This
822 * would happen if the list were expanded
823 * during the call.
824 * Fix from E. Jay Berkenbilt (ejb@ql.org)
826 char *head = talloc_strdup(ctx, do_list_queue_head());
828 if (!head) {
829 return;
832 /* check for dfs */
834 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
835 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
836 remove_do_list_queue_head();
837 continue;
840 cli_list(targetcli, targetpath, attribute,
841 do_list_helper, targetcli);
842 remove_do_list_queue_head();
843 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
844 char *next_file = do_list_queue_head();
845 char *save_ch = 0;
846 if ((strlen(next_file) >= 2) &&
847 (next_file[strlen(next_file) - 1] == '*') &&
848 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
849 save_ch = next_file +
850 strlen(next_file) - 2;
851 *save_ch = '\0';
852 if (showacls) {
853 /* cwd is only used if showacls is on */
854 client_set_cwd(next_file);
857 if (!showacls) /* don't disturbe the showacls output */
858 d_printf("\n%s\n",next_file);
859 if (save_ch) {
860 *save_ch = CLI_DIRSEP_CHAR;
863 TALLOC_FREE(head);
864 TALLOC_FREE(targetpath);
866 } else {
867 /* check for dfs */
868 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
869 if (cli_list(targetcli, targetpath, attribute,
870 do_list_helper, targetcli) == -1) {
871 d_printf("%s listing %s\n",
872 cli_errstr(targetcli), targetpath);
874 TALLOC_FREE(targetpath);
875 } else {
876 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
880 in_do_list = 0;
881 reset_do_list_queue();
884 /****************************************************************************
885 Get a directory listing.
886 ****************************************************************************/
888 static int cmd_dir(void)
890 TALLOC_CTX *ctx = talloc_tos();
891 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
892 char *mask = NULL;
893 char *buf = NULL;
894 int rc = 1;
896 dir_total = 0;
897 mask = talloc_strdup(ctx, client_get_cur_dir());
898 if (!mask) {
899 return 1;
902 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
903 normalize_name(buf);
904 if (*buf == CLI_DIRSEP_CHAR) {
905 mask = talloc_strdup(ctx, buf);
906 } else {
907 mask = talloc_asprintf_append(mask, "%s", buf);
909 } else {
910 mask = talloc_asprintf_append(mask, "*");
912 if (!mask) {
913 return 1;
916 if (showacls) {
917 /* cwd is only used if showacls is on */
918 client_set_cwd(client_get_cur_dir());
921 do_list(mask, attribute, display_finfo, recurse, true);
923 rc = do_dskattr();
925 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
927 return rc;
930 /****************************************************************************
931 Get a directory listing.
932 ****************************************************************************/
934 static int cmd_du(void)
936 TALLOC_CTX *ctx = talloc_tos();
937 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
938 char *mask = NULL;
939 char *buf = NULL;
940 int rc = 1;
942 dir_total = 0;
943 mask = talloc_strdup(ctx, client_get_cur_dir());
944 if (!mask) {
945 return 1;
947 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
948 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
949 if (!mask) {
950 return 1;
954 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
955 normalize_name(buf);
956 if (*buf == CLI_DIRSEP_CHAR) {
957 mask = talloc_strdup(ctx, buf);
958 } else {
959 mask = talloc_asprintf_append(mask, "%s", buf);
961 } else {
962 mask = talloc_strdup(ctx, "*");
965 do_list(mask, attribute, do_du, recurse, true);
967 rc = do_dskattr();
969 d_printf("Total number of bytes: %.0f\n", dir_total);
971 return rc;
974 static int cmd_echo(void)
976 TALLOC_CTX *ctx = talloc_tos();
977 char *num;
978 char *data;
979 NTSTATUS status;
981 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
982 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
983 d_printf("echo <num> <data>\n");
984 return 1;
987 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
989 if (!NT_STATUS_IS_OK(status)) {
990 d_printf("echo failed: %s\n", nt_errstr(status));
991 return 1;
994 return 0;
997 /****************************************************************************
998 Get a file from rname to lname
999 ****************************************************************************/
1001 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1003 int *pfd = (int *)priv;
1004 if (writefile(*pfd, buf, n) == -1) {
1005 return map_nt_error_from_unix(errno);
1007 return NT_STATUS_OK;
1010 static int do_get(const char *rname, const char *lname_in, bool reget)
1012 TALLOC_CTX *ctx = talloc_tos();
1013 int handle = 0;
1014 uint16_t fnum;
1015 bool newhandle = false;
1016 struct timespec tp_start;
1017 uint16 attr;
1018 SMB_OFF_T size;
1019 off_t start = 0;
1020 SMB_OFF_T nread = 0;
1021 int rc = 0;
1022 struct cli_state *targetcli = NULL;
1023 char *targetname = NULL;
1024 char *lname = NULL;
1025 NTSTATUS status;
1027 lname = talloc_strdup(ctx, lname_in);
1028 if (!lname) {
1029 return 1;
1032 if (lowercase) {
1033 strlower_m(lname);
1036 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1037 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1038 return 1;
1041 clock_gettime_mono(&tp_start);
1043 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1044 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1045 return 1;
1048 if(!strcmp(lname,"-")) {
1049 handle = fileno(stdout);
1050 } else {
1051 if (reget) {
1052 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1053 if (handle >= 0) {
1054 start = sys_lseek(handle, 0, SEEK_END);
1055 if (start == -1) {
1056 d_printf("Error seeking local file\n");
1057 return 1;
1060 } else {
1061 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1063 newhandle = true;
1065 if (handle < 0) {
1066 d_printf("Error opening local file %s\n",lname);
1067 return 1;
1071 if (!cli_qfileinfo(targetcli, fnum,
1072 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1073 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1074 &attr, &size, NULL, NULL, NULL))) {
1075 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1076 return 1;
1079 DEBUG(1,("getting file %s of size %.0f as %s ",
1080 rname, (double)size, lname));
1082 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1083 writefile_sink, (void *)&handle, &nread);
1084 if (!NT_STATUS_IS_OK(status)) {
1085 d_fprintf(stderr, "parallel_read returned %s\n",
1086 nt_errstr(status));
1087 cli_close(targetcli, fnum);
1088 return 1;
1091 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1092 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1093 rc = 1;
1096 if (newhandle) {
1097 close(handle);
1100 if (archive_level >= 2 && (attr & aARCH)) {
1101 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1105 struct timespec tp_end;
1106 int this_time;
1108 clock_gettime_mono(&tp_end);
1109 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1110 get_total_time_ms += this_time;
1111 get_total_size += nread;
1113 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1114 nread / (1.024*this_time + 1.0e-4),
1115 get_total_size / (1.024*get_total_time_ms)));
1118 TALLOC_FREE(targetname);
1119 return rc;
1122 /****************************************************************************
1123 Get a file.
1124 ****************************************************************************/
1126 static int cmd_get(void)
1128 TALLOC_CTX *ctx = talloc_tos();
1129 char *lname = NULL;
1130 char *rname = NULL;
1131 char *fname = NULL;
1133 rname = talloc_strdup(ctx, client_get_cur_dir());
1134 if (!rname) {
1135 return 1;
1138 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1139 d_printf("get <filename> [localname]\n");
1140 return 1;
1142 rname = talloc_asprintf_append(rname, "%s", fname);
1143 if (!rname) {
1144 return 1;
1146 rname = clean_name(ctx, rname);
1147 if (!rname) {
1148 return 1;
1151 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1152 if (!lname) {
1153 lname = fname;
1156 return do_get(rname, lname, false);
1159 /****************************************************************************
1160 Do an mget operation on one file.
1161 ****************************************************************************/
1163 static void do_mget(struct cli_state *cli_state, struct file_info *finfo,
1164 const char *dir)
1166 TALLOC_CTX *ctx = talloc_tos();
1167 char *rname = NULL;
1168 char *quest = NULL;
1169 char *saved_curdir = NULL;
1170 char *mget_mask = NULL;
1171 char *new_cd = NULL;
1173 if (!finfo->name) {
1174 return;
1177 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1178 return;
1180 if (abort_mget) {
1181 d_printf("mget aborted\n");
1182 return;
1185 if (finfo->mode & aDIR) {
1186 if (asprintf(&quest,
1187 "Get directory %s? ",finfo->name) < 0) {
1188 return;
1190 } else {
1191 if (asprintf(&quest,
1192 "Get file %s? ",finfo->name) < 0) {
1193 return;
1197 if (prompt && !yesno(quest)) {
1198 SAFE_FREE(quest);
1199 return;
1201 SAFE_FREE(quest);
1203 if (!(finfo->mode & aDIR)) {
1204 rname = talloc_asprintf(ctx,
1205 "%s%s",
1206 client_get_cur_dir(),
1207 finfo->name);
1208 if (!rname) {
1209 return;
1211 do_get(rname, finfo->name, false);
1212 TALLOC_FREE(rname);
1213 return;
1216 /* handle directories */
1217 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1218 if (!saved_curdir) {
1219 return;
1222 new_cd = talloc_asprintf(ctx,
1223 "%s%s%s",
1224 client_get_cur_dir(),
1225 finfo->name,
1226 CLI_DIRSEP_STR);
1227 if (!new_cd) {
1228 return;
1230 client_set_cur_dir(new_cd);
1232 string_replace(finfo->name,'\\','/');
1233 if (lowercase) {
1234 strlower_m(finfo->name);
1237 if (!directory_exist(finfo->name) &&
1238 mkdir(finfo->name,0777) != 0) {
1239 d_printf("failed to create directory %s\n",finfo->name);
1240 client_set_cur_dir(saved_curdir);
1241 return;
1244 if (chdir(finfo->name) != 0) {
1245 d_printf("failed to chdir to directory %s\n",finfo->name);
1246 client_set_cur_dir(saved_curdir);
1247 return;
1250 mget_mask = talloc_asprintf(ctx,
1251 "%s*",
1252 client_get_cur_dir());
1254 if (!mget_mask) {
1255 return;
1258 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1259 if (chdir("..") == -1) {
1260 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1261 strerror(errno) );
1263 client_set_cur_dir(saved_curdir);
1264 TALLOC_FREE(mget_mask);
1265 TALLOC_FREE(saved_curdir);
1266 TALLOC_FREE(new_cd);
1269 /****************************************************************************
1270 View the file using the pager.
1271 ****************************************************************************/
1273 static int cmd_more(void)
1275 TALLOC_CTX *ctx = talloc_tos();
1276 char *rname = NULL;
1277 char *fname = NULL;
1278 char *lname = NULL;
1279 char *pager_cmd = NULL;
1280 const char *pager;
1281 int fd;
1282 int rc = 0;
1284 rname = talloc_strdup(ctx, client_get_cur_dir());
1285 if (!rname) {
1286 return 1;
1289 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1290 if (!lname) {
1291 return 1;
1293 fd = mkstemp(lname);
1294 if (fd == -1) {
1295 d_printf("failed to create temporary file for more\n");
1296 return 1;
1298 close(fd);
1300 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1301 d_printf("more <filename>\n");
1302 unlink(lname);
1303 return 1;
1305 rname = talloc_asprintf_append(rname, "%s", fname);
1306 if (!rname) {
1307 return 1;
1309 rname = clean_name(ctx,rname);
1310 if (!rname) {
1311 return 1;
1314 rc = do_get(rname, lname, false);
1316 pager=getenv("PAGER");
1318 pager_cmd = talloc_asprintf(ctx,
1319 "%s %s",
1320 (pager? pager:PAGER),
1321 lname);
1322 if (!pager_cmd) {
1323 return 1;
1325 if (system(pager_cmd) == -1) {
1326 d_printf("system command '%s' returned -1\n",
1327 pager_cmd);
1329 unlink(lname);
1331 return rc;
1334 /****************************************************************************
1335 Do a mget command.
1336 ****************************************************************************/
1338 static int cmd_mget(void)
1340 TALLOC_CTX *ctx = talloc_tos();
1341 uint16 attribute = aSYSTEM | aHIDDEN;
1342 char *mget_mask = NULL;
1343 char *buf = NULL;
1345 if (recurse) {
1346 attribute |= aDIR;
1349 abort_mget = false;
1351 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1352 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1353 if (!mget_mask) {
1354 return 1;
1356 if (*buf == CLI_DIRSEP_CHAR) {
1357 mget_mask = talloc_strdup(ctx, buf);
1358 } else {
1359 mget_mask = talloc_asprintf_append(mget_mask,
1360 "%s", buf);
1362 if (!mget_mask) {
1363 return 1;
1365 do_list(mget_mask, attribute, do_mget, false, true);
1368 if (mget_mask == NULL) {
1369 d_printf("nothing to mget\n");
1370 return 0;
1373 if (!*mget_mask) {
1374 mget_mask = talloc_asprintf(ctx,
1375 "%s*",
1376 client_get_cur_dir());
1377 if (!mget_mask) {
1378 return 1;
1380 do_list(mget_mask, attribute, do_mget, false, true);
1383 return 0;
1386 /****************************************************************************
1387 Make a directory of name "name".
1388 ****************************************************************************/
1390 static bool do_mkdir(const char *name)
1392 TALLOC_CTX *ctx = talloc_tos();
1393 struct cli_state *targetcli;
1394 char *targetname = NULL;
1396 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1397 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1398 return false;
1401 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1402 d_printf("%s making remote directory %s\n",
1403 cli_errstr(targetcli),name);
1404 return false;
1407 return true;
1410 /****************************************************************************
1411 Show 8.3 name of a file.
1412 ****************************************************************************/
1414 static bool do_altname(const char *name)
1416 fstring altname;
1418 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1419 d_printf("%s getting alt name for %s\n",
1420 cli_errstr(cli),name);
1421 return false;
1423 d_printf("%s\n", altname);
1425 return true;
1428 /****************************************************************************
1429 Exit client.
1430 ****************************************************************************/
1432 static int cmd_quit(void)
1434 cli_shutdown(cli);
1435 exit(0);
1436 /* NOTREACHED */
1437 return 0;
1440 /****************************************************************************
1441 Make a directory.
1442 ****************************************************************************/
1444 static int cmd_mkdir(void)
1446 TALLOC_CTX *ctx = talloc_tos();
1447 char *mask = NULL;
1448 char *buf = NULL;
1450 mask = talloc_strdup(ctx, client_get_cur_dir());
1451 if (!mask) {
1452 return 1;
1455 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1456 if (!recurse) {
1457 d_printf("mkdir <dirname>\n");
1459 return 1;
1461 mask = talloc_asprintf_append(mask, "%s", buf);
1462 if (!mask) {
1463 return 1;
1466 if (recurse) {
1467 char *ddir = NULL;
1468 char *ddir2 = NULL;
1469 struct cli_state *targetcli;
1470 char *targetname = NULL;
1471 char *p = NULL;
1472 char *saveptr;
1474 ddir2 = talloc_strdup(ctx, "");
1475 if (!ddir2) {
1476 return 1;
1479 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1480 return 1;
1483 ddir = talloc_strdup(ctx, targetname);
1484 if (!ddir) {
1485 return 1;
1487 trim_char(ddir,'.','\0');
1488 p = strtok_r(ddir, "/\\", &saveptr);
1489 while (p) {
1490 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1491 if (!ddir2) {
1492 return 1;
1494 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1495 do_mkdir(ddir2);
1497 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1498 if (!ddir2) {
1499 return 1;
1501 p = strtok_r(NULL, "/\\", &saveptr);
1503 } else {
1504 do_mkdir(mask);
1507 return 0;
1510 /****************************************************************************
1511 Show alt name.
1512 ****************************************************************************/
1514 static int cmd_altname(void)
1516 TALLOC_CTX *ctx = talloc_tos();
1517 char *name;
1518 char *buf;
1520 name = talloc_strdup(ctx, client_get_cur_dir());
1521 if (!name) {
1522 return 1;
1525 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1526 d_printf("altname <file>\n");
1527 return 1;
1529 name = talloc_asprintf_append(name, "%s", buf);
1530 if (!name) {
1531 return 1;
1533 do_altname(name);
1534 return 0;
1537 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1539 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1540 int i = 0;
1542 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1543 if (mode & FILE_ATTRIBUTE_READONLY) {
1544 attrs[i++] = 'R';
1546 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1547 attrs[i++] = 'H';
1549 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1550 attrs[i++] = 'S';
1552 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1553 attrs[i++] = 'D';
1555 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1556 attrs[i++] = 'A';
1559 return attrs;
1562 /****************************************************************************
1563 Show all info we can get
1564 ****************************************************************************/
1566 static int do_allinfo(const char *name)
1568 fstring altname;
1569 struct timespec b_time, a_time, m_time, c_time;
1570 SMB_OFF_T size;
1571 uint16_t mode;
1572 SMB_INO_T ino;
1573 NTTIME tmp;
1574 unsigned int num_streams;
1575 struct stream_struct *streams;
1576 unsigned int i;
1577 NTSTATUS status;
1579 status = cli_qpathinfo_alt_name(cli, name, altname);
1580 if (!NT_STATUS_IS_OK(status)) {
1581 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1582 name);
1583 return false;
1585 d_printf("altname: %s\n", altname);
1587 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1588 &size, &mode, &ino);
1589 if (!NT_STATUS_IS_OK(status)) {
1590 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1591 name);
1592 return false;
1595 unix_timespec_to_nt_time(&tmp, b_time);
1596 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1598 unix_timespec_to_nt_time(&tmp, a_time);
1599 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1601 unix_timespec_to_nt_time(&tmp, m_time);
1602 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1604 unix_timespec_to_nt_time(&tmp, c_time);
1605 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1607 d_printf("attributes: %s\n", attr_str(talloc_tos(), mode));
1609 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1610 &streams);
1611 if (!NT_STATUS_IS_OK(status)) {
1612 d_printf("%s getting streams for %s\n", nt_errstr(status),
1613 name);
1614 return false;
1617 for (i=0; i<num_streams; i++) {
1618 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1619 (unsigned long long)streams[i].size);
1622 return 0;
1625 /****************************************************************************
1626 Show all info we can get
1627 ****************************************************************************/
1629 static int cmd_allinfo(void)
1631 TALLOC_CTX *ctx = talloc_tos();
1632 char *name;
1633 char *buf;
1635 name = talloc_strdup(ctx, client_get_cur_dir());
1636 if (!name) {
1637 return 1;
1640 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1641 d_printf("allinfo <file>\n");
1642 return 1;
1644 name = talloc_asprintf_append(name, "%s", buf);
1645 if (!name) {
1646 return 1;
1649 do_allinfo(name);
1651 return 0;
1654 /****************************************************************************
1655 Put a single file.
1656 ****************************************************************************/
1658 static int do_put(const char *rname, const char *lname, bool reput)
1660 TALLOC_CTX *ctx = talloc_tos();
1661 uint16_t fnum;
1662 XFILE *f;
1663 SMB_OFF_T start = 0;
1664 int rc = 0;
1665 struct timespec tp_start;
1666 struct cli_state *targetcli;
1667 char *targetname = NULL;
1668 struct push_state state;
1669 NTSTATUS status;
1671 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1672 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1673 return 1;
1676 clock_gettime_mono(&tp_start);
1678 if (reput) {
1679 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1680 if (NT_STATUS_IS_OK(status)) {
1681 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1682 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1683 d_printf("getattrib: %s\n",cli_errstr(cli));
1684 return 1;
1687 } else {
1688 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1691 if (!NT_STATUS_IS_OK(status)) {
1692 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1693 return 1;
1696 /* allow files to be piped into smbclient
1697 jdblair 24.jun.98
1699 Note that in this case this function will exit(0) rather
1700 than returning. */
1701 if (!strcmp(lname, "-")) {
1702 f = x_stdin;
1703 /* size of file is not known */
1704 } else {
1705 f = x_fopen(lname,O_RDONLY, 0);
1706 if (f && reput) {
1707 if (x_tseek(f, start, SEEK_SET) == -1) {
1708 d_printf("Error seeking local file\n");
1709 x_fclose(f);
1710 return 1;
1715 if (!f) {
1716 d_printf("Error opening local file %s\n",lname);
1717 return 1;
1720 DEBUG(1,("putting file %s as %s ",lname,
1721 rname));
1723 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1725 state.f = f;
1726 state.nread = 0;
1728 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1729 &state);
1730 if (!NT_STATUS_IS_OK(status)) {
1731 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1732 rc = 1;
1735 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1736 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1737 if (f != x_stdin) {
1738 x_fclose(f);
1740 return 1;
1743 if (f != x_stdin) {
1744 x_fclose(f);
1748 struct timespec tp_end;
1749 int this_time;
1751 clock_gettime_mono(&tp_end);
1752 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1753 put_total_time_ms += this_time;
1754 put_total_size += state.nread;
1756 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1757 state.nread / (1.024*this_time + 1.0e-4),
1758 put_total_size / (1.024*put_total_time_ms)));
1761 if (f == x_stdin) {
1762 cli_shutdown(cli);
1763 exit(0);
1766 return rc;
1769 /****************************************************************************
1770 Put a file.
1771 ****************************************************************************/
1773 static int cmd_put(void)
1775 TALLOC_CTX *ctx = talloc_tos();
1776 char *lname;
1777 char *rname;
1778 char *buf;
1780 rname = talloc_strdup(ctx, client_get_cur_dir());
1781 if (!rname) {
1782 return 1;
1785 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1786 d_printf("put <filename>\n");
1787 return 1;
1790 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1791 rname = talloc_asprintf_append(rname, "%s", buf);
1792 } else {
1793 rname = talloc_asprintf_append(rname, "%s", lname);
1795 if (!rname) {
1796 return 1;
1799 rname = clean_name(ctx, rname);
1800 if (!rname) {
1801 return 1;
1805 SMB_STRUCT_STAT st;
1806 /* allow '-' to represent stdin
1807 jdblair, 24.jun.98 */
1808 if (!file_exist_stat(lname, &st, false) &&
1809 (strcmp(lname,"-"))) {
1810 d_printf("%s does not exist\n",lname);
1811 return 1;
1815 return do_put(rname, lname, false);
1818 /*************************************
1819 File list structure.
1820 *************************************/
1822 static struct file_list {
1823 struct file_list *prev, *next;
1824 char *file_path;
1825 bool isdir;
1826 } *file_list;
1828 /****************************************************************************
1829 Free a file_list structure.
1830 ****************************************************************************/
1832 static void free_file_list (struct file_list *l_head)
1834 struct file_list *list, *next;
1836 for (list = l_head; list; list = next) {
1837 next = list->next;
1838 DLIST_REMOVE(l_head, list);
1839 SAFE_FREE(list->file_path);
1840 SAFE_FREE(list);
1844 /****************************************************************************
1845 Seek in a directory/file list until you get something that doesn't start with
1846 the specified name.
1847 ****************************************************************************/
1849 static bool seek_list(struct file_list *list, char *name)
1851 while (list) {
1852 trim_string(list->file_path,"./","\n");
1853 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1854 return true;
1856 list = list->next;
1859 return false;
1862 /****************************************************************************
1863 Set the file selection mask.
1864 ****************************************************************************/
1866 static int cmd_select(void)
1868 TALLOC_CTX *ctx = talloc_tos();
1869 char *new_fs = NULL;
1870 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1872 if (new_fs) {
1873 client_set_fileselection(new_fs);
1874 } else {
1875 client_set_fileselection("");
1877 return 0;
1880 /****************************************************************************
1881 Recursive file matching function act as find
1882 match must be always set to true when calling this function
1883 ****************************************************************************/
1885 static int file_find(struct file_list **list, const char *directory,
1886 const char *expression, bool match)
1888 SMB_STRUCT_DIR *dir;
1889 struct file_list *entry;
1890 struct stat statbuf;
1891 int ret;
1892 char *path;
1893 bool isdir;
1894 const char *dname;
1896 dir = sys_opendir(directory);
1897 if (!dir)
1898 return -1;
1900 while ((dname = readdirname(dir))) {
1901 if (!strcmp("..", dname))
1902 continue;
1903 if (!strcmp(".", dname))
1904 continue;
1906 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1907 continue;
1910 isdir = false;
1911 if (!match || !gen_fnmatch(expression, dname)) {
1912 if (recurse) {
1913 ret = stat(path, &statbuf);
1914 if (ret == 0) {
1915 if (S_ISDIR(statbuf.st_mode)) {
1916 isdir = true;
1917 ret = file_find(list, path, expression, false);
1919 } else {
1920 d_printf("file_find: cannot stat file %s\n", path);
1923 if (ret == -1) {
1924 SAFE_FREE(path);
1925 sys_closedir(dir);
1926 return -1;
1929 entry = SMB_MALLOC_P(struct file_list);
1930 if (!entry) {
1931 d_printf("Out of memory in file_find\n");
1932 sys_closedir(dir);
1933 return -1;
1935 entry->file_path = path;
1936 entry->isdir = isdir;
1937 DLIST_ADD(*list, entry);
1938 } else {
1939 SAFE_FREE(path);
1943 sys_closedir(dir);
1944 return 0;
1947 /****************************************************************************
1948 mput some files.
1949 ****************************************************************************/
1951 static int cmd_mput(void)
1953 TALLOC_CTX *ctx = talloc_tos();
1954 char *p = NULL;
1956 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1957 int ret;
1958 struct file_list *temp_list;
1959 char *quest, *lname, *rname;
1961 file_list = NULL;
1963 ret = file_find(&file_list, ".", p, true);
1964 if (ret) {
1965 free_file_list(file_list);
1966 continue;
1969 quest = NULL;
1970 lname = NULL;
1971 rname = NULL;
1973 for (temp_list = file_list; temp_list;
1974 temp_list = temp_list->next) {
1976 SAFE_FREE(lname);
1977 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1978 continue;
1980 trim_string(lname, "./", "/");
1982 /* check if it's a directory */
1983 if (temp_list->isdir) {
1984 /* if (!recurse) continue; */
1986 SAFE_FREE(quest);
1987 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1988 break;
1990 if (prompt && !yesno(quest)) { /* No */
1991 /* Skip the directory */
1992 lname[strlen(lname)-1] = '/';
1993 if (!seek_list(temp_list, lname))
1994 break;
1995 } else { /* Yes */
1996 SAFE_FREE(rname);
1997 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1998 break;
2000 normalize_name(rname);
2001 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2002 !do_mkdir(rname)) {
2003 DEBUG (0, ("Unable to make dir, skipping..."));
2004 /* Skip the directory */
2005 lname[strlen(lname)-1] = '/';
2006 if (!seek_list(temp_list, lname)) {
2007 break;
2011 continue;
2012 } else {
2013 SAFE_FREE(quest);
2014 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2015 break;
2017 if (prompt && !yesno(quest)) {
2018 /* No */
2019 continue;
2022 /* Yes */
2023 SAFE_FREE(rname);
2024 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2025 break;
2029 normalize_name(rname);
2031 do_put(rname, lname, false);
2033 free_file_list(file_list);
2034 SAFE_FREE(quest);
2035 SAFE_FREE(lname);
2036 SAFE_FREE(rname);
2039 return 0;
2042 /****************************************************************************
2043 Cancel a print job.
2044 ****************************************************************************/
2046 static int do_cancel(int job)
2048 if (cli_printjob_del(cli, job)) {
2049 d_printf("Job %d cancelled\n",job);
2050 return 0;
2051 } else {
2052 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2053 return 1;
2057 /****************************************************************************
2058 Cancel a print job.
2059 ****************************************************************************/
2061 static int cmd_cancel(void)
2063 TALLOC_CTX *ctx = talloc_tos();
2064 char *buf = NULL;
2065 int job;
2067 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2068 d_printf("cancel <jobid> ...\n");
2069 return 1;
2071 do {
2072 job = atoi(buf);
2073 do_cancel(job);
2074 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2076 return 0;
2079 /****************************************************************************
2080 Print a file.
2081 ****************************************************************************/
2083 static int cmd_print(void)
2085 TALLOC_CTX *ctx = talloc_tos();
2086 char *lname = NULL;
2087 char *rname = NULL;
2088 char *p = NULL;
2090 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2091 d_printf("print <filename>\n");
2092 return 1;
2095 rname = talloc_strdup(ctx, lname);
2096 if (!rname) {
2097 return 1;
2099 p = strrchr_m(rname,'/');
2100 if (p) {
2101 rname = talloc_asprintf(ctx,
2102 "%s-%d",
2103 p+1,
2104 (int)sys_getpid());
2106 if (strequal(lname,"-")) {
2107 rname = talloc_asprintf(ctx,
2108 "stdin-%d",
2109 (int)sys_getpid());
2111 if (!rname) {
2112 return 1;
2115 return do_put(rname, lname, false);
2118 /****************************************************************************
2119 Show a print queue entry.
2120 ****************************************************************************/
2122 static void queue_fn(struct print_job_info *p)
2124 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2127 /****************************************************************************
2128 Show a print queue.
2129 ****************************************************************************/
2131 static int cmd_queue(void)
2133 cli_print_queue(cli, queue_fn);
2134 return 0;
2137 /****************************************************************************
2138 Delete some files.
2139 ****************************************************************************/
2141 static void do_del(struct cli_state *cli_state, struct file_info *finfo,
2142 const char *dir)
2144 TALLOC_CTX *ctx = talloc_tos();
2145 char *mask = NULL;
2147 mask = talloc_asprintf(ctx,
2148 "%s%c%s",
2149 dir,
2150 CLI_DIRSEP_CHAR,
2151 finfo->name);
2152 if (!mask) {
2153 return;
2156 if (finfo->mode & aDIR) {
2157 TALLOC_FREE(mask);
2158 return;
2161 if (!NT_STATUS_IS_OK(cli_unlink(cli_state, mask, aSYSTEM | aHIDDEN))) {
2162 d_printf("%s deleting remote file %s\n",
2163 cli_errstr(cli_state),mask);
2165 TALLOC_FREE(mask);
2168 /****************************************************************************
2169 Delete some files.
2170 ****************************************************************************/
2172 static int cmd_del(void)
2174 TALLOC_CTX *ctx = talloc_tos();
2175 char *mask = NULL;
2176 char *buf = NULL;
2177 uint16 attribute = aSYSTEM | aHIDDEN;
2179 if (recurse) {
2180 attribute |= aDIR;
2183 mask = talloc_strdup(ctx, client_get_cur_dir());
2184 if (!mask) {
2185 return 1;
2187 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2188 d_printf("del <filename>\n");
2189 return 1;
2191 mask = talloc_asprintf_append(mask, "%s", buf);
2192 if (!mask) {
2193 return 1;
2196 do_list(mask,attribute,do_del,false,false);
2197 return 0;
2200 /****************************************************************************
2201 Wildcard delete some files.
2202 ****************************************************************************/
2204 static int cmd_wdel(void)
2206 TALLOC_CTX *ctx = talloc_tos();
2207 char *mask = NULL;
2208 char *buf = NULL;
2209 uint16 attribute;
2210 struct cli_state *targetcli;
2211 char *targetname = NULL;
2213 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2214 d_printf("wdel 0x<attrib> <wcard>\n");
2215 return 1;
2218 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2220 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2221 d_printf("wdel 0x<attrib> <wcard>\n");
2222 return 1;
2225 mask = talloc_asprintf(ctx, "%s%s",
2226 client_get_cur_dir(),
2227 buf);
2228 if (!mask) {
2229 return 1;
2232 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2233 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2234 return 1;
2237 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2238 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2240 return 0;
2243 /****************************************************************************
2244 ****************************************************************************/
2246 static int cmd_open(void)
2248 TALLOC_CTX *ctx = talloc_tos();
2249 char *mask = NULL;
2250 char *buf = NULL;
2251 char *targetname = NULL;
2252 struct cli_state *targetcli;
2253 uint16_t fnum = (uint16_t)-1;
2255 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2256 d_printf("open <filename>\n");
2257 return 1;
2259 mask = talloc_asprintf(ctx,
2260 "%s%s",
2261 client_get_cur_dir(),
2262 buf);
2263 if (!mask) {
2264 return 1;
2267 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2268 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2269 return 1;
2272 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2273 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2274 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2275 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2276 FILE_READ_DATA, 0,
2277 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2278 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2279 } else {
2280 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2282 } else {
2283 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2285 return 0;
2288 static int cmd_posix_encrypt(void)
2290 TALLOC_CTX *ctx = talloc_tos();
2291 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2293 if (cli->use_kerberos) {
2294 status = cli_gss_smb_encryption_start(cli);
2295 } else {
2296 char *domain = NULL;
2297 char *user = NULL;
2298 char *password = NULL;
2300 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2301 d_printf("posix_encrypt domain user password\n");
2302 return 1;
2305 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2306 d_printf("posix_encrypt domain user password\n");
2307 return 1;
2310 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2311 d_printf("posix_encrypt domain user password\n");
2312 return 1;
2315 status = cli_raw_ntlm_smb_encryption_start(cli,
2316 user,
2317 password,
2318 domain);
2321 if (!NT_STATUS_IS_OK(status)) {
2322 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2323 } else {
2324 d_printf("encryption on\n");
2325 smb_encrypt = true;
2328 return 0;
2331 /****************************************************************************
2332 ****************************************************************************/
2334 static int cmd_posix_open(void)
2336 TALLOC_CTX *ctx = talloc_tos();
2337 char *mask = NULL;
2338 char *buf = NULL;
2339 char *targetname = NULL;
2340 struct cli_state *targetcli;
2341 mode_t mode;
2342 uint16_t fnum;
2344 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2345 d_printf("posix_open <filename> 0<mode>\n");
2346 return 1;
2348 mask = talloc_asprintf(ctx,
2349 "%s%s",
2350 client_get_cur_dir(),
2351 buf);
2352 if (!mask) {
2353 return 1;
2356 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2357 d_printf("posix_open <filename> 0<mode>\n");
2358 return 1;
2360 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2362 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2363 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2364 return 1;
2367 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2368 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2369 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2370 } else {
2371 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2373 } else {
2374 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2377 return 0;
2380 static int cmd_posix_mkdir(void)
2382 TALLOC_CTX *ctx = talloc_tos();
2383 char *mask = NULL;
2384 char *buf = NULL;
2385 char *targetname = NULL;
2386 struct cli_state *targetcli;
2387 mode_t mode;
2389 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2390 d_printf("posix_mkdir <filename> 0<mode>\n");
2391 return 1;
2393 mask = talloc_asprintf(ctx,
2394 "%s%s",
2395 client_get_cur_dir(),
2396 buf);
2397 if (!mask) {
2398 return 1;
2401 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2402 d_printf("posix_mkdir <filename> 0<mode>\n");
2403 return 1;
2405 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2407 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2408 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2409 return 1;
2412 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2413 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2414 } else {
2415 d_printf("posix_mkdir created directory %s\n", targetname);
2417 return 0;
2420 static int cmd_posix_unlink(void)
2422 TALLOC_CTX *ctx = talloc_tos();
2423 char *mask = NULL;
2424 char *buf = NULL;
2425 char *targetname = NULL;
2426 struct cli_state *targetcli;
2428 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2429 d_printf("posix_unlink <filename>\n");
2430 return 1;
2432 mask = talloc_asprintf(ctx,
2433 "%s%s",
2434 client_get_cur_dir(),
2435 buf);
2436 if (!mask) {
2437 return 1;
2440 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2441 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2442 return 1;
2445 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2446 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2447 } else {
2448 d_printf("posix_unlink deleted file %s\n", targetname);
2451 return 0;
2454 static int cmd_posix_rmdir(void)
2456 TALLOC_CTX *ctx = talloc_tos();
2457 char *mask = NULL;
2458 char *buf = NULL;
2459 char *targetname = NULL;
2460 struct cli_state *targetcli;
2462 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2463 d_printf("posix_rmdir <filename>\n");
2464 return 1;
2466 mask = talloc_asprintf(ctx,
2467 "%s%s",
2468 client_get_cur_dir(),
2469 buf);
2470 if (!mask) {
2471 return 1;
2474 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2475 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2476 return 1;
2479 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2480 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2481 } else {
2482 d_printf("posix_rmdir deleted directory %s\n", targetname);
2485 return 0;
2488 static int cmd_close(void)
2490 TALLOC_CTX *ctx = talloc_tos();
2491 char *buf = NULL;
2492 int fnum;
2494 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2495 d_printf("close <fnum>\n");
2496 return 1;
2499 fnum = atoi(buf);
2500 /* We really should use the targetcli here.... */
2501 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2502 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2503 return 1;
2505 return 0;
2508 static int cmd_posix(void)
2510 TALLOC_CTX *ctx = talloc_tos();
2511 uint16 major, minor;
2512 uint32 caplow, caphigh;
2513 char *caps;
2514 NTSTATUS status;
2516 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2517 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2518 return 1;
2521 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2522 &caphigh);
2523 if (!NT_STATUS_IS_OK(status)) {
2524 d_printf("Can't get UNIX CIFS extensions version from "
2525 "server: %s\n", nt_errstr(status));
2526 return 1;
2529 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2531 caps = talloc_strdup(ctx, "");
2532 if (!caps) {
2533 return 1;
2535 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2536 caps = talloc_asprintf_append(caps, "locks ");
2537 if (!caps) {
2538 return 1;
2541 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2542 caps = talloc_asprintf_append(caps, "acls ");
2543 if (!caps) {
2544 return 1;
2547 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2548 caps = talloc_asprintf_append(caps, "eas ");
2549 if (!caps) {
2550 return 1;
2553 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2554 caps = talloc_asprintf_append(caps, "pathnames ");
2555 if (!caps) {
2556 return 1;
2559 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2560 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2561 if (!caps) {
2562 return 1;
2565 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2566 caps = talloc_asprintf_append(caps, "large_read ");
2567 if (!caps) {
2568 return 1;
2571 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2572 caps = talloc_asprintf_append(caps, "large_write ");
2573 if (!caps) {
2574 return 1;
2577 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2578 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2579 if (!caps) {
2580 return 1;
2583 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2584 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2585 if (!caps) {
2586 return 1;
2590 if (*caps && caps[strlen(caps)-1] == ' ') {
2591 caps[strlen(caps)-1] = '\0';
2594 d_printf("Server supports CIFS capabilities %s\n", caps);
2596 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2597 caplow, caphigh);
2598 if (!NT_STATUS_IS_OK(status)) {
2599 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2600 nt_errstr(status));
2601 return 1;
2604 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2605 CLI_DIRSEP_CHAR = '/';
2606 *CLI_DIRSEP_STR = '/';
2607 client_set_cur_dir(CLI_DIRSEP_STR);
2610 return 0;
2613 static int cmd_lock(void)
2615 TALLOC_CTX *ctx = talloc_tos();
2616 char *buf = NULL;
2617 uint64_t start, len;
2618 enum brl_type lock_type;
2619 int fnum;
2621 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2622 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2623 return 1;
2625 fnum = atoi(buf);
2627 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2628 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2629 return 1;
2632 if (*buf == 'r' || *buf == 'R') {
2633 lock_type = READ_LOCK;
2634 } else if (*buf == 'w' || *buf == 'W') {
2635 lock_type = WRITE_LOCK;
2636 } else {
2637 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2638 return 1;
2641 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2642 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2643 return 1;
2646 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2648 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2649 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2650 return 1;
2653 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2655 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2656 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2659 return 0;
2662 static int cmd_unlock(void)
2664 TALLOC_CTX *ctx = talloc_tos();
2665 char *buf = NULL;
2666 uint64_t start, len;
2667 int fnum;
2669 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2670 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2671 return 1;
2673 fnum = atoi(buf);
2675 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2676 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2677 return 1;
2680 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2682 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2683 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2684 return 1;
2687 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2689 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2690 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2693 return 0;
2697 /****************************************************************************
2698 Remove a directory.
2699 ****************************************************************************/
2701 static int cmd_rmdir(void)
2703 TALLOC_CTX *ctx = talloc_tos();
2704 char *mask = NULL;
2705 char *buf = NULL;
2706 char *targetname = NULL;
2707 struct cli_state *targetcli;
2709 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2710 d_printf("rmdir <dirname>\n");
2711 return 1;
2713 mask = talloc_asprintf(ctx,
2714 "%s%s",
2715 client_get_cur_dir(),
2716 buf);
2717 if (!mask) {
2718 return 1;
2721 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2722 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2723 return 1;
2726 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2727 d_printf("%s removing remote directory file %s\n",
2728 cli_errstr(targetcli),mask);
2731 return 0;
2734 /****************************************************************************
2735 UNIX hardlink.
2736 ****************************************************************************/
2738 static int cmd_link(void)
2740 TALLOC_CTX *ctx = talloc_tos();
2741 char *oldname = NULL;
2742 char *newname = NULL;
2743 char *buf = NULL;
2744 char *buf2 = NULL;
2745 char *targetname = NULL;
2746 struct cli_state *targetcli;
2748 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2749 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2750 d_printf("link <oldname> <newname>\n");
2751 return 1;
2753 oldname = talloc_asprintf(ctx,
2754 "%s%s",
2755 client_get_cur_dir(),
2756 buf);
2757 if (!oldname) {
2758 return 1;
2760 newname = talloc_asprintf(ctx,
2761 "%s%s",
2762 client_get_cur_dir(),
2763 buf2);
2764 if (!newname) {
2765 return 1;
2768 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2769 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2770 return 1;
2773 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2774 d_printf("Server doesn't support UNIX CIFS calls.\n");
2775 return 1;
2778 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2779 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2780 return 1;
2782 return 0;
2785 /****************************************************************************
2786 UNIX readlink.
2787 ****************************************************************************/
2789 static int cmd_readlink(void)
2791 TALLOC_CTX *ctx = talloc_tos();
2792 char *name= NULL;
2793 char *buf = NULL;
2794 char *targetname = NULL;
2795 char linkname[PATH_MAX+1];
2796 struct cli_state *targetcli;
2798 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2799 d_printf("readlink <name>\n");
2800 return 1;
2802 name = talloc_asprintf(ctx,
2803 "%s%s",
2804 client_get_cur_dir(),
2805 buf);
2806 if (!name) {
2807 return 1;
2810 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2811 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2812 return 1;
2815 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2816 d_printf("Server doesn't support UNIX CIFS calls.\n");
2817 return 1;
2820 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2821 linkname, PATH_MAX+1))) {
2822 d_printf("%s readlink on file %s\n",
2823 cli_errstr(targetcli), name);
2824 return 1;
2827 d_printf("%s -> %s\n", name, linkname);
2829 return 0;
2833 /****************************************************************************
2834 UNIX symlink.
2835 ****************************************************************************/
2837 static int cmd_symlink(void)
2839 TALLOC_CTX *ctx = talloc_tos();
2840 char *oldname = NULL;
2841 char *newname = NULL;
2842 char *buf = NULL;
2843 char *buf2 = NULL;
2844 struct cli_state *newcli;
2846 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2847 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2848 d_printf("symlink <oldname> <newname>\n");
2849 return 1;
2851 /* Oldname (link target) must be an untouched blob. */
2852 oldname = buf;
2854 newname = talloc_asprintf(ctx,
2855 "%s%s",
2856 client_get_cur_dir(),
2857 buf2);
2858 if (!newname) {
2859 return 1;
2862 /* New name must be present in share namespace. */
2863 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
2864 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2865 return 1;
2868 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
2869 d_printf("Server doesn't support UNIX CIFS calls.\n");
2870 return 1;
2873 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
2874 d_printf("%s symlinking files (%s -> %s)\n",
2875 cli_errstr(newcli), newname, newname);
2876 return 1;
2879 return 0;
2882 /****************************************************************************
2883 UNIX chmod.
2884 ****************************************************************************/
2886 static int cmd_chmod(void)
2888 TALLOC_CTX *ctx = talloc_tos();
2889 char *src = NULL;
2890 char *buf = NULL;
2891 char *buf2 = NULL;
2892 char *targetname = NULL;
2893 struct cli_state *targetcli;
2894 mode_t mode;
2896 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2897 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2898 d_printf("chmod mode file\n");
2899 return 1;
2901 src = talloc_asprintf(ctx,
2902 "%s%s",
2903 client_get_cur_dir(),
2904 buf2);
2905 if (!src) {
2906 return 1;
2909 mode = (mode_t)strtol(buf, NULL, 8);
2911 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2912 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2913 return 1;
2916 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2917 d_printf("Server doesn't support UNIX CIFS calls.\n");
2918 return 1;
2921 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2922 d_printf("%s chmod file %s 0%o\n",
2923 cli_errstr(targetcli), src, (unsigned int)mode);
2924 return 1;
2927 return 0;
2930 static const char *filetype_to_str(mode_t mode)
2932 if (S_ISREG(mode)) {
2933 return "regular file";
2934 } else if (S_ISDIR(mode)) {
2935 return "directory";
2936 } else
2937 #ifdef S_ISCHR
2938 if (S_ISCHR(mode)) {
2939 return "character device";
2940 } else
2941 #endif
2942 #ifdef S_ISBLK
2943 if (S_ISBLK(mode)) {
2944 return "block device";
2945 } else
2946 #endif
2947 #ifdef S_ISFIFO
2948 if (S_ISFIFO(mode)) {
2949 return "fifo";
2950 } else
2951 #endif
2952 #ifdef S_ISLNK
2953 if (S_ISLNK(mode)) {
2954 return "symbolic link";
2955 } else
2956 #endif
2957 #ifdef S_ISSOCK
2958 if (S_ISSOCK(mode)) {
2959 return "socket";
2960 } else
2961 #endif
2962 return "";
2965 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2967 if (m & bt) {
2968 return ret;
2969 } else {
2970 return '-';
2974 static char *unix_mode_to_str(char *s, mode_t m)
2976 char *p = s;
2977 const char *str = filetype_to_str(m);
2979 switch(str[0]) {
2980 case 'd':
2981 *p++ = 'd';
2982 break;
2983 case 'c':
2984 *p++ = 'c';
2985 break;
2986 case 'b':
2987 *p++ = 'b';
2988 break;
2989 case 'f':
2990 *p++ = 'p';
2991 break;
2992 case 's':
2993 *p++ = str[1] == 'y' ? 'l' : 's';
2994 break;
2995 case 'r':
2996 default:
2997 *p++ = '-';
2998 break;
3000 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3001 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3002 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3003 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3004 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3005 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3006 *p++ = rwx_to_str(m, S_IROTH, 'r');
3007 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3008 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3009 *p++ = '\0';
3010 return s;
3013 /****************************************************************************
3014 Utility function for UNIX getfacl.
3015 ****************************************************************************/
3017 static char *perms_to_string(fstring permstr, unsigned char perms)
3019 fstrcpy(permstr, "---");
3020 if (perms & SMB_POSIX_ACL_READ) {
3021 permstr[0] = 'r';
3023 if (perms & SMB_POSIX_ACL_WRITE) {
3024 permstr[1] = 'w';
3026 if (perms & SMB_POSIX_ACL_EXECUTE) {
3027 permstr[2] = 'x';
3029 return permstr;
3032 /****************************************************************************
3033 UNIX getfacl.
3034 ****************************************************************************/
3036 static int cmd_getfacl(void)
3038 TALLOC_CTX *ctx = talloc_tos();
3039 char *src = NULL;
3040 char *name = NULL;
3041 char *targetname = NULL;
3042 struct cli_state *targetcli;
3043 uint16 major, minor;
3044 uint32 caplow, caphigh;
3045 char *retbuf = NULL;
3046 size_t rb_size = 0;
3047 SMB_STRUCT_STAT sbuf;
3048 uint16 num_file_acls = 0;
3049 uint16 num_dir_acls = 0;
3050 uint16 i;
3051 NTSTATUS status;
3053 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3054 d_printf("getfacl filename\n");
3055 return 1;
3057 src = talloc_asprintf(ctx,
3058 "%s%s",
3059 client_get_cur_dir(),
3060 name);
3061 if (!src) {
3062 return 1;
3065 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3066 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3067 return 1;
3070 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3071 d_printf("Server doesn't support UNIX CIFS calls.\n");
3072 return 1;
3075 status = cli_unix_extensions_version(targetcli, &major, &minor,
3076 &caplow, &caphigh);
3077 if (!NT_STATUS_IS_OK(status)) {
3078 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3079 nt_errstr(status));
3080 return 1;
3083 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3084 d_printf("This server supports UNIX extensions "
3085 "but doesn't support POSIX ACLs.\n");
3086 return 1;
3089 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3090 d_printf("%s getfacl doing a stat on file %s\n",
3091 cli_errstr(targetcli), src);
3092 return 1;
3095 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3096 d_printf("%s getfacl file %s\n",
3097 cli_errstr(targetcli), src);
3098 return 1;
3101 /* ToDo : Print out the ACL values. */
3102 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3103 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3104 src, (unsigned int)CVAL(retbuf,0) );
3105 return 1;
3108 num_file_acls = SVAL(retbuf,2);
3109 num_dir_acls = SVAL(retbuf,4);
3110 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3111 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3112 src,
3113 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3114 (unsigned int)rb_size);
3115 return 1;
3118 d_printf("# file: %s\n", src);
3119 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3121 if (num_file_acls == 0 && num_dir_acls == 0) {
3122 d_printf("No acls found.\n");
3125 for (i = 0; i < num_file_acls; i++) {
3126 uint32 uorg;
3127 fstring permstring;
3128 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3129 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3131 switch(tagtype) {
3132 case SMB_POSIX_ACL_USER_OBJ:
3133 d_printf("user::");
3134 break;
3135 case SMB_POSIX_ACL_USER:
3136 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3137 d_printf("user:%u:", uorg);
3138 break;
3139 case SMB_POSIX_ACL_GROUP_OBJ:
3140 d_printf("group::");
3141 break;
3142 case SMB_POSIX_ACL_GROUP:
3143 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3144 d_printf("group:%u:", uorg);
3145 break;
3146 case SMB_POSIX_ACL_MASK:
3147 d_printf("mask::");
3148 break;
3149 case SMB_POSIX_ACL_OTHER:
3150 d_printf("other::");
3151 break;
3152 default:
3153 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3154 src, (unsigned int)tagtype );
3155 SAFE_FREE(retbuf);
3156 return 1;
3159 d_printf("%s\n", perms_to_string(permstring, perms));
3162 for (i = 0; i < num_dir_acls; i++) {
3163 uint32 uorg;
3164 fstring permstring;
3165 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3166 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3168 switch(tagtype) {
3169 case SMB_POSIX_ACL_USER_OBJ:
3170 d_printf("default:user::");
3171 break;
3172 case SMB_POSIX_ACL_USER:
3173 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3174 d_printf("default:user:%u:", uorg);
3175 break;
3176 case SMB_POSIX_ACL_GROUP_OBJ:
3177 d_printf("default:group::");
3178 break;
3179 case SMB_POSIX_ACL_GROUP:
3180 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3181 d_printf("default:group:%u:", uorg);
3182 break;
3183 case SMB_POSIX_ACL_MASK:
3184 d_printf("default:mask::");
3185 break;
3186 case SMB_POSIX_ACL_OTHER:
3187 d_printf("default:other::");
3188 break;
3189 default:
3190 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3191 src, (unsigned int)tagtype );
3192 SAFE_FREE(retbuf);
3193 return 1;
3196 d_printf("%s\n", perms_to_string(permstring, perms));
3199 return 0;
3202 /****************************************************************************
3203 UNIX stat.
3204 ****************************************************************************/
3206 static int cmd_stat(void)
3208 TALLOC_CTX *ctx = talloc_tos();
3209 char *src = NULL;
3210 char *name = NULL;
3211 char *targetname = NULL;
3212 struct cli_state *targetcli;
3213 fstring mode_str;
3214 SMB_STRUCT_STAT sbuf;
3215 struct tm *lt;
3216 time_t tmp_time;
3218 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3219 d_printf("stat file\n");
3220 return 1;
3222 src = talloc_asprintf(ctx,
3223 "%s%s",
3224 client_get_cur_dir(),
3225 name);
3226 if (!src) {
3227 return 1;
3230 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3231 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3232 return 1;
3235 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3236 d_printf("Server doesn't support UNIX CIFS calls.\n");
3237 return 1;
3240 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3241 d_printf("%s stat file %s\n",
3242 cli_errstr(targetcli), src);
3243 return 1;
3246 /* Print out the stat values. */
3247 d_printf("File: %s\n", src);
3248 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3249 (double)sbuf.st_ex_size,
3250 (unsigned int)sbuf.st_ex_blocks,
3251 filetype_to_str(sbuf.st_ex_mode));
3253 #if defined(S_ISCHR) && defined(S_ISBLK)
3254 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3255 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3256 (double)sbuf.st_ex_ino,
3257 (unsigned int)sbuf.st_ex_nlink,
3258 unix_dev_major(sbuf.st_ex_rdev),
3259 unix_dev_minor(sbuf.st_ex_rdev));
3260 } else
3261 #endif
3262 d_printf("Inode: %.0f\tLinks: %u\n",
3263 (double)sbuf.st_ex_ino,
3264 (unsigned int)sbuf.st_ex_nlink);
3266 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3267 ((int)sbuf.st_ex_mode & 0777),
3268 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3269 (unsigned int)sbuf.st_ex_uid,
3270 (unsigned int)sbuf.st_ex_gid);
3272 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3273 lt = localtime(&tmp_time);
3274 if (lt) {
3275 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3276 } else {
3277 fstrcpy(mode_str, "unknown");
3279 d_printf("Access: %s\n", mode_str);
3281 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3282 lt = localtime(&tmp_time);
3283 if (lt) {
3284 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3285 } else {
3286 fstrcpy(mode_str, "unknown");
3288 d_printf("Modify: %s\n", mode_str);
3290 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3291 lt = localtime(&tmp_time);
3292 if (lt) {
3293 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3294 } else {
3295 fstrcpy(mode_str, "unknown");
3297 d_printf("Change: %s\n", mode_str);
3299 return 0;
3303 /****************************************************************************
3304 UNIX chown.
3305 ****************************************************************************/
3307 static int cmd_chown(void)
3309 TALLOC_CTX *ctx = talloc_tos();
3310 char *src = NULL;
3311 uid_t uid;
3312 gid_t gid;
3313 char *buf, *buf2, *buf3;
3314 struct cli_state *targetcli;
3315 char *targetname = NULL;
3317 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3318 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3319 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3320 d_printf("chown uid gid file\n");
3321 return 1;
3324 uid = (uid_t)atoi(buf);
3325 gid = (gid_t)atoi(buf2);
3327 src = talloc_asprintf(ctx,
3328 "%s%s",
3329 client_get_cur_dir(),
3330 buf3);
3331 if (!src) {
3332 return 1;
3334 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3335 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3336 return 1;
3339 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3340 d_printf("Server doesn't support UNIX CIFS calls.\n");
3341 return 1;
3344 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3345 d_printf("%s chown file %s uid=%d, gid=%d\n",
3346 cli_errstr(targetcli), src, (int)uid, (int)gid);
3347 return 1;
3350 return 0;
3353 /****************************************************************************
3354 Rename some file.
3355 ****************************************************************************/
3357 static int cmd_rename(void)
3359 TALLOC_CTX *ctx = talloc_tos();
3360 char *src, *dest;
3361 char *buf, *buf2;
3362 struct cli_state *targetcli;
3363 char *targetsrc;
3364 char *targetdest;
3366 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3367 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3368 d_printf("rename <src> <dest>\n");
3369 return 1;
3372 src = talloc_asprintf(ctx,
3373 "%s%s",
3374 client_get_cur_dir(),
3375 buf);
3376 if (!src) {
3377 return 1;
3380 dest = talloc_asprintf(ctx,
3381 "%s%s",
3382 client_get_cur_dir(),
3383 buf2);
3384 if (!dest) {
3385 return 1;
3388 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3389 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3390 return 1;
3393 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3394 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3395 return 1;
3398 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3399 d_printf("%s renaming files %s -> %s \n",
3400 cli_errstr(targetcli),
3401 targetsrc,
3402 targetdest);
3403 return 1;
3406 return 0;
3409 /****************************************************************************
3410 Print the volume name.
3411 ****************************************************************************/
3413 static int cmd_volume(void)
3415 fstring volname;
3416 uint32 serial_num;
3417 time_t create_date;
3418 NTSTATUS status;
3420 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3421 &create_date);
3422 if (!NT_STATUS_IS_OK(status)) {
3423 d_printf("Error %s getting volume info\n", nt_errstr(status));
3424 return 1;
3427 d_printf("Volume: |%s| serial number 0x%x\n",
3428 volname, (unsigned int)serial_num);
3429 return 0;
3432 /****************************************************************************
3433 Hard link files using the NT call.
3434 ****************************************************************************/
3436 static int cmd_hardlink(void)
3438 TALLOC_CTX *ctx = talloc_tos();
3439 char *src, *dest;
3440 char *buf, *buf2;
3441 struct cli_state *targetcli;
3442 char *targetname;
3444 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3445 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3446 d_printf("hardlink <src> <dest>\n");
3447 return 1;
3450 src = talloc_asprintf(ctx,
3451 "%s%s",
3452 client_get_cur_dir(),
3453 buf);
3454 if (!src) {
3455 return 1;
3458 dest = talloc_asprintf(ctx,
3459 "%s%s",
3460 client_get_cur_dir(),
3461 buf2);
3462 if (!dest) {
3463 return 1;
3466 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3467 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3468 return 1;
3471 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3472 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3473 return 1;
3476 return 0;
3479 /****************************************************************************
3480 Toggle the prompt flag.
3481 ****************************************************************************/
3483 static int cmd_prompt(void)
3485 prompt = !prompt;
3486 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3487 return 1;
3490 /****************************************************************************
3491 Set the newer than time.
3492 ****************************************************************************/
3494 static int cmd_newer(void)
3496 TALLOC_CTX *ctx = talloc_tos();
3497 char *buf;
3498 bool ok;
3499 SMB_STRUCT_STAT sbuf;
3501 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3502 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3503 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3504 DEBUG(1,("Getting files newer than %s",
3505 time_to_asc(newer_than)));
3506 } else {
3507 newer_than = 0;
3510 if (ok && newer_than == 0) {
3511 d_printf("Error setting newer-than time\n");
3512 return 1;
3515 return 0;
3518 /****************************************************************************
3519 Set the archive level.
3520 ****************************************************************************/
3522 static int cmd_archive(void)
3524 TALLOC_CTX *ctx = talloc_tos();
3525 char *buf;
3527 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3528 archive_level = atoi(buf);
3529 } else {
3530 d_printf("Archive level is %d\n",archive_level);
3533 return 0;
3536 /****************************************************************************
3537 Toggle the lowercaseflag.
3538 ****************************************************************************/
3540 static int cmd_lowercase(void)
3542 lowercase = !lowercase;
3543 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3544 return 0;
3547 /****************************************************************************
3548 Toggle the case sensitive flag.
3549 ****************************************************************************/
3551 static int cmd_setcase(void)
3553 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3555 cli_set_case_sensitive(cli, !orig_case_sensitive);
3556 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3557 "on":"off"));
3558 return 0;
3561 /****************************************************************************
3562 Toggle the showacls flag.
3563 ****************************************************************************/
3565 static int cmd_showacls(void)
3567 showacls = !showacls;
3568 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3569 return 0;
3573 /****************************************************************************
3574 Toggle the recurse flag.
3575 ****************************************************************************/
3577 static int cmd_recurse(void)
3579 recurse = !recurse;
3580 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3581 return 0;
3584 /****************************************************************************
3585 Toggle the translate flag.
3586 ****************************************************************************/
3588 static int cmd_translate(void)
3590 translation = !translation;
3591 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3592 translation?"on":"off"));
3593 return 0;
3596 /****************************************************************************
3597 Do the lcd command.
3598 ****************************************************************************/
3600 static int cmd_lcd(void)
3602 TALLOC_CTX *ctx = talloc_tos();
3603 char *buf;
3604 char *d;
3606 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3607 if (chdir(buf) == -1) {
3608 d_printf("chdir to %s failed (%s)\n",
3609 buf, strerror(errno));
3612 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3613 if (!d) {
3614 return 1;
3616 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3617 return 0;
3620 /****************************************************************************
3621 Get a file restarting at end of local file.
3622 ****************************************************************************/
3624 static int cmd_reget(void)
3626 TALLOC_CTX *ctx = talloc_tos();
3627 char *local_name = NULL;
3628 char *remote_name = NULL;
3629 char *fname = NULL;
3630 char *p = NULL;
3632 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3633 if (!remote_name) {
3634 return 1;
3637 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3638 d_printf("reget <filename>\n");
3639 return 1;
3641 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3642 if (!remote_name) {
3643 return 1;
3645 remote_name = clean_name(ctx,remote_name);
3646 if (!remote_name) {
3647 return 1;
3650 local_name = fname;
3651 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3652 if (p) {
3653 local_name = p;
3656 return do_get(remote_name, local_name, true);
3659 /****************************************************************************
3660 Put a file restarting at end of local file.
3661 ****************************************************************************/
3663 static int cmd_reput(void)
3665 TALLOC_CTX *ctx = talloc_tos();
3666 char *local_name = NULL;
3667 char *remote_name = NULL;
3668 char *buf;
3669 SMB_STRUCT_STAT st;
3671 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3672 if (!remote_name) {
3673 return 1;
3676 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3677 d_printf("reput <filename>\n");
3678 return 1;
3681 if (!file_exist_stat(local_name, &st, false)) {
3682 d_printf("%s does not exist\n", local_name);
3683 return 1;
3686 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3687 remote_name = talloc_asprintf_append(remote_name,
3688 "%s", buf);
3689 } else {
3690 remote_name = talloc_asprintf_append(remote_name,
3691 "%s", local_name);
3693 if (!remote_name) {
3694 return 1;
3697 remote_name = clean_name(ctx, remote_name);
3698 if (!remote_name) {
3699 return 1;
3702 return do_put(remote_name, local_name, true);
3705 /****************************************************************************
3706 List a share name.
3707 ****************************************************************************/
3709 static void browse_fn(const char *name, uint32 m,
3710 const char *comment, void *state)
3712 const char *typestr = "";
3714 switch (m & 7) {
3715 case STYPE_DISKTREE:
3716 typestr = "Disk";
3717 break;
3718 case STYPE_PRINTQ:
3719 typestr = "Printer";
3720 break;
3721 case STYPE_DEVICE:
3722 typestr = "Device";
3723 break;
3724 case STYPE_IPC:
3725 typestr = "IPC";
3726 break;
3728 /* FIXME: If the remote machine returns non-ascii characters
3729 in any of these fields, they can corrupt the output. We
3730 should remove them. */
3731 if (!grepable) {
3732 d_printf("\t%-15s %-10.10s%s\n",
3733 name,typestr,comment);
3734 } else {
3735 d_printf ("%s|%s|%s\n",typestr,name,comment);
3739 static bool browse_host_rpc(bool sort)
3741 NTSTATUS status;
3742 struct rpc_pipe_client *pipe_hnd = NULL;
3743 TALLOC_CTX *frame = talloc_stackframe();
3744 WERROR werr;
3745 struct srvsvc_NetShareInfoCtr info_ctr;
3746 struct srvsvc_NetShareCtr1 ctr1;
3747 uint32_t resume_handle = 0;
3748 uint32_t total_entries = 0;
3749 int i;
3751 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3752 &pipe_hnd);
3754 if (!NT_STATUS_IS_OK(status)) {
3755 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3756 nt_errstr(status)));
3757 TALLOC_FREE(frame);
3758 return false;
3761 ZERO_STRUCT(info_ctr);
3762 ZERO_STRUCT(ctr1);
3764 info_ctr.level = 1;
3765 info_ctr.ctr.ctr1 = &ctr1;
3767 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3768 pipe_hnd->desthost,
3769 &info_ctr,
3770 0xffffffff,
3771 &total_entries,
3772 &resume_handle,
3773 &werr);
3775 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3776 TALLOC_FREE(pipe_hnd);
3777 TALLOC_FREE(frame);
3778 return false;
3781 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3782 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3783 browse_fn(info.name, info.type, info.comment, NULL);
3786 TALLOC_FREE(pipe_hnd);
3787 TALLOC_FREE(frame);
3788 return true;
3791 /****************************************************************************
3792 Try and browse available connections on a host.
3793 ****************************************************************************/
3795 static bool browse_host(bool sort)
3797 int ret;
3798 if (!grepable) {
3799 d_printf("\n\tSharename Type Comment\n");
3800 d_printf("\t--------- ---- -------\n");
3803 if (browse_host_rpc(sort)) {
3804 return true;
3807 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3808 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3810 return (ret != -1);
3813 /****************************************************************************
3814 List a server name.
3815 ****************************************************************************/
3817 static void server_fn(const char *name, uint32 m,
3818 const char *comment, void *state)
3821 if (!grepable){
3822 d_printf("\t%-16s %s\n", name, comment);
3823 } else {
3824 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3828 /****************************************************************************
3829 Try and browse available connections on a host.
3830 ****************************************************************************/
3832 static bool list_servers(const char *wk_grp)
3834 fstring state;
3836 if (!cli->server_domain)
3837 return false;
3839 if (!grepable) {
3840 d_printf("\n\tServer Comment\n");
3841 d_printf("\t--------- -------\n");
3843 fstrcpy( state, "Server" );
3844 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3845 state);
3847 if (!grepable) {
3848 d_printf("\n\tWorkgroup Master\n");
3849 d_printf("\t--------- -------\n");
3852 fstrcpy( state, "Workgroup" );
3853 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3854 server_fn, state);
3855 return true;
3858 /****************************************************************************
3859 Print or set current VUID
3860 ****************************************************************************/
3862 static int cmd_vuid(void)
3864 TALLOC_CTX *ctx = talloc_tos();
3865 char *buf;
3867 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3868 d_printf("Current VUID is %d\n", cli->vuid);
3869 return 0;
3872 cli->vuid = atoi(buf);
3873 return 0;
3876 /****************************************************************************
3877 Setup a new VUID, by issuing a session setup
3878 ****************************************************************************/
3880 static int cmd_logon(void)
3882 TALLOC_CTX *ctx = talloc_tos();
3883 char *l_username, *l_password;
3885 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3886 d_printf("logon <username> [<password>]\n");
3887 return 0;
3890 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3891 char *pass = getpass("Password: ");
3892 if (pass) {
3893 l_password = talloc_strdup(ctx,pass);
3896 if (!l_password) {
3897 return 1;
3900 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3901 l_password, strlen(l_password),
3902 l_password, strlen(l_password),
3903 lp_workgroup()))) {
3904 d_printf("session setup failed: %s\n", cli_errstr(cli));
3905 return -1;
3908 d_printf("Current VUID is %d\n", cli->vuid);
3909 return 0;
3913 /****************************************************************************
3914 list active connections
3915 ****************************************************************************/
3917 static int cmd_list_connect(void)
3919 cli_cm_display(cli);
3920 return 0;
3923 /****************************************************************************
3924 display the current active client connection
3925 ****************************************************************************/
3927 static int cmd_show_connect( void )
3929 TALLOC_CTX *ctx = talloc_tos();
3930 struct cli_state *targetcli;
3931 char *targetpath;
3933 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3934 &targetcli, &targetpath ) ) {
3935 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3936 return 1;
3939 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3940 return 0;
3943 /****************************************************************************
3944 iosize command
3945 ***************************************************************************/
3947 int cmd_iosize(void)
3949 TALLOC_CTX *ctx = talloc_tos();
3950 char *buf;
3951 int iosize;
3953 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3954 if (!smb_encrypt) {
3955 d_printf("iosize <n> or iosize 0x<n>. "
3956 "Minimum is 16384 (0x4000), "
3957 "max is 16776960 (0xFFFF00)\n");
3958 } else {
3959 d_printf("iosize <n> or iosize 0x<n>. "
3960 "(Encrypted connection) ,"
3961 "Minimum is 16384 (0x4000), "
3962 "max is 130048 (0x1FC00)\n");
3964 return 1;
3967 iosize = strtol(buf,NULL,0);
3968 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3969 d_printf("iosize out of range for encrypted "
3970 "connection (min = 16384 (0x4000), "
3971 "max = 130048 (0x1FC00)");
3972 return 1;
3973 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3974 d_printf("iosize out of range (min = 16384 (0x4000), "
3975 "max = 16776960 (0xFFFF00)");
3976 return 1;
3979 io_bufsize = iosize;
3980 d_printf("iosize is now %d\n", io_bufsize);
3981 return 0;
3985 /* Some constants for completing filename arguments */
3987 #define COMPL_NONE 0 /* No completions */
3988 #define COMPL_REMOTE 1 /* Complete remote filename */
3989 #define COMPL_LOCAL 2 /* Complete local filename */
3991 /* This defines the commands supported by this client.
3992 * NOTE: The "!" must be the last one in the list because it's fn pointer
3993 * field is NULL, and NULL in that field is used in process_tok()
3994 * (below) to indicate the end of the list. crh
3996 static struct {
3997 const char *name;
3998 int (*fn)(void);
3999 const char *description;
4000 char compl_args[2]; /* Completion argument info */
4001 } commands[] = {
4002 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4003 {"allinfo",cmd_allinfo,"<file> show all available info",
4004 {COMPL_NONE,COMPL_NONE}},
4005 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4006 {"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}},
4007 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4008 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4009 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4010 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4011 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4012 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4013 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4014 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4015 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4016 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4017 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4018 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4019 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4020 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4021 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4022 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4023 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4024 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4025 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4026 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4027 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4028 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4029 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4030 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4031 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4032 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4033 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4034 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4035 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4036 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4037 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4038 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4039 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4040 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4041 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4042 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4043 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4044 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4045 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4046 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4047 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4048 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4049 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4050 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4051 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4052 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4053 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4054 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4055 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4056 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4057 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4058 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4059 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4060 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4061 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4062 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4063 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4064 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4065 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4066 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4067 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4068 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4069 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4070 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4071 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4072 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4073 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4074 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4076 /* Yes, this must be here, see crh's comment above. */
4077 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4078 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4081 /*******************************************************************
4082 Lookup a command string in the list of commands, including
4083 abbreviations.
4084 ******************************************************************/
4086 static int process_tok(char *tok)
4088 int i = 0, matches = 0;
4089 int cmd=0;
4090 int tok_len = strlen(tok);
4092 while (commands[i].fn != NULL) {
4093 if (strequal(commands[i].name,tok)) {
4094 matches = 1;
4095 cmd = i;
4096 break;
4097 } else if (strnequal(commands[i].name, tok, tok_len)) {
4098 matches++;
4099 cmd = i;
4101 i++;
4104 if (matches == 0)
4105 return(-1);
4106 else if (matches == 1)
4107 return(cmd);
4108 else
4109 return(-2);
4112 /****************************************************************************
4113 Help.
4114 ****************************************************************************/
4116 static int cmd_help(void)
4118 TALLOC_CTX *ctx = talloc_tos();
4119 int i=0,j;
4120 char *buf;
4122 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4123 if ((i = process_tok(buf)) >= 0)
4124 d_printf("HELP %s:\n\t%s\n\n",
4125 commands[i].name,commands[i].description);
4126 } else {
4127 while (commands[i].description) {
4128 for (j=0; commands[i].description && (j<5); j++) {
4129 d_printf("%-15s",commands[i].name);
4130 i++;
4132 d_printf("\n");
4135 return 0;
4138 /****************************************************************************
4139 Process a -c command string.
4140 ****************************************************************************/
4142 static int process_command_string(const char *cmd_in)
4144 TALLOC_CTX *ctx = talloc_tos();
4145 char *cmd = talloc_strdup(ctx, cmd_in);
4146 int rc = 0;
4148 if (!cmd) {
4149 return 1;
4151 /* establish the connection if not already */
4153 if (!cli) {
4154 cli = cli_cm_open(talloc_tos(), NULL,
4155 have_ip ? dest_ss_str : desthost,
4156 service, auth_info,
4157 true, smb_encrypt,
4158 max_protocol, port, name_type);
4159 if (!cli) {
4160 return 1;
4164 while (cmd[0] != '\0') {
4165 char *line;
4166 char *p;
4167 char *tok;
4168 int i;
4170 if ((p = strchr_m(cmd, ';')) == 0) {
4171 line = cmd;
4172 cmd += strlen(cmd);
4173 } else {
4174 *p = '\0';
4175 line = cmd;
4176 cmd = p + 1;
4179 /* and get the first part of the command */
4180 cmd_ptr = line;
4181 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4182 continue;
4185 if ((i = process_tok(tok)) >= 0) {
4186 rc = commands[i].fn();
4187 } else if (i == -2) {
4188 d_printf("%s: command abbreviation ambiguous\n",tok);
4189 } else {
4190 d_printf("%s: command not found\n",tok);
4194 return rc;
4197 #define MAX_COMPLETIONS 100
4199 struct completion_remote {
4200 char *dirmask;
4201 char **matches;
4202 int count, samelen;
4203 const char *text;
4204 int len;
4207 static void completion_remote_filter(const char *mnt,
4208 struct file_info *f,
4209 const char *mask,
4210 void *state)
4212 struct completion_remote *info = (struct completion_remote *)state;
4214 if (info->count >= MAX_COMPLETIONS - 1) {
4215 return;
4217 if (strncmp(info->text, f->name, info->len) != 0) {
4218 return;
4220 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4221 return;
4224 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4225 info->matches[info->count] = SMB_STRDUP(f->name);
4226 else {
4227 TALLOC_CTX *ctx = talloc_stackframe();
4228 char *tmp;
4230 tmp = talloc_strdup(ctx,info->dirmask);
4231 if (!tmp) {
4232 TALLOC_FREE(ctx);
4233 return;
4235 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4236 if (!tmp) {
4237 TALLOC_FREE(ctx);
4238 return;
4240 if (f->mode & aDIR) {
4241 tmp = talloc_asprintf_append(tmp, "%s",
4242 CLI_DIRSEP_STR);
4244 if (!tmp) {
4245 TALLOC_FREE(ctx);
4246 return;
4248 info->matches[info->count] = SMB_STRDUP(tmp);
4249 TALLOC_FREE(ctx);
4251 if (info->matches[info->count] == NULL) {
4252 return;
4254 if (f->mode & aDIR) {
4255 smb_readline_ca_char(0);
4257 if (info->count == 1) {
4258 info->samelen = strlen(info->matches[info->count]);
4259 } else {
4260 while (strncmp(info->matches[info->count],
4261 info->matches[info->count-1],
4262 info->samelen) != 0) {
4263 info->samelen--;
4266 info->count++;
4269 static char **remote_completion(const char *text, int len)
4271 TALLOC_CTX *ctx = talloc_stackframe();
4272 char *dirmask = NULL;
4273 char *targetpath = NULL;
4274 struct cli_state *targetcli = NULL;
4275 int i;
4276 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4278 /* can't have non-static initialisation on Sun CC, so do it
4279 at run time here */
4280 info.samelen = len;
4281 info.text = text;
4282 info.len = len;
4284 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4285 if (!info.matches) {
4286 TALLOC_FREE(ctx);
4287 return NULL;
4291 * We're leaving matches[0] free to fill it later with the text to
4292 * display: Either the one single match or the longest common subset
4293 * of the matches.
4295 info.matches[0] = NULL;
4296 info.count = 1;
4298 for (i = len-1; i >= 0; i--) {
4299 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4300 break;
4304 info.text = text+i+1;
4305 info.samelen = info.len = len-i-1;
4307 if (i > 0) {
4308 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4309 if (!info.dirmask) {
4310 goto cleanup;
4312 strncpy(info.dirmask, text, i+1);
4313 info.dirmask[i+1] = 0;
4314 dirmask = talloc_asprintf(ctx,
4315 "%s%*s*",
4316 client_get_cur_dir(),
4317 i-1,
4318 text);
4319 } else {
4320 info.dirmask = SMB_STRDUP("");
4321 if (!info.dirmask) {
4322 goto cleanup;
4324 dirmask = talloc_asprintf(ctx,
4325 "%s*",
4326 client_get_cur_dir());
4328 if (!dirmask) {
4329 goto cleanup;
4332 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4333 goto cleanup;
4335 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4336 completion_remote_filter, (void *)&info) < 0) {
4337 goto cleanup;
4340 if (info.count == 1) {
4342 * No matches at all, NULL indicates there is nothing
4344 SAFE_FREE(info.matches[0]);
4345 SAFE_FREE(info.matches);
4346 TALLOC_FREE(ctx);
4347 return NULL;
4350 if (info.count == 2) {
4352 * Exactly one match in matches[1], indicate this is the one
4353 * in matches[0].
4355 info.matches[0] = info.matches[1];
4356 info.matches[1] = NULL;
4357 info.count -= 1;
4358 TALLOC_FREE(ctx);
4359 return info.matches;
4363 * We got more than one possible match, set the result to the maximum
4364 * common subset
4367 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4368 info.matches[info.count] = NULL;
4369 return info.matches;
4371 cleanup:
4372 for (i = 0; i < info.count; i++) {
4373 SAFE_FREE(info.matches[i]);
4375 SAFE_FREE(info.matches);
4376 SAFE_FREE(info.dirmask);
4377 TALLOC_FREE(ctx);
4378 return NULL;
4381 static char **completion_fn(const char *text, int start, int end)
4383 smb_readline_ca_char(' ');
4385 if (start) {
4386 const char *buf, *sp;
4387 int i;
4388 char compl_type;
4390 buf = smb_readline_get_line_buffer();
4391 if (buf == NULL)
4392 return NULL;
4394 sp = strchr(buf, ' ');
4395 if (sp == NULL)
4396 return NULL;
4398 for (i = 0; commands[i].name; i++) {
4399 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4400 (commands[i].name[sp - buf] == 0)) {
4401 break;
4404 if (commands[i].name == NULL)
4405 return NULL;
4407 while (*sp == ' ')
4408 sp++;
4410 if (sp == (buf + start))
4411 compl_type = commands[i].compl_args[0];
4412 else
4413 compl_type = commands[i].compl_args[1];
4415 if (compl_type == COMPL_REMOTE)
4416 return remote_completion(text, end - start);
4417 else /* fall back to local filename completion */
4418 return NULL;
4419 } else {
4420 char **matches;
4421 int i, len, samelen = 0, count=1;
4423 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4424 if (!matches) {
4425 return NULL;
4427 matches[0] = NULL;
4429 len = strlen(text);
4430 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4431 if (strncmp(text, commands[i].name, len) == 0) {
4432 matches[count] = SMB_STRDUP(commands[i].name);
4433 if (!matches[count])
4434 goto cleanup;
4435 if (count == 1)
4436 samelen = strlen(matches[count]);
4437 else
4438 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4439 samelen--;
4440 count++;
4444 switch (count) {
4445 case 0: /* should never happen */
4446 case 1:
4447 goto cleanup;
4448 case 2:
4449 matches[0] = SMB_STRDUP(matches[1]);
4450 break;
4451 default:
4452 matches[0] = (char *)SMB_MALLOC(samelen+1);
4453 if (!matches[0])
4454 goto cleanup;
4455 strncpy(matches[0], matches[1], samelen);
4456 matches[0][samelen] = 0;
4458 matches[count] = NULL;
4459 return matches;
4461 cleanup:
4462 for (i = 0; i < count; i++)
4463 free(matches[i]);
4465 free(matches);
4466 return NULL;
4470 static bool finished;
4472 /****************************************************************************
4473 Make sure we swallow keepalives during idle time.
4474 ****************************************************************************/
4476 static void readline_callback(void)
4478 fd_set fds;
4479 struct timeval timeout;
4480 static time_t last_t;
4481 struct timespec now;
4482 time_t t;
4484 clock_gettime_mono(&now);
4485 t = now.tv_sec;
4487 if (t - last_t < 5)
4488 return;
4490 last_t = t;
4492 again:
4494 if (cli->fd == -1)
4495 return;
4497 FD_ZERO(&fds);
4498 FD_SET(cli->fd,&fds);
4500 timeout.tv_sec = 0;
4501 timeout.tv_usec = 0;
4502 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4504 /* We deliberately use receive_smb_raw instead of
4505 client_receive_smb as we want to receive
4506 session keepalives and then drop them here.
4508 if (FD_ISSET(cli->fd,&fds)) {
4509 NTSTATUS status;
4510 size_t len;
4512 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4514 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4516 if (!NT_STATUS_IS_OK(status)) {
4517 DEBUG(0, ("Read from server failed, maybe it closed "
4518 "the connection\n"));
4520 finished = true;
4521 smb_readline_done();
4522 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4523 set_smb_read_error(&cli->smb_rw_error,
4524 SMB_READ_EOF);
4525 return;
4528 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4529 set_smb_read_error(&cli->smb_rw_error,
4530 SMB_READ_TIMEOUT);
4531 return;
4534 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4535 return;
4537 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4538 DEBUG(0, ("Read from server "
4539 "returned unexpected packet!\n"));
4540 return;
4543 goto again;
4546 /* Ping the server to keep the connection alive using SMBecho. */
4548 NTSTATUS status;
4549 unsigned char garbage[16];
4550 memset(garbage, 0xf0, sizeof(garbage));
4551 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4553 if (!NT_STATUS_IS_OK(status)) {
4554 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4555 "the connection\n"));
4556 finished = true;
4557 smb_readline_done();
4562 /****************************************************************************
4563 Process commands on stdin.
4564 ****************************************************************************/
4566 static int process_stdin(void)
4568 int rc = 0;
4570 while (!finished) {
4571 TALLOC_CTX *frame = talloc_stackframe();
4572 char *tok = NULL;
4573 char *the_prompt = NULL;
4574 char *line = NULL;
4575 int i;
4577 /* display a prompt */
4578 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4579 TALLOC_FREE(frame);
4580 break;
4582 line = smb_readline(the_prompt, readline_callback, completion_fn);
4583 SAFE_FREE(the_prompt);
4584 if (!line) {
4585 TALLOC_FREE(frame);
4586 break;
4589 /* special case - first char is ! */
4590 if (*line == '!') {
4591 if (system(line + 1) == -1) {
4592 d_printf("system() command %s failed.\n",
4593 line+1);
4595 SAFE_FREE(line);
4596 TALLOC_FREE(frame);
4597 continue;
4600 /* and get the first part of the command */
4601 cmd_ptr = line;
4602 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4603 TALLOC_FREE(frame);
4604 SAFE_FREE(line);
4605 continue;
4608 if ((i = process_tok(tok)) >= 0) {
4609 rc = commands[i].fn();
4610 } else if (i == -2) {
4611 d_printf("%s: command abbreviation ambiguous\n",tok);
4612 } else {
4613 d_printf("%s: command not found\n",tok);
4615 SAFE_FREE(line);
4616 TALLOC_FREE(frame);
4618 return rc;
4621 /****************************************************************************
4622 Process commands from the client.
4623 ****************************************************************************/
4625 static int process(const char *base_directory)
4627 int rc = 0;
4629 cli = cli_cm_open(talloc_tos(), NULL,
4630 have_ip ? dest_ss_str : desthost,
4631 service, auth_info, true, smb_encrypt,
4632 max_protocol, port, name_type);
4633 if (!cli) {
4634 return 1;
4637 if (base_directory && *base_directory) {
4638 rc = do_cd(base_directory);
4639 if (rc) {
4640 cli_shutdown(cli);
4641 return rc;
4645 if (cmdstr) {
4646 rc = process_command_string(cmdstr);
4647 } else {
4648 process_stdin();
4651 cli_shutdown(cli);
4652 return rc;
4655 /****************************************************************************
4656 Handle a -L query.
4657 ****************************************************************************/
4659 static int do_host_query(const char *query_host)
4661 cli = cli_cm_open(talloc_tos(), NULL,
4662 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4663 max_protocol, port, name_type);
4664 if (!cli)
4665 return 1;
4667 browse_host(true);
4669 /* Ensure that the host can do IPv4 */
4671 if (!interpret_addr(query_host)) {
4672 struct sockaddr_storage ss;
4673 if (interpret_string_addr(&ss, query_host, 0) &&
4674 (ss.ss_family != AF_INET)) {
4675 d_printf("%s is an IPv6 address -- no workgroup available\n",
4676 query_host);
4677 return 1;
4681 if (port != 139) {
4683 /* Workgroups simply don't make sense over anything
4684 else but port 139... */
4686 cli_shutdown(cli);
4687 cli = cli_cm_open(talloc_tos(), NULL,
4688 have_ip ? dest_ss_str : query_host, "IPC$",
4689 auth_info, true, smb_encrypt,
4690 max_protocol, 139, name_type);
4693 if (cli == NULL) {
4694 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4695 return 1;
4698 list_servers(lp_workgroup());
4700 cli_shutdown(cli);
4702 return(0);
4705 /****************************************************************************
4706 Handle a tar operation.
4707 ****************************************************************************/
4709 static int do_tar_op(const char *base_directory)
4711 int ret;
4713 /* do we already have a connection? */
4714 if (!cli) {
4715 cli = cli_cm_open(talloc_tos(), NULL,
4716 have_ip ? dest_ss_str : desthost,
4717 service, auth_info, true, smb_encrypt,
4718 max_protocol, port, name_type);
4719 if (!cli)
4720 return 1;
4723 recurse=true;
4725 if (base_directory && *base_directory) {
4726 ret = do_cd(base_directory);
4727 if (ret) {
4728 cli_shutdown(cli);
4729 return ret;
4733 ret=process_tar();
4735 cli_shutdown(cli);
4737 return(ret);
4740 /****************************************************************************
4741 Handle a message operation.
4742 ****************************************************************************/
4744 static int do_message_op(struct user_auth_info *a_info)
4746 struct sockaddr_storage ss;
4747 struct nmb_name called, calling;
4748 fstring server_name;
4749 char name_type_hex[10];
4750 int msg_port;
4751 NTSTATUS status;
4753 make_nmb_name(&calling, calling_name, 0x0);
4754 make_nmb_name(&called , desthost, name_type);
4756 fstrcpy(server_name, desthost);
4757 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4758 fstrcat(server_name, name_type_hex);
4760 zero_sockaddr(&ss);
4761 if (have_ip)
4762 ss = dest_ss;
4764 /* we can only do messages over port 139 (to windows clients at least) */
4766 msg_port = port ? port : 139;
4768 if (!(cli=cli_initialise())) {
4769 d_printf("Connection to %s failed\n", desthost);
4770 return 1;
4772 cli_set_port(cli, msg_port);
4774 status = cli_connect(cli, server_name, &ss);
4775 if (!NT_STATUS_IS_OK(status)) {
4776 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4777 return 1;
4780 if (!cli_session_request(cli, &calling, &called)) {
4781 d_printf("session request failed\n");
4782 cli_shutdown(cli);
4783 return 1;
4786 send_message(get_cmdline_auth_info_username(a_info));
4787 cli_shutdown(cli);
4789 return 0;
4792 /****************************************************************************
4793 main program
4794 ****************************************************************************/
4796 int main(int argc,char *argv[])
4798 char *base_directory = NULL;
4799 int opt;
4800 char *query_host = NULL;
4801 bool message = false;
4802 static const char *new_name_resolve_order = NULL;
4803 poptContext pc;
4804 char *p;
4805 int rc = 0;
4806 fstring new_workgroup;
4807 bool tar_opt = false;
4808 bool service_opt = false;
4809 struct poptOption long_options[] = {
4810 POPT_AUTOHELP
4812 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4813 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4814 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4815 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4816 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4817 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4818 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4819 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4820 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4821 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4822 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4823 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4824 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4825 POPT_COMMON_SAMBA
4826 POPT_COMMON_CONNECTION
4827 POPT_COMMON_CREDENTIALS
4828 POPT_TABLEEND
4830 TALLOC_CTX *frame = talloc_stackframe();
4832 if (!client_set_cur_dir("\\")) {
4833 exit(ENOMEM);
4836 /* initialize the workgroup name so we can determine whether or
4837 not it was set by a command line option */
4839 set_global_myworkgroup( "" );
4840 set_global_myname( "" );
4842 /* set default debug level to 1 regardless of what smb.conf sets */
4843 setup_logging( "smbclient", true );
4844 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4845 if ((dbf = x_fdup(x_stderr))) {
4846 x_setbuf( dbf, NULL );
4849 load_case_tables();
4851 auth_info = user_auth_info_init(frame);
4852 if (auth_info == NULL) {
4853 exit(1);
4855 popt_common_set_auth_info(auth_info);
4857 /* skip argv(0) */
4858 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4859 poptSetOtherOptionHelp(pc, "service <password>");
4861 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4863 while ((opt = poptGetNextOpt(pc)) != -1) {
4865 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4866 /* I see no other way to keep things sane --SSS */
4867 if (tar_opt == true) {
4868 while (poptPeekArg(pc)) {
4869 poptGetArg(pc);
4871 tar_opt = false;
4874 /* if the service has not yet been specified lets see if it is available in the popt stack */
4875 if (!service_opt && poptPeekArg(pc)) {
4876 service = talloc_strdup(frame, poptGetArg(pc));
4877 if (!service) {
4878 exit(ENOMEM);
4880 service_opt = true;
4883 /* if the service has already been retrieved then check if we have also a password */
4884 if (service_opt
4885 && (!get_cmdline_auth_info_got_pass(auth_info))
4886 && poptPeekArg(pc)) {
4887 set_cmdline_auth_info_password(auth_info,
4888 poptGetArg(pc));
4891 switch (opt) {
4892 case 'M':
4893 /* Messages are sent to NetBIOS name type 0x3
4894 * (Messenger Service). Make sure we default
4895 * to port 139 instead of port 445. srl,crh
4897 name_type = 0x03;
4898 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4899 if (!desthost) {
4900 exit(ENOMEM);
4902 if( !port )
4903 port = 139;
4904 message = true;
4905 break;
4906 case 'I':
4908 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4909 exit(1);
4911 have_ip = true;
4912 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4914 break;
4915 case 'E':
4916 if (dbf) {
4917 x_fclose(dbf);
4919 dbf = x_stderr;
4920 display_set_stderr();
4921 break;
4923 case 'L':
4924 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4925 if (!query_host) {
4926 exit(ENOMEM);
4928 break;
4929 case 'm':
4930 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4931 break;
4932 case 'T':
4933 /* We must use old option processing for this. Find the
4934 * position of the -T option in the raw argv[]. */
4936 int i;
4937 for (i = 1; i < argc; i++) {
4938 if (strncmp("-T", argv[i],2)==0)
4939 break;
4941 i++;
4942 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4943 poptPrintUsage(pc, stderr, 0);
4944 exit(1);
4947 /* this must be the last option, mark we have parsed it so that we know we have */
4948 tar_opt = true;
4949 break;
4950 case 'D':
4951 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4952 if (!base_directory) {
4953 exit(ENOMEM);
4955 break;
4956 case 'g':
4957 grepable=true;
4958 break;
4959 case 'e':
4960 smb_encrypt=true;
4961 break;
4962 case 'B':
4963 return(do_smb_browse());
4968 /* We may still have some leftovers after the last popt option has been called */
4969 if (tar_opt == true) {
4970 while (poptPeekArg(pc)) {
4971 poptGetArg(pc);
4973 tar_opt = false;
4976 /* if the service has not yet been specified lets see if it is available in the popt stack */
4977 if (!service_opt && poptPeekArg(pc)) {
4978 service = talloc_strdup(frame,poptGetArg(pc));
4979 if (!service) {
4980 exit(ENOMEM);
4982 service_opt = true;
4985 /* if the service has already been retrieved then check if we have also a password */
4986 if (service_opt
4987 && !get_cmdline_auth_info_got_pass(auth_info)
4988 && poptPeekArg(pc)) {
4989 set_cmdline_auth_info_password(auth_info,
4990 poptGetArg(pc));
4994 * Don't load debug level from smb.conf. It should be
4995 * set by cmdline arg or remain default (0)
4997 AllowDebugChange = false;
4999 /* save the workgroup...
5001 FIXME!! do we need to do this for other options as well
5002 (or maybe a generic way to keep lp_load() from overwriting
5003 everything)? */
5005 fstrcpy( new_workgroup, lp_workgroup() );
5006 calling_name = talloc_strdup(frame, global_myname() );
5007 if (!calling_name) {
5008 exit(ENOMEM);
5011 if ( override_logfile )
5012 setup_logging( lp_logfile(), false );
5014 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5015 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5016 argv[0], get_dyn_CONFIGFILE());
5019 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5020 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5021 exit(-1);
5024 load_interfaces();
5026 if (service_opt && service) {
5027 size_t len;
5029 /* Convert any '/' characters in the service name to '\' characters */
5030 string_replace(service, '/','\\');
5031 if (count_chars(service,'\\') < 3) {
5032 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5033 poptPrintUsage(pc, stderr, 0);
5034 exit(1);
5036 /* Remove trailing slashes */
5037 len = strlen(service);
5038 while(len > 0 && service[len - 1] == '\\') {
5039 --len;
5040 service[len] = '\0';
5044 if ( strlen(new_workgroup) != 0 ) {
5045 set_global_myworkgroup( new_workgroup );
5048 if ( strlen(calling_name) != 0 ) {
5049 set_global_myname( calling_name );
5050 } else {
5051 TALLOC_FREE(calling_name);
5052 calling_name = talloc_strdup(frame, global_myname() );
5055 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5056 if (!init_names()) {
5057 fprintf(stderr, "init_names() failed\n");
5058 exit(1);
5061 if(new_name_resolve_order)
5062 lp_set_name_resolve_order(new_name_resolve_order);
5064 if (!tar_type && !query_host && !service && !message) {
5065 poptPrintUsage(pc, stderr, 0);
5066 exit(1);
5069 poptFreeContext(pc);
5071 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5073 /* Ensure we have a password (or equivalent). */
5074 set_cmdline_auth_info_getpass(auth_info);
5076 if (tar_type) {
5077 if (cmdstr)
5078 process_command_string(cmdstr);
5079 return do_tar_op(base_directory);
5082 if (query_host && *query_host) {
5083 char *qhost = query_host;
5084 char *slash;
5086 while (*qhost == '\\' || *qhost == '/')
5087 qhost++;
5089 if ((slash = strchr_m(qhost, '/'))
5090 || (slash = strchr_m(qhost, '\\'))) {
5091 *slash = 0;
5094 if ((p=strchr_m(qhost, '#'))) {
5095 *p = 0;
5096 p++;
5097 sscanf(p, "%x", &name_type);
5100 return do_host_query(qhost);
5103 if (message) {
5104 return do_message_op(auth_info);
5107 if (process(base_directory)) {
5108 return 1;
5111 TALLOC_FREE(frame);
5112 return rc;