s4-drstest: Don't remove temp LDB so it can be reviewed if necessary
[Samba/nascimento.git] / source3 / client / client.c
blob504b1dd9b30ba5dcd6d6a6153abdffbc804573f6
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 "../librpc/gen_ndr/cli_srvsvc.h"
28 #ifndef REGISTER
29 #define REGISTER 0
30 #endif
32 extern int do_smb_browse(void); /* mDNS browsing */
34 extern bool AllowDebugChange;
35 extern bool override_logfile;
36 extern char tar_type;
38 static int port = 0;
39 static char *service;
40 static char *desthost;
41 static char *calling_name;
42 static bool grepable = false;
43 static char *cmdstr = NULL;
44 const char *cmd_ptr = NULL;
46 static int io_bufsize = 524288;
48 static int name_type = 0x20;
49 static int max_protocol = PROTOCOL_NT1;
51 static int process_tok(char *tok);
52 static int cmd_help(void);
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
63 time_t newer_than = 0;
64 static int archive_level = 0;
66 static bool translation = false;
67 static bool have_ip;
69 /* clitar bits insert */
70 extern int blocksize;
71 extern bool tar_inc;
72 extern bool tar_reset;
73 /* clitar bits end */
75 static bool prompt = true;
77 static bool recurse = false;
78 static bool showacls = false;
79 bool lowercase = false;
81 static struct sockaddr_storage dest_ss;
82 static char dest_ss_str[INET6_ADDRSTRLEN];
84 #define SEPARATORS " \t\n\r"
86 static bool abort_mget = true;
88 /* timing globals */
89 uint64_t get_total_size = 0;
90 unsigned int get_total_time_ms = 0;
91 static uint64_t put_total_size = 0;
92 static unsigned int put_total_time_ms = 0;
94 /* totals globals */
95 static double dir_total;
97 /* encrypted state. */
98 static bool smb_encrypt;
100 /* root cli_state connection */
102 struct cli_state *cli;
104 static char CLI_DIRSEP_CHAR = '\\';
105 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
107 /* Authentication for client connections. */
108 struct user_auth_info *auth_info;
110 /* Accessor functions for directory paths. */
111 static char *fileselection;
112 static const char *client_get_fileselection(void)
114 if (fileselection) {
115 return fileselection;
117 return "";
120 static const char *client_set_fileselection(const char *new_fs)
122 SAFE_FREE(fileselection);
123 if (new_fs) {
124 fileselection = SMB_STRDUP(new_fs);
126 return client_get_fileselection();
129 static char *cwd;
130 static const char *client_get_cwd(void)
132 if (cwd) {
133 return cwd;
135 return CLI_DIRSEP_STR;
138 static const char *client_set_cwd(const char *new_cwd)
140 SAFE_FREE(cwd);
141 if (new_cwd) {
142 cwd = SMB_STRDUP(new_cwd);
144 return client_get_cwd();
147 static char *cur_dir;
148 const char *client_get_cur_dir(void)
150 if (cur_dir) {
151 return cur_dir;
153 return CLI_DIRSEP_STR;
156 const char *client_set_cur_dir(const char *newdir)
158 SAFE_FREE(cur_dir);
159 if (newdir) {
160 cur_dir = SMB_STRDUP(newdir);
162 return client_get_cur_dir();
165 /****************************************************************************
166 Write to a local file with CR/LF->LF translation if appropriate. Return the
167 number taken from the buffer. This may not equal the number written.
168 ****************************************************************************/
170 static int writefile(int f, char *b, int n)
172 int i;
174 if (!translation) {
175 return write(f,b,n);
178 i = 0;
179 while (i < n) {
180 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
181 b++;i++;
183 if (write(f, b, 1) != 1) {
184 break;
186 b++;
187 i++;
190 return(i);
193 /****************************************************************************
194 Read from a file with LF->CR/LF translation if appropriate. Return the
195 number read. read approx n bytes.
196 ****************************************************************************/
198 static int readfile(uint8_t *b, int n, XFILE *f)
200 int i;
201 int c;
203 if (!translation)
204 return x_fread(b,1,n,f);
206 i = 0;
207 while (i < (n - 1) && (i < BUFFER_SIZE)) {
208 if ((c = x_getc(f)) == EOF) {
209 break;
212 if (c == '\n') { /* change all LFs to CR/LF */
213 b[i++] = '\r';
216 b[i++] = c;
219 return(i);
222 struct push_state {
223 XFILE *f;
224 SMB_OFF_T nread;
227 static size_t push_source(uint8_t *buf, size_t n, void *priv)
229 struct push_state *state = (struct push_state *)priv;
230 int result;
232 if (x_feof(state->f)) {
233 return 0;
236 result = readfile(buf, n, state->f);
237 state->nread += result;
238 return result;
241 /****************************************************************************
242 Send a message.
243 ****************************************************************************/
245 static void send_message(const char *username)
247 char buf[1600];
248 NTSTATUS status;
249 int i;
251 d_printf("Type your message, ending it with a Control-D\n");
253 i = 0;
254 while (i<sizeof(buf)-2) {
255 int c = fgetc(stdin);
256 if (c == EOF) {
257 break;
259 if (c == '\n') {
260 buf[i++] = '\r';
262 buf[i++] = c;
264 buf[i] = '\0';
266 status = cli_message(cli, desthost, username, buf);
267 if (!NT_STATUS_IS_OK(status)) {
268 d_fprintf(stderr, "cli_message returned %s\n",
269 nt_errstr(status));
273 /****************************************************************************
274 Check the space on a device.
275 ****************************************************************************/
277 static int do_dskattr(void)
279 int total, bsize, avail;
280 struct cli_state *targetcli = NULL;
281 char *targetpath = NULL;
282 TALLOC_CTX *ctx = talloc_tos();
284 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
285 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
286 return 1;
289 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
290 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
291 return 1;
294 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
295 total, bsize, avail);
297 return 0;
300 /****************************************************************************
301 Show cd/pwd.
302 ****************************************************************************/
304 static int cmd_pwd(void)
306 d_printf("Current directory is %s",service);
307 d_printf("%s\n",client_get_cur_dir());
308 return 0;
311 /****************************************************************************
312 Ensure name has correct directory separators.
313 ****************************************************************************/
315 static void normalize_name(char *newdir)
317 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
318 string_replace(newdir,'/','\\');
322 /****************************************************************************
323 Change directory - inner section.
324 ****************************************************************************/
326 static int do_cd(const char *new_dir)
328 char *newdir = NULL;
329 char *saved_dir = NULL;
330 char *new_cd = NULL;
331 char *targetpath = NULL;
332 struct cli_state *targetcli = NULL;
333 SMB_STRUCT_STAT sbuf;
334 uint32 attributes;
335 int ret = 1;
336 TALLOC_CTX *ctx = talloc_stackframe();
338 newdir = talloc_strdup(ctx, new_dir);
339 if (!newdir) {
340 TALLOC_FREE(ctx);
341 return 1;
344 normalize_name(newdir);
346 /* Save the current directory in case the new directory is invalid */
348 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
349 if (!saved_dir) {
350 TALLOC_FREE(ctx);
351 return 1;
354 if (*newdir == CLI_DIRSEP_CHAR) {
355 client_set_cur_dir(newdir);
356 new_cd = newdir;
357 } else {
358 new_cd = talloc_asprintf(ctx, "%s%s",
359 client_get_cur_dir(),
360 newdir);
361 if (!new_cd) {
362 goto out;
366 /* Ensure cur_dir ends in a DIRSEP */
367 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
368 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
369 if (!new_cd) {
370 goto out;
373 client_set_cur_dir(new_cd);
375 new_cd = clean_name(ctx, new_cd);
376 client_set_cur_dir(new_cd);
378 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
379 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
380 client_set_cur_dir(saved_dir);
381 goto out;
384 if (strequal(targetpath,CLI_DIRSEP_STR )) {
385 TALLOC_FREE(ctx);
386 return 0;
389 /* Use a trans2_qpathinfo to test directories for modern servers.
390 Except Win9x doesn't support the qpathinfo_basic() call..... */
392 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
393 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
394 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
395 client_set_cur_dir(saved_dir);
396 goto out;
399 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
400 d_printf("cd %s: not a directory\n", new_cd);
401 client_set_cur_dir(saved_dir);
402 goto out;
404 } else {
405 targetpath = talloc_asprintf(ctx,
406 "%s%s",
407 targetpath,
408 CLI_DIRSEP_STR );
409 if (!targetpath) {
410 client_set_cur_dir(saved_dir);
411 goto out;
413 targetpath = clean_name(ctx, targetpath);
414 if (!targetpath) {
415 client_set_cur_dir(saved_dir);
416 goto out;
419 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
420 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
421 client_set_cur_dir(saved_dir);
422 goto out;
426 ret = 0;
428 out:
430 TALLOC_FREE(ctx);
431 return ret;
434 /****************************************************************************
435 Change directory.
436 ****************************************************************************/
438 static int cmd_cd(void)
440 char *buf = NULL;
441 int rc = 0;
443 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
444 rc = do_cd(buf);
445 } else {
446 d_printf("Current directory is %s\n",client_get_cur_dir());
449 return rc;
452 /****************************************************************************
453 Change directory.
454 ****************************************************************************/
456 static int cmd_cd_oneup(void)
458 return do_cd("..");
461 /*******************************************************************
462 Decide if a file should be operated on.
463 ********************************************************************/
465 static bool do_this_one(file_info *finfo)
467 if (!finfo->name) {
468 return false;
471 if (finfo->mode & aDIR) {
472 return true;
475 if (*client_get_fileselection() &&
476 !mask_match(finfo->name,client_get_fileselection(),false)) {
477 DEBUG(3,("mask_match %s failed\n", finfo->name));
478 return false;
481 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
482 DEBUG(3,("newer_than %s failed\n", finfo->name));
483 return false;
486 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
487 DEBUG(3,("archive %s failed\n", finfo->name));
488 return false;
491 return true;
494 /****************************************************************************
495 Display info about a file.
496 ****************************************************************************/
498 static void display_finfo(file_info *finfo, const char *dir)
500 time_t t;
501 TALLOC_CTX *ctx = talloc_tos();
503 if (!do_this_one(finfo)) {
504 return;
507 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
508 if (!showacls) {
509 d_printf(" %-30s%7.7s %8.0f %s",
510 finfo->name,
511 attrib_string(finfo->mode),
512 (double)finfo->size,
513 time_to_asc(t));
514 dir_total += finfo->size;
515 } else {
516 char *afname = NULL;
517 uint16_t fnum;
519 /* skip if this is . or .. */
520 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
521 return;
522 /* create absolute filename for cli_ntcreate() FIXME */
523 afname = talloc_asprintf(ctx,
524 "%s%s%s",
525 dir,
526 CLI_DIRSEP_STR,
527 finfo->name);
528 if (!afname) {
529 return;
531 /* print file meta date header */
532 d_printf( "FILENAME:%s\n", finfo->name);
533 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
534 d_printf( "SIZE:%.0f\n", (double)finfo->size);
535 d_printf( "MTIME:%s", time_to_asc(t));
536 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo->cli, afname, 0,
537 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
538 FILE_OPEN, 0x0, 0x0, &fnum))) {
539 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
540 afname,
541 cli_errstr( finfo->cli)));
542 } else {
543 SEC_DESC *sd = NULL;
544 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
545 if (!sd) {
546 DEBUG( 0, ("display_finfo() failed to "
547 "get security descriptor: %s",
548 cli_errstr( finfo->cli)));
549 } else {
550 display_sec_desc(sd);
552 TALLOC_FREE(sd);
554 TALLOC_FREE(afname);
558 /****************************************************************************
559 Accumulate size of a file.
560 ****************************************************************************/
562 static void do_du(file_info *finfo, const char *dir)
564 if (do_this_one(finfo)) {
565 dir_total += finfo->size;
569 static bool do_list_recurse;
570 static bool do_list_dirs;
571 static char *do_list_queue = 0;
572 static long do_list_queue_size = 0;
573 static long do_list_queue_start = 0;
574 static long do_list_queue_end = 0;
575 static void (*do_list_fn)(file_info *, const char *dir);
577 /****************************************************************************
578 Functions for do_list_queue.
579 ****************************************************************************/
582 * The do_list_queue is a NUL-separated list of strings stored in a
583 * char*. Since this is a FIFO, we keep track of the beginning and
584 * ending locations of the data in the queue. When we overflow, we
585 * double the size of the char*. When the start of the data passes
586 * the midpoint, we move everything back. This is logically more
587 * complex than a linked list, but easier from a memory management
588 * angle. In any memory error condition, do_list_queue is reset.
589 * Functions check to ensure that do_list_queue is non-NULL before
590 * accessing it.
593 static void reset_do_list_queue(void)
595 SAFE_FREE(do_list_queue);
596 do_list_queue_size = 0;
597 do_list_queue_start = 0;
598 do_list_queue_end = 0;
601 static void init_do_list_queue(void)
603 reset_do_list_queue();
604 do_list_queue_size = 1024;
605 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
606 if (do_list_queue == 0) {
607 d_printf("malloc fail for size %d\n",
608 (int)do_list_queue_size);
609 reset_do_list_queue();
610 } else {
611 memset(do_list_queue, 0, do_list_queue_size);
615 static void adjust_do_list_queue(void)
618 * If the starting point of the queue is more than half way through,
619 * move everything toward the beginning.
622 if (do_list_queue == NULL) {
623 DEBUG(4,("do_list_queue is empty\n"));
624 do_list_queue_start = do_list_queue_end = 0;
625 return;
628 if (do_list_queue_start == do_list_queue_end) {
629 DEBUG(4,("do_list_queue is empty\n"));
630 do_list_queue_start = do_list_queue_end = 0;
631 *do_list_queue = '\0';
632 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
633 DEBUG(4,("sliding do_list_queue backward\n"));
634 memmove(do_list_queue,
635 do_list_queue + do_list_queue_start,
636 do_list_queue_end - do_list_queue_start);
637 do_list_queue_end -= do_list_queue_start;
638 do_list_queue_start = 0;
642 static void add_to_do_list_queue(const char *entry)
644 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
645 while (new_end > do_list_queue_size) {
646 do_list_queue_size *= 2;
647 DEBUG(4,("enlarging do_list_queue to %d\n",
648 (int)do_list_queue_size));
649 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
650 if (! do_list_queue) {
651 d_printf("failure enlarging do_list_queue to %d bytes\n",
652 (int)do_list_queue_size);
653 reset_do_list_queue();
654 } else {
655 memset(do_list_queue + do_list_queue_size / 2,
656 0, do_list_queue_size / 2);
659 if (do_list_queue) {
660 safe_strcpy_base(do_list_queue + do_list_queue_end,
661 entry, do_list_queue, do_list_queue_size);
662 do_list_queue_end = new_end;
663 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
664 entry, (int)do_list_queue_start, (int)do_list_queue_end));
668 static char *do_list_queue_head(void)
670 return do_list_queue + do_list_queue_start;
673 static void remove_do_list_queue_head(void)
675 if (do_list_queue_end > do_list_queue_start) {
676 do_list_queue_start += strlen(do_list_queue_head()) + 1;
677 adjust_do_list_queue();
678 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
679 (int)do_list_queue_start, (int)do_list_queue_end));
683 static int do_list_queue_empty(void)
685 return (! (do_list_queue && *do_list_queue));
688 /****************************************************************************
689 A helper for do_list.
690 ****************************************************************************/
692 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
694 TALLOC_CTX *ctx = talloc_tos();
695 char *dir = NULL;
696 char *dir_end = NULL;
698 /* Work out the directory. */
699 dir = talloc_strdup(ctx, mask);
700 if (!dir) {
701 return;
703 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
704 *dir_end = '\0';
707 if (f->mode & aDIR) {
708 if (do_list_dirs && do_this_one(f)) {
709 do_list_fn(f, dir);
711 if (do_list_recurse &&
712 f->name &&
713 !strequal(f->name,".") &&
714 !strequal(f->name,"..")) {
715 char *mask2 = NULL;
716 char *p = NULL;
718 if (!f->name[0]) {
719 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
720 TALLOC_FREE(dir);
721 return;
724 mask2 = talloc_asprintf(ctx,
725 "%s%s",
726 mntpoint,
727 mask);
728 if (!mask2) {
729 TALLOC_FREE(dir);
730 return;
732 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
733 if (p) {
734 p[1] = 0;
735 } else {
736 mask2[0] = '\0';
738 mask2 = talloc_asprintf_append(mask2,
739 "%s%s*",
740 f->name,
741 CLI_DIRSEP_STR);
742 if (!mask2) {
743 TALLOC_FREE(dir);
744 return;
746 add_to_do_list_queue(mask2);
747 TALLOC_FREE(mask2);
749 TALLOC_FREE(dir);
750 return;
753 if (do_this_one(f)) {
754 do_list_fn(f,dir);
756 TALLOC_FREE(dir);
759 /****************************************************************************
760 A wrapper around cli_list that adds recursion.
761 ****************************************************************************/
763 void do_list(const char *mask,
764 uint16 attribute,
765 void (*fn)(file_info *, const char *dir),
766 bool rec,
767 bool dirs)
769 static int in_do_list = 0;
770 TALLOC_CTX *ctx = talloc_tos();
771 struct cli_state *targetcli = NULL;
772 char *targetpath = NULL;
774 if (in_do_list && rec) {
775 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
776 exit(1);
779 in_do_list = 1;
781 do_list_recurse = rec;
782 do_list_dirs = dirs;
783 do_list_fn = fn;
785 if (rec) {
786 init_do_list_queue();
787 add_to_do_list_queue(mask);
789 while (!do_list_queue_empty()) {
791 * Need to copy head so that it doesn't become
792 * invalid inside the call to cli_list. This
793 * would happen if the list were expanded
794 * during the call.
795 * Fix from E. Jay Berkenbilt (ejb@ql.org)
797 char *head = talloc_strdup(ctx, do_list_queue_head());
799 if (!head) {
800 return;
803 /* check for dfs */
805 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
806 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
807 remove_do_list_queue_head();
808 continue;
811 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
812 remove_do_list_queue_head();
813 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
814 char *next_file = do_list_queue_head();
815 char *save_ch = 0;
816 if ((strlen(next_file) >= 2) &&
817 (next_file[strlen(next_file) - 1] == '*') &&
818 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
819 save_ch = next_file +
820 strlen(next_file) - 2;
821 *save_ch = '\0';
822 if (showacls) {
823 /* cwd is only used if showacls is on */
824 client_set_cwd(next_file);
827 if (!showacls) /* don't disturbe the showacls output */
828 d_printf("\n%s\n",next_file);
829 if (save_ch) {
830 *save_ch = CLI_DIRSEP_CHAR;
833 TALLOC_FREE(head);
834 TALLOC_FREE(targetpath);
836 } else {
837 /* check for dfs */
838 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
839 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
840 d_printf("%s listing %s\n",
841 cli_errstr(targetcli), targetpath);
843 TALLOC_FREE(targetpath);
844 } else {
845 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
849 in_do_list = 0;
850 reset_do_list_queue();
853 /****************************************************************************
854 Get a directory listing.
855 ****************************************************************************/
857 static int cmd_dir(void)
859 TALLOC_CTX *ctx = talloc_tos();
860 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
861 char *mask = NULL;
862 char *buf = NULL;
863 int rc = 1;
865 dir_total = 0;
866 mask = talloc_strdup(ctx, client_get_cur_dir());
867 if (!mask) {
868 return 1;
871 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
872 normalize_name(buf);
873 if (*buf == CLI_DIRSEP_CHAR) {
874 mask = talloc_strdup(ctx, buf);
875 } else {
876 mask = talloc_asprintf_append(mask, "%s", buf);
878 } else {
879 mask = talloc_asprintf_append(mask, "*");
881 if (!mask) {
882 return 1;
885 if (showacls) {
886 /* cwd is only used if showacls is on */
887 client_set_cwd(client_get_cur_dir());
890 do_list(mask, attribute, display_finfo, recurse, true);
892 rc = do_dskattr();
894 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
896 return rc;
899 /****************************************************************************
900 Get a directory listing.
901 ****************************************************************************/
903 static int cmd_du(void)
905 TALLOC_CTX *ctx = talloc_tos();
906 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
907 char *mask = NULL;
908 char *buf = NULL;
909 int rc = 1;
911 dir_total = 0;
912 mask = talloc_strdup(ctx, client_get_cur_dir());
913 if (!mask) {
914 return 1;
916 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
917 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
918 if (!mask) {
919 return 1;
923 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
924 normalize_name(buf);
925 if (*buf == CLI_DIRSEP_CHAR) {
926 mask = talloc_strdup(ctx, buf);
927 } else {
928 mask = talloc_asprintf_append(mask, "%s", buf);
930 } else {
931 mask = talloc_strdup(ctx, "*");
934 do_list(mask, attribute, do_du, recurse, true);
936 rc = do_dskattr();
938 d_printf("Total number of bytes: %.0f\n", dir_total);
940 return rc;
943 static int cmd_echo(void)
945 TALLOC_CTX *ctx = talloc_tos();
946 char *num;
947 char *data;
948 NTSTATUS status;
950 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
951 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
952 d_printf("echo <num> <data>\n");
953 return 1;
956 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
958 if (!NT_STATUS_IS_OK(status)) {
959 d_printf("echo failed: %s\n", nt_errstr(status));
960 return 1;
963 return 0;
966 /****************************************************************************
967 Get a file from rname to lname
968 ****************************************************************************/
970 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
972 int *pfd = (int *)priv;
973 if (writefile(*pfd, buf, n) == -1) {
974 return map_nt_error_from_unix(errno);
976 return NT_STATUS_OK;
979 static int do_get(const char *rname, const char *lname_in, bool reget)
981 TALLOC_CTX *ctx = talloc_tos();
982 int handle = 0;
983 uint16_t fnum;
984 bool newhandle = false;
985 struct timeval tp_start;
986 uint16 attr;
987 SMB_OFF_T size;
988 off_t start = 0;
989 SMB_OFF_T nread = 0;
990 int rc = 0;
991 struct cli_state *targetcli = NULL;
992 char *targetname = NULL;
993 char *lname = NULL;
994 NTSTATUS status;
996 lname = talloc_strdup(ctx, lname_in);
997 if (!lname) {
998 return 1;
1001 if (lowercase) {
1002 strlower_m(lname);
1005 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1006 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1007 return 1;
1010 GetTimeOfDay(&tp_start);
1012 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1013 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1014 return 1;
1017 if(!strcmp(lname,"-")) {
1018 handle = fileno(stdout);
1019 } else {
1020 if (reget) {
1021 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1022 if (handle >= 0) {
1023 start = sys_lseek(handle, 0, SEEK_END);
1024 if (start == -1) {
1025 d_printf("Error seeking local file\n");
1026 return 1;
1029 } else {
1030 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1032 newhandle = true;
1034 if (handle < 0) {
1035 d_printf("Error opening local file %s\n",lname);
1036 return 1;
1040 if (!cli_qfileinfo(targetcli, fnum,
1041 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1042 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1043 &attr, &size, NULL, NULL, NULL))) {
1044 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1045 return 1;
1048 DEBUG(1,("getting file %s of size %.0f as %s ",
1049 rname, (double)size, lname));
1051 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1052 writefile_sink, (void *)&handle, &nread);
1053 if (!NT_STATUS_IS_OK(status)) {
1054 d_fprintf(stderr, "parallel_read returned %s\n",
1055 nt_errstr(status));
1056 cli_close(targetcli, fnum);
1057 return 1;
1060 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1061 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1062 rc = 1;
1065 if (newhandle) {
1066 close(handle);
1069 if (archive_level >= 2 && (attr & aARCH)) {
1070 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1074 struct timeval tp_end;
1075 int this_time;
1077 GetTimeOfDay(&tp_end);
1078 this_time =
1079 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1080 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1081 get_total_time_ms += this_time;
1082 get_total_size += nread;
1084 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1085 nread / (1.024*this_time + 1.0e-4),
1086 get_total_size / (1.024*get_total_time_ms)));
1089 TALLOC_FREE(targetname);
1090 return rc;
1093 /****************************************************************************
1094 Get a file.
1095 ****************************************************************************/
1097 static int cmd_get(void)
1099 TALLOC_CTX *ctx = talloc_tos();
1100 char *lname = NULL;
1101 char *rname = NULL;
1102 char *fname = NULL;
1104 rname = talloc_strdup(ctx, client_get_cur_dir());
1105 if (!rname) {
1106 return 1;
1109 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1110 d_printf("get <filename> [localname]\n");
1111 return 1;
1113 rname = talloc_asprintf_append(rname, "%s", fname);
1114 if (!rname) {
1115 return 1;
1117 rname = clean_name(ctx, rname);
1118 if (!rname) {
1119 return 1;
1122 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1123 if (!lname) {
1124 lname = fname;
1127 return do_get(rname, lname, false);
1130 /****************************************************************************
1131 Do an mget operation on one file.
1132 ****************************************************************************/
1134 static void do_mget(file_info *finfo, const char *dir)
1136 TALLOC_CTX *ctx = talloc_tos();
1137 char *rname = NULL;
1138 char *quest = NULL;
1139 char *saved_curdir = NULL;
1140 char *mget_mask = NULL;
1141 char *new_cd = NULL;
1143 if (!finfo->name) {
1144 return;
1147 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1148 return;
1150 if (abort_mget) {
1151 d_printf("mget aborted\n");
1152 return;
1155 if (finfo->mode & aDIR) {
1156 if (asprintf(&quest,
1157 "Get directory %s? ",finfo->name) < 0) {
1158 return;
1160 } else {
1161 if (asprintf(&quest,
1162 "Get file %s? ",finfo->name) < 0) {
1163 return;
1167 if (prompt && !yesno(quest)) {
1168 SAFE_FREE(quest);
1169 return;
1171 SAFE_FREE(quest);
1173 if (!(finfo->mode & aDIR)) {
1174 rname = talloc_asprintf(ctx,
1175 "%s%s",
1176 client_get_cur_dir(),
1177 finfo->name);
1178 if (!rname) {
1179 return;
1181 do_get(rname, finfo->name, false);
1182 TALLOC_FREE(rname);
1183 return;
1186 /* handle directories */
1187 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1188 if (!saved_curdir) {
1189 return;
1192 new_cd = talloc_asprintf(ctx,
1193 "%s%s%s",
1194 client_get_cur_dir(),
1195 finfo->name,
1196 CLI_DIRSEP_STR);
1197 if (!new_cd) {
1198 return;
1200 client_set_cur_dir(new_cd);
1202 string_replace(finfo->name,'\\','/');
1203 if (lowercase) {
1204 strlower_m(finfo->name);
1207 if (!directory_exist(finfo->name) &&
1208 mkdir(finfo->name,0777) != 0) {
1209 d_printf("failed to create directory %s\n",finfo->name);
1210 client_set_cur_dir(saved_curdir);
1211 return;
1214 if (chdir(finfo->name) != 0) {
1215 d_printf("failed to chdir to directory %s\n",finfo->name);
1216 client_set_cur_dir(saved_curdir);
1217 return;
1220 mget_mask = talloc_asprintf(ctx,
1221 "%s*",
1222 client_get_cur_dir());
1224 if (!mget_mask) {
1225 return;
1228 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1229 if (chdir("..") == -1) {
1230 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1231 strerror(errno) );
1233 client_set_cur_dir(saved_curdir);
1234 TALLOC_FREE(mget_mask);
1235 TALLOC_FREE(saved_curdir);
1236 TALLOC_FREE(new_cd);
1239 /****************************************************************************
1240 View the file using the pager.
1241 ****************************************************************************/
1243 static int cmd_more(void)
1245 TALLOC_CTX *ctx = talloc_tos();
1246 char *rname = NULL;
1247 char *fname = NULL;
1248 char *lname = NULL;
1249 char *pager_cmd = NULL;
1250 const char *pager;
1251 int fd;
1252 int rc = 0;
1254 rname = talloc_strdup(ctx, client_get_cur_dir());
1255 if (!rname) {
1256 return 1;
1259 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1260 if (!lname) {
1261 return 1;
1263 fd = mkstemp(lname);
1264 if (fd == -1) {
1265 d_printf("failed to create temporary file for more\n");
1266 return 1;
1268 close(fd);
1270 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1271 d_printf("more <filename>\n");
1272 unlink(lname);
1273 return 1;
1275 rname = talloc_asprintf_append(rname, "%s", fname);
1276 if (!rname) {
1277 return 1;
1279 rname = clean_name(ctx,rname);
1280 if (!rname) {
1281 return 1;
1284 rc = do_get(rname, lname, false);
1286 pager=getenv("PAGER");
1288 pager_cmd = talloc_asprintf(ctx,
1289 "%s %s",
1290 (pager? pager:PAGER),
1291 lname);
1292 if (!pager_cmd) {
1293 return 1;
1295 if (system(pager_cmd) == -1) {
1296 d_printf("system command '%s' returned -1\n",
1297 pager_cmd);
1299 unlink(lname);
1301 return rc;
1304 /****************************************************************************
1305 Do a mget command.
1306 ****************************************************************************/
1308 static int cmd_mget(void)
1310 TALLOC_CTX *ctx = talloc_tos();
1311 uint16 attribute = aSYSTEM | aHIDDEN;
1312 char *mget_mask = NULL;
1313 char *buf = NULL;
1315 if (recurse) {
1316 attribute |= aDIR;
1319 abort_mget = false;
1321 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1322 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1323 if (!mget_mask) {
1324 return 1;
1326 if (*buf == CLI_DIRSEP_CHAR) {
1327 mget_mask = talloc_strdup(ctx, buf);
1328 } else {
1329 mget_mask = talloc_asprintf_append(mget_mask,
1330 "%s", buf);
1332 if (!mget_mask) {
1333 return 1;
1335 do_list(mget_mask, attribute, do_mget, false, true);
1338 if (mget_mask == NULL) {
1339 d_printf("nothing to mget\n");
1340 return 0;
1343 if (!*mget_mask) {
1344 mget_mask = talloc_asprintf(ctx,
1345 "%s*",
1346 client_get_cur_dir());
1347 if (!mget_mask) {
1348 return 1;
1350 do_list(mget_mask, attribute, do_mget, false, true);
1353 return 0;
1356 /****************************************************************************
1357 Make a directory of name "name".
1358 ****************************************************************************/
1360 static bool do_mkdir(const char *name)
1362 TALLOC_CTX *ctx = talloc_tos();
1363 struct cli_state *targetcli;
1364 char *targetname = NULL;
1366 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1367 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1368 return false;
1371 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1372 d_printf("%s making remote directory %s\n",
1373 cli_errstr(targetcli),name);
1374 return false;
1377 return true;
1380 /****************************************************************************
1381 Show 8.3 name of a file.
1382 ****************************************************************************/
1384 static bool do_altname(const char *name)
1386 fstring altname;
1388 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1389 d_printf("%s getting alt name for %s\n",
1390 cli_errstr(cli),name);
1391 return false;
1393 d_printf("%s\n", altname);
1395 return true;
1398 /****************************************************************************
1399 Exit client.
1400 ****************************************************************************/
1402 static int cmd_quit(void)
1404 cli_shutdown(cli);
1405 exit(0);
1406 /* NOTREACHED */
1407 return 0;
1410 /****************************************************************************
1411 Make a directory.
1412 ****************************************************************************/
1414 static int cmd_mkdir(void)
1416 TALLOC_CTX *ctx = talloc_tos();
1417 char *mask = NULL;
1418 char *buf = NULL;
1420 mask = talloc_strdup(ctx, client_get_cur_dir());
1421 if (!mask) {
1422 return 1;
1425 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1426 if (!recurse) {
1427 d_printf("mkdir <dirname>\n");
1429 return 1;
1431 mask = talloc_asprintf_append(mask, "%s", buf);
1432 if (!mask) {
1433 return 1;
1436 if (recurse) {
1437 char *ddir = NULL;
1438 char *ddir2 = NULL;
1439 struct cli_state *targetcli;
1440 char *targetname = NULL;
1441 char *p = NULL;
1442 char *saveptr;
1444 ddir2 = talloc_strdup(ctx, "");
1445 if (!ddir2) {
1446 return 1;
1449 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1450 return 1;
1453 ddir = talloc_strdup(ctx, targetname);
1454 if (!ddir) {
1455 return 1;
1457 trim_char(ddir,'.','\0');
1458 p = strtok_r(ddir, "/\\", &saveptr);
1459 while (p) {
1460 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1461 if (!ddir2) {
1462 return 1;
1464 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1465 do_mkdir(ddir2);
1467 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1468 if (!ddir2) {
1469 return 1;
1471 p = strtok_r(NULL, "/\\", &saveptr);
1473 } else {
1474 do_mkdir(mask);
1477 return 0;
1480 /****************************************************************************
1481 Show alt name.
1482 ****************************************************************************/
1484 static int cmd_altname(void)
1486 TALLOC_CTX *ctx = talloc_tos();
1487 char *name;
1488 char *buf;
1490 name = talloc_strdup(ctx, client_get_cur_dir());
1491 if (!name) {
1492 return 1;
1495 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1496 d_printf("altname <file>\n");
1497 return 1;
1499 name = talloc_asprintf_append(name, "%s", buf);
1500 if (!name) {
1501 return 1;
1503 do_altname(name);
1504 return 0;
1507 /****************************************************************************
1508 Show all info we can get
1509 ****************************************************************************/
1511 static int do_allinfo(const char *name)
1513 fstring altname;
1514 struct timespec b_time, a_time, m_time, c_time;
1515 SMB_OFF_T size;
1516 uint16_t mode;
1517 SMB_INO_T ino;
1518 NTTIME tmp;
1519 unsigned int num_streams;
1520 struct stream_struct *streams;
1521 unsigned int i;
1523 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1524 d_printf("%s getting alt name for %s\n",
1525 cli_errstr(cli),name);
1526 return false;
1528 d_printf("altname: %s\n", altname);
1530 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1531 &size, &mode, &ino)) {
1532 d_printf("%s getting pathinfo for %s\n",
1533 cli_errstr(cli),name);
1534 return false;
1537 unix_timespec_to_nt_time(&tmp, b_time);
1538 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1540 unix_timespec_to_nt_time(&tmp, a_time);
1541 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1543 unix_timespec_to_nt_time(&tmp, m_time);
1544 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1546 unix_timespec_to_nt_time(&tmp, c_time);
1547 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1549 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1550 &streams)) {
1551 d_printf("%s getting streams for %s\n",
1552 cli_errstr(cli),name);
1553 return false;
1556 for (i=0; i<num_streams; i++) {
1557 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1558 (unsigned long long)streams[i].size);
1561 return 0;
1564 /****************************************************************************
1565 Show all info we can get
1566 ****************************************************************************/
1568 static int cmd_allinfo(void)
1570 TALLOC_CTX *ctx = talloc_tos();
1571 char *name;
1572 char *buf;
1574 name = talloc_strdup(ctx, client_get_cur_dir());
1575 if (!name) {
1576 return 1;
1579 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1580 d_printf("allinfo <file>\n");
1581 return 1;
1583 name = talloc_asprintf_append(name, "%s", buf);
1584 if (!name) {
1585 return 1;
1588 do_allinfo(name);
1590 return 0;
1593 /****************************************************************************
1594 Put a single file.
1595 ****************************************************************************/
1597 static int do_put(const char *rname, const char *lname, bool reput)
1599 TALLOC_CTX *ctx = talloc_tos();
1600 uint16_t fnum;
1601 XFILE *f;
1602 SMB_OFF_T start = 0;
1603 int rc = 0;
1604 struct timeval tp_start;
1605 struct cli_state *targetcli;
1606 char *targetname = NULL;
1607 struct push_state state;
1608 NTSTATUS status;
1610 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1611 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1612 return 1;
1615 GetTimeOfDay(&tp_start);
1617 if (reput) {
1618 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1619 if (NT_STATUS_IS_OK(status)) {
1620 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1621 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1622 d_printf("getattrib: %s\n",cli_errstr(cli));
1623 return 1;
1626 } else {
1627 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1630 if (!NT_STATUS_IS_OK(status)) {
1631 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1632 return 1;
1635 /* allow files to be piped into smbclient
1636 jdblair 24.jun.98
1638 Note that in this case this function will exit(0) rather
1639 than returning. */
1640 if (!strcmp(lname, "-")) {
1641 f = x_stdin;
1642 /* size of file is not known */
1643 } else {
1644 f = x_fopen(lname,O_RDONLY, 0);
1645 if (f && reput) {
1646 if (x_tseek(f, start, SEEK_SET) == -1) {
1647 d_printf("Error seeking local file\n");
1648 x_fclose(f);
1649 return 1;
1654 if (!f) {
1655 d_printf("Error opening local file %s\n",lname);
1656 return 1;
1659 DEBUG(1,("putting file %s as %s ",lname,
1660 rname));
1662 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1664 state.f = f;
1665 state.nread = 0;
1667 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1668 &state);
1669 if (!NT_STATUS_IS_OK(status)) {
1670 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1673 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1674 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1675 if (f != x_stdin) {
1676 x_fclose(f);
1678 return 1;
1681 if (f != x_stdin) {
1682 x_fclose(f);
1686 struct timeval tp_end;
1687 int this_time;
1689 GetTimeOfDay(&tp_end);
1690 this_time =
1691 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1692 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1693 put_total_time_ms += this_time;
1694 put_total_size += state.nread;
1696 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1697 state.nread / (1.024*this_time + 1.0e-4),
1698 put_total_size / (1.024*put_total_time_ms)));
1701 if (f == x_stdin) {
1702 cli_shutdown(cli);
1703 exit(0);
1706 return rc;
1709 /****************************************************************************
1710 Put a file.
1711 ****************************************************************************/
1713 static int cmd_put(void)
1715 TALLOC_CTX *ctx = talloc_tos();
1716 char *lname;
1717 char *rname;
1718 char *buf;
1720 rname = talloc_strdup(ctx, client_get_cur_dir());
1721 if (!rname) {
1722 return 1;
1725 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1726 d_printf("put <filename>\n");
1727 return 1;
1730 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1731 rname = talloc_asprintf_append(rname, "%s", buf);
1732 } else {
1733 rname = talloc_asprintf_append(rname, "%s", lname);
1735 if (!rname) {
1736 return 1;
1739 rname = clean_name(ctx, rname);
1740 if (!rname) {
1741 return 1;
1745 SMB_STRUCT_STAT st;
1746 /* allow '-' to represent stdin
1747 jdblair, 24.jun.98 */
1748 if (!file_exist_stat(lname, &st, false) &&
1749 (strcmp(lname,"-"))) {
1750 d_printf("%s does not exist\n",lname);
1751 return 1;
1755 return do_put(rname, lname, false);
1758 /*************************************
1759 File list structure.
1760 *************************************/
1762 static struct file_list {
1763 struct file_list *prev, *next;
1764 char *file_path;
1765 bool isdir;
1766 } *file_list;
1768 /****************************************************************************
1769 Free a file_list structure.
1770 ****************************************************************************/
1772 static void free_file_list (struct file_list *l_head)
1774 struct file_list *list, *next;
1776 for (list = l_head; list; list = next) {
1777 next = list->next;
1778 DLIST_REMOVE(l_head, list);
1779 SAFE_FREE(list->file_path);
1780 SAFE_FREE(list);
1784 /****************************************************************************
1785 Seek in a directory/file list until you get something that doesn't start with
1786 the specified name.
1787 ****************************************************************************/
1789 static bool seek_list(struct file_list *list, char *name)
1791 while (list) {
1792 trim_string(list->file_path,"./","\n");
1793 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1794 return true;
1796 list = list->next;
1799 return false;
1802 /****************************************************************************
1803 Set the file selection mask.
1804 ****************************************************************************/
1806 static int cmd_select(void)
1808 TALLOC_CTX *ctx = talloc_tos();
1809 char *new_fs = NULL;
1810 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1812 if (new_fs) {
1813 client_set_fileselection(new_fs);
1814 } else {
1815 client_set_fileselection("");
1817 return 0;
1820 /****************************************************************************
1821 Recursive file matching function act as find
1822 match must be always set to true when calling this function
1823 ****************************************************************************/
1825 static int file_find(struct file_list **list, const char *directory,
1826 const char *expression, bool match)
1828 SMB_STRUCT_DIR *dir;
1829 struct file_list *entry;
1830 struct stat statbuf;
1831 int ret;
1832 char *path;
1833 bool isdir;
1834 const char *dname;
1836 dir = sys_opendir(directory);
1837 if (!dir)
1838 return -1;
1840 while ((dname = readdirname(dir))) {
1841 if (!strcmp("..", dname))
1842 continue;
1843 if (!strcmp(".", dname))
1844 continue;
1846 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1847 continue;
1850 isdir = false;
1851 if (!match || !gen_fnmatch(expression, dname)) {
1852 if (recurse) {
1853 ret = stat(path, &statbuf);
1854 if (ret == 0) {
1855 if (S_ISDIR(statbuf.st_mode)) {
1856 isdir = true;
1857 ret = file_find(list, path, expression, false);
1859 } else {
1860 d_printf("file_find: cannot stat file %s\n", path);
1863 if (ret == -1) {
1864 SAFE_FREE(path);
1865 sys_closedir(dir);
1866 return -1;
1869 entry = SMB_MALLOC_P(struct file_list);
1870 if (!entry) {
1871 d_printf("Out of memory in file_find\n");
1872 sys_closedir(dir);
1873 return -1;
1875 entry->file_path = path;
1876 entry->isdir = isdir;
1877 DLIST_ADD(*list, entry);
1878 } else {
1879 SAFE_FREE(path);
1883 sys_closedir(dir);
1884 return 0;
1887 /****************************************************************************
1888 mput some files.
1889 ****************************************************************************/
1891 static int cmd_mput(void)
1893 TALLOC_CTX *ctx = talloc_tos();
1894 char *p = NULL;
1896 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1897 int ret;
1898 struct file_list *temp_list;
1899 char *quest, *lname, *rname;
1901 file_list = NULL;
1903 ret = file_find(&file_list, ".", p, true);
1904 if (ret) {
1905 free_file_list(file_list);
1906 continue;
1909 quest = NULL;
1910 lname = NULL;
1911 rname = NULL;
1913 for (temp_list = file_list; temp_list;
1914 temp_list = temp_list->next) {
1916 SAFE_FREE(lname);
1917 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1918 continue;
1920 trim_string(lname, "./", "/");
1922 /* check if it's a directory */
1923 if (temp_list->isdir) {
1924 /* if (!recurse) continue; */
1926 SAFE_FREE(quest);
1927 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1928 break;
1930 if (prompt && !yesno(quest)) { /* No */
1931 /* Skip the directory */
1932 lname[strlen(lname)-1] = '/';
1933 if (!seek_list(temp_list, lname))
1934 break;
1935 } else { /* Yes */
1936 SAFE_FREE(rname);
1937 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1938 break;
1940 normalize_name(rname);
1941 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1942 !do_mkdir(rname)) {
1943 DEBUG (0, ("Unable to make dir, skipping..."));
1944 /* Skip the directory */
1945 lname[strlen(lname)-1] = '/';
1946 if (!seek_list(temp_list, lname)) {
1947 break;
1951 continue;
1952 } else {
1953 SAFE_FREE(quest);
1954 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1955 break;
1957 if (prompt && !yesno(quest)) {
1958 /* No */
1959 continue;
1962 /* Yes */
1963 SAFE_FREE(rname);
1964 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1965 break;
1969 normalize_name(rname);
1971 do_put(rname, lname, false);
1973 free_file_list(file_list);
1974 SAFE_FREE(quest);
1975 SAFE_FREE(lname);
1976 SAFE_FREE(rname);
1979 return 0;
1982 /****************************************************************************
1983 Cancel a print job.
1984 ****************************************************************************/
1986 static int do_cancel(int job)
1988 if (cli_printjob_del(cli, job)) {
1989 d_printf("Job %d cancelled\n",job);
1990 return 0;
1991 } else {
1992 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1993 return 1;
1997 /****************************************************************************
1998 Cancel a print job.
1999 ****************************************************************************/
2001 static int cmd_cancel(void)
2003 TALLOC_CTX *ctx = talloc_tos();
2004 char *buf = NULL;
2005 int job;
2007 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2008 d_printf("cancel <jobid> ...\n");
2009 return 1;
2011 do {
2012 job = atoi(buf);
2013 do_cancel(job);
2014 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2016 return 0;
2019 /****************************************************************************
2020 Print a file.
2021 ****************************************************************************/
2023 static int cmd_print(void)
2025 TALLOC_CTX *ctx = talloc_tos();
2026 char *lname = NULL;
2027 char *rname = NULL;
2028 char *p = NULL;
2030 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2031 d_printf("print <filename>\n");
2032 return 1;
2035 rname = talloc_strdup(ctx, lname);
2036 if (!rname) {
2037 return 1;
2039 p = strrchr_m(rname,'/');
2040 if (p) {
2041 rname = talloc_asprintf(ctx,
2042 "%s-%d",
2043 p+1,
2044 (int)sys_getpid());
2046 if (strequal(lname,"-")) {
2047 rname = talloc_asprintf(ctx,
2048 "stdin-%d",
2049 (int)sys_getpid());
2051 if (!rname) {
2052 return 1;
2055 return do_put(rname, lname, false);
2058 /****************************************************************************
2059 Show a print queue entry.
2060 ****************************************************************************/
2062 static void queue_fn(struct print_job_info *p)
2064 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2067 /****************************************************************************
2068 Show a print queue.
2069 ****************************************************************************/
2071 static int cmd_queue(void)
2073 cli_print_queue(cli, queue_fn);
2074 return 0;
2077 /****************************************************************************
2078 Delete some files.
2079 ****************************************************************************/
2081 static void do_del(file_info *finfo, const char *dir)
2083 TALLOC_CTX *ctx = talloc_tos();
2084 char *mask = NULL;
2086 mask = talloc_asprintf(ctx,
2087 "%s%c%s",
2088 dir,
2089 CLI_DIRSEP_CHAR,
2090 finfo->name);
2091 if (!mask) {
2092 return;
2095 if (finfo->mode & aDIR) {
2096 TALLOC_FREE(mask);
2097 return;
2100 if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2101 d_printf("%s deleting remote file %s\n",
2102 cli_errstr(finfo->cli),mask);
2104 TALLOC_FREE(mask);
2107 /****************************************************************************
2108 Delete some files.
2109 ****************************************************************************/
2111 static int cmd_del(void)
2113 TALLOC_CTX *ctx = talloc_tos();
2114 char *mask = NULL;
2115 char *buf = NULL;
2116 uint16 attribute = aSYSTEM | aHIDDEN;
2118 if (recurse) {
2119 attribute |= aDIR;
2122 mask = talloc_strdup(ctx, client_get_cur_dir());
2123 if (!mask) {
2124 return 1;
2126 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2127 d_printf("del <filename>\n");
2128 return 1;
2130 mask = talloc_asprintf_append(mask, "%s", buf);
2131 if (!mask) {
2132 return 1;
2135 do_list(mask,attribute,do_del,false,false);
2136 return 0;
2139 /****************************************************************************
2140 Wildcard delete some files.
2141 ****************************************************************************/
2143 static int cmd_wdel(void)
2145 TALLOC_CTX *ctx = talloc_tos();
2146 char *mask = NULL;
2147 char *buf = NULL;
2148 uint16 attribute;
2149 struct cli_state *targetcli;
2150 char *targetname = NULL;
2152 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2153 d_printf("wdel 0x<attrib> <wcard>\n");
2154 return 1;
2157 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2159 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2160 d_printf("wdel 0x<attrib> <wcard>\n");
2161 return 1;
2164 mask = talloc_asprintf(ctx, "%s%s",
2165 client_get_cur_dir(),
2166 buf);
2167 if (!mask) {
2168 return 1;
2171 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2172 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2173 return 1;
2176 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2177 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2179 return 0;
2182 /****************************************************************************
2183 ****************************************************************************/
2185 static int cmd_open(void)
2187 TALLOC_CTX *ctx = talloc_tos();
2188 char *mask = NULL;
2189 char *buf = NULL;
2190 char *targetname = NULL;
2191 struct cli_state *targetcli;
2192 uint16_t fnum = (uint16_t)-1;
2194 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2195 d_printf("open <filename>\n");
2196 return 1;
2198 mask = talloc_asprintf(ctx,
2199 "%s%s",
2200 client_get_cur_dir(),
2201 buf);
2202 if (!mask) {
2203 return 1;
2206 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2207 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2208 return 1;
2211 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2212 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2213 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2214 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2215 FILE_READ_DATA, 0,
2216 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2217 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2218 } else {
2219 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2221 } else {
2222 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2224 return 0;
2227 static int cmd_posix_encrypt(void)
2229 TALLOC_CTX *ctx = talloc_tos();
2230 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2232 if (cli->use_kerberos) {
2233 status = cli_gss_smb_encryption_start(cli);
2234 } else {
2235 char *domain = NULL;
2236 char *user = NULL;
2237 char *password = NULL;
2239 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2240 d_printf("posix_encrypt domain user password\n");
2241 return 1;
2244 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2245 d_printf("posix_encrypt domain user password\n");
2246 return 1;
2249 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2250 d_printf("posix_encrypt domain user password\n");
2251 return 1;
2254 status = cli_raw_ntlm_smb_encryption_start(cli,
2255 user,
2256 password,
2257 domain);
2260 if (!NT_STATUS_IS_OK(status)) {
2261 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2262 } else {
2263 d_printf("encryption on\n");
2264 smb_encrypt = true;
2267 return 0;
2270 /****************************************************************************
2271 ****************************************************************************/
2273 static int cmd_posix_open(void)
2275 TALLOC_CTX *ctx = talloc_tos();
2276 char *mask = NULL;
2277 char *buf = NULL;
2278 char *targetname = NULL;
2279 struct cli_state *targetcli;
2280 mode_t mode;
2281 uint16_t fnum;
2283 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2284 d_printf("posix_open <filename> 0<mode>\n");
2285 return 1;
2287 mask = talloc_asprintf(ctx,
2288 "%s%s",
2289 client_get_cur_dir(),
2290 buf);
2291 if (!mask) {
2292 return 1;
2295 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2296 d_printf("posix_open <filename> 0<mode>\n");
2297 return 1;
2299 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2301 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2302 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2303 return 1;
2306 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2307 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2308 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2309 } else {
2310 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2312 } else {
2313 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2316 return 0;
2319 static int cmd_posix_mkdir(void)
2321 TALLOC_CTX *ctx = talloc_tos();
2322 char *mask = NULL;
2323 char *buf = NULL;
2324 char *targetname = NULL;
2325 struct cli_state *targetcli;
2326 mode_t mode;
2328 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2329 d_printf("posix_mkdir <filename> 0<mode>\n");
2330 return 1;
2332 mask = talloc_asprintf(ctx,
2333 "%s%s",
2334 client_get_cur_dir(),
2335 buf);
2336 if (!mask) {
2337 return 1;
2340 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2341 d_printf("posix_mkdir <filename> 0<mode>\n");
2342 return 1;
2344 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2346 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2347 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2348 return 1;
2351 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2352 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2353 } else {
2354 d_printf("posix_mkdir created directory %s\n", targetname);
2356 return 0;
2359 static int cmd_posix_unlink(void)
2361 TALLOC_CTX *ctx = talloc_tos();
2362 char *mask = NULL;
2363 char *buf = NULL;
2364 char *targetname = NULL;
2365 struct cli_state *targetcli;
2367 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2368 d_printf("posix_unlink <filename>\n");
2369 return 1;
2371 mask = talloc_asprintf(ctx,
2372 "%s%s",
2373 client_get_cur_dir(),
2374 buf);
2375 if (!mask) {
2376 return 1;
2379 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2380 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2381 return 1;
2384 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2385 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2386 } else {
2387 d_printf("posix_unlink deleted file %s\n", targetname);
2390 return 0;
2393 static int cmd_posix_rmdir(void)
2395 TALLOC_CTX *ctx = talloc_tos();
2396 char *mask = NULL;
2397 char *buf = NULL;
2398 char *targetname = NULL;
2399 struct cli_state *targetcli;
2401 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2402 d_printf("posix_rmdir <filename>\n");
2403 return 1;
2405 mask = talloc_asprintf(ctx,
2406 "%s%s",
2407 client_get_cur_dir(),
2408 buf);
2409 if (!mask) {
2410 return 1;
2413 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2414 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2415 return 1;
2418 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2419 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2420 } else {
2421 d_printf("posix_rmdir deleted directory %s\n", targetname);
2424 return 0;
2427 static int cmd_close(void)
2429 TALLOC_CTX *ctx = talloc_tos();
2430 char *buf = NULL;
2431 int fnum;
2433 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2434 d_printf("close <fnum>\n");
2435 return 1;
2438 fnum = atoi(buf);
2439 /* We really should use the targetcli here.... */
2440 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2441 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2442 return 1;
2444 return 0;
2447 static int cmd_posix(void)
2449 TALLOC_CTX *ctx = talloc_tos();
2450 uint16 major, minor;
2451 uint32 caplow, caphigh;
2452 char *caps;
2453 NTSTATUS status;
2455 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2456 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2457 return 1;
2460 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2461 &caphigh);
2462 if (!NT_STATUS_IS_OK(status)) {
2463 d_printf("Can't get UNIX CIFS extensions version from "
2464 "server: %s\n", nt_errstr(status));
2465 return 1;
2468 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2470 caps = talloc_strdup(ctx, "");
2471 if (!caps) {
2472 return 1;
2474 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2475 caps = talloc_asprintf_append(caps, "locks ");
2476 if (!caps) {
2477 return 1;
2480 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2481 caps = talloc_asprintf_append(caps, "acls ");
2482 if (!caps) {
2483 return 1;
2486 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2487 caps = talloc_asprintf_append(caps, "eas ");
2488 if (!caps) {
2489 return 1;
2492 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2493 caps = talloc_asprintf_append(caps, "pathnames ");
2494 if (!caps) {
2495 return 1;
2498 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2499 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2500 if (!caps) {
2501 return 1;
2504 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2505 caps = talloc_asprintf_append(caps, "large_read ");
2506 if (!caps) {
2507 return 1;
2510 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2511 caps = talloc_asprintf_append(caps, "large_write ");
2512 if (!caps) {
2513 return 1;
2516 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2517 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2518 if (!caps) {
2519 return 1;
2522 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2523 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2524 if (!caps) {
2525 return 1;
2529 if (*caps && caps[strlen(caps)-1] == ' ') {
2530 caps[strlen(caps)-1] = '\0';
2533 d_printf("Server supports CIFS capabilities %s\n", caps);
2535 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2536 caplow, caphigh);
2537 if (!NT_STATUS_IS_OK(status)) {
2538 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2539 nt_errstr(status));
2540 return 1;
2543 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2544 CLI_DIRSEP_CHAR = '/';
2545 *CLI_DIRSEP_STR = '/';
2546 client_set_cur_dir(CLI_DIRSEP_STR);
2549 return 0;
2552 static int cmd_lock(void)
2554 TALLOC_CTX *ctx = talloc_tos();
2555 char *buf = NULL;
2556 uint64_t start, len;
2557 enum brl_type lock_type;
2558 int fnum;
2560 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2561 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2562 return 1;
2564 fnum = atoi(buf);
2566 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2567 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2568 return 1;
2571 if (*buf == 'r' || *buf == 'R') {
2572 lock_type = READ_LOCK;
2573 } else if (*buf == 'w' || *buf == 'W') {
2574 lock_type = WRITE_LOCK;
2575 } else {
2576 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2577 return 1;
2580 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2581 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2582 return 1;
2585 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2587 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2588 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2589 return 1;
2592 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2594 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2595 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2598 return 0;
2601 static int cmd_unlock(void)
2603 TALLOC_CTX *ctx = talloc_tos();
2604 char *buf = NULL;
2605 uint64_t start, len;
2606 int fnum;
2608 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2609 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2610 return 1;
2612 fnum = atoi(buf);
2614 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2615 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2616 return 1;
2619 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2621 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2622 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2623 return 1;
2626 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2628 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2629 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2632 return 0;
2636 /****************************************************************************
2637 Remove a directory.
2638 ****************************************************************************/
2640 static int cmd_rmdir(void)
2642 TALLOC_CTX *ctx = talloc_tos();
2643 char *mask = NULL;
2644 char *buf = NULL;
2645 char *targetname = NULL;
2646 struct cli_state *targetcli;
2648 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2649 d_printf("rmdir <dirname>\n");
2650 return 1;
2652 mask = talloc_asprintf(ctx,
2653 "%s%s",
2654 client_get_cur_dir(),
2655 buf);
2656 if (!mask) {
2657 return 1;
2660 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2661 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2662 return 1;
2665 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2666 d_printf("%s removing remote directory file %s\n",
2667 cli_errstr(targetcli),mask);
2670 return 0;
2673 /****************************************************************************
2674 UNIX hardlink.
2675 ****************************************************************************/
2677 static int cmd_link(void)
2679 TALLOC_CTX *ctx = talloc_tos();
2680 char *oldname = NULL;
2681 char *newname = NULL;
2682 char *buf = NULL;
2683 char *buf2 = NULL;
2684 char *targetname = NULL;
2685 struct cli_state *targetcli;
2687 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2688 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2689 d_printf("link <oldname> <newname>\n");
2690 return 1;
2692 oldname = talloc_asprintf(ctx,
2693 "%s%s",
2694 client_get_cur_dir(),
2695 buf);
2696 if (!oldname) {
2697 return 1;
2699 newname = talloc_asprintf(ctx,
2700 "%s%s",
2701 client_get_cur_dir(),
2702 buf2);
2703 if (!newname) {
2704 return 1;
2707 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2708 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2709 return 1;
2712 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2713 d_printf("Server doesn't support UNIX CIFS calls.\n");
2714 return 1;
2717 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2718 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2719 return 1;
2721 return 0;
2724 /****************************************************************************
2725 UNIX readlink.
2726 ****************************************************************************/
2728 static int cmd_readlink(void)
2730 TALLOC_CTX *ctx = talloc_tos();
2731 char *name= NULL;
2732 char *buf = NULL;
2733 char *targetname = NULL;
2734 char linkname[PATH_MAX+1];
2735 struct cli_state *targetcli;
2737 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2738 d_printf("readlink <name>\n");
2739 return 1;
2741 name = talloc_asprintf(ctx,
2742 "%s%s",
2743 client_get_cur_dir(),
2744 buf);
2745 if (!name) {
2746 return 1;
2749 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2750 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2751 return 1;
2754 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2755 d_printf("Server doesn't support UNIX CIFS calls.\n");
2756 return 1;
2759 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2760 linkname, PATH_MAX+1))) {
2761 d_printf("%s readlink on file %s\n",
2762 cli_errstr(targetcli), name);
2763 return 1;
2766 d_printf("%s -> %s\n", name, linkname);
2768 return 0;
2772 /****************************************************************************
2773 UNIX symlink.
2774 ****************************************************************************/
2776 static int cmd_symlink(void)
2778 TALLOC_CTX *ctx = talloc_tos();
2779 char *oldname = NULL;
2780 char *newname = NULL;
2781 char *buf = NULL;
2782 char *buf2 = NULL;
2783 char *targetname = NULL;
2784 struct cli_state *targetcli;
2786 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2787 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2788 d_printf("symlink <oldname> <newname>\n");
2789 return 1;
2791 oldname = talloc_asprintf(ctx,
2792 "%s%s",
2793 client_get_cur_dir(),
2794 buf);
2795 if (!oldname) {
2796 return 1;
2798 newname = talloc_asprintf(ctx,
2799 "%s%s",
2800 client_get_cur_dir(),
2801 buf2);
2802 if (!newname) {
2803 return 1;
2806 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2807 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2808 return 1;
2811 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2812 d_printf("Server doesn't support UNIX CIFS calls.\n");
2813 return 1;
2816 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2817 d_printf("%s symlinking files (%s -> %s)\n",
2818 cli_errstr(targetcli), newname, targetname);
2819 return 1;
2822 return 0;
2825 /****************************************************************************
2826 UNIX chmod.
2827 ****************************************************************************/
2829 static int cmd_chmod(void)
2831 TALLOC_CTX *ctx = talloc_tos();
2832 char *src = NULL;
2833 char *buf = NULL;
2834 char *buf2 = NULL;
2835 char *targetname = NULL;
2836 struct cli_state *targetcli;
2837 mode_t mode;
2839 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2840 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2841 d_printf("chmod mode file\n");
2842 return 1;
2844 src = talloc_asprintf(ctx,
2845 "%s%s",
2846 client_get_cur_dir(),
2847 buf2);
2848 if (!src) {
2849 return 1;
2852 mode = (mode_t)strtol(buf, NULL, 8);
2854 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2855 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2856 return 1;
2859 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2860 d_printf("Server doesn't support UNIX CIFS calls.\n");
2861 return 1;
2864 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2865 d_printf("%s chmod file %s 0%o\n",
2866 cli_errstr(targetcli), src, (unsigned int)mode);
2867 return 1;
2870 return 0;
2873 static const char *filetype_to_str(mode_t mode)
2875 if (S_ISREG(mode)) {
2876 return "regular file";
2877 } else if (S_ISDIR(mode)) {
2878 return "directory";
2879 } else
2880 #ifdef S_ISCHR
2881 if (S_ISCHR(mode)) {
2882 return "character device";
2883 } else
2884 #endif
2885 #ifdef S_ISBLK
2886 if (S_ISBLK(mode)) {
2887 return "block device";
2888 } else
2889 #endif
2890 #ifdef S_ISFIFO
2891 if (S_ISFIFO(mode)) {
2892 return "fifo";
2893 } else
2894 #endif
2895 #ifdef S_ISLNK
2896 if (S_ISLNK(mode)) {
2897 return "symbolic link";
2898 } else
2899 #endif
2900 #ifdef S_ISSOCK
2901 if (S_ISSOCK(mode)) {
2902 return "socket";
2903 } else
2904 #endif
2905 return "";
2908 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2910 if (m & bt) {
2911 return ret;
2912 } else {
2913 return '-';
2917 static char *unix_mode_to_str(char *s, mode_t m)
2919 char *p = s;
2920 const char *str = filetype_to_str(m);
2922 switch(str[0]) {
2923 case 'd':
2924 *p++ = 'd';
2925 break;
2926 case 'c':
2927 *p++ = 'c';
2928 break;
2929 case 'b':
2930 *p++ = 'b';
2931 break;
2932 case 'f':
2933 *p++ = 'p';
2934 break;
2935 case 's':
2936 *p++ = str[1] == 'y' ? 'l' : 's';
2937 break;
2938 case 'r':
2939 default:
2940 *p++ = '-';
2941 break;
2943 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2944 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2945 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2946 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2947 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2948 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2949 *p++ = rwx_to_str(m, S_IROTH, 'r');
2950 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2951 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2952 *p++ = '\0';
2953 return s;
2956 /****************************************************************************
2957 Utility function for UNIX getfacl.
2958 ****************************************************************************/
2960 static char *perms_to_string(fstring permstr, unsigned char perms)
2962 fstrcpy(permstr, "---");
2963 if (perms & SMB_POSIX_ACL_READ) {
2964 permstr[0] = 'r';
2966 if (perms & SMB_POSIX_ACL_WRITE) {
2967 permstr[1] = 'w';
2969 if (perms & SMB_POSIX_ACL_EXECUTE) {
2970 permstr[2] = 'x';
2972 return permstr;
2975 /****************************************************************************
2976 UNIX getfacl.
2977 ****************************************************************************/
2979 static int cmd_getfacl(void)
2981 TALLOC_CTX *ctx = talloc_tos();
2982 char *src = NULL;
2983 char *name = NULL;
2984 char *targetname = NULL;
2985 struct cli_state *targetcli;
2986 uint16 major, minor;
2987 uint32 caplow, caphigh;
2988 char *retbuf = NULL;
2989 size_t rb_size = 0;
2990 SMB_STRUCT_STAT sbuf;
2991 uint16 num_file_acls = 0;
2992 uint16 num_dir_acls = 0;
2993 uint16 i;
2994 NTSTATUS status;
2996 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2997 d_printf("getfacl filename\n");
2998 return 1;
3000 src = talloc_asprintf(ctx,
3001 "%s%s",
3002 client_get_cur_dir(),
3003 name);
3004 if (!src) {
3005 return 1;
3008 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3009 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3010 return 1;
3013 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3014 d_printf("Server doesn't support UNIX CIFS calls.\n");
3015 return 1;
3018 status = cli_unix_extensions_version(targetcli, &major, &minor,
3019 &caplow, &caphigh);
3020 if (!NT_STATUS_IS_OK(status)) {
3021 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3022 nt_errstr(status));
3023 return 1;
3026 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3027 d_printf("This server supports UNIX extensions "
3028 "but doesn't support POSIX ACLs.\n");
3029 return 1;
3032 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3033 d_printf("%s getfacl doing a stat on file %s\n",
3034 cli_errstr(targetcli), src);
3035 return 1;
3038 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3039 d_printf("%s getfacl file %s\n",
3040 cli_errstr(targetcli), src);
3041 return 1;
3044 /* ToDo : Print out the ACL values. */
3045 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3046 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3047 src, (unsigned int)CVAL(retbuf,0) );
3048 return 1;
3051 num_file_acls = SVAL(retbuf,2);
3052 num_dir_acls = SVAL(retbuf,4);
3053 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3054 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3055 src,
3056 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3057 (unsigned int)rb_size);
3058 return 1;
3061 d_printf("# file: %s\n", src);
3062 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3064 if (num_file_acls == 0 && num_dir_acls == 0) {
3065 d_printf("No acls found.\n");
3068 for (i = 0; i < num_file_acls; i++) {
3069 uint32 uorg;
3070 fstring permstring;
3071 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3072 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3074 switch(tagtype) {
3075 case SMB_POSIX_ACL_USER_OBJ:
3076 d_printf("user::");
3077 break;
3078 case SMB_POSIX_ACL_USER:
3079 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3080 d_printf("user:%u:", uorg);
3081 break;
3082 case SMB_POSIX_ACL_GROUP_OBJ:
3083 d_printf("group::");
3084 break;
3085 case SMB_POSIX_ACL_GROUP:
3086 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3087 d_printf("group:%u:", uorg);
3088 break;
3089 case SMB_POSIX_ACL_MASK:
3090 d_printf("mask::");
3091 break;
3092 case SMB_POSIX_ACL_OTHER:
3093 d_printf("other::");
3094 break;
3095 default:
3096 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3097 src, (unsigned int)tagtype );
3098 SAFE_FREE(retbuf);
3099 return 1;
3102 d_printf("%s\n", perms_to_string(permstring, perms));
3105 for (i = 0; i < num_dir_acls; i++) {
3106 uint32 uorg;
3107 fstring permstring;
3108 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3109 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3111 switch(tagtype) {
3112 case SMB_POSIX_ACL_USER_OBJ:
3113 d_printf("default:user::");
3114 break;
3115 case SMB_POSIX_ACL_USER:
3116 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3117 d_printf("default:user:%u:", uorg);
3118 break;
3119 case SMB_POSIX_ACL_GROUP_OBJ:
3120 d_printf("default:group::");
3121 break;
3122 case SMB_POSIX_ACL_GROUP:
3123 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3124 d_printf("default:group:%u:", uorg);
3125 break;
3126 case SMB_POSIX_ACL_MASK:
3127 d_printf("default:mask::");
3128 break;
3129 case SMB_POSIX_ACL_OTHER:
3130 d_printf("default:other::");
3131 break;
3132 default:
3133 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3134 src, (unsigned int)tagtype );
3135 SAFE_FREE(retbuf);
3136 return 1;
3139 d_printf("%s\n", perms_to_string(permstring, perms));
3142 return 0;
3145 /****************************************************************************
3146 UNIX stat.
3147 ****************************************************************************/
3149 static int cmd_stat(void)
3151 TALLOC_CTX *ctx = talloc_tos();
3152 char *src = NULL;
3153 char *name = NULL;
3154 char *targetname = NULL;
3155 struct cli_state *targetcli;
3156 fstring mode_str;
3157 SMB_STRUCT_STAT sbuf;
3158 struct tm *lt;
3159 time_t tmp_time;
3161 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3162 d_printf("stat file\n");
3163 return 1;
3165 src = talloc_asprintf(ctx,
3166 "%s%s",
3167 client_get_cur_dir(),
3168 name);
3169 if (!src) {
3170 return 1;
3173 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3174 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3175 return 1;
3178 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3179 d_printf("Server doesn't support UNIX CIFS calls.\n");
3180 return 1;
3183 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3184 d_printf("%s stat file %s\n",
3185 cli_errstr(targetcli), src);
3186 return 1;
3189 /* Print out the stat values. */
3190 d_printf("File: %s\n", src);
3191 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3192 (double)sbuf.st_ex_size,
3193 (unsigned int)sbuf.st_ex_blocks,
3194 filetype_to_str(sbuf.st_ex_mode));
3196 #if defined(S_ISCHR) && defined(S_ISBLK)
3197 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3198 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3199 (double)sbuf.st_ex_ino,
3200 (unsigned int)sbuf.st_ex_nlink,
3201 unix_dev_major(sbuf.st_ex_rdev),
3202 unix_dev_minor(sbuf.st_ex_rdev));
3203 } else
3204 #endif
3205 d_printf("Inode: %.0f\tLinks: %u\n",
3206 (double)sbuf.st_ex_ino,
3207 (unsigned int)sbuf.st_ex_nlink);
3209 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3210 ((int)sbuf.st_ex_mode & 0777),
3211 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3212 (unsigned int)sbuf.st_ex_uid,
3213 (unsigned int)sbuf.st_ex_gid);
3215 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3216 lt = localtime(&tmp_time);
3217 if (lt) {
3218 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3219 } else {
3220 fstrcpy(mode_str, "unknown");
3222 d_printf("Access: %s\n", mode_str);
3224 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3225 lt = localtime(&tmp_time);
3226 if (lt) {
3227 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3228 } else {
3229 fstrcpy(mode_str, "unknown");
3231 d_printf("Modify: %s\n", mode_str);
3233 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3234 lt = localtime(&tmp_time);
3235 if (lt) {
3236 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3237 } else {
3238 fstrcpy(mode_str, "unknown");
3240 d_printf("Change: %s\n", mode_str);
3242 return 0;
3246 /****************************************************************************
3247 UNIX chown.
3248 ****************************************************************************/
3250 static int cmd_chown(void)
3252 TALLOC_CTX *ctx = talloc_tos();
3253 char *src = NULL;
3254 uid_t uid;
3255 gid_t gid;
3256 char *buf, *buf2, *buf3;
3257 struct cli_state *targetcli;
3258 char *targetname = NULL;
3260 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3261 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3262 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3263 d_printf("chown uid gid file\n");
3264 return 1;
3267 uid = (uid_t)atoi(buf);
3268 gid = (gid_t)atoi(buf2);
3270 src = talloc_asprintf(ctx,
3271 "%s%s",
3272 client_get_cur_dir(),
3273 buf3);
3274 if (!src) {
3275 return 1;
3277 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3278 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3279 return 1;
3282 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3283 d_printf("Server doesn't support UNIX CIFS calls.\n");
3284 return 1;
3287 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3288 d_printf("%s chown file %s uid=%d, gid=%d\n",
3289 cli_errstr(targetcli), src, (int)uid, (int)gid);
3290 return 1;
3293 return 0;
3296 /****************************************************************************
3297 Rename some file.
3298 ****************************************************************************/
3300 static int cmd_rename(void)
3302 TALLOC_CTX *ctx = talloc_tos();
3303 char *src, *dest;
3304 char *buf, *buf2;
3305 struct cli_state *targetcli;
3306 char *targetsrc;
3307 char *targetdest;
3309 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3310 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3311 d_printf("rename <src> <dest>\n");
3312 return 1;
3315 src = talloc_asprintf(ctx,
3316 "%s%s",
3317 client_get_cur_dir(),
3318 buf);
3319 if (!src) {
3320 return 1;
3323 dest = talloc_asprintf(ctx,
3324 "%s%s",
3325 client_get_cur_dir(),
3326 buf2);
3327 if (!dest) {
3328 return 1;
3331 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3332 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3333 return 1;
3336 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3337 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3338 return 1;
3341 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3342 d_printf("%s renaming files %s -> %s \n",
3343 cli_errstr(targetcli),
3344 targetsrc,
3345 targetdest);
3346 return 1;
3349 return 0;
3352 /****************************************************************************
3353 Print the volume name.
3354 ****************************************************************************/
3356 static int cmd_volume(void)
3358 fstring volname;
3359 uint32 serial_num;
3360 time_t create_date;
3362 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3363 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3364 return 1;
3367 d_printf("Volume: |%s| serial number 0x%x\n",
3368 volname, (unsigned int)serial_num);
3369 return 0;
3372 /****************************************************************************
3373 Hard link files using the NT call.
3374 ****************************************************************************/
3376 static int cmd_hardlink(void)
3378 TALLOC_CTX *ctx = talloc_tos();
3379 char *src, *dest;
3380 char *buf, *buf2;
3381 struct cli_state *targetcli;
3382 char *targetname;
3384 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3385 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3386 d_printf("hardlink <src> <dest>\n");
3387 return 1;
3390 src = talloc_asprintf(ctx,
3391 "%s%s",
3392 client_get_cur_dir(),
3393 buf);
3394 if (!src) {
3395 return 1;
3398 dest = talloc_asprintf(ctx,
3399 "%s%s",
3400 client_get_cur_dir(),
3401 buf2);
3402 if (!dest) {
3403 return 1;
3406 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3407 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3408 return 1;
3411 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3412 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3413 return 1;
3416 return 0;
3419 /****************************************************************************
3420 Toggle the prompt flag.
3421 ****************************************************************************/
3423 static int cmd_prompt(void)
3425 prompt = !prompt;
3426 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3427 return 1;
3430 /****************************************************************************
3431 Set the newer than time.
3432 ****************************************************************************/
3434 static int cmd_newer(void)
3436 TALLOC_CTX *ctx = talloc_tos();
3437 char *buf;
3438 bool ok;
3439 SMB_STRUCT_STAT sbuf;
3441 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3442 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3443 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3444 DEBUG(1,("Getting files newer than %s",
3445 time_to_asc(newer_than)));
3446 } else {
3447 newer_than = 0;
3450 if (ok && newer_than == 0) {
3451 d_printf("Error setting newer-than time\n");
3452 return 1;
3455 return 0;
3458 /****************************************************************************
3459 Set the archive level.
3460 ****************************************************************************/
3462 static int cmd_archive(void)
3464 TALLOC_CTX *ctx = talloc_tos();
3465 char *buf;
3467 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3468 archive_level = atoi(buf);
3469 } else {
3470 d_printf("Archive level is %d\n",archive_level);
3473 return 0;
3476 /****************************************************************************
3477 Toggle the lowercaseflag.
3478 ****************************************************************************/
3480 static int cmd_lowercase(void)
3482 lowercase = !lowercase;
3483 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3484 return 0;
3487 /****************************************************************************
3488 Toggle the case sensitive flag.
3489 ****************************************************************************/
3491 static int cmd_setcase(void)
3493 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3495 cli_set_case_sensitive(cli, !orig_case_sensitive);
3496 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3497 "on":"off"));
3498 return 0;
3501 /****************************************************************************
3502 Toggle the showacls flag.
3503 ****************************************************************************/
3505 static int cmd_showacls(void)
3507 showacls = !showacls;
3508 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3509 return 0;
3513 /****************************************************************************
3514 Toggle the recurse flag.
3515 ****************************************************************************/
3517 static int cmd_recurse(void)
3519 recurse = !recurse;
3520 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3521 return 0;
3524 /****************************************************************************
3525 Toggle the translate flag.
3526 ****************************************************************************/
3528 static int cmd_translate(void)
3530 translation = !translation;
3531 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3532 translation?"on":"off"));
3533 return 0;
3536 /****************************************************************************
3537 Do the lcd command.
3538 ****************************************************************************/
3540 static int cmd_lcd(void)
3542 TALLOC_CTX *ctx = talloc_tos();
3543 char *buf;
3544 char *d;
3546 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3547 if (chdir(buf) == -1) {
3548 d_printf("chdir to %s failed (%s)\n",
3549 buf, strerror(errno));
3552 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3553 if (!d) {
3554 return 1;
3556 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3557 return 0;
3560 /****************************************************************************
3561 Get a file restarting at end of local file.
3562 ****************************************************************************/
3564 static int cmd_reget(void)
3566 TALLOC_CTX *ctx = talloc_tos();
3567 char *local_name = NULL;
3568 char *remote_name = NULL;
3569 char *fname = NULL;
3570 char *p = NULL;
3572 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3573 if (!remote_name) {
3574 return 1;
3577 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3578 d_printf("reget <filename>\n");
3579 return 1;
3581 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3582 if (!remote_name) {
3583 return 1;
3585 remote_name = clean_name(ctx,remote_name);
3586 if (!remote_name) {
3587 return 1;
3590 local_name = fname;
3591 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3592 if (p) {
3593 local_name = p;
3596 return do_get(remote_name, local_name, true);
3599 /****************************************************************************
3600 Put a file restarting at end of local file.
3601 ****************************************************************************/
3603 static int cmd_reput(void)
3605 TALLOC_CTX *ctx = talloc_tos();
3606 char *local_name = NULL;
3607 char *remote_name = NULL;
3608 char *buf;
3609 SMB_STRUCT_STAT st;
3611 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3612 if (!remote_name) {
3613 return 1;
3616 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3617 d_printf("reput <filename>\n");
3618 return 1;
3621 if (!file_exist_stat(local_name, &st, false)) {
3622 d_printf("%s does not exist\n", local_name);
3623 return 1;
3626 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3627 remote_name = talloc_asprintf_append(remote_name,
3628 "%s", buf);
3629 } else {
3630 remote_name = talloc_asprintf_append(remote_name,
3631 "%s", local_name);
3633 if (!remote_name) {
3634 return 1;
3637 remote_name = clean_name(ctx, remote_name);
3638 if (!remote_name) {
3639 return 1;
3642 return do_put(remote_name, local_name, true);
3645 /****************************************************************************
3646 List a share name.
3647 ****************************************************************************/
3649 static void browse_fn(const char *name, uint32 m,
3650 const char *comment, void *state)
3652 const char *typestr = "";
3654 switch (m & 7) {
3655 case STYPE_DISKTREE:
3656 typestr = "Disk";
3657 break;
3658 case STYPE_PRINTQ:
3659 typestr = "Printer";
3660 break;
3661 case STYPE_DEVICE:
3662 typestr = "Device";
3663 break;
3664 case STYPE_IPC:
3665 typestr = "IPC";
3666 break;
3668 /* FIXME: If the remote machine returns non-ascii characters
3669 in any of these fields, they can corrupt the output. We
3670 should remove them. */
3671 if (!grepable) {
3672 d_printf("\t%-15s %-10.10s%s\n",
3673 name,typestr,comment);
3674 } else {
3675 d_printf ("%s|%s|%s\n",typestr,name,comment);
3679 static bool browse_host_rpc(bool sort)
3681 NTSTATUS status;
3682 struct rpc_pipe_client *pipe_hnd = NULL;
3683 TALLOC_CTX *frame = talloc_stackframe();
3684 WERROR werr;
3685 struct srvsvc_NetShareInfoCtr info_ctr;
3686 struct srvsvc_NetShareCtr1 ctr1;
3687 uint32_t resume_handle = 0;
3688 uint32_t total_entries = 0;
3689 int i;
3691 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3692 &pipe_hnd);
3694 if (!NT_STATUS_IS_OK(status)) {
3695 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3696 nt_errstr(status)));
3697 TALLOC_FREE(frame);
3698 return false;
3701 ZERO_STRUCT(info_ctr);
3702 ZERO_STRUCT(ctr1);
3704 info_ctr.level = 1;
3705 info_ctr.ctr.ctr1 = &ctr1;
3707 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3708 pipe_hnd->desthost,
3709 &info_ctr,
3710 0xffffffff,
3711 &total_entries,
3712 &resume_handle,
3713 &werr);
3715 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3716 TALLOC_FREE(pipe_hnd);
3717 TALLOC_FREE(frame);
3718 return false;
3721 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3722 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3723 browse_fn(info.name, info.type, info.comment, NULL);
3726 TALLOC_FREE(pipe_hnd);
3727 TALLOC_FREE(frame);
3728 return true;
3731 /****************************************************************************
3732 Try and browse available connections on a host.
3733 ****************************************************************************/
3735 static bool browse_host(bool sort)
3737 int ret;
3738 if (!grepable) {
3739 d_printf("\n\tSharename Type Comment\n");
3740 d_printf("\t--------- ---- -------\n");
3743 if (browse_host_rpc(sort)) {
3744 return true;
3747 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3748 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3750 return (ret != -1);
3753 /****************************************************************************
3754 List a server name.
3755 ****************************************************************************/
3757 static void server_fn(const char *name, uint32 m,
3758 const char *comment, void *state)
3761 if (!grepable){
3762 d_printf("\t%-16s %s\n", name, comment);
3763 } else {
3764 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3768 /****************************************************************************
3769 Try and browse available connections on a host.
3770 ****************************************************************************/
3772 static bool list_servers(const char *wk_grp)
3774 fstring state;
3776 if (!cli->server_domain)
3777 return false;
3779 if (!grepable) {
3780 d_printf("\n\tServer Comment\n");
3781 d_printf("\t--------- -------\n");
3783 fstrcpy( state, "Server" );
3784 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3785 state);
3787 if (!grepable) {
3788 d_printf("\n\tWorkgroup Master\n");
3789 d_printf("\t--------- -------\n");
3792 fstrcpy( state, "Workgroup" );
3793 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3794 server_fn, state);
3795 return true;
3798 /****************************************************************************
3799 Print or set current VUID
3800 ****************************************************************************/
3802 static int cmd_vuid(void)
3804 TALLOC_CTX *ctx = talloc_tos();
3805 char *buf;
3807 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3808 d_printf("Current VUID is %d\n", cli->vuid);
3809 return 0;
3812 cli->vuid = atoi(buf);
3813 return 0;
3816 /****************************************************************************
3817 Setup a new VUID, by issuing a session setup
3818 ****************************************************************************/
3820 static int cmd_logon(void)
3822 TALLOC_CTX *ctx = talloc_tos();
3823 char *l_username, *l_password;
3825 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3826 d_printf("logon <username> [<password>]\n");
3827 return 0;
3830 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3831 char *pass = getpass("Password: ");
3832 if (pass) {
3833 l_password = talloc_strdup(ctx,pass);
3836 if (!l_password) {
3837 return 1;
3840 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3841 l_password, strlen(l_password),
3842 l_password, strlen(l_password),
3843 lp_workgroup()))) {
3844 d_printf("session setup failed: %s\n", cli_errstr(cli));
3845 return -1;
3848 d_printf("Current VUID is %d\n", cli->vuid);
3849 return 0;
3853 /****************************************************************************
3854 list active connections
3855 ****************************************************************************/
3857 static int cmd_list_connect(void)
3859 cli_cm_display(cli);
3860 return 0;
3863 /****************************************************************************
3864 display the current active client connection
3865 ****************************************************************************/
3867 static int cmd_show_connect( void )
3869 TALLOC_CTX *ctx = talloc_tos();
3870 struct cli_state *targetcli;
3871 char *targetpath;
3873 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3874 &targetcli, &targetpath ) ) {
3875 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3876 return 1;
3879 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3880 return 0;
3883 /****************************************************************************
3884 iosize command
3885 ***************************************************************************/
3887 int cmd_iosize(void)
3889 TALLOC_CTX *ctx = talloc_tos();
3890 char *buf;
3891 int iosize;
3893 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3894 if (!smb_encrypt) {
3895 d_printf("iosize <n> or iosize 0x<n>. "
3896 "Minimum is 16384 (0x4000), "
3897 "max is 16776960 (0xFFFF00)\n");
3898 } else {
3899 d_printf("iosize <n> or iosize 0x<n>. "
3900 "(Encrypted connection) ,"
3901 "Minimum is 16384 (0x4000), "
3902 "max is 130048 (0x1FC00)\n");
3904 return 1;
3907 iosize = strtol(buf,NULL,0);
3908 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3909 d_printf("iosize out of range for encrypted "
3910 "connection (min = 16384 (0x4000), "
3911 "max = 130048 (0x1FC00)");
3912 return 1;
3913 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3914 d_printf("iosize out of range (min = 16384 (0x4000), "
3915 "max = 16776960 (0xFFFF00)");
3916 return 1;
3919 io_bufsize = iosize;
3920 d_printf("iosize is now %d\n", io_bufsize);
3921 return 0;
3925 /* Some constants for completing filename arguments */
3927 #define COMPL_NONE 0 /* No completions */
3928 #define COMPL_REMOTE 1 /* Complete remote filename */
3929 #define COMPL_LOCAL 2 /* Complete local filename */
3931 /* This defines the commands supported by this client.
3932 * NOTE: The "!" must be the last one in the list because it's fn pointer
3933 * field is NULL, and NULL in that field is used in process_tok()
3934 * (below) to indicate the end of the list. crh
3936 static struct {
3937 const char *name;
3938 int (*fn)(void);
3939 const char *description;
3940 char compl_args[2]; /* Completion argument info */
3941 } commands[] = {
3942 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3943 {"allinfo",cmd_allinfo,"<file> show all available info",
3944 {COMPL_NONE,COMPL_NONE}},
3945 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3946 {"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}},
3947 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3948 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3949 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3950 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3951 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3952 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3953 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3954 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3955 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3956 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3957 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3958 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3959 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3960 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3961 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3962 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3963 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3964 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3965 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3966 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3967 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3968 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3969 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3970 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3971 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3972 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3973 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3974 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3975 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3976 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3977 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3978 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3979 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3980 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3981 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3982 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3983 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3984 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3985 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3986 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3987 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3988 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3989 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3990 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3991 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3992 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3993 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3994 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3995 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3996 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3997 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3998 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3999 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4000 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4001 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4002 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4003 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4004 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4005 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4006 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4007 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4008 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4009 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4010 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4011 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4012 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4013 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4014 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4016 /* Yes, this must be here, see crh's comment above. */
4017 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4018 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4021 /*******************************************************************
4022 Lookup a command string in the list of commands, including
4023 abbreviations.
4024 ******************************************************************/
4026 static int process_tok(char *tok)
4028 int i = 0, matches = 0;
4029 int cmd=0;
4030 int tok_len = strlen(tok);
4032 while (commands[i].fn != NULL) {
4033 if (strequal(commands[i].name,tok)) {
4034 matches = 1;
4035 cmd = i;
4036 break;
4037 } else if (strnequal(commands[i].name, tok, tok_len)) {
4038 matches++;
4039 cmd = i;
4041 i++;
4044 if (matches == 0)
4045 return(-1);
4046 else if (matches == 1)
4047 return(cmd);
4048 else
4049 return(-2);
4052 /****************************************************************************
4053 Help.
4054 ****************************************************************************/
4056 static int cmd_help(void)
4058 TALLOC_CTX *ctx = talloc_tos();
4059 int i=0,j;
4060 char *buf;
4062 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4063 if ((i = process_tok(buf)) >= 0)
4064 d_printf("HELP %s:\n\t%s\n\n",
4065 commands[i].name,commands[i].description);
4066 } else {
4067 while (commands[i].description) {
4068 for (j=0; commands[i].description && (j<5); j++) {
4069 d_printf("%-15s",commands[i].name);
4070 i++;
4072 d_printf("\n");
4075 return 0;
4078 /****************************************************************************
4079 Process a -c command string.
4080 ****************************************************************************/
4082 static int process_command_string(const char *cmd_in)
4084 TALLOC_CTX *ctx = talloc_tos();
4085 char *cmd = talloc_strdup(ctx, cmd_in);
4086 int rc = 0;
4088 if (!cmd) {
4089 return 1;
4091 /* establish the connection if not already */
4093 if (!cli) {
4094 cli = cli_cm_open(talloc_tos(), NULL,
4095 have_ip ? dest_ss_str : desthost,
4096 service, auth_info,
4097 true, smb_encrypt,
4098 max_protocol, port, name_type);
4099 if (!cli) {
4100 return 1;
4104 while (cmd[0] != '\0') {
4105 char *line;
4106 char *p;
4107 char *tok;
4108 int i;
4110 if ((p = strchr_m(cmd, ';')) == 0) {
4111 line = cmd;
4112 cmd += strlen(cmd);
4113 } else {
4114 *p = '\0';
4115 line = cmd;
4116 cmd = p + 1;
4119 /* and get the first part of the command */
4120 cmd_ptr = line;
4121 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4122 continue;
4125 if ((i = process_tok(tok)) >= 0) {
4126 rc = commands[i].fn();
4127 } else if (i == -2) {
4128 d_printf("%s: command abbreviation ambiguous\n",tok);
4129 } else {
4130 d_printf("%s: command not found\n",tok);
4134 return rc;
4137 #define MAX_COMPLETIONS 100
4139 typedef struct {
4140 char *dirmask;
4141 char **matches;
4142 int count, samelen;
4143 const char *text;
4144 int len;
4145 } completion_remote_t;
4147 static void completion_remote_filter(const char *mnt,
4148 file_info *f,
4149 const char *mask,
4150 void *state)
4152 completion_remote_t *info = (completion_remote_t *)state;
4154 if ((info->count < MAX_COMPLETIONS - 1) &&
4155 (strncmp(info->text, f->name, info->len) == 0) &&
4156 (strcmp(f->name, ".") != 0) &&
4157 (strcmp(f->name, "..") != 0)) {
4158 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4159 info->matches[info->count] = SMB_STRDUP(f->name);
4160 else {
4161 TALLOC_CTX *ctx = talloc_stackframe();
4162 char *tmp;
4164 tmp = talloc_strdup(ctx,info->dirmask);
4165 if (!tmp) {
4166 TALLOC_FREE(ctx);
4167 return;
4169 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4170 if (!tmp) {
4171 TALLOC_FREE(ctx);
4172 return;
4174 if (f->mode & aDIR) {
4175 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4177 if (!tmp) {
4178 TALLOC_FREE(ctx);
4179 return;
4181 info->matches[info->count] = SMB_STRDUP(tmp);
4182 TALLOC_FREE(ctx);
4184 if (info->matches[info->count] == NULL) {
4185 return;
4187 if (f->mode & aDIR) {
4188 smb_readline_ca_char(0);
4190 if (info->count == 1) {
4191 info->samelen = strlen(info->matches[info->count]);
4192 } else {
4193 while (strncmp(info->matches[info->count],
4194 info->matches[info->count-1],
4195 info->samelen) != 0) {
4196 info->samelen--;
4199 info->count++;
4203 static char **remote_completion(const char *text, int len)
4205 TALLOC_CTX *ctx = talloc_stackframe();
4206 char *dirmask = NULL;
4207 char *targetpath = NULL;
4208 struct cli_state *targetcli = NULL;
4209 int i;
4210 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4212 /* can't have non-static intialisation on Sun CC, so do it
4213 at run time here */
4214 info.samelen = len;
4215 info.text = text;
4216 info.len = len;
4218 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4219 if (!info.matches) {
4220 TALLOC_FREE(ctx);
4221 return NULL;
4225 * We're leaving matches[0] free to fill it later with the text to
4226 * display: Either the one single match or the longest common subset
4227 * of the matches.
4229 info.matches[0] = NULL;
4230 info.count = 1;
4232 for (i = len-1; i >= 0; i--) {
4233 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4234 break;
4238 info.text = text+i+1;
4239 info.samelen = info.len = len-i-1;
4241 if (i > 0) {
4242 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4243 if (!info.dirmask) {
4244 goto cleanup;
4246 strncpy(info.dirmask, text, i+1);
4247 info.dirmask[i+1] = 0;
4248 dirmask = talloc_asprintf(ctx,
4249 "%s%*s*",
4250 client_get_cur_dir(),
4251 i-1,
4252 text);
4253 } else {
4254 info.dirmask = SMB_STRDUP("");
4255 if (!info.dirmask) {
4256 goto cleanup;
4258 dirmask = talloc_asprintf(ctx,
4259 "%s*",
4260 client_get_cur_dir());
4262 if (!dirmask) {
4263 goto cleanup;
4266 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4267 goto cleanup;
4269 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4270 completion_remote_filter, (void *)&info) < 0) {
4271 goto cleanup;
4274 if (info.count == 1) {
4276 * No matches at all, NULL indicates there is nothing
4278 SAFE_FREE(info.matches[0]);
4279 SAFE_FREE(info.matches);
4280 TALLOC_FREE(ctx);
4281 return NULL;
4284 if (info.count == 2) {
4286 * Exactly one match in matches[1], indicate this is the one
4287 * in matches[0].
4289 info.matches[0] = info.matches[1];
4290 info.matches[1] = NULL;
4291 info.count -= 1;
4292 TALLOC_FREE(ctx);
4293 return info.matches;
4297 * We got more than one possible match, set the result to the maximum
4298 * common subset
4301 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4302 info.matches[info.count] = NULL;
4303 return info.matches;
4305 cleanup:
4306 for (i = 0; i < info.count; i++) {
4307 SAFE_FREE(info.matches[i]);
4309 SAFE_FREE(info.matches);
4310 SAFE_FREE(info.dirmask);
4311 TALLOC_FREE(ctx);
4312 return NULL;
4315 static char **completion_fn(const char *text, int start, int end)
4317 smb_readline_ca_char(' ');
4319 if (start) {
4320 const char *buf, *sp;
4321 int i;
4322 char compl_type;
4324 buf = smb_readline_get_line_buffer();
4325 if (buf == NULL)
4326 return NULL;
4328 sp = strchr(buf, ' ');
4329 if (sp == NULL)
4330 return NULL;
4332 for (i = 0; commands[i].name; i++) {
4333 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4334 (commands[i].name[sp - buf] == 0)) {
4335 break;
4338 if (commands[i].name == NULL)
4339 return NULL;
4341 while (*sp == ' ')
4342 sp++;
4344 if (sp == (buf + start))
4345 compl_type = commands[i].compl_args[0];
4346 else
4347 compl_type = commands[i].compl_args[1];
4349 if (compl_type == COMPL_REMOTE)
4350 return remote_completion(text, end - start);
4351 else /* fall back to local filename completion */
4352 return NULL;
4353 } else {
4354 char **matches;
4355 int i, len, samelen = 0, count=1;
4357 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4358 if (!matches) {
4359 return NULL;
4361 matches[0] = NULL;
4363 len = strlen(text);
4364 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4365 if (strncmp(text, commands[i].name, len) == 0) {
4366 matches[count] = SMB_STRDUP(commands[i].name);
4367 if (!matches[count])
4368 goto cleanup;
4369 if (count == 1)
4370 samelen = strlen(matches[count]);
4371 else
4372 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4373 samelen--;
4374 count++;
4378 switch (count) {
4379 case 0: /* should never happen */
4380 case 1:
4381 goto cleanup;
4382 case 2:
4383 matches[0] = SMB_STRDUP(matches[1]);
4384 break;
4385 default:
4386 matches[0] = (char *)SMB_MALLOC(samelen+1);
4387 if (!matches[0])
4388 goto cleanup;
4389 strncpy(matches[0], matches[1], samelen);
4390 matches[0][samelen] = 0;
4392 matches[count] = NULL;
4393 return matches;
4395 cleanup:
4396 for (i = 0; i < count; i++)
4397 free(matches[i]);
4399 free(matches);
4400 return NULL;
4404 static bool finished;
4406 /****************************************************************************
4407 Make sure we swallow keepalives during idle time.
4408 ****************************************************************************/
4410 static void readline_callback(void)
4412 fd_set fds;
4413 struct timeval timeout;
4414 static time_t last_t;
4415 time_t t;
4417 t = time(NULL);
4419 if (t - last_t < 5)
4420 return;
4422 last_t = t;
4424 again:
4426 if (cli->fd == -1)
4427 return;
4429 FD_ZERO(&fds);
4430 FD_SET(cli->fd,&fds);
4432 timeout.tv_sec = 0;
4433 timeout.tv_usec = 0;
4434 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4436 /* We deliberately use receive_smb_raw instead of
4437 client_receive_smb as we want to receive
4438 session keepalives and then drop them here.
4440 if (FD_ISSET(cli->fd,&fds)) {
4441 NTSTATUS status;
4442 size_t len;
4444 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4446 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4448 if (!NT_STATUS_IS_OK(status)) {
4449 DEBUG(0, ("Read from server failed, maybe it closed "
4450 "the connection\n"));
4452 finished = true;
4453 smb_readline_done();
4454 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4455 set_smb_read_error(&cli->smb_rw_error,
4456 SMB_READ_EOF);
4457 return;
4460 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4461 set_smb_read_error(&cli->smb_rw_error,
4462 SMB_READ_TIMEOUT);
4463 return;
4466 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4467 return;
4469 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4470 DEBUG(0, ("Read from server "
4471 "returned unexpected packet!\n"));
4472 return;
4475 goto again;
4478 /* Ping the server to keep the connection alive using SMBecho. */
4480 NTSTATUS status;
4481 unsigned char garbage[16];
4482 memset(garbage, 0xf0, sizeof(garbage));
4483 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4485 if (!NT_STATUS_IS_OK(status)) {
4486 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4487 "the connection\n"));
4488 finished = true;
4489 smb_readline_done();
4494 /****************************************************************************
4495 Process commands on stdin.
4496 ****************************************************************************/
4498 static int process_stdin(void)
4500 int rc = 0;
4502 while (!finished) {
4503 TALLOC_CTX *frame = talloc_stackframe();
4504 char *tok = NULL;
4505 char *the_prompt = NULL;
4506 char *line = NULL;
4507 int i;
4509 /* display a prompt */
4510 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4511 TALLOC_FREE(frame);
4512 break;
4514 line = smb_readline(the_prompt, readline_callback, completion_fn);
4515 SAFE_FREE(the_prompt);
4516 if (!line) {
4517 TALLOC_FREE(frame);
4518 break;
4521 /* special case - first char is ! */
4522 if (*line == '!') {
4523 if (system(line + 1) == -1) {
4524 d_printf("system() command %s failed.\n",
4525 line+1);
4527 SAFE_FREE(line);
4528 TALLOC_FREE(frame);
4529 continue;
4532 /* and get the first part of the command */
4533 cmd_ptr = line;
4534 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4535 TALLOC_FREE(frame);
4536 SAFE_FREE(line);
4537 continue;
4540 if ((i = process_tok(tok)) >= 0) {
4541 rc = commands[i].fn();
4542 } else if (i == -2) {
4543 d_printf("%s: command abbreviation ambiguous\n",tok);
4544 } else {
4545 d_printf("%s: command not found\n",tok);
4547 SAFE_FREE(line);
4548 TALLOC_FREE(frame);
4550 return rc;
4553 /****************************************************************************
4554 Process commands from the client.
4555 ****************************************************************************/
4557 static int process(const char *base_directory)
4559 int rc = 0;
4561 cli = cli_cm_open(talloc_tos(), NULL,
4562 have_ip ? dest_ss_str : desthost,
4563 service, auth_info, true, smb_encrypt,
4564 max_protocol, port, name_type);
4565 if (!cli) {
4566 return 1;
4569 if (base_directory && *base_directory) {
4570 rc = do_cd(base_directory);
4571 if (rc) {
4572 cli_shutdown(cli);
4573 return rc;
4577 if (cmdstr) {
4578 rc = process_command_string(cmdstr);
4579 } else {
4580 process_stdin();
4583 cli_shutdown(cli);
4584 return rc;
4587 /****************************************************************************
4588 Handle a -L query.
4589 ****************************************************************************/
4591 static int do_host_query(const char *query_host)
4593 cli = cli_cm_open(talloc_tos(), NULL,
4594 query_host, "IPC$", auth_info, true, smb_encrypt,
4595 max_protocol, port, name_type);
4596 if (!cli)
4597 return 1;
4599 browse_host(true);
4601 /* Ensure that the host can do IPv4 */
4603 if (!interpret_addr(query_host)) {
4604 struct sockaddr_storage ss;
4605 if (interpret_string_addr(&ss, query_host, 0) &&
4606 (ss.ss_family != AF_INET)) {
4607 d_printf("%s is an IPv6 address -- no workgroup available\n",
4608 query_host);
4609 return 1;
4613 if (port != 139) {
4615 /* Workgroups simply don't make sense over anything
4616 else but port 139... */
4618 cli_shutdown(cli);
4619 cli = cli_cm_open(talloc_tos(), NULL,
4620 query_host, "IPC$", auth_info, true, smb_encrypt,
4621 max_protocol, 139, name_type);
4624 if (cli == NULL) {
4625 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4626 return 1;
4629 list_servers(lp_workgroup());
4631 cli_shutdown(cli);
4633 return(0);
4636 /****************************************************************************
4637 Handle a tar operation.
4638 ****************************************************************************/
4640 static int do_tar_op(const char *base_directory)
4642 int ret;
4644 /* do we already have a connection? */
4645 if (!cli) {
4646 cli = cli_cm_open(talloc_tos(), NULL,
4647 have_ip ? dest_ss_str : desthost,
4648 service, auth_info, true, smb_encrypt,
4649 max_protocol, port, name_type);
4650 if (!cli)
4651 return 1;
4654 recurse=true;
4656 if (base_directory && *base_directory) {
4657 ret = do_cd(base_directory);
4658 if (ret) {
4659 cli_shutdown(cli);
4660 return ret;
4664 ret=process_tar();
4666 cli_shutdown(cli);
4668 return(ret);
4671 /****************************************************************************
4672 Handle a message operation.
4673 ****************************************************************************/
4675 static int do_message_op(struct user_auth_info *a_info)
4677 struct sockaddr_storage ss;
4678 struct nmb_name called, calling;
4679 fstring server_name;
4680 char name_type_hex[10];
4681 int msg_port;
4682 NTSTATUS status;
4684 make_nmb_name(&calling, calling_name, 0x0);
4685 make_nmb_name(&called , desthost, name_type);
4687 fstrcpy(server_name, desthost);
4688 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4689 fstrcat(server_name, name_type_hex);
4691 zero_sockaddr(&ss);
4692 if (have_ip)
4693 ss = dest_ss;
4695 /* we can only do messages over port 139 (to windows clients at least) */
4697 msg_port = port ? port : 139;
4699 if (!(cli=cli_initialise())) {
4700 d_printf("Connection to %s failed\n", desthost);
4701 return 1;
4703 cli_set_port(cli, msg_port);
4705 status = cli_connect(cli, server_name, &ss);
4706 if (!NT_STATUS_IS_OK(status)) {
4707 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4708 return 1;
4711 if (!cli_session_request(cli, &calling, &called)) {
4712 d_printf("session request failed\n");
4713 cli_shutdown(cli);
4714 return 1;
4717 send_message(get_cmdline_auth_info_username(a_info));
4718 cli_shutdown(cli);
4720 return 0;
4723 /****************************************************************************
4724 main program
4725 ****************************************************************************/
4727 int main(int argc,char *argv[])
4729 char *base_directory = NULL;
4730 int opt;
4731 char *query_host = NULL;
4732 bool message = false;
4733 static const char *new_name_resolve_order = NULL;
4734 poptContext pc;
4735 char *p;
4736 int rc = 0;
4737 fstring new_workgroup;
4738 bool tar_opt = false;
4739 bool service_opt = false;
4740 struct poptOption long_options[] = {
4741 POPT_AUTOHELP
4743 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4744 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4745 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4746 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4747 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4748 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4749 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4750 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4751 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4752 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4753 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4754 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4755 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4756 POPT_COMMON_SAMBA
4757 POPT_COMMON_CONNECTION
4758 POPT_COMMON_CREDENTIALS
4759 POPT_TABLEEND
4761 TALLOC_CTX *frame = talloc_stackframe();
4763 if (!client_set_cur_dir("\\")) {
4764 exit(ENOMEM);
4767 /* initialize the workgroup name so we can determine whether or
4768 not it was set by a command line option */
4770 set_global_myworkgroup( "" );
4771 set_global_myname( "" );
4773 /* set default debug level to 1 regardless of what smb.conf sets */
4774 setup_logging( "smbclient", true );
4775 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4776 if ((dbf = x_fdup(x_stderr))) {
4777 x_setbuf( dbf, NULL );
4780 load_case_tables();
4782 auth_info = user_auth_info_init(frame);
4783 if (auth_info == NULL) {
4784 exit(1);
4786 popt_common_set_auth_info(auth_info);
4788 /* skip argv(0) */
4789 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4790 poptSetOtherOptionHelp(pc, "service <password>");
4792 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4794 while ((opt = poptGetNextOpt(pc)) != -1) {
4796 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4797 /* I see no other way to keep things sane --SSS */
4798 if (tar_opt == true) {
4799 while (poptPeekArg(pc)) {
4800 poptGetArg(pc);
4802 tar_opt = false;
4805 /* if the service has not yet been specified lets see if it is available in the popt stack */
4806 if (!service_opt && poptPeekArg(pc)) {
4807 service = talloc_strdup(frame, poptGetArg(pc));
4808 if (!service) {
4809 exit(ENOMEM);
4811 service_opt = true;
4814 /* if the service has already been retrieved then check if we have also a password */
4815 if (service_opt
4816 && (!get_cmdline_auth_info_got_pass(auth_info))
4817 && poptPeekArg(pc)) {
4818 set_cmdline_auth_info_password(auth_info,
4819 poptGetArg(pc));
4822 switch (opt) {
4823 case 'M':
4824 /* Messages are sent to NetBIOS name type 0x3
4825 * (Messenger Service). Make sure we default
4826 * to port 139 instead of port 445. srl,crh
4828 name_type = 0x03;
4829 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4830 if (!desthost) {
4831 exit(ENOMEM);
4833 if( !port )
4834 port = 139;
4835 message = true;
4836 break;
4837 case 'I':
4839 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4840 exit(1);
4842 have_ip = true;
4843 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4845 break;
4846 case 'E':
4847 if (dbf) {
4848 x_fclose(dbf);
4850 dbf = x_stderr;
4851 display_set_stderr();
4852 break;
4854 case 'L':
4855 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4856 if (!query_host) {
4857 exit(ENOMEM);
4859 break;
4860 case 'm':
4861 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4862 break;
4863 case 'T':
4864 /* We must use old option processing for this. Find the
4865 * position of the -T option in the raw argv[]. */
4867 int i;
4868 for (i = 1; i < argc; i++) {
4869 if (strncmp("-T", argv[i],2)==0)
4870 break;
4872 i++;
4873 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4874 poptPrintUsage(pc, stderr, 0);
4875 exit(1);
4878 /* this must be the last option, mark we have parsed it so that we know we have */
4879 tar_opt = true;
4880 break;
4881 case 'D':
4882 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4883 if (!base_directory) {
4884 exit(ENOMEM);
4886 break;
4887 case 'g':
4888 grepable=true;
4889 break;
4890 case 'e':
4891 smb_encrypt=true;
4892 break;
4893 case 'B':
4894 return(do_smb_browse());
4899 /* We may still have some leftovers after the last popt option has been called */
4900 if (tar_opt == true) {
4901 while (poptPeekArg(pc)) {
4902 poptGetArg(pc);
4904 tar_opt = false;
4907 /* if the service has not yet been specified lets see if it is available in the popt stack */
4908 if (!service_opt && poptPeekArg(pc)) {
4909 service = talloc_strdup(frame,poptGetArg(pc));
4910 if (!service) {
4911 exit(ENOMEM);
4913 service_opt = true;
4916 /* if the service has already been retrieved then check if we have also a password */
4917 if (service_opt
4918 && !get_cmdline_auth_info_got_pass(auth_info)
4919 && poptPeekArg(pc)) {
4920 set_cmdline_auth_info_password(auth_info,
4921 poptGetArg(pc));
4925 * Don't load debug level from smb.conf. It should be
4926 * set by cmdline arg or remain default (0)
4928 AllowDebugChange = false;
4930 /* save the workgroup...
4932 FIXME!! do we need to do this for other options as well
4933 (or maybe a generic way to keep lp_load() from overwriting
4934 everything)? */
4936 fstrcpy( new_workgroup, lp_workgroup() );
4937 calling_name = talloc_strdup(frame, global_myname() );
4938 if (!calling_name) {
4939 exit(ENOMEM);
4942 if ( override_logfile )
4943 setup_logging( lp_logfile(), false );
4945 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4946 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4947 argv[0], get_dyn_CONFIGFILE());
4950 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4951 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4952 exit(-1);
4955 load_interfaces();
4957 if (service_opt && service) {
4958 size_t len;
4960 /* Convert any '/' characters in the service name to '\' characters */
4961 string_replace(service, '/','\\');
4962 if (count_chars(service,'\\') < 3) {
4963 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4964 poptPrintUsage(pc, stderr, 0);
4965 exit(1);
4967 /* Remove trailing slashes */
4968 len = strlen(service);
4969 while(len > 0 && service[len - 1] == '\\') {
4970 --len;
4971 service[len] = '\0';
4975 if ( strlen(new_workgroup) != 0 ) {
4976 set_global_myworkgroup( new_workgroup );
4979 if ( strlen(calling_name) != 0 ) {
4980 set_global_myname( calling_name );
4981 } else {
4982 TALLOC_FREE(calling_name);
4983 calling_name = talloc_strdup(frame, global_myname() );
4986 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
4987 if (!init_names()) {
4988 fprintf(stderr, "init_names() failed\n");
4989 exit(1);
4992 if(new_name_resolve_order)
4993 lp_set_name_resolve_order(new_name_resolve_order);
4995 if (!tar_type && !query_host && !service && !message) {
4996 poptPrintUsage(pc, stderr, 0);
4997 exit(1);
5000 poptFreeContext(pc);
5002 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5004 /* Ensure we have a password (or equivalent). */
5005 set_cmdline_auth_info_getpass(auth_info);
5007 if (tar_type) {
5008 if (cmdstr)
5009 process_command_string(cmdstr);
5010 return do_tar_op(base_directory);
5013 if (query_host && *query_host) {
5014 char *qhost = query_host;
5015 char *slash;
5017 while (*qhost == '\\' || *qhost == '/')
5018 qhost++;
5020 if ((slash = strchr_m(qhost, '/'))
5021 || (slash = strchr_m(qhost, '\\'))) {
5022 *slash = 0;
5025 if ((p=strchr_m(qhost, '#'))) {
5026 *p = 0;
5027 p++;
5028 sscanf(p, "%x", &name_type);
5031 return do_host_query(qhost);
5034 if (message) {
5035 return do_message_op(auth_info);
5038 if (process(base_directory)) {
5039 return 1;
5042 TALLOC_FREE(frame);
5043 return rc;