2 Unix SMB/CIFS implementation.
5 Copyright (C) Simo Sorce 2002
6 Copyright (C) Eric Lorimer 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "smbd/smbd.h"
24 #include "system/passwd.h"
25 #include "system/filesys.h"
27 #include "../lib/util/util_pw.h"
28 #include "libcli/security/security.h"
29 #include "passdb/machine_sid.h"
31 static const char *null_string
= "";
33 static NTSTATUS
cmd_load_module(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
38 printf("Usage: load <modules>\n");
42 for (i
=argc
-1;i
>0;i
--) {
43 if (!vfs_init_custom(vfs
->conn
, argv
[i
])) {
44 DEBUG(0, ("load: (vfs_init_custom failed for %s)\n", argv
[i
]));
45 return NT_STATUS_UNSUCCESSFUL
;
52 static NTSTATUS
cmd_populate(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
57 printf("Usage: populate <char> <size>\n");
62 vfs
->data
= talloc_array(mem_ctx
, char, size
);
63 if (vfs
->data
== NULL
) {
64 printf("populate: error=-1 (not enough memory)");
65 return NT_STATUS_UNSUCCESSFUL
;
67 memset(vfs
->data
, c
, size
);
68 vfs
->data_size
= size
;
72 static NTSTATUS
cmd_show_data(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
76 if (argc
!= 1 && argc
!= 3) {
77 printf("Usage: showdata [<offset> <len>]\n");
80 if (vfs
->data
== NULL
|| vfs
->data_size
== 0) {
81 printf("show_data: error=-1 (buffer empty)\n");
82 return NT_STATUS_UNSUCCESSFUL
;
86 offset
= atoi(argv
[1]);
92 if ((offset
+ len
) > vfs
->data_size
) {
93 printf("show_data: error=-1 (not enough data in buffer)\n");
94 return NT_STATUS_UNSUCCESSFUL
;
96 dump_data(0, (uint8
*)(vfs
->data
) + offset
, len
);
100 static NTSTATUS
cmd_connect(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
102 SMB_VFS_CONNECT(vfs
->conn
, lp_servicename(talloc_tos(), SNUM(vfs
->conn
)), "vfstest");
106 static NTSTATUS
cmd_disconnect(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
108 SMB_VFS_DISCONNECT(vfs
->conn
);
112 static NTSTATUS
cmd_disk_free(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
114 uint64_t diskfree
, bsize
, dfree
, dsize
;
116 printf("Usage: disk_free <path>\n");
120 diskfree
= SMB_VFS_DISK_FREE(vfs
->conn
, argv
[1], False
, &bsize
, &dfree
, &dsize
);
121 printf("disk_free: %lu, bsize = %lu, dfree = %lu, dsize = %lu\n",
122 (unsigned long)diskfree
,
123 (unsigned long)bsize
,
124 (unsigned long)dfree
,
125 (unsigned long)dsize
);
130 static NTSTATUS
cmd_opendir(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
133 printf("Usage: opendir <fname>\n");
137 vfs
->currentdir
= SMB_VFS_OPENDIR(vfs
->conn
, argv
[1], NULL
, 0);
138 if (vfs
->currentdir
== NULL
) {
139 printf("opendir error=%d (%s)\n", errno
, strerror(errno
));
140 return NT_STATUS_UNSUCCESSFUL
;
143 printf("opendir: ok\n");
148 static NTSTATUS
cmd_readdir(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
151 struct dirent
*dent
= NULL
;
153 if (vfs
->currentdir
== NULL
) {
154 printf("readdir: error=-1 (no open directory)\n");
155 return NT_STATUS_UNSUCCESSFUL
;
158 dent
= SMB_VFS_READDIR(vfs
->conn
, vfs
->currentdir
, &st
);
160 printf("readdir: NULL\n");
164 printf("readdir: %s\n", dent
->d_name
);
165 if (VALID_STAT(st
)) {
167 printf(" stat available");
168 if (S_ISREG(st
.st_ex_mode
)) printf(" Regular File\n");
169 else if (S_ISDIR(st
.st_ex_mode
)) printf(" Directory\n");
170 else if (S_ISCHR(st
.st_ex_mode
)) printf(" Character Device\n");
171 else if (S_ISBLK(st
.st_ex_mode
)) printf(" Block Device\n");
172 else if (S_ISFIFO(st
.st_ex_mode
)) printf(" Fifo\n");
173 else if (S_ISLNK(st
.st_ex_mode
)) printf(" Symbolic Link\n");
174 else if (S_ISSOCK(st
.st_ex_mode
)) printf(" Socket\n");
175 printf(" Size: %10u", (unsigned int)st
.st_ex_size
);
176 #ifdef HAVE_STAT_ST_BLOCKS
177 printf(" Blocks: %9u", (unsigned int)st
.st_ex_blocks
);
179 #ifdef HAVE_STAT_ST_BLKSIZE
180 printf(" IO Block: %u\n", (unsigned int)st
.st_ex_blksize
);
182 printf(" Device: 0x%10x", (unsigned int)st
.st_ex_dev
);
183 printf(" Inode: %10u", (unsigned int)st
.st_ex_ino
);
184 printf(" Links: %10u\n", (unsigned int)st
.st_ex_nlink
);
185 printf(" Access: %05o", (int)((st
.st_ex_mode
) & 007777));
186 printf(" Uid: %5lu Gid: %5lu\n",
187 (unsigned long)st
.st_ex_uid
,
188 (unsigned long)st
.st_ex_gid
);
189 tmp_time
= convert_timespec_to_time_t(st
.st_ex_atime
);
190 printf(" Access: %s", ctime(&tmp_time
));
191 tmp_time
= convert_timespec_to_time_t(st
.st_ex_mtime
);
192 printf(" Modify: %s", ctime(&tmp_time
));
193 tmp_time
= convert_timespec_to_time_t(st
.st_ex_ctime
);
194 printf(" Change: %s", ctime(&tmp_time
));
201 static NTSTATUS
cmd_mkdir(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
204 printf("Usage: mkdir <path>\n");
208 if (SMB_VFS_MKDIR(vfs
->conn
, argv
[1], 00755) == -1) {
209 printf("mkdir error=%d (%s)\n", errno
, strerror(errno
));
210 return NT_STATUS_UNSUCCESSFUL
;
213 printf("mkdir: ok\n");
218 static NTSTATUS
cmd_closedir(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
222 if (vfs
->currentdir
== NULL
) {
223 printf("closedir: failure (no directory open)\n");
224 return NT_STATUS_UNSUCCESSFUL
;
227 ret
= SMB_VFS_CLOSEDIR(vfs
->conn
, vfs
->currentdir
);
229 printf("closedir failure: %s\n", strerror(errno
));
230 return NT_STATUS_UNSUCCESSFUL
;
233 printf("closedir: ok\n");
234 vfs
->currentdir
= NULL
;
239 static NTSTATUS
cmd_open(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
245 struct smb_filename
*smb_fname
= NULL
;
251 if (argc
< 3 || argc
> 5) {
252 printf("Usage: open <filename> <flags> <mode>\n");
253 printf(" flags: O = O_RDONLY\n");
254 printf(" R = O_RDWR\n");
255 printf(" W = O_WRONLY\n");
256 printf(" C = O_CREAT\n");
257 printf(" E = O_EXCL\n");
258 printf(" T = O_TRUNC\n");
259 printf(" A = O_APPEND\n");
260 printf(" N = O_NONBLOCK/O_NDELAY\n");
262 printf(" S = O_SYNC\n");
265 printf(" F = O_NOFOLLOW\n");
267 printf(" mode: see open.2\n");
268 printf(" mode is ignored if C flag not present\n");
269 printf(" mode defaults to 00400\n");
311 printf("open: error=-1 (invalid flag!)\n");
312 return NT_STATUS_UNSUCCESSFUL
;
316 if ((flags
& O_CREAT
) && argc
== 4) {
317 if (sscanf(argv
[3], "%ho", (unsigned short *)&mode
) == 0) {
318 printf("open: error=-1 (invalid mode!)\n");
319 return NT_STATUS_UNSUCCESSFUL
;
323 fsp
= talloc_zero(vfs
, struct files_struct
);
325 return NT_STATUS_NO_MEMORY
;
327 fsp
->fh
= talloc_zero(fsp
, struct fd_handle
);
328 if (fsp
->fh
== NULL
) {
330 return NT_STATUS_NO_MEMORY
;
332 fsp
->conn
= vfs
->conn
;
334 smb_fname
= synthetic_smb_fname_split(NULL
, argv
[1], NULL
);
335 if (smb_fname
== NULL
) {
337 return NT_STATUS_NO_MEMORY
;
340 fsp
->fsp_name
= smb_fname
;
342 fsp
->fh
->fd
= SMB_VFS_OPEN(vfs
->conn
, smb_fname
, fsp
, flags
, mode
);
343 if (fsp
->fh
->fd
== -1) {
344 printf("open: error=%d (%s)\n", errno
, strerror(errno
));
346 TALLOC_FREE(smb_fname
);
347 return NT_STATUS_UNSUCCESSFUL
;
350 status
= NT_STATUS_OK
;
351 ret
= SMB_VFS_FSTAT(fsp
, &smb_fname
->st
);
353 /* If we have an fd, this stat should succeed. */
354 DEBUG(0,("Error doing fstat on open file %s "
356 smb_fname_str_dbg(smb_fname
),
358 status
= map_nt_error_from_unix(errno
);
359 } else if (S_ISDIR(smb_fname
->st
.st_ex_mode
)) {
361 status
= NT_STATUS_FILE_IS_A_DIRECTORY
;
364 if (!NT_STATUS_IS_OK(status
)) {
367 TALLOC_FREE(smb_fname
);
371 fsp
->file_id
= vfs_file_id_from_sbuf(vfs
->conn
, &smb_fname
->st
);
372 fsp
->vuid
= UID_FIELD_INVALID
;
374 fsp
->can_lock
= True
;
375 fsp
->can_read
= True
;
377 CAN_WRITE(vfs
->conn
);
378 fsp
->print_file
= NULL
;
379 fsp
->modified
= False
;
380 fsp
->sent_oplock_break
= NO_BREAK_SENT
;
381 fsp
->is_directory
= False
;
383 vfs
->files
[fsp
->fh
->fd
] = fsp
;
384 printf("open: fd=%d\n", fsp
->fh
->fd
);
389 static NTSTATUS
cmd_pathfunc(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
394 printf("Usage: %s <path>\n", argv
[0]);
398 if (strcmp("rmdir", argv
[0]) == 0 ) {
399 ret
= SMB_VFS_RMDIR(vfs
->conn
, argv
[1]);
400 } else if (strcmp("unlink", argv
[0]) == 0 ) {
401 struct smb_filename
*smb_fname
;
403 smb_fname
= synthetic_smb_fname_split(mem_ctx
, argv
[1], NULL
);
404 if (smb_fname
== NULL
) {
405 return NT_STATUS_NO_MEMORY
;
408 ret
= SMB_VFS_UNLINK(vfs
->conn
, smb_fname
);
409 TALLOC_FREE(smb_fname
);
410 } else if (strcmp("chdir", argv
[0]) == 0 ) {
411 ret
= SMB_VFS_CHDIR(vfs
->conn
, argv
[1]);
413 printf("%s: error=%d (invalid function name!)\n", argv
[0], errno
);
414 return NT_STATUS_UNSUCCESSFUL
;
418 printf("%s: error=%d (%s)\n", argv
[0], errno
, strerror(errno
));
419 return NT_STATUS_UNSUCCESSFUL
;
422 printf("%s: ok\n", argv
[0]);
427 static NTSTATUS
cmd_close(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
432 printf("Usage: close <fd>\n");
437 if (vfs
->files
[fd
] == NULL
) {
438 printf("close: error=-1 (invalid file descriptor)\n");
442 ret
= SMB_VFS_CLOSE(vfs
->files
[fd
]);
444 printf("close: error=%d (%s)\n", errno
, strerror(errno
));
446 printf("close: ok\n");
448 TALLOC_FREE(vfs
->files
[fd
]);
449 vfs
->files
[fd
] = NULL
;
454 static NTSTATUS
cmd_read(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
460 printf("Usage: read <fd> <size>\n");
464 /* do some error checking on these */
466 size
= atoi(argv
[2]);
467 vfs
->data
= talloc_array(mem_ctx
, char, size
);
468 if (vfs
->data
== NULL
) {
469 printf("read: error=-1 (not enough memory)");
470 return NT_STATUS_UNSUCCESSFUL
;
472 vfs
->data_size
= size
;
474 rsize
= SMB_VFS_READ(vfs
->files
[fd
], vfs
->data
, size
);
476 printf("read: error=%d (%s)\n", errno
, strerror(errno
));
477 return NT_STATUS_UNSUCCESSFUL
;
480 printf("read: ok\n");
485 static NTSTATUS
cmd_write(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
490 printf("Usage: write <fd> <size>\n");
494 /* some error checking should go here */
496 size
= atoi(argv
[2]);
497 if (vfs
->data
== NULL
) {
498 printf("write: error=-1 (buffer empty, please populate it before writing)");
499 return NT_STATUS_UNSUCCESSFUL
;
502 if (vfs
->data_size
< size
) {
503 printf("write: error=-1 (buffer too small, please put some more data in)");
504 return NT_STATUS_UNSUCCESSFUL
;
507 wsize
= SMB_VFS_WRITE(vfs
->files
[fd
], vfs
->data
, size
);
510 printf("write: error=%d (%s)\n", errno
, strerror(errno
));
511 return NT_STATUS_UNSUCCESSFUL
;
514 printf("write: ok\n");
519 static NTSTATUS
cmd_lseek(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
521 int fd
, offset
, whence
;
525 printf("Usage: lseek <fd> <offset> <whence>\n...where whence is 1 => SEEK_SET, 2 => SEEK_CUR, 3 => SEEK_END\n");
530 offset
= atoi(argv
[2]);
531 whence
= atoi(argv
[3]);
533 case 1: whence
= SEEK_SET
; break;
534 case 2: whence
= SEEK_CUR
; break;
535 default: whence
= SEEK_END
;
538 pos
= SMB_VFS_LSEEK(vfs
->files
[fd
], offset
, whence
);
539 if (pos
== (off_t
)-1) {
540 printf("lseek: error=%d (%s)\n", errno
, strerror(errno
));
541 return NT_STATUS_UNSUCCESSFUL
;
544 printf("lseek: ok\n");
549 static NTSTATUS
cmd_rename(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
552 struct smb_filename
*smb_fname_src
= NULL
;
553 struct smb_filename
*smb_fname_dst
= NULL
;
556 printf("Usage: rename <old> <new>\n");
560 smb_fname_src
= synthetic_smb_fname_split(mem_ctx
, argv
[1], NULL
);
561 if (smb_fname_src
== NULL
) {
562 return NT_STATUS_NO_MEMORY
;
565 smb_fname_dst
= synthetic_smb_fname_split(mem_ctx
, argv
[2], NULL
);
566 if (smb_fname_dst
== NULL
) {
567 TALLOC_FREE(smb_fname_src
);
568 return NT_STATUS_NO_MEMORY
;
571 ret
= SMB_VFS_RENAME(vfs
->conn
, smb_fname_src
, smb_fname_dst
);
572 TALLOC_FREE(smb_fname_src
);
573 TALLOC_FREE(smb_fname_dst
);
575 printf("rename: error=%d (%s)\n", errno
, strerror(errno
));
576 return NT_STATUS_UNSUCCESSFUL
;
579 printf("rename: ok\n");
584 static NTSTATUS
cmd_fsync(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
588 printf("Usage: fsync <fd>\n");
593 ret
= SMB_VFS_FSYNC(vfs
->files
[fd
]);
595 printf("fsync: error=%d (%s)\n", errno
, strerror(errno
));
596 return NT_STATUS_UNSUCCESSFUL
;
599 printf("fsync: ok\n");
604 static NTSTATUS
cmd_stat(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
609 struct passwd
*pwd
= NULL
;
610 struct group
*grp
= NULL
;
611 struct smb_filename
*smb_fname
= NULL
;
616 printf("Usage: stat <fname>\n");
620 smb_fname
= synthetic_smb_fname_split(mem_ctx
, argv
[1], NULL
);
621 if (smb_fname
== NULL
) {
622 return NT_STATUS_NO_MEMORY
;
625 ret
= SMB_VFS_STAT(vfs
->conn
, smb_fname
);
627 printf("stat: error=%d (%s)\n", errno
, strerror(errno
));
628 TALLOC_FREE(smb_fname
);
629 return NT_STATUS_UNSUCCESSFUL
;
632 TALLOC_FREE(smb_fname
);
634 pwd
= getpwuid(st
.st_ex_uid
);
635 if (pwd
!= NULL
) user
= pwd
->pw_name
;
636 else user
= null_string
;
637 grp
= getgrgid(st
.st_ex_gid
);
638 if (grp
!= NULL
) group
= grp
->gr_name
;
639 else group
= null_string
;
641 printf("stat: ok\n");
642 printf(" File: %s", argv
[1]);
643 if (S_ISREG(st
.st_ex_mode
)) printf(" Regular File\n");
644 else if (S_ISDIR(st
.st_ex_mode
)) printf(" Directory\n");
645 else if (S_ISCHR(st
.st_ex_mode
)) printf(" Character Device\n");
646 else if (S_ISBLK(st
.st_ex_mode
)) printf(" Block Device\n");
647 else if (S_ISFIFO(st
.st_ex_mode
)) printf(" Fifo\n");
648 else if (S_ISLNK(st
.st_ex_mode
)) printf(" Symbolic Link\n");
649 else if (S_ISSOCK(st
.st_ex_mode
)) printf(" Socket\n");
650 printf(" Size: %10u", (unsigned int)st
.st_ex_size
);
651 #ifdef HAVE_STAT_ST_BLOCKS
652 printf(" Blocks: %9u", (unsigned int)st
.st_ex_blocks
);
654 #ifdef HAVE_STAT_ST_BLKSIZE
655 printf(" IO Block: %u\n", (unsigned int)st
.st_ex_blksize
);
657 printf(" Device: 0x%10x", (unsigned int)st
.st_ex_dev
);
658 printf(" Inode: %10u", (unsigned int)st
.st_ex_ino
);
659 printf(" Links: %10u\n", (unsigned int)st
.st_ex_nlink
);
660 printf(" Access: %05o", (int)((st
.st_ex_mode
) & 007777));
661 printf(" Uid: %5lu/%.16s Gid: %5lu/%.16s\n", (unsigned long)st
.st_ex_uid
, user
,
662 (unsigned long)st
.st_ex_gid
, group
);
663 tmp_time
= convert_timespec_to_time_t(st
.st_ex_atime
);
664 printf(" Access: %s", ctime(&tmp_time
));
665 tmp_time
= convert_timespec_to_time_t(st
.st_ex_mtime
);
666 printf(" Modify: %s", ctime(&tmp_time
));
667 tmp_time
= convert_timespec_to_time_t(st
.st_ex_ctime
);
668 printf(" Change: %s", ctime(&tmp_time
));
674 static NTSTATUS
cmd_fstat(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
679 struct passwd
*pwd
= NULL
;
680 struct group
*grp
= NULL
;
685 printf("Usage: fstat <fd>\n");
690 if (fd
< 0 || fd
>= 1024) {
691 printf("fstat: error=%d (file descriptor out of range)\n", EBADF
);
695 if (vfs
->files
[fd
] == NULL
) {
696 printf("fstat: error=%d (invalid file descriptor)\n", EBADF
);
700 if (SMB_VFS_FSTAT(vfs
->files
[fd
], &st
) == -1) {
701 printf("fstat: error=%d (%s)\n", errno
, strerror(errno
));
702 return NT_STATUS_UNSUCCESSFUL
;
705 pwd
= getpwuid(st
.st_ex_uid
);
706 if (pwd
!= NULL
) user
= pwd
->pw_name
;
707 else user
= null_string
;
708 grp
= getgrgid(st
.st_ex_gid
);
709 if (grp
!= NULL
) group
= grp
->gr_name
;
710 else group
= null_string
;
712 printf("fstat: ok\n");
713 if (S_ISREG(st
.st_ex_mode
)) printf(" Regular File\n");
714 else if (S_ISDIR(st
.st_ex_mode
)) printf(" Directory\n");
715 else if (S_ISCHR(st
.st_ex_mode
)) printf(" Character Device\n");
716 else if (S_ISBLK(st
.st_ex_mode
)) printf(" Block Device\n");
717 else if (S_ISFIFO(st
.st_ex_mode
)) printf(" Fifo\n");
718 else if (S_ISLNK(st
.st_ex_mode
)) printf(" Symbolic Link\n");
719 else if (S_ISSOCK(st
.st_ex_mode
)) printf(" Socket\n");
720 printf(" Size: %10u", (unsigned int)st
.st_ex_size
);
721 #ifdef HAVE_STAT_ST_BLOCKS
722 printf(" Blocks: %9u", (unsigned int)st
.st_ex_blocks
);
724 #ifdef HAVE_STAT_ST_BLKSIZE
725 printf(" IO Block: %u\n", (unsigned int)st
.st_ex_blksize
);
727 printf(" Device: 0x%10x", (unsigned int)st
.st_ex_dev
);
728 printf(" Inode: %10u", (unsigned int)st
.st_ex_ino
);
729 printf(" Links: %10u\n", (unsigned int)st
.st_ex_nlink
);
730 printf(" Access: %05o", (int)((st
.st_ex_mode
) & 007777));
731 printf(" Uid: %5lu/%.16s Gid: %5lu/%.16s\n", (unsigned long)st
.st_ex_uid
, user
,
732 (unsigned long)st
.st_ex_gid
, group
);
733 tmp_time
= convert_timespec_to_time_t(st
.st_ex_atime
);
734 printf(" Access: %s", ctime(&tmp_time
));
735 tmp_time
= convert_timespec_to_time_t(st
.st_ex_mtime
);
736 printf(" Modify: %s", ctime(&tmp_time
));
737 tmp_time
= convert_timespec_to_time_t(st
.st_ex_ctime
);
738 printf(" Change: %s", ctime(&tmp_time
));
744 static NTSTATUS
cmd_lstat(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
748 struct passwd
*pwd
= NULL
;
749 struct group
*grp
= NULL
;
750 struct smb_filename
*smb_fname
= NULL
;
755 printf("Usage: lstat <path>\n");
759 smb_fname
= synthetic_smb_fname_split(mem_ctx
, argv
[1], NULL
);
760 if (smb_fname
== NULL
) {
761 return NT_STATUS_NO_MEMORY
;
764 if (SMB_VFS_LSTAT(vfs
->conn
, smb_fname
) == -1) {
765 printf("lstat: error=%d (%s)\n", errno
, strerror(errno
));
766 TALLOC_FREE(smb_fname
);
767 return NT_STATUS_UNSUCCESSFUL
;
770 TALLOC_FREE(smb_fname
);
772 pwd
= getpwuid(st
.st_ex_uid
);
773 if (pwd
!= NULL
) user
= pwd
->pw_name
;
774 else user
= null_string
;
775 grp
= getgrgid(st
.st_ex_gid
);
776 if (grp
!= NULL
) group
= grp
->gr_name
;
777 else group
= null_string
;
779 printf("lstat: ok\n");
780 if (S_ISREG(st
.st_ex_mode
)) printf(" Regular File\n");
781 else if (S_ISDIR(st
.st_ex_mode
)) printf(" Directory\n");
782 else if (S_ISCHR(st
.st_ex_mode
)) printf(" Character Device\n");
783 else if (S_ISBLK(st
.st_ex_mode
)) printf(" Block Device\n");
784 else if (S_ISFIFO(st
.st_ex_mode
)) printf(" Fifo\n");
785 else if (S_ISLNK(st
.st_ex_mode
)) printf(" Symbolic Link\n");
786 else if (S_ISSOCK(st
.st_ex_mode
)) printf(" Socket\n");
787 printf(" Size: %10u", (unsigned int)st
.st_ex_size
);
788 #ifdef HAVE_STAT_ST_BLOCKS
789 printf(" Blocks: %9u", (unsigned int)st
.st_ex_blocks
);
791 #ifdef HAVE_STAT_ST_BLKSIZE
792 printf(" IO Block: %u\n", (unsigned int)st
.st_ex_blksize
);
794 printf(" Device: 0x%10x", (unsigned int)st
.st_ex_dev
);
795 printf(" Inode: %10u", (unsigned int)st
.st_ex_ino
);
796 printf(" Links: %10u\n", (unsigned int)st
.st_ex_nlink
);
797 printf(" Access: %05o", (int)((st
.st_ex_mode
) & 007777));
798 printf(" Uid: %5lu/%.16s Gid: %5lu/%.16s\n", (unsigned long)st
.st_ex_uid
, user
,
799 (unsigned long)st
.st_ex_gid
, group
);
800 tmp_time
= convert_timespec_to_time_t(st
.st_ex_atime
);
801 printf(" Access: %s", ctime(&tmp_time
));
802 tmp_time
= convert_timespec_to_time_t(st
.st_ex_mtime
);
803 printf(" Modify: %s", ctime(&tmp_time
));
804 tmp_time
= convert_timespec_to_time_t(st
.st_ex_ctime
);
805 printf(" Change: %s", ctime(&tmp_time
));
811 static NTSTATUS
cmd_chmod(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
815 printf("Usage: chmod <path> <mode>\n");
819 mode
= atoi(argv
[2]);
820 if (SMB_VFS_CHMOD(vfs
->conn
, argv
[1], mode
) == -1) {
821 printf("chmod: error=%d (%s)\n", errno
, strerror(errno
));
822 return NT_STATUS_UNSUCCESSFUL
;
825 printf("chmod: ok\n");
830 static NTSTATUS
cmd_fchmod(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
835 printf("Usage: fchmod <fd> <mode>\n");
840 mode
= atoi(argv
[2]);
841 if (fd
< 0 || fd
>= 1024) {
842 printf("fchmod: error=%d (file descriptor out of range)\n", EBADF
);
845 if (vfs
->files
[fd
] == NULL
) {
846 printf("fchmod: error=%d (invalid file descriptor)\n", EBADF
);
850 if (SMB_VFS_FCHMOD(vfs
->files
[fd
], mode
) == -1) {
851 printf("fchmod: error=%d (%s)\n", errno
, strerror(errno
));
852 return NT_STATUS_UNSUCCESSFUL
;
855 printf("fchmod: ok\n");
860 static NTSTATUS
cmd_chmod_acl(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
864 printf("Usage: chmod_acl <path> <mode>\n");
868 mode
= atoi(argv
[2]);
869 if (SMB_VFS_CHMOD_ACL(vfs
->conn
, argv
[1], mode
) == -1) {
870 printf("chmod_acl: error=%d (%s)\n", errno
, strerror(errno
));
871 return NT_STATUS_UNSUCCESSFUL
;
874 printf("chmod_acl: ok\n");
879 static NTSTATUS
cmd_fchmod_acl(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
884 printf("Usage: fchmod_acl <fd> <mode>\n");
889 mode
= atoi(argv
[2]);
890 if (fd
< 0 || fd
>= 1024) {
891 printf("fchmod_acl: error=%d (file descriptor out of range)\n", EBADF
);
894 if (vfs
->files
[fd
] == NULL
) {
895 printf("fchmod_acl: error=%d (invalid file descriptor)\n", EBADF
);
899 if (SMB_VFS_FCHMOD_ACL(vfs
->files
[fd
], mode
) == -1) {
900 printf("fchmod_acl: error=%d (%s)\n", errno
, strerror(errno
));
901 return NT_STATUS_UNSUCCESSFUL
;
904 printf("fchmod_acl: ok\n");
909 static NTSTATUS
cmd_chown(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
914 printf("Usage: chown <path> <uid> <gid>\n");
920 if (SMB_VFS_CHOWN(vfs
->conn
, argv
[1], uid
, gid
) == -1) {
921 printf("chown: error=%d (%s)\n", errno
, strerror(errno
));
922 return NT_STATUS_UNSUCCESSFUL
;
925 printf("chown: ok\n");
930 static NTSTATUS
cmd_fchown(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
936 printf("Usage: fchown <fd> <uid> <gid>\n");
943 if (fd
< 0 || fd
>= 1024) {
944 printf("fchown: faliure=%d (file descriptor out of range)\n", EBADF
);
947 if (vfs
->files
[fd
] == NULL
) {
948 printf("fchown: error=%d (invalid file descriptor)\n", EBADF
);
951 if (SMB_VFS_FCHOWN(vfs
->files
[fd
], uid
, gid
) == -1) {
952 printf("fchown error=%d (%s)\n", errno
, strerror(errno
));
953 return NT_STATUS_UNSUCCESSFUL
;
956 printf("fchown: ok\n");
961 static NTSTATUS
cmd_getwd(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
963 char *buf
= SMB_VFS_GETWD(vfs
->conn
);
965 printf("getwd: error=%d (%s)\n", errno
, strerror(errno
));
966 return NT_STATUS_UNSUCCESSFUL
;
969 printf("getwd: %s\n", buf
);
974 static NTSTATUS
cmd_utime(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
976 struct smb_file_time ft
;
977 struct smb_filename
*smb_fname
= NULL
;
980 printf("Usage: utime <path> <access> <modify>\n");
986 ft
.atime
= convert_time_t_to_timespec(atoi(argv
[2]));
987 ft
.mtime
= convert_time_t_to_timespec(atoi(argv
[3]));
989 smb_fname
= synthetic_smb_fname_split(mem_ctx
, argv
[1], NULL
);
990 if (smb_fname
== NULL
) {
991 return NT_STATUS_NO_MEMORY
;
994 if (SMB_VFS_NTIMES(vfs
->conn
, smb_fname
, &ft
) != 0) {
995 printf("utime: error=%d (%s)\n", errno
, strerror(errno
));
996 TALLOC_FREE(smb_fname
);
997 return NT_STATUS_UNSUCCESSFUL
;
1000 TALLOC_FREE(smb_fname
);
1001 printf("utime: ok\n");
1002 return NT_STATUS_OK
;
1005 static NTSTATUS
cmd_ftruncate(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1010 printf("Usage: ftruncate <fd> <length>\n");
1011 return NT_STATUS_OK
;
1015 off
= atoi(argv
[2]);
1016 if (fd
< 0 || fd
>= 1024) {
1017 printf("ftruncate: error=%d (file descriptor out of range)\n", EBADF
);
1018 return NT_STATUS_OK
;
1020 if (vfs
->files
[fd
] == NULL
) {
1021 printf("ftruncate: error=%d (invalid file descriptor)\n", EBADF
);
1022 return NT_STATUS_OK
;
1025 if (SMB_VFS_FTRUNCATE(vfs
->files
[fd
], off
) == -1) {
1026 printf("ftruncate: error=%d (%s)\n", errno
, strerror(errno
));
1027 return NT_STATUS_UNSUCCESSFUL
;
1030 printf("ftruncate: ok\n");
1031 return NT_STATUS_OK
;
1034 static NTSTATUS
cmd_lock(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1041 const char *typestr
;
1044 printf("Usage: lock <fd> <op> <offset> <count> <type>\n");
1045 printf(" ops: G = F_GETLK\n");
1046 printf(" S = F_SETLK\n");
1047 printf(" W = F_SETLKW\n");
1048 printf(" type: R = F_RDLCK\n");
1049 printf(" W = F_WRLCK\n");
1050 printf(" U = F_UNLCK\n");
1051 return NT_STATUS_OK
;
1054 if (sscanf(argv
[1], "%d", &fd
) == 0) {
1055 printf("lock: error=-1 (error parsing fd)\n");
1056 return NT_STATUS_UNSUCCESSFUL
;
1071 printf("lock: error=-1 (invalid op flag!)\n");
1072 return NT_STATUS_UNSUCCESSFUL
;
1075 if (sscanf(argv
[3], "%ld", &offset
) == 0) {
1076 printf("lock: error=-1 (error parsing fd)\n");
1077 return NT_STATUS_UNSUCCESSFUL
;
1080 if (sscanf(argv
[4], "%ld", &count
) == 0) {
1081 printf("lock: error=-1 (error parsing fd)\n");
1082 return NT_STATUS_UNSUCCESSFUL
;
1099 printf("lock: error=-1 (invalid type flag!)\n");
1100 return NT_STATUS_UNSUCCESSFUL
;
1105 printf("lock: debug lock(fd=%d, op=%d, offset=%ld, count=%ld, type=%d))\n", fd
, op
, offset
, count
, type
);
1107 if (SMB_VFS_LOCK(vfs
->files
[fd
], op
, offset
, count
, type
) == False
) {
1108 printf("lock: error=%d (%s)\n", errno
, strerror(errno
));
1109 return NT_STATUS_UNSUCCESSFUL
;
1112 printf("lock: ok\n");
1113 return NT_STATUS_OK
;
1116 static NTSTATUS
cmd_symlink(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1119 printf("Usage: symlink <path> <link>\n");
1120 return NT_STATUS_OK
;
1123 if (SMB_VFS_SYMLINK(vfs
->conn
, argv
[1], argv
[2]) == -1) {
1124 printf("symlink: error=%d (%s)\n", errno
, strerror(errno
));
1125 return NT_STATUS_UNSUCCESSFUL
;
1128 printf("symlink: ok\n");
1129 return NT_STATUS_OK
;
1133 static NTSTATUS
cmd_readlink(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1135 char buffer
[PATH_MAX
];
1139 printf("Usage: readlink <path>\n");
1140 return NT_STATUS_OK
;
1143 if ((size
= SMB_VFS_READLINK(vfs
->conn
, argv
[1], buffer
, PATH_MAX
)) == -1) {
1144 printf("readlink: error=%d (%s)\n", errno
, strerror(errno
));
1145 return NT_STATUS_UNSUCCESSFUL
;
1148 buffer
[size
] = '\0';
1149 printf("readlink: %s\n", buffer
);
1150 return NT_STATUS_OK
;
1154 static NTSTATUS
cmd_link(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1157 printf("Usage: link <path> <link>\n");
1158 return NT_STATUS_OK
;
1161 if (SMB_VFS_LINK(vfs
->conn
, argv
[1], argv
[2]) == -1) {
1162 printf("link: error=%d (%s)\n", errno
, strerror(errno
));
1163 return NT_STATUS_UNSUCCESSFUL
;
1166 printf("link: ok\n");
1167 return NT_STATUS_OK
;
1170 static NTSTATUS
cmd_mknod(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1173 unsigned int dev_val
;
1177 printf("Usage: mknod <path> <mode> <dev>\n");
1178 printf(" mode is octal\n");
1179 printf(" dev is hex\n");
1180 return NT_STATUS_OK
;
1183 if (sscanf(argv
[2], "%ho", (unsigned short *)&mode
) == 0) {
1184 printf("open: error=-1 (invalid mode!)\n");
1185 return NT_STATUS_UNSUCCESSFUL
;
1188 if (sscanf(argv
[3], "%x", &dev_val
) == 0) {
1189 printf("open: error=-1 (invalid dev!)\n");
1190 return NT_STATUS_UNSUCCESSFUL
;
1192 dev
= (SMB_DEV_T
)dev_val
;
1194 if (SMB_VFS_MKNOD(vfs
->conn
, argv
[1], mode
, dev
) == -1) {
1195 printf("mknod: error=%d (%s)\n", errno
, strerror(errno
));
1196 return NT_STATUS_UNSUCCESSFUL
;
1199 printf("mknod: ok\n");
1200 return NT_STATUS_OK
;
1203 static NTSTATUS
cmd_realpath(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1206 printf("Usage: realpath <path>\n");
1207 return NT_STATUS_OK
;
1210 if (SMB_VFS_REALPATH(vfs
->conn
, argv
[1]) == NULL
) {
1211 printf("realpath: error=%d (%s)\n", errno
, strerror(errno
));
1212 return NT_STATUS_UNSUCCESSFUL
;
1215 printf("realpath: ok\n");
1216 return NT_STATUS_OK
;
1219 static NTSTATUS
cmd_getxattr(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1220 int argc
, const char **argv
)
1226 printf("Usage: getxattr <path> <xattr>\n");
1227 return NT_STATUS_OK
;
1232 ret
= SMB_VFS_GETXATTR(vfs
->conn
, argv
[1], argv
[2], buf
,
1233 talloc_get_size(buf
));
1236 printf("getxattr returned (%s)\n", strerror(err
));
1237 return map_nt_error_from_unix(err
);
1239 buf
= talloc_array(mem_ctx
, uint8_t, ret
);
1241 return NT_STATUS_NO_MEMORY
;
1243 ret
= SMB_VFS_GETXATTR(vfs
->conn
, argv
[1], argv
[2], buf
,
1244 talloc_get_size(buf
));
1247 printf("getxattr returned (%s)\n", strerror(err
));
1248 return map_nt_error_from_unix(err
);
1250 dump_data_file(buf
, talloc_get_size(buf
), false, stdout
);
1251 return NT_STATUS_OK
;
1254 static NTSTATUS
cmd_listxattr(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1255 int argc
, const char **argv
)
1261 printf("Usage: listxattr <path>\n");
1262 return NT_STATUS_OK
;
1267 ret
= SMB_VFS_LISTXATTR(vfs
->conn
, argv
[1], buf
, talloc_get_size(buf
));
1270 printf("listxattr returned (%s)\n", strerror(err
));
1271 return map_nt_error_from_unix(err
);
1273 buf
= talloc_array(mem_ctx
, char, ret
);
1275 return NT_STATUS_NO_MEMORY
;
1277 ret
= SMB_VFS_LISTXATTR(vfs
->conn
, argv
[1], buf
, talloc_get_size(buf
));
1280 printf("listxattr returned (%s)\n", strerror(err
));
1281 return map_nt_error_from_unix(err
);
1284 return NT_STATUS_OK
;
1286 if (buf
[ret
-1] != '\0') {
1287 printf("listxattr returned non 0-terminated strings\n");
1288 return NT_STATUS_INTERNAL_ERROR
;
1292 while (p
< buf
+ret
) {
1297 return NT_STATUS_OK
;
1300 static NTSTATUS
cmd_setxattr(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1301 int argc
, const char **argv
)
1306 if ((argc
< 4) || (argc
> 5)) {
1307 printf("Usage: setxattr <path> <xattr> <value> [flags]\n");
1308 return NT_STATUS_OK
;
1312 flags
= atoi(argv
[4]);
1315 ret
= SMB_VFS_SETXATTR(vfs
->conn
, argv
[1], argv
[2],
1316 argv
[3], strlen(argv
[3]), flags
);
1319 printf("setxattr returned (%s)\n", strerror(err
));
1320 return map_nt_error_from_unix(err
);
1322 return NT_STATUS_OK
;
1325 static NTSTATUS
cmd_removexattr(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1326 int argc
, const char **argv
)
1331 printf("Usage: removexattr <path> <xattr>\n");
1332 return NT_STATUS_OK
;
1335 ret
= SMB_VFS_REMOVEXATTR(vfs
->conn
, argv
[1], argv
[2]);
1338 printf("removexattr returned (%s)\n", strerror(err
));
1339 return map_nt_error_from_unix(err
);
1341 return NT_STATUS_OK
;
1344 static NTSTATUS
cmd_fget_nt_acl(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1345 int argc
, const char **argv
)
1349 struct security_descriptor
*sd
;
1352 printf("Usage: fget_nt_acl <fd>\n");
1353 return NT_STATUS_OK
;
1357 if (fd
< 0 || fd
>= 1024) {
1358 printf("fget_nt_acl: error=%d (file descriptor out of range)\n", EBADF
);
1359 return NT_STATUS_OK
;
1361 if (vfs
->files
[fd
] == NULL
) {
1362 printf("fget_nt_acl: error=%d (invalid file descriptor)\n", EBADF
);
1363 return NT_STATUS_OK
;
1366 status
= SMB_VFS_FGET_NT_ACL(vfs
->files
[fd
],
1367 SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
,
1369 if (!NT_STATUS_IS_OK(status
)) {
1370 printf("fget_nt_acl returned (%s)\n", nt_errstr(status
));
1373 printf("%s\n", sddl_encode(talloc_tos(), sd
, get_global_sam_sid()));
1375 return NT_STATUS_OK
;
1378 static NTSTATUS
cmd_get_nt_acl(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1379 int argc
, const char **argv
)
1382 struct security_descriptor
*sd
;
1385 printf("Usage: get_nt_acl <path>\n");
1386 return NT_STATUS_OK
;
1389 status
= SMB_VFS_GET_NT_ACL(vfs
->conn
, argv
[1],
1390 SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
,
1392 if (!NT_STATUS_IS_OK(status
)) {
1393 printf("get_nt_acl returned (%s)\n", nt_errstr(status
));
1396 printf("%s\n", sddl_encode(talloc_tos(), sd
, get_global_sam_sid()));
1398 return NT_STATUS_OK
;
1401 static NTSTATUS
cmd_fset_nt_acl(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1402 int argc
, const char **argv
)
1406 struct security_descriptor
*sd
;
1409 printf("Usage: fset_nt_acl <fd> <sddl>\n");
1410 return NT_STATUS_OK
;
1414 if (fd
< 0 || fd
>= 1024) {
1415 printf("fset_nt_acl: error=%d (file descriptor out of range)\n", EBADF
);
1416 return NT_STATUS_OK
;
1418 if (vfs
->files
[fd
] == NULL
) {
1419 printf("fset_nt_acl: error=%d (invalid file descriptor)\n", EBADF
);
1420 return NT_STATUS_OK
;
1423 sd
= sddl_decode(talloc_tos(), argv
[2], get_global_sam_sid());
1425 printf("sddl_decode failed to parse %s as SDDL\n", argv
[2]);
1426 return NT_STATUS_INVALID_PARAMETER
;
1429 status
= SMB_VFS_FSET_NT_ACL(vfs
->files
[fd
], SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
, sd
);
1430 if (!NT_STATUS_IS_OK(status
)) {
1431 printf("fset_nt_acl returned (%s)\n", nt_errstr(status
));
1435 return NT_STATUS_OK
;
1438 static NTSTATUS
cmd_set_nt_acl(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
1444 struct smb_filename
*smb_fname
= NULL
;
1446 struct security_descriptor
*sd
= NULL
;
1449 printf("Usage: set_nt_acl <file> <sddl>\n");
1450 return NT_STATUS_OK
;
1455 fsp
= talloc_zero(vfs
, struct files_struct
);
1457 return NT_STATUS_NO_MEMORY
;
1459 fsp
->fh
= talloc_zero(fsp
, struct fd_handle
);
1460 if (fsp
->fh
== NULL
) {
1462 return NT_STATUS_NO_MEMORY
;
1464 fsp
->conn
= vfs
->conn
;
1466 smb_fname
= synthetic_smb_fname_split(NULL
, argv
[1], NULL
);
1467 if (smb_fname
== NULL
) {
1469 return NT_STATUS_NO_MEMORY
;
1472 fsp
->fsp_name
= smb_fname
;
1475 flags
= O_RDONLY
|O_DIRECTORY
;
1477 /* POSIX allows us to open a directory with O_RDONLY. */
1481 fsp
->fh
->fd
= SMB_VFS_OPEN(vfs
->conn
, smb_fname
, fsp
, O_RDWR
, mode
);
1482 if (fsp
->fh
->fd
== -1 && errno
== EISDIR
) {
1483 fsp
->fh
->fd
= SMB_VFS_OPEN(vfs
->conn
, smb_fname
, fsp
, flags
, mode
);
1485 if (fsp
->fh
->fd
== -1) {
1486 printf("open: error=%d (%s)\n", errno
, strerror(errno
));
1488 TALLOC_FREE(smb_fname
);
1489 return NT_STATUS_UNSUCCESSFUL
;
1492 status
= NT_STATUS_OK
;
1493 ret
= SMB_VFS_FSTAT(fsp
, &smb_fname
->st
);
1495 /* If we have an fd, this stat should succeed. */
1496 DEBUG(0,("Error doing fstat on open file %s "
1498 smb_fname_str_dbg(smb_fname
),
1500 status
= map_nt_error_from_unix(errno
);
1503 if (!NT_STATUS_IS_OK(status
)) {
1507 fsp
->file_id
= vfs_file_id_from_sbuf(vfs
->conn
, &smb_fname
->st
);
1508 fsp
->vuid
= UID_FIELD_INVALID
;
1510 fsp
->can_lock
= True
;
1511 fsp
->can_read
= True
;
1512 fsp
->can_write
= True
;
1513 fsp
->print_file
= NULL
;
1514 fsp
->modified
= False
;
1515 fsp
->sent_oplock_break
= NO_BREAK_SENT
;
1516 fsp
->is_directory
= S_ISDIR(smb_fname
->st
.st_ex_mode
);
1519 sd
= sddl_decode(talloc_tos(), argv
[2], get_global_sam_sid());
1521 printf("sddl_decode failed to parse %s as SDDL\n", argv
[2]);
1522 status
= NT_STATUS_INVALID_PARAMETER
;
1526 status
= SMB_VFS_FSET_NT_ACL(fsp
, SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
, sd
);
1527 if (!NT_STATUS_IS_OK(status
)) {
1528 printf("fset_nt_acl returned (%s)\n", nt_errstr(status
));
1534 ret
= SMB_VFS_CLOSE(fsp
);
1536 printf("close: error=%d (%s)\n", errno
, strerror(errno
));
1545 static NTSTATUS
cmd_sys_acl_get_fd(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1546 int argc
, const char **argv
)
1553 printf("Usage: sys_acl_get_fd <fd>\n");
1554 return NT_STATUS_OK
;
1558 if (fd
< 0 || fd
>= 1024) {
1559 printf("sys_acl_get_fd: error=%d (file descriptor out of range)\n", EBADF
);
1560 return NT_STATUS_OK
;
1562 if (vfs
->files
[fd
] == NULL
) {
1563 printf("sys_acl_get_fd: error=%d (invalid file descriptor)\n", EBADF
);
1564 return NT_STATUS_OK
;
1567 acl
= SMB_VFS_SYS_ACL_GET_FD(vfs
->files
[fd
], talloc_tos());
1569 printf("sys_acl_get_fd failed (%s)\n", strerror(errno
));
1570 return NT_STATUS_UNSUCCESSFUL
;
1572 acl_text
= sys_acl_to_text(acl
, NULL
);
1573 printf("%s", acl_text
);
1575 SAFE_FREE(acl_text
);
1576 return NT_STATUS_OK
;
1579 static NTSTATUS
cmd_sys_acl_get_file(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1580 int argc
, const char **argv
)
1586 printf("Usage: sys_acl_get_file <path> <type>\n");
1587 return NT_STATUS_OK
;
1590 type
= atoi(argv
[2]);
1591 acl
= SMB_VFS_SYS_ACL_GET_FILE(vfs
->conn
, argv
[1], type
, talloc_tos());
1593 printf("sys_acl_get_file failed (%s)\n", strerror(errno
));
1594 return NT_STATUS_UNSUCCESSFUL
;
1596 acl_text
= sys_acl_to_text(acl
, NULL
);
1597 printf("%s", acl_text
);
1599 SAFE_FREE(acl_text
);
1600 return NT_STATUS_OK
;
1603 static NTSTATUS
cmd_sys_acl_blob_get_file(struct vfs_state
*vfs
,
1604 TALLOC_CTX
*mem_ctx
,
1605 int argc
, const char **argv
)
1613 printf("Usage: sys_acl_get_file <path>\n");
1614 return NT_STATUS_OK
;
1617 ret
= SMB_VFS_SYS_ACL_BLOB_GET_FILE(vfs
->conn
, argv
[1], talloc_tos(),
1618 &description
, &blob
);
1620 printf("sys_acl_blob_get_file failed (%s)\n", strerror(errno
));
1621 return map_nt_error_from_unix(errno
);
1623 printf("Description: %s\n", description
);
1624 for (i
= 0; i
< blob
.length
; i
++) {
1625 printf("%.2x ", blob
.data
[i
]);
1629 return NT_STATUS_OK
;
1632 static NTSTATUS
cmd_sys_acl_blob_get_fd(struct vfs_state
*vfs
,
1633 TALLOC_CTX
*mem_ctx
,
1634 int argc
, const char **argv
)
1643 printf("Usage: sys_acl_blob_get_fd <fd>\n");
1644 return NT_STATUS_OK
;
1648 if (fd
< 0 || fd
>= 1024) {
1649 printf("sys_acl_blob_get_fd: error=%d "
1650 "(file descriptor out of range)\n", EBADF
);
1651 return NT_STATUS_OK
;
1653 if (vfs
->files
[fd
] == NULL
) {
1654 printf("sys_acl_blob_get_fd: error=%d "
1655 "(invalid file descriptor)\n", EBADF
);
1656 return NT_STATUS_OK
;
1659 ret
= SMB_VFS_SYS_ACL_BLOB_GET_FD(vfs
->files
[fd
], talloc_tos(),
1660 &description
, &blob
);
1662 printf("sys_acl_blob_get_fd failed (%s)\n", strerror(errno
));
1663 return map_nt_error_from_unix(errno
);
1665 printf("Description: %s\n", description
);
1666 for (i
= 0; i
< blob
.length
; i
++) {
1667 printf("%.2x ", blob
.data
[i
]);
1671 return NT_STATUS_OK
;
1676 static NTSTATUS
cmd_sys_acl_delete_def_file(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1677 int argc
, const char **argv
)
1682 printf("Usage: sys_acl_delete_def_file <path>\n");
1683 return NT_STATUS_OK
;
1686 ret
= SMB_VFS_SYS_ACL_DELETE_DEF_FILE(vfs
->conn
, argv
[1]);
1688 printf("sys_acl_delete_def_file failed (%s)\n", strerror(errno
));
1689 return NT_STATUS_UNSUCCESSFUL
;
1691 return NT_STATUS_OK
;
1694 /* Afaik translate name was first introduced with vfs_catia, to be able
1695 to translate unix file/dir-names, containing invalid windows characters,
1696 to valid windows names.
1697 The used translation direction is always unix --> windows
1699 static NTSTATUS
cmd_translate_name(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
1700 int argc
, const char **argv
)
1703 struct dirent
*dent
= NULL
;
1706 char *translated
= NULL
;
1710 DEBUG(0, ("Usage: translate_name unix_filename\n"));
1711 return NT_STATUS_UNSUCCESSFUL
;
1714 vfs
->currentdir
= SMB_VFS_OPENDIR(vfs
->conn
, ".", NULL
, 0);
1715 if (vfs
->currentdir
== NULL
) {
1716 DEBUG(0, ("cmd_translate_name: opendir error=%d (%s)\n",
1717 errno
, strerror(errno
)));
1718 return NT_STATUS_UNSUCCESSFUL
;
1722 dent
= SMB_VFS_READDIR(vfs
->conn
, vfs
->currentdir
, &st
);
1726 if (strcmp (dent
->d_name
, argv
[1]) == 0) {
1733 DEBUG(0, ("cmd_translate_name: file '%s' not found.\n",
1735 status
= NT_STATUS_UNSUCCESSFUL
;
1738 status
= SMB_VFS_TRANSLATE_NAME(vfs
->conn
, dent
->d_name
,
1739 vfs_translate_to_windows
,
1740 talloc_tos(), &translated
);
1741 if (NT_STATUS_EQUAL(status
, NT_STATUS_NONE_MAPPED
)) {
1742 DEBUG(0, ("cmd_translate_name: file '%s' cannot be "
1743 "translated\n", argv
[1]));
1744 TALLOC_FREE(translated
);
1747 /* translation success. But that could also mean
1748 that translating "aaa" to "aaa" was successful :-(
1750 DEBUG(0, ("cmd_translate_name: file '%s' --> '%s'\n",
1751 argv
[1], translated
));
1753 TALLOC_FREE(translated
);
1756 ret
= SMB_VFS_CLOSEDIR(vfs
->conn
, vfs
->currentdir
);
1758 DEBUG(0, ("cmd_translate_name: closedir failure: %s\n",
1760 return NT_STATUS_UNSUCCESSFUL
;
1763 vfs
->currentdir
= NULL
;
1768 struct cmd_set vfs_commands
[] = {
1772 { "load", cmd_load_module
, "Load a module", "load <module.so>" },
1773 { "populate", cmd_populate
, "Populate a data buffer", "populate <char> <size>" },
1774 { "showdata", cmd_show_data
, "Show data currently in data buffer", "show_data [<offset> <len>]"},
1775 { "connect", cmd_connect
, "VFS connect()", "connect" },
1776 { "disconnect", cmd_disconnect
, "VFS disconnect()", "disconnect" },
1777 { "disk_free", cmd_disk_free
, "VFS disk_free()", "disk_free <path>" },
1778 { "opendir", cmd_opendir
, "VFS opendir()", "opendir <fname>" },
1779 { "readdir", cmd_readdir
, "VFS readdir()", "readdir" },
1780 { "mkdir", cmd_mkdir
, "VFS mkdir()", "mkdir <path>" },
1781 { "rmdir", cmd_pathfunc
, "VFS rmdir()", "rmdir <path>" },
1782 { "closedir", cmd_closedir
, "VFS closedir()", "closedir" },
1783 { "open", cmd_open
, "VFS open()", "open <fname> <flags> <mode>" },
1784 { "close", cmd_close
, "VFS close()", "close <fd>" },
1785 { "read", cmd_read
, "VFS read()", "read <fd> <size>" },
1786 { "write", cmd_write
, "VFS write()", "write <fd> <size>" },
1787 { "lseek", cmd_lseek
, "VFS lseek()", "lseek <fd> <offset> <whence>" },
1788 { "rename", cmd_rename
, "VFS rename()", "rename <old> <new>" },
1789 { "fsync", cmd_fsync
, "VFS fsync()", "fsync <fd>" },
1790 { "stat", cmd_stat
, "VFS stat()", "stat <fname>" },
1791 { "fstat", cmd_fstat
, "VFS fstat()", "fstat <fd>" },
1792 { "lstat", cmd_lstat
, "VFS lstat()", "lstat <fname>" },
1793 { "unlink", cmd_pathfunc
, "VFS unlink()", "unlink <fname>" },
1794 { "chmod", cmd_chmod
, "VFS chmod()", "chmod <path> <mode>" },
1795 { "fchmod", cmd_fchmod
, "VFS fchmod()", "fchmod <fd> <mode>" },
1796 { "chown", cmd_chown
, "VFS chown()", "chown <path> <uid> <gid>" },
1797 { "fchown", cmd_fchown
, "VFS fchown()", "fchown <fd> <uid> <gid>" },
1798 { "chdir", cmd_pathfunc
, "VFS chdir()", "chdir <path>" },
1799 { "getwd", cmd_getwd
, "VFS getwd()", "getwd" },
1800 { "utime", cmd_utime
, "VFS utime()", "utime <path> <access> <modify>" },
1801 { "ftruncate", cmd_ftruncate
, "VFS ftruncate()", "ftruncate <fd> <length>" },
1802 { "lock", cmd_lock
, "VFS lock()", "lock <f> <op> <offset> <count> <type>" },
1803 { "symlink", cmd_symlink
, "VFS symlink()", "symlink <old> <new>" },
1804 { "readlink", cmd_readlink
, "VFS readlink()", "readlink <path>" },
1805 { "link", cmd_link
, "VFS link()", "link <oldpath> <newpath>" },
1806 { "mknod", cmd_mknod
, "VFS mknod()", "mknod <path> <mode> <dev>" },
1807 { "realpath", cmd_realpath
, "VFS realpath()", "realpath <path>" },
1808 { "getxattr", cmd_getxattr
, "VFS getxattr()",
1809 "getxattr <path> <name>" },
1810 { "listxattr", cmd_listxattr
, "VFS listxattr()",
1811 "listxattr <path>" },
1812 { "setxattr", cmd_setxattr
, "VFS setxattr()",
1813 "setxattr <path> <name> <value> [<flags>]" },
1814 { "removexattr", cmd_removexattr
, "VFS removexattr()",
1815 "removexattr <path> <name>\n" },
1816 { "fget_nt_acl", cmd_fget_nt_acl
, "VFS fget_nt_acl()",
1817 "fget_nt_acl <fd>\n" },
1818 { "get_nt_acl", cmd_get_nt_acl
, "VFS get_nt_acl()",
1819 "get_nt_acl <path>\n" },
1820 { "fset_nt_acl", cmd_fset_nt_acl
, "VFS fset_nt_acl()",
1821 "fset_nt_acl <fd>\n" },
1822 { "set_nt_acl", cmd_set_nt_acl
, "VFS open() and fset_nt_acl()",
1823 "set_nt_acl <file>\n" },
1824 { "fchmod_acl", cmd_fchmod_acl
, "VFS fchmod_acl()", "fchmod_acl <fd> <mode>" },
1825 { "chmod_acl", cmd_chmod_acl
, "VFS chmod_acl()", "chmod_acl <path> <mode>" },
1826 { "sys_acl_get_file", cmd_sys_acl_get_file
, "VFS sys_acl_get_file()", "sys_acl_get_file <path>" },
1827 { "sys_acl_get_fd", cmd_sys_acl_get_fd
, "VFS sys_acl_get_fd()", "sys_acl_get_fd <fd>" },
1828 { "sys_acl_blob_get_file", cmd_sys_acl_blob_get_file
,
1829 "VFS sys_acl_blob_get_file()", "sys_acl_blob_get_file <path>" },
1830 { "sys_acl_blob_get_fd", cmd_sys_acl_blob_get_fd
,
1831 "VFS sys_acl_blob_get_fd()", "sys_acl_blob_get_fd <path>" },
1832 { "sys_acl_delete_def_file", cmd_sys_acl_delete_def_file
, "VFS sys_acl_delete_def_file()", "sys_acl_delete_def_file <path>" },
1835 { "test_chain", cmd_test_chain
, "test chain code",
1837 { "translate_name", cmd_translate_name
, "VFS translate_name()", "translate_name unix_filename" },