2 * Skeleton VFS module. Implements dummy versions of all VFS
5 * Copyright (C) Tim Potter, 1999-2000
6 * Copyright (C) Alexander Bokovoy, 2002
7 * Copyright (C) Stefan (metze) Metzmacher, 2003
8 * Copyright (C) Jeremy Allison 2009
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 /* PLEASE,PLEASE READ THE VFS MODULES CHAPTER OF THE
28 SAMBA DEVELOPERS GUIDE!!!!!!
31 /* If you take this file as template for your module
32 * you must re-implement every function.
35 static int skel_connect(vfs_handle_struct
*handle
, const char *service
, const char *user
)
41 static void skel_disconnect(vfs_handle_struct
*handle
)
46 static uint64_t skel_disk_free(vfs_handle_struct
*handle
, const char *path
,
47 bool small_query
, uint64_t *bsize
,
48 uint64_t *dfree
, uint64_t *dsize
)
56 static int skel_get_quota(vfs_handle_struct
*handle
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dq
)
62 static int skel_set_quota(vfs_handle_struct
*handle
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dq
)
68 static int skel_get_shadow_copy_data(vfs_handle_struct
*handle
, files_struct
*fsp
, SHADOW_COPY_DATA
*shadow_copy_data
, bool labels
)
74 static int skel_statvfs(struct vfs_handle_struct
*handle
, const char *path
, struct vfs_statvfs_struct
*statbuf
)
80 static uint32_t skel_fs_capabilities(struct vfs_handle_struct
*handle
, enum timestamp_set_resolution
*p_ts_res
)
85 static SMB_STRUCT_DIR
*skel_opendir(vfs_handle_struct
*handle
, const char *fname
, const char *mask
, uint32 attr
)
90 static SMB_STRUCT_DIRENT
*skel_readdir(vfs_handle_struct
*handle
,
92 SMB_STRUCT_STAT
*sbuf
)
97 static void skel_seekdir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
, long offset
)
102 static long skel_telldir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
107 static void skel_rewind_dir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
112 static int skel_mkdir(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
118 static int skel_rmdir(vfs_handle_struct
*handle
, const char *path
)
124 static int skel_closedir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dir
)
130 static void skel_init_search_op(struct vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
135 static int skel_open(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
,
136 files_struct
*fsp
, int flags
, mode_t mode
)
142 static NTSTATUS
skel_create_file(struct vfs_handle_struct
*handle
,
143 struct smb_request
*req
,
144 uint16_t root_dir_fid
,
145 struct smb_filename
*smb_fname
,
146 uint32_t access_mask
,
147 uint32_t share_access
,
148 uint32_t create_disposition
,
149 uint32_t create_options
,
150 uint32_t file_attributes
,
151 uint32_t oplock_request
,
152 uint64_t allocation_size
,
153 struct security_descriptor
*sd
,
154 struct ea_list
*ea_list
,
155 files_struct
**result
,
158 return NT_STATUS_NOT_IMPLEMENTED
;
161 static int skel_close_fn(vfs_handle_struct
*handle
, files_struct
*fsp
)
167 static ssize_t
skel_vfs_read(vfs_handle_struct
*handle
, files_struct
*fsp
, void *data
, size_t n
)
173 static ssize_t
skel_pread(vfs_handle_struct
*handle
, files_struct
*fsp
, void *data
, size_t n
, SMB_OFF_T offset
)
179 static ssize_t
skel_write(vfs_handle_struct
*handle
, files_struct
*fsp
, const void *data
, size_t n
)
185 static ssize_t
skel_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
, const void *data
, size_t n
, SMB_OFF_T offset
)
191 static SMB_OFF_T
skel_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T offset
, int whence
)
194 return (SMB_OFF_T
)-1;
197 static ssize_t
skel_sendfile(vfs_handle_struct
*handle
, int tofd
, files_struct
*fromfsp
, const DATA_BLOB
*hdr
, SMB_OFF_T offset
, size_t n
)
203 static ssize_t
skel_recvfile(vfs_handle_struct
*handle
, int fromfd
, files_struct
*tofsp
, SMB_OFF_T offset
, size_t n
)
209 static int skel_rename(vfs_handle_struct
*handle
,
210 const struct smb_filename
*smb_fname_src
,
211 const struct smb_filename
*smb_fname_dst
)
217 static int skel_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
223 static int skel_stat(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
)
229 static int skel_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
235 static int skel_lstat(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
)
241 static uint64_t skel_get_alloc_size(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
)
247 static int skel_unlink(vfs_handle_struct
*handle
,
248 const struct smb_filename
*smb_fname
)
254 static int skel_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
260 static int skel_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
266 static int skel_chown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
272 static int skel_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
, uid_t uid
, gid_t gid
)
278 static int skel_lchown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
284 static int skel_chdir(vfs_handle_struct
*handle
, const char *path
)
290 static char *skel_getwd(vfs_handle_struct
*handle
, char *buf
)
296 static int skel_ntimes(vfs_handle_struct
*handle
,
297 const struct smb_filename
*smb_fname
,
298 struct smb_file_time
*ft
)
304 static int skel_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T offset
)
310 static bool skel_lock(vfs_handle_struct
*handle
, files_struct
*fsp
, int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
)
316 static int skel_kernel_flock(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, uint32 share_mode
)
322 static int skel_linux_setlease(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, int leasetype
)
328 static bool skel_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
)
334 static int skel_symlink(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
340 static int skel_vfs_readlink(vfs_handle_struct
*handle
, const char *path
, char *buf
, size_t bufsiz
)
346 static int skel_link(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
352 static int skel_mknod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
, SMB_DEV_T dev
)
358 static char *skel_realpath(vfs_handle_struct
*handle
, const char *path
, char *resolved_path
)
364 static NTSTATUS
skel_notify_watch(struct vfs_handle_struct
*handle
,
365 struct sys_notify_context
*ctx
, struct notify_entry
*e
,
366 void (*callback
)(struct sys_notify_context
*ctx
, void *private_data
, struct notify_event
*ev
),
367 void *private_data
, void *handle_p
)
369 return NT_STATUS_NOT_IMPLEMENTED
;
372 static int skel_chflags(vfs_handle_struct
*handle
, const char *path
, uint flags
)
378 static struct file_id
skel_file_id_create(vfs_handle_struct
*handle
,
379 const SMB_STRUCT_STAT
*sbuf
)
387 static NTSTATUS
skel_streaminfo(struct vfs_handle_struct
*handle
,
388 struct files_struct
*fsp
,
391 unsigned int *num_streams
,
392 struct stream_struct
**streams
)
394 return NT_STATUS_NOT_IMPLEMENTED
;
397 static int skel_get_real_filename(struct vfs_handle_struct
*handle
,
407 static const char *skel_connectpath(struct vfs_handle_struct
*handle
,
408 const char *filename
)
414 static NTSTATUS
skel_brl_lock_windows(struct vfs_handle_struct
*handle
,
415 struct byte_range_lock
*br_lck
,
416 struct lock_struct
*plock
,
418 struct blocking_lock_record
*blr
)
420 return NT_STATUS_NOT_IMPLEMENTED
;
423 static bool skel_brl_unlock_windows(struct vfs_handle_struct
*handle
,
424 struct messaging_context
*msg_ctx
,
425 struct byte_range_lock
*br_lck
,
426 const struct lock_struct
*plock
)
432 static bool skel_brl_cancel_windows(struct vfs_handle_struct
*handle
,
433 struct byte_range_lock
*br_lck
,
434 struct lock_struct
*plock
,
435 struct blocking_lock_record
*blr
)
441 static bool skel_strict_lock(struct vfs_handle_struct
*handle
,
442 struct files_struct
*fsp
,
443 struct lock_struct
*plock
)
449 static void skel_strict_unlock(struct vfs_handle_struct
*handle
,
450 struct files_struct
*fsp
,
451 struct lock_struct
*plock
)
456 static NTSTATUS
skel_translate_name(struct vfs_handle_struct
*handle
,
458 enum vfs_translate_direction direction
)
460 return NT_STATUS_NOT_IMPLEMENTED
;
463 static NTSTATUS
skel_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
464 uint32 security_info
, SEC_DESC
**ppdesc
)
466 return NT_STATUS_NOT_IMPLEMENTED
;
469 static NTSTATUS
skel_get_nt_acl(vfs_handle_struct
*handle
,
470 const char *name
, uint32 security_info
, SEC_DESC
**ppdesc
)
472 return NT_STATUS_NOT_IMPLEMENTED
;
475 static NTSTATUS
skel_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
476 uint32 security_info_sent
, const SEC_DESC
*psd
)
478 return NT_STATUS_NOT_IMPLEMENTED
;
481 static int skel_chmod_acl(vfs_handle_struct
*handle
, const char *name
, mode_t mode
)
487 static int skel_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
493 static int skel_sys_acl_get_entry(vfs_handle_struct
*handle
, SMB_ACL_T theacl
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
)
499 static int skel_sys_acl_get_tag_type(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T
*tag_type_p
)
505 static int skel_sys_acl_get_permset(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
)
511 static void *skel_sys_acl_get_qualifier(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
)
517 static SMB_ACL_T
skel_sys_acl_get_file(vfs_handle_struct
*handle
, const char *path_p
, SMB_ACL_TYPE_T type
)
520 return (SMB_ACL_T
)NULL
;
523 static SMB_ACL_T
skel_sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
)
526 return (SMB_ACL_T
)NULL
;
529 static int skel_sys_acl_clear_perms(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
)
535 static int skel_sys_acl_add_perm(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
, SMB_ACL_PERM_T perm
)
541 static char *skel_sys_acl_to_text(vfs_handle_struct
*handle
, SMB_ACL_T theacl
, ssize_t
*plen
)
547 static SMB_ACL_T
skel_sys_acl_init(vfs_handle_struct
*handle
, int count
)
550 return (SMB_ACL_T
)NULL
;
553 static int skel_sys_acl_create_entry(vfs_handle_struct
*handle
, SMB_ACL_T
*pacl
, SMB_ACL_ENTRY_T
*pentry
)
559 static int skel_sys_acl_set_tag_type(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, SMB_ACL_TAG_T tagtype
)
565 static int skel_sys_acl_set_qualifier(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, void *qual
)
571 static int skel_sys_acl_set_permset(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, SMB_ACL_PERMSET_T permset
)
577 static int skel_sys_acl_valid(vfs_handle_struct
*handle
, SMB_ACL_T theacl
)
583 static int skel_sys_acl_set_file(vfs_handle_struct
*handle
, const char *name
, SMB_ACL_TYPE_T acltype
, SMB_ACL_T theacl
)
589 static int skel_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_ACL_T theacl
)
595 static int skel_sys_acl_delete_def_file(vfs_handle_struct
*handle
, const char *path
)
601 static int skel_sys_acl_get_perm(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
, SMB_ACL_PERM_T perm
)
607 static int skel_sys_acl_free_text(vfs_handle_struct
*handle
, char *text
)
613 static int skel_sys_acl_free_acl(vfs_handle_struct
*handle
, SMB_ACL_T posix_acl
)
619 static int skel_sys_acl_free_qualifier(vfs_handle_struct
*handle
, void *qualifier
, SMB_ACL_TAG_T tagtype
)
625 static ssize_t
skel_getxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, void *value
, size_t size
)
631 static ssize_t
skel_lgetxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, void *value
, size_t
638 static ssize_t
skel_fgetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
, void *value
, size_t size
)
644 static ssize_t
skel_listxattr(vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
650 static ssize_t
skel_llistxattr(vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
656 static ssize_t
skel_flistxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, char *list
, size_t size
)
662 static int skel_removexattr(vfs_handle_struct
*handle
, const char *path
, const char *name
)
668 static int skel_lremovexattr(vfs_handle_struct
*handle
, const char *path
, const char *name
)
674 static int skel_fremovexattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
)
678 return SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, name
);
681 static int skel_setxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
687 static int skel_lsetxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
693 static int skel_fsetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
, const void *value
, size_t size
, int flags
)
699 static int skel_aio_read(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
705 static int skel_aio_write(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
711 static ssize_t
skel_aio_return_fn(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
717 static int skel_aio_cancel(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
723 static int skel_aio_error_fn(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
729 static int skel_aio_fsync(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, int op
, SMB_STRUCT_AIOCB
*aiocb
)
735 static int skel_aio_suspend(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const SMB_STRUCT_AIOCB
* const aiocb
[], int n
, const struct timespec
*ts
)
741 static bool skel_aio_force(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
)
747 static bool skel_is_offline(struct vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
)
753 static int skel_set_offline(struct vfs_handle_struct
*handle
, const char *path
)
759 /* VFS operations structure */
761 struct vfs_fn_pointers skel_transparent_fns
= {
762 /* Disk operations */
764 .connect_fn
= skel_connect
,
765 .disconnect
= skel_disconnect
,
766 .disk_free
= skel_disk_free
,
767 .get_quota
= skel_get_quota
,
768 .set_quota
= skel_set_quota
,
769 .get_shadow_copy_data
= skel_get_shadow_copy_data
,
770 .statvfs
= skel_statvfs
,
771 .fs_capabilities
= skel_fs_capabilities
,
773 /* Directory operations */
775 .opendir
= skel_opendir
,
776 .readdir
= skel_readdir
,
777 .seekdir
= skel_seekdir
,
778 .telldir
= skel_telldir
,
779 .rewind_dir
= skel_rewind_dir
,
782 .closedir
= skel_closedir
,
783 .init_search_op
= skel_init_search_op
,
785 /* File operations */
788 .create_file
= skel_create_file
,
789 .close_fn
= skel_close_fn
,
790 .vfs_read
= skel_vfs_read
,
793 .pwrite
= skel_pwrite
,
795 .sendfile
= skel_sendfile
,
796 .recvfile
= skel_recvfile
,
797 .rename
= skel_rename
,
802 .get_alloc_size
= skel_get_alloc_size
,
803 .unlink
= skel_unlink
,
805 .fchmod
= skel_fchmod
,
807 .fchown
= skel_fchown
,
808 .lchown
= skel_lchown
,
811 .ntimes
= skel_ntimes
,
812 .ftruncate
= skel_ftruncate
,
814 .kernel_flock
= skel_kernel_flock
,
815 .linux_setlease
= skel_linux_setlease
,
816 .getlock
= skel_getlock
,
817 .symlink
= skel_symlink
,
818 .vfs_readlink
= skel_vfs_readlink
,
821 .realpath
= skel_realpath
,
822 .notify_watch
= skel_notify_watch
,
823 .chflags
= skel_chflags
,
824 .file_id_create
= skel_file_id_create
,
826 .streaminfo
= skel_streaminfo
,
827 .get_real_filename
= skel_get_real_filename
,
828 .connectpath
= skel_connectpath
,
829 .brl_lock_windows
= skel_brl_lock_windows
,
830 .brl_unlock_windows
= skel_brl_unlock_windows
,
831 .brl_cancel_windows
= skel_brl_cancel_windows
,
832 .strict_lock
= skel_strict_lock
,
833 .strict_unlock
= skel_strict_unlock
,
834 .translate_name
= skel_translate_name
,
836 /* NT ACL operations. */
838 .fget_nt_acl
= skel_fget_nt_acl
,
839 .get_nt_acl
= skel_get_nt_acl
,
840 .fset_nt_acl
= skel_fset_nt_acl
,
842 /* POSIX ACL operations. */
844 .chmod_acl
= skel_chmod_acl
,
845 .fchmod_acl
= skel_fchmod_acl
,
847 .sys_acl_get_entry
= skel_sys_acl_get_entry
,
848 .sys_acl_get_tag_type
= skel_sys_acl_get_tag_type
,
849 .sys_acl_get_permset
= skel_sys_acl_get_permset
,
850 .sys_acl_get_qualifier
= skel_sys_acl_get_qualifier
,
851 .sys_acl_get_file
= skel_sys_acl_get_file
,
852 .sys_acl_get_fd
= skel_sys_acl_get_fd
,
853 .sys_acl_clear_perms
= skel_sys_acl_clear_perms
,
854 .sys_acl_add_perm
= skel_sys_acl_add_perm
,
855 .sys_acl_to_text
= skel_sys_acl_to_text
,
856 .sys_acl_init
= skel_sys_acl_init
,
857 .sys_acl_create_entry
= skel_sys_acl_create_entry
,
858 .sys_acl_set_tag_type
= skel_sys_acl_set_tag_type
,
859 .sys_acl_set_qualifier
= skel_sys_acl_set_qualifier
,
860 .sys_acl_set_permset
= skel_sys_acl_set_permset
,
861 .sys_acl_valid
= skel_sys_acl_valid
,
862 .sys_acl_set_file
= skel_sys_acl_set_file
,
863 .sys_acl_set_fd
= skel_sys_acl_set_fd
,
864 .sys_acl_delete_def_file
= skel_sys_acl_delete_def_file
,
865 .sys_acl_get_perm
= skel_sys_acl_get_perm
,
866 .sys_acl_free_text
= skel_sys_acl_free_text
,
867 .sys_acl_free_acl
= skel_sys_acl_free_acl
,
868 .sys_acl_free_qualifier
= skel_sys_acl_free_qualifier
,
871 .getxattr
= skel_getxattr
,
872 .lgetxattr
= skel_lgetxattr
,
873 .fgetxattr
= skel_fgetxattr
,
874 .listxattr
= skel_listxattr
,
875 .llistxattr
= skel_llistxattr
,
876 .flistxattr
= skel_flistxattr
,
877 .removexattr
= skel_removexattr
,
878 .lremovexattr
= skel_lremovexattr
,
879 .fremovexattr
= skel_fremovexattr
,
880 .setxattr
= skel_setxattr
,
881 .lsetxattr
= skel_lsetxattr
,
882 .fsetxattr
= skel_fsetxattr
,
885 .aio_read
= skel_aio_read
,
886 .aio_write
= skel_aio_write
,
887 .aio_return_fn
= skel_aio_return_fn
,
888 .aio_cancel
= skel_aio_cancel
,
889 .aio_error_fn
= skel_aio_error_fn
,
890 .aio_fsync
= skel_aio_fsync
,
891 .aio_suspend
= skel_aio_suspend
,
892 .aio_force
= skel_aio_force
,
894 /* offline operations */
895 .is_offline
= skel_is_offline
,
896 .set_offline
= skel_set_offline
899 NTSTATUS
vfs_skel_transparent_init(void)
901 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "skel_transparent", &skel_transparent_fns
);