charset/tests/iconv - Remove the "const" from "ptr_in" to prevent "discard_const_p...
[Samba/ekacnet.git] / source3 / client / client.c
blob6773e6d90a795213a19eba57ddc5718a5eaed40f
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 "client/client_proto.h"
26 #include "include/rpc_client.h"
27 #ifndef REGISTER
28 #define REGISTER 0
29 #endif
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
35 extern char tar_type;
37 static int port = 0;
38 static char *service;
39 static char *desthost;
40 static char *calling_name;
41 static bool grepable = false;
42 static char *cmdstr = NULL;
43 const char *cmd_ptr = NULL;
45 static int io_bufsize = 524288;
47 static int name_type = 0x20;
48 static int max_protocol = PROTOCOL_NT1;
50 static int process_tok(char *tok);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than = 0;
63 static int archive_level = 0;
65 static bool translation = false;
66 static bool have_ip;
68 /* clitar bits insert */
69 extern int blocksize;
70 extern bool tar_inc;
71 extern bool tar_reset;
72 /* clitar bits end */
74 static bool prompt = true;
76 static bool recurse = false;
77 static bool showacls = false;
78 bool lowercase = false;
80 static struct sockaddr_storage dest_ss;
81 static char dest_ss_str[INET6_ADDRSTRLEN];
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget = true;
87 /* timing globals */
88 uint64_t get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static uint64_t put_total_size = 0;
91 static unsigned int put_total_time_ms = 0;
93 /* totals globals */
94 static double dir_total;
96 /* encrypted state. */
97 static bool smb_encrypt;
99 /* root cli_state connection */
101 struct cli_state *cli;
103 static char CLI_DIRSEP_CHAR = '\\';
104 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
106 /* Authentication for client connections. */
107 struct user_auth_info *auth_info;
109 /* Accessor functions for directory paths. */
110 static char *fileselection;
111 static const char *client_get_fileselection(void)
113 if (fileselection) {
114 return fileselection;
116 return "";
119 static const char *client_set_fileselection(const char *new_fs)
121 SAFE_FREE(fileselection);
122 if (new_fs) {
123 fileselection = SMB_STRDUP(new_fs);
125 return client_get_fileselection();
128 static char *cwd;
129 static const char *client_get_cwd(void)
131 if (cwd) {
132 return cwd;
134 return CLI_DIRSEP_STR;
137 static const char *client_set_cwd(const char *new_cwd)
139 SAFE_FREE(cwd);
140 if (new_cwd) {
141 cwd = SMB_STRDUP(new_cwd);
143 return client_get_cwd();
146 static char *cur_dir;
147 const char *client_get_cur_dir(void)
149 if (cur_dir) {
150 return cur_dir;
152 return CLI_DIRSEP_STR;
155 const char *client_set_cur_dir(const char *newdir)
157 SAFE_FREE(cur_dir);
158 if (newdir) {
159 cur_dir = SMB_STRDUP(newdir);
161 return client_get_cur_dir();
164 /****************************************************************************
165 Write to a local file with CR/LF->LF translation if appropriate. Return the
166 number taken from the buffer. This may not equal the number written.
167 ****************************************************************************/
169 static int writefile(int f, char *b, int n)
171 int i;
173 if (!translation) {
174 return write(f,b,n);
177 i = 0;
178 while (i < n) {
179 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
180 b++;i++;
182 if (write(f, b, 1) != 1) {
183 break;
185 b++;
186 i++;
189 return(i);
192 /****************************************************************************
193 Read from a file with LF->CR/LF translation if appropriate. Return the
194 number read. read approx n bytes.
195 ****************************************************************************/
197 static int readfile(uint8_t *b, int n, XFILE *f)
199 int i;
200 int c;
202 if (!translation)
203 return x_fread(b,1,n,f);
205 i = 0;
206 while (i < (n - 1) && (i < BUFFER_SIZE)) {
207 if ((c = x_getc(f)) == EOF) {
208 break;
211 if (c == '\n') { /* change all LFs to CR/LF */
212 b[i++] = '\r';
215 b[i++] = c;
218 return(i);
221 struct push_state {
222 XFILE *f;
223 SMB_OFF_T nread;
226 static size_t push_source(uint8_t *buf, size_t n, void *priv)
228 struct push_state *state = (struct push_state *)priv;
229 int result;
231 if (x_feof(state->f)) {
232 return 0;
235 result = readfile(buf, n, state->f);
236 state->nread += result;
237 return result;
240 /****************************************************************************
241 Send a message.
242 ****************************************************************************/
244 static void send_message(const char *username)
246 char buf[1600];
247 NTSTATUS status;
248 int i;
250 d_printf("Type your message, ending it with a Control-D\n");
252 i = 0;
253 while (i<sizeof(buf)-2) {
254 int c = fgetc(stdin);
255 if (c == EOF) {
256 break;
258 if (c == '\n') {
259 buf[i++] = '\r';
261 buf[i++] = c;
263 buf[i] = '\0';
265 status = cli_message(cli, desthost, username, buf);
266 if (!NT_STATUS_IS_OK(status)) {
267 d_fprintf(stderr, "cli_message returned %s\n",
268 nt_errstr(status));
272 /****************************************************************************
273 Check the space on a device.
274 ****************************************************************************/
276 static int do_dskattr(void)
278 int total, bsize, avail;
279 struct cli_state *targetcli = NULL;
280 char *targetpath = NULL;
281 TALLOC_CTX *ctx = talloc_tos();
283 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
284 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
285 return 1;
288 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
289 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
290 return 1;
293 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
294 total, bsize, avail);
296 return 0;
299 /****************************************************************************
300 Show cd/pwd.
301 ****************************************************************************/
303 static int cmd_pwd(void)
305 d_printf("Current directory is %s",service);
306 d_printf("%s\n",client_get_cur_dir());
307 return 0;
310 /****************************************************************************
311 Ensure name has correct directory separators.
312 ****************************************************************************/
314 static void normalize_name(char *newdir)
316 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
317 string_replace(newdir,'/','\\');
321 /****************************************************************************
322 Change directory - inner section.
323 ****************************************************************************/
325 static int do_cd(const char *new_dir)
327 char *newdir = NULL;
328 char *saved_dir = NULL;
329 char *new_cd = NULL;
330 char *targetpath = NULL;
331 struct cli_state *targetcli = NULL;
332 SMB_STRUCT_STAT sbuf;
333 uint32 attributes;
334 int ret = 1;
335 TALLOC_CTX *ctx = talloc_stackframe();
337 newdir = talloc_strdup(ctx, new_dir);
338 if (!newdir) {
339 TALLOC_FREE(ctx);
340 return 1;
343 normalize_name(newdir);
345 /* Save the current directory in case the new directory is invalid */
347 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
348 if (!saved_dir) {
349 TALLOC_FREE(ctx);
350 return 1;
353 if (*newdir == CLI_DIRSEP_CHAR) {
354 client_set_cur_dir(newdir);
355 new_cd = newdir;
356 } else {
357 new_cd = talloc_asprintf(ctx, "%s%s",
358 client_get_cur_dir(),
359 newdir);
360 if (!new_cd) {
361 goto out;
365 /* Ensure cur_dir ends in a DIRSEP */
366 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
367 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
368 if (!new_cd) {
369 goto out;
372 client_set_cur_dir(new_cd);
374 new_cd = clean_name(ctx, new_cd);
375 client_set_cur_dir(new_cd);
377 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
378 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
379 client_set_cur_dir(saved_dir);
380 goto out;
383 if (strequal(targetpath,CLI_DIRSEP_STR )) {
384 TALLOC_FREE(ctx);
385 return 0;
388 /* Use a trans2_qpathinfo to test directories for modern servers.
389 Except Win9x doesn't support the qpathinfo_basic() call..... */
391 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
392 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
393 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
394 client_set_cur_dir(saved_dir);
395 goto out;
398 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
399 d_printf("cd %s: not a directory\n", new_cd);
400 client_set_cur_dir(saved_dir);
401 goto out;
403 } else {
404 targetpath = talloc_asprintf(ctx,
405 "%s%s",
406 targetpath,
407 CLI_DIRSEP_STR );
408 if (!targetpath) {
409 client_set_cur_dir(saved_dir);
410 goto out;
412 targetpath = clean_name(ctx, targetpath);
413 if (!targetpath) {
414 client_set_cur_dir(saved_dir);
415 goto out;
418 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
419 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
420 client_set_cur_dir(saved_dir);
421 goto out;
425 ret = 0;
427 out:
429 TALLOC_FREE(ctx);
430 return ret;
433 /****************************************************************************
434 Change directory.
435 ****************************************************************************/
437 static int cmd_cd(void)
439 char *buf = NULL;
440 int rc = 0;
442 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
443 rc = do_cd(buf);
444 } else {
445 d_printf("Current directory is %s\n",client_get_cur_dir());
448 return rc;
451 /****************************************************************************
452 Change directory.
453 ****************************************************************************/
455 static int cmd_cd_oneup(void)
457 return do_cd("..");
460 /*******************************************************************
461 Decide if a file should be operated on.
462 ********************************************************************/
464 static bool do_this_one(file_info *finfo)
466 if (!finfo->name) {
467 return false;
470 if (finfo->mode & aDIR) {
471 return true;
474 if (*client_get_fileselection() &&
475 !mask_match(finfo->name,client_get_fileselection(),false)) {
476 DEBUG(3,("mask_match %s failed\n", finfo->name));
477 return false;
480 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
481 DEBUG(3,("newer_than %s failed\n", finfo->name));
482 return false;
485 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
486 DEBUG(3,("archive %s failed\n", finfo->name));
487 return false;
490 return true;
493 /****************************************************************************
494 Display info about a file.
495 ****************************************************************************/
497 static void display_finfo(file_info *finfo, const char *dir)
499 time_t t;
500 TALLOC_CTX *ctx = talloc_tos();
502 if (!do_this_one(finfo)) {
503 return;
506 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
507 if (!showacls) {
508 d_printf(" %-30s%7.7s %8.0f %s",
509 finfo->name,
510 attrib_string(finfo->mode),
511 (double)finfo->size,
512 time_to_asc(t));
513 dir_total += finfo->size;
514 } else {
515 char *afname = NULL;
516 uint16_t fnum;
518 /* skip if this is . or .. */
519 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
520 return;
521 /* create absolute filename for cli_ntcreate() FIXME */
522 afname = talloc_asprintf(ctx,
523 "%s%s%s",
524 dir,
525 CLI_DIRSEP_STR,
526 finfo->name);
527 if (!afname) {
528 return;
530 /* print file meta date header */
531 d_printf( "FILENAME:%s\n", finfo->name);
532 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
533 d_printf( "SIZE:%.0f\n", (double)finfo->size);
534 d_printf( "MTIME:%s", time_to_asc(t));
535 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo->cli, afname, 0,
536 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
537 FILE_OPEN, 0x0, 0x0, &fnum))) {
538 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
539 afname,
540 cli_errstr( finfo->cli)));
541 } else {
542 SEC_DESC *sd = NULL;
543 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
544 if (!sd) {
545 DEBUG( 0, ("display_finfo() failed to "
546 "get security descriptor: %s",
547 cli_errstr( finfo->cli)));
548 } else {
549 display_sec_desc(sd);
551 TALLOC_FREE(sd);
553 TALLOC_FREE(afname);
557 /****************************************************************************
558 Accumulate size of a file.
559 ****************************************************************************/
561 static void do_du(file_info *finfo, const char *dir)
563 if (do_this_one(finfo)) {
564 dir_total += finfo->size;
568 static bool do_list_recurse;
569 static bool do_list_dirs;
570 static char *do_list_queue = 0;
571 static long do_list_queue_size = 0;
572 static long do_list_queue_start = 0;
573 static long do_list_queue_end = 0;
574 static void (*do_list_fn)(file_info *, const char *dir);
576 /****************************************************************************
577 Functions for do_list_queue.
578 ****************************************************************************/
581 * The do_list_queue is a NUL-separated list of strings stored in a
582 * char*. Since this is a FIFO, we keep track of the beginning and
583 * ending locations of the data in the queue. When we overflow, we
584 * double the size of the char*. When the start of the data passes
585 * the midpoint, we move everything back. This is logically more
586 * complex than a linked list, but easier from a memory management
587 * angle. In any memory error condition, do_list_queue is reset.
588 * Functions check to ensure that do_list_queue is non-NULL before
589 * accessing it.
592 static void reset_do_list_queue(void)
594 SAFE_FREE(do_list_queue);
595 do_list_queue_size = 0;
596 do_list_queue_start = 0;
597 do_list_queue_end = 0;
600 static void init_do_list_queue(void)
602 reset_do_list_queue();
603 do_list_queue_size = 1024;
604 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
605 if (do_list_queue == 0) {
606 d_printf("malloc fail for size %d\n",
607 (int)do_list_queue_size);
608 reset_do_list_queue();
609 } else {
610 memset(do_list_queue, 0, do_list_queue_size);
614 static void adjust_do_list_queue(void)
617 * If the starting point of the queue is more than half way through,
618 * move everything toward the beginning.
621 if (do_list_queue == NULL) {
622 DEBUG(4,("do_list_queue is empty\n"));
623 do_list_queue_start = do_list_queue_end = 0;
624 return;
627 if (do_list_queue_start == do_list_queue_end) {
628 DEBUG(4,("do_list_queue is empty\n"));
629 do_list_queue_start = do_list_queue_end = 0;
630 *do_list_queue = '\0';
631 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
632 DEBUG(4,("sliding do_list_queue backward\n"));
633 memmove(do_list_queue,
634 do_list_queue + do_list_queue_start,
635 do_list_queue_end - do_list_queue_start);
636 do_list_queue_end -= do_list_queue_start;
637 do_list_queue_start = 0;
641 static void add_to_do_list_queue(const char *entry)
643 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
644 while (new_end > do_list_queue_size) {
645 do_list_queue_size *= 2;
646 DEBUG(4,("enlarging do_list_queue to %d\n",
647 (int)do_list_queue_size));
648 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
649 if (! do_list_queue) {
650 d_printf("failure enlarging do_list_queue to %d bytes\n",
651 (int)do_list_queue_size);
652 reset_do_list_queue();
653 } else {
654 memset(do_list_queue + do_list_queue_size / 2,
655 0, do_list_queue_size / 2);
658 if (do_list_queue) {
659 safe_strcpy_base(do_list_queue + do_list_queue_end,
660 entry, do_list_queue, do_list_queue_size);
661 do_list_queue_end = new_end;
662 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
663 entry, (int)do_list_queue_start, (int)do_list_queue_end));
667 static char *do_list_queue_head(void)
669 return do_list_queue + do_list_queue_start;
672 static void remove_do_list_queue_head(void)
674 if (do_list_queue_end > do_list_queue_start) {
675 do_list_queue_start += strlen(do_list_queue_head()) + 1;
676 adjust_do_list_queue();
677 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
678 (int)do_list_queue_start, (int)do_list_queue_end));
682 static int do_list_queue_empty(void)
684 return (! (do_list_queue && *do_list_queue));
687 /****************************************************************************
688 A helper for do_list.
689 ****************************************************************************/
691 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
693 TALLOC_CTX *ctx = talloc_tos();
694 char *dir = NULL;
695 char *dir_end = NULL;
697 /* Work out the directory. */
698 dir = talloc_strdup(ctx, mask);
699 if (!dir) {
700 return;
702 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
703 *dir_end = '\0';
706 if (f->mode & aDIR) {
707 if (do_list_dirs && do_this_one(f)) {
708 do_list_fn(f, dir);
710 if (do_list_recurse &&
711 f->name &&
712 !strequal(f->name,".") &&
713 !strequal(f->name,"..")) {
714 char *mask2 = NULL;
715 char *p = NULL;
717 if (!f->name[0]) {
718 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
719 TALLOC_FREE(dir);
720 return;
723 mask2 = talloc_asprintf(ctx,
724 "%s%s",
725 mntpoint,
726 mask);
727 if (!mask2) {
728 TALLOC_FREE(dir);
729 return;
731 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
732 if (p) {
733 p[1] = 0;
734 } else {
735 mask2[0] = '\0';
737 mask2 = talloc_asprintf_append(mask2,
738 "%s%s*",
739 f->name,
740 CLI_DIRSEP_STR);
741 if (!mask2) {
742 TALLOC_FREE(dir);
743 return;
745 add_to_do_list_queue(mask2);
746 TALLOC_FREE(mask2);
748 TALLOC_FREE(dir);
749 return;
752 if (do_this_one(f)) {
753 do_list_fn(f,dir);
755 TALLOC_FREE(dir);
758 /****************************************************************************
759 A wrapper around cli_list that adds recursion.
760 ****************************************************************************/
762 void do_list(const char *mask,
763 uint16 attribute,
764 void (*fn)(file_info *, const char *dir),
765 bool rec,
766 bool dirs)
768 static int in_do_list = 0;
769 TALLOC_CTX *ctx = talloc_tos();
770 struct cli_state *targetcli = NULL;
771 char *targetpath = NULL;
773 if (in_do_list && rec) {
774 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
775 exit(1);
778 in_do_list = 1;
780 do_list_recurse = rec;
781 do_list_dirs = dirs;
782 do_list_fn = fn;
784 if (rec) {
785 init_do_list_queue();
786 add_to_do_list_queue(mask);
788 while (!do_list_queue_empty()) {
790 * Need to copy head so that it doesn't become
791 * invalid inside the call to cli_list. This
792 * would happen if the list were expanded
793 * during the call.
794 * Fix from E. Jay Berkenbilt (ejb@ql.org)
796 char *head = talloc_strdup(ctx, do_list_queue_head());
798 if (!head) {
799 return;
802 /* check for dfs */
804 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
805 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
806 remove_do_list_queue_head();
807 continue;
810 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
811 remove_do_list_queue_head();
812 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
813 char *next_file = do_list_queue_head();
814 char *save_ch = 0;
815 if ((strlen(next_file) >= 2) &&
816 (next_file[strlen(next_file) - 1] == '*') &&
817 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
818 save_ch = next_file +
819 strlen(next_file) - 2;
820 *save_ch = '\0';
821 if (showacls) {
822 /* cwd is only used if showacls is on */
823 client_set_cwd(next_file);
826 if (!showacls) /* don't disturbe the showacls output */
827 d_printf("\n%s\n",next_file);
828 if (save_ch) {
829 *save_ch = CLI_DIRSEP_CHAR;
832 TALLOC_FREE(head);
833 TALLOC_FREE(targetpath);
835 } else {
836 /* check for dfs */
837 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
838 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
839 d_printf("%s listing %s\n",
840 cli_errstr(targetcli), targetpath);
842 TALLOC_FREE(targetpath);
843 } else {
844 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
848 in_do_list = 0;
849 reset_do_list_queue();
852 /****************************************************************************
853 Get a directory listing.
854 ****************************************************************************/
856 static int cmd_dir(void)
858 TALLOC_CTX *ctx = talloc_tos();
859 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
860 char *mask = NULL;
861 char *buf = NULL;
862 int rc = 1;
864 dir_total = 0;
865 mask = talloc_strdup(ctx, client_get_cur_dir());
866 if (!mask) {
867 return 1;
870 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
871 normalize_name(buf);
872 if (*buf == CLI_DIRSEP_CHAR) {
873 mask = talloc_strdup(ctx, buf);
874 } else {
875 mask = talloc_asprintf_append(mask, "%s", buf);
877 } else {
878 mask = talloc_asprintf_append(mask, "*");
880 if (!mask) {
881 return 1;
884 if (showacls) {
885 /* cwd is only used if showacls is on */
886 client_set_cwd(client_get_cur_dir());
889 do_list(mask, attribute, display_finfo, recurse, true);
891 rc = do_dskattr();
893 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
895 return rc;
898 /****************************************************************************
899 Get a directory listing.
900 ****************************************************************************/
902 static int cmd_du(void)
904 TALLOC_CTX *ctx = talloc_tos();
905 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
906 char *mask = NULL;
907 char *buf = NULL;
908 int rc = 1;
910 dir_total = 0;
911 mask = talloc_strdup(ctx, client_get_cur_dir());
912 if (!mask) {
913 return 1;
915 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
916 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
917 if (!mask) {
918 return 1;
922 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
923 normalize_name(buf);
924 if (*buf == CLI_DIRSEP_CHAR) {
925 mask = talloc_strdup(ctx, buf);
926 } else {
927 mask = talloc_asprintf_append(mask, "%s", buf);
929 } else {
930 mask = talloc_strdup(ctx, "*");
933 do_list(mask, attribute, do_du, recurse, true);
935 rc = do_dskattr();
937 d_printf("Total number of bytes: %.0f\n", dir_total);
939 return rc;
942 static int cmd_echo(void)
944 TALLOC_CTX *ctx = talloc_tos();
945 char *num;
946 char *data;
947 NTSTATUS status;
949 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
950 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
951 d_printf("echo <num> <data>\n");
952 return 1;
955 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
957 if (!NT_STATUS_IS_OK(status)) {
958 d_printf("echo failed: %s\n", nt_errstr(status));
959 return 1;
962 return 0;
965 /****************************************************************************
966 Get a file from rname to lname
967 ****************************************************************************/
969 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
971 int *pfd = (int *)priv;
972 if (writefile(*pfd, buf, n) == -1) {
973 return map_nt_error_from_unix(errno);
975 return NT_STATUS_OK;
978 static int do_get(const char *rname, const char *lname_in, bool reget)
980 TALLOC_CTX *ctx = talloc_tos();
981 int handle = 0;
982 uint16_t fnum;
983 bool newhandle = false;
984 struct timeval tp_start;
985 uint16 attr;
986 SMB_OFF_T size;
987 off_t start = 0;
988 SMB_OFF_T nread = 0;
989 int rc = 0;
990 struct cli_state *targetcli = NULL;
991 char *targetname = NULL;
992 char *lname = NULL;
993 NTSTATUS status;
995 lname = talloc_strdup(ctx, lname_in);
996 if (!lname) {
997 return 1;
1000 if (lowercase) {
1001 strlower_m(lname);
1004 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1005 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1006 return 1;
1009 GetTimeOfDay(&tp_start);
1011 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1012 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1013 return 1;
1016 if(!strcmp(lname,"-")) {
1017 handle = fileno(stdout);
1018 } else {
1019 if (reget) {
1020 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1021 if (handle >= 0) {
1022 start = sys_lseek(handle, 0, SEEK_END);
1023 if (start == -1) {
1024 d_printf("Error seeking local file\n");
1025 return 1;
1028 } else {
1029 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1031 newhandle = true;
1033 if (handle < 0) {
1034 d_printf("Error opening local file %s\n",lname);
1035 return 1;
1039 if (!cli_qfileinfo(targetcli, fnum,
1040 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1041 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1042 &attr, &size, NULL, NULL, NULL))) {
1043 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1044 return 1;
1047 DEBUG(1,("getting file %s of size %.0f as %s ",
1048 rname, (double)size, lname));
1050 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1051 writefile_sink, (void *)&handle, &nread);
1052 if (!NT_STATUS_IS_OK(status)) {
1053 d_fprintf(stderr, "parallel_read returned %s\n",
1054 nt_errstr(status));
1055 cli_close(targetcli, fnum);
1056 return 1;
1059 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1060 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1061 rc = 1;
1064 if (newhandle) {
1065 close(handle);
1068 if (archive_level >= 2 && (attr & aARCH)) {
1069 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1073 struct timeval tp_end;
1074 int this_time;
1076 GetTimeOfDay(&tp_end);
1077 this_time =
1078 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1079 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1080 get_total_time_ms += this_time;
1081 get_total_size += nread;
1083 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1084 nread / (1.024*this_time + 1.0e-4),
1085 get_total_size / (1.024*get_total_time_ms)));
1088 TALLOC_FREE(targetname);
1089 return rc;
1092 /****************************************************************************
1093 Get a file.
1094 ****************************************************************************/
1096 static int cmd_get(void)
1098 TALLOC_CTX *ctx = talloc_tos();
1099 char *lname = NULL;
1100 char *rname = NULL;
1101 char *fname = NULL;
1103 rname = talloc_strdup(ctx, client_get_cur_dir());
1104 if (!rname) {
1105 return 1;
1108 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1109 d_printf("get <filename> [localname]\n");
1110 return 1;
1112 rname = talloc_asprintf_append(rname, "%s", fname);
1113 if (!rname) {
1114 return 1;
1116 rname = clean_name(ctx, rname);
1117 if (!rname) {
1118 return 1;
1121 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1122 if (!lname) {
1123 lname = fname;
1126 return do_get(rname, lname, false);
1129 /****************************************************************************
1130 Do an mget operation on one file.
1131 ****************************************************************************/
1133 static void do_mget(file_info *finfo, const char *dir)
1135 TALLOC_CTX *ctx = talloc_tos();
1136 char *rname = NULL;
1137 char *quest = NULL;
1138 char *saved_curdir = NULL;
1139 char *mget_mask = NULL;
1140 char *new_cd = NULL;
1142 if (!finfo->name) {
1143 return;
1146 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1147 return;
1149 if (abort_mget) {
1150 d_printf("mget aborted\n");
1151 return;
1154 if (finfo->mode & aDIR) {
1155 if (asprintf(&quest,
1156 "Get directory %s? ",finfo->name) < 0) {
1157 return;
1159 } else {
1160 if (asprintf(&quest,
1161 "Get file %s? ",finfo->name) < 0) {
1162 return;
1166 if (prompt && !yesno(quest)) {
1167 SAFE_FREE(quest);
1168 return;
1170 SAFE_FREE(quest);
1172 if (!(finfo->mode & aDIR)) {
1173 rname = talloc_asprintf(ctx,
1174 "%s%s",
1175 client_get_cur_dir(),
1176 finfo->name);
1177 if (!rname) {
1178 return;
1180 do_get(rname, finfo->name, false);
1181 TALLOC_FREE(rname);
1182 return;
1185 /* handle directories */
1186 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1187 if (!saved_curdir) {
1188 return;
1191 new_cd = talloc_asprintf(ctx,
1192 "%s%s%s",
1193 client_get_cur_dir(),
1194 finfo->name,
1195 CLI_DIRSEP_STR);
1196 if (!new_cd) {
1197 return;
1199 client_set_cur_dir(new_cd);
1201 string_replace(finfo->name,'\\','/');
1202 if (lowercase) {
1203 strlower_m(finfo->name);
1206 if (!directory_exist(finfo->name) &&
1207 mkdir(finfo->name,0777) != 0) {
1208 d_printf("failed to create directory %s\n",finfo->name);
1209 client_set_cur_dir(saved_curdir);
1210 return;
1213 if (chdir(finfo->name) != 0) {
1214 d_printf("failed to chdir to directory %s\n",finfo->name);
1215 client_set_cur_dir(saved_curdir);
1216 return;
1219 mget_mask = talloc_asprintf(ctx,
1220 "%s*",
1221 client_get_cur_dir());
1223 if (!mget_mask) {
1224 return;
1227 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1228 if (chdir("..") == -1) {
1229 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1230 strerror(errno) );
1232 client_set_cur_dir(saved_curdir);
1233 TALLOC_FREE(mget_mask);
1234 TALLOC_FREE(saved_curdir);
1235 TALLOC_FREE(new_cd);
1238 /****************************************************************************
1239 View the file using the pager.
1240 ****************************************************************************/
1242 static int cmd_more(void)
1244 TALLOC_CTX *ctx = talloc_tos();
1245 char *rname = NULL;
1246 char *fname = NULL;
1247 char *lname = NULL;
1248 char *pager_cmd = NULL;
1249 const char *pager;
1250 int fd;
1251 int rc = 0;
1253 rname = talloc_strdup(ctx, client_get_cur_dir());
1254 if (!rname) {
1255 return 1;
1258 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1259 if (!lname) {
1260 return 1;
1262 fd = mkstemp(lname);
1263 if (fd == -1) {
1264 d_printf("failed to create temporary file for more\n");
1265 return 1;
1267 close(fd);
1269 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1270 d_printf("more <filename>\n");
1271 unlink(lname);
1272 return 1;
1274 rname = talloc_asprintf_append(rname, "%s", fname);
1275 if (!rname) {
1276 return 1;
1278 rname = clean_name(ctx,rname);
1279 if (!rname) {
1280 return 1;
1283 rc = do_get(rname, lname, false);
1285 pager=getenv("PAGER");
1287 pager_cmd = talloc_asprintf(ctx,
1288 "%s %s",
1289 (pager? pager:PAGER),
1290 lname);
1291 if (!pager_cmd) {
1292 return 1;
1294 if (system(pager_cmd) == -1) {
1295 d_printf("system command '%s' returned -1\n",
1296 pager_cmd);
1298 unlink(lname);
1300 return rc;
1303 /****************************************************************************
1304 Do a mget command.
1305 ****************************************************************************/
1307 static int cmd_mget(void)
1309 TALLOC_CTX *ctx = talloc_tos();
1310 uint16 attribute = aSYSTEM | aHIDDEN;
1311 char *mget_mask = NULL;
1312 char *buf = NULL;
1314 if (recurse) {
1315 attribute |= aDIR;
1318 abort_mget = false;
1320 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1321 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1322 if (!mget_mask) {
1323 return 1;
1325 if (*buf == CLI_DIRSEP_CHAR) {
1326 mget_mask = talloc_strdup(ctx, buf);
1327 } else {
1328 mget_mask = talloc_asprintf_append(mget_mask,
1329 "%s", buf);
1331 if (!mget_mask) {
1332 return 1;
1334 do_list(mget_mask, attribute, do_mget, false, true);
1337 if (mget_mask == NULL) {
1338 d_printf("nothing to mget\n");
1339 return 0;
1342 if (!*mget_mask) {
1343 mget_mask = talloc_asprintf(ctx,
1344 "%s*",
1345 client_get_cur_dir());
1346 if (!mget_mask) {
1347 return 1;
1349 do_list(mget_mask, attribute, do_mget, false, true);
1352 return 0;
1355 /****************************************************************************
1356 Make a directory of name "name".
1357 ****************************************************************************/
1359 static bool do_mkdir(const char *name)
1361 TALLOC_CTX *ctx = talloc_tos();
1362 struct cli_state *targetcli;
1363 char *targetname = NULL;
1365 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1366 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1367 return false;
1370 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1371 d_printf("%s making remote directory %s\n",
1372 cli_errstr(targetcli),name);
1373 return false;
1376 return true;
1379 /****************************************************************************
1380 Show 8.3 name of a file.
1381 ****************************************************************************/
1383 static bool do_altname(const char *name)
1385 fstring altname;
1387 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1388 d_printf("%s getting alt name for %s\n",
1389 cli_errstr(cli),name);
1390 return false;
1392 d_printf("%s\n", altname);
1394 return true;
1397 /****************************************************************************
1398 Exit client.
1399 ****************************************************************************/
1401 static int cmd_quit(void)
1403 cli_shutdown(cli);
1404 exit(0);
1405 /* NOTREACHED */
1406 return 0;
1409 /****************************************************************************
1410 Make a directory.
1411 ****************************************************************************/
1413 static int cmd_mkdir(void)
1415 TALLOC_CTX *ctx = talloc_tos();
1416 char *mask = NULL;
1417 char *buf = NULL;
1419 mask = talloc_strdup(ctx, client_get_cur_dir());
1420 if (!mask) {
1421 return 1;
1424 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1425 if (!recurse) {
1426 d_printf("mkdir <dirname>\n");
1428 return 1;
1430 mask = talloc_asprintf_append(mask, "%s", buf);
1431 if (!mask) {
1432 return 1;
1435 if (recurse) {
1436 char *ddir = NULL;
1437 char *ddir2 = NULL;
1438 struct cli_state *targetcli;
1439 char *targetname = NULL;
1440 char *p = NULL;
1441 char *saveptr;
1443 ddir2 = talloc_strdup(ctx, "");
1444 if (!ddir2) {
1445 return 1;
1448 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1449 return 1;
1452 ddir = talloc_strdup(ctx, targetname);
1453 if (!ddir) {
1454 return 1;
1456 trim_char(ddir,'.','\0');
1457 p = strtok_r(ddir, "/\\", &saveptr);
1458 while (p) {
1459 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1460 if (!ddir2) {
1461 return 1;
1463 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1464 do_mkdir(ddir2);
1466 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1467 if (!ddir2) {
1468 return 1;
1470 p = strtok_r(NULL, "/\\", &saveptr);
1472 } else {
1473 do_mkdir(mask);
1476 return 0;
1479 /****************************************************************************
1480 Show alt name.
1481 ****************************************************************************/
1483 static int cmd_altname(void)
1485 TALLOC_CTX *ctx = talloc_tos();
1486 char *name;
1487 char *buf;
1489 name = talloc_strdup(ctx, client_get_cur_dir());
1490 if (!name) {
1491 return 1;
1494 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1495 d_printf("altname <file>\n");
1496 return 1;
1498 name = talloc_asprintf_append(name, "%s", buf);
1499 if (!name) {
1500 return 1;
1502 do_altname(name);
1503 return 0;
1506 /****************************************************************************
1507 Show all info we can get
1508 ****************************************************************************/
1510 static int do_allinfo(const char *name)
1512 fstring altname;
1513 struct timespec b_time, a_time, m_time, c_time;
1514 SMB_OFF_T size;
1515 uint16_t mode;
1516 SMB_INO_T ino;
1517 NTTIME tmp;
1518 unsigned int num_streams;
1519 struct stream_struct *streams;
1520 unsigned int i;
1522 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1523 d_printf("%s getting alt name for %s\n",
1524 cli_errstr(cli),name);
1525 return false;
1527 d_printf("altname: %s\n", altname);
1529 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1530 &size, &mode, &ino)) {
1531 d_printf("%s getting pathinfo for %s\n",
1532 cli_errstr(cli),name);
1533 return false;
1536 unix_timespec_to_nt_time(&tmp, b_time);
1537 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1539 unix_timespec_to_nt_time(&tmp, a_time);
1540 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1542 unix_timespec_to_nt_time(&tmp, m_time);
1543 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1545 unix_timespec_to_nt_time(&tmp, c_time);
1546 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1548 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1549 &streams)) {
1550 d_printf("%s getting streams for %s\n",
1551 cli_errstr(cli),name);
1552 return false;
1555 for (i=0; i<num_streams; i++) {
1556 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1557 (unsigned long long)streams[i].size);
1560 return 0;
1563 /****************************************************************************
1564 Show all info we can get
1565 ****************************************************************************/
1567 static int cmd_allinfo(void)
1569 TALLOC_CTX *ctx = talloc_tos();
1570 char *name;
1571 char *buf;
1573 name = talloc_strdup(ctx, client_get_cur_dir());
1574 if (!name) {
1575 return 1;
1578 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1579 d_printf("allinfo <file>\n");
1580 return 1;
1582 name = talloc_asprintf_append(name, "%s", buf);
1583 if (!name) {
1584 return 1;
1587 do_allinfo(name);
1589 return 0;
1592 /****************************************************************************
1593 Put a single file.
1594 ****************************************************************************/
1596 static int do_put(const char *rname, const char *lname, bool reput)
1598 TALLOC_CTX *ctx = talloc_tos();
1599 uint16_t fnum;
1600 XFILE *f;
1601 SMB_OFF_T start = 0;
1602 int rc = 0;
1603 struct timeval tp_start;
1604 struct cli_state *targetcli;
1605 char *targetname = NULL;
1606 struct push_state state;
1607 NTSTATUS status;
1609 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1610 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1611 return 1;
1614 GetTimeOfDay(&tp_start);
1616 if (reput) {
1617 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1618 if (NT_STATUS_IS_OK(status)) {
1619 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1620 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1621 d_printf("getattrib: %s\n",cli_errstr(cli));
1622 return 1;
1625 } else {
1626 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1629 if (!NT_STATUS_IS_OK(status)) {
1630 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1631 return 1;
1634 /* allow files to be piped into smbclient
1635 jdblair 24.jun.98
1637 Note that in this case this function will exit(0) rather
1638 than returning. */
1639 if (!strcmp(lname, "-")) {
1640 f = x_stdin;
1641 /* size of file is not known */
1642 } else {
1643 f = x_fopen(lname,O_RDONLY, 0);
1644 if (f && reput) {
1645 if (x_tseek(f, start, SEEK_SET) == -1) {
1646 d_printf("Error seeking local file\n");
1647 x_fclose(f);
1648 return 1;
1653 if (!f) {
1654 d_printf("Error opening local file %s\n",lname);
1655 return 1;
1658 DEBUG(1,("putting file %s as %s ",lname,
1659 rname));
1661 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1663 state.f = f;
1664 state.nread = 0;
1666 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1667 &state);
1668 if (!NT_STATUS_IS_OK(status)) {
1669 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1672 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1673 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1674 if (f != x_stdin) {
1675 x_fclose(f);
1677 return 1;
1680 if (f != x_stdin) {
1681 x_fclose(f);
1685 struct timeval tp_end;
1686 int this_time;
1688 GetTimeOfDay(&tp_end);
1689 this_time =
1690 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1691 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1692 put_total_time_ms += this_time;
1693 put_total_size += state.nread;
1695 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1696 state.nread / (1.024*this_time + 1.0e-4),
1697 put_total_size / (1.024*put_total_time_ms)));
1700 if (f == x_stdin) {
1701 cli_shutdown(cli);
1702 exit(0);
1705 return rc;
1708 /****************************************************************************
1709 Put a file.
1710 ****************************************************************************/
1712 static int cmd_put(void)
1714 TALLOC_CTX *ctx = talloc_tos();
1715 char *lname;
1716 char *rname;
1717 char *buf;
1719 rname = talloc_strdup(ctx, client_get_cur_dir());
1720 if (!rname) {
1721 return 1;
1724 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1725 d_printf("put <filename>\n");
1726 return 1;
1729 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1730 rname = talloc_asprintf_append(rname, "%s", buf);
1731 } else {
1732 rname = talloc_asprintf_append(rname, "%s", lname);
1734 if (!rname) {
1735 return 1;
1738 rname = clean_name(ctx, rname);
1739 if (!rname) {
1740 return 1;
1744 SMB_STRUCT_STAT st;
1745 /* allow '-' to represent stdin
1746 jdblair, 24.jun.98 */
1747 if (!file_exist_stat(lname,&st) &&
1748 (strcmp(lname,"-"))) {
1749 d_printf("%s does not exist\n",lname);
1750 return 1;
1754 return do_put(rname, lname, false);
1757 /*************************************
1758 File list structure.
1759 *************************************/
1761 static struct file_list {
1762 struct file_list *prev, *next;
1763 char *file_path;
1764 bool isdir;
1765 } *file_list;
1767 /****************************************************************************
1768 Free a file_list structure.
1769 ****************************************************************************/
1771 static void free_file_list (struct file_list *l_head)
1773 struct file_list *list, *next;
1775 for (list = l_head; list; list = next) {
1776 next = list->next;
1777 DLIST_REMOVE(l_head, list);
1778 SAFE_FREE(list->file_path);
1779 SAFE_FREE(list);
1783 /****************************************************************************
1784 Seek in a directory/file list until you get something that doesn't start with
1785 the specified name.
1786 ****************************************************************************/
1788 static bool seek_list(struct file_list *list, char *name)
1790 while (list) {
1791 trim_string(list->file_path,"./","\n");
1792 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1793 return true;
1795 list = list->next;
1798 return false;
1801 /****************************************************************************
1802 Set the file selection mask.
1803 ****************************************************************************/
1805 static int cmd_select(void)
1807 TALLOC_CTX *ctx = talloc_tos();
1808 char *new_fs = NULL;
1809 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1811 if (new_fs) {
1812 client_set_fileselection(new_fs);
1813 } else {
1814 client_set_fileselection("");
1816 return 0;
1819 /****************************************************************************
1820 Recursive file matching function act as find
1821 match must be always set to true when calling this function
1822 ****************************************************************************/
1824 static int file_find(struct file_list **list, const char *directory,
1825 const char *expression, bool match)
1827 SMB_STRUCT_DIR *dir;
1828 struct file_list *entry;
1829 struct stat statbuf;
1830 int ret;
1831 char *path;
1832 bool isdir;
1833 const char *dname;
1835 dir = sys_opendir(directory);
1836 if (!dir)
1837 return -1;
1839 while ((dname = readdirname(dir))) {
1840 if (!strcmp("..", dname))
1841 continue;
1842 if (!strcmp(".", dname))
1843 continue;
1845 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1846 continue;
1849 isdir = false;
1850 if (!match || !gen_fnmatch(expression, dname)) {
1851 if (recurse) {
1852 ret = stat(path, &statbuf);
1853 if (ret == 0) {
1854 if (S_ISDIR(statbuf.st_mode)) {
1855 isdir = true;
1856 ret = file_find(list, path, expression, false);
1858 } else {
1859 d_printf("file_find: cannot stat file %s\n", path);
1862 if (ret == -1) {
1863 SAFE_FREE(path);
1864 sys_closedir(dir);
1865 return -1;
1868 entry = SMB_MALLOC_P(struct file_list);
1869 if (!entry) {
1870 d_printf("Out of memory in file_find\n");
1871 sys_closedir(dir);
1872 return -1;
1874 entry->file_path = path;
1875 entry->isdir = isdir;
1876 DLIST_ADD(*list, entry);
1877 } else {
1878 SAFE_FREE(path);
1882 sys_closedir(dir);
1883 return 0;
1886 /****************************************************************************
1887 mput some files.
1888 ****************************************************************************/
1890 static int cmd_mput(void)
1892 TALLOC_CTX *ctx = talloc_tos();
1893 char *p = NULL;
1895 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1896 int ret;
1897 struct file_list *temp_list;
1898 char *quest, *lname, *rname;
1900 file_list = NULL;
1902 ret = file_find(&file_list, ".", p, true);
1903 if (ret) {
1904 free_file_list(file_list);
1905 continue;
1908 quest = NULL;
1909 lname = NULL;
1910 rname = NULL;
1912 for (temp_list = file_list; temp_list;
1913 temp_list = temp_list->next) {
1915 SAFE_FREE(lname);
1916 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1917 continue;
1919 trim_string(lname, "./", "/");
1921 /* check if it's a directory */
1922 if (temp_list->isdir) {
1923 /* if (!recurse) continue; */
1925 SAFE_FREE(quest);
1926 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1927 break;
1929 if (prompt && !yesno(quest)) { /* No */
1930 /* Skip the directory */
1931 lname[strlen(lname)-1] = '/';
1932 if (!seek_list(temp_list, lname))
1933 break;
1934 } else { /* Yes */
1935 SAFE_FREE(rname);
1936 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1937 break;
1939 normalize_name(rname);
1940 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1941 !do_mkdir(rname)) {
1942 DEBUG (0, ("Unable to make dir, skipping..."));
1943 /* Skip the directory */
1944 lname[strlen(lname)-1] = '/';
1945 if (!seek_list(temp_list, lname)) {
1946 break;
1950 continue;
1951 } else {
1952 SAFE_FREE(quest);
1953 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1954 break;
1956 if (prompt && !yesno(quest)) {
1957 /* No */
1958 continue;
1961 /* Yes */
1962 SAFE_FREE(rname);
1963 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1964 break;
1968 normalize_name(rname);
1970 do_put(rname, lname, false);
1972 free_file_list(file_list);
1973 SAFE_FREE(quest);
1974 SAFE_FREE(lname);
1975 SAFE_FREE(rname);
1978 return 0;
1981 /****************************************************************************
1982 Cancel a print job.
1983 ****************************************************************************/
1985 static int do_cancel(int job)
1987 if (cli_printjob_del(cli, job)) {
1988 d_printf("Job %d cancelled\n",job);
1989 return 0;
1990 } else {
1991 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1992 return 1;
1996 /****************************************************************************
1997 Cancel a print job.
1998 ****************************************************************************/
2000 static int cmd_cancel(void)
2002 TALLOC_CTX *ctx = talloc_tos();
2003 char *buf = NULL;
2004 int job;
2006 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2007 d_printf("cancel <jobid> ...\n");
2008 return 1;
2010 do {
2011 job = atoi(buf);
2012 do_cancel(job);
2013 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2015 return 0;
2018 /****************************************************************************
2019 Print a file.
2020 ****************************************************************************/
2022 static int cmd_print(void)
2024 TALLOC_CTX *ctx = talloc_tos();
2025 char *lname = NULL;
2026 char *rname = NULL;
2027 char *p = NULL;
2029 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2030 d_printf("print <filename>\n");
2031 return 1;
2034 rname = talloc_strdup(ctx, lname);
2035 if (!rname) {
2036 return 1;
2038 p = strrchr_m(rname,'/');
2039 if (p) {
2040 rname = talloc_asprintf(ctx,
2041 "%s-%d",
2042 p+1,
2043 (int)sys_getpid());
2045 if (strequal(lname,"-")) {
2046 rname = talloc_asprintf(ctx,
2047 "stdin-%d",
2048 (int)sys_getpid());
2050 if (!rname) {
2051 return 1;
2054 return do_put(rname, lname, false);
2057 /****************************************************************************
2058 Show a print queue entry.
2059 ****************************************************************************/
2061 static void queue_fn(struct print_job_info *p)
2063 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2066 /****************************************************************************
2067 Show a print queue.
2068 ****************************************************************************/
2070 static int cmd_queue(void)
2072 cli_print_queue(cli, queue_fn);
2073 return 0;
2076 /****************************************************************************
2077 Delete some files.
2078 ****************************************************************************/
2080 static void do_del(file_info *finfo, const char *dir)
2082 TALLOC_CTX *ctx = talloc_tos();
2083 char *mask = NULL;
2085 mask = talloc_asprintf(ctx,
2086 "%s%c%s",
2087 dir,
2088 CLI_DIRSEP_CHAR,
2089 finfo->name);
2090 if (!mask) {
2091 return;
2094 if (finfo->mode & aDIR) {
2095 TALLOC_FREE(mask);
2096 return;
2099 if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2100 d_printf("%s deleting remote file %s\n",
2101 cli_errstr(finfo->cli),mask);
2103 TALLOC_FREE(mask);
2106 /****************************************************************************
2107 Delete some files.
2108 ****************************************************************************/
2110 static int cmd_del(void)
2112 TALLOC_CTX *ctx = talloc_tos();
2113 char *mask = NULL;
2114 char *buf = NULL;
2115 uint16 attribute = aSYSTEM | aHIDDEN;
2117 if (recurse) {
2118 attribute |= aDIR;
2121 mask = talloc_strdup(ctx, client_get_cur_dir());
2122 if (!mask) {
2123 return 1;
2125 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2126 d_printf("del <filename>\n");
2127 return 1;
2129 mask = talloc_asprintf_append(mask, "%s", buf);
2130 if (!mask) {
2131 return 1;
2134 do_list(mask,attribute,do_del,false,false);
2135 return 0;
2138 /****************************************************************************
2139 Wildcard delete some files.
2140 ****************************************************************************/
2142 static int cmd_wdel(void)
2144 TALLOC_CTX *ctx = talloc_tos();
2145 char *mask = NULL;
2146 char *buf = NULL;
2147 uint16 attribute;
2148 struct cli_state *targetcli;
2149 char *targetname = NULL;
2151 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2152 d_printf("wdel 0x<attrib> <wcard>\n");
2153 return 1;
2156 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2158 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2159 d_printf("wdel 0x<attrib> <wcard>\n");
2160 return 1;
2163 mask = talloc_asprintf(ctx, "%s%s",
2164 client_get_cur_dir(),
2165 buf);
2166 if (!mask) {
2167 return 1;
2170 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2171 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2172 return 1;
2175 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2176 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2178 return 0;
2181 /****************************************************************************
2182 ****************************************************************************/
2184 static int cmd_open(void)
2186 TALLOC_CTX *ctx = talloc_tos();
2187 char *mask = NULL;
2188 char *buf = NULL;
2189 char *targetname = NULL;
2190 struct cli_state *targetcli;
2191 uint16_t fnum = (uint16_t)-1;
2193 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2194 d_printf("open <filename>\n");
2195 return 1;
2197 mask = talloc_asprintf(ctx,
2198 "%s%s",
2199 client_get_cur_dir(),
2200 buf);
2201 if (!mask) {
2202 return 1;
2205 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2206 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2207 return 1;
2210 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2211 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2212 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2213 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2214 FILE_READ_DATA, 0,
2215 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2216 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2217 } else {
2218 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2220 } else {
2221 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2223 return 0;
2226 static int cmd_posix_encrypt(void)
2228 TALLOC_CTX *ctx = talloc_tos();
2229 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2231 if (cli->use_kerberos) {
2232 status = cli_gss_smb_encryption_start(cli);
2233 } else {
2234 char *domain = NULL;
2235 char *user = NULL;
2236 char *password = NULL;
2238 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2239 d_printf("posix_encrypt domain user password\n");
2240 return 1;
2243 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2244 d_printf("posix_encrypt domain user password\n");
2245 return 1;
2248 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2249 d_printf("posix_encrypt domain user password\n");
2250 return 1;
2253 status = cli_raw_ntlm_smb_encryption_start(cli,
2254 user,
2255 password,
2256 domain);
2259 if (!NT_STATUS_IS_OK(status)) {
2260 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2261 } else {
2262 d_printf("encryption on\n");
2263 smb_encrypt = true;
2266 return 0;
2269 /****************************************************************************
2270 ****************************************************************************/
2272 static int cmd_posix_open(void)
2274 TALLOC_CTX *ctx = talloc_tos();
2275 char *mask = NULL;
2276 char *buf = NULL;
2277 char *targetname = NULL;
2278 struct cli_state *targetcli;
2279 mode_t mode;
2280 uint16_t fnum;
2282 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2283 d_printf("posix_open <filename> 0<mode>\n");
2284 return 1;
2286 mask = talloc_asprintf(ctx,
2287 "%s%s",
2288 client_get_cur_dir(),
2289 buf);
2290 if (!mask) {
2291 return 1;
2294 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2295 d_printf("posix_open <filename> 0<mode>\n");
2296 return 1;
2298 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2300 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2301 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2302 return 1;
2305 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2306 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2307 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2308 } else {
2309 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2311 } else {
2312 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2315 return 0;
2318 static int cmd_posix_mkdir(void)
2320 TALLOC_CTX *ctx = talloc_tos();
2321 char *mask = NULL;
2322 char *buf = NULL;
2323 char *targetname = NULL;
2324 struct cli_state *targetcli;
2325 mode_t mode;
2327 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2328 d_printf("posix_mkdir <filename> 0<mode>\n");
2329 return 1;
2331 mask = talloc_asprintf(ctx,
2332 "%s%s",
2333 client_get_cur_dir(),
2334 buf);
2335 if (!mask) {
2336 return 1;
2339 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2340 d_printf("posix_mkdir <filename> 0<mode>\n");
2341 return 1;
2343 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2345 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2346 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2347 return 1;
2350 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2351 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2352 } else {
2353 d_printf("posix_mkdir created directory %s\n", targetname);
2355 return 0;
2358 static int cmd_posix_unlink(void)
2360 TALLOC_CTX *ctx = talloc_tos();
2361 char *mask = NULL;
2362 char *buf = NULL;
2363 char *targetname = NULL;
2364 struct cli_state *targetcli;
2366 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2367 d_printf("posix_unlink <filename>\n");
2368 return 1;
2370 mask = talloc_asprintf(ctx,
2371 "%s%s",
2372 client_get_cur_dir(),
2373 buf);
2374 if (!mask) {
2375 return 1;
2378 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2379 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2380 return 1;
2383 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2384 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2385 } else {
2386 d_printf("posix_unlink deleted file %s\n", targetname);
2389 return 0;
2392 static int cmd_posix_rmdir(void)
2394 TALLOC_CTX *ctx = talloc_tos();
2395 char *mask = NULL;
2396 char *buf = NULL;
2397 char *targetname = NULL;
2398 struct cli_state *targetcli;
2400 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2401 d_printf("posix_rmdir <filename>\n");
2402 return 1;
2404 mask = talloc_asprintf(ctx,
2405 "%s%s",
2406 client_get_cur_dir(),
2407 buf);
2408 if (!mask) {
2409 return 1;
2412 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2413 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2414 return 1;
2417 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2418 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2419 } else {
2420 d_printf("posix_rmdir deleted directory %s\n", targetname);
2423 return 0;
2426 static int cmd_close(void)
2428 TALLOC_CTX *ctx = talloc_tos();
2429 char *buf = NULL;
2430 int fnum;
2432 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2433 d_printf("close <fnum>\n");
2434 return 1;
2437 fnum = atoi(buf);
2438 /* We really should use the targetcli here.... */
2439 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2440 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2441 return 1;
2443 return 0;
2446 static int cmd_posix(void)
2448 TALLOC_CTX *ctx = talloc_tos();
2449 uint16 major, minor;
2450 uint32 caplow, caphigh;
2451 char *caps;
2452 NTSTATUS status;
2454 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2455 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2456 return 1;
2459 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2460 &caphigh);
2461 if (!NT_STATUS_IS_OK(status)) {
2462 d_printf("Can't get UNIX CIFS extensions version from "
2463 "server: %s\n", nt_errstr(status));
2464 return 1;
2467 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2469 caps = talloc_strdup(ctx, "");
2470 if (!caps) {
2471 return 1;
2473 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2474 caps = talloc_asprintf_append(caps, "locks ");
2475 if (!caps) {
2476 return 1;
2479 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2480 caps = talloc_asprintf_append(caps, "acls ");
2481 if (!caps) {
2482 return 1;
2485 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2486 caps = talloc_asprintf_append(caps, "eas ");
2487 if (!caps) {
2488 return 1;
2491 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2492 caps = talloc_asprintf_append(caps, "pathnames ");
2493 if (!caps) {
2494 return 1;
2497 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2498 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2499 if (!caps) {
2500 return 1;
2503 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2504 caps = talloc_asprintf_append(caps, "large_read ");
2505 if (!caps) {
2506 return 1;
2509 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2510 caps = talloc_asprintf_append(caps, "large_write ");
2511 if (!caps) {
2512 return 1;
2515 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2516 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2517 if (!caps) {
2518 return 1;
2521 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2522 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2523 if (!caps) {
2524 return 1;
2528 if (*caps && caps[strlen(caps)-1] == ' ') {
2529 caps[strlen(caps)-1] = '\0';
2532 d_printf("Server supports CIFS capabilities %s\n", caps);
2534 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2535 caplow, caphigh);
2536 if (!NT_STATUS_IS_OK(status)) {
2537 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2538 nt_errstr(status));
2539 return 1;
2542 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2543 CLI_DIRSEP_CHAR = '/';
2544 *CLI_DIRSEP_STR = '/';
2545 client_set_cur_dir(CLI_DIRSEP_STR);
2548 return 0;
2551 static int cmd_lock(void)
2553 TALLOC_CTX *ctx = talloc_tos();
2554 char *buf = NULL;
2555 uint64_t start, len;
2556 enum brl_type lock_type;
2557 int fnum;
2559 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2560 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2561 return 1;
2563 fnum = atoi(buf);
2565 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2566 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2567 return 1;
2570 if (*buf == 'r' || *buf == 'R') {
2571 lock_type = READ_LOCK;
2572 } else if (*buf == 'w' || *buf == 'W') {
2573 lock_type = WRITE_LOCK;
2574 } else {
2575 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2576 return 1;
2579 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2580 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2581 return 1;
2584 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2586 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2587 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2588 return 1;
2591 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2593 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2594 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2597 return 0;
2600 static int cmd_unlock(void)
2602 TALLOC_CTX *ctx = talloc_tos();
2603 char *buf = NULL;
2604 uint64_t start, len;
2605 int fnum;
2607 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2608 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2609 return 1;
2611 fnum = atoi(buf);
2613 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2614 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2615 return 1;
2618 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2620 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2621 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2622 return 1;
2625 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2627 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2628 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2631 return 0;
2635 /****************************************************************************
2636 Remove a directory.
2637 ****************************************************************************/
2639 static int cmd_rmdir(void)
2641 TALLOC_CTX *ctx = talloc_tos();
2642 char *mask = NULL;
2643 char *buf = NULL;
2644 char *targetname = NULL;
2645 struct cli_state *targetcli;
2647 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2648 d_printf("rmdir <dirname>\n");
2649 return 1;
2651 mask = talloc_asprintf(ctx,
2652 "%s%s",
2653 client_get_cur_dir(),
2654 buf);
2655 if (!mask) {
2656 return 1;
2659 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2660 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2661 return 1;
2664 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2665 d_printf("%s removing remote directory file %s\n",
2666 cli_errstr(targetcli),mask);
2669 return 0;
2672 /****************************************************************************
2673 UNIX hardlink.
2674 ****************************************************************************/
2676 static int cmd_link(void)
2678 TALLOC_CTX *ctx = talloc_tos();
2679 char *oldname = NULL;
2680 char *newname = NULL;
2681 char *buf = NULL;
2682 char *buf2 = NULL;
2683 char *targetname = NULL;
2684 struct cli_state *targetcli;
2686 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2687 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2688 d_printf("link <oldname> <newname>\n");
2689 return 1;
2691 oldname = talloc_asprintf(ctx,
2692 "%s%s",
2693 client_get_cur_dir(),
2694 buf);
2695 if (!oldname) {
2696 return 1;
2698 newname = talloc_asprintf(ctx,
2699 "%s%s",
2700 client_get_cur_dir(),
2701 buf2);
2702 if (!newname) {
2703 return 1;
2706 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2707 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2708 return 1;
2711 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2712 d_printf("Server doesn't support UNIX CIFS calls.\n");
2713 return 1;
2716 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2717 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2718 return 1;
2720 return 0;
2723 /****************************************************************************
2724 UNIX readlink.
2725 ****************************************************************************/
2727 static int cmd_readlink(void)
2729 TALLOC_CTX *ctx = talloc_tos();
2730 char *name= NULL;
2731 char *buf = NULL;
2732 char *targetname = NULL;
2733 char linkname[PATH_MAX+1];
2734 struct cli_state *targetcli;
2736 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2737 d_printf("readlink <name>\n");
2738 return 1;
2740 name = talloc_asprintf(ctx,
2741 "%s%s",
2742 client_get_cur_dir(),
2743 buf);
2744 if (!name) {
2745 return 1;
2748 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2749 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2750 return 1;
2753 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2754 d_printf("Server doesn't support UNIX CIFS calls.\n");
2755 return 1;
2758 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2759 linkname, PATH_MAX+1))) {
2760 d_printf("%s readlink on file %s\n",
2761 cli_errstr(targetcli), name);
2762 return 1;
2765 d_printf("%s -> %s\n", name, linkname);
2767 return 0;
2771 /****************************************************************************
2772 UNIX symlink.
2773 ****************************************************************************/
2775 static int cmd_symlink(void)
2777 TALLOC_CTX *ctx = talloc_tos();
2778 char *oldname = NULL;
2779 char *newname = NULL;
2780 char *buf = NULL;
2781 char *buf2 = NULL;
2782 char *targetname = NULL;
2783 struct cli_state *targetcli;
2785 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2786 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2787 d_printf("symlink <oldname> <newname>\n");
2788 return 1;
2790 oldname = talloc_asprintf(ctx,
2791 "%s%s",
2792 client_get_cur_dir(),
2793 buf);
2794 if (!oldname) {
2795 return 1;
2797 newname = talloc_asprintf(ctx,
2798 "%s%s",
2799 client_get_cur_dir(),
2800 buf2);
2801 if (!newname) {
2802 return 1;
2805 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2806 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2807 return 1;
2810 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2811 d_printf("Server doesn't support UNIX CIFS calls.\n");
2812 return 1;
2815 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2816 d_printf("%s symlinking files (%s -> %s)\n",
2817 cli_errstr(targetcli), newname, targetname);
2818 return 1;
2821 return 0;
2824 /****************************************************************************
2825 UNIX chmod.
2826 ****************************************************************************/
2828 static int cmd_chmod(void)
2830 TALLOC_CTX *ctx = talloc_tos();
2831 char *src = NULL;
2832 char *buf = NULL;
2833 char *buf2 = NULL;
2834 char *targetname = NULL;
2835 struct cli_state *targetcli;
2836 mode_t mode;
2838 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2839 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2840 d_printf("chmod mode file\n");
2841 return 1;
2843 src = talloc_asprintf(ctx,
2844 "%s%s",
2845 client_get_cur_dir(),
2846 buf2);
2847 if (!src) {
2848 return 1;
2851 mode = (mode_t)strtol(buf, NULL, 8);
2853 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2854 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2855 return 1;
2858 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2859 d_printf("Server doesn't support UNIX CIFS calls.\n");
2860 return 1;
2863 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2864 d_printf("%s chmod file %s 0%o\n",
2865 cli_errstr(targetcli), src, (unsigned int)mode);
2866 return 1;
2869 return 0;
2872 static const char *filetype_to_str(mode_t mode)
2874 if (S_ISREG(mode)) {
2875 return "regular file";
2876 } else if (S_ISDIR(mode)) {
2877 return "directory";
2878 } else
2879 #ifdef S_ISCHR
2880 if (S_ISCHR(mode)) {
2881 return "character device";
2882 } else
2883 #endif
2884 #ifdef S_ISBLK
2885 if (S_ISBLK(mode)) {
2886 return "block device";
2887 } else
2888 #endif
2889 #ifdef S_ISFIFO
2890 if (S_ISFIFO(mode)) {
2891 return "fifo";
2892 } else
2893 #endif
2894 #ifdef S_ISLNK
2895 if (S_ISLNK(mode)) {
2896 return "symbolic link";
2897 } else
2898 #endif
2899 #ifdef S_ISSOCK
2900 if (S_ISSOCK(mode)) {
2901 return "socket";
2902 } else
2903 #endif
2904 return "";
2907 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2909 if (m & bt) {
2910 return ret;
2911 } else {
2912 return '-';
2916 static char *unix_mode_to_str(char *s, mode_t m)
2918 char *p = s;
2919 const char *str = filetype_to_str(m);
2921 switch(str[0]) {
2922 case 'd':
2923 *p++ = 'd';
2924 break;
2925 case 'c':
2926 *p++ = 'c';
2927 break;
2928 case 'b':
2929 *p++ = 'b';
2930 break;
2931 case 'f':
2932 *p++ = 'p';
2933 break;
2934 case 's':
2935 *p++ = str[1] == 'y' ? 'l' : 's';
2936 break;
2937 case 'r':
2938 default:
2939 *p++ = '-';
2940 break;
2942 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2943 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2944 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2945 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2946 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2947 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2948 *p++ = rwx_to_str(m, S_IROTH, 'r');
2949 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2950 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2951 *p++ = '\0';
2952 return s;
2955 /****************************************************************************
2956 Utility function for UNIX getfacl.
2957 ****************************************************************************/
2959 static char *perms_to_string(fstring permstr, unsigned char perms)
2961 fstrcpy(permstr, "---");
2962 if (perms & SMB_POSIX_ACL_READ) {
2963 permstr[0] = 'r';
2965 if (perms & SMB_POSIX_ACL_WRITE) {
2966 permstr[1] = 'w';
2968 if (perms & SMB_POSIX_ACL_EXECUTE) {
2969 permstr[2] = 'x';
2971 return permstr;
2974 /****************************************************************************
2975 UNIX getfacl.
2976 ****************************************************************************/
2978 static int cmd_getfacl(void)
2980 TALLOC_CTX *ctx = talloc_tos();
2981 char *src = NULL;
2982 char *name = NULL;
2983 char *targetname = NULL;
2984 struct cli_state *targetcli;
2985 uint16 major, minor;
2986 uint32 caplow, caphigh;
2987 char *retbuf = NULL;
2988 size_t rb_size = 0;
2989 SMB_STRUCT_STAT sbuf;
2990 uint16 num_file_acls = 0;
2991 uint16 num_dir_acls = 0;
2992 uint16 i;
2993 NTSTATUS status;
2995 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2996 d_printf("getfacl filename\n");
2997 return 1;
2999 src = talloc_asprintf(ctx,
3000 "%s%s",
3001 client_get_cur_dir(),
3002 name);
3003 if (!src) {
3004 return 1;
3007 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3008 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3009 return 1;
3012 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3013 d_printf("Server doesn't support UNIX CIFS calls.\n");
3014 return 1;
3017 status = cli_unix_extensions_version(targetcli, &major, &minor,
3018 &caplow, &caphigh);
3019 if (!NT_STATUS_IS_OK(status)) {
3020 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3021 nt_errstr(status));
3022 return 1;
3025 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3026 d_printf("This server supports UNIX extensions "
3027 "but doesn't support POSIX ACLs.\n");
3028 return 1;
3031 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3032 d_printf("%s getfacl doing a stat on file %s\n",
3033 cli_errstr(targetcli), src);
3034 return 1;
3037 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3038 d_printf("%s getfacl file %s\n",
3039 cli_errstr(targetcli), src);
3040 return 1;
3043 /* ToDo : Print out the ACL values. */
3044 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3045 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3046 src, (unsigned int)CVAL(retbuf,0) );
3047 return 1;
3050 num_file_acls = SVAL(retbuf,2);
3051 num_dir_acls = SVAL(retbuf,4);
3052 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3053 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3054 src,
3055 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3056 (unsigned int)rb_size);
3057 return 1;
3060 d_printf("# file: %s\n", src);
3061 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3063 if (num_file_acls == 0 && num_dir_acls == 0) {
3064 d_printf("No acls found.\n");
3067 for (i = 0; i < num_file_acls; i++) {
3068 uint32 uorg;
3069 fstring permstring;
3070 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3071 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3073 switch(tagtype) {
3074 case SMB_POSIX_ACL_USER_OBJ:
3075 d_printf("user::");
3076 break;
3077 case SMB_POSIX_ACL_USER:
3078 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3079 d_printf("user:%u:", uorg);
3080 break;
3081 case SMB_POSIX_ACL_GROUP_OBJ:
3082 d_printf("group::");
3083 break;
3084 case SMB_POSIX_ACL_GROUP:
3085 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3086 d_printf("group:%u:", uorg);
3087 break;
3088 case SMB_POSIX_ACL_MASK:
3089 d_printf("mask::");
3090 break;
3091 case SMB_POSIX_ACL_OTHER:
3092 d_printf("other::");
3093 break;
3094 default:
3095 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3096 src, (unsigned int)tagtype );
3097 SAFE_FREE(retbuf);
3098 return 1;
3101 d_printf("%s\n", perms_to_string(permstring, perms));
3104 for (i = 0; i < num_dir_acls; i++) {
3105 uint32 uorg;
3106 fstring permstring;
3107 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3108 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3110 switch(tagtype) {
3111 case SMB_POSIX_ACL_USER_OBJ:
3112 d_printf("default:user::");
3113 break;
3114 case SMB_POSIX_ACL_USER:
3115 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3116 d_printf("default:user:%u:", uorg);
3117 break;
3118 case SMB_POSIX_ACL_GROUP_OBJ:
3119 d_printf("default:group::");
3120 break;
3121 case SMB_POSIX_ACL_GROUP:
3122 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3123 d_printf("default:group:%u:", uorg);
3124 break;
3125 case SMB_POSIX_ACL_MASK:
3126 d_printf("default:mask::");
3127 break;
3128 case SMB_POSIX_ACL_OTHER:
3129 d_printf("default:other::");
3130 break;
3131 default:
3132 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3133 src, (unsigned int)tagtype );
3134 SAFE_FREE(retbuf);
3135 return 1;
3138 d_printf("%s\n", perms_to_string(permstring, perms));
3141 return 0;
3144 /****************************************************************************
3145 UNIX stat.
3146 ****************************************************************************/
3148 static int cmd_stat(void)
3150 TALLOC_CTX *ctx = talloc_tos();
3151 char *src = NULL;
3152 char *name = NULL;
3153 char *targetname = NULL;
3154 struct cli_state *targetcli;
3155 fstring mode_str;
3156 SMB_STRUCT_STAT sbuf;
3157 struct tm *lt;
3158 time_t tmp_time;
3160 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3161 d_printf("stat file\n");
3162 return 1;
3164 src = talloc_asprintf(ctx,
3165 "%s%s",
3166 client_get_cur_dir(),
3167 name);
3168 if (!src) {
3169 return 1;
3172 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3173 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3174 return 1;
3177 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3178 d_printf("Server doesn't support UNIX CIFS calls.\n");
3179 return 1;
3182 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3183 d_printf("%s stat file %s\n",
3184 cli_errstr(targetcli), src);
3185 return 1;
3188 /* Print out the stat values. */
3189 d_printf("File: %s\n", src);
3190 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3191 (double)sbuf.st_ex_size,
3192 (unsigned int)sbuf.st_ex_blocks,
3193 filetype_to_str(sbuf.st_ex_mode));
3195 #if defined(S_ISCHR) && defined(S_ISBLK)
3196 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3197 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3198 (double)sbuf.st_ex_ino,
3199 (unsigned int)sbuf.st_ex_nlink,
3200 unix_dev_major(sbuf.st_ex_rdev),
3201 unix_dev_minor(sbuf.st_ex_rdev));
3202 } else
3203 #endif
3204 d_printf("Inode: %.0f\tLinks: %u\n",
3205 (double)sbuf.st_ex_ino,
3206 (unsigned int)sbuf.st_ex_nlink);
3208 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3209 ((int)sbuf.st_ex_mode & 0777),
3210 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3211 (unsigned int)sbuf.st_ex_uid,
3212 (unsigned int)sbuf.st_ex_gid);
3214 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3215 lt = localtime(&tmp_time);
3216 if (lt) {
3217 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3218 } else {
3219 fstrcpy(mode_str, "unknown");
3221 d_printf("Access: %s\n", mode_str);
3223 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3224 lt = localtime(&tmp_time);
3225 if (lt) {
3226 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3227 } else {
3228 fstrcpy(mode_str, "unknown");
3230 d_printf("Modify: %s\n", mode_str);
3232 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3233 lt = localtime(&tmp_time);
3234 if (lt) {
3235 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3236 } else {
3237 fstrcpy(mode_str, "unknown");
3239 d_printf("Change: %s\n", mode_str);
3241 return 0;
3245 /****************************************************************************
3246 UNIX chown.
3247 ****************************************************************************/
3249 static int cmd_chown(void)
3251 TALLOC_CTX *ctx = talloc_tos();
3252 char *src = NULL;
3253 uid_t uid;
3254 gid_t gid;
3255 char *buf, *buf2, *buf3;
3256 struct cli_state *targetcli;
3257 char *targetname = NULL;
3259 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3260 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3261 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3262 d_printf("chown uid gid file\n");
3263 return 1;
3266 uid = (uid_t)atoi(buf);
3267 gid = (gid_t)atoi(buf2);
3269 src = talloc_asprintf(ctx,
3270 "%s%s",
3271 client_get_cur_dir(),
3272 buf3);
3273 if (!src) {
3274 return 1;
3276 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3277 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3278 return 1;
3281 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3282 d_printf("Server doesn't support UNIX CIFS calls.\n");
3283 return 1;
3286 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3287 d_printf("%s chown file %s uid=%d, gid=%d\n",
3288 cli_errstr(targetcli), src, (int)uid, (int)gid);
3289 return 1;
3292 return 0;
3295 /****************************************************************************
3296 Rename some file.
3297 ****************************************************************************/
3299 static int cmd_rename(void)
3301 TALLOC_CTX *ctx = talloc_tos();
3302 char *src, *dest;
3303 char *buf, *buf2;
3304 struct cli_state *targetcli;
3305 char *targetsrc;
3306 char *targetdest;
3308 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3309 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3310 d_printf("rename <src> <dest>\n");
3311 return 1;
3314 src = talloc_asprintf(ctx,
3315 "%s%s",
3316 client_get_cur_dir(),
3317 buf);
3318 if (!src) {
3319 return 1;
3322 dest = talloc_asprintf(ctx,
3323 "%s%s",
3324 client_get_cur_dir(),
3325 buf2);
3326 if (!dest) {
3327 return 1;
3330 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3331 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3332 return 1;
3335 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3336 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3337 return 1;
3340 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3341 d_printf("%s renaming files %s -> %s \n",
3342 cli_errstr(targetcli),
3343 targetsrc,
3344 targetdest);
3345 return 1;
3348 return 0;
3351 /****************************************************************************
3352 Print the volume name.
3353 ****************************************************************************/
3355 static int cmd_volume(void)
3357 fstring volname;
3358 uint32 serial_num;
3359 time_t create_date;
3361 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3362 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3363 return 1;
3366 d_printf("Volume: |%s| serial number 0x%x\n",
3367 volname, (unsigned int)serial_num);
3368 return 0;
3371 /****************************************************************************
3372 Hard link files using the NT call.
3373 ****************************************************************************/
3375 static int cmd_hardlink(void)
3377 TALLOC_CTX *ctx = talloc_tos();
3378 char *src, *dest;
3379 char *buf, *buf2;
3380 struct cli_state *targetcli;
3381 char *targetname;
3383 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3384 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3385 d_printf("hardlink <src> <dest>\n");
3386 return 1;
3389 src = talloc_asprintf(ctx,
3390 "%s%s",
3391 client_get_cur_dir(),
3392 buf);
3393 if (!src) {
3394 return 1;
3397 dest = talloc_asprintf(ctx,
3398 "%s%s",
3399 client_get_cur_dir(),
3400 buf2);
3401 if (!dest) {
3402 return 1;
3405 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3406 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3407 return 1;
3410 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3411 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3412 return 1;
3415 return 0;
3418 /****************************************************************************
3419 Toggle the prompt flag.
3420 ****************************************************************************/
3422 static int cmd_prompt(void)
3424 prompt = !prompt;
3425 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3426 return 1;
3429 /****************************************************************************
3430 Set the newer than time.
3431 ****************************************************************************/
3433 static int cmd_newer(void)
3435 TALLOC_CTX *ctx = talloc_tos();
3436 char *buf;
3437 bool ok;
3438 SMB_STRUCT_STAT sbuf;
3440 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3441 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3442 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3443 DEBUG(1,("Getting files newer than %s",
3444 time_to_asc(newer_than)));
3445 } else {
3446 newer_than = 0;
3449 if (ok && newer_than == 0) {
3450 d_printf("Error setting newer-than time\n");
3451 return 1;
3454 return 0;
3457 /****************************************************************************
3458 Set the archive level.
3459 ****************************************************************************/
3461 static int cmd_archive(void)
3463 TALLOC_CTX *ctx = talloc_tos();
3464 char *buf;
3466 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3467 archive_level = atoi(buf);
3468 } else {
3469 d_printf("Archive level is %d\n",archive_level);
3472 return 0;
3475 /****************************************************************************
3476 Toggle the lowercaseflag.
3477 ****************************************************************************/
3479 static int cmd_lowercase(void)
3481 lowercase = !lowercase;
3482 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3483 return 0;
3486 /****************************************************************************
3487 Toggle the case sensitive flag.
3488 ****************************************************************************/
3490 static int cmd_setcase(void)
3492 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3494 cli_set_case_sensitive(cli, !orig_case_sensitive);
3495 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3496 "on":"off"));
3497 return 0;
3500 /****************************************************************************
3501 Toggle the showacls flag.
3502 ****************************************************************************/
3504 static int cmd_showacls(void)
3506 showacls = !showacls;
3507 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3508 return 0;
3512 /****************************************************************************
3513 Toggle the recurse flag.
3514 ****************************************************************************/
3516 static int cmd_recurse(void)
3518 recurse = !recurse;
3519 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3520 return 0;
3523 /****************************************************************************
3524 Toggle the translate flag.
3525 ****************************************************************************/
3527 static int cmd_translate(void)
3529 translation = !translation;
3530 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3531 translation?"on":"off"));
3532 return 0;
3535 /****************************************************************************
3536 Do the lcd command.
3537 ****************************************************************************/
3539 static int cmd_lcd(void)
3541 TALLOC_CTX *ctx = talloc_tos();
3542 char *buf;
3543 char *d;
3545 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3546 if (chdir(buf) == -1) {
3547 d_printf("chdir to %s failed (%s)\n",
3548 buf, strerror(errno));
3551 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3552 if (!d) {
3553 return 1;
3555 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3556 return 0;
3559 /****************************************************************************
3560 Get a file restarting at end of local file.
3561 ****************************************************************************/
3563 static int cmd_reget(void)
3565 TALLOC_CTX *ctx = talloc_tos();
3566 char *local_name = NULL;
3567 char *remote_name = NULL;
3568 char *fname = NULL;
3569 char *p = NULL;
3571 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3572 if (!remote_name) {
3573 return 1;
3576 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3577 d_printf("reget <filename>\n");
3578 return 1;
3580 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3581 if (!remote_name) {
3582 return 1;
3584 remote_name = clean_name(ctx,remote_name);
3585 if (!remote_name) {
3586 return 1;
3589 local_name = fname;
3590 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3591 if (p) {
3592 local_name = p;
3595 return do_get(remote_name, local_name, true);
3598 /****************************************************************************
3599 Put a file restarting at end of local file.
3600 ****************************************************************************/
3602 static int cmd_reput(void)
3604 TALLOC_CTX *ctx = talloc_tos();
3605 char *local_name = NULL;
3606 char *remote_name = NULL;
3607 char *buf;
3608 SMB_STRUCT_STAT st;
3610 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3611 if (!remote_name) {
3612 return 1;
3615 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3616 d_printf("reput <filename>\n");
3617 return 1;
3620 if (!file_exist_stat(local_name, &st)) {
3621 d_printf("%s does not exist\n", local_name);
3622 return 1;
3625 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3626 remote_name = talloc_asprintf_append(remote_name,
3627 "%s", buf);
3628 } else {
3629 remote_name = talloc_asprintf_append(remote_name,
3630 "%s", local_name);
3632 if (!remote_name) {
3633 return 1;
3636 remote_name = clean_name(ctx, remote_name);
3637 if (!remote_name) {
3638 return 1;
3641 return do_put(remote_name, local_name, true);
3644 /****************************************************************************
3645 List a share name.
3646 ****************************************************************************/
3648 static void browse_fn(const char *name, uint32 m,
3649 const char *comment, void *state)
3651 const char *typestr = "";
3653 switch (m & 7) {
3654 case STYPE_DISKTREE:
3655 typestr = "Disk";
3656 break;
3657 case STYPE_PRINTQ:
3658 typestr = "Printer";
3659 break;
3660 case STYPE_DEVICE:
3661 typestr = "Device";
3662 break;
3663 case STYPE_IPC:
3664 typestr = "IPC";
3665 break;
3667 /* FIXME: If the remote machine returns non-ascii characters
3668 in any of these fields, they can corrupt the output. We
3669 should remove them. */
3670 if (!grepable) {
3671 d_printf("\t%-15s %-10.10s%s\n",
3672 name,typestr,comment);
3673 } else {
3674 d_printf ("%s|%s|%s\n",typestr,name,comment);
3678 static bool browse_host_rpc(bool sort)
3680 NTSTATUS status;
3681 struct rpc_pipe_client *pipe_hnd = NULL;
3682 TALLOC_CTX *frame = talloc_stackframe();
3683 WERROR werr;
3684 struct srvsvc_NetShareInfoCtr info_ctr;
3685 struct srvsvc_NetShareCtr1 ctr1;
3686 uint32_t resume_handle = 0;
3687 uint32_t total_entries = 0;
3688 int i;
3690 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3691 &pipe_hnd);
3693 if (!NT_STATUS_IS_OK(status)) {
3694 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3695 nt_errstr(status)));
3696 TALLOC_FREE(frame);
3697 return false;
3700 ZERO_STRUCT(info_ctr);
3701 ZERO_STRUCT(ctr1);
3703 info_ctr.level = 1;
3704 info_ctr.ctr.ctr1 = &ctr1;
3706 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3707 pipe_hnd->desthost,
3708 &info_ctr,
3709 0xffffffff,
3710 &total_entries,
3711 &resume_handle,
3712 &werr);
3714 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3715 TALLOC_FREE(pipe_hnd);
3716 TALLOC_FREE(frame);
3717 return false;
3720 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3721 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3722 browse_fn(info.name, info.type, info.comment, NULL);
3725 TALLOC_FREE(pipe_hnd);
3726 TALLOC_FREE(frame);
3727 return true;
3730 /****************************************************************************
3731 Try and browse available connections on a host.
3732 ****************************************************************************/
3734 static bool browse_host(bool sort)
3736 int ret;
3737 if (!grepable) {
3738 d_printf("\n\tSharename Type Comment\n");
3739 d_printf("\t--------- ---- -------\n");
3742 if (browse_host_rpc(sort)) {
3743 return true;
3746 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3747 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3749 return (ret != -1);
3752 /****************************************************************************
3753 List a server name.
3754 ****************************************************************************/
3756 static void server_fn(const char *name, uint32 m,
3757 const char *comment, void *state)
3760 if (!grepable){
3761 d_printf("\t%-16s %s\n", name, comment);
3762 } else {
3763 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3767 /****************************************************************************
3768 Try and browse available connections on a host.
3769 ****************************************************************************/
3771 static bool list_servers(const char *wk_grp)
3773 fstring state;
3775 if (!cli->server_domain)
3776 return false;
3778 if (!grepable) {
3779 d_printf("\n\tServer Comment\n");
3780 d_printf("\t--------- -------\n");
3782 fstrcpy( state, "Server" );
3783 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3784 state);
3786 if (!grepable) {
3787 d_printf("\n\tWorkgroup Master\n");
3788 d_printf("\t--------- -------\n");
3791 fstrcpy( state, "Workgroup" );
3792 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3793 server_fn, state);
3794 return true;
3797 /****************************************************************************
3798 Print or set current VUID
3799 ****************************************************************************/
3801 static int cmd_vuid(void)
3803 TALLOC_CTX *ctx = talloc_tos();
3804 char *buf;
3806 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3807 d_printf("Current VUID is %d\n", cli->vuid);
3808 return 0;
3811 cli->vuid = atoi(buf);
3812 return 0;
3815 /****************************************************************************
3816 Setup a new VUID, by issuing a session setup
3817 ****************************************************************************/
3819 static int cmd_logon(void)
3821 TALLOC_CTX *ctx = talloc_tos();
3822 char *l_username, *l_password;
3824 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3825 d_printf("logon <username> [<password>]\n");
3826 return 0;
3829 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3830 char *pass = getpass("Password: ");
3831 if (pass) {
3832 l_password = talloc_strdup(ctx,pass);
3835 if (!l_password) {
3836 return 1;
3839 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3840 l_password, strlen(l_password),
3841 l_password, strlen(l_password),
3842 lp_workgroup()))) {
3843 d_printf("session setup failed: %s\n", cli_errstr(cli));
3844 return -1;
3847 d_printf("Current VUID is %d\n", cli->vuid);
3848 return 0;
3852 /****************************************************************************
3853 list active connections
3854 ****************************************************************************/
3856 static int cmd_list_connect(void)
3858 cli_cm_display(cli);
3859 return 0;
3862 /****************************************************************************
3863 display the current active client connection
3864 ****************************************************************************/
3866 static int cmd_show_connect( void )
3868 TALLOC_CTX *ctx = talloc_tos();
3869 struct cli_state *targetcli;
3870 char *targetpath;
3872 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3873 &targetcli, &targetpath ) ) {
3874 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3875 return 1;
3878 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3879 return 0;
3882 /****************************************************************************
3883 iosize command
3884 ***************************************************************************/
3886 int cmd_iosize(void)
3888 TALLOC_CTX *ctx = talloc_tos();
3889 char *buf;
3890 int iosize;
3892 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3893 if (!smb_encrypt) {
3894 d_printf("iosize <n> or iosize 0x<n>. "
3895 "Minimum is 16384 (0x4000), "
3896 "max is 16776960 (0xFFFF00)\n");
3897 } else {
3898 d_printf("iosize <n> or iosize 0x<n>. "
3899 "(Encrypted connection) ,"
3900 "Minimum is 16384 (0x4000), "
3901 "max is 130048 (0x1FC00)\n");
3903 return 1;
3906 iosize = strtol(buf,NULL,0);
3907 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3908 d_printf("iosize out of range for encrypted "
3909 "connection (min = 16384 (0x4000), "
3910 "max = 130048 (0x1FC00)");
3911 return 1;
3912 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3913 d_printf("iosize out of range (min = 16384 (0x4000), "
3914 "max = 16776960 (0xFFFF00)");
3915 return 1;
3918 io_bufsize = iosize;
3919 d_printf("iosize is now %d\n", io_bufsize);
3920 return 0;
3924 /* Some constants for completing filename arguments */
3926 #define COMPL_NONE 0 /* No completions */
3927 #define COMPL_REMOTE 1 /* Complete remote filename */
3928 #define COMPL_LOCAL 2 /* Complete local filename */
3930 /* This defines the commands supported by this client.
3931 * NOTE: The "!" must be the last one in the list because it's fn pointer
3932 * field is NULL, and NULL in that field is used in process_tok()
3933 * (below) to indicate the end of the list. crh
3935 static struct {
3936 const char *name;
3937 int (*fn)(void);
3938 const char *description;
3939 char compl_args[2]; /* Completion argument info */
3940 } commands[] = {
3941 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3942 {"allinfo",cmd_allinfo,"<file> show all available info",
3943 {COMPL_NONE,COMPL_NONE}},
3944 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3945 {"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}},
3946 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3947 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3948 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3949 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3950 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3951 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3952 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3953 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3954 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3955 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3956 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3957 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3958 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3959 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3960 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3961 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3962 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3963 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3964 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3965 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3966 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3967 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3968 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3969 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3970 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3971 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3972 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3973 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3974 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3975 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3976 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3977 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3978 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3979 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3980 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3981 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3982 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3983 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3984 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3985 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3986 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3987 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3988 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3989 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3990 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3991 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3992 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3993 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3994 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3995 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3996 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3997 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3998 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3999 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4000 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4001 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4002 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4003 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4004 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4005 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4006 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4007 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4008 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4009 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4010 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4011 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4012 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4013 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4015 /* Yes, this must be here, see crh's comment above. */
4016 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4017 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4020 /*******************************************************************
4021 Lookup a command string in the list of commands, including
4022 abbreviations.
4023 ******************************************************************/
4025 static int process_tok(char *tok)
4027 int i = 0, matches = 0;
4028 int cmd=0;
4029 int tok_len = strlen(tok);
4031 while (commands[i].fn != NULL) {
4032 if (strequal(commands[i].name,tok)) {
4033 matches = 1;
4034 cmd = i;
4035 break;
4036 } else if (strnequal(commands[i].name, tok, tok_len)) {
4037 matches++;
4038 cmd = i;
4040 i++;
4043 if (matches == 0)
4044 return(-1);
4045 else if (matches == 1)
4046 return(cmd);
4047 else
4048 return(-2);
4051 /****************************************************************************
4052 Help.
4053 ****************************************************************************/
4055 static int cmd_help(void)
4057 TALLOC_CTX *ctx = talloc_tos();
4058 int i=0,j;
4059 char *buf;
4061 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4062 if ((i = process_tok(buf)) >= 0)
4063 d_printf("HELP %s:\n\t%s\n\n",
4064 commands[i].name,commands[i].description);
4065 } else {
4066 while (commands[i].description) {
4067 for (j=0; commands[i].description && (j<5); j++) {
4068 d_printf("%-15s",commands[i].name);
4069 i++;
4071 d_printf("\n");
4074 return 0;
4077 /****************************************************************************
4078 Process a -c command string.
4079 ****************************************************************************/
4081 static int process_command_string(const char *cmd_in)
4083 TALLOC_CTX *ctx = talloc_tos();
4084 char *cmd = talloc_strdup(ctx, cmd_in);
4085 int rc = 0;
4087 if (!cmd) {
4088 return 1;
4090 /* establish the connection if not already */
4092 if (!cli) {
4093 cli = cli_cm_open(talloc_tos(), NULL,
4094 have_ip ? dest_ss_str : desthost,
4095 service, auth_info,
4096 true, smb_encrypt,
4097 max_protocol, port, name_type);
4098 if (!cli) {
4099 return 1;
4103 while (cmd[0] != '\0') {
4104 char *line;
4105 char *p;
4106 char *tok;
4107 int i;
4109 if ((p = strchr_m(cmd, ';')) == 0) {
4110 line = cmd;
4111 cmd += strlen(cmd);
4112 } else {
4113 *p = '\0';
4114 line = cmd;
4115 cmd = p + 1;
4118 /* and get the first part of the command */
4119 cmd_ptr = line;
4120 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4121 continue;
4124 if ((i = process_tok(tok)) >= 0) {
4125 rc = commands[i].fn();
4126 } else if (i == -2) {
4127 d_printf("%s: command abbreviation ambiguous\n",tok);
4128 } else {
4129 d_printf("%s: command not found\n",tok);
4133 return rc;
4136 #define MAX_COMPLETIONS 100
4138 typedef struct {
4139 char *dirmask;
4140 char **matches;
4141 int count, samelen;
4142 const char *text;
4143 int len;
4144 } completion_remote_t;
4146 static void completion_remote_filter(const char *mnt,
4147 file_info *f,
4148 const char *mask,
4149 void *state)
4151 completion_remote_t *info = (completion_remote_t *)state;
4153 if ((info->count < MAX_COMPLETIONS - 1) &&
4154 (strncmp(info->text, f->name, info->len) == 0) &&
4155 (strcmp(f->name, ".") != 0) &&
4156 (strcmp(f->name, "..") != 0)) {
4157 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4158 info->matches[info->count] = SMB_STRDUP(f->name);
4159 else {
4160 TALLOC_CTX *ctx = talloc_stackframe();
4161 char *tmp;
4163 tmp = talloc_strdup(ctx,info->dirmask);
4164 if (!tmp) {
4165 TALLOC_FREE(ctx);
4166 return;
4168 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4169 if (!tmp) {
4170 TALLOC_FREE(ctx);
4171 return;
4173 if (f->mode & aDIR) {
4174 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4176 if (!tmp) {
4177 TALLOC_FREE(ctx);
4178 return;
4180 info->matches[info->count] = SMB_STRDUP(tmp);
4181 TALLOC_FREE(ctx);
4183 if (info->matches[info->count] == NULL) {
4184 return;
4186 if (f->mode & aDIR) {
4187 smb_readline_ca_char(0);
4189 if (info->count == 1) {
4190 info->samelen = strlen(info->matches[info->count]);
4191 } else {
4192 while (strncmp(info->matches[info->count],
4193 info->matches[info->count-1],
4194 info->samelen) != 0) {
4195 info->samelen--;
4198 info->count++;
4202 static char **remote_completion(const char *text, int len)
4204 TALLOC_CTX *ctx = talloc_stackframe();
4205 char *dirmask = NULL;
4206 char *targetpath = NULL;
4207 struct cli_state *targetcli = NULL;
4208 int i;
4209 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4211 /* can't have non-static intialisation on Sun CC, so do it
4212 at run time here */
4213 info.samelen = len;
4214 info.text = text;
4215 info.len = len;
4217 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4218 if (!info.matches) {
4219 TALLOC_FREE(ctx);
4220 return NULL;
4224 * We're leaving matches[0] free to fill it later with the text to
4225 * display: Either the one single match or the longest common subset
4226 * of the matches.
4228 info.matches[0] = NULL;
4229 info.count = 1;
4231 for (i = len-1; i >= 0; i--) {
4232 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4233 break;
4237 info.text = text+i+1;
4238 info.samelen = info.len = len-i-1;
4240 if (i > 0) {
4241 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4242 if (!info.dirmask) {
4243 goto cleanup;
4245 strncpy(info.dirmask, text, i+1);
4246 info.dirmask[i+1] = 0;
4247 dirmask = talloc_asprintf(ctx,
4248 "%s%*s*",
4249 client_get_cur_dir(),
4250 i-1,
4251 text);
4252 } else {
4253 info.dirmask = SMB_STRDUP("");
4254 if (!info.dirmask) {
4255 goto cleanup;
4257 dirmask = talloc_asprintf(ctx,
4258 "%s*",
4259 client_get_cur_dir());
4261 if (!dirmask) {
4262 goto cleanup;
4265 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4266 goto cleanup;
4268 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4269 completion_remote_filter, (void *)&info) < 0) {
4270 goto cleanup;
4273 if (info.count == 1) {
4275 * No matches at all, NULL indicates there is nothing
4277 SAFE_FREE(info.matches[0]);
4278 SAFE_FREE(info.matches);
4279 TALLOC_FREE(ctx);
4280 return NULL;
4283 if (info.count == 2) {
4285 * Exactly one match in matches[1], indicate this is the one
4286 * in matches[0].
4288 info.matches[0] = info.matches[1];
4289 info.matches[1] = NULL;
4290 info.count -= 1;
4291 TALLOC_FREE(ctx);
4292 return info.matches;
4296 * We got more than one possible match, set the result to the maximum
4297 * common subset
4300 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4301 info.matches[info.count] = NULL;
4302 return info.matches;
4304 cleanup:
4305 for (i = 0; i < info.count; i++) {
4306 SAFE_FREE(info.matches[i]);
4308 SAFE_FREE(info.matches);
4309 SAFE_FREE(info.dirmask);
4310 TALLOC_FREE(ctx);
4311 return NULL;
4314 static char **completion_fn(const char *text, int start, int end)
4316 smb_readline_ca_char(' ');
4318 if (start) {
4319 const char *buf, *sp;
4320 int i;
4321 char compl_type;
4323 buf = smb_readline_get_line_buffer();
4324 if (buf == NULL)
4325 return NULL;
4327 sp = strchr(buf, ' ');
4328 if (sp == NULL)
4329 return NULL;
4331 for (i = 0; commands[i].name; i++) {
4332 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4333 (commands[i].name[sp - buf] == 0)) {
4334 break;
4337 if (commands[i].name == NULL)
4338 return NULL;
4340 while (*sp == ' ')
4341 sp++;
4343 if (sp == (buf + start))
4344 compl_type = commands[i].compl_args[0];
4345 else
4346 compl_type = commands[i].compl_args[1];
4348 if (compl_type == COMPL_REMOTE)
4349 return remote_completion(text, end - start);
4350 else /* fall back to local filename completion */
4351 return NULL;
4352 } else {
4353 char **matches;
4354 int i, len, samelen = 0, count=1;
4356 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4357 if (!matches) {
4358 return NULL;
4360 matches[0] = NULL;
4362 len = strlen(text);
4363 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4364 if (strncmp(text, commands[i].name, len) == 0) {
4365 matches[count] = SMB_STRDUP(commands[i].name);
4366 if (!matches[count])
4367 goto cleanup;
4368 if (count == 1)
4369 samelen = strlen(matches[count]);
4370 else
4371 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4372 samelen--;
4373 count++;
4377 switch (count) {
4378 case 0: /* should never happen */
4379 case 1:
4380 goto cleanup;
4381 case 2:
4382 matches[0] = SMB_STRDUP(matches[1]);
4383 break;
4384 default:
4385 matches[0] = (char *)SMB_MALLOC(samelen+1);
4386 if (!matches[0])
4387 goto cleanup;
4388 strncpy(matches[0], matches[1], samelen);
4389 matches[0][samelen] = 0;
4391 matches[count] = NULL;
4392 return matches;
4394 cleanup:
4395 for (i = 0; i < count; i++)
4396 free(matches[i]);
4398 free(matches);
4399 return NULL;
4403 static bool finished;
4405 /****************************************************************************
4406 Make sure we swallow keepalives during idle time.
4407 ****************************************************************************/
4409 static void readline_callback(void)
4411 fd_set fds;
4412 struct timeval timeout;
4413 static time_t last_t;
4414 time_t t;
4416 t = time(NULL);
4418 if (t - last_t < 5)
4419 return;
4421 last_t = t;
4423 again:
4425 if (cli->fd == -1)
4426 return;
4428 FD_ZERO(&fds);
4429 FD_SET(cli->fd,&fds);
4431 timeout.tv_sec = 0;
4432 timeout.tv_usec = 0;
4433 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4435 /* We deliberately use receive_smb_raw instead of
4436 client_receive_smb as we want to receive
4437 session keepalives and then drop them here.
4439 if (FD_ISSET(cli->fd,&fds)) {
4440 NTSTATUS status;
4441 size_t len;
4443 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4445 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4447 if (!NT_STATUS_IS_OK(status)) {
4448 DEBUG(0, ("Read from server failed, maybe it closed "
4449 "the connection\n"));
4451 finished = true;
4452 smb_readline_done();
4453 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4454 set_smb_read_error(&cli->smb_rw_error,
4455 SMB_READ_EOF);
4456 return;
4459 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4460 set_smb_read_error(&cli->smb_rw_error,
4461 SMB_READ_TIMEOUT);
4462 return;
4465 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4466 return;
4468 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4469 DEBUG(0, ("Read from server "
4470 "returned unexpected packet!\n"));
4471 return;
4474 goto again;
4477 /* Ping the server to keep the connection alive using SMBecho. */
4479 NTSTATUS status;
4480 unsigned char garbage[16];
4481 memset(garbage, 0xf0, sizeof(garbage));
4482 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4484 if (!NT_STATUS_IS_OK(status)) {
4485 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4486 "the connection\n"));
4487 finished = true;
4488 smb_readline_done();
4493 /****************************************************************************
4494 Process commands on stdin.
4495 ****************************************************************************/
4497 static int process_stdin(void)
4499 int rc = 0;
4501 while (!finished) {
4502 TALLOC_CTX *frame = talloc_stackframe();
4503 char *tok = NULL;
4504 char *the_prompt = NULL;
4505 char *line = NULL;
4506 int i;
4508 /* display a prompt */
4509 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4510 TALLOC_FREE(frame);
4511 break;
4513 line = smb_readline(the_prompt, readline_callback, completion_fn);
4514 SAFE_FREE(the_prompt);
4515 if (!line) {
4516 TALLOC_FREE(frame);
4517 break;
4520 /* special case - first char is ! */
4521 if (*line == '!') {
4522 if (system(line + 1) == -1) {
4523 d_printf("system() command %s failed.\n",
4524 line+1);
4526 SAFE_FREE(line);
4527 TALLOC_FREE(frame);
4528 continue;
4531 /* and get the first part of the command */
4532 cmd_ptr = line;
4533 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4534 TALLOC_FREE(frame);
4535 SAFE_FREE(line);
4536 continue;
4539 if ((i = process_tok(tok)) >= 0) {
4540 rc = commands[i].fn();
4541 } else if (i == -2) {
4542 d_printf("%s: command abbreviation ambiguous\n",tok);
4543 } else {
4544 d_printf("%s: command not found\n",tok);
4546 SAFE_FREE(line);
4547 TALLOC_FREE(frame);
4549 return rc;
4552 /****************************************************************************
4553 Process commands from the client.
4554 ****************************************************************************/
4556 static int process(const char *base_directory)
4558 int rc = 0;
4560 cli = cli_cm_open(talloc_tos(), NULL,
4561 have_ip ? dest_ss_str : desthost,
4562 service, auth_info, true, smb_encrypt,
4563 max_protocol, port, name_type);
4564 if (!cli) {
4565 return 1;
4568 if (base_directory && *base_directory) {
4569 rc = do_cd(base_directory);
4570 if (rc) {
4571 cli_shutdown(cli);
4572 return rc;
4576 if (cmdstr) {
4577 rc = process_command_string(cmdstr);
4578 } else {
4579 process_stdin();
4582 cli_shutdown(cli);
4583 return rc;
4586 /****************************************************************************
4587 Handle a -L query.
4588 ****************************************************************************/
4590 static int do_host_query(const char *query_host)
4592 cli = cli_cm_open(talloc_tos(), NULL,
4593 query_host, "IPC$", auth_info, true, smb_encrypt,
4594 max_protocol, port, name_type);
4595 if (!cli)
4596 return 1;
4598 browse_host(true);
4600 /* Ensure that the host can do IPv4 */
4602 if (!interpret_addr(query_host)) {
4603 struct sockaddr_storage ss;
4604 if (interpret_string_addr(&ss, query_host, 0) &&
4605 (ss.ss_family != AF_INET)) {
4606 d_printf("%s is an IPv6 address -- no workgroup available\n",
4607 query_host);
4608 return 1;
4612 if (port != 139) {
4614 /* Workgroups simply don't make sense over anything
4615 else but port 139... */
4617 cli_shutdown(cli);
4618 cli = cli_cm_open(talloc_tos(), NULL,
4619 query_host, "IPC$", auth_info, true, smb_encrypt,
4620 max_protocol, 139, name_type);
4623 if (cli == NULL) {
4624 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4625 return 1;
4628 list_servers(lp_workgroup());
4630 cli_shutdown(cli);
4632 return(0);
4635 /****************************************************************************
4636 Handle a tar operation.
4637 ****************************************************************************/
4639 static int do_tar_op(const char *base_directory)
4641 int ret;
4643 /* do we already have a connection? */
4644 if (!cli) {
4645 cli = cli_cm_open(talloc_tos(), NULL,
4646 have_ip ? dest_ss_str : desthost,
4647 service, auth_info, true, smb_encrypt,
4648 max_protocol, port, name_type);
4649 if (!cli)
4650 return 1;
4653 recurse=true;
4655 if (base_directory && *base_directory) {
4656 ret = do_cd(base_directory);
4657 if (ret) {
4658 cli_shutdown(cli);
4659 return ret;
4663 ret=process_tar();
4665 cli_shutdown(cli);
4667 return(ret);
4670 /****************************************************************************
4671 Handle a message operation.
4672 ****************************************************************************/
4674 static int do_message_op(struct user_auth_info *a_info)
4676 struct sockaddr_storage ss;
4677 struct nmb_name called, calling;
4678 fstring server_name;
4679 char name_type_hex[10];
4680 int msg_port;
4681 NTSTATUS status;
4683 make_nmb_name(&calling, calling_name, 0x0);
4684 make_nmb_name(&called , desthost, name_type);
4686 fstrcpy(server_name, desthost);
4687 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4688 fstrcat(server_name, name_type_hex);
4690 zero_sockaddr(&ss);
4691 if (have_ip)
4692 ss = dest_ss;
4694 /* we can only do messages over port 139 (to windows clients at least) */
4696 msg_port = port ? port : 139;
4698 if (!(cli=cli_initialise())) {
4699 d_printf("Connection to %s failed\n", desthost);
4700 return 1;
4702 cli_set_port(cli, msg_port);
4704 status = cli_connect(cli, server_name, &ss);
4705 if (!NT_STATUS_IS_OK(status)) {
4706 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4707 return 1;
4710 if (!cli_session_request(cli, &calling, &called)) {
4711 d_printf("session request failed\n");
4712 cli_shutdown(cli);
4713 return 1;
4716 send_message(get_cmdline_auth_info_username(a_info));
4717 cli_shutdown(cli);
4719 return 0;
4722 /****************************************************************************
4723 main program
4724 ****************************************************************************/
4726 int main(int argc,char *argv[])
4728 char *base_directory = NULL;
4729 int opt;
4730 char *query_host = NULL;
4731 bool message = false;
4732 static const char *new_name_resolve_order = NULL;
4733 poptContext pc;
4734 char *p;
4735 int rc = 0;
4736 fstring new_workgroup;
4737 bool tar_opt = false;
4738 bool service_opt = false;
4739 struct poptOption long_options[] = {
4740 POPT_AUTOHELP
4742 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4743 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4744 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4745 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4746 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4747 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4748 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4749 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4750 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4751 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4752 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4753 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4754 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4755 POPT_COMMON_SAMBA
4756 POPT_COMMON_CONNECTION
4757 POPT_COMMON_CREDENTIALS
4758 POPT_TABLEEND
4760 TALLOC_CTX *frame = talloc_stackframe();
4762 if (!client_set_cur_dir("\\")) {
4763 exit(ENOMEM);
4766 /* initialize the workgroup name so we can determine whether or
4767 not it was set by a command line option */
4769 set_global_myworkgroup( "" );
4770 set_global_myname( "" );
4772 /* set default debug level to 1 regardless of what smb.conf sets */
4773 setup_logging( "smbclient", true );
4774 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4775 if ((dbf = x_fdup(x_stderr))) {
4776 x_setbuf( dbf, NULL );
4779 load_case_tables();
4781 auth_info = user_auth_info_init(frame);
4782 if (auth_info == NULL) {
4783 exit(1);
4785 popt_common_set_auth_info(auth_info);
4787 /* skip argv(0) */
4788 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4789 poptSetOtherOptionHelp(pc, "service <password>");
4791 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4793 while ((opt = poptGetNextOpt(pc)) != -1) {
4795 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4796 /* I see no other way to keep things sane --SSS */
4797 if (tar_opt == true) {
4798 while (poptPeekArg(pc)) {
4799 poptGetArg(pc);
4801 tar_opt = false;
4804 /* if the service has not yet been specified lets see if it is available in the popt stack */
4805 if (!service_opt && poptPeekArg(pc)) {
4806 service = talloc_strdup(frame, poptGetArg(pc));
4807 if (!service) {
4808 exit(ENOMEM);
4810 service_opt = true;
4813 /* if the service has already been retrieved then check if we have also a password */
4814 if (service_opt
4815 && (!get_cmdline_auth_info_got_pass(auth_info))
4816 && poptPeekArg(pc)) {
4817 set_cmdline_auth_info_password(auth_info,
4818 poptGetArg(pc));
4821 switch (opt) {
4822 case 'M':
4823 /* Messages are sent to NetBIOS name type 0x3
4824 * (Messenger Service). Make sure we default
4825 * to port 139 instead of port 445. srl,crh
4827 name_type = 0x03;
4828 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4829 if (!desthost) {
4830 exit(ENOMEM);
4832 if( !port )
4833 port = 139;
4834 message = true;
4835 break;
4836 case 'I':
4838 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4839 exit(1);
4841 have_ip = true;
4842 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4844 break;
4845 case 'E':
4846 if (dbf) {
4847 x_fclose(dbf);
4849 dbf = x_stderr;
4850 display_set_stderr();
4851 break;
4853 case 'L':
4854 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4855 if (!query_host) {
4856 exit(ENOMEM);
4858 break;
4859 case 'm':
4860 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4861 break;
4862 case 'T':
4863 /* We must use old option processing for this. Find the
4864 * position of the -T option in the raw argv[]. */
4866 int i;
4867 for (i = 1; i < argc; i++) {
4868 if (strncmp("-T", argv[i],2)==0)
4869 break;
4871 i++;
4872 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4873 poptPrintUsage(pc, stderr, 0);
4874 exit(1);
4877 /* this must be the last option, mark we have parsed it so that we know we have */
4878 tar_opt = true;
4879 break;
4880 case 'D':
4881 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4882 if (!base_directory) {
4883 exit(ENOMEM);
4885 break;
4886 case 'g':
4887 grepable=true;
4888 break;
4889 case 'e':
4890 smb_encrypt=true;
4891 break;
4892 case 'B':
4893 return(do_smb_browse());
4898 /* We may still have some leftovers after the last popt option has been called */
4899 if (tar_opt == true) {
4900 while (poptPeekArg(pc)) {
4901 poptGetArg(pc);
4903 tar_opt = false;
4906 /* if the service has not yet been specified lets see if it is available in the popt stack */
4907 if (!service_opt && poptPeekArg(pc)) {
4908 service = talloc_strdup(frame,poptGetArg(pc));
4909 if (!service) {
4910 exit(ENOMEM);
4912 service_opt = true;
4915 /* if the service has already been retrieved then check if we have also a password */
4916 if (service_opt
4917 && !get_cmdline_auth_info_got_pass(auth_info)
4918 && poptPeekArg(pc)) {
4919 set_cmdline_auth_info_password(auth_info,
4920 poptGetArg(pc));
4924 * Don't load debug level from smb.conf. It should be
4925 * set by cmdline arg or remain default (0)
4927 AllowDebugChange = false;
4929 /* save the workgroup...
4931 FIXME!! do we need to do this for other options as well
4932 (or maybe a generic way to keep lp_load() from overwriting
4933 everything)? */
4935 fstrcpy( new_workgroup, lp_workgroup() );
4936 calling_name = talloc_strdup(frame, global_myname() );
4937 if (!calling_name) {
4938 exit(ENOMEM);
4941 if ( override_logfile )
4942 setup_logging( lp_logfile(), false );
4944 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4945 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4946 argv[0], get_dyn_CONFIGFILE());
4949 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4950 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4951 exit(-1);
4954 load_interfaces();
4956 if (service_opt && service) {
4957 size_t len;
4959 /* Convert any '/' characters in the service name to '\' characters */
4960 string_replace(service, '/','\\');
4961 if (count_chars(service,'\\') < 3) {
4962 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4963 poptPrintUsage(pc, stderr, 0);
4964 exit(1);
4966 /* Remove trailing slashes */
4967 len = strlen(service);
4968 while(len > 0 && service[len - 1] == '\\') {
4969 --len;
4970 service[len] = '\0';
4974 if ( strlen(new_workgroup) != 0 ) {
4975 set_global_myworkgroup( new_workgroup );
4978 if ( strlen(calling_name) != 0 ) {
4979 set_global_myname( calling_name );
4980 } else {
4981 TALLOC_FREE(calling_name);
4982 calling_name = talloc_strdup(frame, global_myname() );
4985 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
4986 if (!init_names()) {
4987 fprintf(stderr, "init_names() failed\n");
4988 exit(1);
4991 if(new_name_resolve_order)
4992 lp_set_name_resolve_order(new_name_resolve_order);
4994 if (!tar_type && !query_host && !service && !message) {
4995 poptPrintUsage(pc, stderr, 0);
4996 exit(1);
4999 poptFreeContext(pc);
5001 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5003 /* Ensure we have a password (or equivalent). */
5004 set_cmdline_auth_info_getpass(auth_info);
5006 if (tar_type) {
5007 if (cmdstr)
5008 process_command_string(cmdstr);
5009 return do_tar_op(base_directory);
5012 if (query_host && *query_host) {
5013 char *qhost = query_host;
5014 char *slash;
5016 while (*qhost == '\\' || *qhost == '/')
5017 qhost++;
5019 if ((slash = strchr_m(qhost, '/'))
5020 || (slash = strchr_m(qhost, '\\'))) {
5021 *slash = 0;
5024 if ((p=strchr_m(qhost, '#'))) {
5025 *p = 0;
5026 p++;
5027 sscanf(p, "%x", &name_type);
5030 return do_host_query(qhost);
5033 if (message) {
5034 return do_message_op(auth_info);
5037 if (process(base_directory)) {
5038 return 1;
5041 TALLOC_FREE(frame);
5042 return rc;