source: trunk/server/source3/client/client.c@ 752

Last change on this file since 752 was 751, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.9

File size: 136.2 KB
Line 
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
9
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.
14
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.
19
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/>.
22*/
23
24#include "includes.h"
25#include "system/filesys.h"
26#include "popt_common.h"
27#include "rpc_client/cli_pipe.h"
28#include "client/client_proto.h"
29#include "../librpc/gen_ndr/ndr_srvsvc_c.h"
30#include "../lib/util/select.h"
31#include "system/readline.h"
32#include "../libcli/smbreadline/smbreadline.h"
33#include "../libcli/security/security.h"
34#include "system/select.h"
35#include "libsmb/libsmb.h"
36#include "libsmb/clirap.h"
37#include "trans2.h"
38#include "libsmb/nmblib.h"
39
40#ifndef REGISTER
41#define REGISTER 0
42#endif
43
44extern int do_smb_browse(void); /* mDNS browsing */
45
46extern bool override_logfile;
47extern char tar_type;
48
49static int port = 0;
50static char *service;
51static char *desthost;
52static char *calling_name;
53static bool grepable = false;
54static char *cmdstr = NULL;
55const char *cmd_ptr = NULL;
56
57static int io_bufsize = 524288;
58
59static int name_type = 0x20;
60static int max_protocol = PROTOCOL_NT1;
61
62static int process_tok(char *tok);
63static int cmd_help(void);
64
65#define CREATE_ACCESS_READ READ_CONTROL_ACCESS
66
67/* 30 second timeout on most commands */
68#define CLIENT_TIMEOUT (30*1000)
69#define SHORT_TIMEOUT (5*1000)
70
71/* value for unused fid field in trans2 secondary request */
72#define FID_UNUSED (0xFFFF)
73
74time_t newer_than = 0;
75static int archive_level = 0;
76
77static bool translation = false;
78static bool have_ip;
79
80/* clitar bits insert */
81extern int blocksize;
82extern bool tar_inc;
83extern bool tar_reset;
84/* clitar bits end */
85
86static bool prompt = true;
87
88static bool recurse = false;
89static bool showacls = false;
90bool lowercase = false;
91
92static struct sockaddr_storage dest_ss;
93static char dest_ss_str[INET6_ADDRSTRLEN];
94
95#define SEPARATORS " \t\n\r"
96
97static bool abort_mget = true;
98
99/* timing globals */
100uint64_t get_total_size = 0;
101unsigned int get_total_time_ms = 0;
102static uint64_t put_total_size = 0;
103static unsigned int put_total_time_ms = 0;
104
105/* totals globals */
106static double dir_total;
107
108/* encrypted state. */
109static bool smb_encrypt;
110
111/* root cli_state connection */
112
113struct cli_state *cli;
114
115static char CLI_DIRSEP_CHAR = '\\';
116static char CLI_DIRSEP_STR[] = { '\\', '\0' };
117
118/* Authentication for client connections. */
119struct user_auth_info *auth_info;
120
121/* Accessor functions for directory paths. */
122static char *fileselection;
123static const char *client_get_fileselection(void)
124{
125 if (fileselection) {
126 return fileselection;
127 }
128 return "";
129}
130
131static const char *client_set_fileselection(const char *new_fs)
132{
133 SAFE_FREE(fileselection);
134 if (new_fs) {
135 fileselection = SMB_STRDUP(new_fs);
136 }
137 return client_get_fileselection();
138}
139
140static char *cwd;
141static const char *client_get_cwd(void)
142{
143 if (cwd) {
144 return cwd;
145 }
146 return CLI_DIRSEP_STR;
147}
148
149static const char *client_set_cwd(const char *new_cwd)
150{
151 SAFE_FREE(cwd);
152 if (new_cwd) {
153 cwd = SMB_STRDUP(new_cwd);
154 }
155 return client_get_cwd();
156}
157
158static char *cur_dir;
159const char *client_get_cur_dir(void)
160{
161 if (cur_dir) {
162 return cur_dir;
163 }
164 return CLI_DIRSEP_STR;
165}
166
167const char *client_set_cur_dir(const char *newdir)
168{
169 SAFE_FREE(cur_dir);
170 if (newdir) {
171 cur_dir = SMB_STRDUP(newdir);
172 }
173 return client_get_cur_dir();
174}
175
176/****************************************************************************
177 Put up a yes/no prompt.
178****************************************************************************/
179
180static bool yesno(const char *p)
181{
182 char ans[20];
183 printf("%s",p);
184
185 if (!fgets(ans,sizeof(ans)-1,stdin))
186 return(False);
187
188 if (*ans == 'y' || *ans == 'Y')
189 return(True);
190
191 return(False);
192}
193
194/****************************************************************************
195 Write to a local file with CR/LF->LF translation if appropriate. Return the
196 number taken from the buffer. This may not equal the number written.
197****************************************************************************/
198
199static int writefile(int f, char *b, int n)
200{
201 int i;
202
203 if (!translation) {
204 return write(f,b,n);
205 }
206
207 i = 0;
208 while (i < n) {
209 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
210 b++;i++;
211 }
212 if (write(f, b, 1) != 1) {
213 break;
214 }
215 b++;
216 i++;
217 }
218
219 return(i);
220}
221
222/****************************************************************************
223 Read from a file with LF->CR/LF translation if appropriate. Return the
224 number read. read approx n bytes.
225****************************************************************************/
226
227static int readfile(uint8_t *b, int n, XFILE *f)
228{
229 int i;
230 int c;
231
232 if (!translation)
233 return x_fread(b,1,n,f);
234
235 i = 0;
236 while (i < (n - 1) && (i < BUFFER_SIZE)) {
237 if ((c = x_getc(f)) == EOF) {
238 break;
239 }
240
241 if (c == '\n') { /* change all LFs to CR/LF */
242 b[i++] = '\r';
243 }
244
245 b[i++] = c;
246 }
247
248 return(i);
249}
250
251struct push_state {
252 XFILE *f;
253 SMB_OFF_T nread;
254};
255
256static size_t push_source(uint8_t *buf, size_t n, void *priv)
257{
258 struct push_state *state = (struct push_state *)priv;
259 int result;
260
261 if (x_feof(state->f)) {
262 return 0;
263 }
264
265 result = readfile(buf, n, state->f);
266 state->nread += result;
267 return result;
268}
269
270/****************************************************************************
271 Send a message.
272****************************************************************************/
273
274static void send_message(const char *username)
275{
276 char buf[1600];
277 NTSTATUS status;
278 int i;
279
280 d_printf("Type your message, ending it with a Control-D\n");
281
282 i = 0;
283 while (i<sizeof(buf)-2) {
284 int c = fgetc(stdin);
285 if (c == EOF) {
286 break;
287 }
288 if (c == '\n') {
289 buf[i++] = '\r';
290 }
291 buf[i++] = c;
292 }
293 buf[i] = '\0';
294
295 status = cli_message(cli, desthost, username, buf);
296 if (!NT_STATUS_IS_OK(status)) {
297 d_fprintf(stderr, "cli_message returned %s\n",
298 nt_errstr(status));
299 }
300}
301
302/****************************************************************************
303 Check the space on a device.
304****************************************************************************/
305
306static int do_dskattr(void)
307{
308 int total, bsize, avail;
309 struct cli_state *targetcli = NULL;
310 char *targetpath = NULL;
311 TALLOC_CTX *ctx = talloc_tos();
312 NTSTATUS status;
313
314 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
315 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
316 return 1;
317 }
318
319 status = cli_dskattr(targetcli, &bsize, &total, &avail);
320 if (!NT_STATUS_IS_OK(status)) {
321 d_printf("Error in dskattr: %s\n", nt_errstr(status));
322 return 1;
323 }
324
325 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
326 total, bsize, avail);
327
328 return 0;
329}
330
331/****************************************************************************
332 Show cd/pwd.
333****************************************************************************/
334
335static int cmd_pwd(void)
336{
337 d_printf("Current directory is %s",service);
338 d_printf("%s\n",client_get_cur_dir());
339 return 0;
340}
341
342/****************************************************************************
343 Ensure name has correct directory separators.
344****************************************************************************/
345
346static void normalize_name(char *newdir)
347{
348 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
349 string_replace(newdir,'/','\\');
350 }
351}
352
353/****************************************************************************
354 Change directory - inner section.
355****************************************************************************/
356
357static int do_cd(const char *new_dir)
358{
359 char *newdir = NULL;
360 char *saved_dir = NULL;
361 char *new_cd = NULL;
362 char *targetpath = NULL;
363 struct cli_state *targetcli = NULL;
364 SMB_STRUCT_STAT sbuf;
365 uint32 attributes;
366 int ret = 1;
367 TALLOC_CTX *ctx = talloc_stackframe();
368
369 newdir = talloc_strdup(ctx, new_dir);
370 if (!newdir) {
371 TALLOC_FREE(ctx);
372 return 1;
373 }
374
375 normalize_name(newdir);
376
377 /* Save the current directory in case the new directory is invalid */
378
379 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
380 if (!saved_dir) {
381 TALLOC_FREE(ctx);
382 return 1;
383 }
384
385 if (*newdir == CLI_DIRSEP_CHAR) {
386 client_set_cur_dir(newdir);
387 new_cd = newdir;
388 } else {
389 new_cd = talloc_asprintf(ctx, "%s%s",
390 client_get_cur_dir(),
391 newdir);
392 if (!new_cd) {
393 goto out;
394 }
395 }
396
397 /* Ensure cur_dir ends in a DIRSEP */
398 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
399 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
400 if (!new_cd) {
401 goto out;
402 }
403 }
404 client_set_cur_dir(new_cd);
405
406 new_cd = clean_name(ctx, new_cd);
407 client_set_cur_dir(new_cd);
408
409 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
410 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
411 client_set_cur_dir(saved_dir);
412 goto out;
413 }
414
415 if (strequal(targetpath,CLI_DIRSEP_STR )) {
416 TALLOC_FREE(ctx);
417 return 0;
418 }
419
420 /* Use a trans2_qpathinfo to test directories for modern servers.
421 Except Win9x doesn't support the qpathinfo_basic() call..... */
422
423 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
424 NTSTATUS status;
425
426 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
427 &attributes);
428 if (!NT_STATUS_IS_OK(status)) {
429 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
430 client_set_cur_dir(saved_dir);
431 goto out;
432 }
433
434 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
435 d_printf("cd %s: not a directory\n", new_cd);
436 client_set_cur_dir(saved_dir);
437 goto out;
438 }
439 } else {
440 NTSTATUS status;
441
442 targetpath = talloc_asprintf(ctx,
443 "%s%s",
444 targetpath,
445 CLI_DIRSEP_STR );
446 if (!targetpath) {
447 client_set_cur_dir(saved_dir);
448 goto out;
449 }
450 targetpath = clean_name(ctx, targetpath);
451 if (!targetpath) {
452 client_set_cur_dir(saved_dir);
453 goto out;
454 }
455
456 status = cli_chkpath(targetcli, targetpath);
457 if (!NT_STATUS_IS_OK(status)) {
458 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
459 client_set_cur_dir(saved_dir);
460 goto out;
461 }
462 }
463
464 ret = 0;
465
466out:
467
468 TALLOC_FREE(ctx);
469 return ret;
470}
471
472/****************************************************************************
473 Change directory.
474****************************************************************************/
475
476static int cmd_cd(void)
477{
478 char *buf = NULL;
479 int rc = 0;
480
481 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
482 rc = do_cd(buf);
483 } else {
484 d_printf("Current directory is %s\n",client_get_cur_dir());
485 }
486
487 return rc;
488}
489
490/****************************************************************************
491 Change directory.
492****************************************************************************/
493
494static int cmd_cd_oneup(void)
495{
496 return do_cd("..");
497}
498
499/*******************************************************************
500 Decide if a file should be operated on.
501********************************************************************/
502
503static bool do_this_one(struct file_info *finfo)
504{
505 if (!finfo->name) {
506 return false;
507 }
508
509 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
510 return true;
511 }
512
513 if (*client_get_fileselection() &&
514 !mask_match(finfo->name,client_get_fileselection(),false)) {
515 DEBUG(3,("mask_match %s failed\n", finfo->name));
516 return false;
517 }
518
519 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
520 DEBUG(3,("newer_than %s failed\n", finfo->name));
521 return false;
522 }
523
524 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
525 DEBUG(3,("archive %s failed\n", finfo->name));
526 return false;
527 }
528
529 return true;
530}
531
532/****************************************************************************
533 Display info about a file.
534****************************************************************************/
535
536static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
537 const char *dir)
538{
539 time_t t;
540 TALLOC_CTX *ctx = talloc_tos();
541 NTSTATUS status = NT_STATUS_OK;
542
543 if (!do_this_one(finfo)) {
544 return NT_STATUS_OK;
545 }
546
547 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
548 if (!showacls) {
549 d_printf(" %-30s%7.7s %8.0f %s",
550 finfo->name,
551 attrib_string(finfo->mode),
552 (double)finfo->size,
553 time_to_asc(t));
554 dir_total += finfo->size;
555 } else {
556 char *afname = NULL;
557 uint16_t fnum;
558
559 /* skip if this is . or .. */
560 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
561 return NT_STATUS_OK;
562 /* create absolute filename for cli_ntcreate() FIXME */
563 afname = talloc_asprintf(ctx,
564 "%s%s%s",
565 dir,
566 CLI_DIRSEP_STR,
567 finfo->name);
568 if (!afname) {
569 return NT_STATUS_NO_MEMORY;
570 }
571 /* print file meta date header */
572 d_printf( "FILENAME:%s\n", finfo->name);
573 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
574 d_printf( "SIZE:%.0f\n", (double)finfo->size);
575 d_printf( "MTIME:%s", time_to_asc(t));
576 status = cli_ntcreate(cli_state, afname, 0,
577 CREATE_ACCESS_READ, 0,
578 FILE_SHARE_READ|FILE_SHARE_WRITE,
579 FILE_OPEN, 0x0, 0x0, &fnum);
580 if (!NT_STATUS_IS_OK(status)) {
581 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
582 afname, nt_errstr(status)));
583 } else {
584 struct security_descriptor *sd = NULL;
585 sd = cli_query_secdesc(cli_state, fnum, ctx);
586 if (!sd) {
587 DEBUG( 0, ("display_finfo() failed to "
588 "get security descriptor: %s",
589 cli_errstr(cli_state)));
590 status = cli_nt_error(cli_state);
591 } else {
592 display_sec_desc(sd);
593 }
594 TALLOC_FREE(sd);
595 }
596 TALLOC_FREE(afname);
597 }
598 return status;
599}
600
601/****************************************************************************
602 Accumulate size of a file.
603****************************************************************************/
604
605static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
606 const char *dir)
607{
608 if (do_this_one(finfo)) {
609 dir_total += finfo->size;
610 }
611 return NT_STATUS_OK;
612}
613
614static bool do_list_recurse;
615static bool do_list_dirs;
616static char *do_list_queue = 0;
617static long do_list_queue_size = 0;
618static long do_list_queue_start = 0;
619static long do_list_queue_end = 0;
620static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
621 const char *dir);
622
623/****************************************************************************
624 Functions for do_list_queue.
625****************************************************************************/
626
627/*
628 * The do_list_queue is a NUL-separated list of strings stored in a
629 * char*. Since this is a FIFO, we keep track of the beginning and
630 * ending locations of the data in the queue. When we overflow, we
631 * double the size of the char*. When the start of the data passes
632 * the midpoint, we move everything back. This is logically more
633 * complex than a linked list, but easier from a memory management
634 * angle. In any memory error condition, do_list_queue is reset.
635 * Functions check to ensure that do_list_queue is non-NULL before
636 * accessing it.
637 */
638
639static void reset_do_list_queue(void)
640{
641 SAFE_FREE(do_list_queue);
642 do_list_queue_size = 0;
643 do_list_queue_start = 0;
644 do_list_queue_end = 0;
645}
646
647static void init_do_list_queue(void)
648{
649 reset_do_list_queue();
650 do_list_queue_size = 1024;
651 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
652 if (do_list_queue == 0) {
653 d_printf("malloc fail for size %d\n",
654 (int)do_list_queue_size);
655 reset_do_list_queue();
656 } else {
657 memset(do_list_queue, 0, do_list_queue_size);
658 }
659}
660
661static void adjust_do_list_queue(void)
662{
663 /*
664 * If the starting point of the queue is more than half way through,
665 * move everything toward the beginning.
666 */
667
668 if (do_list_queue == NULL) {
669 DEBUG(4,("do_list_queue is empty\n"));
670 do_list_queue_start = do_list_queue_end = 0;
671 return;
672 }
673
674 if (do_list_queue_start == do_list_queue_end) {
675 DEBUG(4,("do_list_queue is empty\n"));
676 do_list_queue_start = do_list_queue_end = 0;
677 *do_list_queue = '\0';
678 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
679 DEBUG(4,("sliding do_list_queue backward\n"));
680 memmove(do_list_queue,
681 do_list_queue + do_list_queue_start,
682 do_list_queue_end - do_list_queue_start);
683 do_list_queue_end -= do_list_queue_start;
684 do_list_queue_start = 0;
685 }
686}
687
688static void add_to_do_list_queue(const char *entry)
689{
690 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
691 while (new_end > do_list_queue_size) {
692 do_list_queue_size *= 2;
693 DEBUG(4,("enlarging do_list_queue to %d\n",
694 (int)do_list_queue_size));
695 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
696 if (! do_list_queue) {
697 d_printf("failure enlarging do_list_queue to %d bytes\n",
698 (int)do_list_queue_size);
699 reset_do_list_queue();
700 } else {
701 memset(do_list_queue + do_list_queue_size / 2,
702 0, do_list_queue_size / 2);
703 }
704 }
705 if (do_list_queue) {
706 safe_strcpy_base(do_list_queue + do_list_queue_end,
707 entry, do_list_queue, do_list_queue_size);
708 do_list_queue_end = new_end;
709 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
710 entry, (int)do_list_queue_start, (int)do_list_queue_end));
711 }
712}
713
714static char *do_list_queue_head(void)
715{
716 return do_list_queue + do_list_queue_start;
717}
718
719static void remove_do_list_queue_head(void)
720{
721 if (do_list_queue_end > do_list_queue_start) {
722 do_list_queue_start += strlen(do_list_queue_head()) + 1;
723 adjust_do_list_queue();
724 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
725 (int)do_list_queue_start, (int)do_list_queue_end));
726 }
727}
728
729static int do_list_queue_empty(void)
730{
731 return (! (do_list_queue && *do_list_queue));
732}
733
734/****************************************************************************
735 A helper for do_list.
736****************************************************************************/
737
738static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
739 const char *mask, void *state)
740{
741 struct cli_state *cli_state = (struct cli_state *)state;
742 TALLOC_CTX *ctx = talloc_tos();
743 char *dir = NULL;
744 char *dir_end = NULL;
745 NTSTATUS status = NT_STATUS_OK;
746
747 /* Work out the directory. */
748 dir = talloc_strdup(ctx, mask);
749 if (!dir) {
750 return NT_STATUS_NO_MEMORY;
751 }
752 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
753 *dir_end = '\0';
754 }
755
756 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
757 if (do_list_dirs && do_this_one(f)) {
758 status = do_list_fn(cli_state, f, dir);
759 if (!NT_STATUS_IS_OK(status)) {
760 return status;
761 }
762 }
763 if (do_list_recurse &&
764 f->name &&
765 !strequal(f->name,".") &&
766 !strequal(f->name,"..")) {
767 char *mask2 = NULL;
768 char *p = NULL;
769
770 if (!f->name[0]) {
771 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
772 TALLOC_FREE(dir);
773 return NT_STATUS_UNSUCCESSFUL;
774 }
775
776 mask2 = talloc_asprintf(ctx,
777 "%s%s",
778 mntpoint,
779 mask);
780 if (!mask2) {
781 TALLOC_FREE(dir);
782 return NT_STATUS_NO_MEMORY;
783 }
784 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
785 if (p) {
786 p[1] = 0;
787 } else {
788 mask2[0] = '\0';
789 }
790 mask2 = talloc_asprintf_append(mask2,
791 "%s%s*",
792 f->name,
793 CLI_DIRSEP_STR);
794 if (!mask2) {
795 TALLOC_FREE(dir);
796 return NT_STATUS_NO_MEMORY;
797 }
798 add_to_do_list_queue(mask2);
799 TALLOC_FREE(mask2);
800 }
801 TALLOC_FREE(dir);
802 return NT_STATUS_OK;
803 }
804
805 if (do_this_one(f)) {
806 status = do_list_fn(cli_state, f, dir);
807 }
808 TALLOC_FREE(dir);
809 return status;
810}
811
812/****************************************************************************
813 A wrapper around cli_list that adds recursion.
814****************************************************************************/
815
816NTSTATUS do_list(const char *mask,
817 uint16 attribute,
818 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
819 const char *dir),
820 bool rec,
821 bool dirs)
822{
823 static int in_do_list = 0;
824 TALLOC_CTX *ctx = talloc_tos();
825 struct cli_state *targetcli = NULL;
826 char *targetpath = NULL;
827 NTSTATUS ret_status = NT_STATUS_OK;
828 NTSTATUS status = NT_STATUS_OK;
829
830 if (in_do_list && rec) {
831 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
832 exit(1);
833 }
834
835 in_do_list = 1;
836
837 do_list_recurse = rec;
838 do_list_dirs = dirs;
839 do_list_fn = fn;
840
841 if (rec) {
842 init_do_list_queue();
843 add_to_do_list_queue(mask);
844
845 while (!do_list_queue_empty()) {
846 /*
847 * Need to copy head so that it doesn't become
848 * invalid inside the call to cli_list. This
849 * would happen if the list were expanded
850 * during the call.
851 * Fix from E. Jay Berkenbilt (ejb@ql.org)
852 */
853 char *head = talloc_strdup(ctx, do_list_queue_head());
854
855 if (!head) {
856 return NT_STATUS_NO_MEMORY;
857 }
858
859 /* check for dfs */
860
861 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
862 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
863 remove_do_list_queue_head();
864 continue;
865 }
866
867 status = cli_list(targetcli, targetpath, attribute,
868 do_list_helper, targetcli);
869 if (!NT_STATUS_IS_OK(status)) {
870 d_printf("%s listing %s\n",
871 nt_errstr(status), targetpath);
872 ret_status = status;
873 }
874 remove_do_list_queue_head();
875 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
876 char *next_file = do_list_queue_head();
877 char *save_ch = 0;
878 if ((strlen(next_file) >= 2) &&
879 (next_file[strlen(next_file) - 1] == '*') &&
880 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
881 save_ch = next_file +
882 strlen(next_file) - 2;
883 *save_ch = '\0';
884 if (showacls) {
885 /* cwd is only used if showacls is on */
886 client_set_cwd(next_file);
887 }
888 }
889 if (!showacls) /* don't disturbe the showacls output */
890 d_printf("\n%s\n",next_file);
891 if (save_ch) {
892 *save_ch = CLI_DIRSEP_CHAR;
893 }
894 }
895 TALLOC_FREE(head);
896 TALLOC_FREE(targetpath);
897 }
898 } else {
899 /* check for dfs */
900 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
901
902 status = cli_list(targetcli, targetpath, attribute,
903 do_list_helper, targetcli);
904 if (!NT_STATUS_IS_OK(status)) {
905 d_printf("%s listing %s\n",
906 nt_errstr(status), targetpath);
907 ret_status = status;
908 }
909 TALLOC_FREE(targetpath);
910 } else {
911 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
912 ret_status = cli_nt_error(cli);
913 }
914 }
915
916 in_do_list = 0;
917 reset_do_list_queue();
918 return ret_status;
919}
920
921/****************************************************************************
922 Get a directory listing.
923****************************************************************************/
924
925static int cmd_dir(void)
926{
927 TALLOC_CTX *ctx = talloc_tos();
928 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
929 char *mask = NULL;
930 char *buf = NULL;
931 int rc = 1;
932 NTSTATUS status;
933
934 dir_total = 0;
935 mask = talloc_strdup(ctx, client_get_cur_dir());
936 if (!mask) {
937 return 1;
938 }
939
940 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
941 normalize_name(buf);
942 if (*buf == CLI_DIRSEP_CHAR) {
943 mask = talloc_strdup(ctx, buf);
944 } else {
945 mask = talloc_asprintf_append(mask, "%s", buf);
946 }
947 } else {
948 mask = talloc_asprintf_append(mask, "*");
949 }
950 if (!mask) {
951 return 1;
952 }
953
954 if (showacls) {
955 /* cwd is only used if showacls is on */
956 client_set_cwd(client_get_cur_dir());
957 }
958
959 status = do_list(mask, attribute, display_finfo, recurse, true);
960 if (!NT_STATUS_IS_OK(status)) {
961 return 1;
962 }
963
964 rc = do_dskattr();
965
966 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
967
968 return rc;
969}
970
971/****************************************************************************
972 Get a directory listing.
973****************************************************************************/
974
975static int cmd_du(void)
976{
977 TALLOC_CTX *ctx = talloc_tos();
978 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
979 char *mask = NULL;
980 char *buf = NULL;
981 NTSTATUS status;
982 int rc = 1;
983
984 dir_total = 0;
985 mask = talloc_strdup(ctx, client_get_cur_dir());
986 if (!mask) {
987 return 1;
988 }
989 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
990 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
991 if (!mask) {
992 return 1;
993 }
994 }
995
996 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
997 normalize_name(buf);
998 if (*buf == CLI_DIRSEP_CHAR) {
999 mask = talloc_strdup(ctx, buf);
1000 } else {
1001 mask = talloc_asprintf_append(mask, "%s", buf);
1002 }
1003 } else {
1004 mask = talloc_strdup(ctx, "*");
1005 }
1006
1007 status = do_list(mask, attribute, do_du, recurse, true);
1008 if (!NT_STATUS_IS_OK(status)) {
1009 return 1;
1010 }
1011
1012 rc = do_dskattr();
1013
1014 d_printf("Total number of bytes: %.0f\n", dir_total);
1015
1016 return rc;
1017}
1018
1019static int cmd_echo(void)
1020{
1021 TALLOC_CTX *ctx = talloc_tos();
1022 char *num;
1023 char *data;
1024 NTSTATUS status;
1025
1026 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1027 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1028 d_printf("echo <num> <data>\n");
1029 return 1;
1030 }
1031
1032 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1033
1034 if (!NT_STATUS_IS_OK(status)) {
1035 d_printf("echo failed: %s\n", nt_errstr(status));
1036 return 1;
1037 }
1038
1039 return 0;
1040}
1041
1042/****************************************************************************
1043 Get a file from rname to lname
1044****************************************************************************/
1045
1046static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1047{
1048 int *pfd = (int *)priv;
1049 if (writefile(*pfd, buf, n) == -1) {
1050 return map_nt_error_from_unix(errno);
1051 }
1052 return NT_STATUS_OK;
1053}
1054
1055static int do_get(const char *rname, const char *lname_in, bool reget)
1056{
1057 TALLOC_CTX *ctx = talloc_tos();
1058 int handle = 0;
1059 uint16_t fnum;
1060 bool newhandle = false;
1061 struct timespec tp_start;
1062 uint16 attr;
1063 SMB_OFF_T size;
1064 off_t start = 0;
1065 SMB_OFF_T nread = 0;
1066 int rc = 0;
1067 struct cli_state *targetcli = NULL;
1068 char *targetname = NULL;
1069 char *lname = NULL;
1070 NTSTATUS status;
1071
1072 lname = talloc_strdup(ctx, lname_in);
1073 if (!lname) {
1074 return 1;
1075 }
1076
1077 if (lowercase) {
1078 strlower_m(lname);
1079 }
1080
1081 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1082 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1083 return 1;
1084 }
1085
1086 clock_gettime_mono(&tp_start);
1087
1088 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1089 if (!NT_STATUS_IS_OK(status)) {
1090 d_printf("%s opening remote file %s\n", nt_errstr(status),
1091 rname);
1092 return 1;
1093 }
1094
1095 if(!strcmp(lname,"-")) {
1096 handle = fileno(stdout);
1097 } else {
1098 if (reget) {
1099 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1100 if (handle >= 0) {
1101 start = sys_lseek(handle, 0, SEEK_END);
1102 if (start == -1) {
1103 d_printf("Error seeking local file\n");
1104 return 1;
1105 }
1106 }
1107 } else {
1108 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1109 }
1110 newhandle = true;
1111 }
1112 if (handle < 0) {
1113 d_printf("Error opening local file %s\n",lname);
1114 return 1;
1115 }
1116
1117
1118 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1119 NULL, NULL, NULL);
1120 if (!NT_STATUS_IS_OK(status)) {
1121 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1122 NULL);
1123 if(!NT_STATUS_IS_OK(status)) {
1124 d_printf("getattrib: %s\n", nt_errstr(status));
1125 return 1;
1126 }
1127 }
1128
1129 DEBUG(1,("getting file %s of size %.0f as %s ",
1130 rname, (double)size, lname));
1131
1132 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1133 writefile_sink, (void *)&handle, &nread);
1134 if (!NT_STATUS_IS_OK(status)) {
1135 d_fprintf(stderr, "parallel_read returned %s\n",
1136 nt_errstr(status));
1137 cli_close(targetcli, fnum);
1138 return 1;
1139 }
1140
1141 status = cli_close(targetcli, fnum);
1142 if (!NT_STATUS_IS_OK(status)) {
1143 d_printf("Error %s closing remote file\n", nt_errstr(status));
1144 rc = 1;
1145 }
1146
1147 if (newhandle) {
1148 close(handle);
1149 }
1150
1151 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1152 cli_setatr(cli, rname, attr & ~(uint16)FILE_ATTRIBUTE_ARCHIVE, 0);
1153 }
1154
1155 {
1156 struct timespec tp_end;
1157 int this_time;
1158
1159 clock_gettime_mono(&tp_end);
1160 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1161 get_total_time_ms += this_time;
1162 get_total_size += nread;
1163
1164 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1165 nread / (1.024*this_time + 1.0e-4),
1166 get_total_size / (1.024*get_total_time_ms)));
1167 }
1168
1169 TALLOC_FREE(targetname);
1170 return rc;
1171}
1172
1173/****************************************************************************
1174 Get a file.
1175****************************************************************************/
1176
1177static int cmd_get(void)
1178{
1179 TALLOC_CTX *ctx = talloc_tos();
1180 char *lname = NULL;
1181 char *rname = NULL;
1182 char *fname = NULL;
1183
1184 rname = talloc_strdup(ctx, client_get_cur_dir());
1185 if (!rname) {
1186 return 1;
1187 }
1188
1189 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1190 d_printf("get <filename> [localname]\n");
1191 return 1;
1192 }
1193 rname = talloc_asprintf_append(rname, "%s", fname);
1194 if (!rname) {
1195 return 1;
1196 }
1197 rname = clean_name(ctx, rname);
1198 if (!rname) {
1199 return 1;
1200 }
1201
1202 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1203 if (!lname) {
1204 lname = fname;
1205 }
1206
1207 return do_get(rname, lname, false);
1208}
1209
1210/****************************************************************************
1211 Do an mget operation on one file.
1212****************************************************************************/
1213
1214static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1215 const char *dir)
1216{
1217 TALLOC_CTX *ctx = talloc_tos();
1218 NTSTATUS status = NT_STATUS_OK;
1219 char *rname = NULL;
1220 char *quest = NULL;
1221 char *saved_curdir = NULL;
1222 char *mget_mask = NULL;
1223 char *new_cd = NULL;
1224
1225 if (!finfo->name) {
1226 return NT_STATUS_OK;
1227 }
1228
1229 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1230 return NT_STATUS_OK;
1231
1232 if (abort_mget) {
1233 d_printf("mget aborted\n");
1234 return NT_STATUS_UNSUCCESSFUL;
1235 }
1236
1237 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1238 if (asprintf(&quest,
1239 "Get directory %s? ",finfo->name) < 0) {
1240 return NT_STATUS_NO_MEMORY;
1241 }
1242 } else {
1243 if (asprintf(&quest,
1244 "Get file %s? ",finfo->name) < 0) {
1245 return NT_STATUS_NO_MEMORY;
1246 }
1247 }
1248
1249 if (prompt && !yesno(quest)) {
1250 SAFE_FREE(quest);
1251 return NT_STATUS_OK;
1252 }
1253 SAFE_FREE(quest);
1254
1255 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1256 rname = talloc_asprintf(ctx,
1257 "%s%s",
1258 client_get_cur_dir(),
1259 finfo->name);
1260 if (!rname) {
1261 return NT_STATUS_NO_MEMORY;
1262 }
1263 do_get(rname, finfo->name, false);
1264 TALLOC_FREE(rname);
1265 return NT_STATUS_OK;
1266 }
1267
1268 /* handle directories */
1269 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1270 if (!saved_curdir) {
1271 return NT_STATUS_NO_MEMORY;
1272 }
1273
1274 new_cd = talloc_asprintf(ctx,
1275 "%s%s%s",
1276 client_get_cur_dir(),
1277 finfo->name,
1278 CLI_DIRSEP_STR);
1279 if (!new_cd) {
1280 return NT_STATUS_NO_MEMORY;
1281 }
1282 client_set_cur_dir(new_cd);
1283
1284 string_replace(finfo->name,'\\','/');
1285 if (lowercase) {
1286 strlower_m(finfo->name);
1287 }
1288
1289 if (!directory_exist(finfo->name) &&
1290 mkdir(finfo->name,0777) != 0) {
1291 d_printf("failed to create directory %s\n",finfo->name);
1292 client_set_cur_dir(saved_curdir);
1293 return map_nt_error_from_unix(errno);
1294 }
1295
1296 if (chdir(finfo->name) != 0) {
1297 d_printf("failed to chdir to directory %s\n",finfo->name);
1298 client_set_cur_dir(saved_curdir);
1299 return map_nt_error_from_unix(errno);
1300 }
1301
1302 mget_mask = talloc_asprintf(ctx,
1303 "%s*",
1304 client_get_cur_dir());
1305
1306 if (!mget_mask) {
1307 return NT_STATUS_NO_MEMORY;
1308 }
1309
1310 status = do_list(mget_mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,do_mget,false, true);
1311 if (!NT_STATUS_IS_OK(status)) {
1312 return status;
1313 }
1314
1315 if (chdir("..") == -1) {
1316 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1317 strerror(errno) );
1318 return map_nt_error_from_unix(errno);
1319 }
1320 client_set_cur_dir(saved_curdir);
1321 TALLOC_FREE(mget_mask);
1322 TALLOC_FREE(saved_curdir);
1323 TALLOC_FREE(new_cd);
1324 return NT_STATUS_OK;
1325}
1326
1327/****************************************************************************
1328 View the file using the pager.
1329****************************************************************************/
1330
1331static int cmd_more(void)
1332{
1333 TALLOC_CTX *ctx = talloc_tos();
1334 char *rname = NULL;
1335 char *fname = NULL;
1336 char *lname = NULL;
1337 char *pager_cmd = NULL;
1338 const char *pager;
1339 int fd;
1340 int rc = 0;
1341
1342 rname = talloc_strdup(ctx, client_get_cur_dir());
1343 if (!rname) {
1344 return 1;
1345 }
1346
1347 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1348 if (!lname) {
1349 return 1;
1350 }
1351 fd = mkstemp(lname);
1352 if (fd == -1) {
1353 d_printf("failed to create temporary file for more\n");
1354 return 1;
1355 }
1356 close(fd);
1357
1358 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1359 d_printf("more <filename>\n");
1360 unlink(lname);
1361 return 1;
1362 }
1363 rname = talloc_asprintf_append(rname, "%s", fname);
1364 if (!rname) {
1365 return 1;
1366 }
1367 rname = clean_name(ctx,rname);
1368 if (!rname) {
1369 return 1;
1370 }
1371
1372 rc = do_get(rname, lname, false);
1373
1374 pager=getenv("PAGER");
1375
1376 pager_cmd = talloc_asprintf(ctx,
1377 "%s %s",
1378 (pager? pager:PAGER),
1379 lname);
1380 if (!pager_cmd) {
1381 return 1;
1382 }
1383 if (system(pager_cmd) == -1) {
1384 d_printf("system command '%s' returned -1\n",
1385 pager_cmd);
1386 }
1387 unlink(lname);
1388
1389 return rc;
1390}
1391
1392/****************************************************************************
1393 Do a mget command.
1394****************************************************************************/
1395
1396static int cmd_mget(void)
1397{
1398 TALLOC_CTX *ctx = talloc_tos();
1399 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1400 char *mget_mask = NULL;
1401 char *buf = NULL;
1402 NTSTATUS status = NT_STATUS_OK;
1403
1404 if (recurse) {
1405 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1406 }
1407
1408 abort_mget = false;
1409
1410 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1411
1412 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1413 if (!mget_mask) {
1414 return 1;
1415 }
1416 if (*buf == CLI_DIRSEP_CHAR) {
1417 mget_mask = talloc_strdup(ctx, buf);
1418 } else {
1419 mget_mask = talloc_asprintf_append(mget_mask,
1420 "%s", buf);
1421 }
1422 if (!mget_mask) {
1423 return 1;
1424 }
1425 status = do_list(mget_mask, attribute, do_mget, false, true);
1426 if (!NT_STATUS_IS_OK(status)) {
1427 return 1;
1428 }
1429 }
1430
1431 if (mget_mask == NULL) {
1432 d_printf("nothing to mget\n");
1433 return 0;
1434 }
1435
1436 if (!*mget_mask) {
1437 mget_mask = talloc_asprintf(ctx,
1438 "%s*",
1439 client_get_cur_dir());
1440 if (!mget_mask) {
1441 return 1;
1442 }
1443 status = do_list(mget_mask, attribute, do_mget, false, true);
1444 if (!NT_STATUS_IS_OK(status)) {
1445 return 1;
1446 }
1447 }
1448
1449 return 0;
1450}
1451
1452/****************************************************************************
1453 Make a directory of name "name".
1454****************************************************************************/
1455
1456static bool do_mkdir(const char *name)
1457{
1458 TALLOC_CTX *ctx = talloc_tos();
1459 struct cli_state *targetcli;
1460 char *targetname = NULL;
1461 NTSTATUS status;
1462
1463 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1464 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1465 return false;
1466 }
1467
1468 status = cli_mkdir(targetcli, targetname);
1469 if (!NT_STATUS_IS_OK(status)) {
1470 d_printf("%s making remote directory %s\n",
1471 nt_errstr(status),name);
1472 return false;
1473 }
1474
1475 return true;
1476}
1477
1478/****************************************************************************
1479 Show 8.3 name of a file.
1480****************************************************************************/
1481
1482static bool do_altname(const char *name)
1483{
1484 fstring altname;
1485 NTSTATUS status;
1486
1487 status = cli_qpathinfo_alt_name(cli, name, altname);
1488 if (!NT_STATUS_IS_OK(status)) {
1489 d_printf("%s getting alt name for %s\n",
1490 nt_errstr(status),name);
1491 return false;
1492 }
1493 d_printf("%s\n", altname);
1494
1495 return true;
1496}
1497
1498/****************************************************************************
1499 Exit client.
1500****************************************************************************/
1501
1502static int cmd_quit(void)
1503{
1504 cli_shutdown(cli);
1505 exit(0);
1506 /* NOTREACHED */
1507 return 0;
1508}
1509
1510/****************************************************************************
1511 Make a directory.
1512****************************************************************************/
1513
1514static int cmd_mkdir(void)
1515{
1516 TALLOC_CTX *ctx = talloc_tos();
1517 char *mask = NULL;
1518 char *buf = NULL;
1519
1520 mask = talloc_strdup(ctx, client_get_cur_dir());
1521 if (!mask) {
1522 return 1;
1523 }
1524
1525 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1526 if (!recurse) {
1527 d_printf("mkdir <dirname>\n");
1528 }
1529 return 1;
1530 }
1531 mask = talloc_asprintf_append(mask, "%s", buf);
1532 if (!mask) {
1533 return 1;
1534 }
1535
1536 if (recurse) {
1537 char *ddir = NULL;
1538 char *ddir2 = NULL;
1539 struct cli_state *targetcli;
1540 char *targetname = NULL;
1541 char *p = NULL;
1542 char *saveptr;
1543
1544 ddir2 = talloc_strdup(ctx, "");
1545 if (!ddir2) {
1546 return 1;
1547 }
1548
1549 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1550 return 1;
1551 }
1552
1553 ddir = talloc_strdup(ctx, targetname);
1554 if (!ddir) {
1555 return 1;
1556 }
1557 trim_char(ddir,'.','\0');
1558 p = strtok_r(ddir, "/\\", &saveptr);
1559 while (p) {
1560 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1561 if (!ddir2) {
1562 return 1;
1563 }
1564 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1565 do_mkdir(ddir2);
1566 }
1567 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1568 if (!ddir2) {
1569 return 1;
1570 }
1571 p = strtok_r(NULL, "/\\", &saveptr);
1572 }
1573 } else {
1574 do_mkdir(mask);
1575 }
1576
1577 return 0;
1578}
1579
1580/****************************************************************************
1581 Show alt name.
1582****************************************************************************/
1583
1584static int cmd_altname(void)
1585{
1586 TALLOC_CTX *ctx = talloc_tos();
1587 char *name;
1588 char *buf;
1589
1590 name = talloc_strdup(ctx, client_get_cur_dir());
1591 if (!name) {
1592 return 1;
1593 }
1594
1595 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1596 d_printf("altname <file>\n");
1597 return 1;
1598 }
1599 name = talloc_asprintf_append(name, "%s", buf);
1600 if (!name) {
1601 return 1;
1602 }
1603 do_altname(name);
1604 return 0;
1605}
1606
1607static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1608{
1609 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1610 int i = 0;
1611
1612 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1613 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1614 attrs[i++] = 'E';
1615 }
1616 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1617 attrs[i++] = 'N';
1618 }
1619 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1620 attrs[i++] = 'O';
1621 }
1622 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1623 attrs[i++] = 'C';
1624 }
1625 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1626 attrs[i++] = 'r';
1627 }
1628 if (mode & FILE_ATTRIBUTE_SPARSE) {
1629 attrs[i++] = 's';
1630 }
1631 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1632 attrs[i++] = 'T';
1633 }
1634 if (mode & FILE_ATTRIBUTE_NORMAL) {
1635 attrs[i++] = 'N';
1636 }
1637 if (mode & FILE_ATTRIBUTE_READONLY) {
1638 attrs[i++] = 'R';
1639 }
1640 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1641 attrs[i++] = 'H';
1642 }
1643 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1644 attrs[i++] = 'S';
1645 }
1646 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1647 attrs[i++] = 'D';
1648 }
1649 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1650 attrs[i++] = 'A';
1651 }
1652 }
1653 return attrs;
1654}
1655
1656/****************************************************************************
1657 Show all info we can get
1658****************************************************************************/
1659
1660static int do_allinfo(const char *name)
1661{
1662 fstring altname;
1663 struct timespec b_time, a_time, m_time, c_time;
1664 SMB_OFF_T size;
1665 uint16_t mode;
1666 SMB_INO_T ino;
1667 NTTIME tmp;
1668 uint16_t fnum;
1669 unsigned int num_streams;
1670 struct stream_struct *streams;
1671 int num_snapshots;
1672 char **snapshots;
1673 unsigned int i;
1674 NTSTATUS status;
1675
1676 status = cli_qpathinfo_alt_name(cli, name, altname);
1677 if (!NT_STATUS_IS_OK(status)) {
1678 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1679 name);
1680 return false;
1681 }
1682 d_printf("altname: %s\n", altname);
1683
1684 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1685 &size, &mode, &ino);
1686 if (!NT_STATUS_IS_OK(status)) {
1687 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1688 name);
1689 return false;
1690 }
1691
1692 unix_timespec_to_nt_time(&tmp, b_time);
1693 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1694
1695 unix_timespec_to_nt_time(&tmp, a_time);
1696 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1697
1698 unix_timespec_to_nt_time(&tmp, m_time);
1699 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1700
1701 unix_timespec_to_nt_time(&tmp, c_time);
1702 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1703
1704 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1705
1706 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1707 &streams);
1708 if (!NT_STATUS_IS_OK(status)) {
1709 d_printf("%s getting streams for %s\n", nt_errstr(status),
1710 name);
1711 return false;
1712 }
1713
1714 for (i=0; i<num_streams; i++) {
1715 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1716 (unsigned long long)streams[i].size);
1717 }
1718
1719 status = cli_ntcreate(cli, name, 0,
1720 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1721 SEC_STD_SYNCHRONIZE, 0,
1722 FILE_SHARE_READ|FILE_SHARE_WRITE
1723 |FILE_SHARE_DELETE,
1724 FILE_OPEN, 0x0, 0x0, &fnum);
1725 if (!NT_STATUS_IS_OK(status)) {
1726 /*
1727 * Ignore failure, it does not hurt if we can't list
1728 * snapshots
1729 */
1730 return 0;
1731 }
1732 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1733 true, &snapshots, &num_snapshots);
1734 if (!NT_STATUS_IS_OK(status)) {
1735 cli_close(cli, fnum);
1736 return 0;
1737 }
1738
1739 for (i=0; i<num_snapshots; i++) {
1740 char *snap_name;
1741
1742 d_printf("%s\n", snapshots[i]);
1743 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1744 snapshots[i], name);
1745 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1746 &m_time, &c_time, &size,
1747 NULL, NULL);
1748 if (!NT_STATUS_IS_OK(status)) {
1749 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1750 snap_name, nt_errstr(status));
1751 TALLOC_FREE(snap_name);
1752 continue;
1753 }
1754 unix_timespec_to_nt_time(&tmp, b_time);
1755 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1756 unix_timespec_to_nt_time(&tmp, a_time);
1757 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1758 unix_timespec_to_nt_time(&tmp, m_time);
1759 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1760 unix_timespec_to_nt_time(&tmp, c_time);
1761 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1762 d_printf("size: %d\n", (int)size);
1763 }
1764
1765 TALLOC_FREE(snapshots);
1766
1767 return 0;
1768}
1769
1770/****************************************************************************
1771 Show all info we can get
1772****************************************************************************/
1773
1774static int cmd_allinfo(void)
1775{
1776 TALLOC_CTX *ctx = talloc_tos();
1777 char *name;
1778 char *buf;
1779
1780 name = talloc_strdup(ctx, client_get_cur_dir());
1781 if (!name) {
1782 return 1;
1783 }
1784
1785 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1786 d_printf("allinfo <file>\n");
1787 return 1;
1788 }
1789 name = talloc_asprintf_append(name, "%s", buf);
1790 if (!name) {
1791 return 1;
1792 }
1793
1794 do_allinfo(name);
1795
1796 return 0;
1797}
1798
1799/****************************************************************************
1800 Put a single file.
1801****************************************************************************/
1802
1803static int do_put(const char *rname, const char *lname, bool reput)
1804{
1805 TALLOC_CTX *ctx = talloc_tos();
1806 uint16_t fnum;
1807 XFILE *f;
1808 SMB_OFF_T start = 0;
1809 int rc = 0;
1810 struct timespec tp_start;
1811 struct cli_state *targetcli;
1812 char *targetname = NULL;
1813 struct push_state state;
1814 NTSTATUS status;
1815
1816 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1817 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1818 return 1;
1819 }
1820
1821 clock_gettime_mono(&tp_start);
1822
1823 if (reput) {
1824 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1825 if (NT_STATUS_IS_OK(status)) {
1826 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1827 targetcli, fnum, NULL,
1828 &start, NULL, NULL,
1829 NULL, NULL, NULL)) &&
1830 !NT_STATUS_IS_OK(status = cli_getattrE(
1831 targetcli, fnum, NULL,
1832 &start, NULL, NULL,
1833 NULL))) {
1834 d_printf("getattrib: %s\n", nt_errstr(status));
1835 return 1;
1836 }
1837 }
1838 } else {
1839 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1840 }
1841
1842 if (!NT_STATUS_IS_OK(status)) {
1843 d_printf("%s opening remote file %s\n", nt_errstr(status),
1844 rname);
1845 return 1;
1846 }
1847
1848 /* allow files to be piped into smbclient
1849 jdblair 24.jun.98
1850
1851 Note that in this case this function will exit(0) rather
1852 than returning. */
1853 if (!strcmp(lname, "-")) {
1854 f = x_stdin;
1855 /* size of file is not known */
1856 } else {
1857 f = x_fopen(lname,O_RDONLY, 0);
1858 if (f && reput) {
1859 if (x_tseek(f, start, SEEK_SET) == -1) {
1860 d_printf("Error seeking local file\n");
1861 x_fclose(f);
1862 return 1;
1863 }
1864 }
1865 }
1866
1867 if (!f) {
1868 d_printf("Error opening local file %s\n",lname);
1869 return 1;
1870 }
1871
1872 DEBUG(1,("putting file %s as %s ",lname,
1873 rname));
1874
1875 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1876
1877 state.f = f;
1878 state.nread = 0;
1879
1880 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1881 &state);
1882 if (!NT_STATUS_IS_OK(status)) {
1883 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1884 rc = 1;
1885 }
1886
1887 status = cli_close(targetcli, fnum);
1888 if (!NT_STATUS_IS_OK(status)) {
1889 d_printf("%s closing remote file %s\n", nt_errstr(status),
1890 rname);
1891 if (f != x_stdin) {
1892 x_fclose(f);
1893 }
1894 return 1;
1895 }
1896
1897 if (f != x_stdin) {
1898 x_fclose(f);
1899 }
1900
1901 {
1902 struct timespec tp_end;
1903 int this_time;
1904
1905 clock_gettime_mono(&tp_end);
1906 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1907 put_total_time_ms += this_time;
1908 put_total_size += state.nread;
1909
1910 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1911 state.nread / (1.024*this_time + 1.0e-4),
1912 put_total_size / (1.024*put_total_time_ms)));
1913 }
1914
1915 if (f == x_stdin) {
1916 cli_shutdown(cli);
1917 exit(rc);
1918 }
1919
1920 return rc;
1921}
1922
1923/****************************************************************************
1924 Put a file.
1925****************************************************************************/
1926
1927static int cmd_put(void)
1928{
1929 TALLOC_CTX *ctx = talloc_tos();
1930 char *lname;
1931 char *rname;
1932 char *buf;
1933
1934 rname = talloc_strdup(ctx, client_get_cur_dir());
1935 if (!rname) {
1936 return 1;
1937 }
1938
1939 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1940 d_printf("put <filename>\n");
1941 return 1;
1942 }
1943
1944 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1945 rname = talloc_asprintf_append(rname, "%s", buf);
1946 } else {
1947 rname = talloc_asprintf_append(rname, "%s", lname);
1948 }
1949 if (!rname) {
1950 return 1;
1951 }
1952
1953 rname = clean_name(ctx, rname);
1954 if (!rname) {
1955 return 1;
1956 }
1957
1958 {
1959 SMB_STRUCT_STAT st;
1960 /* allow '-' to represent stdin
1961 jdblair, 24.jun.98 */
1962 if (!file_exist_stat(lname, &st, false) &&
1963 (strcmp(lname,"-"))) {
1964 d_printf("%s does not exist\n",lname);
1965 return 1;
1966 }
1967 }
1968
1969 return do_put(rname, lname, false);
1970}
1971
1972/*************************************
1973 File list structure.
1974*************************************/
1975
1976static struct file_list {
1977 struct file_list *prev, *next;
1978 char *file_path;
1979 bool isdir;
1980} *file_list;
1981
1982/****************************************************************************
1983 Free a file_list structure.
1984****************************************************************************/
1985
1986static void free_file_list (struct file_list *l_head)
1987{
1988 struct file_list *list, *next;
1989
1990 for (list = l_head; list; list = next) {
1991 next = list->next;
1992 DLIST_REMOVE(l_head, list);
1993 SAFE_FREE(list->file_path);
1994 SAFE_FREE(list);
1995 }
1996}
1997
1998/****************************************************************************
1999 Seek in a directory/file list until you get something that doesn't start with
2000 the specified name.
2001****************************************************************************/
2002
2003static bool seek_list(struct file_list *list, char *name)
2004{
2005 while (list) {
2006 trim_string(list->file_path,"./","\n");
2007 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2008 return true;
2009 }
2010 list = list->next;
2011 }
2012
2013 return false;
2014}
2015
2016/****************************************************************************
2017 Set the file selection mask.
2018****************************************************************************/
2019
2020static int cmd_select(void)
2021{
2022 TALLOC_CTX *ctx = talloc_tos();
2023 char *new_fs = NULL;
2024 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2025 ;
2026 if (new_fs) {
2027 client_set_fileselection(new_fs);
2028 } else {
2029 client_set_fileselection("");
2030 }
2031 return 0;
2032}
2033
2034/****************************************************************************
2035 Recursive file matching function act as find
2036 match must be always set to true when calling this function
2037****************************************************************************/
2038
2039static int file_find(struct file_list **list, const char *directory,
2040 const char *expression, bool match)
2041{
2042 SMB_STRUCT_DIR *dir;
2043 struct file_list *entry;
2044 struct stat statbuf;
2045 int ret;
2046 char *path;
2047 bool isdir;
2048 const char *dname;
2049
2050 dir = sys_opendir(directory);
2051 if (!dir)
2052 return -1;
2053
2054 while ((dname = readdirname(dir))) {
2055 if (!strcmp("..", dname))
2056 continue;
2057 if (!strcmp(".", dname))
2058 continue;
2059
2060 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2061 continue;
2062 }
2063
2064 isdir = false;
2065 if (!match || !gen_fnmatch(expression, dname)) {
2066 if (recurse) {
2067 ret = stat(path, &statbuf);
2068 if (ret == 0) {
2069 if (S_ISDIR(statbuf.st_mode)) {
2070 isdir = true;
2071 ret = file_find(list, path, expression, false);
2072 }
2073 } else {
2074 d_printf("file_find: cannot stat file %s\n", path);
2075 }
2076
2077 if (ret == -1) {
2078 SAFE_FREE(path);
2079 sys_closedir(dir);
2080 return -1;
2081 }
2082 }
2083 entry = SMB_MALLOC_P(struct file_list);
2084 if (!entry) {
2085 d_printf("Out of memory in file_find\n");
2086 sys_closedir(dir);
2087 return -1;
2088 }
2089 entry->file_path = path;
2090 entry->isdir = isdir;
2091 DLIST_ADD(*list, entry);
2092 } else {
2093 SAFE_FREE(path);
2094 }
2095 }
2096
2097 sys_closedir(dir);
2098 return 0;
2099}
2100
2101/****************************************************************************
2102 mput some files.
2103****************************************************************************/
2104
2105static int cmd_mput(void)
2106{
2107 TALLOC_CTX *ctx = talloc_tos();
2108 char *p = NULL;
2109
2110 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2111 int ret;
2112 struct file_list *temp_list;
2113 char *quest, *lname, *rname;
2114
2115 file_list = NULL;
2116
2117 ret = file_find(&file_list, ".", p, true);
2118 if (ret) {
2119 free_file_list(file_list);
2120 continue;
2121 }
2122
2123 quest = NULL;
2124 lname = NULL;
2125 rname = NULL;
2126
2127 for (temp_list = file_list; temp_list;
2128 temp_list = temp_list->next) {
2129
2130 SAFE_FREE(lname);
2131 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2132 continue;
2133 }
2134 trim_string(lname, "./", "/");
2135
2136 /* check if it's a directory */
2137 if (temp_list->isdir) {
2138 /* if (!recurse) continue; */
2139
2140 SAFE_FREE(quest);
2141 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2142 break;
2143 }
2144 if (prompt && !yesno(quest)) { /* No */
2145 /* Skip the directory */
2146 lname[strlen(lname)-1] = '/';
2147 if (!seek_list(temp_list, lname))
2148 break;
2149 } else { /* Yes */
2150 SAFE_FREE(rname);
2151 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2152 break;
2153 }
2154 normalize_name(rname);
2155 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2156 !do_mkdir(rname)) {
2157 DEBUG (0, ("Unable to make dir, skipping..."));
2158 /* Skip the directory */
2159 lname[strlen(lname)-1] = '/';
2160 if (!seek_list(temp_list, lname)) {
2161 break;
2162 }
2163 }
2164 }
2165 continue;
2166 } else {
2167 SAFE_FREE(quest);
2168 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2169 break;
2170 }
2171 if (prompt && !yesno(quest)) {
2172 /* No */
2173 continue;
2174 }
2175
2176 /* Yes */
2177 SAFE_FREE(rname);
2178 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2179 break;
2180 }
2181 }
2182
2183 normalize_name(rname);
2184
2185 do_put(rname, lname, false);
2186 }
2187 free_file_list(file_list);
2188 SAFE_FREE(quest);
2189 SAFE_FREE(lname);
2190 SAFE_FREE(rname);
2191 }
2192
2193 return 0;
2194}
2195
2196/****************************************************************************
2197 Cancel a print job.
2198****************************************************************************/
2199
2200static int do_cancel(int job)
2201{
2202 if (cli_printjob_del(cli, job)) {
2203 d_printf("Job %d cancelled\n",job);
2204 return 0;
2205 } else {
2206 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2207 return 1;
2208 }
2209}
2210
2211/****************************************************************************
2212 Cancel a print job.
2213****************************************************************************/
2214
2215static int cmd_cancel(void)
2216{
2217 TALLOC_CTX *ctx = talloc_tos();
2218 char *buf = NULL;
2219 int job;
2220
2221 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2222 d_printf("cancel <jobid> ...\n");
2223 return 1;
2224 }
2225 do {
2226 job = atoi(buf);
2227 do_cancel(job);
2228 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2229
2230 return 0;
2231}
2232
2233/****************************************************************************
2234 Print a file.
2235****************************************************************************/
2236
2237static int cmd_print(void)
2238{
2239 TALLOC_CTX *ctx = talloc_tos();
2240 char *lname = NULL;
2241 char *rname = NULL;
2242 char *p = NULL;
2243
2244 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2245 d_printf("print <filename>\n");
2246 return 1;
2247 }
2248
2249 rname = talloc_strdup(ctx, lname);
2250 if (!rname) {
2251 return 1;
2252 }
2253 p = strrchr_m(rname,'/');
2254 if (p) {
2255 rname = talloc_asprintf(ctx,
2256 "%s-%d",
2257 p+1,
2258 (int)sys_getpid());
2259 }
2260 if (strequal(lname,"-")) {
2261 rname = talloc_asprintf(ctx,
2262 "stdin-%d",
2263 (int)sys_getpid());
2264 }
2265 if (!rname) {
2266 return 1;
2267 }
2268
2269 return do_put(rname, lname, false);
2270}
2271
2272/****************************************************************************
2273 Show a print queue entry.
2274****************************************************************************/
2275
2276static void queue_fn(struct print_job_info *p)
2277{
2278 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2279}
2280
2281/****************************************************************************
2282 Show a print queue.
2283****************************************************************************/
2284
2285static int cmd_queue(void)
2286{
2287 cli_print_queue(cli, queue_fn);
2288 return 0;
2289}
2290
2291/****************************************************************************
2292 Delete some files.
2293****************************************************************************/
2294
2295static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2296 const char *dir)
2297{
2298 TALLOC_CTX *ctx = talloc_tos();
2299 char *mask = NULL;
2300 NTSTATUS status;
2301
2302 mask = talloc_asprintf(ctx,
2303 "%s%c%s",
2304 dir,
2305 CLI_DIRSEP_CHAR,
2306 finfo->name);
2307 if (!mask) {
2308 return NT_STATUS_NO_MEMORY;
2309 }
2310
2311 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2312 TALLOC_FREE(mask);
2313 return NT_STATUS_OK;
2314 }
2315
2316 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2317 if (!NT_STATUS_IS_OK(status)) {
2318 d_printf("%s deleting remote file %s\n",
2319 nt_errstr(status), mask);
2320 }
2321 TALLOC_FREE(mask);
2322 return status;
2323}
2324
2325/****************************************************************************
2326 Delete some files.
2327****************************************************************************/
2328
2329static int cmd_del(void)
2330{
2331 TALLOC_CTX *ctx = talloc_tos();
2332 char *mask = NULL;
2333 char *buf = NULL;
2334 NTSTATUS status = NT_STATUS_OK;
2335 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2336
2337 if (recurse) {
2338 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2339 }
2340
2341 mask = talloc_strdup(ctx, client_get_cur_dir());
2342 if (!mask) {
2343 return 1;
2344 }
2345 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2346 d_printf("del <filename>\n");
2347 return 1;
2348 }
2349 mask = talloc_asprintf_append(mask, "%s", buf);
2350 if (!mask) {
2351 return 1;
2352 }
2353
2354 status = do_list(mask,attribute,do_del,false,false);
2355 if (!NT_STATUS_IS_OK(status)) {
2356 return 1;
2357 }
2358 return 0;
2359}
2360
2361/****************************************************************************
2362 Wildcard delete some files.
2363****************************************************************************/
2364
2365static int cmd_wdel(void)
2366{
2367 TALLOC_CTX *ctx = talloc_tos();
2368 char *mask = NULL;
2369 char *buf = NULL;
2370 uint16 attribute;
2371 struct cli_state *targetcli;
2372 char *targetname = NULL;
2373 NTSTATUS status;
2374
2375 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2376 d_printf("wdel 0x<attrib> <wcard>\n");
2377 return 1;
2378 }
2379
2380 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2381
2382 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2383 d_printf("wdel 0x<attrib> <wcard>\n");
2384 return 1;
2385 }
2386
2387 mask = talloc_asprintf(ctx, "%s%s",
2388 client_get_cur_dir(),
2389 buf);
2390 if (!mask) {
2391 return 1;
2392 }
2393
2394 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2395 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2396 return 1;
2397 }
2398
2399 status = cli_unlink(targetcli, targetname, attribute);
2400 if (!NT_STATUS_IS_OK(status)) {
2401 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2402 targetname);
2403 }
2404 return 0;
2405}
2406
2407/****************************************************************************
2408****************************************************************************/
2409
2410static int cmd_open(void)
2411{
2412 TALLOC_CTX *ctx = talloc_tos();
2413 char *mask = NULL;
2414 char *buf = NULL;
2415 char *targetname = NULL;
2416 struct cli_state *targetcli;
2417 uint16_t fnum = (uint16_t)-1;
2418
2419 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2420 d_printf("open <filename>\n");
2421 return 1;
2422 }
2423 mask = talloc_asprintf(ctx,
2424 "%s%s",
2425 client_get_cur_dir(),
2426 buf);
2427 if (!mask) {
2428 return 1;
2429 }
2430
2431 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2432 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2433 return 1;
2434 }
2435
2436 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2437 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2438 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2439 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2440 FILE_READ_DATA, 0,
2441 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2442 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2443 } else {
2444 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2445 }
2446 } else {
2447 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2448 }
2449 return 0;
2450}
2451
2452static int cmd_posix_encrypt(void)
2453{
2454 TALLOC_CTX *ctx = talloc_tos();
2455 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2456
2457 if (cli->use_kerberos) {
2458 status = cli_gss_smb_encryption_start(cli);
2459 } else {
2460 char *domain = NULL;
2461 char *user = NULL;
2462 char *password = NULL;
2463
2464 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2465 d_printf("posix_encrypt domain user password\n");
2466 return 1;
2467 }
2468
2469 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2470 d_printf("posix_encrypt domain user password\n");
2471 return 1;
2472 }
2473
2474 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2475 d_printf("posix_encrypt domain user password\n");
2476 return 1;
2477 }
2478
2479 status = cli_raw_ntlm_smb_encryption_start(cli,
2480 user,
2481 password,
2482 domain);
2483 }
2484
2485 if (!NT_STATUS_IS_OK(status)) {
2486 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2487 } else {
2488 d_printf("encryption on\n");
2489 smb_encrypt = true;
2490 }
2491
2492 return 0;
2493}
2494
2495/****************************************************************************
2496****************************************************************************/
2497
2498static int cmd_posix_open(void)
2499{
2500 TALLOC_CTX *ctx = talloc_tos();
2501 char *mask = NULL;
2502 char *buf = NULL;
2503 char *targetname = NULL;
2504 struct cli_state *targetcli;
2505 mode_t mode;
2506 uint16_t fnum;
2507
2508 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2509 d_printf("posix_open <filename> 0<mode>\n");
2510 return 1;
2511 }
2512 mask = talloc_asprintf(ctx,
2513 "%s%s",
2514 client_get_cur_dir(),
2515 buf);
2516 if (!mask) {
2517 return 1;
2518 }
2519
2520 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2521 d_printf("posix_open <filename> 0<mode>\n");
2522 return 1;
2523 }
2524 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2525
2526 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2527 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2528 return 1;
2529 }
2530
2531 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2532 if (NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2533 d_printf("posix_open file %s: for readonly fnum %d\n", targetname, fnum);
2534 } else {
2535 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2536 }
2537 } else {
2538 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2539 }
2540
2541 return 0;
2542}
2543
2544static int cmd_posix_mkdir(void)
2545{
2546 TALLOC_CTX *ctx = talloc_tos();
2547 char *mask = NULL;
2548 char *buf = NULL;
2549 char *targetname = NULL;
2550 struct cli_state *targetcli;
2551 mode_t mode;
2552
2553 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2554 d_printf("posix_mkdir <filename> 0<mode>\n");
2555 return 1;
2556 }
2557 mask = talloc_asprintf(ctx,
2558 "%s%s",
2559 client_get_cur_dir(),
2560 buf);
2561 if (!mask) {
2562 return 1;
2563 }
2564
2565 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2566 d_printf("posix_mkdir <filename> 0<mode>\n");
2567 return 1;
2568 }
2569 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2570
2571 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2572 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2573 return 1;
2574 }
2575
2576 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2577 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2578 } else {
2579 d_printf("posix_mkdir created directory %s\n", targetname);
2580 }
2581 return 0;
2582}
2583
2584static int cmd_posix_unlink(void)
2585{
2586 TALLOC_CTX *ctx = talloc_tos();
2587 char *mask = NULL;
2588 char *buf = NULL;
2589 char *targetname = NULL;
2590 struct cli_state *targetcli;
2591
2592 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2593 d_printf("posix_unlink <filename>\n");
2594 return 1;
2595 }
2596 mask = talloc_asprintf(ctx,
2597 "%s%s",
2598 client_get_cur_dir(),
2599 buf);
2600 if (!mask) {
2601 return 1;
2602 }
2603
2604 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2605 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2606 return 1;
2607 }
2608
2609 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2610 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2611 } else {
2612 d_printf("posix_unlink deleted file %s\n", targetname);
2613 }
2614
2615 return 0;
2616}
2617
2618static int cmd_posix_rmdir(void)
2619{
2620 TALLOC_CTX *ctx = talloc_tos();
2621 char *mask = NULL;
2622 char *buf = NULL;
2623 char *targetname = NULL;
2624 struct cli_state *targetcli;
2625
2626 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2627 d_printf("posix_rmdir <filename>\n");
2628 return 1;
2629 }
2630 mask = talloc_asprintf(ctx,
2631 "%s%s",
2632 client_get_cur_dir(),
2633 buf);
2634 if (!mask) {
2635 return 1;
2636 }
2637
2638 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2639 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2640 return 1;
2641 }
2642
2643 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2644 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2645 } else {
2646 d_printf("posix_rmdir deleted directory %s\n", targetname);
2647 }
2648
2649 return 0;
2650}
2651
2652static int cmd_close(void)
2653{
2654 TALLOC_CTX *ctx = talloc_tos();
2655 char *buf = NULL;
2656 int fnum;
2657
2658 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2659 d_printf("close <fnum>\n");
2660 return 1;
2661 }
2662
2663 fnum = atoi(buf);
2664 /* We really should use the targetcli here.... */
2665 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2666 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2667 return 1;
2668 }
2669 return 0;
2670}
2671
2672static int cmd_posix(void)
2673{
2674 TALLOC_CTX *ctx = talloc_tos();
2675 uint16 major, minor;
2676 uint32 caplow, caphigh;
2677 char *caps;
2678 NTSTATUS status;
2679
2680 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2681 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2682 return 1;
2683 }
2684
2685 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2686 &caphigh);
2687 if (!NT_STATUS_IS_OK(status)) {
2688 d_printf("Can't get UNIX CIFS extensions version from "
2689 "server: %s\n", nt_errstr(status));
2690 return 1;
2691 }
2692
2693 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2694
2695 caps = talloc_strdup(ctx, "");
2696 if (!caps) {
2697 return 1;
2698 }
2699 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2700 caps = talloc_asprintf_append(caps, "locks ");
2701 if (!caps) {
2702 return 1;
2703 }
2704 }
2705 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2706 caps = talloc_asprintf_append(caps, "acls ");
2707 if (!caps) {
2708 return 1;
2709 }
2710 }
2711 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2712 caps = talloc_asprintf_append(caps, "eas ");
2713 if (!caps) {
2714 return 1;
2715 }
2716 }
2717 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2718 caps = talloc_asprintf_append(caps, "pathnames ");
2719 if (!caps) {
2720 return 1;
2721 }
2722 }
2723 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2724 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2725 if (!caps) {
2726 return 1;
2727 }
2728 }
2729 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2730 caps = talloc_asprintf_append(caps, "large_read ");
2731 if (!caps) {
2732 return 1;
2733 }
2734 }
2735 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2736 caps = talloc_asprintf_append(caps, "large_write ");
2737 if (!caps) {
2738 return 1;
2739 }
2740 }
2741 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2742 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2743 if (!caps) {
2744 return 1;
2745 }
2746 }
2747 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2748 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2749 if (!caps) {
2750 return 1;
2751 }
2752 }
2753
2754 if (*caps && caps[strlen(caps)-1] == ' ') {
2755 caps[strlen(caps)-1] = '\0';
2756 }
2757
2758 d_printf("Server supports CIFS capabilities %s\n", caps);
2759
2760 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2761 caplow, caphigh);
2762 if (!NT_STATUS_IS_OK(status)) {
2763 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2764 nt_errstr(status));
2765 return 1;
2766 }
2767
2768 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2769 CLI_DIRSEP_CHAR = '/';
2770 *CLI_DIRSEP_STR = '/';
2771 client_set_cur_dir(CLI_DIRSEP_STR);
2772 }
2773
2774 return 0;
2775}
2776
2777static int cmd_lock(void)
2778{
2779 TALLOC_CTX *ctx = talloc_tos();
2780 char *buf = NULL;
2781 uint64_t start, len;
2782 enum brl_type lock_type;
2783 int fnum;
2784
2785 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2786 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2787 return 1;
2788 }
2789 fnum = atoi(buf);
2790
2791 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2792 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2793 return 1;
2794 }
2795
2796 if (*buf == 'r' || *buf == 'R') {
2797 lock_type = READ_LOCK;
2798 } else if (*buf == 'w' || *buf == 'W') {
2799 lock_type = WRITE_LOCK;
2800 } else {
2801 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2802 return 1;
2803 }
2804
2805 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2806 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2807 return 1;
2808 }
2809
2810 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2811
2812 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2813 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2814 return 1;
2815 }
2816
2817 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2818
2819 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2820 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2821 }
2822
2823 return 0;
2824}
2825
2826static int cmd_unlock(void)
2827{
2828 TALLOC_CTX *ctx = talloc_tos();
2829 char *buf = NULL;
2830 uint64_t start, len;
2831 int fnum;
2832
2833 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2834 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2835 return 1;
2836 }
2837 fnum = atoi(buf);
2838
2839 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2840 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2841 return 1;
2842 }
2843
2844 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2845
2846 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2847 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2848 return 1;
2849 }
2850
2851 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2852
2853 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2854 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2855 }
2856
2857 return 0;
2858}
2859
2860
2861/****************************************************************************
2862 Remove a directory.
2863****************************************************************************/
2864
2865static int cmd_rmdir(void)
2866{
2867 TALLOC_CTX *ctx = talloc_tos();
2868 char *mask = NULL;
2869 char *buf = NULL;
2870 char *targetname = NULL;
2871 struct cli_state *targetcli;
2872
2873 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2874 d_printf("rmdir <dirname>\n");
2875 return 1;
2876 }
2877 mask = talloc_asprintf(ctx,
2878 "%s%s",
2879 client_get_cur_dir(),
2880 buf);
2881 if (!mask) {
2882 return 1;
2883 }
2884
2885 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2886 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2887 return 1;
2888 }
2889
2890 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2891 d_printf("%s removing remote directory file %s\n",
2892 cli_errstr(targetcli),mask);
2893 }
2894
2895 return 0;
2896}
2897
2898/****************************************************************************
2899 UNIX hardlink.
2900****************************************************************************/
2901
2902static int cmd_link(void)
2903{
2904 TALLOC_CTX *ctx = talloc_tos();
2905 char *oldname = NULL;
2906 char *newname = NULL;
2907 char *buf = NULL;
2908 char *buf2 = NULL;
2909 char *targetname = NULL;
2910 struct cli_state *targetcli;
2911
2912 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2913 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2914 d_printf("link <oldname> <newname>\n");
2915 return 1;
2916 }
2917 oldname = talloc_asprintf(ctx,
2918 "%s%s",
2919 client_get_cur_dir(),
2920 buf);
2921 if (!oldname) {
2922 return 1;
2923 }
2924 newname = talloc_asprintf(ctx,
2925 "%s%s",
2926 client_get_cur_dir(),
2927 buf2);
2928 if (!newname) {
2929 return 1;
2930 }
2931
2932 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2933 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2934 return 1;
2935 }
2936
2937 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2938 d_printf("Server doesn't support UNIX CIFS calls.\n");
2939 return 1;
2940 }
2941
2942 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2943 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2944 return 1;
2945 }
2946 return 0;
2947}
2948
2949/****************************************************************************
2950 UNIX readlink.
2951****************************************************************************/
2952
2953static int cmd_readlink(void)
2954{
2955 TALLOC_CTX *ctx = talloc_tos();
2956 char *name= NULL;
2957 char *buf = NULL;
2958 char *targetname = NULL;
2959 char linkname[PATH_MAX+1];
2960 struct cli_state *targetcli;
2961
2962 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2963 d_printf("readlink <name>\n");
2964 return 1;
2965 }
2966 name = talloc_asprintf(ctx,
2967 "%s%s",
2968 client_get_cur_dir(),
2969 buf);
2970 if (!name) {
2971 return 1;
2972 }
2973
2974 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2975 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2976 return 1;
2977 }
2978
2979 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2980 d_printf("Server doesn't support UNIX CIFS calls.\n");
2981 return 1;
2982 }
2983
2984 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2985 linkname, PATH_MAX+1))) {
2986 d_printf("%s readlink on file %s\n",
2987 cli_errstr(targetcli), name);
2988 return 1;
2989 }
2990
2991 d_printf("%s -> %s\n", name, linkname);
2992
2993 return 0;
2994}
2995
2996
2997/****************************************************************************
2998 UNIX symlink.
2999****************************************************************************/
3000
3001static int cmd_symlink(void)
3002{
3003 TALLOC_CTX *ctx = talloc_tos();
3004 char *oldname = NULL;
3005 char *newname = NULL;
3006 char *buf = NULL;
3007 char *buf2 = NULL;
3008 struct cli_state *newcli;
3009
3010 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3011 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3012 d_printf("symlink <oldname> <newname>\n");
3013 return 1;
3014 }
3015 /* Oldname (link target) must be an untouched blob. */
3016 oldname = buf;
3017
3018 newname = talloc_asprintf(ctx,
3019 "%s%s",
3020 client_get_cur_dir(),
3021 buf2);
3022 if (!newname) {
3023 return 1;
3024 }
3025
3026 /* New name must be present in share namespace. */
3027 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
3028 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
3029 return 1;
3030 }
3031
3032 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
3033 d_printf("Server doesn't support UNIX CIFS calls.\n");
3034 return 1;
3035 }
3036
3037 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
3038 d_printf("%s symlinking files (%s -> %s)\n",
3039 cli_errstr(newcli), newname, newname);
3040 return 1;
3041 }
3042
3043 return 0;
3044}
3045
3046/****************************************************************************
3047 UNIX chmod.
3048****************************************************************************/
3049
3050static int cmd_chmod(void)
3051{
3052 TALLOC_CTX *ctx = talloc_tos();
3053 char *src = NULL;
3054 char *buf = NULL;
3055 char *buf2 = NULL;
3056 char *targetname = NULL;
3057 struct cli_state *targetcli;
3058 mode_t mode;
3059
3060 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3061 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3062 d_printf("chmod mode file\n");
3063 return 1;
3064 }
3065 src = talloc_asprintf(ctx,
3066 "%s%s",
3067 client_get_cur_dir(),
3068 buf2);
3069 if (!src) {
3070 return 1;
3071 }
3072
3073 mode = (mode_t)strtol(buf, NULL, 8);
3074
3075 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3076 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
3077 return 1;
3078 }
3079
3080 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3081 d_printf("Server doesn't support UNIX CIFS calls.\n");
3082 return 1;
3083 }
3084
3085 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
3086 d_printf("%s chmod file %s 0%o\n",
3087 cli_errstr(targetcli), src, (unsigned int)mode);
3088 return 1;
3089 }
3090
3091 return 0;
3092}
3093
3094static const char *filetype_to_str(mode_t mode)
3095{
3096 if (S_ISREG(mode)) {
3097 return "regular file";
3098 } else if (S_ISDIR(mode)) {
3099 return "directory";
3100 } else
3101#ifdef S_ISCHR
3102 if (S_ISCHR(mode)) {
3103 return "character device";
3104 } else
3105#endif
3106#ifdef S_ISBLK
3107 if (S_ISBLK(mode)) {
3108 return "block device";
3109 } else
3110#endif
3111#ifdef S_ISFIFO
3112 if (S_ISFIFO(mode)) {
3113 return "fifo";
3114 } else
3115#endif
3116#ifdef S_ISLNK
3117 if (S_ISLNK(mode)) {
3118 return "symbolic link";
3119 } else
3120#endif
3121#ifdef S_ISSOCK
3122 if (S_ISSOCK(mode)) {
3123 return "socket";
3124 } else
3125#endif
3126 return "";
3127}
3128
3129static char rwx_to_str(mode_t m, mode_t bt, char ret)
3130{
3131 if (m & bt) {
3132 return ret;
3133 } else {
3134 return '-';
3135 }
3136}
3137
3138static char *unix_mode_to_str(char *s, mode_t m)
3139{
3140 char *p = s;
3141 const char *str = filetype_to_str(m);
3142
3143 switch(str[0]) {
3144 case 'd':
3145 *p++ = 'd';
3146 break;
3147 case 'c':
3148 *p++ = 'c';
3149 break;
3150 case 'b':
3151 *p++ = 'b';
3152 break;
3153 case 'f':
3154 *p++ = 'p';
3155 break;
3156 case 's':
3157 *p++ = str[1] == 'y' ? 'l' : 's';
3158 break;
3159 case 'r':
3160 default:
3161 *p++ = '-';
3162 break;
3163 }
3164 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3165 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3166 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3167 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3168 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3169 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3170 *p++ = rwx_to_str(m, S_IROTH, 'r');
3171 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3172 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3173 *p++ = '\0';
3174 return s;
3175}
3176
3177/****************************************************************************
3178 Utility function for UNIX getfacl.
3179****************************************************************************/
3180
3181static char *perms_to_string(fstring permstr, unsigned char perms)
3182{
3183 fstrcpy(permstr, "---");
3184 if (perms & SMB_POSIX_ACL_READ) {
3185 permstr[0] = 'r';
3186 }
3187 if (perms & SMB_POSIX_ACL_WRITE) {
3188 permstr[1] = 'w';
3189 }
3190 if (perms & SMB_POSIX_ACL_EXECUTE) {
3191 permstr[2] = 'x';
3192 }
3193 return permstr;
3194}
3195
3196/****************************************************************************
3197 UNIX getfacl.
3198****************************************************************************/
3199
3200static int cmd_getfacl(void)
3201{
3202 TALLOC_CTX *ctx = talloc_tos();
3203 char *src = NULL;
3204 char *name = NULL;
3205 char *targetname = NULL;
3206 struct cli_state *targetcli;
3207 uint16 major, minor;
3208 uint32 caplow, caphigh;
3209 char *retbuf = NULL;
3210 size_t rb_size = 0;
3211 SMB_STRUCT_STAT sbuf;
3212 uint16 num_file_acls = 0;
3213 uint16 num_dir_acls = 0;
3214 uint16 i;
3215 NTSTATUS status;
3216
3217 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3218 d_printf("getfacl filename\n");
3219 return 1;
3220 }
3221 src = talloc_asprintf(ctx,
3222 "%s%s",
3223 client_get_cur_dir(),
3224 name);
3225 if (!src) {
3226 return 1;
3227 }
3228
3229 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3230 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3231 return 1;
3232 }
3233
3234 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3235 d_printf("Server doesn't support UNIX CIFS calls.\n");
3236 return 1;
3237 }
3238
3239 status = cli_unix_extensions_version(targetcli, &major, &minor,
3240 &caplow, &caphigh);
3241 if (!NT_STATUS_IS_OK(status)) {
3242 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3243 nt_errstr(status));
3244 return 1;
3245 }
3246
3247 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3248 d_printf("This server supports UNIX extensions "
3249 "but doesn't support POSIX ACLs.\n");
3250 return 1;
3251 }
3252
3253 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3254 d_printf("%s getfacl doing a stat on file %s\n",
3255 cli_errstr(targetcli), src);
3256 return 1;
3257 }
3258
3259 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3260 d_printf("%s getfacl file %s\n",
3261 cli_errstr(targetcli), src);
3262 return 1;
3263 }
3264
3265 /* ToDo : Print out the ACL values. */
3266 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3267 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3268 src, (unsigned int)CVAL(retbuf,0) );
3269 return 1;
3270 }
3271
3272 num_file_acls = SVAL(retbuf,2);
3273 num_dir_acls = SVAL(retbuf,4);
3274 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3275 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3276 src,
3277 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3278 (unsigned int)rb_size);
3279 return 1;
3280 }
3281
3282 d_printf("# file: %s\n", src);
3283 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3284
3285 if (num_file_acls == 0 && num_dir_acls == 0) {
3286 d_printf("No acls found.\n");
3287 }
3288
3289 for (i = 0; i < num_file_acls; i++) {
3290 uint32 uorg;
3291 fstring permstring;
3292 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3293 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3294
3295 switch(tagtype) {
3296 case SMB_POSIX_ACL_USER_OBJ:
3297 d_printf("user::");
3298 break;
3299 case SMB_POSIX_ACL_USER:
3300 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3301 d_printf("user:%u:", uorg);
3302 break;
3303 case SMB_POSIX_ACL_GROUP_OBJ:
3304 d_printf("group::");
3305 break;
3306 case SMB_POSIX_ACL_GROUP:
3307 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3308 d_printf("group:%u:", uorg);
3309 break;
3310 case SMB_POSIX_ACL_MASK:
3311 d_printf("mask::");
3312 break;
3313 case SMB_POSIX_ACL_OTHER:
3314 d_printf("other::");
3315 break;
3316 default:
3317 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3318 src, (unsigned int)tagtype );
3319 SAFE_FREE(retbuf);
3320 return 1;
3321 }
3322
3323 d_printf("%s\n", perms_to_string(permstring, perms));
3324 }
3325
3326 for (i = 0; i < num_dir_acls; i++) {
3327 uint32 uorg;
3328 fstring permstring;
3329 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3330 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3331
3332 switch(tagtype) {
3333 case SMB_POSIX_ACL_USER_OBJ:
3334 d_printf("default:user::");
3335 break;
3336 case SMB_POSIX_ACL_USER:
3337 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3338 d_printf("default:user:%u:", uorg);
3339 break;
3340 case SMB_POSIX_ACL_GROUP_OBJ:
3341 d_printf("default:group::");
3342 break;
3343 case SMB_POSIX_ACL_GROUP:
3344 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3345 d_printf("default:group:%u:", uorg);
3346 break;
3347 case SMB_POSIX_ACL_MASK:
3348 d_printf("default:mask::");
3349 break;
3350 case SMB_POSIX_ACL_OTHER:
3351 d_printf("default:other::");
3352 break;
3353 default:
3354 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3355 src, (unsigned int)tagtype );
3356 SAFE_FREE(retbuf);
3357 return 1;
3358 }
3359
3360 d_printf("%s\n", perms_to_string(permstring, perms));
3361 }
3362
3363 return 0;
3364}
3365
3366static void printf_cb(const char *buf, void *private_data)
3367{
3368 printf("%s", buf);
3369}
3370
3371/****************************************************************************
3372 Get the EA list of a file
3373****************************************************************************/
3374
3375static int cmd_geteas(void)
3376{
3377 TALLOC_CTX *ctx = talloc_tos();
3378 char *src = NULL;
3379 char *name = NULL;
3380 char *targetname = NULL;
3381 struct cli_state *targetcli;
3382 NTSTATUS status;
3383 size_t i, num_eas;
3384 struct ea_struct *eas;
3385
3386 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3387 d_printf("geteas filename\n");
3388 return 1;
3389 }
3390 src = talloc_asprintf(ctx,
3391 "%s%s",
3392 client_get_cur_dir(),
3393 name);
3394 if (!src) {
3395 return 1;
3396 }
3397
3398 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3399 &targetname)) {
3400 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3401 return 1;
3402 }
3403
3404 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3405 &num_eas, &eas);
3406 if (!NT_STATUS_IS_OK(status)) {
3407 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3408 return 1;
3409 }
3410
3411 for (i=0; i<num_eas; i++) {
3412 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3413 dump_data_cb(eas[i].value.data, eas[i].value.length, false,
3414 printf_cb, NULL);
3415 d_printf("\n");
3416 }
3417
3418 TALLOC_FREE(eas);
3419
3420 return 0;
3421}
3422
3423/****************************************************************************
3424 Set an EA of a file
3425****************************************************************************/
3426
3427static int cmd_setea(void)
3428{
3429 TALLOC_CTX *ctx = talloc_tos();
3430 char *src = NULL;
3431 char *name = NULL;
3432 char *eaname = NULL;
3433 char *eavalue = NULL;
3434 char *targetname = NULL;
3435 struct cli_state *targetcli;
3436 NTSTATUS status;
3437
3438 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3439 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3440 d_printf("setea filename eaname value\n");
3441 return 1;
3442 }
3443 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3444 eavalue = talloc_strdup(ctx, "");
3445 }
3446 src = talloc_asprintf(ctx,
3447 "%s%s",
3448 client_get_cur_dir(),
3449 name);
3450 if (!src) {
3451 return 1;
3452 }
3453
3454 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3455 &targetname)) {
3456 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3457 return 1;
3458 }
3459
3460 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3461 strlen(eavalue));
3462 if (!NT_STATUS_IS_OK(status)) {
3463 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3464 return 1;
3465 }
3466
3467 return 0;
3468}
3469
3470/****************************************************************************
3471 UNIX stat.
3472****************************************************************************/
3473
3474static int cmd_stat(void)
3475{
3476 TALLOC_CTX *ctx = talloc_tos();
3477 char *src = NULL;
3478 char *name = NULL;
3479 char *targetname = NULL;
3480 struct cli_state *targetcli;
3481 fstring mode_str;
3482 SMB_STRUCT_STAT sbuf;
3483 struct tm *lt;
3484 time_t tmp_time;
3485
3486 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3487 d_printf("stat file\n");
3488 return 1;
3489 }
3490 src = talloc_asprintf(ctx,
3491 "%s%s",
3492 client_get_cur_dir(),
3493 name);
3494 if (!src) {
3495 return 1;
3496 }
3497
3498 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3499 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3500 return 1;
3501 }
3502
3503 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3504 d_printf("Server doesn't support UNIX CIFS calls.\n");
3505 return 1;
3506 }
3507
3508 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3509 d_printf("%s stat file %s\n",
3510 cli_errstr(targetcli), src);
3511 return 1;
3512 }
3513
3514 /* Print out the stat values. */
3515 d_printf("File: %s\n", src);
3516 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3517 (double)sbuf.st_ex_size,
3518 (unsigned int)sbuf.st_ex_blocks,
3519 filetype_to_str(sbuf.st_ex_mode));
3520
3521#if defined(S_ISCHR) && defined(S_ISBLK)
3522 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3523 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3524 (double)sbuf.st_ex_ino,
3525 (unsigned int)sbuf.st_ex_nlink,
3526 unix_dev_major(sbuf.st_ex_rdev),
3527 unix_dev_minor(sbuf.st_ex_rdev));
3528 } else
3529#endif
3530 d_printf("Inode: %.0f\tLinks: %u\n",
3531 (double)sbuf.st_ex_ino,
3532 (unsigned int)sbuf.st_ex_nlink);
3533
3534 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3535 ((int)sbuf.st_ex_mode & 0777),
3536 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3537 (unsigned int)sbuf.st_ex_uid,
3538 (unsigned int)sbuf.st_ex_gid);
3539
3540 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3541 lt = localtime(&tmp_time);
3542 if (lt) {
3543 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3544 } else {
3545 fstrcpy(mode_str, "unknown");
3546 }
3547 d_printf("Access: %s\n", mode_str);
3548
3549 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3550 lt = localtime(&tmp_time);
3551 if (lt) {
3552 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3553 } else {
3554 fstrcpy(mode_str, "unknown");
3555 }
3556 d_printf("Modify: %s\n", mode_str);
3557
3558 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3559 lt = localtime(&tmp_time);
3560 if (lt) {
3561 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3562 } else {
3563 fstrcpy(mode_str, "unknown");
3564 }
3565 d_printf("Change: %s\n", mode_str);
3566
3567 return 0;
3568}
3569
3570
3571/****************************************************************************
3572 UNIX chown.
3573****************************************************************************/
3574
3575static int cmd_chown(void)
3576{
3577 TALLOC_CTX *ctx = talloc_tos();
3578 char *src = NULL;
3579 uid_t uid;
3580 gid_t gid;
3581 char *buf, *buf2, *buf3;
3582 struct cli_state *targetcli;
3583 char *targetname = NULL;
3584
3585 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3586 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3587 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3588 d_printf("chown uid gid file\n");
3589 return 1;
3590 }
3591
3592 uid = (uid_t)atoi(buf);
3593 gid = (gid_t)atoi(buf2);
3594
3595 src = talloc_asprintf(ctx,
3596 "%s%s",
3597 client_get_cur_dir(),
3598 buf3);
3599 if (!src) {
3600 return 1;
3601 }
3602 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3603 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3604 return 1;
3605 }
3606
3607 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3608 d_printf("Server doesn't support UNIX CIFS calls.\n");
3609 return 1;
3610 }
3611
3612 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3613 d_printf("%s chown file %s uid=%d, gid=%d\n",
3614 cli_errstr(targetcli), src, (int)uid, (int)gid);
3615 return 1;
3616 }
3617
3618 return 0;
3619}
3620
3621/****************************************************************************
3622 Rename some file.
3623****************************************************************************/
3624
3625static int cmd_rename(void)
3626{
3627 TALLOC_CTX *ctx = talloc_tos();
3628 char *src, *dest;
3629 char *buf, *buf2;
3630 struct cli_state *targetcli;
3631 char *targetsrc;
3632 char *targetdest;
3633
3634 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3635 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3636 d_printf("rename <src> <dest>\n");
3637 return 1;
3638 }
3639
3640 src = talloc_asprintf(ctx,
3641 "%s%s",
3642 client_get_cur_dir(),
3643 buf);
3644 if (!src) {
3645 return 1;
3646 }
3647
3648 dest = talloc_asprintf(ctx,
3649 "%s%s",
3650 client_get_cur_dir(),
3651 buf2);
3652 if (!dest) {
3653 return 1;
3654 }
3655
3656 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3657 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3658 return 1;
3659 }
3660
3661 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3662 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3663 return 1;
3664 }
3665
3666 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3667 d_printf("%s renaming files %s -> %s \n",
3668 cli_errstr(targetcli),
3669 targetsrc,
3670 targetdest);
3671 return 1;
3672 }
3673
3674 return 0;
3675}
3676
3677/****************************************************************************
3678 Print the volume name.
3679****************************************************************************/
3680
3681static int cmd_volume(void)
3682{
3683 fstring volname;
3684 uint32 serial_num;
3685 time_t create_date;
3686 NTSTATUS status;
3687
3688 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3689 &create_date);
3690 if (!NT_STATUS_IS_OK(status)) {
3691 d_printf("Error %s getting volume info\n", nt_errstr(status));
3692 return 1;
3693 }
3694
3695 d_printf("Volume: |%s| serial number 0x%x\n",
3696 volname, (unsigned int)serial_num);
3697 return 0;
3698}
3699
3700/****************************************************************************
3701 Hard link files using the NT call.
3702****************************************************************************/
3703
3704static int cmd_hardlink(void)
3705{
3706 TALLOC_CTX *ctx = talloc_tos();
3707 char *src, *dest;
3708 char *buf, *buf2;
3709 struct cli_state *targetcli;
3710 char *targetname;
3711
3712 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3713 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3714 d_printf("hardlink <src> <dest>\n");
3715 return 1;
3716 }
3717
3718 src = talloc_asprintf(ctx,
3719 "%s%s",
3720 client_get_cur_dir(),
3721 buf);
3722 if (!src) {
3723 return 1;
3724 }
3725
3726 dest = talloc_asprintf(ctx,
3727 "%s%s",
3728 client_get_cur_dir(),
3729 buf2);
3730 if (!dest) {
3731 return 1;
3732 }
3733
3734 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3735 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3736 return 1;
3737 }
3738
3739 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3740 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3741 return 1;
3742 }
3743
3744 return 0;
3745}
3746
3747/****************************************************************************
3748 Toggle the prompt flag.
3749****************************************************************************/
3750
3751static int cmd_prompt(void)
3752{
3753 prompt = !prompt;
3754 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3755 return 1;
3756}
3757
3758/****************************************************************************
3759 Set the newer than time.
3760****************************************************************************/
3761
3762static int cmd_newer(void)
3763{
3764 TALLOC_CTX *ctx = talloc_tos();
3765 char *buf;
3766 bool ok;
3767 SMB_STRUCT_STAT sbuf;
3768
3769 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3770 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3771 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3772 DEBUG(1,("Getting files newer than %s",
3773 time_to_asc(newer_than)));
3774 } else {
3775 newer_than = 0;
3776 }
3777
3778 if (ok && newer_than == 0) {
3779 d_printf("Error setting newer-than time\n");
3780 return 1;
3781 }
3782
3783 return 0;
3784}
3785
3786/****************************************************************************
3787 Set the archive level.
3788****************************************************************************/
3789
3790static int cmd_archive(void)
3791{
3792 TALLOC_CTX *ctx = talloc_tos();
3793 char *buf;
3794
3795 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3796 archive_level = atoi(buf);
3797 } else {
3798 d_printf("Archive level is %d\n",archive_level);
3799 }
3800
3801 return 0;
3802}
3803
3804/****************************************************************************
3805 Toggle the lowercaseflag.
3806****************************************************************************/
3807
3808static int cmd_lowercase(void)
3809{
3810 lowercase = !lowercase;
3811 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3812 return 0;
3813}
3814
3815/****************************************************************************
3816 Toggle the case sensitive flag.
3817****************************************************************************/
3818
3819static int cmd_setcase(void)
3820{
3821 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3822
3823 cli_set_case_sensitive(cli, !orig_case_sensitive);
3824 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3825 "on":"off"));
3826 return 0;
3827}
3828
3829/****************************************************************************
3830 Toggle the showacls flag.
3831****************************************************************************/
3832
3833static int cmd_showacls(void)
3834{
3835 showacls = !showacls;
3836 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3837 return 0;
3838}
3839
3840
3841/****************************************************************************
3842 Toggle the recurse flag.
3843****************************************************************************/
3844
3845static int cmd_recurse(void)
3846{
3847 recurse = !recurse;
3848 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3849 return 0;
3850}
3851
3852/****************************************************************************
3853 Toggle the translate flag.
3854****************************************************************************/
3855
3856static int cmd_translate(void)
3857{
3858 translation = !translation;
3859 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3860 translation?"on":"off"));
3861 return 0;
3862}
3863
3864/****************************************************************************
3865 Do the lcd command.
3866 ****************************************************************************/
3867
3868static int cmd_lcd(void)
3869{
3870 TALLOC_CTX *ctx = talloc_tos();
3871 char *buf;
3872 char *d;
3873
3874 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3875 if (chdir(buf) == -1) {
3876 d_printf("chdir to %s failed (%s)\n",
3877 buf, strerror(errno));
3878 }
3879 }
3880 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3881 if (!d) {
3882 return 1;
3883 }
3884 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3885 return 0;
3886}
3887
3888/****************************************************************************
3889 Get a file restarting at end of local file.
3890 ****************************************************************************/
3891
3892static int cmd_reget(void)
3893{
3894 TALLOC_CTX *ctx = talloc_tos();
3895 char *local_name = NULL;
3896 char *remote_name = NULL;
3897 char *fname = NULL;
3898 char *p = NULL;
3899
3900 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3901 if (!remote_name) {
3902 return 1;
3903 }
3904
3905 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3906 d_printf("reget <filename>\n");
3907 return 1;
3908 }
3909 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3910 if (!remote_name) {
3911 return 1;
3912 }
3913 remote_name = clean_name(ctx,remote_name);
3914 if (!remote_name) {
3915 return 1;
3916 }
3917
3918 local_name = fname;
3919 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3920 if (p) {
3921 local_name = p;
3922 }
3923
3924 return do_get(remote_name, local_name, true);
3925}
3926
3927/****************************************************************************
3928 Put a file restarting at end of local file.
3929 ****************************************************************************/
3930
3931static int cmd_reput(void)
3932{
3933 TALLOC_CTX *ctx = talloc_tos();
3934 char *local_name = NULL;
3935 char *remote_name = NULL;
3936 char *buf;
3937 SMB_STRUCT_STAT st;
3938
3939 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3940 if (!remote_name) {
3941 return 1;
3942 }
3943
3944 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3945 d_printf("reput <filename>\n");
3946 return 1;
3947 }
3948
3949 if (!file_exist_stat(local_name, &st, false)) {
3950 d_printf("%s does not exist\n", local_name);
3951 return 1;
3952 }
3953
3954 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3955 remote_name = talloc_asprintf_append(remote_name,
3956 "%s", buf);
3957 } else {
3958 remote_name = talloc_asprintf_append(remote_name,
3959 "%s", local_name);
3960 }
3961 if (!remote_name) {
3962 return 1;
3963 }
3964
3965 remote_name = clean_name(ctx, remote_name);
3966 if (!remote_name) {
3967 return 1;
3968 }
3969
3970 return do_put(remote_name, local_name, true);
3971}
3972
3973/****************************************************************************
3974 List a share name.
3975 ****************************************************************************/
3976
3977static void browse_fn(const char *name, uint32 m,
3978 const char *comment, void *state)
3979{
3980 const char *typestr = "";
3981
3982 switch (m & 7) {
3983 case STYPE_DISKTREE:
3984 typestr = "Disk";
3985 break;
3986 case STYPE_PRINTQ:
3987 typestr = "Printer";
3988 break;
3989 case STYPE_DEVICE:
3990 typestr = "Device";
3991 break;
3992 case STYPE_IPC:
3993 typestr = "IPC";
3994 break;
3995 }
3996 /* FIXME: If the remote machine returns non-ascii characters
3997 in any of these fields, they can corrupt the output. We
3998 should remove them. */
3999 if (!grepable) {
4000 d_printf("\t%-15s %-10.10s%s\n",
4001 name,typestr,comment);
4002 } else {
4003 d_printf ("%s|%s|%s\n",typestr,name,comment);
4004 }
4005}
4006
4007static bool browse_host_rpc(bool sort)
4008{
4009 NTSTATUS status;
4010 struct rpc_pipe_client *pipe_hnd = NULL;
4011 TALLOC_CTX *frame = talloc_stackframe();
4012 WERROR werr;
4013 struct srvsvc_NetShareInfoCtr info_ctr;
4014 struct srvsvc_NetShareCtr1 ctr1;
4015 uint32_t resume_handle = 0;
4016 uint32_t total_entries = 0;
4017 int i;
4018 struct dcerpc_binding_handle *b;
4019
4020 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4021 &pipe_hnd);
4022
4023 if (!NT_STATUS_IS_OK(status)) {
4024 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4025 nt_errstr(status)));
4026 TALLOC_FREE(frame);
4027 return false;
4028 }
4029
4030 b = pipe_hnd->binding_handle;
4031
4032 ZERO_STRUCT(info_ctr);
4033 ZERO_STRUCT(ctr1);
4034
4035 info_ctr.level = 1;
4036 info_ctr.ctr.ctr1 = &ctr1;
4037
4038 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4039 pipe_hnd->desthost,
4040 &info_ctr,
4041 0xffffffff,
4042 &total_entries,
4043 &resume_handle,
4044 &werr);
4045
4046 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4047 TALLOC_FREE(pipe_hnd);
4048 TALLOC_FREE(frame);
4049 return false;
4050 }
4051
4052 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4053 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4054 browse_fn(info.name, info.type, info.comment, NULL);
4055 }
4056
4057 TALLOC_FREE(pipe_hnd);
4058 TALLOC_FREE(frame);
4059 return true;
4060}
4061
4062/****************************************************************************
4063 Try and browse available connections on a host.
4064****************************************************************************/
4065
4066static bool browse_host(bool sort)
4067{
4068 int ret;
4069 if (!grepable) {
4070 d_printf("\n\tSharename Type Comment\n");
4071 d_printf("\t--------- ---- -------\n");
4072 }
4073
4074 if (browse_host_rpc(sort)) {
4075 return true;
4076 }
4077
4078 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
4079 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
4080
4081 return (ret != -1);
4082}
4083
4084/****************************************************************************
4085 List a server name.
4086****************************************************************************/
4087
4088static void server_fn(const char *name, uint32 m,
4089 const char *comment, void *state)
4090{
4091
4092 if (!grepable){
4093 d_printf("\t%-16s %s\n", name, comment);
4094 } else {
4095 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4096 }
4097}
4098
4099/****************************************************************************
4100 Try and browse available connections on a host.
4101****************************************************************************/
4102
4103static bool list_servers(const char *wk_grp)
4104{
4105 fstring state;
4106
4107 if (!cli->server_domain)
4108 return false;
4109
4110 if (!grepable) {
4111 d_printf("\n\tServer Comment\n");
4112 d_printf("\t--------- -------\n");
4113 };
4114 fstrcpy( state, "Server" );
4115 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4116 state);
4117
4118 if (!grepable) {
4119 d_printf("\n\tWorkgroup Master\n");
4120 d_printf("\t--------- -------\n");
4121 };
4122
4123 fstrcpy( state, "Workgroup" );
4124 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4125 server_fn, state);
4126 return true;
4127}
4128
4129/****************************************************************************
4130 Print or set current VUID
4131****************************************************************************/
4132
4133static int cmd_vuid(void)
4134{
4135 TALLOC_CTX *ctx = talloc_tos();
4136 char *buf;
4137
4138 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4139 d_printf("Current VUID is %d\n", cli->vuid);
4140 return 0;
4141 }
4142
4143 cli->vuid = atoi(buf);
4144 return 0;
4145}
4146
4147/****************************************************************************
4148 Setup a new VUID, by issuing a session setup
4149****************************************************************************/
4150
4151static int cmd_logon(void)
4152{
4153 TALLOC_CTX *ctx = talloc_tos();
4154 char *l_username, *l_password;
4155 NTSTATUS nt_status;
4156
4157 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4158 d_printf("logon <username> [<password>]\n");
4159 return 0;
4160 }
4161
4162 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4163 char *pass = getpass("Password: ");
4164 if (pass) {
4165 l_password = talloc_strdup(ctx,pass);
4166 }
4167 }
4168 if (!l_password) {
4169 return 1;
4170 }
4171
4172 nt_status = cli_session_setup(cli, l_username,
4173 l_password, strlen(l_password),
4174 l_password, strlen(l_password),
4175 lp_workgroup());
4176 if (!NT_STATUS_IS_OK(nt_status)) {
4177 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4178 return -1;
4179 }
4180
4181 d_printf("Current VUID is %d\n", cli->vuid);
4182 return 0;
4183}
4184
4185
4186/****************************************************************************
4187 list active connections
4188****************************************************************************/
4189
4190static int cmd_list_connect(void)
4191{
4192 cli_cm_display(cli);
4193 return 0;
4194}
4195
4196/****************************************************************************
4197 display the current active client connection
4198****************************************************************************/
4199
4200static int cmd_show_connect( void )
4201{
4202 TALLOC_CTX *ctx = talloc_tos();
4203 struct cli_state *targetcli;
4204 char *targetpath;
4205
4206 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
4207 &targetcli, &targetpath ) ) {
4208 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
4209 return 1;
4210 }
4211
4212 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
4213 return 0;
4214}
4215
4216/****************************************************************************
4217 iosize command
4218***************************************************************************/
4219
4220int cmd_iosize(void)
4221{
4222 TALLOC_CTX *ctx = talloc_tos();
4223 char *buf;
4224 int iosize;
4225
4226 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4227 if (!smb_encrypt) {
4228 d_printf("iosize <n> or iosize 0x<n>. "
4229 "Minimum is 16384 (0x4000), "
4230 "max is 16776960 (0xFFFF00)\n");
4231 } else {
4232 d_printf("iosize <n> or iosize 0x<n>. "
4233 "(Encrypted connection) ,"
4234 "Minimum is 16384 (0x4000), "
4235 "max is 130048 (0x1FC00)\n");
4236 }
4237 return 1;
4238 }
4239
4240 iosize = strtol(buf,NULL,0);
4241 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4242 d_printf("iosize out of range for encrypted "
4243 "connection (min = 16384 (0x4000), "
4244 "max = 130048 (0x1FC00)");
4245 return 1;
4246 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4247 d_printf("iosize out of range (min = 16384 (0x4000), "
4248 "max = 16776960 (0xFFFF00)");
4249 return 1;
4250 }
4251
4252 io_bufsize = iosize;
4253 d_printf("iosize is now %d\n", io_bufsize);
4254 return 0;
4255}
4256
4257/****************************************************************************
4258history
4259****************************************************************************/
4260static int cmd_history(void)
4261{
4262#if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4263 HIST_ENTRY **hlist;
4264 int i;
4265
4266 hlist = history_list();
4267
4268 for (i = 0; hlist && hlist[i]; i++) {
4269 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4270 }
4271#else
4272 DEBUG(0,("no history without readline support\n"));
4273#endif
4274
4275 return 0;
4276}
4277
4278/* Some constants for completing filename arguments */
4279
4280#define COMPL_NONE 0 /* No completions */
4281#define COMPL_REMOTE 1 /* Complete remote filename */
4282#define COMPL_LOCAL 2 /* Complete local filename */
4283
4284/* This defines the commands supported by this client.
4285 * NOTE: The "!" must be the last one in the list because it's fn pointer
4286 * field is NULL, and NULL in that field is used in process_tok()
4287 * (below) to indicate the end of the list. crh
4288 */
4289static struct {
4290 const char *name;
4291 int (*fn)(void);
4292 const char *description;
4293 char compl_args[2]; /* Completion argument info */
4294} commands[] = {
4295 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4296 {"allinfo",cmd_allinfo,"<file> show all available info",
4297 {COMPL_NONE,COMPL_NONE}},
4298 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4299 {"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}},
4300 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4301 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4302 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4303 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4304 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4305 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4306 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4307 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4308 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4309 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4310 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4311 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4312 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4313 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4314 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4315 {COMPL_REMOTE, COMPL_LOCAL}},
4316 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4317 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4318 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4319 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4320 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4321 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4322 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4323 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4324 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4325 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4326 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4327 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4328 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4329 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4330 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4331 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4332 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4333 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4334 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4335 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4336 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4337 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4338 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4339 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4340 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4341 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4342 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4343 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4344 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4345 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4346 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4347 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4348 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4349 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4350 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4351 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4352 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4353 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4354 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4355 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4356 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4357 {COMPL_REMOTE, COMPL_LOCAL}},
4358 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4359 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4360 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4361 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4362 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4363 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4364 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4365 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4366 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4367 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4368 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4369 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4370 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4371 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4372
4373 /* Yes, this must be here, see crh's comment above. */
4374 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4375 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4376};
4377
4378/*******************************************************************
4379 Lookup a command string in the list of commands, including
4380 abbreviations.
4381******************************************************************/
4382
4383static int process_tok(char *tok)
4384{
4385 int i = 0, matches = 0;
4386 int cmd=0;
4387 int tok_len = strlen(tok);
4388
4389 while (commands[i].fn != NULL) {
4390 if (strequal(commands[i].name,tok)) {
4391 matches = 1;
4392 cmd = i;
4393 break;
4394 } else if (strnequal(commands[i].name, tok, tok_len)) {
4395 matches++;
4396 cmd = i;
4397 }
4398 i++;
4399 }
4400
4401 if (matches == 0)
4402 return(-1);
4403 else if (matches == 1)
4404 return(cmd);
4405 else
4406 return(-2);
4407}
4408
4409/****************************************************************************
4410 Help.
4411****************************************************************************/
4412
4413static int cmd_help(void)
4414{
4415 TALLOC_CTX *ctx = talloc_tos();
4416 int i=0,j;
4417 char *buf;
4418
4419 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4420 if ((i = process_tok(buf)) >= 0)
4421 d_printf("HELP %s:\n\t%s\n\n",
4422 commands[i].name,commands[i].description);
4423 } else {
4424 while (commands[i].description) {
4425 for (j=0; commands[i].description && (j<5); j++) {
4426 d_printf("%-15s",commands[i].name);
4427 i++;
4428 }
4429 d_printf("\n");
4430 }
4431 }
4432 return 0;
4433}
4434
4435/****************************************************************************
4436 Process a -c command string.
4437****************************************************************************/
4438
4439static int process_command_string(const char *cmd_in)
4440{
4441 TALLOC_CTX *ctx = talloc_tos();
4442 char *cmd = talloc_strdup(ctx, cmd_in);
4443 int rc = 0;
4444
4445 if (!cmd) {
4446 return 1;
4447 }
4448 /* establish the connection if not already */
4449
4450 if (!cli) {
4451 cli = cli_cm_open(talloc_tos(), NULL,
4452 have_ip ? dest_ss_str : desthost,
4453 service, auth_info,
4454 true, smb_encrypt,
4455 max_protocol, port, name_type);
4456 if (!cli) {
4457 return 1;
4458 }
4459 }
4460
4461 while (cmd[0] != '\0') {
4462 char *line;
4463 char *p;
4464 char *tok;
4465 int i;
4466
4467 if ((p = strchr_m(cmd, ';')) == 0) {
4468 line = cmd;
4469 cmd += strlen(cmd);
4470 } else {
4471 *p = '\0';
4472 line = cmd;
4473 cmd = p + 1;
4474 }
4475
4476 /* and get the first part of the command */
4477 cmd_ptr = line;
4478 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4479 continue;
4480 }
4481
4482 if ((i = process_tok(tok)) >= 0) {
4483 rc = commands[i].fn();
4484 } else if (i == -2) {
4485 d_printf("%s: command abbreviation ambiguous\n",tok);
4486 } else {
4487 d_printf("%s: command not found\n",tok);
4488 }
4489 }
4490
4491 return rc;
4492}
4493
4494#define MAX_COMPLETIONS 100
4495
4496struct completion_remote {
4497 char *dirmask;
4498 char **matches;
4499 int count, samelen;
4500 const char *text;
4501 int len;
4502};
4503
4504static NTSTATUS completion_remote_filter(const char *mnt,
4505 struct file_info *f,
4506 const char *mask,
4507 void *state)
4508{
4509 struct completion_remote *info = (struct completion_remote *)state;
4510
4511 if (info->count >= MAX_COMPLETIONS - 1) {
4512 return NT_STATUS_OK;
4513 }
4514 if (strncmp(info->text, f->name, info->len) != 0) {
4515 return NT_STATUS_OK;
4516 }
4517 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4518 return NT_STATUS_OK;
4519 }
4520
4521 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4522 info->matches[info->count] = SMB_STRDUP(f->name);
4523 else {
4524 TALLOC_CTX *ctx = talloc_stackframe();
4525 char *tmp;
4526
4527 tmp = talloc_strdup(ctx,info->dirmask);
4528 if (!tmp) {
4529 TALLOC_FREE(ctx);
4530 return NT_STATUS_NO_MEMORY;
4531 }
4532 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4533 if (!tmp) {
4534 TALLOC_FREE(ctx);
4535 return NT_STATUS_NO_MEMORY;
4536 }
4537 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4538 tmp = talloc_asprintf_append(tmp, "%s",
4539 CLI_DIRSEP_STR);
4540 }
4541 if (!tmp) {
4542 TALLOC_FREE(ctx);
4543 return NT_STATUS_NO_MEMORY;
4544 }
4545 info->matches[info->count] = SMB_STRDUP(tmp);
4546 TALLOC_FREE(ctx);
4547 }
4548 if (info->matches[info->count] == NULL) {
4549 return NT_STATUS_OK;
4550 }
4551 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4552 smb_readline_ca_char(0);
4553 }
4554 if (info->count == 1) {
4555 info->samelen = strlen(info->matches[info->count]);
4556 } else {
4557 while (strncmp(info->matches[info->count],
4558 info->matches[info->count-1],
4559 info->samelen) != 0) {
4560 info->samelen--;
4561 }
4562 }
4563 info->count++;
4564 return NT_STATUS_OK;
4565}
4566
4567static char **remote_completion(const char *text, int len)
4568{
4569 TALLOC_CTX *ctx = talloc_stackframe();
4570 char *dirmask = NULL;
4571 char *targetpath = NULL;
4572 struct cli_state *targetcli = NULL;
4573 int i;
4574 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4575 NTSTATUS status;
4576
4577 /* can't have non-static initialisation on Sun CC, so do it
4578 at run time here */
4579 info.samelen = len;
4580 info.text = text;
4581 info.len = len;
4582
4583 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4584 if (!info.matches) {
4585 TALLOC_FREE(ctx);
4586 return NULL;
4587 }
4588
4589 /*
4590 * We're leaving matches[0] free to fill it later with the text to
4591 * display: Either the one single match or the longest common subset
4592 * of the matches.
4593 */
4594 info.matches[0] = NULL;
4595 info.count = 1;
4596
4597 for (i = len-1; i >= 0; i--) {
4598 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4599 break;
4600 }
4601 }
4602
4603 info.text = text+i+1;
4604 info.samelen = info.len = len-i-1;
4605
4606 if (i > 0) {
4607 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4608 if (!info.dirmask) {
4609 goto cleanup;
4610 }
4611 strncpy(info.dirmask, text, i+1);
4612 info.dirmask[i+1] = 0;
4613 dirmask = talloc_asprintf(ctx,
4614 "%s%*s*",
4615 client_get_cur_dir(),
4616 i-1,
4617 text);
4618 } else {
4619 info.dirmask = SMB_STRDUP("");
4620 if (!info.dirmask) {
4621 goto cleanup;
4622 }
4623 dirmask = talloc_asprintf(ctx,
4624 "%s*",
4625 client_get_cur_dir());
4626 }
4627 if (!dirmask) {
4628 goto cleanup;
4629 }
4630
4631 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4632 goto cleanup;
4633 }
4634 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4635 completion_remote_filter, (void *)&info);
4636 if (!NT_STATUS_IS_OK(status)) {
4637 goto cleanup;
4638 }
4639
4640 if (info.count == 1) {
4641 /*
4642 * No matches at all, NULL indicates there is nothing
4643 */
4644 SAFE_FREE(info.matches[0]);
4645 SAFE_FREE(info.matches);
4646 TALLOC_FREE(ctx);
4647 return NULL;
4648 }
4649
4650 if (info.count == 2) {
4651 /*
4652 * Exactly one match in matches[1], indicate this is the one
4653 * in matches[0].
4654 */
4655 info.matches[0] = info.matches[1];
4656 info.matches[1] = NULL;
4657 info.count -= 1;
4658 TALLOC_FREE(ctx);
4659 return info.matches;
4660 }
4661
4662 /*
4663 * We got more than one possible match, set the result to the maximum
4664 * common subset
4665 */
4666
4667 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4668 info.matches[info.count] = NULL;
4669 return info.matches;
4670
4671cleanup:
4672 for (i = 0; i < info.count; i++) {
4673 SAFE_FREE(info.matches[i]);
4674 }
4675 SAFE_FREE(info.matches);
4676 SAFE_FREE(info.dirmask);
4677 TALLOC_FREE(ctx);
4678 return NULL;
4679}
4680
4681static char **completion_fn(const char *text, int start, int end)
4682{
4683 smb_readline_ca_char(' ');
4684
4685 if (start) {
4686 const char *buf, *sp;
4687 int i;
4688 char compl_type;
4689
4690 buf = smb_readline_get_line_buffer();
4691 if (buf == NULL)
4692 return NULL;
4693
4694 sp = strchr(buf, ' ');
4695 if (sp == NULL)
4696 return NULL;
4697
4698 for (i = 0; commands[i].name; i++) {
4699 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4700 (commands[i].name[sp - buf] == 0)) {
4701 break;
4702 }
4703 }
4704 if (commands[i].name == NULL)
4705 return NULL;
4706
4707 while (*sp == ' ')
4708 sp++;
4709
4710 if (sp == (buf + start))
4711 compl_type = commands[i].compl_args[0];
4712 else
4713 compl_type = commands[i].compl_args[1];
4714
4715 if (compl_type == COMPL_REMOTE)
4716 return remote_completion(text, end - start);
4717 else /* fall back to local filename completion */
4718 return NULL;
4719 } else {
4720 char **matches;
4721 int i, len, samelen = 0, count=1;
4722
4723 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4724 if (!matches) {
4725 return NULL;
4726 }
4727 matches[0] = NULL;
4728
4729 len = strlen(text);
4730 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4731 if (strncmp(text, commands[i].name, len) == 0) {
4732 matches[count] = SMB_STRDUP(commands[i].name);
4733 if (!matches[count])
4734 goto cleanup;
4735 if (count == 1)
4736 samelen = strlen(matches[count]);
4737 else
4738 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4739 samelen--;
4740 count++;
4741 }
4742 }
4743
4744 switch (count) {
4745 case 0: /* should never happen */
4746 case 1:
4747 goto cleanup;
4748 case 2:
4749 matches[0] = SMB_STRDUP(matches[1]);
4750 break;
4751 default:
4752 matches[0] = (char *)SMB_MALLOC(samelen+1);
4753 if (!matches[0])
4754 goto cleanup;
4755 strncpy(matches[0], matches[1], samelen);
4756 matches[0][samelen] = 0;
4757 }
4758 matches[count] = NULL;
4759 return matches;
4760
4761cleanup:
4762 for (i = 0; i < count; i++)
4763 free(matches[i]);
4764
4765 free(matches);
4766 return NULL;
4767 }
4768}
4769
4770static bool finished;
4771
4772/****************************************************************************
4773 Make sure we swallow keepalives during idle time.
4774****************************************************************************/
4775
4776static void readline_callback(void)
4777{
4778 static time_t last_t;
4779 struct timespec now;
4780 time_t t;
4781 int ret, revents;
4782
4783 clock_gettime_mono(&now);
4784 t = now.tv_sec;
4785
4786 if (t - last_t < 5)
4787 return;
4788
4789 last_t = t;
4790
4791 again:
4792
4793 if (cli->fd == -1)
4794 return;
4795
4796 /* We deliberately use receive_smb_raw instead of
4797 client_receive_smb as we want to receive
4798 session keepalives and then drop them here.
4799 */
4800
4801 ret = poll_intr_one_fd(cli->fd, POLLIN|POLLHUP, 0, &revents);
4802
4803 if ((ret > 0) && (revents & (POLLIN|POLLHUP|POLLERR))) {
4804 NTSTATUS status;
4805 size_t len;
4806
4807 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4808
4809 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4810
4811 if (!NT_STATUS_IS_OK(status)) {
4812 DEBUG(0, ("Read from server failed, maybe it closed "
4813 "the connection\n"));
4814
4815 finished = true;
4816 smb_readline_done();
4817 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4818 set_smb_read_error(&cli->smb_rw_error,
4819 SMB_READ_EOF);
4820 return;
4821 }
4822
4823 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4824 set_smb_read_error(&cli->smb_rw_error,
4825 SMB_READ_TIMEOUT);
4826 return;
4827 }
4828
4829 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4830 return;
4831 }
4832 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4833 DEBUG(0, ("Read from server "
4834 "returned unexpected packet!\n"));
4835 return;
4836 }
4837
4838 goto again;
4839 }
4840
4841 /* Ping the server to keep the connection alive using SMBecho. */
4842 {
4843 NTSTATUS status;
4844 unsigned char garbage[16];
4845 memset(garbage, 0xf0, sizeof(garbage));
4846 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4847
4848 if (NT_STATUS_IS_OK(status)) {
4849 return;
4850 }
4851
4852 if (!cli_state_is_connected(cli)) {
4853 DEBUG(0, ("SMBecho failed (%s). The connection is "
4854 "disconnected now\n", nt_errstr(status)));
4855 finished = true;
4856 smb_readline_done();
4857 }
4858 }
4859}
4860
4861/****************************************************************************
4862 Process commands on stdin.
4863****************************************************************************/
4864
4865static int process_stdin(void)
4866{
4867 int rc = 0;
4868
4869 while (!finished) {
4870 TALLOC_CTX *frame = talloc_stackframe();
4871 char *tok = NULL;
4872 char *the_prompt = NULL;
4873 char *line = NULL;
4874 int i;
4875
4876 /* display a prompt */
4877 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4878 TALLOC_FREE(frame);
4879 break;
4880 }
4881 line = smb_readline(the_prompt, readline_callback, completion_fn);
4882 SAFE_FREE(the_prompt);
4883 if (!line) {
4884 TALLOC_FREE(frame);
4885 break;
4886 }
4887
4888 /* special case - first char is ! */
4889 if (*line == '!') {
4890 if (system(line + 1) == -1) {
4891 d_printf("system() command %s failed.\n",
4892 line+1);
4893 }
4894 SAFE_FREE(line);
4895 TALLOC_FREE(frame);
4896 continue;
4897 }
4898
4899 /* and get the first part of the command */
4900 cmd_ptr = line;
4901 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4902 TALLOC_FREE(frame);
4903 SAFE_FREE(line);
4904 continue;
4905 }
4906
4907 if ((i = process_tok(tok)) >= 0) {
4908 rc = commands[i].fn();
4909 } else if (i == -2) {
4910 d_printf("%s: command abbreviation ambiguous\n",tok);
4911 } else {
4912 d_printf("%s: command not found\n",tok);
4913 }
4914 SAFE_FREE(line);
4915 TALLOC_FREE(frame);
4916 }
4917 return rc;
4918}
4919
4920/****************************************************************************
4921 Process commands from the client.
4922****************************************************************************/
4923
4924static int process(const char *base_directory)
4925{
4926 int rc = 0;
4927
4928 cli = cli_cm_open(talloc_tos(), NULL,
4929 have_ip ? dest_ss_str : desthost,
4930 service, auth_info, true, smb_encrypt,
4931 max_protocol, port, name_type);
4932 if (!cli) {
4933 return 1;
4934 }
4935
4936 if (base_directory && *base_directory) {
4937 rc = do_cd(base_directory);
4938 if (rc) {
4939 cli_shutdown(cli);
4940 return rc;
4941 }
4942 }
4943
4944 if (cmdstr) {
4945 rc = process_command_string(cmdstr);
4946 } else {
4947 process_stdin();
4948 }
4949
4950 cli_shutdown(cli);
4951 return rc;
4952}
4953
4954/****************************************************************************
4955 Handle a -L query.
4956****************************************************************************/
4957
4958static int do_host_query(const char *query_host)
4959{
4960 cli = cli_cm_open(talloc_tos(), NULL,
4961 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4962 max_protocol, port, name_type);
4963 if (!cli)
4964 return 1;
4965
4966 browse_host(true);
4967
4968 /* Ensure that the host can do IPv4 */
4969
4970 if (!interpret_addr(query_host)) {
4971 struct sockaddr_storage ss;
4972 if (interpret_string_addr(&ss, query_host, 0) &&
4973 (ss.ss_family != AF_INET)) {
4974 d_printf("%s is an IPv6 address -- no workgroup available\n",
4975 query_host);
4976 return 1;
4977 }
4978 }
4979
4980 if (port != 139) {
4981
4982 /* Workgroups simply don't make sense over anything
4983 else but port 139... */
4984
4985 cli_shutdown(cli);
4986 cli = cli_cm_open(talloc_tos(), NULL,
4987 have_ip ? dest_ss_str : query_host, "IPC$",
4988 auth_info, true, smb_encrypt,
4989 max_protocol, 139, name_type);
4990 }
4991
4992 if (cli == NULL) {
4993 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4994 return 1;
4995 }
4996
4997 list_servers(lp_workgroup());
4998
4999 cli_shutdown(cli);
5000
5001 return(0);
5002}
5003
5004/****************************************************************************
5005 Handle a tar operation.
5006****************************************************************************/
5007
5008static int do_tar_op(const char *base_directory)
5009{
5010 int ret;
5011
5012 /* do we already have a connection? */
5013 if (!cli) {
5014 cli = cli_cm_open(talloc_tos(), NULL,
5015 have_ip ? dest_ss_str : desthost,
5016 service, auth_info, true, smb_encrypt,
5017 max_protocol, port, name_type);
5018 if (!cli)
5019 return 1;
5020 }
5021
5022 recurse=true;
5023
5024 if (base_directory && *base_directory) {
5025 ret = do_cd(base_directory);
5026 if (ret) {
5027 cli_shutdown(cli);
5028 return ret;
5029 }
5030 }
5031
5032 ret=process_tar();
5033
5034 cli_shutdown(cli);
5035
5036 return(ret);
5037}
5038
5039/****************************************************************************
5040 Handle a message operation.
5041****************************************************************************/
5042
5043static int do_message_op(struct user_auth_info *a_info)
5044{
5045 struct sockaddr_storage ss;
5046 struct nmb_name called, calling;
5047 fstring server_name;
5048 char name_type_hex[10];
5049 int msg_port;
5050 NTSTATUS status;
5051
5052 make_nmb_name(&calling, calling_name, 0x0);
5053 make_nmb_name(&called , desthost, name_type);
5054
5055 fstrcpy(server_name, desthost);
5056 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
5057 fstrcat(server_name, name_type_hex);
5058
5059 zero_sockaddr(&ss);
5060 if (have_ip)
5061 ss = dest_ss;
5062
5063 /* we can only do messages over port 139 (to windows clients at least) */
5064
5065 msg_port = port ? port : 139;
5066
5067 if (!(cli=cli_initialise())) {
5068 d_printf("Connection to %s failed\n", desthost);
5069 return 1;
5070 }
5071 cli_set_port(cli, msg_port);
5072
5073 status = cli_connect(cli, server_name, &ss);
5074 if (!NT_STATUS_IS_OK(status)) {
5075 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5076 return 1;
5077 }
5078
5079 if (!cli_session_request(cli, &calling, &called)) {
5080 d_printf("session request failed\n");
5081 cli_shutdown(cli);
5082 return 1;
5083 }
5084
5085 send_message(get_cmdline_auth_info_username(a_info));
5086 cli_shutdown(cli);
5087
5088 return 0;
5089}
5090
5091/****************************************************************************
5092 main program
5093****************************************************************************/
5094
5095 int main(int argc,char *argv[])
5096{
5097 char *base_directory = NULL;
5098 int opt;
5099 char *query_host = NULL;
5100 bool message = false;
5101 static const char *new_name_resolve_order = NULL;
5102 poptContext pc;
5103 char *p;
5104 int rc = 0;
5105 fstring new_workgroup;
5106 bool tar_opt = false;
5107 bool service_opt = false;
5108 struct poptOption long_options[] = {
5109 POPT_AUTOHELP
5110
5111 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5112 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5113 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5114 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5115 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5116 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5117 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5118 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5119 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5120 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5121 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5122 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5123 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5124 POPT_COMMON_SAMBA
5125 POPT_COMMON_CONNECTION
5126 POPT_COMMON_CREDENTIALS
5127 POPT_TABLEEND
5128 };
5129 TALLOC_CTX *frame = talloc_stackframe();
5130
5131 if (!client_set_cur_dir("\\")) {
5132 exit(ENOMEM);
5133 }
5134
5135 /* initialize the workgroup name so we can determine whether or
5136 not it was set by a command line option */
5137
5138 set_global_myworkgroup( "" );
5139 set_global_myname( "" );
5140
5141 /* set default debug level to 1 regardless of what smb.conf sets */
5142 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5143 load_case_tables();
5144
5145 lp_set_cmdline("log level", "1");
5146
5147 auth_info = user_auth_info_init(frame);
5148 if (auth_info == NULL) {
5149 exit(1);
5150 }
5151 popt_common_set_auth_info(auth_info);
5152
5153 /* skip argv(0) */
5154 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5155 poptSetOtherOptionHelp(pc, "service <password>");
5156
5157 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5158
5159 while ((opt = poptGetNextOpt(pc)) != -1) {
5160
5161 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5162 /* I see no other way to keep things sane --SSS */
5163 if (tar_opt == true) {
5164 while (poptPeekArg(pc)) {
5165 poptGetArg(pc);
5166 }
5167 tar_opt = false;
5168 }
5169
5170 /* if the service has not yet been specified lets see if it is available in the popt stack */
5171 if (!service_opt && poptPeekArg(pc)) {
5172 service = talloc_strdup(frame, poptGetArg(pc));
5173 if (!service) {
5174 exit(ENOMEM);
5175 }
5176 service_opt = true;
5177 }
5178
5179 /* if the service has already been retrieved then check if we have also a password */
5180 if (service_opt
5181 && (!get_cmdline_auth_info_got_pass(auth_info))
5182 && poptPeekArg(pc)) {
5183 set_cmdline_auth_info_password(auth_info,
5184 poptGetArg(pc));
5185 }
5186
5187 switch (opt) {
5188 case 'M':
5189 /* Messages are sent to NetBIOS name type 0x3
5190 * (Messenger Service). Make sure we default
5191 * to port 139 instead of port 445. srl,crh
5192 */
5193 name_type = 0x03;
5194 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5195 if (!desthost) {
5196 exit(ENOMEM);
5197 }
5198 if( !port )
5199 port = 139;
5200 message = true;
5201 break;
5202 case 'I':
5203 {
5204 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5205 exit(1);
5206 }
5207 have_ip = true;
5208 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5209 }
5210 break;
5211 case 'E':
5212 setup_logging("smbclient", DEBUG_STDERR );
5213 display_set_stderr();
5214 break;
5215
5216 case 'L':
5217 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5218 if (!query_host) {
5219 exit(ENOMEM);
5220 }
5221 break;
5222 case 'm':
5223 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5224 break;
5225 case 'T':
5226 /* We must use old option processing for this. Find the
5227 * position of the -T option in the raw argv[]. */
5228 {
5229 int i;
5230 for (i = 1; i < argc; i++) {
5231 if (strncmp("-T", argv[i],2)==0)
5232 break;
5233 }
5234 i++;
5235 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5236 poptPrintUsage(pc, stderr, 0);
5237 exit(1);
5238 }
5239 }
5240 /* this must be the last option, mark we have parsed it so that we know we have */
5241 tar_opt = true;
5242 break;
5243 case 'D':
5244 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5245 if (!base_directory) {
5246 exit(ENOMEM);
5247 }
5248 break;
5249 case 'g':
5250 grepable=true;
5251 break;
5252 case 'e':
5253 smb_encrypt=true;
5254 break;
5255 case 'B':
5256 return(do_smb_browse());
5257
5258 }
5259 }
5260
5261 /* We may still have some leftovers after the last popt option has been called */
5262 if (tar_opt == true) {
5263 while (poptPeekArg(pc)) {
5264 poptGetArg(pc);
5265 }
5266 tar_opt = false;
5267 }
5268
5269 /* if the service has not yet been specified lets see if it is available in the popt stack */
5270 if (!service_opt && poptPeekArg(pc)) {
5271 service = talloc_strdup(frame,poptGetArg(pc));
5272 if (!service) {
5273 exit(ENOMEM);
5274 }
5275 service_opt = true;
5276 }
5277
5278 /* if the service has already been retrieved then check if we have also a password */
5279 if (service_opt
5280 && !get_cmdline_auth_info_got_pass(auth_info)
5281 && poptPeekArg(pc)) {
5282 set_cmdline_auth_info_password(auth_info,
5283 poptGetArg(pc));
5284 }
5285
5286 /* save the workgroup...
5287
5288 FIXME!! do we need to do this for other options as well
5289 (or maybe a generic way to keep lp_load() from overwriting
5290 everything)? */
5291
5292 fstrcpy( new_workgroup, lp_workgroup() );
5293 calling_name = talloc_strdup(frame, global_myname() );
5294 if (!calling_name) {
5295 exit(ENOMEM);
5296 }
5297
5298 if ( override_logfile )
5299 setup_logging( lp_logfile(), DEBUG_FILE );
5300
5301 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5302 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5303 argv[0], get_dyn_CONFIGFILE());
5304 }
5305
5306 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5307 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5308 exit(-1);
5309 }
5310
5311 load_interfaces();
5312
5313 if (service_opt && service) {
5314 size_t len;
5315
5316 /* Convert any '/' characters in the service name to '\' characters */
5317 string_replace(service, '/','\\');
5318 if (count_chars(service,'\\') < 3) {
5319 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5320 poptPrintUsage(pc, stderr, 0);
5321 exit(1);
5322 }
5323 /* Remove trailing slashes */
5324 len = strlen(service);
5325 while(len > 0 && service[len - 1] == '\\') {
5326 --len;
5327 service[len] = '\0';
5328 }
5329 }
5330
5331 if ( strlen(new_workgroup) != 0 ) {
5332 set_global_myworkgroup( new_workgroup );
5333 }
5334
5335 if ( strlen(calling_name) != 0 ) {
5336 set_global_myname( calling_name );
5337 } else {
5338 TALLOC_FREE(calling_name);
5339 calling_name = talloc_strdup(frame, global_myname() );
5340 }
5341
5342 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5343 if (!init_names()) {
5344 fprintf(stderr, "init_names() failed\n");
5345 exit(1);
5346 }
5347
5348 if(new_name_resolve_order)
5349 lp_set_name_resolve_order(new_name_resolve_order);
5350
5351 if (!tar_type && !query_host && !service && !message) {
5352 poptPrintUsage(pc, stderr, 0);
5353 exit(1);
5354 }
5355
5356 poptFreeContext(pc);
5357
5358 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5359
5360 /* Ensure we have a password (or equivalent). */
5361 set_cmdline_auth_info_getpass(auth_info);
5362
5363 if (tar_type) {
5364 if (cmdstr)
5365 process_command_string(cmdstr);
5366 return do_tar_op(base_directory);
5367 }
5368
5369 if (query_host && *query_host) {
5370 char *qhost = query_host;
5371 char *slash;
5372
5373 while (*qhost == '\\' || *qhost == '/')
5374 qhost++;
5375
5376 if ((slash = strchr_m(qhost, '/'))
5377 || (slash = strchr_m(qhost, '\\'))) {
5378 *slash = 0;
5379 }
5380
5381 if ((p=strchr_m(qhost, '#'))) {
5382 *p = 0;
5383 p++;
5384 sscanf(p, "%x", &name_type);
5385 }
5386
5387 return do_host_query(qhost);
5388 }
5389
5390 if (message) {
5391 return do_message_op(auth_info);
5392 }
5393
5394 if (process(base_directory)) {
5395 return 1;
5396 }
5397
5398 TALLOC_FREE(frame);
5399 return rc;
5400}
Note: See TracBrowser for help on using the repository browser.