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/>.
24 #include "../source3/include/includes.h"
25 #include "lib/util/tevent_ntstatus.h"
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
,
42 static void skel_disconnect(vfs_handle_struct
*handle
)
47 static uint64_t skel_disk_free(vfs_handle_struct
*handle
, const char *path
,
49 uint64_t *dfree
, uint64_t *dsize
)
57 static int skel_get_quota(vfs_handle_struct
*handle
, enum SMB_QUOTA_TYPE qtype
,
58 unid_t id
, SMB_DISK_QUOTA
*dq
)
64 static int skel_set_quota(vfs_handle_struct
*handle
, enum SMB_QUOTA_TYPE qtype
,
65 unid_t id
, SMB_DISK_QUOTA
*dq
)
71 static int skel_get_shadow_copy_data(vfs_handle_struct
*handle
,
73 struct shadow_copy_data
*shadow_copy_data
,
80 static int skel_statvfs(struct vfs_handle_struct
*handle
,
81 const char *path
, struct vfs_statvfs_struct
*statbuf
)
87 static uint32_t skel_fs_capabilities(struct vfs_handle_struct
*handle
,
88 enum timestamp_set_resolution
*p_ts_res
)
93 static NTSTATUS
skel_get_dfs_referrals(struct vfs_handle_struct
*handle
,
94 struct dfs_GetDFSReferral
*r
)
96 return NT_STATUS_NOT_IMPLEMENTED
;
99 static DIR *skel_opendir(vfs_handle_struct
*handle
, const char *fname
,
100 const char *mask
, uint32 attr
)
105 static NTSTATUS
skel_snap_check_path(struct vfs_handle_struct
*handle
,
107 const char *service_path
,
110 return NT_STATUS_NOT_SUPPORTED
;
113 static NTSTATUS
skel_snap_create(struct vfs_handle_struct
*handle
,
115 const char *base_volume
,
121 return NT_STATUS_NOT_SUPPORTED
;
124 static NTSTATUS
skel_snap_delete(struct vfs_handle_struct
*handle
,
129 return NT_STATUS_NOT_SUPPORTED
;
132 static DIR *skel_fdopendir(vfs_handle_struct
*handle
, files_struct
*fsp
,
133 const char *mask
, uint32 attr
)
138 static struct dirent
*skel_readdir(vfs_handle_struct
*handle
,
139 DIR *dirp
, SMB_STRUCT_STAT
*sbuf
)
144 static void skel_seekdir(vfs_handle_struct
*handle
, DIR *dirp
, long offset
)
149 static long skel_telldir(vfs_handle_struct
*handle
, DIR *dirp
)
154 static void skel_rewind_dir(vfs_handle_struct
*handle
, DIR *dirp
)
159 static int skel_mkdir(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
165 static int skel_rmdir(vfs_handle_struct
*handle
, const char *path
)
171 static int skel_closedir(vfs_handle_struct
*handle
, DIR *dir
)
177 static void skel_init_search_op(struct vfs_handle_struct
*handle
, DIR *dirp
)
182 static int skel_open(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
,
183 files_struct
*fsp
, int flags
, mode_t mode
)
189 static NTSTATUS
skel_create_file(struct vfs_handle_struct
*handle
,
190 struct smb_request
*req
,
191 uint16_t root_dir_fid
,
192 struct smb_filename
*smb_fname
,
193 uint32_t access_mask
,
194 uint32_t share_access
,
195 uint32_t create_disposition
,
196 uint32_t create_options
,
197 uint32_t file_attributes
,
198 uint32_t oplock_request
,
199 struct smb2_lease
*lease
,
200 uint64_t allocation_size
,
201 uint32_t private_flags
,
202 struct security_descriptor
*sd
,
203 struct ea_list
*ea_list
,
204 files_struct
**result
, int *pinfo
,
205 const struct smb2_create_blobs
*in_context_blobs
,
206 struct smb2_create_blobs
*out_context_blobs
)
208 return NT_STATUS_NOT_IMPLEMENTED
;
211 static int skel_close_fn(vfs_handle_struct
*handle
, files_struct
*fsp
)
217 static ssize_t
skel_vfs_read(vfs_handle_struct
*handle
, files_struct
*fsp
,
218 void *data
, size_t n
)
224 static ssize_t
skel_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
225 void *data
, size_t n
, off_t offset
)
231 static struct tevent_req
*skel_pread_send(struct vfs_handle_struct
*handle
,
233 struct tevent_context
*ev
,
234 struct files_struct
*fsp
,
235 void *data
, size_t n
, off_t offset
)
240 static ssize_t
skel_pread_recv(struct tevent_req
*req
, int *err
)
246 static ssize_t
skel_write(vfs_handle_struct
*handle
, files_struct
*fsp
,
247 const void *data
, size_t n
)
253 static ssize_t
skel_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
254 const void *data
, size_t n
, off_t offset
)
260 static struct tevent_req
*skel_pwrite_send(struct vfs_handle_struct
*handle
,
262 struct tevent_context
*ev
,
263 struct files_struct
*fsp
,
265 size_t n
, off_t offset
)
270 static ssize_t
skel_pwrite_recv(struct tevent_req
*req
, int *err
)
276 static off_t
skel_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
,
277 off_t offset
, int whence
)
283 static ssize_t
skel_sendfile(vfs_handle_struct
*handle
, int tofd
,
284 files_struct
*fromfsp
, const DATA_BLOB
*hdr
,
285 off_t offset
, size_t n
)
291 static ssize_t
skel_recvfile(vfs_handle_struct
*handle
, int fromfd
,
292 files_struct
*tofsp
, off_t offset
, size_t n
)
298 static int skel_rename(vfs_handle_struct
*handle
,
299 const struct smb_filename
*smb_fname_src
,
300 const struct smb_filename
*smb_fname_dst
)
306 static int skel_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
312 static struct tevent_req
*skel_fsync_send(struct vfs_handle_struct
*handle
,
314 struct tevent_context
*ev
,
315 struct files_struct
*fsp
)
320 static int skel_fsync_recv(struct tevent_req
*req
, int *err
)
326 static int skel_stat(vfs_handle_struct
*handle
, struct smb_filename
*smb_fname
)
332 static int skel_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
,
333 SMB_STRUCT_STAT
*sbuf
)
339 static int skel_lstat(vfs_handle_struct
*handle
,
340 struct smb_filename
*smb_fname
)
346 static uint64_t skel_get_alloc_size(struct vfs_handle_struct
*handle
,
347 struct files_struct
*fsp
,
348 const SMB_STRUCT_STAT
*sbuf
)
354 static int skel_unlink(vfs_handle_struct
*handle
,
355 const struct smb_filename
*smb_fname
)
361 static int skel_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
367 static int skel_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
,
374 static int skel_chown(vfs_handle_struct
*handle
, const char *path
,
375 uid_t uid
, gid_t gid
)
381 static int skel_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
,
382 uid_t uid
, gid_t gid
)
388 static int skel_lchown(vfs_handle_struct
*handle
, const char *path
,
389 uid_t uid
, gid_t gid
)
395 static int skel_chdir(vfs_handle_struct
*handle
, const char *path
)
401 static char *skel_getwd(vfs_handle_struct
*handle
)
407 static int skel_ntimes(vfs_handle_struct
*handle
,
408 const struct smb_filename
*smb_fname
,
409 struct smb_file_time
*ft
)
415 static int skel_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
422 static int skel_fallocate(vfs_handle_struct
*handle
, files_struct
*fsp
,
423 uint32_t mode
, off_t offset
, off_t len
)
429 static bool skel_lock(vfs_handle_struct
*handle
, files_struct
*fsp
, int op
,
430 off_t offset
, off_t count
, int type
)
436 static int skel_kernel_flock(struct vfs_handle_struct
*handle
,
437 struct files_struct
*fsp
,
438 uint32 share_mode
, uint32 access_mask
)
444 static int skel_linux_setlease(struct vfs_handle_struct
*handle
,
445 struct files_struct
*fsp
, int leasetype
)
451 static bool skel_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
,
452 off_t
*poffset
, off_t
*pcount
, int *ptype
,
459 static int skel_symlink(vfs_handle_struct
*handle
, const char *oldpath
,
466 static int skel_vfs_readlink(vfs_handle_struct
*handle
, const char *path
,
467 char *buf
, size_t bufsiz
)
473 static int skel_link(vfs_handle_struct
*handle
, const char *oldpath
,
480 static int skel_mknod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
,
487 static char *skel_realpath(vfs_handle_struct
*handle
, const char *path
)
493 static NTSTATUS
skel_notify_watch(struct vfs_handle_struct
*handle
,
494 struct sys_notify_context
*ctx
,
497 uint32_t *subdir_filter
,
498 void (*callback
) (struct sys_notify_context
*
499 ctx
, void *private_data
,
500 struct notify_event
*ev
),
501 void *private_data
, void *handle_p
)
503 return NT_STATUS_NOT_IMPLEMENTED
;
506 static int skel_chflags(vfs_handle_struct
*handle
, const char *path
,
513 static struct file_id
skel_file_id_create(vfs_handle_struct
*handle
,
514 const SMB_STRUCT_STAT
*sbuf
)
522 struct skel_cc_state
{
525 static struct tevent_req
*skel_copy_chunk_send(struct vfs_handle_struct
*handle
,
527 struct tevent_context
*ev
,
528 struct files_struct
*src_fsp
,
530 struct files_struct
*dest_fsp
,
534 struct tevent_req
*req
;
535 struct skel_cc_state
*cc_state
;
537 req
= tevent_req_create(mem_ctx
, &cc_state
, struct skel_cc_state
);
542 tevent_req_nterror(req
, NT_STATUS_NOT_IMPLEMENTED
);
543 return tevent_req_post(req
, ev
);
546 static NTSTATUS
skel_copy_chunk_recv(struct vfs_handle_struct
*handle
,
547 struct tevent_req
*req
,
552 if (tevent_req_is_nterror(req
, &status
)) {
553 tevent_req_received(req
);
556 tevent_req_received(req
);
561 static NTSTATUS
skel_get_compression(struct vfs_handle_struct
*handle
,
563 struct files_struct
*fsp
,
564 struct smb_filename
*smb_fname
,
565 uint16_t *_compression_fmt
)
567 return NT_STATUS_INVALID_DEVICE_REQUEST
;
570 static NTSTATUS
skel_set_compression(struct vfs_handle_struct
*handle
,
572 struct files_struct
*fsp
,
573 uint16_t compression_fmt
)
575 return NT_STATUS_INVALID_DEVICE_REQUEST
;
578 static NTSTATUS
skel_streaminfo(struct vfs_handle_struct
*handle
,
579 struct files_struct
*fsp
,
582 unsigned int *num_streams
,
583 struct stream_struct
**streams
)
585 return NT_STATUS_NOT_IMPLEMENTED
;
588 static int skel_get_real_filename(struct vfs_handle_struct
*handle
,
591 TALLOC_CTX
*mem_ctx
, char **found_name
)
597 static const char *skel_connectpath(struct vfs_handle_struct
*handle
,
598 const char *filename
)
604 static NTSTATUS
skel_brl_lock_windows(struct vfs_handle_struct
*handle
,
605 struct byte_range_lock
*br_lck
,
606 struct lock_struct
*plock
,
609 return NT_STATUS_NOT_IMPLEMENTED
;
612 static bool skel_brl_unlock_windows(struct vfs_handle_struct
*handle
,
613 struct messaging_context
*msg_ctx
,
614 struct byte_range_lock
*br_lck
,
615 const struct lock_struct
*plock
)
621 static bool skel_brl_cancel_windows(struct vfs_handle_struct
*handle
,
622 struct byte_range_lock
*br_lck
,
623 struct lock_struct
*plock
)
629 static bool skel_strict_lock(struct vfs_handle_struct
*handle
,
630 struct files_struct
*fsp
,
631 struct lock_struct
*plock
)
637 static void skel_strict_unlock(struct vfs_handle_struct
*handle
,
638 struct files_struct
*fsp
,
639 struct lock_struct
*plock
)
644 static NTSTATUS
skel_translate_name(struct vfs_handle_struct
*handle
,
645 const char *mapped_name
,
646 enum vfs_translate_direction direction
,
647 TALLOC_CTX
*mem_ctx
, char **pmapped_name
)
649 return NT_STATUS_NOT_IMPLEMENTED
;
652 static NTSTATUS
skel_fsctl(struct vfs_handle_struct
*handle
,
653 struct files_struct
*fsp
,
656 uint16_t req_flags
, /* Needed for UNICODE ... */
657 const uint8_t *_in_data
,
660 uint32_t max_out_len
, uint32_t *out_len
)
662 return NT_STATUS_NOT_IMPLEMENTED
;
665 static NTSTATUS
skel_readdir_attr(struct vfs_handle_struct
*handle
,
666 const struct smb_filename
*fname
,
668 struct readdir_attr_data
**pattr_data
)
670 return NT_STATUS_NOT_IMPLEMENTED
;
673 static NTSTATUS
skel_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
674 uint32 security_info
,
676 struct security_descriptor
**ppdesc
)
678 return NT_STATUS_NOT_IMPLEMENTED
;
681 static NTSTATUS
skel_get_nt_acl(vfs_handle_struct
*handle
,
682 const char *name
, uint32 security_info
,
684 struct security_descriptor
**ppdesc
)
686 return NT_STATUS_NOT_IMPLEMENTED
;
689 static NTSTATUS
skel_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
690 uint32 security_info_sent
,
691 const struct security_descriptor
*psd
)
693 return NT_STATUS_NOT_IMPLEMENTED
;
696 static int skel_chmod_acl(vfs_handle_struct
*handle
, const char *name
,
703 static int skel_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
710 static SMB_ACL_T
skel_sys_acl_get_file(vfs_handle_struct
*handle
,
716 return (SMB_ACL_T
) NULL
;
719 static SMB_ACL_T
skel_sys_acl_get_fd(vfs_handle_struct
*handle
,
720 files_struct
*fsp
, TALLOC_CTX
*mem_ctx
)
723 return (SMB_ACL_T
) NULL
;
726 static int skel_sys_acl_blob_get_file(vfs_handle_struct
*handle
,
727 const char *path_p
, TALLOC_CTX
*mem_ctx
,
728 char **blob_description
, DATA_BLOB
*blob
)
734 static int skel_sys_acl_blob_get_fd(vfs_handle_struct
*handle
,
735 files_struct
*fsp
, TALLOC_CTX
*mem_ctx
,
736 char **blob_description
, DATA_BLOB
*blob
)
742 static int skel_sys_acl_set_file(vfs_handle_struct
*handle
, const char *name
,
743 SMB_ACL_TYPE_T acltype
, SMB_ACL_T theacl
)
749 static int skel_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
756 static int skel_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
763 static ssize_t
skel_getxattr(vfs_handle_struct
*handle
, const char *path
,
764 const char *name
, void *value
, size_t size
)
770 static ssize_t
skel_fgetxattr(vfs_handle_struct
*handle
,
771 struct files_struct
*fsp
, const char *name
,
772 void *value
, size_t size
)
778 static ssize_t
skel_listxattr(vfs_handle_struct
*handle
, const char *path
,
779 char *list
, size_t size
)
785 static ssize_t
skel_flistxattr(vfs_handle_struct
*handle
,
786 struct files_struct
*fsp
, char *list
,
793 static int skel_removexattr(vfs_handle_struct
*handle
, const char *path
,
800 static int skel_fremovexattr(vfs_handle_struct
*handle
,
801 struct files_struct
*fsp
, const char *name
)
805 return SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, name
);
808 static int skel_setxattr(vfs_handle_struct
*handle
, const char *path
,
809 const char *name
, const void *value
, size_t size
,
816 static int skel_fsetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
,
817 const char *name
, const void *value
, size_t size
,
824 static bool skel_aio_force(struct vfs_handle_struct
*handle
,
825 struct files_struct
*fsp
)
831 static bool skel_is_offline(struct vfs_handle_struct
*handle
,
832 const struct smb_filename
*fname
,
833 SMB_STRUCT_STAT
*sbuf
)
839 static int skel_set_offline(struct vfs_handle_struct
*handle
,
840 const struct smb_filename
*fname
)
846 /* VFS operations structure */
848 struct vfs_fn_pointers skel_opaque_fns
= {
849 /* Disk operations */
851 .connect_fn
= skel_connect
,
852 .disconnect_fn
= skel_disconnect
,
853 .disk_free_fn
= skel_disk_free
,
854 .get_quota_fn
= skel_get_quota
,
855 .set_quota_fn
= skel_set_quota
,
856 .get_shadow_copy_data_fn
= skel_get_shadow_copy_data
,
857 .statvfs_fn
= skel_statvfs
,
858 .fs_capabilities_fn
= skel_fs_capabilities
,
859 .get_dfs_referrals_fn
= skel_get_dfs_referrals
,
860 .snap_check_path_fn
= skel_snap_check_path
,
861 .snap_create_fn
= skel_snap_create
,
862 .snap_delete_fn
= skel_snap_delete
,
864 /* Directory operations */
866 .opendir_fn
= skel_opendir
,
867 .fdopendir_fn
= skel_fdopendir
,
868 .readdir_fn
= skel_readdir
,
869 .seekdir_fn
= skel_seekdir
,
870 .telldir_fn
= skel_telldir
,
871 .rewind_dir_fn
= skel_rewind_dir
,
872 .mkdir_fn
= skel_mkdir
,
873 .rmdir_fn
= skel_rmdir
,
874 .closedir_fn
= skel_closedir
,
875 .init_search_op_fn
= skel_init_search_op
,
877 /* File operations */
879 .open_fn
= skel_open
,
880 .create_file_fn
= skel_create_file
,
881 .close_fn
= skel_close_fn
,
882 .read_fn
= skel_vfs_read
,
883 .pread_fn
= skel_pread
,
884 .pread_send_fn
= skel_pread_send
,
885 .pread_recv_fn
= skel_pread_recv
,
886 .write_fn
= skel_write
,
887 .pwrite_fn
= skel_pwrite
,
888 .pwrite_send_fn
= skel_pwrite_send
,
889 .pwrite_recv_fn
= skel_pwrite_recv
,
890 .lseek_fn
= skel_lseek
,
891 .sendfile_fn
= skel_sendfile
,
892 .recvfile_fn
= skel_recvfile
,
893 .rename_fn
= skel_rename
,
894 .fsync_fn
= skel_fsync
,
895 .fsync_send_fn
= skel_fsync_send
,
896 .fsync_recv_fn
= skel_fsync_recv
,
897 .stat_fn
= skel_stat
,
898 .fstat_fn
= skel_fstat
,
899 .lstat_fn
= skel_lstat
,
900 .get_alloc_size_fn
= skel_get_alloc_size
,
901 .unlink_fn
= skel_unlink
,
902 .chmod_fn
= skel_chmod
,
903 .fchmod_fn
= skel_fchmod
,
904 .chown_fn
= skel_chown
,
905 .fchown_fn
= skel_fchown
,
906 .lchown_fn
= skel_lchown
,
907 .chdir_fn
= skel_chdir
,
908 .getwd_fn
= skel_getwd
,
909 .ntimes_fn
= skel_ntimes
,
910 .ftruncate_fn
= skel_ftruncate
,
911 .fallocate_fn
= skel_fallocate
,
912 .lock_fn
= skel_lock
,
913 .kernel_flock_fn
= skel_kernel_flock
,
914 .linux_setlease_fn
= skel_linux_setlease
,
915 .getlock_fn
= skel_getlock
,
916 .symlink_fn
= skel_symlink
,
917 .readlink_fn
= skel_vfs_readlink
,
918 .link_fn
= skel_link
,
919 .mknod_fn
= skel_mknod
,
920 .realpath_fn
= skel_realpath
,
921 .notify_watch_fn
= skel_notify_watch
,
922 .chflags_fn
= skel_chflags
,
923 .file_id_create_fn
= skel_file_id_create
,
924 .copy_chunk_send_fn
= skel_copy_chunk_send
,
925 .copy_chunk_recv_fn
= skel_copy_chunk_recv
,
926 .get_compression_fn
= skel_get_compression
,
927 .set_compression_fn
= skel_set_compression
,
929 .streaminfo_fn
= skel_streaminfo
,
930 .get_real_filename_fn
= skel_get_real_filename
,
931 .connectpath_fn
= skel_connectpath
,
932 .brl_lock_windows_fn
= skel_brl_lock_windows
,
933 .brl_unlock_windows_fn
= skel_brl_unlock_windows
,
934 .brl_cancel_windows_fn
= skel_brl_cancel_windows
,
935 .strict_lock_fn
= skel_strict_lock
,
936 .strict_unlock_fn
= skel_strict_unlock
,
937 .translate_name_fn
= skel_translate_name
,
938 .fsctl_fn
= skel_fsctl
,
939 .readdir_attr_fn
= skel_readdir_attr
,
941 /* NT ACL operations. */
943 .fget_nt_acl_fn
= skel_fget_nt_acl
,
944 .get_nt_acl_fn
= skel_get_nt_acl
,
945 .fset_nt_acl_fn
= skel_fset_nt_acl
,
947 /* POSIX ACL operations. */
949 .chmod_acl_fn
= skel_chmod_acl
,
950 .fchmod_acl_fn
= skel_fchmod_acl
,
952 .sys_acl_get_file_fn
= skel_sys_acl_get_file
,
953 .sys_acl_get_fd_fn
= skel_sys_acl_get_fd
,
954 .sys_acl_blob_get_file_fn
= skel_sys_acl_blob_get_file
,
955 .sys_acl_blob_get_fd_fn
= skel_sys_acl_blob_get_fd
,
956 .sys_acl_set_file_fn
= skel_sys_acl_set_file
,
957 .sys_acl_set_fd_fn
= skel_sys_acl_set_fd
,
958 .sys_acl_delete_def_file_fn
= skel_sys_acl_delete_def_file
,
961 .getxattr_fn
= skel_getxattr
,
962 .fgetxattr_fn
= skel_fgetxattr
,
963 .listxattr_fn
= skel_listxattr
,
964 .flistxattr_fn
= skel_flistxattr
,
965 .removexattr_fn
= skel_removexattr
,
966 .fremovexattr_fn
= skel_fremovexattr
,
967 .setxattr_fn
= skel_setxattr
,
968 .fsetxattr_fn
= skel_fsetxattr
,
971 .aio_force_fn
= skel_aio_force
,
973 /* offline operations */
974 .is_offline_fn
= skel_is_offline
,
975 .set_offline_fn
= skel_set_offline
978 NTSTATUS
vfs_skel_opaque_init(void)
980 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "skel_opaque",