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_DIR
*skel_fdopendir(vfs_handle_struct
*handle
, files_struct
*fsp
, const char *mask
, uint32 attr
)
95 static SMB_STRUCT_DIRENT
*skel_readdir(vfs_handle_struct
*handle
,
97 SMB_STRUCT_STAT
*sbuf
)
102 static void skel_seekdir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
, long offset
)
107 static long skel_telldir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
112 static void skel_rewind_dir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
117 static int skel_mkdir(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
123 static int skel_rmdir(vfs_handle_struct
*handle
, const char *path
)
129 static int skel_closedir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dir
)
135 static void skel_init_search_op(struct vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
140 static int skel_open(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
,
141 files_struct
*fsp
, int flags
, mode_t mode
)
147 static NTSTATUS
skel_create_file(struct vfs_handle_struct
*handle
,
148 struct smb_request
*req
,
149 uint16_t root_dir_fid
,
150 struct smb_filename
*smb_fname
,
151 uint32_t access_mask
,
152 uint32_t share_access
,
153 uint32_t create_disposition
,
154 uint32_t create_options
,
155 uint32_t file_attributes
,
156 uint32_t oplock_request
,
157 uint64_t allocation_size
,
158 uint32_t private_flags
,
159 struct security_descriptor
*sd
,
160 struct ea_list
*ea_list
,
161 files_struct
**result
,
164 return NT_STATUS_NOT_IMPLEMENTED
;
167 static int skel_close_fn(vfs_handle_struct
*handle
, files_struct
*fsp
)
173 static ssize_t
skel_vfs_read(vfs_handle_struct
*handle
, files_struct
*fsp
, void *data
, size_t n
)
179 static ssize_t
skel_pread(vfs_handle_struct
*handle
, files_struct
*fsp
, void *data
, size_t n
, SMB_OFF_T offset
)
185 static ssize_t
skel_write(vfs_handle_struct
*handle
, files_struct
*fsp
, const void *data
, size_t n
)
191 static ssize_t
skel_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
, const void *data
, size_t n
, SMB_OFF_T offset
)
197 static SMB_OFF_T
skel_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T offset
, int whence
)
200 return (SMB_OFF_T
)-1;
203 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
)
209 static ssize_t
skel_recvfile(vfs_handle_struct
*handle
, int fromfd
, files_struct
*tofsp
, SMB_OFF_T offset
, size_t n
)
215 static int skel_rename(vfs_handle_struct
*handle
,
216 const struct smb_filename
*smb_fname_src
,
217 const struct smb_filename
*smb_fname_dst
)
223 static int skel_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
229 static int skel_stat(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
)
235 static int skel_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
241 static int skel_lstat(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
)
247 static uint64_t skel_get_alloc_size(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
)
253 static int skel_unlink(vfs_handle_struct
*handle
,
254 const struct smb_filename
*smb_fname
)
260 static int skel_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
266 static int skel_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
272 static int skel_chown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
278 static int skel_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
, uid_t uid
, gid_t gid
)
284 static int skel_lchown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
290 static int skel_chdir(vfs_handle_struct
*handle
, const char *path
)
296 static char *skel_getwd(vfs_handle_struct
*handle
, char *buf
)
302 static int skel_ntimes(vfs_handle_struct
*handle
,
303 const struct smb_filename
*smb_fname
,
304 struct smb_file_time
*ft
)
310 static int skel_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T offset
)
316 static int skel_fallocate(vfs_handle_struct
*handle
, files_struct
*fsp
,
317 enum vfs_fallocate_mode mode
,
318 SMB_OFF_T offset
, SMB_OFF_T len
)
324 static bool skel_lock(vfs_handle_struct
*handle
, files_struct
*fsp
, int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
)
330 static int skel_kernel_flock(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, uint32 share_mode
, uint32 access_mask
)
336 static int skel_linux_setlease(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, int leasetype
)
342 static bool skel_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
)
348 static int skel_symlink(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
354 static int skel_vfs_readlink(vfs_handle_struct
*handle
, const char *path
, char *buf
, size_t bufsiz
)
360 static int skel_link(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
366 static int skel_mknod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
, SMB_DEV_T dev
)
372 static char *skel_realpath(vfs_handle_struct
*handle
, const char *path
)
378 static NTSTATUS
skel_notify_watch(struct vfs_handle_struct
*handle
,
379 struct sys_notify_context
*ctx
, struct notify_entry
*e
,
380 void (*callback
)(struct sys_notify_context
*ctx
, void *private_data
, struct notify_event
*ev
),
381 void *private_data
, void *handle_p
)
383 return NT_STATUS_NOT_IMPLEMENTED
;
386 static int skel_chflags(vfs_handle_struct
*handle
, const char *path
, uint flags
)
392 static struct file_id
skel_file_id_create(vfs_handle_struct
*handle
,
393 const SMB_STRUCT_STAT
*sbuf
)
401 static NTSTATUS
skel_streaminfo(struct vfs_handle_struct
*handle
,
402 struct files_struct
*fsp
,
405 unsigned int *num_streams
,
406 struct stream_struct
**streams
)
408 return NT_STATUS_NOT_IMPLEMENTED
;
411 static int skel_get_real_filename(struct vfs_handle_struct
*handle
,
421 static const char *skel_connectpath(struct vfs_handle_struct
*handle
,
422 const char *filename
)
428 static NTSTATUS
skel_brl_lock_windows(struct vfs_handle_struct
*handle
,
429 struct byte_range_lock
*br_lck
,
430 struct lock_struct
*plock
,
432 struct blocking_lock_record
*blr
)
434 return NT_STATUS_NOT_IMPLEMENTED
;
437 static bool skel_brl_unlock_windows(struct vfs_handle_struct
*handle
,
438 struct messaging_context
*msg_ctx
,
439 struct byte_range_lock
*br_lck
,
440 const struct lock_struct
*plock
)
446 static bool skel_brl_cancel_windows(struct vfs_handle_struct
*handle
,
447 struct byte_range_lock
*br_lck
,
448 struct lock_struct
*plock
,
449 struct blocking_lock_record
*blr
)
455 static bool skel_strict_lock(struct vfs_handle_struct
*handle
,
456 struct files_struct
*fsp
,
457 struct lock_struct
*plock
)
463 static void skel_strict_unlock(struct vfs_handle_struct
*handle
,
464 struct files_struct
*fsp
,
465 struct lock_struct
*plock
)
470 static NTSTATUS
skel_translate_name(struct vfs_handle_struct
*handle
,
471 const char *mapped_name
,
472 enum vfs_translate_direction direction
,
476 return NT_STATUS_NOT_IMPLEMENTED
;
479 static NTSTATUS
skel_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
480 uint32 security_info
, struct security_descriptor
**ppdesc
)
482 return NT_STATUS_NOT_IMPLEMENTED
;
485 static NTSTATUS
skel_get_nt_acl(vfs_handle_struct
*handle
,
486 const char *name
, uint32 security_info
, struct security_descriptor
**ppdesc
)
488 return NT_STATUS_NOT_IMPLEMENTED
;
491 static NTSTATUS
skel_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
492 uint32 security_info_sent
, const struct security_descriptor
*psd
)
494 return NT_STATUS_NOT_IMPLEMENTED
;
497 static int skel_chmod_acl(vfs_handle_struct
*handle
, const char *name
, mode_t mode
)
503 static int skel_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
509 static int skel_sys_acl_get_entry(vfs_handle_struct
*handle
, SMB_ACL_T theacl
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
)
515 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
)
521 static int skel_sys_acl_get_permset(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
)
527 static void *skel_sys_acl_get_qualifier(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry_d
)
533 static SMB_ACL_T
skel_sys_acl_get_file(vfs_handle_struct
*handle
, const char *path_p
, SMB_ACL_TYPE_T type
)
536 return (SMB_ACL_T
)NULL
;
539 static SMB_ACL_T
skel_sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
)
542 return (SMB_ACL_T
)NULL
;
545 static int skel_sys_acl_clear_perms(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
)
551 static int skel_sys_acl_add_perm(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
, SMB_ACL_PERM_T perm
)
557 static char *skel_sys_acl_to_text(vfs_handle_struct
*handle
, SMB_ACL_T theacl
, ssize_t
*plen
)
563 static SMB_ACL_T
skel_sys_acl_init(vfs_handle_struct
*handle
, int count
)
566 return (SMB_ACL_T
)NULL
;
569 static int skel_sys_acl_create_entry(vfs_handle_struct
*handle
, SMB_ACL_T
*pacl
, SMB_ACL_ENTRY_T
*pentry
)
575 static int skel_sys_acl_set_tag_type(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, SMB_ACL_TAG_T tagtype
)
581 static int skel_sys_acl_set_qualifier(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, void *qual
)
587 static int skel_sys_acl_set_permset(vfs_handle_struct
*handle
, SMB_ACL_ENTRY_T entry
, SMB_ACL_PERMSET_T permset
)
593 static int skel_sys_acl_valid(vfs_handle_struct
*handle
, SMB_ACL_T theacl
)
599 static int skel_sys_acl_set_file(vfs_handle_struct
*handle
, const char *name
, SMB_ACL_TYPE_T acltype
, SMB_ACL_T theacl
)
605 static int skel_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
, SMB_ACL_T theacl
)
611 static int skel_sys_acl_delete_def_file(vfs_handle_struct
*handle
, const char *path
)
617 static int skel_sys_acl_get_perm(vfs_handle_struct
*handle
, SMB_ACL_PERMSET_T permset
, SMB_ACL_PERM_T perm
)
623 static int skel_sys_acl_free_text(vfs_handle_struct
*handle
, char *text
)
629 static int skel_sys_acl_free_acl(vfs_handle_struct
*handle
, SMB_ACL_T posix_acl
)
635 static int skel_sys_acl_free_qualifier(vfs_handle_struct
*handle
, void *qualifier
, SMB_ACL_TAG_T tagtype
)
641 static ssize_t
skel_getxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, void *value
, size_t size
)
647 static ssize_t
skel_lgetxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, void *value
, size_t
654 static ssize_t
skel_fgetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
, void *value
, size_t size
)
660 static ssize_t
skel_listxattr(vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
666 static ssize_t
skel_llistxattr(vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
672 static ssize_t
skel_flistxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, char *list
, size_t size
)
678 static int skel_removexattr(vfs_handle_struct
*handle
, const char *path
, const char *name
)
684 static int skel_lremovexattr(vfs_handle_struct
*handle
, const char *path
, const char *name
)
690 static int skel_fremovexattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
)
694 return SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, name
);
697 static int skel_setxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
703 static int skel_lsetxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
709 static int skel_fsetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *name
, const void *value
, size_t size
, int flags
)
715 static int skel_aio_read(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
721 static int skel_aio_write(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
727 static ssize_t
skel_aio_return_fn(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
733 static int skel_aio_cancel(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
739 static int skel_aio_error_fn(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
745 static int skel_aio_fsync(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, int op
, SMB_STRUCT_AIOCB
*aiocb
)
751 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
)
757 static bool skel_aio_force(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
)
763 static bool skel_is_offline(struct vfs_handle_struct
*handle
, const struct smb_filename
*fname
, SMB_STRUCT_STAT
*sbuf
)
769 static int skel_set_offline(struct vfs_handle_struct
*handle
, const struct smb_filename
*fname
)
775 /* VFS operations structure */
777 struct vfs_fn_pointers skel_transparent_fns
= {
778 /* Disk operations */
780 .connect_fn
= skel_connect
,
781 .disconnect
= skel_disconnect
,
782 .disk_free
= skel_disk_free
,
783 .get_quota
= skel_get_quota
,
784 .set_quota
= skel_set_quota
,
785 .get_shadow_copy_data
= skel_get_shadow_copy_data
,
786 .statvfs
= skel_statvfs
,
787 .fs_capabilities
= skel_fs_capabilities
,
789 /* Directory operations */
791 .opendir
= skel_opendir
,
792 .fdopendir
= skel_fdopendir
,
793 .readdir
= skel_readdir
,
794 .seekdir
= skel_seekdir
,
795 .telldir
= skel_telldir
,
796 .rewind_dir
= skel_rewind_dir
,
799 .closedir
= skel_closedir
,
800 .init_search_op
= skel_init_search_op
,
802 /* File operations */
805 .create_file
= skel_create_file
,
806 .close_fn
= skel_close_fn
,
807 .vfs_read
= skel_vfs_read
,
810 .pwrite
= skel_pwrite
,
812 .sendfile
= skel_sendfile
,
813 .recvfile
= skel_recvfile
,
814 .rename
= skel_rename
,
819 .get_alloc_size
= skel_get_alloc_size
,
820 .unlink
= skel_unlink
,
822 .fchmod
= skel_fchmod
,
824 .fchown
= skel_fchown
,
825 .lchown
= skel_lchown
,
828 .ntimes
= skel_ntimes
,
829 .ftruncate
= skel_ftruncate
,
830 .fallocate
= skel_fallocate
,
832 .kernel_flock
= skel_kernel_flock
,
833 .linux_setlease
= skel_linux_setlease
,
834 .getlock
= skel_getlock
,
835 .symlink
= skel_symlink
,
836 .vfs_readlink
= skel_vfs_readlink
,
839 .realpath
= skel_realpath
,
840 .notify_watch
= skel_notify_watch
,
841 .chflags
= skel_chflags
,
842 .file_id_create
= skel_file_id_create
,
844 .streaminfo
= skel_streaminfo
,
845 .get_real_filename
= skel_get_real_filename
,
846 .connectpath
= skel_connectpath
,
847 .brl_lock_windows
= skel_brl_lock_windows
,
848 .brl_unlock_windows
= skel_brl_unlock_windows
,
849 .brl_cancel_windows
= skel_brl_cancel_windows
,
850 .strict_lock
= skel_strict_lock
,
851 .strict_unlock
= skel_strict_unlock
,
852 .translate_name
= skel_translate_name
,
854 /* NT ACL operations. */
856 .fget_nt_acl
= skel_fget_nt_acl
,
857 .get_nt_acl
= skel_get_nt_acl
,
858 .fset_nt_acl
= skel_fset_nt_acl
,
860 /* POSIX ACL operations. */
862 .chmod_acl
= skel_chmod_acl
,
863 .fchmod_acl
= skel_fchmod_acl
,
865 .sys_acl_get_entry
= skel_sys_acl_get_entry
,
866 .sys_acl_get_tag_type
= skel_sys_acl_get_tag_type
,
867 .sys_acl_get_permset
= skel_sys_acl_get_permset
,
868 .sys_acl_get_qualifier
= skel_sys_acl_get_qualifier
,
869 .sys_acl_get_file
= skel_sys_acl_get_file
,
870 .sys_acl_get_fd
= skel_sys_acl_get_fd
,
871 .sys_acl_clear_perms
= skel_sys_acl_clear_perms
,
872 .sys_acl_add_perm
= skel_sys_acl_add_perm
,
873 .sys_acl_to_text
= skel_sys_acl_to_text
,
874 .sys_acl_init
= skel_sys_acl_init
,
875 .sys_acl_create_entry
= skel_sys_acl_create_entry
,
876 .sys_acl_set_tag_type
= skel_sys_acl_set_tag_type
,
877 .sys_acl_set_qualifier
= skel_sys_acl_set_qualifier
,
878 .sys_acl_set_permset
= skel_sys_acl_set_permset
,
879 .sys_acl_valid
= skel_sys_acl_valid
,
880 .sys_acl_set_file
= skel_sys_acl_set_file
,
881 .sys_acl_set_fd
= skel_sys_acl_set_fd
,
882 .sys_acl_delete_def_file
= skel_sys_acl_delete_def_file
,
883 .sys_acl_get_perm
= skel_sys_acl_get_perm
,
884 .sys_acl_free_text
= skel_sys_acl_free_text
,
885 .sys_acl_free_acl
= skel_sys_acl_free_acl
,
886 .sys_acl_free_qualifier
= skel_sys_acl_free_qualifier
,
889 .getxattr
= skel_getxattr
,
890 .lgetxattr
= skel_lgetxattr
,
891 .fgetxattr
= skel_fgetxattr
,
892 .listxattr
= skel_listxattr
,
893 .llistxattr
= skel_llistxattr
,
894 .flistxattr
= skel_flistxattr
,
895 .removexattr
= skel_removexattr
,
896 .lremovexattr
= skel_lremovexattr
,
897 .fremovexattr
= skel_fremovexattr
,
898 .setxattr
= skel_setxattr
,
899 .lsetxattr
= skel_lsetxattr
,
900 .fsetxattr
= skel_fsetxattr
,
903 .aio_read
= skel_aio_read
,
904 .aio_write
= skel_aio_write
,
905 .aio_return_fn
= skel_aio_return_fn
,
906 .aio_cancel
= skel_aio_cancel
,
907 .aio_error_fn
= skel_aio_error_fn
,
908 .aio_fsync
= skel_aio_fsync
,
909 .aio_suspend
= skel_aio_suspend
,
910 .aio_force
= skel_aio_force
,
912 /* offline operations */
913 .is_offline
= skel_is_offline
,
914 .set_offline
= skel_set_offline
917 NTSTATUS
vfs_skel_transparent_init(void)
919 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "skel_transparent", &skel_transparent_fns
);