2 Unix SMB/Netbios implementation.
4 VFS initialisation and support functions
5 Copyright (C) Tim Potter 1999
6 Copyright (C) Alexander Bokovoy 2002
7 Copyright (C) James Peach 2006
8 Copyright (C) Volker Lendecke 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/>.
23 This work was sponsored by Optifacio Software Services, Inc.
27 #include "smbd/globals.h"
31 #define DBGC_CLASS DBGC_VFS
35 struct vfs_init_function_entry
{
37 struct vfs_init_function_entry
*prev
, *next
;
38 const struct vfs_fn_pointers
*fns
;
41 /****************************************************************************
42 maintain the list of available backends
43 ****************************************************************************/
45 static struct vfs_init_function_entry
*vfs_find_backend_entry(const char *name
)
47 struct vfs_init_function_entry
*entry
= backends
;
49 DEBUG(10, ("vfs_find_backend_entry called for %s\n", name
));
52 if (strcmp(entry
->name
, name
)==0) return entry
;
59 NTSTATUS
smb_register_vfs(int version
, const char *name
,
60 const struct vfs_fn_pointers
*fns
)
62 struct vfs_init_function_entry
*entry
= backends
;
64 if ((version
!= SMB_VFS_INTERFACE_VERSION
)) {
65 DEBUG(0, ("Failed to register vfs module.\n"
66 "The module was compiled against SMB_VFS_INTERFACE_VERSION %d,\n"
67 "current SMB_VFS_INTERFACE_VERSION is %d.\n"
68 "Please recompile against the current Samba Version!\n",
69 version
, SMB_VFS_INTERFACE_VERSION
));
70 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
73 if (!name
|| !name
[0]) {
74 DEBUG(0,("smb_register_vfs() called with NULL pointer or empty name!\n"));
75 return NT_STATUS_INVALID_PARAMETER
;
78 if (vfs_find_backend_entry(name
)) {
79 DEBUG(0,("VFS module %s already loaded!\n", name
));
80 return NT_STATUS_OBJECT_NAME_COLLISION
;
83 entry
= SMB_XMALLOC_P(struct vfs_init_function_entry
);
84 entry
->name
= smb_xstrdup(name
);
87 DLIST_ADD(backends
, entry
);
88 DEBUG(5, ("Successfully added vfs backend '%s'\n", name
));
92 /****************************************************************************
93 initialise default vfs hooks
94 ****************************************************************************/
96 static void vfs_init_default(connection_struct
*conn
)
98 DEBUG(3, ("Initialising default vfs hooks\n"));
99 vfs_init_custom(conn
, DEFAULT_VFS_MODULE_NAME
);
102 /****************************************************************************
103 initialise custom vfs hooks
104 ****************************************************************************/
106 bool vfs_init_custom(connection_struct
*conn
, const char *vfs_object
)
108 char *module_path
= NULL
;
109 char *module_name
= NULL
;
110 char *module_param
= NULL
, *p
;
111 vfs_handle_struct
*handle
;
112 const struct vfs_init_function_entry
*entry
;
114 if (!conn
||!vfs_object
||!vfs_object
[0]) {
115 DEBUG(0, ("vfs_init_custom() called with NULL pointer or "
116 "empty vfs_object!\n"));
124 DEBUG(3, ("Initialising custom vfs hooks from [%s]\n", vfs_object
));
126 module_path
= smb_xstrdup(vfs_object
);
128 p
= strchr_m(module_path
, ':');
133 trim_char(module_param
, ' ', ' ');
136 trim_char(module_path
, ' ', ' ');
138 module_name
= smb_xstrdup(module_path
);
140 if ((module_name
[0] == '/') &&
141 (strcmp(module_path
, DEFAULT_VFS_MODULE_NAME
) != 0)) {
144 * Extract the module name from the path. Just use the base
145 * name of the last path component.
148 SAFE_FREE(module_name
);
149 module_name
= smb_xstrdup(strrchr_m(module_path
, '/')+1);
151 p
= strchr_m(module_name
, '.');
158 /* First, try to load the module with the new module system */
159 entry
= vfs_find_backend_entry(module_name
);
163 DEBUG(5, ("vfs module [%s] not loaded - trying to load...\n",
166 status
= smb_probe_module("vfs", module_path
);
167 if (!NT_STATUS_IS_OK(status
)) {
168 DEBUG(0, ("error probing vfs module '%s': %s\n",
169 module_path
, nt_errstr(status
)));
173 entry
= vfs_find_backend_entry(module_name
);
175 DEBUG(0,("Can't find a vfs module [%s]\n",vfs_object
));
180 DEBUGADD(5,("Successfully loaded vfs module [%s] with the new modules system\n", vfs_object
));
182 handle
= TALLOC_ZERO_P(conn
, vfs_handle_struct
);
184 DEBUG(0,("TALLOC_ZERO() failed!\n"));
188 handle
->fns
= entry
->fns
;
190 handle
->param
= talloc_strdup(conn
, module_param
);
192 DLIST_ADD(conn
->vfs_handles
, handle
);
194 SAFE_FREE(module_path
);
195 SAFE_FREE(module_name
);
199 SAFE_FREE(module_path
);
200 SAFE_FREE(module_name
);
204 /*****************************************************************
205 Allow VFS modules to extend files_struct with VFS-specific state.
206 This will be ok for small numbers of extensions, but might need to
207 be refactored if it becomes more widely used.
208 ******************************************************************/
210 #define EXT_DATA_AREA(e) ((uint8 *)(e) + sizeof(struct vfs_fsp_data))
212 void *vfs_add_fsp_extension_notype(vfs_handle_struct
*handle
,
213 files_struct
*fsp
, size_t ext_size
,
214 void (*destroy_fn
)(void *p_data
))
216 struct vfs_fsp_data
*ext
;
219 /* Prevent VFS modules adding multiple extensions. */
220 if ((ext_data
= vfs_fetch_fsp_extension(handle
, fsp
))) {
224 ext
= (struct vfs_fsp_data
*)TALLOC_ZERO(
225 handle
->conn
, sizeof(struct vfs_fsp_data
) + ext_size
);
231 ext
->next
= fsp
->vfs_extension
;
232 ext
->destroy
= destroy_fn
;
233 fsp
->vfs_extension
= ext
;
234 return EXT_DATA_AREA(ext
);
237 void vfs_remove_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
)
239 struct vfs_fsp_data
*curr
;
240 struct vfs_fsp_data
*prev
;
242 for (curr
= fsp
->vfs_extension
, prev
= NULL
;
244 prev
= curr
, curr
= curr
->next
) {
245 if (curr
->owner
== handle
) {
247 prev
->next
= curr
->next
;
249 fsp
->vfs_extension
= curr
->next
;
252 curr
->destroy(EXT_DATA_AREA(curr
));
260 void *vfs_memctx_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
)
262 struct vfs_fsp_data
*head
;
264 for (head
= fsp
->vfs_extension
; head
; head
= head
->next
) {
265 if (head
->owner
== handle
) {
273 void *vfs_fetch_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
)
275 struct vfs_fsp_data
*head
;
277 head
= (struct vfs_fsp_data
*)vfs_memctx_fsp_extension(handle
, fsp
);
279 return EXT_DATA_AREA(head
);
287 /*****************************************************************
289 ******************************************************************/
291 bool smbd_vfs_init(connection_struct
*conn
)
293 const char **vfs_objects
;
297 /* Normal share - initialise with disk access functions */
298 vfs_init_default(conn
);
299 vfs_objects
= lp_vfs_objects(SNUM(conn
));
301 /* Override VFS functions if 'vfs object' was not specified*/
302 if (!vfs_objects
|| !vfs_objects
[0])
305 for (i
=0; vfs_objects
[i
] ;) {
309 for (j
=i
-1; j
>= 0; j
--) {
310 if (!vfs_init_custom(conn
, vfs_objects
[j
])) {
311 DEBUG(0, ("smbd_vfs_init: vfs_init_custom failed for %s\n", vfs_objects
[j
]));
318 /*******************************************************************
319 Check if a file exists in the vfs.
320 ********************************************************************/
322 NTSTATUS
vfs_file_exist(connection_struct
*conn
, struct smb_filename
*smb_fname
)
324 /* Only return OK if stat was successful and S_ISREG */
325 if ((SMB_VFS_STAT(conn
, smb_fname
) != -1) &&
326 S_ISREG(smb_fname
->st
.st_ex_mode
)) {
330 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
333 /****************************************************************************
334 Read data from fsp on the vfs. (note: EINTR re-read differs from vfs_write_data)
335 ****************************************************************************/
337 ssize_t
vfs_read_data(files_struct
*fsp
, char *buf
, size_t byte_count
)
341 while (total
< byte_count
)
343 ssize_t ret
= SMB_VFS_READ(fsp
, buf
+ total
,
346 if (ret
== 0) return total
;
355 return (ssize_t
)total
;
358 ssize_t
vfs_pread_data(files_struct
*fsp
, char *buf
,
359 size_t byte_count
, SMB_OFF_T offset
)
363 while (total
< byte_count
)
365 ssize_t ret
= SMB_VFS_PREAD(fsp
, buf
+ total
,
366 byte_count
- total
, offset
+ total
);
368 if (ret
== 0) return total
;
377 return (ssize_t
)total
;
380 /****************************************************************************
381 Write data to a fd on the vfs.
382 ****************************************************************************/
384 ssize_t
vfs_write_data(struct smb_request
*req
,
392 if (req
&& req
->unread_bytes
) {
393 SMB_ASSERT(req
->unread_bytes
== N
);
394 /* VFS_RECVFILE must drain the socket
395 * before returning. */
396 req
->unread_bytes
= 0;
397 return SMB_VFS_RECVFILE(req
->sconn
->sock
,
404 ret
= SMB_VFS_WRITE(fsp
, buffer
+ total
, N
- total
);
413 return (ssize_t
)total
;
416 ssize_t
vfs_pwrite_data(struct smb_request
*req
,
425 if (req
&& req
->unread_bytes
) {
426 SMB_ASSERT(req
->unread_bytes
== N
);
427 /* VFS_RECVFILE must drain the socket
428 * before returning. */
429 req
->unread_bytes
= 0;
430 return SMB_VFS_RECVFILE(req
->sconn
->sock
,
437 ret
= SMB_VFS_PWRITE(fsp
, buffer
+ total
, N
- total
,
447 return (ssize_t
)total
;
449 /****************************************************************************
450 An allocate file space call using the vfs interface.
451 Allocates space for a file from a filedescriptor.
452 Returns 0 on success, -1 on failure.
453 ****************************************************************************/
455 int vfs_allocate_file_space(files_struct
*fsp
, uint64_t len
)
458 connection_struct
*conn
= fsp
->conn
;
459 uint64_t space_avail
;
460 uint64_t bsize
,dfree
,dsize
;
464 * Actually try and commit the space on disk....
467 DEBUG(10,("vfs_allocate_file_space: file %s, len %.0f\n",
468 fsp_str_dbg(fsp
), (double)len
));
470 if (((SMB_OFF_T
)len
) < 0) {
471 DEBUG(0,("vfs_allocate_file_space: %s negative len "
472 "requested.\n", fsp_str_dbg(fsp
)));
477 status
= vfs_stat_fsp(fsp
);
478 if (!NT_STATUS_IS_OK(status
)) {
482 if (len
== (uint64_t)fsp
->fsp_name
->st
.st_ex_size
)
485 if (len
< (uint64_t)fsp
->fsp_name
->st
.st_ex_size
) {
486 /* Shrink - use ftruncate. */
488 DEBUG(10,("vfs_allocate_file_space: file %s, shrink. Current "
489 "size %.0f\n", fsp_str_dbg(fsp
),
490 (double)fsp
->fsp_name
->st
.st_ex_size
));
492 contend_level2_oplocks_begin(fsp
, LEVEL2_CONTEND_ALLOC_SHRINK
);
494 flush_write_cache(fsp
, SIZECHANGE_FLUSH
);
495 if ((ret
= SMB_VFS_FTRUNCATE(fsp
, (SMB_OFF_T
)len
)) != -1) {
496 set_filelen_write_cache(fsp
, len
);
499 contend_level2_oplocks_end(fsp
, LEVEL2_CONTEND_ALLOC_SHRINK
);
504 /* Grow - we need to test if we have enough space. */
506 contend_level2_oplocks_begin(fsp
, LEVEL2_CONTEND_ALLOC_GROW
);
507 contend_level2_oplocks_end(fsp
, LEVEL2_CONTEND_ALLOC_GROW
);
509 if (!lp_strict_allocate(SNUM(fsp
->conn
)))
512 len
-= fsp
->fsp_name
->st
.st_ex_size
;
513 len
/= 1024; /* Len is now number of 1k blocks needed. */
514 space_avail
= get_dfree_info(conn
, fsp
->fsp_name
->base_name
, false,
515 &bsize
, &dfree
, &dsize
);
516 if (space_avail
== (uint64_t)-1) {
520 DEBUG(10,("vfs_allocate_file_space: file %s, grow. Current size %.0f, "
521 "needed blocks = %.0f, space avail = %.0f\n",
522 fsp_str_dbg(fsp
), (double)fsp
->fsp_name
->st
.st_ex_size
, (double)len
,
523 (double)space_avail
));
525 if (len
> space_avail
) {
533 /****************************************************************************
534 A vfs set_filelen call.
535 set the length of a file from a filedescriptor.
536 Returns 0 on success, -1 on failure.
537 ****************************************************************************/
539 int vfs_set_filelen(files_struct
*fsp
, SMB_OFF_T len
)
543 contend_level2_oplocks_begin(fsp
, LEVEL2_CONTEND_SET_FILE_LEN
);
545 DEBUG(10,("vfs_set_filelen: ftruncate %s to len %.0f\n",
546 fsp_str_dbg(fsp
), (double)len
));
547 flush_write_cache(fsp
, SIZECHANGE_FLUSH
);
548 if ((ret
= SMB_VFS_FTRUNCATE(fsp
, len
)) != -1) {
549 set_filelen_write_cache(fsp
, len
);
550 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
551 FILE_NOTIFY_CHANGE_SIZE
552 | FILE_NOTIFY_CHANGE_ATTRIBUTES
,
553 fsp
->fsp_name
->base_name
);
556 contend_level2_oplocks_end(fsp
, LEVEL2_CONTEND_SET_FILE_LEN
);
561 /****************************************************************************
562 A slow version of fallocate. Fallback code if SMB_VFS_FALLOCATE
563 fails. Needs to be outside of the default version of SMB_VFS_FALLOCATE
564 as this is also called from the default SMB_VFS_FTRUNCATE code.
565 Always extends the file size.
566 Returns 0 on success, errno on failure.
567 ****************************************************************************/
569 #define SPARSE_BUF_WRITE_SIZE (32*1024)
571 int vfs_slow_fallocate(files_struct
*fsp
, SMB_OFF_T offset
, SMB_OFF_T len
)
577 sparse_buf
= SMB_CALLOC_ARRAY(char, SPARSE_BUF_WRITE_SIZE
);
584 while (total
< len
) {
585 size_t curr_write_size
= MIN(SPARSE_BUF_WRITE_SIZE
, (len
- total
));
587 pwrite_ret
= SMB_VFS_PWRITE(fsp
, sparse_buf
, curr_write_size
, offset
+ total
);
588 if (pwrite_ret
== -1) {
589 DEBUG(10,("vfs_slow_fallocate: SMB_VFS_PWRITE for file "
590 "%s failed with error %s\n",
591 fsp_str_dbg(fsp
), strerror(errno
)));
600 /****************************************************************************
601 A vfs fill sparse call.
602 Writes zeros from the end of file to len, if len is greater than EOF.
603 Used only by strict_sync.
604 Returns 0 on success, -1 on failure.
605 ****************************************************************************/
607 int vfs_fill_sparse(files_struct
*fsp
, SMB_OFF_T len
)
614 status
= vfs_stat_fsp(fsp
);
615 if (!NT_STATUS_IS_OK(status
)) {
619 if (len
<= fsp
->fsp_name
->st
.st_ex_size
) {
624 if (S_ISFIFO(fsp
->fsp_name
->st
.st_ex_mode
)) {
629 DEBUG(10,("vfs_fill_sparse: write zeros in file %s from len %.0f to "
630 "len %.0f (%.0f bytes)\n", fsp_str_dbg(fsp
),
631 (double)fsp
->fsp_name
->st
.st_ex_size
, (double)len
,
632 (double)(len
- fsp
->fsp_name
->st
.st_ex_size
)));
634 contend_level2_oplocks_begin(fsp
, LEVEL2_CONTEND_FILL_SPARSE
);
636 flush_write_cache(fsp
, SIZECHANGE_FLUSH
);
638 offset
= fsp
->fsp_name
->st
.st_ex_size
;
639 num_to_write
= len
- fsp
->fsp_name
->st
.st_ex_size
;
641 /* Only do this on non-stream file handles. */
642 if (fsp
->base_fsp
== NULL
) {
643 /* for allocation try fallocate first. This can fail on some
644 * platforms e.g. when the filesystem doesn't support it and no
645 * emulation is being done by the libc (like on AIX with JFS1). In that
646 * case we do our own emulation. fallocate implementations can
647 * return ENOTSUP or EINVAL in cases like that. */
648 ret
= SMB_VFS_FALLOCATE(fsp
, VFS_FALLOCATE_EXTEND_SIZE
,
649 offset
, num_to_write
);
658 DEBUG(10,("vfs_fill_sparse: SMB_VFS_FALLOCATE failed with "
659 "error %d. Falling back to slow manual allocation\n", ret
));
662 ret
= vfs_slow_fallocate(fsp
, offset
, num_to_write
);
671 set_filelen_write_cache(fsp
, len
);
674 contend_level2_oplocks_end(fsp
, LEVEL2_CONTEND_FILL_SPARSE
);
678 /****************************************************************************
679 Transfer some data (n bytes) between two file_struct's.
680 ****************************************************************************/
682 static ssize_t
vfs_read_fn(void *file
, void *buf
, size_t len
)
684 struct files_struct
*fsp
= (struct files_struct
*)file
;
686 return SMB_VFS_READ(fsp
, buf
, len
);
689 static ssize_t
vfs_write_fn(void *file
, const void *buf
, size_t len
)
691 struct files_struct
*fsp
= (struct files_struct
*)file
;
693 return SMB_VFS_WRITE(fsp
, buf
, len
);
696 SMB_OFF_T
vfs_transfer_file(files_struct
*in
, files_struct
*out
, SMB_OFF_T n
)
698 return transfer_file_internal((void *)in
, (void *)out
, n
,
699 vfs_read_fn
, vfs_write_fn
);
702 /*******************************************************************
703 A vfs_readdir wrapper which just returns the file name.
704 ********************************************************************/
706 const char *vfs_readdirname(connection_struct
*conn
, void *p
,
707 SMB_STRUCT_STAT
*sbuf
, char **talloced
)
709 SMB_STRUCT_DIRENT
*ptr
= NULL
;
717 ptr
= SMB_VFS_READDIR(conn
, (DIR *)p
, sbuf
);
729 #ifdef HAVE_BROKEN_READDIR_NAME
730 /* using /usr/ucb/cc is BAD */
734 status
= SMB_VFS_TRANSLATE_NAME(conn
, dname
, vfs_translate_to_windows
,
735 talloc_tos(), &translated
);
736 if (NT_STATUS_EQUAL(status
, NT_STATUS_NONE_MAPPED
)) {
740 *talloced
= translated
;
741 if (!NT_STATUS_IS_OK(status
)) {
747 /*******************************************************************
748 A wrapper for vfs_chdir().
749 ********************************************************************/
751 int vfs_ChDir(connection_struct
*conn
, const char *path
)
756 LastDir
= SMB_STRDUP("");
759 if (strcsequal(path
,"."))
762 if (*path
== '/' && strcsequal(LastDir
,path
))
765 DEBUG(4,("vfs_ChDir to %s\n",path
));
767 res
= SMB_VFS_CHDIR(conn
,path
);
770 LastDir
= SMB_STRDUP(path
);
775 /*******************************************************************
776 Return the absolute current directory path - given a UNIX pathname.
777 Note that this path is returned in DOS format, not UNIX
778 format. Note this can be called with conn == NULL.
779 ********************************************************************/
781 char *vfs_GetWd(TALLOC_CTX
*ctx
, connection_struct
*conn
)
785 DATA_BLOB cache_value
;
787 struct smb_filename
*smb_fname_dot
= NULL
;
788 struct smb_filename
*smb_fname_full
= NULL
;
793 if (!lp_getwd_cache()) {
797 status
= create_synthetic_smb_fname(ctx
, ".", NULL
, NULL
,
799 if (!NT_STATUS_IS_OK(status
)) {
800 errno
= map_errno_from_nt_status(status
);
804 if (SMB_VFS_STAT(conn
, smb_fname_dot
) == -1) {
806 * Known to fail for root: the directory may be NFS-mounted
807 * and exported with root_squash (so has no root access).
809 DEBUG(1,("vfs_GetWd: couldn't stat \".\" error %s "
810 "(NFS problem ?)\n", strerror(errno
) ));
814 key
= vfs_file_id_from_sbuf(conn
, &smb_fname_dot
->st
);
816 if (!memcache_lookup(smbd_memcache(), GETWD_CACHE
,
817 data_blob_const(&key
, sizeof(key
)),
822 SMB_ASSERT((cache_value
.length
> 0)
823 && (cache_value
.data
[cache_value
.length
-1] == '\0'));
825 status
= create_synthetic_smb_fname(ctx
, (char *)cache_value
.data
,
826 NULL
, NULL
, &smb_fname_full
);
827 if (!NT_STATUS_IS_OK(status
)) {
828 errno
= map_errno_from_nt_status(status
);
832 if ((SMB_VFS_STAT(conn
, smb_fname_full
) == 0) &&
833 (smb_fname_dot
->st
.st_ex_dev
== smb_fname_full
->st
.st_ex_dev
) &&
834 (smb_fname_dot
->st
.st_ex_ino
== smb_fname_full
->st
.st_ex_ino
) &&
835 (S_ISDIR(smb_fname_dot
->st
.st_ex_mode
))) {
839 result
= talloc_strdup(ctx
, smb_fname_full
->base_name
);
840 if (result
== NULL
) {
849 * We don't have the information to hand so rely on traditional
850 * methods. The very slow getcwd, which spawns a process on some
851 * systems, or the not quite so bad getwd.
854 if (!SMB_VFS_GETWD(conn
,s
)) {
855 DEBUG(0, ("vfs_GetWd: SMB_VFS_GETWD call failed: %s\n",
860 if (lp_getwd_cache() && VALID_STAT(smb_fname_dot
->st
)) {
861 key
= vfs_file_id_from_sbuf(conn
, &smb_fname_dot
->st
);
863 memcache_add(smbd_memcache(), GETWD_CACHE
,
864 data_blob_const(&key
, sizeof(key
)),
865 data_blob_const(s
, strlen(s
)+1));
868 result
= talloc_strdup(ctx
, s
);
869 if (result
== NULL
) {
874 TALLOC_FREE(smb_fname_dot
);
875 TALLOC_FREE(smb_fname_full
);
879 /*******************************************************************
880 Reduce a file name, removing .. elements and checking that
881 it is below dir in the heirachy. This uses realpath.
882 ********************************************************************/
884 NTSTATUS
check_reduced_name(connection_struct
*conn
, const char *fname
)
886 char *resolved_name
= NULL
;
889 DEBUG(3,("check_reduced_name [%s] [%s]\n", fname
, conn
->connectpath
));
891 resolved_name
= SMB_VFS_REALPATH(conn
,fname
);
893 if (!resolved_name
) {
896 DEBUG(3,("check_reduced_name: Component not a "
897 "directory in getting realpath for "
899 return NT_STATUS_OBJECT_PATH_NOT_FOUND
;
902 TALLOC_CTX
*ctx
= talloc_tos();
903 char *tmp_fname
= NULL
;
904 char *last_component
= NULL
;
905 /* Last component didn't exist. Remove it and try and canonicalise the directory. */
907 tmp_fname
= talloc_strdup(ctx
, fname
);
909 return NT_STATUS_NO_MEMORY
;
911 p
= strrchr_m(tmp_fname
, '/');
916 last_component
= tmp_fname
;
917 tmp_fname
= talloc_strdup(ctx
,
920 return NT_STATUS_NO_MEMORY
;
924 resolved_name
= SMB_VFS_REALPATH(conn
,tmp_fname
);
925 if (!resolved_name
) {
926 NTSTATUS status
= map_nt_error_from_unix(errno
);
928 if (errno
== ENOENT
|| errno
== ENOTDIR
) {
929 status
= NT_STATUS_OBJECT_PATH_NOT_FOUND
;
932 DEBUG(3,("check_reduce_named: "
933 "couldn't get realpath for "
939 tmp_fname
= talloc_asprintf(ctx
,
944 return NT_STATUS_NO_MEMORY
;
946 SAFE_FREE(resolved_name
);
947 resolved_name
= SMB_STRDUP(tmp_fname
);
948 if (!resolved_name
) {
949 DEBUG(0, ("check_reduced_name: malloc "
950 "fail for %s\n", tmp_fname
));
951 return NT_STATUS_NO_MEMORY
;
956 DEBUG(3,("check_reduced_name: couldn't get "
957 "realpath for %s\n", fname
));
958 return map_nt_error_from_unix(errno
);
962 DEBUG(10,("check_reduced_name realpath [%s] -> [%s]\n", fname
,
965 if (*resolved_name
!= '/') {
966 DEBUG(0,("check_reduced_name: realpath doesn't return "
967 "absolute paths !\n"));
968 SAFE_FREE(resolved_name
);
969 return NT_STATUS_OBJECT_NAME_INVALID
;
972 /* Check for widelinks allowed. */
973 if (!lp_widelinks(SNUM(conn
))) {
974 const char *conn_rootdir
;
976 conn_rootdir
= SMB_VFS_CONNECTPATH(conn
, fname
);
977 if (conn_rootdir
== NULL
) {
978 DEBUG(2, ("check_reduced_name: Could not get "
980 SAFE_FREE(resolved_name
);
981 return NT_STATUS_ACCESS_DENIED
;
984 if (strncmp(conn_rootdir
, resolved_name
,
985 strlen(conn_rootdir
)) != 0) {
986 DEBUG(2, ("check_reduced_name: Bad access "
987 "attempt: %s is a symlink outside the "
988 "share path\n", fname
));
989 SAFE_FREE(resolved_name
);
990 return NT_STATUS_ACCESS_DENIED
;
994 /* Check if we are allowing users to follow symlinks */
995 /* Patch from David Clerc <David.Clerc@cui.unige.ch>
996 University of Geneva */
999 if (!lp_symlinks(SNUM(conn
))) {
1000 struct smb_filename
*smb_fname
= NULL
;
1003 status
= create_synthetic_smb_fname(talloc_tos(), fname
, NULL
,
1005 if (!NT_STATUS_IS_OK(status
)) {
1006 SAFE_FREE(resolved_name
);
1010 if ( (SMB_VFS_LSTAT(conn
, smb_fname
) != -1) &&
1011 (S_ISLNK(smb_fname
->st
.st_ex_mode
)) ) {
1012 SAFE_FREE(resolved_name
);
1013 DEBUG(3,("check_reduced_name: denied: file path name "
1014 "%s is a symlink\n",resolved_name
));
1015 TALLOC_FREE(smb_fname
);
1016 return NT_STATUS_ACCESS_DENIED
;
1018 TALLOC_FREE(smb_fname
);
1022 DEBUG(3,("check_reduced_name: %s reduced to %s\n", fname
,
1024 SAFE_FREE(resolved_name
);
1025 return NT_STATUS_OK
;
1029 * XXX: This is temporary and there should be no callers of this once
1030 * smb_filename is plumbed through all path based operations.
1032 int vfs_stat_smb_fname(struct connection_struct
*conn
, const char *fname
,
1033 SMB_STRUCT_STAT
*psbuf
)
1035 struct smb_filename
*smb_fname
= NULL
;
1039 status
= create_synthetic_smb_fname_split(talloc_tos(), fname
, NULL
,
1041 if (!NT_STATUS_IS_OK(status
)) {
1042 errno
= map_errno_from_nt_status(status
);
1046 if (lp_posix_pathnames()) {
1047 ret
= SMB_VFS_LSTAT(conn
, smb_fname
);
1049 ret
= SMB_VFS_STAT(conn
, smb_fname
);
1053 *psbuf
= smb_fname
->st
;
1056 TALLOC_FREE(smb_fname
);
1061 * XXX: This is temporary and there should be no callers of this once
1062 * smb_filename is plumbed through all path based operations.
1064 int vfs_lstat_smb_fname(struct connection_struct
*conn
, const char *fname
,
1065 SMB_STRUCT_STAT
*psbuf
)
1067 struct smb_filename
*smb_fname
= NULL
;
1071 status
= create_synthetic_smb_fname_split(talloc_tos(), fname
, NULL
,
1073 if (!NT_STATUS_IS_OK(status
)) {
1074 errno
= map_errno_from_nt_status(status
);
1078 ret
= SMB_VFS_LSTAT(conn
, smb_fname
);
1080 *psbuf
= smb_fname
->st
;
1083 TALLOC_FREE(smb_fname
);
1088 * Ensure LSTAT is called for POSIX paths.
1091 NTSTATUS
vfs_stat_fsp(files_struct
*fsp
)
1095 if(fsp
->is_directory
|| fsp
->fh
->fd
== -1) {
1096 if (fsp
->posix_open
) {
1097 ret
= SMB_VFS_LSTAT(fsp
->conn
, fsp
->fsp_name
);
1099 ret
= SMB_VFS_STAT(fsp
->conn
, fsp
->fsp_name
);
1102 return map_nt_error_from_unix(errno
);
1105 if(SMB_VFS_FSTAT(fsp
, &fsp
->fsp_name
->st
) != 0) {
1106 return map_nt_error_from_unix(errno
);
1109 return NT_STATUS_OK
;
1113 generate a file_id from a stat structure
1115 struct file_id
vfs_file_id_from_sbuf(connection_struct
*conn
, const SMB_STRUCT_STAT
*sbuf
)
1117 return SMB_VFS_FILE_ID_CREATE(conn
, sbuf
);
1120 int smb_vfs_call_connect(struct vfs_handle_struct
*handle
,
1121 const char *service
, const char *user
)
1123 VFS_FIND(connect_fn
);
1124 return handle
->fns
->connect_fn(handle
, service
, user
);
1127 void smb_vfs_call_disconnect(struct vfs_handle_struct
*handle
)
1129 VFS_FIND(disconnect
);
1130 handle
->fns
->disconnect(handle
);
1133 uint64_t smb_vfs_call_disk_free(struct vfs_handle_struct
*handle
,
1134 const char *path
, bool small_query
,
1135 uint64_t *bsize
, uint64_t *dfree
,
1138 VFS_FIND(disk_free
);
1139 return handle
->fns
->disk_free(handle
, path
, small_query
, bsize
, dfree
,
1143 int smb_vfs_call_get_quota(struct vfs_handle_struct
*handle
,
1144 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
1147 VFS_FIND(get_quota
);
1148 return handle
->fns
->get_quota(handle
, qtype
, id
, qt
);
1151 int smb_vfs_call_set_quota(struct vfs_handle_struct
*handle
,
1152 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
1155 VFS_FIND(set_quota
);
1156 return handle
->fns
->set_quota(handle
, qtype
, id
, qt
);
1159 int smb_vfs_call_get_shadow_copy_data(struct vfs_handle_struct
*handle
,
1160 struct files_struct
*fsp
,
1161 SHADOW_COPY_DATA
*shadow_copy_data
,
1164 VFS_FIND(get_shadow_copy_data
);
1165 return handle
->fns
->get_shadow_copy_data(handle
, fsp
, shadow_copy_data
,
1168 int smb_vfs_call_statvfs(struct vfs_handle_struct
*handle
, const char *path
,
1169 struct vfs_statvfs_struct
*statbuf
)
1172 return handle
->fns
->statvfs(handle
, path
, statbuf
);
1175 uint32_t smb_vfs_call_fs_capabilities(struct vfs_handle_struct
*handle
,
1176 enum timestamp_set_resolution
*p_ts_res
)
1178 VFS_FIND(fs_capabilities
);
1179 return handle
->fns
->fs_capabilities(handle
, p_ts_res
);
1182 SMB_STRUCT_DIR
*smb_vfs_call_opendir(struct vfs_handle_struct
*handle
,
1183 const char *fname
, const char *mask
,
1187 return handle
->fns
->opendir(handle
, fname
, mask
, attributes
);
1190 SMB_STRUCT_DIRENT
*smb_vfs_call_readdir(struct vfs_handle_struct
*handle
,
1191 SMB_STRUCT_DIR
*dirp
,
1192 SMB_STRUCT_STAT
*sbuf
)
1195 return handle
->fns
->readdir(handle
, dirp
, sbuf
);
1198 void smb_vfs_call_seekdir(struct vfs_handle_struct
*handle
,
1199 SMB_STRUCT_DIR
*dirp
, long offset
)
1202 handle
->fns
->seekdir(handle
, dirp
, offset
);
1205 long smb_vfs_call_telldir(struct vfs_handle_struct
*handle
,
1206 SMB_STRUCT_DIR
*dirp
)
1209 return handle
->fns
->telldir(handle
, dirp
);
1212 void smb_vfs_call_rewind_dir(struct vfs_handle_struct
*handle
,
1213 SMB_STRUCT_DIR
*dirp
)
1215 VFS_FIND(rewind_dir
);
1216 handle
->fns
->rewind_dir(handle
, dirp
);
1219 int smb_vfs_call_mkdir(struct vfs_handle_struct
*handle
, const char *path
,
1223 return handle
->fns
->mkdir(handle
, path
, mode
);
1226 int smb_vfs_call_rmdir(struct vfs_handle_struct
*handle
, const char *path
)
1229 return handle
->fns
->rmdir(handle
, path
);
1232 int smb_vfs_call_closedir(struct vfs_handle_struct
*handle
,
1233 SMB_STRUCT_DIR
*dir
)
1236 return handle
->fns
->closedir(handle
, dir
);
1239 void smb_vfs_call_init_search_op(struct vfs_handle_struct
*handle
,
1240 SMB_STRUCT_DIR
*dirp
)
1242 VFS_FIND(init_search_op
);
1243 handle
->fns
->init_search_op(handle
, dirp
);
1246 int smb_vfs_call_open(struct vfs_handle_struct
*handle
,
1247 struct smb_filename
*smb_fname
, struct files_struct
*fsp
,
1248 int flags
, mode_t mode
)
1251 return handle
->fns
->open(handle
, smb_fname
, fsp
, flags
, mode
);
1254 NTSTATUS
smb_vfs_call_create_file(struct vfs_handle_struct
*handle
,
1255 struct smb_request
*req
,
1256 uint16_t root_dir_fid
,
1257 struct smb_filename
*smb_fname
,
1258 uint32_t access_mask
,
1259 uint32_t share_access
,
1260 uint32_t create_disposition
,
1261 uint32_t create_options
,
1262 uint32_t file_attributes
,
1263 uint32_t oplock_request
,
1264 uint64_t allocation_size
,
1265 uint32_t private_flags
,
1266 struct security_descriptor
*sd
,
1267 struct ea_list
*ea_list
,
1268 files_struct
**result
,
1271 VFS_FIND(create_file
);
1272 return handle
->fns
->create_file(
1273 handle
, req
, root_dir_fid
, smb_fname
, access_mask
,
1274 share_access
, create_disposition
, create_options
,
1275 file_attributes
, oplock_request
, allocation_size
,
1276 private_flags
, sd
, ea_list
,
1280 int smb_vfs_call_close_fn(struct vfs_handle_struct
*handle
,
1281 struct files_struct
*fsp
)
1284 return handle
->fns
->close_fn(handle
, fsp
);
1287 ssize_t
smb_vfs_call_vfs_read(struct vfs_handle_struct
*handle
,
1288 struct files_struct
*fsp
, void *data
, size_t n
)
1291 return handle
->fns
->vfs_read(handle
, fsp
, data
, n
);
1294 ssize_t
smb_vfs_call_pread(struct vfs_handle_struct
*handle
,
1295 struct files_struct
*fsp
, void *data
, size_t n
,
1299 return handle
->fns
->pread(handle
, fsp
, data
, n
, offset
);
1302 ssize_t
smb_vfs_call_write(struct vfs_handle_struct
*handle
,
1303 struct files_struct
*fsp
, const void *data
,
1307 return handle
->fns
->write(handle
, fsp
, data
, n
);
1310 ssize_t
smb_vfs_call_pwrite(struct vfs_handle_struct
*handle
,
1311 struct files_struct
*fsp
, const void *data
,
1312 size_t n
, SMB_OFF_T offset
)
1315 return handle
->fns
->pwrite(handle
, fsp
, data
, n
, offset
);
1318 SMB_OFF_T
smb_vfs_call_lseek(struct vfs_handle_struct
*handle
,
1319 struct files_struct
*fsp
, SMB_OFF_T offset
,
1323 return handle
->fns
->lseek(handle
, fsp
, offset
, whence
);
1326 ssize_t
smb_vfs_call_sendfile(struct vfs_handle_struct
*handle
, int tofd
,
1327 files_struct
*fromfsp
, const DATA_BLOB
*header
,
1328 SMB_OFF_T offset
, size_t count
)
1331 return handle
->fns
->sendfile(handle
, tofd
, fromfsp
, header
, offset
,
1335 ssize_t
smb_vfs_call_recvfile(struct vfs_handle_struct
*handle
, int fromfd
,
1336 files_struct
*tofsp
, SMB_OFF_T offset
,
1340 return handle
->fns
->recvfile(handle
, fromfd
, tofsp
, offset
, count
);
1343 int smb_vfs_call_rename(struct vfs_handle_struct
*handle
,
1344 const struct smb_filename
*smb_fname_src
,
1345 const struct smb_filename
*smb_fname_dst
)
1348 return handle
->fns
->rename(handle
, smb_fname_src
, smb_fname_dst
);
1351 int smb_vfs_call_fsync(struct vfs_handle_struct
*handle
,
1352 struct files_struct
*fsp
)
1355 return handle
->fns
->fsync(handle
, fsp
);
1358 int smb_vfs_call_stat(struct vfs_handle_struct
*handle
,
1359 struct smb_filename
*smb_fname
)
1362 return handle
->fns
->stat(handle
, smb_fname
);
1365 int smb_vfs_call_fstat(struct vfs_handle_struct
*handle
,
1366 struct files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1369 return handle
->fns
->fstat(handle
, fsp
, sbuf
);
1372 int smb_vfs_call_lstat(struct vfs_handle_struct
*handle
,
1373 struct smb_filename
*smb_filename
)
1376 return handle
->fns
->lstat(handle
, smb_filename
);
1379 uint64_t smb_vfs_call_get_alloc_size(struct vfs_handle_struct
*handle
,
1380 struct files_struct
*fsp
,
1381 const SMB_STRUCT_STAT
*sbuf
)
1383 VFS_FIND(get_alloc_size
);
1384 return handle
->fns
->get_alloc_size(handle
, fsp
, sbuf
);
1387 int smb_vfs_call_unlink(struct vfs_handle_struct
*handle
,
1388 const struct smb_filename
*smb_fname
)
1391 return handle
->fns
->unlink(handle
, smb_fname
);
1394 int smb_vfs_call_chmod(struct vfs_handle_struct
*handle
, const char *path
,
1398 return handle
->fns
->chmod(handle
, path
, mode
);
1401 int smb_vfs_call_fchmod(struct vfs_handle_struct
*handle
,
1402 struct files_struct
*fsp
, mode_t mode
)
1405 return handle
->fns
->fchmod(handle
, fsp
, mode
);
1408 int smb_vfs_call_chown(struct vfs_handle_struct
*handle
, const char *path
,
1409 uid_t uid
, gid_t gid
)
1412 return handle
->fns
->chown(handle
, path
, uid
, gid
);
1415 int smb_vfs_call_fchown(struct vfs_handle_struct
*handle
,
1416 struct files_struct
*fsp
, uid_t uid
, gid_t gid
)
1419 return handle
->fns
->fchown(handle
, fsp
, uid
, gid
);
1422 int smb_vfs_call_lchown(struct vfs_handle_struct
*handle
, const char *path
,
1423 uid_t uid
, gid_t gid
)
1426 return handle
->fns
->lchown(handle
, path
, uid
, gid
);
1429 int smb_vfs_call_chdir(struct vfs_handle_struct
*handle
, const char *path
)
1432 return handle
->fns
->chdir(handle
, path
);
1435 char *smb_vfs_call_getwd(struct vfs_handle_struct
*handle
, char *buf
)
1438 return handle
->fns
->getwd(handle
, buf
);
1441 int smb_vfs_call_ntimes(struct vfs_handle_struct
*handle
,
1442 const struct smb_filename
*smb_fname
,
1443 struct smb_file_time
*ft
)
1446 return handle
->fns
->ntimes(handle
, smb_fname
, ft
);
1449 int smb_vfs_call_ftruncate(struct vfs_handle_struct
*handle
,
1450 struct files_struct
*fsp
, SMB_OFF_T offset
)
1452 VFS_FIND(ftruncate
);
1453 return handle
->fns
->ftruncate(handle
, fsp
, offset
);
1456 int smb_vfs_call_fallocate(struct vfs_handle_struct
*handle
,
1457 struct files_struct
*fsp
,
1458 enum vfs_fallocate_mode mode
,
1462 VFS_FIND(fallocate
);
1463 return handle
->fns
->fallocate(handle
, fsp
, mode
, offset
, len
);
1466 int smb_vfs_call_kernel_flock(struct vfs_handle_struct
*handle
,
1467 struct files_struct
*fsp
, uint32 share_mode
,
1468 uint32_t access_mask
)
1470 VFS_FIND(kernel_flock
);
1471 return handle
->fns
->kernel_flock(handle
, fsp
, share_mode
,
1475 int smb_vfs_call_linux_setlease(struct vfs_handle_struct
*handle
,
1476 struct files_struct
*fsp
, int leasetype
)
1478 VFS_FIND(linux_setlease
);
1479 return handle
->fns
->linux_setlease(handle
, fsp
, leasetype
);
1482 int smb_vfs_call_symlink(struct vfs_handle_struct
*handle
, const char *oldpath
,
1483 const char *newpath
)
1486 return handle
->fns
->symlink(handle
, oldpath
, newpath
);
1489 int smb_vfs_call_vfs_readlink(struct vfs_handle_struct
*handle
,
1490 const char *path
, char *buf
, size_t bufsiz
)
1492 VFS_FIND(vfs_readlink
);
1493 return handle
->fns
->vfs_readlink(handle
, path
, buf
, bufsiz
);
1496 int smb_vfs_call_link(struct vfs_handle_struct
*handle
, const char *oldpath
,
1497 const char *newpath
)
1500 return handle
->fns
->link(handle
, oldpath
, newpath
);
1503 int smb_vfs_call_mknod(struct vfs_handle_struct
*handle
, const char *path
,
1504 mode_t mode
, SMB_DEV_T dev
)
1507 return handle
->fns
->mknod(handle
, path
, mode
, dev
);
1510 char *smb_vfs_call_realpath(struct vfs_handle_struct
*handle
, const char *path
)
1513 return handle
->fns
->realpath(handle
, path
);
1516 NTSTATUS
smb_vfs_call_notify_watch(struct vfs_handle_struct
*handle
,
1517 struct sys_notify_context
*ctx
,
1518 struct notify_entry
*e
,
1519 void (*callback
)(struct sys_notify_context
*ctx
,
1521 struct notify_event
*ev
),
1522 void *private_data
, void *handle_p
)
1524 VFS_FIND(notify_watch
);
1525 return handle
->fns
->notify_watch(handle
, ctx
, e
, callback
,
1526 private_data
, handle_p
);
1529 int smb_vfs_call_chflags(struct vfs_handle_struct
*handle
, const char *path
,
1533 return handle
->fns
->chflags(handle
, path
, flags
);
1536 struct file_id
smb_vfs_call_file_id_create(struct vfs_handle_struct
*handle
,
1537 const SMB_STRUCT_STAT
*sbuf
)
1539 VFS_FIND(file_id_create
);
1540 return handle
->fns
->file_id_create(handle
, sbuf
);
1543 NTSTATUS
smb_vfs_call_streaminfo(struct vfs_handle_struct
*handle
,
1544 struct files_struct
*fsp
,
1546 TALLOC_CTX
*mem_ctx
,
1547 unsigned int *num_streams
,
1548 struct stream_struct
**streams
)
1550 VFS_FIND(streaminfo
);
1551 return handle
->fns
->streaminfo(handle
, fsp
, fname
, mem_ctx
,
1552 num_streams
, streams
);
1555 int smb_vfs_call_get_real_filename(struct vfs_handle_struct
*handle
,
1556 const char *path
, const char *name
,
1557 TALLOC_CTX
*mem_ctx
, char **found_name
)
1559 VFS_FIND(get_real_filename
);
1560 return handle
->fns
->get_real_filename(handle
, path
, name
, mem_ctx
,
1564 const char *smb_vfs_call_connectpath(struct vfs_handle_struct
*handle
,
1565 const char *filename
)
1567 VFS_FIND(connectpath
);
1568 return handle
->fns
->connectpath(handle
, filename
);
1571 bool smb_vfs_call_strict_lock(struct vfs_handle_struct
*handle
,
1572 struct files_struct
*fsp
,
1573 struct lock_struct
*plock
)
1575 VFS_FIND(strict_lock
);
1576 return handle
->fns
->strict_lock(handle
, fsp
, plock
);
1579 void smb_vfs_call_strict_unlock(struct vfs_handle_struct
*handle
,
1580 struct files_struct
*fsp
,
1581 struct lock_struct
*plock
)
1583 VFS_FIND(strict_unlock
);
1584 handle
->fns
->strict_unlock(handle
, fsp
, plock
);
1587 NTSTATUS
smb_vfs_call_translate_name(struct vfs_handle_struct
*handle
,
1589 enum vfs_translate_direction direction
,
1590 TALLOC_CTX
*mem_ctx
,
1593 VFS_FIND(translate_name
);
1594 return handle
->fns
->translate_name(handle
, name
, direction
, mem_ctx
,
1598 NTSTATUS
smb_vfs_call_fget_nt_acl(struct vfs_handle_struct
*handle
,
1599 struct files_struct
*fsp
,
1600 uint32 security_info
,
1601 struct security_descriptor
**ppdesc
)
1603 VFS_FIND(fget_nt_acl
);
1604 return handle
->fns
->fget_nt_acl(handle
, fsp
, security_info
,
1608 NTSTATUS
smb_vfs_call_get_nt_acl(struct vfs_handle_struct
*handle
,
1610 uint32 security_info
,
1611 struct security_descriptor
**ppdesc
)
1613 VFS_FIND(get_nt_acl
);
1614 return handle
->fns
->get_nt_acl(handle
, name
, security_info
, ppdesc
);
1617 NTSTATUS
smb_vfs_call_fset_nt_acl(struct vfs_handle_struct
*handle
,
1618 struct files_struct
*fsp
,
1619 uint32 security_info_sent
,
1620 const struct security_descriptor
*psd
)
1622 VFS_FIND(fset_nt_acl
);
1623 return handle
->fns
->fset_nt_acl(handle
, fsp
, security_info_sent
, psd
);
1626 int smb_vfs_call_chmod_acl(struct vfs_handle_struct
*handle
, const char *name
,
1629 VFS_FIND(chmod_acl
);
1630 return handle
->fns
->chmod_acl(handle
, name
, mode
);
1633 int smb_vfs_call_fchmod_acl(struct vfs_handle_struct
*handle
,
1634 struct files_struct
*fsp
, mode_t mode
)
1636 VFS_FIND(fchmod_acl
);
1637 return handle
->fns
->fchmod_acl(handle
, fsp
, mode
);
1640 int smb_vfs_call_sys_acl_get_entry(struct vfs_handle_struct
*handle
,
1641 SMB_ACL_T theacl
, int entry_id
,
1642 SMB_ACL_ENTRY_T
*entry_p
)
1644 VFS_FIND(sys_acl_get_entry
);
1645 return handle
->fns
->sys_acl_get_entry(handle
, theacl
, entry_id
,
1649 int smb_vfs_call_sys_acl_get_tag_type(struct vfs_handle_struct
*handle
,
1650 SMB_ACL_ENTRY_T entry_d
,
1651 SMB_ACL_TAG_T
*tag_type_p
)
1653 VFS_FIND(sys_acl_get_tag_type
);
1654 return handle
->fns
->sys_acl_get_tag_type(handle
, entry_d
, tag_type_p
);
1657 int smb_vfs_call_sys_acl_get_permset(struct vfs_handle_struct
*handle
,
1658 SMB_ACL_ENTRY_T entry_d
,
1659 SMB_ACL_PERMSET_T
*permset_p
)
1661 VFS_FIND(sys_acl_get_permset
);
1662 return handle
->fns
->sys_acl_get_permset(handle
, entry_d
, permset_p
);
1665 void * smb_vfs_call_sys_acl_get_qualifier(struct vfs_handle_struct
*handle
,
1666 SMB_ACL_ENTRY_T entry_d
)
1668 VFS_FIND(sys_acl_get_qualifier
);
1669 return handle
->fns
->sys_acl_get_qualifier(handle
, entry_d
);
1672 SMB_ACL_T
smb_vfs_call_sys_acl_get_file(struct vfs_handle_struct
*handle
,
1674 SMB_ACL_TYPE_T type
)
1676 VFS_FIND(sys_acl_get_file
);
1677 return handle
->fns
->sys_acl_get_file(handle
, path_p
, type
);
1680 SMB_ACL_T
smb_vfs_call_sys_acl_get_fd(struct vfs_handle_struct
*handle
,
1681 struct files_struct
*fsp
)
1683 VFS_FIND(sys_acl_get_fd
);
1684 return handle
->fns
->sys_acl_get_fd(handle
, fsp
);
1687 int smb_vfs_call_sys_acl_clear_perms(struct vfs_handle_struct
*handle
,
1688 SMB_ACL_PERMSET_T permset
)
1690 VFS_FIND(sys_acl_clear_perms
);
1691 return handle
->fns
->sys_acl_clear_perms(handle
, permset
);
1694 int smb_vfs_call_sys_acl_add_perm(struct vfs_handle_struct
*handle
,
1695 SMB_ACL_PERMSET_T permset
,
1696 SMB_ACL_PERM_T perm
)
1698 VFS_FIND(sys_acl_add_perm
);
1699 return handle
->fns
->sys_acl_add_perm(handle
, permset
, perm
);
1702 char * smb_vfs_call_sys_acl_to_text(struct vfs_handle_struct
*handle
,
1703 SMB_ACL_T theacl
, ssize_t
*plen
)
1705 VFS_FIND(sys_acl_to_text
);
1706 return handle
->fns
->sys_acl_to_text(handle
, theacl
, plen
);
1709 SMB_ACL_T
smb_vfs_call_sys_acl_init(struct vfs_handle_struct
*handle
,
1712 VFS_FIND(sys_acl_init
);
1713 return handle
->fns
->sys_acl_init(handle
, count
);
1716 int smb_vfs_call_sys_acl_create_entry(struct vfs_handle_struct
*handle
,
1717 SMB_ACL_T
*pacl
, SMB_ACL_ENTRY_T
*pentry
)
1719 VFS_FIND(sys_acl_create_entry
);
1720 return handle
->fns
->sys_acl_create_entry(handle
, pacl
, pentry
);
1723 int smb_vfs_call_sys_acl_set_tag_type(struct vfs_handle_struct
*handle
,
1724 SMB_ACL_ENTRY_T entry
,
1725 SMB_ACL_TAG_T tagtype
)
1727 VFS_FIND(sys_acl_set_tag_type
);
1728 return handle
->fns
->sys_acl_set_tag_type(handle
, entry
, tagtype
);
1731 int smb_vfs_call_sys_acl_set_qualifier(struct vfs_handle_struct
*handle
,
1732 SMB_ACL_ENTRY_T entry
, void *qual
)
1734 VFS_FIND(sys_acl_set_qualifier
);
1735 return handle
->fns
->sys_acl_set_qualifier(handle
, entry
, qual
);
1738 int smb_vfs_call_sys_acl_set_permset(struct vfs_handle_struct
*handle
,
1739 SMB_ACL_ENTRY_T entry
,
1740 SMB_ACL_PERMSET_T permset
)
1742 VFS_FIND(sys_acl_set_permset
);
1743 return handle
->fns
->sys_acl_set_permset(handle
, entry
, permset
);
1746 int smb_vfs_call_sys_acl_valid(struct vfs_handle_struct
*handle
,
1749 VFS_FIND(sys_acl_valid
);
1750 return handle
->fns
->sys_acl_valid(handle
, theacl
);
1753 int smb_vfs_call_sys_acl_set_file(struct vfs_handle_struct
*handle
,
1754 const char *name
, SMB_ACL_TYPE_T acltype
,
1757 VFS_FIND(sys_acl_set_file
);
1758 return handle
->fns
->sys_acl_set_file(handle
, name
, acltype
, theacl
);
1761 int smb_vfs_call_sys_acl_set_fd(struct vfs_handle_struct
*handle
,
1762 struct files_struct
*fsp
, SMB_ACL_T theacl
)
1764 VFS_FIND(sys_acl_set_fd
);
1765 return handle
->fns
->sys_acl_set_fd(handle
, fsp
, theacl
);
1768 int smb_vfs_call_sys_acl_delete_def_file(struct vfs_handle_struct
*handle
,
1771 VFS_FIND(sys_acl_delete_def_file
);
1772 return handle
->fns
->sys_acl_delete_def_file(handle
, path
);
1775 int smb_vfs_call_sys_acl_get_perm(struct vfs_handle_struct
*handle
,
1776 SMB_ACL_PERMSET_T permset
,
1777 SMB_ACL_PERM_T perm
)
1779 VFS_FIND(sys_acl_get_perm
);
1780 return handle
->fns
->sys_acl_get_perm(handle
, permset
, perm
);
1783 int smb_vfs_call_sys_acl_free_text(struct vfs_handle_struct
*handle
,
1786 VFS_FIND(sys_acl_free_text
);
1787 return handle
->fns
->sys_acl_free_text(handle
, text
);
1790 int smb_vfs_call_sys_acl_free_acl(struct vfs_handle_struct
*handle
,
1791 SMB_ACL_T posix_acl
)
1793 VFS_FIND(sys_acl_free_acl
);
1794 return handle
->fns
->sys_acl_free_acl(handle
, posix_acl
);
1797 int smb_vfs_call_sys_acl_free_qualifier(struct vfs_handle_struct
*handle
,
1798 void *qualifier
, SMB_ACL_TAG_T tagtype
)
1800 VFS_FIND(sys_acl_free_qualifier
);
1801 return handle
->fns
->sys_acl_free_qualifier(handle
, qualifier
, tagtype
);
1804 ssize_t
smb_vfs_call_getxattr(struct vfs_handle_struct
*handle
,
1805 const char *path
, const char *name
, void *value
,
1809 return handle
->fns
->getxattr(handle
, path
, name
, value
, size
);
1812 ssize_t
smb_vfs_call_lgetxattr(struct vfs_handle_struct
*handle
,
1813 const char *path
, const char *name
, void *value
,
1816 VFS_FIND(lgetxattr
);
1817 return handle
->fns
->lgetxattr(handle
, path
, name
, value
, size
);
1820 ssize_t
smb_vfs_call_fgetxattr(struct vfs_handle_struct
*handle
,
1821 struct files_struct
*fsp
, const char *name
,
1822 void *value
, size_t size
)
1824 VFS_FIND(fgetxattr
);
1825 return handle
->fns
->fgetxattr(handle
, fsp
, name
, value
, size
);
1828 ssize_t
smb_vfs_call_listxattr(struct vfs_handle_struct
*handle
,
1829 const char *path
, char *list
, size_t size
)
1831 VFS_FIND(listxattr
);
1832 return handle
->fns
->listxattr(handle
, path
, list
, size
);
1835 ssize_t
smb_vfs_call_llistxattr(struct vfs_handle_struct
*handle
,
1836 const char *path
, char *list
, size_t size
)
1838 VFS_FIND(llistxattr
);
1839 return handle
->fns
->llistxattr(handle
, path
, list
, size
);
1842 ssize_t
smb_vfs_call_flistxattr(struct vfs_handle_struct
*handle
,
1843 struct files_struct
*fsp
, char *list
,
1846 VFS_FIND(flistxattr
);
1847 return handle
->fns
->flistxattr(handle
, fsp
, list
, size
);
1850 int smb_vfs_call_removexattr(struct vfs_handle_struct
*handle
,
1851 const char *path
, const char *name
)
1853 VFS_FIND(removexattr
);
1854 return handle
->fns
->removexattr(handle
, path
, name
);
1857 int smb_vfs_call_lremovexattr(struct vfs_handle_struct
*handle
,
1858 const char *path
, const char *name
)
1860 VFS_FIND(lremovexattr
);
1861 return handle
->fns
->lremovexattr(handle
, path
, name
);
1864 int smb_vfs_call_fremovexattr(struct vfs_handle_struct
*handle
,
1865 struct files_struct
*fsp
, const char *name
)
1867 VFS_FIND(fremovexattr
);
1868 return handle
->fns
->fremovexattr(handle
, fsp
, name
);
1871 int smb_vfs_call_setxattr(struct vfs_handle_struct
*handle
, const char *path
,
1872 const char *name
, const void *value
, size_t size
,
1876 return handle
->fns
->setxattr(handle
, path
, name
, value
, size
, flags
);
1879 int smb_vfs_call_lsetxattr(struct vfs_handle_struct
*handle
, const char *path
,
1880 const char *name
, const void *value
, size_t size
,
1883 VFS_FIND(lsetxattr
);
1884 return handle
->fns
->lsetxattr(handle
, path
, name
, value
, size
, flags
);
1887 int smb_vfs_call_fsetxattr(struct vfs_handle_struct
*handle
,
1888 struct files_struct
*fsp
, const char *name
,
1889 const void *value
, size_t size
, int flags
)
1891 VFS_FIND(fsetxattr
);
1892 return handle
->fns
->fsetxattr(handle
, fsp
, name
, value
, size
, flags
);
1895 int smb_vfs_call_aio_read(struct vfs_handle_struct
*handle
,
1896 struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1899 return handle
->fns
->aio_read(handle
, fsp
, aiocb
);
1902 int smb_vfs_call_aio_write(struct vfs_handle_struct
*handle
,
1903 struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1905 VFS_FIND(aio_write
);
1906 return handle
->fns
->aio_write(handle
, fsp
, aiocb
);
1909 ssize_t
smb_vfs_call_aio_return_fn(struct vfs_handle_struct
*handle
,
1910 struct files_struct
*fsp
,
1911 SMB_STRUCT_AIOCB
*aiocb
)
1913 VFS_FIND(aio_return_fn
);
1914 return handle
->fns
->aio_return_fn(handle
, fsp
, aiocb
);
1917 int smb_vfs_call_aio_cancel(struct vfs_handle_struct
*handle
,
1918 struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
1920 VFS_FIND(aio_cancel
);
1921 return handle
->fns
->aio_cancel(handle
, fsp
, aiocb
);
1924 int smb_vfs_call_aio_error_fn(struct vfs_handle_struct
*handle
,
1925 struct files_struct
*fsp
,
1926 SMB_STRUCT_AIOCB
*aiocb
)
1928 VFS_FIND(aio_error_fn
);
1929 return handle
->fns
->aio_error_fn(handle
, fsp
, aiocb
);
1932 int smb_vfs_call_aio_fsync(struct vfs_handle_struct
*handle
,
1933 struct files_struct
*fsp
, int op
,
1934 SMB_STRUCT_AIOCB
*aiocb
)
1936 VFS_FIND(aio_fsync
);
1937 return handle
->fns
->aio_fsync(handle
, fsp
, op
, aiocb
);
1940 int smb_vfs_call_aio_suspend(struct vfs_handle_struct
*handle
,
1941 struct files_struct
*fsp
,
1942 const SMB_STRUCT_AIOCB
* const aiocb
[], int n
,
1943 const struct timespec
*timeout
)
1945 VFS_FIND(aio_suspend
);
1946 return handle
->fns
->aio_suspend(handle
, fsp
, aiocb
, n
, timeout
);
1949 bool smb_vfs_call_aio_force(struct vfs_handle_struct
*handle
,
1950 struct files_struct
*fsp
)
1952 VFS_FIND(aio_force
);
1953 return handle
->fns
->aio_force(handle
, fsp
);
1956 bool smb_vfs_call_is_offline(struct vfs_handle_struct
*handle
,
1957 const char *path
, SMB_STRUCT_STAT
*sbuf
)
1959 VFS_FIND(is_offline
);
1960 return handle
->fns
->is_offline(handle
, path
, sbuf
);
1963 int smb_vfs_call_set_offline(struct vfs_handle_struct
*handle
,
1966 VFS_FIND(set_offline
);
1967 return handle
->fns
->set_offline(handle
, path
);