2 Unix SMB/CIFS implementation.
3 Wrap disk only vfs functions to sidestep dodgy compilers.
4 Copyright (C) Tim Potter 1998
5 Copyright (C) Jeremy Allison 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #define DBGC_CLASS DBGC_VFS
26 /* Check for NULL pointer parameters in vfswrap_* functions */
28 /* We don't want to have NULL function pointers lying around. Someone
29 is sure to try and execute them. These stubs are used to prevent
32 static int vfswrap_connect(vfs_handle_struct
*handle
, const char *service
, const char *user
)
34 return 0; /* Return >= 0 for success */
37 static void vfswrap_disconnect(vfs_handle_struct
*handle
)
43 static SMB_BIG_UINT
vfswrap_disk_free(vfs_handle_struct
*handle
, const char *path
, bool small_query
, SMB_BIG_UINT
*bsize
,
44 SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
)
48 result
= sys_disk_free(handle
->conn
, path
, small_query
, bsize
, dfree
, dsize
);
52 static int vfswrap_get_quota(struct vfs_handle_struct
*handle
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*qt
)
54 #ifdef HAVE_SYS_QUOTAS
57 START_PROFILE(syscall_get_quota
);
58 result
= sys_get_quota(handle
->conn
->connectpath
, qtype
, id
, qt
);
59 END_PROFILE(syscall_get_quota
);
67 static int vfswrap_set_quota(struct vfs_handle_struct
*handle
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*qt
)
69 #ifdef HAVE_SYS_QUOTAS
72 START_PROFILE(syscall_set_quota
);
73 result
= sys_set_quota(handle
->conn
->connectpath
, qtype
, id
, qt
);
74 END_PROFILE(syscall_set_quota
);
82 static int vfswrap_get_shadow_copy_data(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SHADOW_COPY_DATA
*shadow_copy_data
, bool labels
)
85 return -1; /* Not implemented. */
88 static int vfswrap_statvfs(struct vfs_handle_struct
*handle
, const char *path
, vfs_statvfs_struct
*statbuf
)
90 return sys_statvfs(path
, statbuf
);
93 /* Directory operations */
95 static SMB_STRUCT_DIR
*vfswrap_opendir(vfs_handle_struct
*handle
, const char *fname
, const char *mask
, uint32 attr
)
97 SMB_STRUCT_DIR
*result
;
99 START_PROFILE(syscall_opendir
);
100 result
= sys_opendir(fname
);
101 END_PROFILE(syscall_opendir
);
105 static SMB_STRUCT_DIRENT
*vfswrap_readdir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
107 SMB_STRUCT_DIRENT
*result
;
109 START_PROFILE(syscall_readdir
);
110 result
= sys_readdir(dirp
);
111 END_PROFILE(syscall_readdir
);
115 static void vfswrap_seekdir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
, long offset
)
117 START_PROFILE(syscall_seekdir
);
118 sys_seekdir(dirp
, offset
);
119 END_PROFILE(syscall_seekdir
);
122 static long vfswrap_telldir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
125 START_PROFILE(syscall_telldir
);
126 result
= sys_telldir(dirp
);
127 END_PROFILE(syscall_telldir
);
131 static void vfswrap_rewinddir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
133 START_PROFILE(syscall_rewinddir
);
135 END_PROFILE(syscall_rewinddir
);
138 static int vfswrap_mkdir(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
141 bool has_dacl
= False
;
143 START_PROFILE(syscall_mkdir
);
145 if (lp_inherit_acls(SNUM(handle
->conn
)) && (has_dacl
= directory_has_default_acl(handle
->conn
, parent_dirname(path
))))
148 result
= mkdir(path
, mode
);
150 if (result
== 0 && !has_dacl
) {
152 * We need to do this as the default behavior of POSIX ACLs
153 * is to set the mask to be the requested group permission
154 * bits, not the group permission bits to be the requested
155 * group permission bits. This is not what we want, as it will
156 * mess up any inherited ACL bits that were set. JRA.
158 int saved_errno
= errno
; /* We may get ENOSYS */
159 if ((SMB_VFS_CHMOD_ACL(handle
->conn
, path
, mode
) == -1) && (errno
== ENOSYS
))
163 END_PROFILE(syscall_mkdir
);
167 static int vfswrap_rmdir(vfs_handle_struct
*handle
, const char *path
)
171 START_PROFILE(syscall_rmdir
);
172 result
= rmdir(path
);
173 END_PROFILE(syscall_rmdir
);
177 static int vfswrap_closedir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
181 START_PROFILE(syscall_closedir
);
182 result
= sys_closedir(dirp
);
183 END_PROFILE(syscall_closedir
);
187 /* File operations */
189 static int vfswrap_open(vfs_handle_struct
*handle
, const char *fname
,
190 files_struct
*fsp
, int flags
, mode_t mode
)
194 START_PROFILE(syscall_open
);
195 result
= sys_open(fname
, flags
, mode
);
196 END_PROFILE(syscall_open
);
200 static int vfswrap_close(vfs_handle_struct
*handle
, files_struct
*fsp
, int fd
)
204 START_PROFILE(syscall_close
);
207 END_PROFILE(syscall_close
);
211 static ssize_t
vfswrap_read(vfs_handle_struct
*handle
, files_struct
*fsp
, void *data
, size_t n
)
215 START_PROFILE_BYTES(syscall_read
, n
);
216 result
= sys_read(fsp
->fh
->fd
, data
, n
);
217 END_PROFILE(syscall_read
);
221 static ssize_t
vfswrap_pread(vfs_handle_struct
*handle
, files_struct
*fsp
, void *data
,
222 size_t n
, SMB_OFF_T offset
)
226 #if defined(HAVE_PREAD) || defined(HAVE_PREAD64)
227 START_PROFILE_BYTES(syscall_pread
, n
);
228 result
= sys_pread(fsp
->fh
->fd
, data
, n
, offset
);
229 END_PROFILE(syscall_pread
);
231 if (result
== -1 && errno
== ESPIPE
) {
232 /* Maintain the fiction that pipes can be seeked (sought?) on. */
233 result
= SMB_VFS_READ(fsp
, data
, n
);
237 #else /* HAVE_PREAD */
241 curr
= SMB_VFS_LSEEK(fsp
, 0, SEEK_CUR
);
242 if (curr
== -1 && errno
== ESPIPE
) {
243 /* Maintain the fiction that pipes can be seeked (sought?) on. */
244 result
= SMB_VFS_READ(fsp
, data
, n
);
249 if (SMB_VFS_LSEEK(fsp
, offset
, SEEK_SET
) == -1) {
254 result
= SMB_VFS_READ(fsp
, data
, n
);
257 SMB_VFS_LSEEK(fsp
, curr
, SEEK_SET
);
260 #endif /* HAVE_PREAD */
265 static ssize_t
vfswrap_write(vfs_handle_struct
*handle
, files_struct
*fsp
, const void *data
, size_t n
)
269 START_PROFILE_BYTES(syscall_write
, n
);
270 result
= sys_write(fsp
->fh
->fd
, data
, n
);
271 END_PROFILE(syscall_write
);
275 static ssize_t
vfswrap_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
, const void *data
,
276 size_t n
, SMB_OFF_T offset
)
280 #if defined(HAVE_PWRITE) || defined(HAVE_PRWITE64)
281 START_PROFILE_BYTES(syscall_pwrite
, n
);
282 result
= sys_pwrite(fsp
->fh
->fd
, data
, n
, offset
);
283 END_PROFILE(syscall_pwrite
);
285 if (result
== -1 && errno
== ESPIPE
) {
286 /* Maintain the fiction that pipes can be sought on. */
287 result
= SMB_VFS_WRITE(fsp
, data
, n
);
290 #else /* HAVE_PWRITE */
294 curr
= SMB_VFS_LSEEK(fsp
, 0, SEEK_CUR
);
299 if (SMB_VFS_LSEEK(fsp
, offset
, SEEK_SET
) == -1) {
303 result
= SMB_VFS_WRITE(fsp
, data
, n
);
306 SMB_VFS_LSEEK(fsp
, curr
, SEEK_SET
);
309 #endif /* HAVE_PWRITE */
314 static SMB_OFF_T
vfswrap_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T offset
, int whence
)
316 SMB_OFF_T result
= 0;
318 START_PROFILE(syscall_lseek
);
320 /* Cope with 'stat' file opens. */
321 if (fsp
->fh
->fd
!= -1)
322 result
= sys_lseek(fsp
->fh
->fd
, offset
, whence
);
325 * We want to maintain the fiction that we can seek
326 * on a fifo for file system purposes. This allows
327 * people to set up UNIX fifo's that feed data to Windows
331 if((result
== -1) && (errno
== ESPIPE
)) {
336 END_PROFILE(syscall_lseek
);
340 static ssize_t
vfswrap_sendfile(vfs_handle_struct
*handle
, int tofd
, files_struct
*fromfsp
, const DATA_BLOB
*hdr
,
341 SMB_OFF_T offset
, size_t n
)
345 START_PROFILE_BYTES(syscall_sendfile
, n
);
346 result
= sys_sendfile(tofd
, fromfsp
->fh
->fd
, hdr
, offset
, n
);
347 END_PROFILE(syscall_sendfile
);
351 static ssize_t
vfswrap_recvfile(vfs_handle_struct
*handle
,
359 START_PROFILE_BYTES(syscall_recvfile
, n
);
360 result
= sys_recvfile(fromfd
, tofsp
->fh
->fd
, offset
, n
);
361 END_PROFILE(syscall_recvfile
);
365 /*********************************************************
366 For rename across filesystems Patch from Warren Birnbaum
367 <warrenb@hpcvscdp.cv.hp.com>
368 **********************************************************/
370 static int copy_reg(const char *source
, const char *dest
)
372 SMB_STRUCT_STAT source_stats
;
377 if (sys_lstat (source
, &source_stats
) == -1)
380 if (!S_ISREG (source_stats
.st_mode
))
383 if((ifd
= sys_open (source
, O_RDONLY
, 0)) < 0)
386 if (unlink (dest
) && errno
!= ENOENT
)
390 if((ofd
= sys_open (dest
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_NOFOLLOW
, 0600)) < 0 )
392 if((ofd
= sys_open (dest
, O_WRONLY
| O_CREAT
| O_TRUNC
, 0600)) < 0 )
396 if (transfer_file(ifd
, ofd
, (size_t)-1) == -1)
400 * Try to preserve ownership. For non-root it might fail, but that's ok.
401 * But root probably wants to know, e.g. if NFS disallows it.
405 if ((fchown(ofd
, source_stats
.st_uid
, source_stats
.st_gid
) == -1) && (errno
!= EPERM
))
407 if ((chown(dest
, source_stats
.st_uid
, source_stats
.st_gid
) == -1) && (errno
!= EPERM
))
412 * fchown turns off set[ug]id bits for non-root,
413 * so do the chmod last.
416 #if defined(HAVE_FCHMOD)
417 if (fchmod (ofd
, source_stats
.st_mode
& 07777))
419 if (chmod (dest
, source_stats
.st_mode
& 07777))
423 if (close (ifd
) == -1)
426 if (close (ofd
) == -1)
429 /* Try to copy the old file's modtime and access time. */
433 tv
.actime
= source_stats
.st_atime
;
434 tv
.modtime
= source_stats
.st_mtime
;
438 if (unlink (source
) == -1)
454 static int vfswrap_rename(vfs_handle_struct
*handle
, const char *oldname
, const char *newname
)
458 START_PROFILE(syscall_rename
);
459 result
= rename(oldname
, newname
);
460 if (errno
== EXDEV
) {
461 /* Rename across filesystems needed. */
462 result
= copy_reg(oldname
, newname
);
465 END_PROFILE(syscall_rename
);
469 static int vfswrap_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
474 START_PROFILE(syscall_fsync
);
475 result
= fsync(fsp
->fh
->fd
);
476 END_PROFILE(syscall_fsync
);
483 static int vfswrap_stat(vfs_handle_struct
*handle
, const char *fname
, SMB_STRUCT_STAT
*sbuf
)
487 START_PROFILE(syscall_stat
);
488 result
= sys_stat(fname
, sbuf
);
489 END_PROFILE(syscall_stat
);
493 static int vfswrap_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
497 START_PROFILE(syscall_fstat
);
498 result
= sys_fstat(fsp
->fh
->fd
, sbuf
);
499 END_PROFILE(syscall_fstat
);
503 int vfswrap_lstat(vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
)
507 START_PROFILE(syscall_lstat
);
508 result
= sys_lstat(path
, sbuf
);
509 END_PROFILE(syscall_lstat
);
513 static int vfswrap_unlink(vfs_handle_struct
*handle
, const char *path
)
517 START_PROFILE(syscall_unlink
);
518 result
= unlink(path
);
519 END_PROFILE(syscall_unlink
);
523 static int vfswrap_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
527 START_PROFILE(syscall_chmod
);
530 * We need to do this due to the fact that the default POSIX ACL
531 * chmod modifies the ACL *mask* for the group owner, not the
532 * group owner bits directly. JRA.
537 int saved_errno
= errno
; /* We might get ENOSYS */
538 if ((result
= SMB_VFS_CHMOD_ACL(handle
->conn
, path
, mode
)) == 0) {
539 END_PROFILE(syscall_chmod
);
542 /* Error - return the old errno. */
546 result
= chmod(path
, mode
);
547 END_PROFILE(syscall_chmod
);
551 static int vfswrap_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
555 START_PROFILE(syscall_fchmod
);
558 * We need to do this due to the fact that the default POSIX ACL
559 * chmod modifies the ACL *mask* for the group owner, not the
560 * group owner bits directly. JRA.
564 int saved_errno
= errno
; /* We might get ENOSYS */
565 if ((result
= SMB_VFS_FCHMOD_ACL(fsp
, mode
)) == 0) {
566 END_PROFILE(syscall_fchmod
);
569 /* Error - return the old errno. */
573 #if defined(HAVE_FCHMOD)
574 result
= fchmod(fsp
->fh
->fd
, mode
);
580 END_PROFILE(syscall_fchmod
);
584 static int vfswrap_chown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
588 START_PROFILE(syscall_chown
);
589 result
= sys_chown(path
, uid
, gid
);
590 END_PROFILE(syscall_chown
);
594 static int vfswrap_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
, uid_t uid
, gid_t gid
)
599 START_PROFILE(syscall_fchown
);
600 result
= fchown(fsp
->fh
->fd
, uid
, gid
);
601 END_PROFILE(syscall_fchown
);
609 static int vfswrap_lchown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
613 START_PROFILE(syscall_lchown
);
614 result
= sys_lchown(path
, uid
, gid
);
615 END_PROFILE(syscall_lchown
);
619 static int vfswrap_chdir(vfs_handle_struct
*handle
, const char *path
)
623 START_PROFILE(syscall_chdir
);
624 result
= chdir(path
);
625 END_PROFILE(syscall_chdir
);
629 static char *vfswrap_getwd(vfs_handle_struct
*handle
, char *path
)
633 START_PROFILE(syscall_getwd
);
634 result
= sys_getwd(path
);
635 END_PROFILE(syscall_getwd
);
639 /*********************************************************************
640 nsec timestamp resolution call. Convert down to whatever the underlying
642 **********************************************************************/
644 static int vfswrap_ntimes(vfs_handle_struct
*handle
, const char *path
, const struct timespec ts
[2])
648 START_PROFILE(syscall_ntimes
);
649 #if defined(HAVE_UTIMES)
651 struct timeval tv
[2];
652 tv
[0] = convert_timespec_to_timeval(ts
[0]);
653 tv
[1] = convert_timespec_to_timeval(ts
[1]);
654 result
= utimes(path
, tv
);
656 #elif defined(HAVE_UTIME)
658 struct utimbuf times
;
659 times
.actime
= convert_timespec_to_time_t(ts
[0]);
660 times
.modtime
= convert_timespec_to_time_t(ts
[1]);
661 result
= utime(path
, times
);
667 END_PROFILE(syscall_ntimes
);
671 /*********************************************************************
672 A version of ftruncate that will write the space on disk if strict
674 **********************************************************************/
676 static int strict_allocate_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T len
)
679 SMB_OFF_T currpos
= SMB_VFS_LSEEK(fsp
, 0, SEEK_CUR
);
680 unsigned char zero_space
[4096];
681 SMB_OFF_T space_to_write
;
686 if (SMB_VFS_FSTAT(fsp
, &st
) == -1)
689 space_to_write
= len
- st
.st_size
;
692 if (S_ISFIFO(st
.st_mode
))
696 if (st
.st_size
== len
)
699 /* Shrink - just ftruncate. */
700 if (st
.st_size
> len
)
701 return sys_ftruncate(fsp
->fh
->fd
, len
);
703 /* Write out the real space on disk. */
704 if (SMB_VFS_LSEEK(fsp
, st
.st_size
, SEEK_SET
) != st
.st_size
)
707 space_to_write
= len
- st
.st_size
;
709 memset(zero_space
, '\0', sizeof(zero_space
));
710 while ( space_to_write
> 0) {
712 SMB_OFF_T current_len_to_write
= MIN(sizeof(zero_space
),space_to_write
);
714 retlen
= SMB_VFS_WRITE(fsp
,(char *)zero_space
,current_len_to_write
);
718 space_to_write
-= retlen
;
721 /* Seek to where we were */
722 if (SMB_VFS_LSEEK(fsp
, currpos
, SEEK_SET
) != currpos
)
728 static int vfswrap_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T len
)
735 START_PROFILE(syscall_ftruncate
);
737 if (lp_strict_allocate(SNUM(fsp
->conn
))) {
738 result
= strict_allocate_ftruncate(handle
, fsp
, len
);
739 END_PROFILE(syscall_ftruncate
);
743 /* we used to just check HAVE_FTRUNCATE_EXTEND and only use
744 sys_ftruncate if the system supports it. Then I discovered that
745 you can have some filesystems that support ftruncate
746 expansion and some that don't! On Linux fat can't do
747 ftruncate extend but ext2 can. */
749 result
= sys_ftruncate(fsp
->fh
->fd
, len
);
753 /* According to W. R. Stevens advanced UNIX prog. Pure 4.3 BSD cannot
754 extend a file with ftruncate. Provide alternate implementation
756 currpos
= SMB_VFS_LSEEK(fsp
, 0, SEEK_CUR
);
761 /* Do an fstat to see if the file is longer than the requested
762 size in which case the ftruncate above should have
763 succeeded or shorter, in which case seek to len - 1 and
764 write 1 byte of zero */
765 if (SMB_VFS_FSTAT(fsp
, &st
) == -1) {
770 if (S_ISFIFO(st
.st_mode
)) {
776 if (st
.st_size
== len
) {
781 if (st
.st_size
> len
) {
782 /* the sys_ftruncate should have worked */
786 if (SMB_VFS_LSEEK(fsp
, len
-1, SEEK_SET
) != len
-1)
789 if (SMB_VFS_WRITE(fsp
, &c
, 1)!=1)
792 /* Seek to where we were */
793 if (SMB_VFS_LSEEK(fsp
, currpos
, SEEK_SET
) != currpos
)
799 END_PROFILE(syscall_ftruncate
);
803 static bool vfswrap_lock(vfs_handle_struct
*handle
, files_struct
*fsp
, int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
)
807 START_PROFILE(syscall_fcntl_lock
);
808 result
= fcntl_lock(fsp
->fh
->fd
, op
, offset
, count
, type
);
809 END_PROFILE(syscall_fcntl_lock
);
813 static int vfswrap_kernel_flock(vfs_handle_struct
*handle
, files_struct
*fsp
,
816 START_PROFILE(syscall_kernel_flock
);
817 kernel_flock(fsp
->fh
->fd
, share_mode
);
818 END_PROFILE(syscall_kernel_flock
);
822 static bool vfswrap_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
)
826 START_PROFILE(syscall_fcntl_getlock
);
827 result
= fcntl_getlock(fsp
->fh
->fd
, poffset
, pcount
, ptype
, ppid
);
828 END_PROFILE(syscall_fcntl_getlock
);
832 static int vfswrap_linux_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
837 START_PROFILE(syscall_linux_setlease
);
839 #ifdef HAVE_KERNEL_OPLOCKS_LINUX
840 /* first set the signal handler */
841 if(linux_set_lease_sighandler(fsp
->fh
->fd
) == -1) {
845 result
= linux_setlease(fsp
->fh
->fd
, leasetype
);
849 END_PROFILE(syscall_linux_setlease
);
853 static int vfswrap_symlink(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
857 START_PROFILE(syscall_symlink
);
858 result
= sys_symlink(oldpath
, newpath
);
859 END_PROFILE(syscall_symlink
);
863 static int vfswrap_readlink(vfs_handle_struct
*handle
, const char *path
, char *buf
, size_t bufsiz
)
867 START_PROFILE(syscall_readlink
);
868 result
= sys_readlink(path
, buf
, bufsiz
);
869 END_PROFILE(syscall_readlink
);
873 static int vfswrap_link(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
877 START_PROFILE(syscall_link
);
878 result
= sys_link(oldpath
, newpath
);
879 END_PROFILE(syscall_link
);
883 static int vfswrap_mknod(vfs_handle_struct
*handle
, const char *pathname
, mode_t mode
, SMB_DEV_T dev
)
887 START_PROFILE(syscall_mknod
);
888 result
= sys_mknod(pathname
, mode
, dev
);
889 END_PROFILE(syscall_mknod
);
893 static char *vfswrap_realpath(vfs_handle_struct
*handle
, const char *path
, char *resolved_path
)
897 START_PROFILE(syscall_realpath
);
898 result
= sys_realpath(path
, resolved_path
);
899 END_PROFILE(syscall_realpath
);
903 static NTSTATUS
vfswrap_notify_watch(vfs_handle_struct
*vfs_handle
,
904 struct sys_notify_context
*ctx
,
905 struct notify_entry
*e
,
906 void (*callback
)(struct sys_notify_context
*ctx
,
908 struct notify_event
*ev
),
909 void *private_data
, void *handle
)
912 * So far inotify is the only supported default notify mechanism. If
913 * another platform like the the BSD's or a proprietary Unix comes
914 * along and wants another default, we can play the same trick we
915 * played with Posix ACLs.
917 * Until that is the case, hard-code inotify here.
920 if (lp_kernel_change_notify(ctx
->conn
->params
)) {
921 return inotify_watch(ctx
, e
, callback
, private_data
, handle
);
925 * Do nothing, leave everything to notify_internal.c
930 static int vfswrap_chflags(vfs_handle_struct
*handle
, const char *path
, int flags
)
933 return chflags(path
, flags
);
940 static struct file_id
vfswrap_file_id_create(struct vfs_handle_struct
*handle
, SMB_DEV_T dev
, SMB_INO_T inode
)
942 return file_id_create_dev(dev
, inode
);
945 static NTSTATUS
vfswrap_fget_nt_acl(vfs_handle_struct
*handle
,
947 uint32 security_info
, SEC_DESC
**ppdesc
)
951 START_PROFILE(fget_nt_acl
);
952 result
= posix_fget_nt_acl(fsp
, security_info
, ppdesc
);
953 END_PROFILE(fget_nt_acl
);
957 static NTSTATUS
vfswrap_get_nt_acl(vfs_handle_struct
*handle
,
959 uint32 security_info
, SEC_DESC
**ppdesc
)
963 START_PROFILE(get_nt_acl
);
964 result
= posix_get_nt_acl(handle
->conn
, name
, security_info
, ppdesc
);
965 END_PROFILE(get_nt_acl
);
969 static NTSTATUS
vfswrap_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, SEC_DESC
*psd
)
973 START_PROFILE(fset_nt_acl
);
974 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
975 END_PROFILE(fset_nt_acl
);
979 static NTSTATUS
vfswrap_set_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, const char *name
, uint32 security_info_sent
, SEC_DESC
*psd
)
983 START_PROFILE(set_nt_acl
);
984 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
985 END_PROFILE(set_nt_acl
);
989 static int vfswrap_chmod_acl(vfs_handle_struct
*handle
, const char *name
, mode_t mode
)
997 START_PROFILE(chmod_acl
);
998 result
= chmod_acl(handle
->conn
, name
, mode
);
999 END_PROFILE(chmod_acl
);
1004 static int vfswrap_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
1012 START_PROFILE(fchmod_acl
);
1013 result
= fchmod_acl(fsp
, mode
);
1014 END_PROFILE(fchmod_acl
);
1019 static int vfswrap_sys_acl_get_entry(vfs_handle_struct
*handle
, SMB_ACL_T theacl
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
)
1021 return sys_acl_get_entry(theacl
, entry_id
, entry_p
);
1024 static int vfswrap_sys_acl_get_tag_type(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T
*tag_type_p
)
1026 return sys_acl_get_tag_type(entry_d
, tag_type_p
);
1029 static int vfswrap_sys_acl_get_permset(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
)
1031 return sys_acl_get_permset(entry_d
, permset_p
);
1034 static void * vfswrap_sys_acl_get_qualifier(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
)
1036 return sys_acl_get_qualifier(entry_d
);
1039 static SMB_ACL_T
vfswrap_sys_acl_get_file(vfs_handle_struct
*handle
, const char *path_p
, SMB_ACL_TYPE_T type
)
1041 return sys_acl_get_file(handle
, path_p
, type
);
1044 static SMB_ACL_T
vfswrap_sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
)
1046 return sys_acl_get_fd(handle
, fsp
);
1049 static int vfswrap_sys_acl_clear_perms(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
)
1051 return sys_acl_clear_perms(permset
);
1054 static int vfswrap_sys_acl_add_perm(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
, SMB_ACL_PERM_T perm
)
1056 return sys_acl_add_perm(permset
, perm
);
1059 static char * vfswrap_sys_acl_to_text(vfs_handle_struct
*handle
, SMB_ACL_T theacl
, ssize_t
*plen
)
1061 return sys_acl_to_text(theacl
, plen
);
1064 static SMB_ACL_T
vfswrap_sys_acl_init(vfs_handle_struct
*handle
, int count
)
1066 return sys_acl_init(count
);
1069 static int vfswrap_sys_acl_create_entry(vfs_handle_struct
*handle
, SMB_ACL_T
*pacl
, SMB_ACL_ENTRY_T
*pentry
)
1071 return sys_acl_create_entry(pacl
, pentry
);
1074 static int vfswrap_sys_acl_set_tag_type(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, SMB_ACL_TAG_T tagtype
)
1076 return sys_acl_set_tag_type(entry
, tagtype
);
1079 static int vfswrap_sys_acl_set_qualifier(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, void *qual
)
1081 return sys_acl_set_qualifier(entry
, qual
);
1084 static int vfswrap_sys_acl_set_permset(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, SMB_ACL_PERMSET_T permset
)
1086 return sys_acl_set_permset(entry
, permset
);
1089 static int vfswrap_sys_acl_valid(vfs_handle_struct
*handle
, SMB_ACL_T theacl
)
1091 return sys_acl_valid(theacl
);
1094 static int vfswrap_sys_acl_set_file(vfs_handle_struct
*handle
, const char *name
, SMB_ACL_TYPE_T acltype
, SMB_ACL_T theacl
)
1096 return sys_acl_set_file(handle
, name
, acltype
, theacl
);
1099 static int vfswrap_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_ACL_T theacl
)
1101 return sys_acl_set_fd(handle
, fsp
, theacl
);
1104 static int vfswrap_sys_acl_delete_def_file(vfs_handle_struct
*handle
, const char *path
)
1106 return sys_acl_delete_def_file(handle
, path
);
1109 static int vfswrap_sys_acl_get_perm(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
, SMB_ACL_PERM_T perm
)
1111 return sys_acl_get_perm(permset
, perm
);
1114 static int vfswrap_sys_acl_free_text(vfs_handle_struct
*handle
, char *text
)
1116 return sys_acl_free_text(text
);
1119 static int vfswrap_sys_acl_free_acl(vfs_handle_struct
*handle
, SMB_ACL_T posix_acl
)
1121 return sys_acl_free_acl(posix_acl
);
1124 static int vfswrap_sys_acl_free_qualifier(vfs_handle_struct
*handle
, void *qualifier
, SMB_ACL_TAG_T tagtype
)
1126 return sys_acl_free_qualifier(qualifier
, tagtype
);
1129 /****************************************************************
1130 Extended attribute operations.
1131 *****************************************************************/
1133 static ssize_t
vfswrap_getxattr(struct vfs_handle_struct
*handle
,const char *path
, const char *name
, void *value
, size_t size
)
1135 return sys_getxattr(path
, name
, value
, size
);
1138 static ssize_t
vfswrap_lgetxattr(struct vfs_handle_struct
*handle
,const char *path
, const char *name
, void *value
, size_t size
)
1140 return sys_lgetxattr(path
, name
, value
, size
);
1143 static ssize_t
vfswrap_fgetxattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
, void *value
, size_t size
)
1145 return sys_fgetxattr(fsp
->fh
->fd
, name
, value
, size
);
1148 static ssize_t
vfswrap_listxattr(struct vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
1150 return sys_listxattr(path
, list
, size
);
1153 ssize_t
vfswrap_llistxattr(struct vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
1155 return sys_llistxattr(path
, list
, size
);
1158 ssize_t
vfswrap_flistxattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, char *list
, size_t size
)
1160 return sys_flistxattr(fsp
->fh
->fd
, list
, size
);
1163 static int vfswrap_removexattr(struct vfs_handle_struct
*handle
, const char *path
, const char *name
)
1165 return sys_removexattr(path
, name
);
1168 static int vfswrap_lremovexattr(struct vfs_handle_struct
*handle
, const char *path
, const char *name
)
1170 return sys_lremovexattr(path
, name
);
1173 static int vfswrap_fremovexattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
)
1175 return sys_fremovexattr(fsp
->fh
->fd
, name
);
1178 static int vfswrap_setxattr(struct vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
1180 return sys_setxattr(path
, name
, value
, size
, flags
);
1183 static int vfswrap_lsetxattr(struct vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
1185 return sys_lsetxattr(path
, name
, value
, size
, flags
);
1188 static int vfswrap_fsetxattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
, const void *value
, size_t size
, int flags
)
1190 return sys_fsetxattr(fsp
->fh
->fd
, name
, value
, size
, flags
);
1193 static int vfswrap_aio_read(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1195 return sys_aio_read(aiocb
);
1198 static int vfswrap_aio_write(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1200 return sys_aio_write(aiocb
);
1203 static ssize_t
vfswrap_aio_return(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1205 return sys_aio_return(aiocb
);
1208 static int vfswrap_aio_cancel(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1210 return sys_aio_cancel(fsp
->fh
->fd
, aiocb
);
1213 static int vfswrap_aio_error(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1215 return sys_aio_error(aiocb
);
1218 static int vfswrap_aio_fsync(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, int op
, SMB_STRUCT_AIOCB
*aiocb
)
1220 return sys_aio_fsync(op
, aiocb
);
1223 static int vfswrap_aio_suspend(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const SMB_STRUCT_AIOCB
* const aiocb
[], int n
, const struct timespec
*timeout
)
1225 return sys_aio_suspend(aiocb
, n
, timeout
);
1228 static bool vfswrap_aio_force(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
)
1233 static bool vfswrap_is_offline(struct vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
)
1235 if (ISDOT(path
) || ISDOTDOT(path
)) {
1239 if (!lp_dmapi_support(SNUM(handle
->conn
)) || !dmapi_have_session()) {
1240 #if defined(ENOTSUP)
1246 return (dmapi_file_flags(path
) & FILE_ATTRIBUTE_OFFLINE
) != 0;
1249 static int vfswrap_set_offline(struct vfs_handle_struct
*handle
, const char *path
)
1251 /* We don't know how to set offline bit by default, needs to be overriden in the vfs modules */
1252 #if defined(ENOTSUP)
1258 static vfs_op_tuple vfs_default_ops
[] = {
1260 /* Disk operations */
1262 {SMB_VFS_OP(vfswrap_connect
), SMB_VFS_OP_CONNECT
,
1263 SMB_VFS_LAYER_OPAQUE
},
1264 {SMB_VFS_OP(vfswrap_disconnect
), SMB_VFS_OP_DISCONNECT
,
1265 SMB_VFS_LAYER_OPAQUE
},
1266 {SMB_VFS_OP(vfswrap_disk_free
), SMB_VFS_OP_DISK_FREE
,
1267 SMB_VFS_LAYER_OPAQUE
},
1268 {SMB_VFS_OP(vfswrap_get_quota
), SMB_VFS_OP_GET_QUOTA
,
1269 SMB_VFS_LAYER_OPAQUE
},
1270 {SMB_VFS_OP(vfswrap_set_quota
), SMB_VFS_OP_SET_QUOTA
,
1271 SMB_VFS_LAYER_OPAQUE
},
1272 {SMB_VFS_OP(vfswrap_get_shadow_copy_data
), SMB_VFS_OP_GET_SHADOW_COPY_DATA
,
1273 SMB_VFS_LAYER_OPAQUE
},
1274 {SMB_VFS_OP(vfswrap_statvfs
), SMB_VFS_OP_STATVFS
,
1275 SMB_VFS_LAYER_OPAQUE
},
1277 /* Directory operations */
1279 {SMB_VFS_OP(vfswrap_opendir
), SMB_VFS_OP_OPENDIR
,
1280 SMB_VFS_LAYER_OPAQUE
},
1281 {SMB_VFS_OP(vfswrap_readdir
), SMB_VFS_OP_READDIR
,
1282 SMB_VFS_LAYER_OPAQUE
},
1283 {SMB_VFS_OP(vfswrap_seekdir
), SMB_VFS_OP_SEEKDIR
,
1284 SMB_VFS_LAYER_OPAQUE
},
1285 {SMB_VFS_OP(vfswrap_telldir
), SMB_VFS_OP_TELLDIR
,
1286 SMB_VFS_LAYER_OPAQUE
},
1287 {SMB_VFS_OP(vfswrap_rewinddir
), SMB_VFS_OP_REWINDDIR
,
1288 SMB_VFS_LAYER_OPAQUE
},
1289 {SMB_VFS_OP(vfswrap_mkdir
), SMB_VFS_OP_MKDIR
,
1290 SMB_VFS_LAYER_OPAQUE
},
1291 {SMB_VFS_OP(vfswrap_rmdir
), SMB_VFS_OP_RMDIR
,
1292 SMB_VFS_LAYER_OPAQUE
},
1293 {SMB_VFS_OP(vfswrap_closedir
), SMB_VFS_OP_CLOSEDIR
,
1294 SMB_VFS_LAYER_OPAQUE
},
1296 /* File operations */
1298 {SMB_VFS_OP(vfswrap_open
), SMB_VFS_OP_OPEN
,
1299 SMB_VFS_LAYER_OPAQUE
},
1300 {SMB_VFS_OP(vfswrap_close
), SMB_VFS_OP_CLOSE
,
1301 SMB_VFS_LAYER_OPAQUE
},
1302 {SMB_VFS_OP(vfswrap_read
), SMB_VFS_OP_READ
,
1303 SMB_VFS_LAYER_OPAQUE
},
1304 {SMB_VFS_OP(vfswrap_pread
), SMB_VFS_OP_PREAD
,
1305 SMB_VFS_LAYER_OPAQUE
},
1306 {SMB_VFS_OP(vfswrap_write
), SMB_VFS_OP_WRITE
,
1307 SMB_VFS_LAYER_OPAQUE
},
1308 {SMB_VFS_OP(vfswrap_pwrite
), SMB_VFS_OP_PWRITE
,
1309 SMB_VFS_LAYER_OPAQUE
},
1310 {SMB_VFS_OP(vfswrap_lseek
), SMB_VFS_OP_LSEEK
,
1311 SMB_VFS_LAYER_OPAQUE
},
1312 {SMB_VFS_OP(vfswrap_sendfile
), SMB_VFS_OP_SENDFILE
,
1313 SMB_VFS_LAYER_OPAQUE
},
1314 {SMB_VFS_OP(vfswrap_recvfile
), SMB_VFS_OP_RECVFILE
,
1315 SMB_VFS_LAYER_OPAQUE
},
1316 {SMB_VFS_OP(vfswrap_rename
), SMB_VFS_OP_RENAME
,
1317 SMB_VFS_LAYER_OPAQUE
},
1318 {SMB_VFS_OP(vfswrap_fsync
), SMB_VFS_OP_FSYNC
,
1319 SMB_VFS_LAYER_OPAQUE
},
1320 {SMB_VFS_OP(vfswrap_stat
), SMB_VFS_OP_STAT
,
1321 SMB_VFS_LAYER_OPAQUE
},
1322 {SMB_VFS_OP(vfswrap_fstat
), SMB_VFS_OP_FSTAT
,
1323 SMB_VFS_LAYER_OPAQUE
},
1324 {SMB_VFS_OP(vfswrap_lstat
), SMB_VFS_OP_LSTAT
,
1325 SMB_VFS_LAYER_OPAQUE
},
1326 {SMB_VFS_OP(vfswrap_unlink
), SMB_VFS_OP_UNLINK
,
1327 SMB_VFS_LAYER_OPAQUE
},
1328 {SMB_VFS_OP(vfswrap_chmod
), SMB_VFS_OP_CHMOD
,
1329 SMB_VFS_LAYER_OPAQUE
},
1330 {SMB_VFS_OP(vfswrap_fchmod
), SMB_VFS_OP_FCHMOD
,
1331 SMB_VFS_LAYER_OPAQUE
},
1332 {SMB_VFS_OP(vfswrap_chown
), SMB_VFS_OP_CHOWN
,
1333 SMB_VFS_LAYER_OPAQUE
},
1334 {SMB_VFS_OP(vfswrap_fchown
), SMB_VFS_OP_FCHOWN
,
1335 SMB_VFS_LAYER_OPAQUE
},
1336 {SMB_VFS_OP(vfswrap_lchown
), SMB_VFS_OP_LCHOWN
,
1337 SMB_VFS_LAYER_OPAQUE
},
1338 {SMB_VFS_OP(vfswrap_chdir
), SMB_VFS_OP_CHDIR
,
1339 SMB_VFS_LAYER_OPAQUE
},
1340 {SMB_VFS_OP(vfswrap_getwd
), SMB_VFS_OP_GETWD
,
1341 SMB_VFS_LAYER_OPAQUE
},
1342 {SMB_VFS_OP(vfswrap_ntimes
), SMB_VFS_OP_NTIMES
,
1343 SMB_VFS_LAYER_OPAQUE
},
1344 {SMB_VFS_OP(vfswrap_ftruncate
), SMB_VFS_OP_FTRUNCATE
,
1345 SMB_VFS_LAYER_OPAQUE
},
1346 {SMB_VFS_OP(vfswrap_lock
), SMB_VFS_OP_LOCK
,
1347 SMB_VFS_LAYER_OPAQUE
},
1348 {SMB_VFS_OP(vfswrap_kernel_flock
), SMB_VFS_OP_KERNEL_FLOCK
,
1349 SMB_VFS_LAYER_OPAQUE
},
1350 {SMB_VFS_OP(vfswrap_linux_setlease
), SMB_VFS_OP_LINUX_SETLEASE
,
1351 SMB_VFS_LAYER_OPAQUE
},
1352 {SMB_VFS_OP(vfswrap_getlock
), SMB_VFS_OP_GETLOCK
,
1353 SMB_VFS_LAYER_OPAQUE
},
1354 {SMB_VFS_OP(vfswrap_symlink
), SMB_VFS_OP_SYMLINK
,
1355 SMB_VFS_LAYER_OPAQUE
},
1356 {SMB_VFS_OP(vfswrap_readlink
), SMB_VFS_OP_READLINK
,
1357 SMB_VFS_LAYER_OPAQUE
},
1358 {SMB_VFS_OP(vfswrap_link
), SMB_VFS_OP_LINK
,
1359 SMB_VFS_LAYER_OPAQUE
},
1360 {SMB_VFS_OP(vfswrap_mknod
), SMB_VFS_OP_MKNOD
,
1361 SMB_VFS_LAYER_OPAQUE
},
1362 {SMB_VFS_OP(vfswrap_realpath
), SMB_VFS_OP_REALPATH
,
1363 SMB_VFS_LAYER_OPAQUE
},
1364 {SMB_VFS_OP(vfswrap_notify_watch
), SMB_VFS_OP_NOTIFY_WATCH
,
1365 SMB_VFS_LAYER_OPAQUE
},
1366 {SMB_VFS_OP(vfswrap_chflags
), SMB_VFS_OP_CHFLAGS
,
1367 SMB_VFS_LAYER_OPAQUE
},
1368 {SMB_VFS_OP(vfswrap_file_id_create
), SMB_VFS_OP_FILE_ID_CREATE
,
1369 SMB_VFS_LAYER_OPAQUE
},
1371 /* NT ACL operations. */
1373 {SMB_VFS_OP(vfswrap_fget_nt_acl
), SMB_VFS_OP_FGET_NT_ACL
,
1374 SMB_VFS_LAYER_OPAQUE
},
1375 {SMB_VFS_OP(vfswrap_get_nt_acl
), SMB_VFS_OP_GET_NT_ACL
,
1376 SMB_VFS_LAYER_OPAQUE
},
1377 {SMB_VFS_OP(vfswrap_fset_nt_acl
), SMB_VFS_OP_FSET_NT_ACL
,
1378 SMB_VFS_LAYER_OPAQUE
},
1379 {SMB_VFS_OP(vfswrap_set_nt_acl
), SMB_VFS_OP_SET_NT_ACL
,
1380 SMB_VFS_LAYER_OPAQUE
},
1382 /* POSIX ACL operations. */
1384 {SMB_VFS_OP(vfswrap_chmod_acl
), SMB_VFS_OP_CHMOD_ACL
,
1385 SMB_VFS_LAYER_OPAQUE
},
1386 {SMB_VFS_OP(vfswrap_fchmod_acl
), SMB_VFS_OP_FCHMOD_ACL
,
1387 SMB_VFS_LAYER_OPAQUE
},
1388 {SMB_VFS_OP(vfswrap_sys_acl_get_entry
), SMB_VFS_OP_SYS_ACL_GET_ENTRY
,
1389 SMB_VFS_LAYER_OPAQUE
},
1390 {SMB_VFS_OP(vfswrap_sys_acl_get_tag_type
), SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE
,
1391 SMB_VFS_LAYER_OPAQUE
},
1392 {SMB_VFS_OP(vfswrap_sys_acl_get_permset
), SMB_VFS_OP_SYS_ACL_GET_PERMSET
,
1393 SMB_VFS_LAYER_OPAQUE
},
1394 {SMB_VFS_OP(vfswrap_sys_acl_get_qualifier
), SMB_VFS_OP_SYS_ACL_GET_QUALIFIER
,
1395 SMB_VFS_LAYER_OPAQUE
},
1396 {SMB_VFS_OP(vfswrap_sys_acl_get_file
), SMB_VFS_OP_SYS_ACL_GET_FILE
,
1397 SMB_VFS_LAYER_OPAQUE
},
1398 {SMB_VFS_OP(vfswrap_sys_acl_get_fd
), SMB_VFS_OP_SYS_ACL_GET_FD
,
1399 SMB_VFS_LAYER_OPAQUE
},
1400 {SMB_VFS_OP(vfswrap_sys_acl_clear_perms
), SMB_VFS_OP_SYS_ACL_CLEAR_PERMS
,
1401 SMB_VFS_LAYER_OPAQUE
},
1402 {SMB_VFS_OP(vfswrap_sys_acl_add_perm
), SMB_VFS_OP_SYS_ACL_ADD_PERM
,
1403 SMB_VFS_LAYER_OPAQUE
},
1404 {SMB_VFS_OP(vfswrap_sys_acl_to_text
), SMB_VFS_OP_SYS_ACL_TO_TEXT
,
1405 SMB_VFS_LAYER_OPAQUE
},
1406 {SMB_VFS_OP(vfswrap_sys_acl_init
), SMB_VFS_OP_SYS_ACL_INIT
,
1407 SMB_VFS_LAYER_OPAQUE
},
1408 {SMB_VFS_OP(vfswrap_sys_acl_create_entry
), SMB_VFS_OP_SYS_ACL_CREATE_ENTRY
,
1409 SMB_VFS_LAYER_OPAQUE
},
1410 {SMB_VFS_OP(vfswrap_sys_acl_set_tag_type
), SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE
,
1411 SMB_VFS_LAYER_OPAQUE
},
1412 {SMB_VFS_OP(vfswrap_sys_acl_set_qualifier
), SMB_VFS_OP_SYS_ACL_SET_QUALIFIER
,
1413 SMB_VFS_LAYER_OPAQUE
},
1414 {SMB_VFS_OP(vfswrap_sys_acl_set_permset
), SMB_VFS_OP_SYS_ACL_SET_PERMSET
,
1415 SMB_VFS_LAYER_OPAQUE
},
1416 {SMB_VFS_OP(vfswrap_sys_acl_valid
), SMB_VFS_OP_SYS_ACL_VALID
,
1417 SMB_VFS_LAYER_OPAQUE
},
1418 {SMB_VFS_OP(vfswrap_sys_acl_set_file
), SMB_VFS_OP_SYS_ACL_SET_FILE
,
1419 SMB_VFS_LAYER_OPAQUE
},
1420 {SMB_VFS_OP(vfswrap_sys_acl_set_fd
), SMB_VFS_OP_SYS_ACL_SET_FD
,
1421 SMB_VFS_LAYER_OPAQUE
},
1422 {SMB_VFS_OP(vfswrap_sys_acl_delete_def_file
), SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
1423 SMB_VFS_LAYER_OPAQUE
},
1424 {SMB_VFS_OP(vfswrap_sys_acl_get_perm
), SMB_VFS_OP_SYS_ACL_GET_PERM
,
1425 SMB_VFS_LAYER_OPAQUE
},
1426 {SMB_VFS_OP(vfswrap_sys_acl_free_text
), SMB_VFS_OP_SYS_ACL_FREE_TEXT
,
1427 SMB_VFS_LAYER_OPAQUE
},
1428 {SMB_VFS_OP(vfswrap_sys_acl_free_acl
), SMB_VFS_OP_SYS_ACL_FREE_ACL
,
1429 SMB_VFS_LAYER_OPAQUE
},
1430 {SMB_VFS_OP(vfswrap_sys_acl_free_qualifier
), SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER
,
1431 SMB_VFS_LAYER_OPAQUE
},
1433 /* EA operations. */
1435 {SMB_VFS_OP(vfswrap_getxattr
), SMB_VFS_OP_GETXATTR
,
1436 SMB_VFS_LAYER_OPAQUE
},
1437 {SMB_VFS_OP(vfswrap_lgetxattr
), SMB_VFS_OP_LGETXATTR
,
1438 SMB_VFS_LAYER_OPAQUE
},
1439 {SMB_VFS_OP(vfswrap_fgetxattr
), SMB_VFS_OP_FGETXATTR
,
1440 SMB_VFS_LAYER_OPAQUE
},
1441 {SMB_VFS_OP(vfswrap_listxattr
), SMB_VFS_OP_LISTXATTR
,
1442 SMB_VFS_LAYER_OPAQUE
},
1443 {SMB_VFS_OP(vfswrap_llistxattr
), SMB_VFS_OP_LLISTXATTR
,
1444 SMB_VFS_LAYER_OPAQUE
},
1445 {SMB_VFS_OP(vfswrap_flistxattr
), SMB_VFS_OP_FLISTXATTR
,
1446 SMB_VFS_LAYER_OPAQUE
},
1447 {SMB_VFS_OP(vfswrap_removexattr
), SMB_VFS_OP_REMOVEXATTR
,
1448 SMB_VFS_LAYER_OPAQUE
},
1449 {SMB_VFS_OP(vfswrap_lremovexattr
), SMB_VFS_OP_LREMOVEXATTR
,
1450 SMB_VFS_LAYER_OPAQUE
},
1451 {SMB_VFS_OP(vfswrap_fremovexattr
), SMB_VFS_OP_FREMOVEXATTR
,
1452 SMB_VFS_LAYER_OPAQUE
},
1453 {SMB_VFS_OP(vfswrap_setxattr
), SMB_VFS_OP_SETXATTR
,
1454 SMB_VFS_LAYER_OPAQUE
},
1455 {SMB_VFS_OP(vfswrap_lsetxattr
), SMB_VFS_OP_LSETXATTR
,
1456 SMB_VFS_LAYER_OPAQUE
},
1457 {SMB_VFS_OP(vfswrap_fsetxattr
), SMB_VFS_OP_FSETXATTR
,
1458 SMB_VFS_LAYER_OPAQUE
},
1460 {SMB_VFS_OP(vfswrap_aio_read
), SMB_VFS_OP_AIO_READ
,
1461 SMB_VFS_LAYER_OPAQUE
},
1462 {SMB_VFS_OP(vfswrap_aio_write
), SMB_VFS_OP_AIO_WRITE
,
1463 SMB_VFS_LAYER_OPAQUE
},
1464 {SMB_VFS_OP(vfswrap_aio_return
), SMB_VFS_OP_AIO_RETURN
,
1465 SMB_VFS_LAYER_OPAQUE
},
1466 {SMB_VFS_OP(vfswrap_aio_cancel
), SMB_VFS_OP_AIO_CANCEL
,
1467 SMB_VFS_LAYER_OPAQUE
},
1468 {SMB_VFS_OP(vfswrap_aio_error
), SMB_VFS_OP_AIO_ERROR
,
1469 SMB_VFS_LAYER_OPAQUE
},
1470 {SMB_VFS_OP(vfswrap_aio_fsync
), SMB_VFS_OP_AIO_FSYNC
,
1471 SMB_VFS_LAYER_OPAQUE
},
1472 {SMB_VFS_OP(vfswrap_aio_suspend
),SMB_VFS_OP_AIO_SUSPEND
,
1473 SMB_VFS_LAYER_OPAQUE
},
1475 {SMB_VFS_OP(vfswrap_aio_force
), SMB_VFS_OP_AIO_FORCE
,
1476 SMB_VFS_LAYER_OPAQUE
},
1478 {SMB_VFS_OP(vfswrap_is_offline
),SMB_VFS_OP_IS_OFFLINE
,
1479 SMB_VFS_LAYER_OPAQUE
},
1480 {SMB_VFS_OP(vfswrap_set_offline
),SMB_VFS_OP_SET_OFFLINE
,
1481 SMB_VFS_LAYER_OPAQUE
},
1483 /* Finish VFS operations definition */
1485 {SMB_VFS_OP(NULL
), SMB_VFS_OP_NOOP
,
1489 NTSTATUS
vfs_default_init(void);
1490 NTSTATUS
vfs_default_init(void)
1492 unsigned int needed
= SMB_VFS_OP_LAST
+ 1; /* convert from index to count */
1494 if (ARRAY_SIZE(vfs_default_ops
) != needed
) {
1495 DEBUG(0, ("%s: %u ops registered, but %u ops are required\n",
1496 DEFAULT_VFS_MODULE_NAME
, (unsigned int)ARRAY_SIZE(vfs_default_ops
), needed
));
1497 smb_panic("operation(s) missing from default VFS module");
1500 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
1501 DEFAULT_VFS_MODULE_NAME
, vfs_default_ops
);