s4: torture: Add an async SMB2_OP_FLUSH + SMB2_OP_CLOSE test to smb2.compound_async.
[Samba.git] / source3 / smbd / vfs.c
bloba4e5dedd7e4aef5f79b9964654b1219f0eaaf773
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
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.
26 #include "includes.h"
27 #include "system/filesys.h"
28 #include "smbd/smbd.h"
29 #include "smbd/globals.h"
30 #include "../lib/util/memcache.h"
31 #include "transfer_file.h"
32 #include "ntioctl.h"
33 #include "lib/util/tevent_unix.h"
34 #include "lib/util/tevent_ntstatus.h"
35 #include "lib/util/sys_rw.h"
37 #undef DBGC_CLASS
38 #define DBGC_CLASS DBGC_VFS
40 static_decl_vfs;
42 struct vfs_fsp_data {
43 struct vfs_fsp_data *next;
44 struct vfs_handle_struct *owner;
45 void (*destroy)(void *p_data);
46 void *_dummy_;
47 /* NOTE: This structure contains four pointers so that we can guarantee
48 * that the end of the structure is always both 4-byte and 8-byte aligned.
52 struct vfs_init_function_entry {
53 char *name;
54 struct vfs_init_function_entry *prev, *next;
55 const struct vfs_fn_pointers *fns;
58 /****************************************************************************
59 maintain the list of available backends
60 ****************************************************************************/
62 static struct vfs_init_function_entry *vfs_find_backend_entry(const char *name)
64 struct vfs_init_function_entry *entry = backends;
66 DEBUG(10, ("vfs_find_backend_entry called for %s\n", name));
68 while(entry) {
69 if (strcmp(entry->name, name)==0) return entry;
70 entry = entry->next;
73 return NULL;
76 NTSTATUS smb_register_vfs(int version, const char *name,
77 const struct vfs_fn_pointers *fns)
79 struct vfs_init_function_entry *entry = backends;
81 if ((version != SMB_VFS_INTERFACE_VERSION)) {
82 DEBUG(0, ("Failed to register vfs module.\n"
83 "The module was compiled against SMB_VFS_INTERFACE_VERSION %d,\n"
84 "current SMB_VFS_INTERFACE_VERSION is %d.\n"
85 "Please recompile against the current Samba Version!\n",
86 version, SMB_VFS_INTERFACE_VERSION));
87 return NT_STATUS_OBJECT_TYPE_MISMATCH;
90 if (!name || !name[0]) {
91 DEBUG(0,("smb_register_vfs() called with NULL pointer or empty name!\n"));
92 return NT_STATUS_INVALID_PARAMETER;
95 if (vfs_find_backend_entry(name)) {
96 DEBUG(0,("VFS module %s already loaded!\n", name));
97 return NT_STATUS_OBJECT_NAME_COLLISION;
100 entry = SMB_XMALLOC_P(struct vfs_init_function_entry);
101 entry->name = smb_xstrdup(name);
102 entry->fns = fns;
104 DLIST_ADD(backends, entry);
105 DEBUG(5, ("Successfully added vfs backend '%s'\n", name));
106 return NT_STATUS_OK;
109 /****************************************************************************
110 initialise default vfs hooks
111 ****************************************************************************/
113 static void vfs_init_default(connection_struct *conn)
115 DEBUG(3, ("Initialising default vfs hooks\n"));
116 vfs_init_custom(conn, DEFAULT_VFS_MODULE_NAME);
119 /****************************************************************************
120 initialise custom vfs hooks
121 ****************************************************************************/
123 bool vfs_init_custom(connection_struct *conn, const char *vfs_object)
125 char *module_path = NULL;
126 char *module_name = NULL;
127 char *module_param = NULL, *p;
128 vfs_handle_struct *handle;
129 const struct vfs_init_function_entry *entry;
131 if (!conn||!vfs_object||!vfs_object[0]) {
132 DEBUG(0, ("vfs_init_custom() called with NULL pointer or "
133 "empty vfs_object!\n"));
134 return False;
137 if(!backends) {
138 static_init_vfs(NULL);
141 DEBUG(3, ("Initialising custom vfs hooks from [%s]\n", vfs_object));
143 module_path = smb_xstrdup(vfs_object);
145 p = strchr_m(module_path, ':');
147 if (p) {
148 *p = 0;
149 module_param = p+1;
150 trim_char(module_param, ' ', ' ');
153 trim_char(module_path, ' ', ' ');
155 module_name = smb_xstrdup(module_path);
157 if ((module_name[0] == '/') &&
158 (strcmp(module_path, DEFAULT_VFS_MODULE_NAME) != 0)) {
161 * Extract the module name from the path. Just use the base
162 * name of the last path component.
165 SAFE_FREE(module_name);
166 module_name = smb_xstrdup(strrchr_m(module_path, '/')+1);
168 p = strchr_m(module_name, '.');
170 if (p != NULL) {
171 *p = '\0';
175 /* First, try to load the module with the new module system */
176 entry = vfs_find_backend_entry(module_name);
177 if (!entry) {
178 NTSTATUS status;
180 DEBUG(5, ("vfs module [%s] not loaded - trying to load...\n",
181 vfs_object));
183 status = smb_load_module("vfs", module_path);
184 if (!NT_STATUS_IS_OK(status)) {
185 DEBUG(0, ("error probing vfs module '%s': %s\n",
186 module_path, nt_errstr(status)));
187 goto fail;
190 entry = vfs_find_backend_entry(module_name);
191 if (!entry) {
192 DEBUG(0,("Can't find a vfs module [%s]\n",vfs_object));
193 goto fail;
197 DEBUGADD(5,("Successfully loaded vfs module [%s] with the new modules system\n", vfs_object));
199 handle = talloc_zero(conn, vfs_handle_struct);
200 if (!handle) {
201 DEBUG(0,("TALLOC_ZERO() failed!\n"));
202 goto fail;
204 handle->conn = conn;
205 handle->fns = entry->fns;
206 if (module_param) {
207 handle->param = talloc_strdup(conn, module_param);
209 DLIST_ADD(conn->vfs_handles, handle);
211 SAFE_FREE(module_path);
212 SAFE_FREE(module_name);
213 return True;
215 fail:
216 SAFE_FREE(module_path);
217 SAFE_FREE(module_name);
218 return False;
221 /*****************************************************************
222 Allow VFS modules to extend files_struct with VFS-specific state.
223 This will be ok for small numbers of extensions, but might need to
224 be refactored if it becomes more widely used.
225 ******************************************************************/
227 #define EXT_DATA_AREA(e) ((uint8_t *)(e) + sizeof(struct vfs_fsp_data))
229 void *vfs_add_fsp_extension_notype(vfs_handle_struct *handle,
230 files_struct *fsp, size_t ext_size,
231 void (*destroy_fn)(void *p_data))
233 struct vfs_fsp_data *ext;
234 void * ext_data;
236 /* Prevent VFS modules adding multiple extensions. */
237 if ((ext_data = vfs_fetch_fsp_extension(handle, fsp))) {
238 return ext_data;
241 ext = talloc_zero_size(
242 handle->conn, sizeof(struct vfs_fsp_data) + ext_size);
243 if (ext == NULL) {
244 return NULL;
247 ext->owner = handle;
248 ext->next = fsp->vfs_extension;
249 ext->destroy = destroy_fn;
250 fsp->vfs_extension = ext;
251 return EXT_DATA_AREA(ext);
254 void vfs_remove_fsp_extension(vfs_handle_struct *handle, files_struct *fsp)
256 struct vfs_fsp_data *curr;
257 struct vfs_fsp_data *prev;
259 for (curr = fsp->vfs_extension, prev = NULL;
260 curr;
261 prev = curr, curr = curr->next) {
262 if (curr->owner == handle) {
263 if (prev) {
264 prev->next = curr->next;
265 } else {
266 fsp->vfs_extension = curr->next;
268 if (curr->destroy) {
269 curr->destroy(EXT_DATA_AREA(curr));
271 TALLOC_FREE(curr);
272 return;
277 void vfs_remove_all_fsp_extensions(files_struct *fsp)
279 struct vfs_fsp_data *curr;
280 struct vfs_fsp_data *next;
282 for (curr = fsp->vfs_extension; curr; curr = next) {
284 next = curr->next;
285 fsp->vfs_extension = next;
287 if (curr->destroy) {
288 curr->destroy(EXT_DATA_AREA(curr));
290 TALLOC_FREE(curr);
294 void *vfs_memctx_fsp_extension(vfs_handle_struct *handle,
295 const struct files_struct *fsp)
297 struct vfs_fsp_data *head;
299 for (head = fsp->vfs_extension; head; head = head->next) {
300 if (head->owner == handle) {
301 return head;
305 return NULL;
308 void *vfs_fetch_fsp_extension(vfs_handle_struct *handle,
309 const struct files_struct *fsp)
311 struct vfs_fsp_data *head;
313 head = (struct vfs_fsp_data *)vfs_memctx_fsp_extension(handle, fsp);
314 if (head != NULL) {
315 return EXT_DATA_AREA(head);
318 return NULL;
321 #undef EXT_DATA_AREA
324 * Ensure this module catches all VFS functions.
326 #ifdef DEVELOPER
327 void smb_vfs_assert_all_fns(const struct vfs_fn_pointers* fns,
328 const char *module)
330 bool missing_fn = false;
331 unsigned int idx;
332 const uintptr_t *end = (const uintptr_t *)(fns + 1);
334 for (idx = 0; ((const uintptr_t *)fns + idx) < end; idx++) {
335 if (*((const uintptr_t *)fns + idx) == 0) {
336 DBG_ERR("VFS function at index %d not implemented "
337 "in module %s\n", idx, module);
338 missing_fn = true;
342 if (missing_fn) {
343 smb_panic("Required VFS function not implemented in module.\n");
346 #else
347 void smb_vfs_assert_all_fns(const struct vfs_fn_pointers* fns,
348 const char *module)
351 #endif
353 /*****************************************************************
354 Generic VFS init.
355 ******************************************************************/
357 bool smbd_vfs_init(connection_struct *conn)
359 const char **vfs_objects;
360 unsigned int i = 0;
361 int j = 0;
363 /* Normal share - initialise with disk access functions */
364 vfs_init_default(conn);
366 /* No need to load vfs modules for printer connections */
367 if (conn->printer) {
368 return True;
371 if (lp_widelinks(SNUM(conn))) {
373 * As the widelinks logic is now moving into a
374 * vfs_widelinks module, we need to custom load
375 * it after the default module is initialized.
376 * That way no changes to smb.conf files are
377 * needed.
379 bool ok = vfs_init_custom(conn, "widelinks");
380 if (!ok) {
381 DBG_ERR("widelinks enabled and vfs_init_custom "
382 "failed for vfs_widelinks module\n");
383 return false;
387 vfs_objects = lp_vfs_objects(SNUM(conn));
389 /* Override VFS functions if 'vfs object' was not specified*/
390 if (!vfs_objects || !vfs_objects[0])
391 return True;
393 for (i=0; vfs_objects[i] ;) {
394 i++;
397 for (j=i-1; j >= 0; j--) {
398 if (!vfs_init_custom(conn, vfs_objects[j])) {
399 DEBUG(0, ("smbd_vfs_init: vfs_init_custom failed for %s\n", vfs_objects[j]));
400 return False;
403 return True;
406 /*******************************************************************
407 Check if a file exists in the vfs.
408 ********************************************************************/
410 NTSTATUS vfs_file_exist(connection_struct *conn, struct smb_filename *smb_fname)
412 /* Only return OK if stat was successful and S_ISREG */
413 if ((SMB_VFS_STAT(conn, smb_fname) != -1) &&
414 S_ISREG(smb_fname->st.st_ex_mode)) {
415 return NT_STATUS_OK;
418 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
421 bool vfs_valid_pread_range(off_t offset, size_t length)
423 return sys_valid_io_range(offset, length);
426 bool vfs_valid_pwrite_range(off_t offset, size_t length)
429 * See MAXFILESIZE in [MS-FSA] 2.1.5.3 Server Requests a Write
431 static const uint64_t maxfilesize = 0xfffffff0000;
432 uint64_t last_byte_ofs;
433 bool ok;
435 ok = sys_valid_io_range(offset, length);
436 if (!ok) {
437 return false;
440 if (length == 0) {
441 return true;
444 last_byte_ofs = offset + length;
445 if (last_byte_ofs > maxfilesize) {
446 return false;
449 return true;
452 ssize_t vfs_pwrite_data(struct smb_request *req,
453 files_struct *fsp,
454 const char *buffer,
455 size_t N,
456 off_t offset)
458 size_t total=0;
459 ssize_t ret;
460 bool ok;
462 ok = vfs_valid_pwrite_range(offset, N);
463 if (!ok) {
464 errno = EINVAL;
465 return -1;
468 if (req && req->unread_bytes) {
469 int sockfd = req->xconn->transport.sock;
470 SMB_ASSERT(req->unread_bytes == N);
471 /* VFS_RECVFILE must drain the socket
472 * before returning. */
473 req->unread_bytes = 0;
475 * Leave the socket non-blocking and
476 * use SMB_VFS_RECVFILE. If it returns
477 * EAGAIN || EWOULDBLOCK temporarily set
478 * the socket blocking and retry
479 * the RECVFILE.
481 while (total < N) {
482 ret = SMB_VFS_RECVFILE(sockfd,
483 fsp,
484 offset + total,
485 N - total);
486 if (ret == 0 || (ret == -1 &&
487 (errno == EAGAIN ||
488 errno == EWOULDBLOCK))) {
489 int old_flags;
490 /* Ensure the socket is blocking. */
491 old_flags = fcntl(sockfd, F_GETFL, 0);
492 if (set_blocking(sockfd, true) == -1) {
493 return (ssize_t)-1;
495 ret = SMB_VFS_RECVFILE(sockfd,
496 fsp,
497 offset + total,
498 N - total);
499 if (fcntl(sockfd, F_SETFL, old_flags) == -1) {
500 return (ssize_t)-1;
502 if (ret == -1) {
503 return (ssize_t)-1;
505 total += ret;
506 return (ssize_t)total;
508 /* Any other error case. */
509 if (ret == -1) {
510 return ret;
512 total += ret;
514 return (ssize_t)total;
517 while (total < N) {
518 ret = SMB_VFS_PWRITE(fsp, buffer + total, N - total,
519 offset + total);
521 if (ret == -1)
522 return -1;
523 if (ret == 0)
524 return total;
526 total += ret;
528 return (ssize_t)total;
530 /****************************************************************************
531 An allocate file space call using the vfs interface.
532 Allocates space for a file from a filedescriptor.
533 Returns 0 on success, -1 on failure.
534 ****************************************************************************/
536 int vfs_allocate_file_space(files_struct *fsp, uint64_t len)
538 int ret;
539 connection_struct *conn = fsp->conn;
540 uint64_t space_avail;
541 uint64_t bsize,dfree,dsize;
542 NTSTATUS status;
543 bool ok;
546 * Actually try and commit the space on disk....
549 DEBUG(10,("vfs_allocate_file_space: file %s, len %.0f\n",
550 fsp_str_dbg(fsp), (double)len));
552 ok = vfs_valid_pwrite_range((off_t)len, 0);
553 if (!ok) {
554 DEBUG(0,("vfs_allocate_file_space: %s negative/invalid len "
555 "requested.\n", fsp_str_dbg(fsp)));
556 errno = EINVAL;
557 return -1;
560 status = vfs_stat_fsp(fsp);
561 if (!NT_STATUS_IS_OK(status)) {
562 return -1;
565 if (len == (uint64_t)fsp->fsp_name->st.st_ex_size)
566 return 0;
568 if (len < (uint64_t)fsp->fsp_name->st.st_ex_size) {
569 /* Shrink - use ftruncate. */
571 DEBUG(10,("vfs_allocate_file_space: file %s, shrink. Current "
572 "size %.0f\n", fsp_str_dbg(fsp),
573 (double)fsp->fsp_name->st.st_ex_size));
575 contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_ALLOC_SHRINK);
577 ret = SMB_VFS_FTRUNCATE(fsp, (off_t)len);
579 contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_ALLOC_SHRINK);
581 return ret;
584 /* Grow - we need to test if we have enough space. */
586 contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_ALLOC_GROW);
588 if (lp_strict_allocate(SNUM(fsp->conn))) {
589 /* See if we have a syscall that will allocate beyond
590 end-of-file without changing EOF. */
591 ret = SMB_VFS_FALLOCATE(fsp, VFS_FALLOCATE_FL_KEEP_SIZE,
592 0, len);
593 } else {
594 ret = 0;
597 contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_ALLOC_GROW);
599 if (ret == 0) {
600 /* We changed the allocation size on disk, but not
601 EOF - exactly as required. We're done ! */
602 return 0;
605 if (ret == -1 && errno == ENOSPC) {
606 return -1;
609 len -= fsp->fsp_name->st.st_ex_size;
610 len /= 1024; /* Len is now number of 1k blocks needed. */
611 space_avail =
612 get_dfree_info(conn, fsp->fsp_name, &bsize, &dfree, &dsize);
613 if (space_avail == (uint64_t)-1) {
614 return -1;
617 DEBUG(10,("vfs_allocate_file_space: file %s, grow. Current size %.0f, "
618 "needed blocks = %.0f, space avail = %.0f\n",
619 fsp_str_dbg(fsp), (double)fsp->fsp_name->st.st_ex_size, (double)len,
620 (double)space_avail));
622 if (len > space_avail) {
623 errno = ENOSPC;
624 return -1;
627 return 0;
630 /****************************************************************************
631 A vfs set_filelen call.
632 set the length of a file from a filedescriptor.
633 Returns 0 on success, -1 on failure.
634 ****************************************************************************/
636 int vfs_set_filelen(files_struct *fsp, off_t len)
638 int ret;
639 bool ok;
641 ok = vfs_valid_pwrite_range(len, 0);
642 if (!ok) {
643 errno = EINVAL;
644 return -1;
647 contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_SET_FILE_LEN);
649 DEBUG(10,("vfs_set_filelen: ftruncate %s to len %.0f\n",
650 fsp_str_dbg(fsp), (double)len));
651 if ((ret = SMB_VFS_FTRUNCATE(fsp, len)) != -1) {
652 notify_fname(fsp->conn, NOTIFY_ACTION_MODIFIED,
653 FILE_NOTIFY_CHANGE_SIZE
654 | FILE_NOTIFY_CHANGE_ATTRIBUTES,
655 fsp->fsp_name->base_name);
658 contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_SET_FILE_LEN);
660 return ret;
663 /****************************************************************************
664 A slow version of fallocate. Fallback code if SMB_VFS_FALLOCATE
665 fails. Needs to be outside of the default version of SMB_VFS_FALLOCATE
666 as this is also called from the default SMB_VFS_FTRUNCATE code.
667 Always extends the file size.
668 Returns 0 on success, -1 on failure.
669 ****************************************************************************/
671 #define SPARSE_BUF_WRITE_SIZE (32*1024)
673 int vfs_slow_fallocate(files_struct *fsp, off_t offset, off_t len)
675 ssize_t pwrite_ret;
676 size_t total = 0;
677 bool ok;
679 ok = vfs_valid_pwrite_range(offset, len);
680 if (!ok) {
681 errno = EINVAL;
682 return -1;
685 if (!sparse_buf) {
686 sparse_buf = SMB_CALLOC_ARRAY(char, SPARSE_BUF_WRITE_SIZE);
687 if (!sparse_buf) {
688 errno = ENOMEM;
689 return -1;
693 while (total < len) {
694 size_t curr_write_size = MIN(SPARSE_BUF_WRITE_SIZE, (len - total));
696 pwrite_ret = SMB_VFS_PWRITE(fsp, sparse_buf, curr_write_size, offset + total);
697 if (pwrite_ret == -1) {
698 int saved_errno = errno;
699 DEBUG(10,("vfs_slow_fallocate: SMB_VFS_PWRITE for file "
700 "%s failed with error %s\n",
701 fsp_str_dbg(fsp), strerror(saved_errno)));
702 errno = saved_errno;
703 return -1;
705 total += pwrite_ret;
708 return 0;
711 /****************************************************************************
712 A vfs fill sparse call.
713 Writes zeros from the end of file to len, if len is greater than EOF.
714 Used only by strict_sync.
715 Returns 0 on success, -1 on failure.
716 ****************************************************************************/
718 int vfs_fill_sparse(files_struct *fsp, off_t len)
720 int ret;
721 NTSTATUS status;
722 off_t offset;
723 size_t num_to_write;
724 bool ok;
726 ok = vfs_valid_pwrite_range(len, 0);
727 if (!ok) {
728 errno = EINVAL;
729 return -1;
732 status = vfs_stat_fsp(fsp);
733 if (!NT_STATUS_IS_OK(status)) {
734 return -1;
737 if (len <= fsp->fsp_name->st.st_ex_size) {
738 return 0;
741 #ifdef S_ISFIFO
742 if (S_ISFIFO(fsp->fsp_name->st.st_ex_mode)) {
743 return 0;
745 #endif
747 DEBUG(10,("vfs_fill_sparse: write zeros in file %s from len %.0f to "
748 "len %.0f (%.0f bytes)\n", fsp_str_dbg(fsp),
749 (double)fsp->fsp_name->st.st_ex_size, (double)len,
750 (double)(len - fsp->fsp_name->st.st_ex_size)));
752 contend_level2_oplocks_begin(fsp, LEVEL2_CONTEND_FILL_SPARSE);
754 offset = fsp->fsp_name->st.st_ex_size;
755 num_to_write = len - fsp->fsp_name->st.st_ex_size;
757 /* Only do this on non-stream file handles. */
758 if (!fsp_is_alternate_stream(fsp)) {
759 /* for allocation try fallocate first. This can fail on some
760 * platforms e.g. when the filesystem doesn't support it and no
761 * emulation is being done by the libc (like on AIX with JFS1). In that
762 * case we do our own emulation. fallocate implementations can
763 * return ENOTSUP or EINVAL in cases like that. */
764 ret = SMB_VFS_FALLOCATE(fsp, 0, offset, num_to_write);
765 if (ret == -1 && errno == ENOSPC) {
766 goto out;
768 if (ret == 0) {
769 goto out;
771 DEBUG(10,("vfs_fill_sparse: SMB_VFS_FALLOCATE failed with "
772 "error %d. Falling back to slow manual allocation\n", ret));
775 ret = vfs_slow_fallocate(fsp, offset, num_to_write);
777 out:
779 contend_level2_oplocks_end(fsp, LEVEL2_CONTEND_FILL_SPARSE);
780 return ret;
783 /*******************************************************************************
784 Set a fd into blocking/nonblocking mode through VFS
785 *******************************************************************************/
787 int vfs_set_blocking(files_struct *fsp, bool set)
789 int val;
790 #ifdef O_NONBLOCK
791 #define FLAG_TO_SET O_NONBLOCK
792 #else
793 #ifdef SYSV
794 #define FLAG_TO_SET O_NDELAY
795 #else /* BSD */
796 #define FLAG_TO_SET FNDELAY
797 #endif
798 #endif
800 if (fsp->fsp_flags.is_pathref) {
801 return 0;
804 val = SMB_VFS_FCNTL(fsp, F_GETFL, 0);
805 if (val == -1) {
806 return -1;
809 if (set) {
810 val &= ~FLAG_TO_SET;
811 } else {
812 val |= FLAG_TO_SET;
815 return SMB_VFS_FCNTL(fsp, F_SETFL, val);
816 #undef FLAG_TO_SET
819 /****************************************************************************
820 Transfer some data (n bytes) between two file_struct's.
821 ****************************************************************************/
823 static ssize_t vfs_pread_fn(void *file, void *buf, size_t len, off_t offset)
825 struct files_struct *fsp = (struct files_struct *)file;
827 return SMB_VFS_PREAD(fsp, buf, len, offset);
830 static ssize_t vfs_pwrite_fn(void *file, const void *buf, size_t len, off_t offset)
832 struct files_struct *fsp = (struct files_struct *)file;
834 return SMB_VFS_PWRITE(fsp, buf, len, offset);
837 off_t vfs_transfer_file(files_struct *in, files_struct *out, off_t n)
839 return transfer_file_internal((void *)in, (void *)out, n,
840 vfs_pread_fn, vfs_pwrite_fn);
843 /*******************************************************************
844 A vfs_readdir wrapper which just returns the file name.
845 ********************************************************************/
847 const char *vfs_readdirname(connection_struct *conn,
848 struct files_struct *dirfsp,
849 void *p,
850 SMB_STRUCT_STAT *sbuf,
851 char **talloced)
853 struct dirent *ptr= NULL;
854 const char *dname;
855 char *translated;
856 NTSTATUS status;
858 if (!p)
859 return(NULL);
861 ptr = SMB_VFS_READDIR(conn, dirfsp, (DIR *)p, sbuf);
862 if (!ptr)
863 return(NULL);
865 dname = ptr->d_name;
867 status = SMB_VFS_TRANSLATE_NAME(conn, dname, vfs_translate_to_windows,
868 talloc_tos(), &translated);
869 if (NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED)) {
870 *talloced = NULL;
871 return dname;
873 *talloced = translated;
874 if (!NT_STATUS_IS_OK(status)) {
875 return NULL;
877 return translated;
880 /*******************************************************************
881 A wrapper for vfs_chdir().
882 ********************************************************************/
884 int vfs_ChDir(connection_struct *conn, const struct smb_filename *smb_fname)
886 int ret;
887 struct smb_filename *cwd = NULL;
889 if (!LastDir) {
890 LastDir = SMB_STRDUP("");
893 if (ISDOT(smb_fname->base_name)) {
895 * passing a '.' is a noop,
896 * and we only expect this after
897 * everything is initialized.
899 * So the first vfs_ChDir() on a given
900 * connection_struct must not be '.'.
902 * Note: conn_new() sets
903 * conn->cwd_fsp->fh->fd = -1
904 * and vfs_ChDir() leaves with
905 * conn->cwd_fsp->fh->fd = AT_FDCWD
906 * on success!
908 if (fsp_get_pathref_fd(conn->cwd_fsp) != AT_FDCWD) {
910 * This should never happen and
911 * we might change this to
912 * SMB_ASSERT() in future.
914 DBG_ERR("Called with '.' as first operation!\n");
915 log_stack_trace();
916 errno = EINVAL;
917 return -1;
919 return 0;
922 if (smb_fname->base_name[0] == '/' &&
923 strcsequal(LastDir,smb_fname->base_name))
926 * conn->cwd_fsp->fsp_name and the kernel
927 * are already correct, but conn->cwd_fsp->fh->fd
928 * might still be -1 as initialized in conn_new().
930 * This can happen when a client made a 2nd
931 * tree connect to a share with the same underlying
932 * path (may or may not the same share).
934 fsp_set_fd(conn->cwd_fsp, AT_FDCWD);
935 return 0;
938 DEBUG(4,("vfs_ChDir to %s\n", smb_fname->base_name));
940 ret = SMB_VFS_CHDIR(conn, smb_fname);
941 if (ret != 0) {
942 return -1;
946 * Always replace conn->cwd_fsp. We
947 * don't know if it's been modified by
948 * VFS modules in the stack.
950 fsp_set_fd(conn->cwd_fsp, AT_FDCWD);
952 /* conn cache. */
953 cwd = vfs_GetWd(conn, conn);
954 if (cwd == NULL) {
956 * vfs_GetWd() failed.
957 * We must be able to read cwd.
958 * Return to original directory
959 * and return -1.
961 int saved_errno = errno;
963 if (conn->cwd_fsp->fsp_name == NULL) {
965 * Failed on the very first chdir()+getwd()
966 * for this connection. We can't
967 * continue.
969 smb_panic("conn->cwd getwd failed\n");
970 /* NOTREACHED */
971 return -1;
974 /* Return to the previous $cwd. */
975 ret = SMB_VFS_CHDIR(conn, conn->cwd_fsp->fsp_name);
976 if (ret != 0) {
977 smb_panic("conn->cwd getwd failed\n");
978 /* NOTREACHED */
979 return -1;
981 errno = saved_errno;
982 /* And fail the chdir(). */
983 return -1;
986 /* vfs_GetWd() succeeded. */
987 /* Replace global cache. */
988 SAFE_FREE(LastDir);
989 LastDir = SMB_STRDUP(smb_fname->base_name);
992 * (Indirect) Callers of vfs_ChDir() may still hold references to the
993 * old conn->cwd_fsp->fsp_name. Move it to talloc_tos(), that way
994 * callers can use it for the lifetime of the SMB request.
996 talloc_move(talloc_tos(), &conn->cwd_fsp->fsp_name);
998 conn->cwd_fsp->fsp_name = talloc_move(conn->cwd_fsp, &cwd);
1000 DBG_INFO("vfs_ChDir got %s\n", fsp_str_dbg(conn->cwd_fsp));
1002 return ret;
1005 /*******************************************************************
1006 Return the absolute current directory path - given a UNIX pathname.
1007 Note that this path is returned in DOS format, not UNIX
1008 format. Note this can be called with conn == NULL.
1009 ********************************************************************/
1011 struct smb_filename *vfs_GetWd(TALLOC_CTX *ctx, connection_struct *conn)
1013 struct smb_filename *current_dir_fname = NULL;
1014 struct file_id key;
1015 struct smb_filename *smb_fname_dot = NULL;
1016 struct smb_filename *smb_fname_full = NULL;
1017 struct smb_filename *result = NULL;
1019 if (!lp_getwd_cache()) {
1020 goto nocache;
1023 smb_fname_dot = synthetic_smb_fname(ctx,
1024 ".",
1025 NULL,
1026 NULL,
1029 if (smb_fname_dot == NULL) {
1030 errno = ENOMEM;
1031 goto out;
1034 if (SMB_VFS_STAT(conn, smb_fname_dot) == -1) {
1036 * Known to fail for root: the directory may be NFS-mounted
1037 * and exported with root_squash (so has no root access).
1039 DEBUG(1,("vfs_GetWd: couldn't stat \".\" error %s "
1040 "(NFS problem ?)\n", strerror(errno) ));
1041 goto nocache;
1044 key = vfs_file_id_from_sbuf(conn, &smb_fname_dot->st);
1046 smb_fname_full = (struct smb_filename *)memcache_lookup_talloc(
1047 smbd_memcache(),
1048 GETWD_CACHE,
1049 data_blob_const(&key, sizeof(key)));
1051 if (smb_fname_full == NULL) {
1052 goto nocache;
1055 if ((SMB_VFS_STAT(conn, smb_fname_full) == 0) &&
1056 (smb_fname_dot->st.st_ex_dev == smb_fname_full->st.st_ex_dev) &&
1057 (smb_fname_dot->st.st_ex_ino == smb_fname_full->st.st_ex_ino) &&
1058 (S_ISDIR(smb_fname_dot->st.st_ex_mode))) {
1060 * Ok, we're done
1061 * Note: smb_fname_full is owned by smbd_memcache()
1062 * so we must make a copy to return.
1064 result = cp_smb_filename(ctx, smb_fname_full);
1065 if (result == NULL) {
1066 errno = ENOMEM;
1068 goto out;
1071 nocache:
1074 * We don't have the information to hand so rely on traditional
1075 * methods. The very slow getcwd, which spawns a process on some
1076 * systems, or the not quite so bad getwd.
1079 current_dir_fname = SMB_VFS_GETWD(conn, ctx);
1080 if (current_dir_fname == NULL) {
1081 DEBUG(0, ("vfs_GetWd: SMB_VFS_GETWD call failed: %s\n",
1082 strerror(errno)));
1083 goto out;
1086 if (lp_getwd_cache() && VALID_STAT(smb_fname_dot->st)) {
1087 key = vfs_file_id_from_sbuf(conn, &smb_fname_dot->st);
1090 * smbd_memcache() will own current_dir_fname after the
1091 * memcache_add_talloc call, so we must make
1092 * a copy on ctx to return.
1094 result = cp_smb_filename(ctx, current_dir_fname);
1095 if (result == NULL) {
1096 errno = ENOMEM;
1100 * Ensure the memory going into the cache
1101 * doesn't have a destructor so it can be
1102 * cleanly freed.
1104 talloc_set_destructor(current_dir_fname, NULL);
1106 memcache_add_talloc(smbd_memcache(),
1107 GETWD_CACHE,
1108 data_blob_const(&key, sizeof(key)),
1109 &current_dir_fname);
1110 /* current_dir_fname is now == NULL here. */
1111 } else {
1112 /* current_dir_fname is already allocated on ctx. */
1113 result = current_dir_fname;
1116 out:
1117 TALLOC_FREE(smb_fname_dot);
1119 * Don't free current_dir_fname here. It's either been moved
1120 * to the memcache or is being returned in result.
1122 return result;
1126 * Ensure LSTAT is called for POSIX paths.
1128 int vfs_stat(struct connection_struct *conn,
1129 struct smb_filename *smb_fname)
1131 if (smb_fname->flags & SMB_FILENAME_POSIX_PATH) {
1132 return SMB_VFS_LSTAT(conn, smb_fname);
1134 return SMB_VFS_STAT(conn, smb_fname);
1138 * XXX: This is temporary and there should be no callers of this once
1139 * smb_filename is plumbed through all path based operations.
1141 * Called when we know stream name parsing has already been done.
1143 int vfs_stat_smb_basename(struct connection_struct *conn,
1144 const struct smb_filename *smb_fname_in,
1145 SMB_STRUCT_STAT *psbuf)
1147 struct smb_filename smb_fname = {
1148 .base_name = discard_const_p(char, smb_fname_in->base_name),
1149 .flags = smb_fname_in->flags,
1150 .twrp = smb_fname_in->twrp,
1152 int ret;
1154 ret = vfs_stat(conn, &smb_fname);
1155 if (ret != -1) {
1156 *psbuf = smb_fname.st;
1158 return ret;
1162 * Ensure LSTAT is called for POSIX paths.
1165 NTSTATUS vfs_stat_fsp(files_struct *fsp)
1167 int ret;
1168 struct stat_ex saved_stat = fsp->fsp_name->st;
1170 if (fsp_get_pathref_fd(fsp) == -1) {
1171 if (fsp->posix_flags & FSP_POSIX_FLAGS_OPEN) {
1172 ret = SMB_VFS_LSTAT(fsp->conn, fsp->fsp_name);
1173 } else {
1174 ret = SMB_VFS_STAT(fsp->conn, fsp->fsp_name);
1176 } else {
1177 ret = SMB_VFS_FSTAT(fsp, &fsp->fsp_name->st);
1179 if (ret == -1) {
1180 return map_nt_error_from_unix(errno);
1182 update_stat_ex_from_saved_stat(&fsp->fsp_name->st, &saved_stat);
1183 fsp->fsp_flags.is_directory = S_ISDIR(fsp->fsp_name->st.st_ex_mode);
1184 return NT_STATUS_OK;
1187 void init_smb_file_time(struct smb_file_time *ft)
1189 *ft = (struct smb_file_time) {
1190 .atime = make_omit_timespec(),
1191 .ctime = make_omit_timespec(),
1192 .mtime = make_omit_timespec(),
1193 .create_time = make_omit_timespec()
1198 * Initialize num_streams and streams, then call VFS op streaminfo
1201 NTSTATUS vfs_fstreaminfo(struct files_struct *fsp,
1202 TALLOC_CTX *mem_ctx,
1203 unsigned int *num_streams,
1204 struct stream_struct **streams)
1206 *num_streams = 0;
1207 *streams = NULL;
1209 if (fsp == NULL) {
1211 * Callers may pass fsp == NULL when passing smb_fname->fsp of a
1212 * symlink. This is ok, handle it here, by just return no
1213 * streams on a symlink.
1215 return NT_STATUS_OK;
1218 if (fsp_get_pathref_fd(fsp) == -1) {
1220 * No streams on non-real files/directories.
1222 return NT_STATUS_OK;
1225 return SMB_VFS_FSTREAMINFO(fsp,
1226 mem_ctx,
1227 num_streams,
1228 streams);
1231 int vfs_fake_fd(void)
1233 int pipe_fds[2];
1234 int ret;
1237 * Return a valid fd, but ensure any attempt to use
1238 * it returns an error (EPIPE).
1240 ret = pipe(pipe_fds);
1241 if (ret != 0) {
1242 return -1;
1245 close(pipe_fds[1]);
1246 return pipe_fds[0];
1250 * This is just a helper to make
1251 * users of vfs_fake_fd() more symmetric
1253 int vfs_fake_fd_close(int fd)
1255 return close(fd);
1259 generate a file_id from a stat structure
1261 struct file_id vfs_file_id_from_sbuf(connection_struct *conn, const SMB_STRUCT_STAT *sbuf)
1263 return SMB_VFS_FILE_ID_CREATE(conn, sbuf);
1266 NTSTATUS vfs_at_fspcwd(TALLOC_CTX *mem_ctx,
1267 struct connection_struct *conn,
1268 struct files_struct **_fsp)
1270 struct files_struct *fsp = NULL;
1272 fsp = talloc_zero(mem_ctx, struct files_struct);
1273 if (fsp == NULL) {
1274 return NT_STATUS_NO_MEMORY;
1277 fsp->fsp_name = synthetic_smb_fname(fsp, ".", NULL, NULL, 0, 0);
1278 if (fsp->fsp_name == NULL) {
1279 TALLOC_FREE(fsp);
1280 return NT_STATUS_NO_MEMORY;
1283 fsp->fh = fd_handle_create(fsp);
1284 if (fsp->fh == NULL) {
1285 TALLOC_FREE(fsp);
1286 return NT_STATUS_NO_MEMORY;
1289 fsp_set_fd(fsp, AT_FDCWD);
1290 fsp->fnum = FNUM_FIELD_INVALID;
1291 fsp->conn = conn;
1293 *_fsp = fsp;
1294 return NT_STATUS_OK;
1297 NTSTATUS vfs_fget_dos_attributes(struct files_struct *fsp,
1298 uint32_t *dosmode)
1300 NTSTATUS status;
1303 * First make sure to pass the base_fsp to the VFS
1305 status = SMB_VFS_FGET_DOS_ATTRIBUTES(
1306 fsp->conn, metadata_fsp(fsp), dosmode);
1307 if (!NT_STATUS_IS_OK(status)) {
1308 return status;
1312 * If this isn't a stream fsp we're done, ...
1314 if (!fsp_is_alternate_stream(fsp)) {
1315 return NT_STATUS_OK;
1319 * ...otherwise the VFS might have updated the btime, propagate the
1320 * btime from the base_fsp to the stream fsp.
1323 if (fsp->base_fsp->fsp_name->st.st_ex_iflags & ST_EX_IFLAG_CALCULATED_BTIME) {
1325 * Not a value from backend storage, ignore it
1327 return NT_STATUS_OK;
1330 update_stat_ex_create_time(&fsp->fsp_name->st,
1331 fsp->base_fsp->fsp_name->st.st_ex_btime);
1333 return NT_STATUS_OK;
1336 static struct smb_vfs_deny_state *smb_vfs_deny_global;
1338 void smb_vfs_assert_allowed(void)
1340 if (unlikely(smb_vfs_deny_global != NULL)) {
1341 DBG_ERR("Called with VFS denied by %s\n",
1342 smb_vfs_deny_global->location);
1343 smb_panic("Called with VFS denied!");
1347 void _smb_vfs_deny_push(struct smb_vfs_deny_state *state, const char *location)
1349 SMB_ASSERT(smb_vfs_deny_global != state);
1351 *state = (struct smb_vfs_deny_state) {
1352 .parent = smb_vfs_deny_global,
1353 .location = location,
1356 smb_vfs_deny_global = state;
1359 void _smb_vfs_deny_pop(struct smb_vfs_deny_state *state, const char *location)
1361 SMB_ASSERT(smb_vfs_deny_global == state);
1363 smb_vfs_deny_global = state->parent;
1365 *state = (struct smb_vfs_deny_state) { .parent = NULL, };
1368 #define VFS_FIND(__fn__) do { \
1369 if (unlikely(smb_vfs_deny_global != NULL)) { \
1370 DBG_ERR("Called with VFS denied by %s\n", \
1371 smb_vfs_deny_global->location); \
1372 smb_panic("Called with VFS denied!"); \
1374 while (handle->fns->__fn__##_fn==NULL) { \
1375 handle = handle->next; \
1377 } while(0)
1379 int smb_vfs_call_connect(struct vfs_handle_struct *handle,
1380 const char *service, const char *user)
1382 VFS_FIND(connect);
1383 return handle->fns->connect_fn(handle, service, user);
1386 void smb_vfs_call_disconnect(struct vfs_handle_struct *handle)
1388 VFS_FIND(disconnect);
1389 handle->fns->disconnect_fn(handle);
1392 uint64_t smb_vfs_call_disk_free(struct vfs_handle_struct *handle,
1393 const struct smb_filename *smb_fname,
1394 uint64_t *bsize,
1395 uint64_t *dfree,
1396 uint64_t *dsize)
1398 VFS_FIND(disk_free);
1399 return handle->fns->disk_free_fn(handle, smb_fname,
1400 bsize, dfree, dsize);
1403 int smb_vfs_call_get_quota(struct vfs_handle_struct *handle,
1404 const struct smb_filename *smb_fname,
1405 enum SMB_QUOTA_TYPE qtype,
1406 unid_t id,
1407 SMB_DISK_QUOTA *qt)
1409 VFS_FIND(get_quota);
1410 return handle->fns->get_quota_fn(handle, smb_fname, qtype, id, qt);
1413 int smb_vfs_call_set_quota(struct vfs_handle_struct *handle,
1414 enum SMB_QUOTA_TYPE qtype, unid_t id,
1415 SMB_DISK_QUOTA *qt)
1417 VFS_FIND(set_quota);
1418 return handle->fns->set_quota_fn(handle, qtype, id, qt);
1421 int smb_vfs_call_get_shadow_copy_data(struct vfs_handle_struct *handle,
1422 struct files_struct *fsp,
1423 struct shadow_copy_data *shadow_copy_data,
1424 bool labels)
1426 VFS_FIND(get_shadow_copy_data);
1427 return handle->fns->get_shadow_copy_data_fn(handle, fsp,
1428 shadow_copy_data,
1429 labels);
1431 int smb_vfs_call_statvfs(struct vfs_handle_struct *handle,
1432 const struct smb_filename *smb_fname,
1433 struct vfs_statvfs_struct *statbuf)
1435 VFS_FIND(statvfs);
1436 return handle->fns->statvfs_fn(handle, smb_fname, statbuf);
1439 uint32_t smb_vfs_call_fs_capabilities(struct vfs_handle_struct *handle,
1440 enum timestamp_set_resolution *p_ts_res)
1442 VFS_FIND(fs_capabilities);
1443 return handle->fns->fs_capabilities_fn(handle, p_ts_res);
1446 NTSTATUS smb_vfs_call_get_dfs_referrals(struct vfs_handle_struct *handle,
1447 struct dfs_GetDFSReferral *r)
1449 VFS_FIND(get_dfs_referrals);
1450 return handle->fns->get_dfs_referrals_fn(handle, r);
1453 NTSTATUS smb_vfs_call_create_dfs_pathat(struct vfs_handle_struct *handle,
1454 struct files_struct *dirfsp,
1455 const struct smb_filename *smb_fname,
1456 const struct referral *reflist,
1457 size_t referral_count)
1459 VFS_FIND(create_dfs_pathat);
1460 return handle->fns->create_dfs_pathat_fn(handle,
1461 dirfsp,
1462 smb_fname,
1463 reflist,
1464 referral_count);
1467 NTSTATUS smb_vfs_call_read_dfs_pathat(struct vfs_handle_struct *handle,
1468 TALLOC_CTX *mem_ctx,
1469 struct files_struct *dirfsp,
1470 struct smb_filename *smb_fname,
1471 struct referral **ppreflist,
1472 size_t *preferral_count)
1474 VFS_FIND(read_dfs_pathat);
1475 return handle->fns->read_dfs_pathat_fn(handle,
1476 mem_ctx,
1477 dirfsp,
1478 smb_fname,
1479 ppreflist,
1480 preferral_count);
1483 DIR *smb_vfs_call_fdopendir(struct vfs_handle_struct *handle,
1484 struct files_struct *fsp,
1485 const char *mask,
1486 uint32_t attributes)
1488 VFS_FIND(fdopendir);
1489 return handle->fns->fdopendir_fn(handle, fsp, mask, attributes);
1492 struct dirent *smb_vfs_call_readdir(struct vfs_handle_struct *handle,
1493 struct files_struct *dirfsp,
1494 DIR *dirp,
1495 SMB_STRUCT_STAT *sbuf)
1497 VFS_FIND(readdir);
1498 return handle->fns->readdir_fn(handle, dirfsp, dirp, sbuf);
1501 void smb_vfs_call_seekdir(struct vfs_handle_struct *handle,
1502 DIR *dirp, long offset)
1504 VFS_FIND(seekdir);
1505 handle->fns->seekdir_fn(handle, dirp, offset);
1508 long smb_vfs_call_telldir(struct vfs_handle_struct *handle,
1509 DIR *dirp)
1511 VFS_FIND(telldir);
1512 return handle->fns->telldir_fn(handle, dirp);
1515 void smb_vfs_call_rewind_dir(struct vfs_handle_struct *handle,
1516 DIR *dirp)
1518 VFS_FIND(rewind_dir);
1519 handle->fns->rewind_dir_fn(handle, dirp);
1522 int smb_vfs_call_mkdirat(struct vfs_handle_struct *handle,
1523 struct files_struct *dirfsp,
1524 const struct smb_filename *smb_fname,
1525 mode_t mode)
1527 VFS_FIND(mkdirat);
1528 return handle->fns->mkdirat_fn(handle,
1529 dirfsp,
1530 smb_fname,
1531 mode);
1534 int smb_vfs_call_closedir(struct vfs_handle_struct *handle,
1535 DIR *dir)
1537 VFS_FIND(closedir);
1538 return handle->fns->closedir_fn(handle, dir);
1541 int smb_vfs_call_openat(struct vfs_handle_struct *handle,
1542 const struct files_struct *dirfsp,
1543 const struct smb_filename *smb_fname,
1544 struct files_struct *fsp,
1545 const struct vfs_open_how *how)
1547 VFS_FIND(openat);
1548 return handle->fns->openat_fn(handle,
1549 dirfsp,
1550 smb_fname,
1551 fsp,
1552 how);
1555 NTSTATUS smb_vfs_call_create_file(struct vfs_handle_struct *handle,
1556 struct smb_request *req,
1557 struct files_struct *dirfsp,
1558 struct smb_filename *smb_fname,
1559 uint32_t access_mask,
1560 uint32_t share_access,
1561 uint32_t create_disposition,
1562 uint32_t create_options,
1563 uint32_t file_attributes,
1564 uint32_t oplock_request,
1565 const struct smb2_lease *lease,
1566 uint64_t allocation_size,
1567 uint32_t private_flags,
1568 struct security_descriptor *sd,
1569 struct ea_list *ea_list,
1570 files_struct **result,
1571 int *pinfo,
1572 const struct smb2_create_blobs *in_context_blobs,
1573 struct smb2_create_blobs *out_context_blobs)
1575 VFS_FIND(create_file);
1576 return handle->fns->create_file_fn(
1577 handle, req, dirfsp, smb_fname,
1578 access_mask, share_access, create_disposition, create_options,
1579 file_attributes, oplock_request, lease, allocation_size,
1580 private_flags, sd, ea_list,
1581 result, pinfo, in_context_blobs, out_context_blobs);
1584 int smb_vfs_call_close(struct vfs_handle_struct *handle,
1585 struct files_struct *fsp)
1587 VFS_FIND(close);
1588 return handle->fns->close_fn(handle, fsp);
1591 ssize_t smb_vfs_call_pread(struct vfs_handle_struct *handle,
1592 struct files_struct *fsp, void *data, size_t n,
1593 off_t offset)
1595 VFS_FIND(pread);
1596 return handle->fns->pread_fn(handle, fsp, data, n, offset);
1599 struct smb_vfs_call_pread_state {
1600 ssize_t (*recv_fn)(struct tevent_req *req, struct vfs_aio_state *vfs_aio_state);
1601 ssize_t retval;
1602 struct vfs_aio_state vfs_aio_state;
1605 static void smb_vfs_call_pread_done(struct tevent_req *subreq);
1607 struct tevent_req *smb_vfs_call_pread_send(struct vfs_handle_struct *handle,
1608 TALLOC_CTX *mem_ctx,
1609 struct tevent_context *ev,
1610 struct files_struct *fsp,
1611 void *data,
1612 size_t n, off_t offset)
1614 struct tevent_req *req, *subreq;
1615 struct smb_vfs_call_pread_state *state;
1617 req = tevent_req_create(mem_ctx, &state,
1618 struct smb_vfs_call_pread_state);
1619 if (req == NULL) {
1620 return NULL;
1622 VFS_FIND(pread_send);
1623 state->recv_fn = handle->fns->pread_recv_fn;
1625 subreq = handle->fns->pread_send_fn(handle, state, ev, fsp, data, n,
1626 offset);
1627 if (tevent_req_nomem(subreq, req)) {
1628 return tevent_req_post(req, ev);
1630 tevent_req_set_callback(subreq, smb_vfs_call_pread_done, req);
1631 return req;
1634 static void smb_vfs_call_pread_done(struct tevent_req *subreq)
1636 struct tevent_req *req = tevent_req_callback_data(
1637 subreq, struct tevent_req);
1638 struct smb_vfs_call_pread_state *state = tevent_req_data(
1639 req, struct smb_vfs_call_pread_state);
1641 state->retval = state->recv_fn(subreq, &state->vfs_aio_state);
1642 TALLOC_FREE(subreq);
1643 if (state->retval == -1) {
1644 tevent_req_error(req, state->vfs_aio_state.error);
1645 return;
1647 tevent_req_done(req);
1650 ssize_t SMB_VFS_PREAD_RECV(struct tevent_req *req,
1651 struct vfs_aio_state *vfs_aio_state)
1653 struct smb_vfs_call_pread_state *state = tevent_req_data(
1654 req, struct smb_vfs_call_pread_state);
1655 ssize_t retval;
1657 if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
1658 tevent_req_received(req);
1659 return -1;
1661 *vfs_aio_state = state->vfs_aio_state;
1662 retval = state->retval;
1663 tevent_req_received(req);
1664 return retval;
1667 ssize_t smb_vfs_call_pwrite(struct vfs_handle_struct *handle,
1668 struct files_struct *fsp, const void *data,
1669 size_t n, off_t offset)
1671 VFS_FIND(pwrite);
1672 return handle->fns->pwrite_fn(handle, fsp, data, n, offset);
1675 struct smb_vfs_call_pwrite_state {
1676 ssize_t (*recv_fn)(struct tevent_req *req, struct vfs_aio_state *vfs_aio_state);
1677 ssize_t retval;
1678 struct vfs_aio_state vfs_aio_state;
1681 static void smb_vfs_call_pwrite_done(struct tevent_req *subreq);
1683 struct tevent_req *smb_vfs_call_pwrite_send(struct vfs_handle_struct *handle,
1684 TALLOC_CTX *mem_ctx,
1685 struct tevent_context *ev,
1686 struct files_struct *fsp,
1687 const void *data,
1688 size_t n, off_t offset)
1690 struct tevent_req *req, *subreq;
1691 struct smb_vfs_call_pwrite_state *state;
1693 req = tevent_req_create(mem_ctx, &state,
1694 struct smb_vfs_call_pwrite_state);
1695 if (req == NULL) {
1696 return NULL;
1698 VFS_FIND(pwrite_send);
1699 state->recv_fn = handle->fns->pwrite_recv_fn;
1701 subreq = handle->fns->pwrite_send_fn(handle, state, ev, fsp, data, n,
1702 offset);
1703 if (tevent_req_nomem(subreq, req)) {
1704 return tevent_req_post(req, ev);
1706 tevent_req_set_callback(subreq, smb_vfs_call_pwrite_done, req);
1707 return req;
1710 static void smb_vfs_call_pwrite_done(struct tevent_req *subreq)
1712 struct tevent_req *req = tevent_req_callback_data(
1713 subreq, struct tevent_req);
1714 struct smb_vfs_call_pwrite_state *state = tevent_req_data(
1715 req, struct smb_vfs_call_pwrite_state);
1717 state->retval = state->recv_fn(subreq, &state->vfs_aio_state);
1718 TALLOC_FREE(subreq);
1719 if (state->retval == -1) {
1720 tevent_req_error(req, state->vfs_aio_state.error);
1721 return;
1723 tevent_req_done(req);
1726 ssize_t SMB_VFS_PWRITE_RECV(struct tevent_req *req,
1727 struct vfs_aio_state *vfs_aio_state)
1729 struct smb_vfs_call_pwrite_state *state = tevent_req_data(
1730 req, struct smb_vfs_call_pwrite_state);
1731 ssize_t retval;
1733 if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
1734 tevent_req_received(req);
1735 return -1;
1737 *vfs_aio_state = state->vfs_aio_state;
1738 retval = state->retval;
1739 tevent_req_received(req);
1740 return retval;
1743 off_t smb_vfs_call_lseek(struct vfs_handle_struct *handle,
1744 struct files_struct *fsp, off_t offset,
1745 int whence)
1747 VFS_FIND(lseek);
1748 return handle->fns->lseek_fn(handle, fsp, offset, whence);
1751 ssize_t smb_vfs_call_sendfile(struct vfs_handle_struct *handle, int tofd,
1752 files_struct *fromfsp, const DATA_BLOB *header,
1753 off_t offset, size_t count)
1755 VFS_FIND(sendfile);
1756 return handle->fns->sendfile_fn(handle, tofd, fromfsp, header, offset,
1757 count);
1760 ssize_t smb_vfs_call_recvfile(struct vfs_handle_struct *handle, int fromfd,
1761 files_struct *tofsp, off_t offset,
1762 size_t count)
1764 VFS_FIND(recvfile);
1765 return handle->fns->recvfile_fn(handle, fromfd, tofsp, offset, count);
1768 int smb_vfs_call_renameat(struct vfs_handle_struct *handle,
1769 files_struct *srcfsp,
1770 const struct smb_filename *smb_fname_src,
1771 files_struct *dstfsp,
1772 const struct smb_filename *smb_fname_dst)
1774 VFS_FIND(renameat);
1775 return handle->fns->renameat_fn(handle,
1776 srcfsp,
1777 smb_fname_src,
1778 dstfsp,
1779 smb_fname_dst);
1782 struct smb_vfs_call_fsync_state {
1783 int (*recv_fn)(struct tevent_req *req, struct vfs_aio_state *vfs_aio_state);
1784 int retval;
1785 struct vfs_aio_state vfs_aio_state;
1788 static void smb_vfs_call_fsync_done(struct tevent_req *subreq);
1790 struct tevent_req *smb_vfs_call_fsync_send(struct vfs_handle_struct *handle,
1791 TALLOC_CTX *mem_ctx,
1792 struct tevent_context *ev,
1793 struct files_struct *fsp)
1795 struct tevent_req *req, *subreq;
1796 struct smb_vfs_call_fsync_state *state;
1798 req = tevent_req_create(mem_ctx, &state,
1799 struct smb_vfs_call_fsync_state);
1800 if (req == NULL) {
1801 return NULL;
1803 VFS_FIND(fsync_send);
1804 state->recv_fn = handle->fns->fsync_recv_fn;
1806 subreq = handle->fns->fsync_send_fn(handle, state, ev, fsp);
1807 if (tevent_req_nomem(subreq, req)) {
1808 return tevent_req_post(req, ev);
1810 tevent_req_set_callback(subreq, smb_vfs_call_fsync_done, req);
1811 return req;
1814 static void smb_vfs_call_fsync_done(struct tevent_req *subreq)
1816 struct tevent_req *req = tevent_req_callback_data(
1817 subreq, struct tevent_req);
1818 struct smb_vfs_call_fsync_state *state = tevent_req_data(
1819 req, struct smb_vfs_call_fsync_state);
1821 state->retval = state->recv_fn(subreq, &state->vfs_aio_state);
1822 TALLOC_FREE(subreq);
1823 if (state->retval == -1) {
1824 tevent_req_error(req, state->vfs_aio_state.error);
1825 return;
1827 tevent_req_done(req);
1830 int SMB_VFS_FSYNC_RECV(struct tevent_req *req, struct vfs_aio_state *vfs_aio_state)
1832 struct smb_vfs_call_fsync_state *state = tevent_req_data(
1833 req, struct smb_vfs_call_fsync_state);
1834 ssize_t retval;
1836 if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
1837 tevent_req_received(req);
1838 return -1;
1840 *vfs_aio_state = state->vfs_aio_state;
1841 retval = state->retval;
1842 tevent_req_received(req);
1843 return retval;
1847 * Synchronous version of fsync, built from backend
1848 * async VFS primitives. Uses a temporary sub-event
1849 * context (NOT NESTED).
1852 int smb_vfs_fsync_sync(files_struct *fsp)
1854 TALLOC_CTX *frame = talloc_stackframe();
1855 struct tevent_req *req = NULL;
1856 struct vfs_aio_state aio_state = { 0 };
1857 int ret = -1;
1858 bool ok;
1859 struct tevent_context *ev = samba_tevent_context_init(frame);
1861 if (ev == NULL) {
1862 goto out;
1865 req = SMB_VFS_FSYNC_SEND(talloc_tos(), ev, fsp);
1866 if (req == NULL) {
1867 goto out;
1870 ok = tevent_req_poll(req, ev);
1871 if (!ok) {
1872 goto out;
1875 ret = SMB_VFS_FSYNC_RECV(req, &aio_state);
1877 out:
1879 TALLOC_FREE(frame);
1880 if (aio_state.error != 0) {
1881 errno = aio_state.error;
1883 return ret;
1886 int smb_vfs_call_stat(struct vfs_handle_struct *handle,
1887 struct smb_filename *smb_fname)
1889 VFS_FIND(stat);
1890 return handle->fns->stat_fn(handle, smb_fname);
1893 int smb_vfs_call_fstat(struct vfs_handle_struct *handle,
1894 struct files_struct *fsp, SMB_STRUCT_STAT *sbuf)
1896 VFS_FIND(fstat);
1897 return handle->fns->fstat_fn(handle, fsp, sbuf);
1900 int smb_vfs_call_lstat(struct vfs_handle_struct *handle,
1901 struct smb_filename *smb_filename)
1903 VFS_FIND(lstat);
1904 return handle->fns->lstat_fn(handle, smb_filename);
1907 int smb_vfs_call_fstatat(
1908 struct vfs_handle_struct *handle,
1909 const struct files_struct *dirfsp,
1910 const struct smb_filename *smb_fname,
1911 SMB_STRUCT_STAT *sbuf,
1912 int flags)
1914 VFS_FIND(fstatat);
1915 return handle->fns->fstatat_fn(handle, dirfsp, smb_fname, sbuf, flags);
1918 uint64_t smb_vfs_call_get_alloc_size(struct vfs_handle_struct *handle,
1919 struct files_struct *fsp,
1920 const SMB_STRUCT_STAT *sbuf)
1922 VFS_FIND(get_alloc_size);
1923 return handle->fns->get_alloc_size_fn(handle, fsp, sbuf);
1926 int smb_vfs_call_unlinkat(struct vfs_handle_struct *handle,
1927 struct files_struct *dirfsp,
1928 const struct smb_filename *smb_fname,
1929 int flags)
1931 VFS_FIND(unlinkat);
1932 return handle->fns->unlinkat_fn(handle,
1933 dirfsp,
1934 smb_fname,
1935 flags);
1938 int smb_vfs_call_fchmod(struct vfs_handle_struct *handle,
1939 struct files_struct *fsp, mode_t mode)
1941 VFS_FIND(fchmod);
1942 return handle->fns->fchmod_fn(handle, fsp, mode);
1945 int smb_vfs_call_fchown(struct vfs_handle_struct *handle,
1946 struct files_struct *fsp, uid_t uid, gid_t gid)
1948 VFS_FIND(fchown);
1949 return handle->fns->fchown_fn(handle, fsp, uid, gid);
1952 int smb_vfs_call_lchown(struct vfs_handle_struct *handle,
1953 const struct smb_filename *smb_fname,
1954 uid_t uid,
1955 gid_t gid)
1957 VFS_FIND(lchown);
1958 return handle->fns->lchown_fn(handle, smb_fname, uid, gid);
1961 int smb_vfs_call_chdir(struct vfs_handle_struct *handle,
1962 const struct smb_filename *smb_fname)
1964 VFS_FIND(chdir);
1965 return handle->fns->chdir_fn(handle, smb_fname);
1968 struct smb_filename *smb_vfs_call_getwd(struct vfs_handle_struct *handle,
1969 TALLOC_CTX *ctx)
1971 VFS_FIND(getwd);
1972 return handle->fns->getwd_fn(handle, ctx);
1975 int smb_vfs_call_fntimes(struct vfs_handle_struct *handle,
1976 struct files_struct *fsp,
1977 struct smb_file_time *ft)
1979 VFS_FIND(fntimes);
1980 return handle->fns->fntimes_fn(handle, fsp, ft);
1983 int smb_vfs_call_ftruncate(struct vfs_handle_struct *handle,
1984 struct files_struct *fsp, off_t offset)
1986 VFS_FIND(ftruncate);
1987 return handle->fns->ftruncate_fn(handle, fsp, offset);
1990 int smb_vfs_call_fallocate(struct vfs_handle_struct *handle,
1991 struct files_struct *fsp,
1992 uint32_t mode,
1993 off_t offset,
1994 off_t len)
1996 VFS_FIND(fallocate);
1997 return handle->fns->fallocate_fn(handle, fsp, mode, offset, len);
2000 int smb_vfs_call_filesystem_sharemode(struct vfs_handle_struct *handle,
2001 struct files_struct *fsp,
2002 uint32_t share_mode,
2003 uint32_t access_mask)
2005 VFS_FIND(filesystem_sharemode);
2006 return handle->fns->filesystem_sharemode_fn(handle,
2007 fsp,
2008 share_mode,
2009 access_mask);
2012 int smb_vfs_call_fcntl(struct vfs_handle_struct *handle,
2013 struct files_struct *fsp, int cmd, ...)
2015 int result;
2016 va_list cmd_arg;
2018 VFS_FIND(fcntl);
2020 va_start(cmd_arg, cmd);
2021 result = handle->fns->fcntl_fn(handle, fsp, cmd, cmd_arg);
2022 va_end(cmd_arg);
2024 return result;
2027 int smb_vfs_call_linux_setlease(struct vfs_handle_struct *handle,
2028 struct files_struct *fsp, int leasetype)
2030 VFS_FIND(linux_setlease);
2031 return handle->fns->linux_setlease_fn(handle, fsp, leasetype);
2034 int smb_vfs_call_symlinkat(struct vfs_handle_struct *handle,
2035 const struct smb_filename *link_target,
2036 struct files_struct *dirfsp,
2037 const struct smb_filename *new_smb_fname)
2039 VFS_FIND(symlinkat);
2040 return handle->fns->symlinkat_fn(handle,
2041 link_target,
2042 dirfsp,
2043 new_smb_fname);
2046 int smb_vfs_call_readlinkat(struct vfs_handle_struct *handle,
2047 const struct files_struct *dirfsp,
2048 const struct smb_filename *smb_fname,
2049 char *buf,
2050 size_t bufsiz)
2052 VFS_FIND(readlinkat);
2053 return handle->fns->readlinkat_fn(handle,
2054 dirfsp,
2055 smb_fname,
2056 buf,
2057 bufsiz);
2060 int smb_vfs_call_linkat(struct vfs_handle_struct *handle,
2061 struct files_struct *srcfsp,
2062 const struct smb_filename *old_smb_fname,
2063 struct files_struct *dstfsp,
2064 const struct smb_filename *new_smb_fname,
2065 int flags)
2067 VFS_FIND(linkat);
2068 return handle->fns->linkat_fn(handle,
2069 srcfsp,
2070 old_smb_fname,
2071 dstfsp,
2072 new_smb_fname,
2073 flags);
2076 int smb_vfs_call_mknodat(struct vfs_handle_struct *handle,
2077 struct files_struct *dirfsp,
2078 const struct smb_filename *smb_fname,
2079 mode_t mode,
2080 SMB_DEV_T dev)
2082 VFS_FIND(mknodat);
2083 return handle->fns->mknodat_fn(handle,
2084 dirfsp,
2085 smb_fname,
2086 mode,
2087 dev);
2090 struct smb_filename *smb_vfs_call_realpath(struct vfs_handle_struct *handle,
2091 TALLOC_CTX *ctx,
2092 const struct smb_filename *smb_fname)
2094 VFS_FIND(realpath);
2095 return handle->fns->realpath_fn(handle, ctx, smb_fname);
2098 int smb_vfs_call_fchflags(struct vfs_handle_struct *handle,
2099 struct files_struct *fsp,
2100 unsigned int flags)
2102 VFS_FIND(fchflags);
2103 return handle->fns->fchflags_fn(handle, fsp, flags);
2106 struct file_id smb_vfs_call_file_id_create(struct vfs_handle_struct *handle,
2107 const SMB_STRUCT_STAT *sbuf)
2109 VFS_FIND(file_id_create);
2110 return handle->fns->file_id_create_fn(handle, sbuf);
2113 uint64_t smb_vfs_call_fs_file_id(struct vfs_handle_struct *handle,
2114 const SMB_STRUCT_STAT *sbuf)
2116 VFS_FIND(fs_file_id);
2117 return handle->fns->fs_file_id_fn(handle, sbuf);
2120 NTSTATUS smb_vfs_call_fstreaminfo(struct vfs_handle_struct *handle,
2121 struct files_struct *fsp,
2122 TALLOC_CTX *mem_ctx,
2123 unsigned int *num_streams,
2124 struct stream_struct **streams)
2126 VFS_FIND(fstreaminfo);
2127 return handle->fns->fstreaminfo_fn(handle, fsp, mem_ctx,
2128 num_streams, streams);
2131 NTSTATUS smb_vfs_call_get_real_filename_at(struct vfs_handle_struct *handle,
2132 struct files_struct *dirfsp,
2133 const char *name,
2134 TALLOC_CTX *mem_ctx,
2135 char **found_name)
2137 VFS_FIND(get_real_filename_at);
2138 return handle->fns->get_real_filename_at_fn(
2139 handle, dirfsp, name, mem_ctx, found_name);
2142 const char *smb_vfs_call_connectpath(struct vfs_handle_struct *handle,
2143 const struct files_struct *dirfsp,
2144 const struct smb_filename *smb_fname)
2146 VFS_FIND(connectpath);
2147 return handle->fns->connectpath_fn(handle, dirfsp, smb_fname);
2150 bool smb_vfs_call_strict_lock_check(struct vfs_handle_struct *handle,
2151 struct files_struct *fsp,
2152 struct lock_struct *plock)
2154 VFS_FIND(strict_lock_check);
2155 return handle->fns->strict_lock_check_fn(handle, fsp, plock);
2158 NTSTATUS smb_vfs_call_translate_name(struct vfs_handle_struct *handle,
2159 const char *name,
2160 enum vfs_translate_direction direction,
2161 TALLOC_CTX *mem_ctx,
2162 char **mapped_name)
2164 VFS_FIND(translate_name);
2165 return handle->fns->translate_name_fn(handle, name, direction, mem_ctx,
2166 mapped_name);
2169 NTSTATUS smb_vfs_call_parent_pathname(struct vfs_handle_struct *handle,
2170 TALLOC_CTX *mem_ctx,
2171 const struct smb_filename *smb_fname_in,
2172 struct smb_filename **parent_dir_out,
2173 struct smb_filename **atname_out)
2175 VFS_FIND(parent_pathname);
2176 return handle->fns->parent_pathname_fn(handle,
2177 mem_ctx,
2178 smb_fname_in,
2179 parent_dir_out,
2180 atname_out);
2183 NTSTATUS smb_vfs_call_fsctl(struct vfs_handle_struct *handle,
2184 struct files_struct *fsp,
2185 TALLOC_CTX *ctx,
2186 uint32_t function,
2187 uint16_t req_flags,
2188 const uint8_t *in_data,
2189 uint32_t in_len,
2190 uint8_t **out_data,
2191 uint32_t max_out_len,
2192 uint32_t *out_len)
2194 VFS_FIND(fsctl);
2195 return handle->fns->fsctl_fn(handle, fsp, ctx, function, req_flags,
2196 in_data, in_len, out_data, max_out_len,
2197 out_len);
2200 NTSTATUS smb_vfs_call_fget_dos_attributes(struct vfs_handle_struct *handle,
2201 struct files_struct *fsp,
2202 uint32_t *dosmode)
2204 VFS_FIND(fget_dos_attributes);
2205 return handle->fns->fget_dos_attributes_fn(handle, fsp, dosmode);
2208 NTSTATUS smb_vfs_call_fset_dos_attributes(struct vfs_handle_struct *handle,
2209 struct files_struct *fsp,
2210 uint32_t dosmode)
2212 VFS_FIND(fset_dos_attributes);
2213 return handle->fns->fset_dos_attributes_fn(handle, fsp, dosmode);
2216 struct tevent_req *smb_vfs_call_offload_read_send(TALLOC_CTX *mem_ctx,
2217 struct tevent_context *ev,
2218 struct vfs_handle_struct *handle,
2219 struct files_struct *fsp,
2220 uint32_t fsctl,
2221 uint32_t ttl,
2222 off_t offset,
2223 size_t to_copy)
2225 VFS_FIND(offload_read_send);
2226 return handle->fns->offload_read_send_fn(mem_ctx, ev, handle,
2227 fsp, fsctl,
2228 ttl, offset, to_copy);
2231 NTSTATUS smb_vfs_call_offload_read_recv(struct tevent_req *req,
2232 struct vfs_handle_struct *handle,
2233 TALLOC_CTX *mem_ctx,
2234 uint32_t *flags,
2235 uint64_t *xferlen,
2236 DATA_BLOB *token_blob)
2238 VFS_FIND(offload_read_recv);
2239 return handle->fns->offload_read_recv_fn(req, handle, mem_ctx, flags, xferlen, token_blob);
2242 struct tevent_req *smb_vfs_call_offload_write_send(struct vfs_handle_struct *handle,
2243 TALLOC_CTX *mem_ctx,
2244 struct tevent_context *ev,
2245 uint32_t fsctl,
2246 DATA_BLOB *token,
2247 off_t transfer_offset,
2248 struct files_struct *dest_fsp,
2249 off_t dest_off,
2250 off_t num)
2252 VFS_FIND(offload_write_send);
2253 return handle->fns->offload_write_send_fn(handle, mem_ctx, ev, fsctl,
2254 token, transfer_offset,
2255 dest_fsp, dest_off, num);
2258 NTSTATUS smb_vfs_call_offload_write_recv(struct vfs_handle_struct *handle,
2259 struct tevent_req *req,
2260 off_t *copied)
2262 VFS_FIND(offload_write_recv);
2263 return handle->fns->offload_write_recv_fn(handle, req, copied);
2266 struct smb_vfs_call_get_dos_attributes_state {
2267 files_struct *dir_fsp;
2268 NTSTATUS (*recv_fn)(struct tevent_req *req,
2269 struct vfs_aio_state *aio_state,
2270 uint32_t *dosmode);
2271 struct vfs_aio_state aio_state;
2272 uint32_t dos_attributes;
2275 static void smb_vfs_call_get_dos_attributes_done(struct tevent_req *subreq);
2277 struct tevent_req *smb_vfs_call_get_dos_attributes_send(
2278 TALLOC_CTX *mem_ctx,
2279 struct tevent_context *ev,
2280 struct vfs_handle_struct *handle,
2281 files_struct *dir_fsp,
2282 struct smb_filename *smb_fname)
2284 struct tevent_req *req = NULL;
2285 struct smb_vfs_call_get_dos_attributes_state *state = NULL;
2286 struct tevent_req *subreq = NULL;
2288 req = tevent_req_create(mem_ctx, &state,
2289 struct smb_vfs_call_get_dos_attributes_state);
2290 if (req == NULL) {
2291 return NULL;
2294 VFS_FIND(get_dos_attributes_send);
2296 *state = (struct smb_vfs_call_get_dos_attributes_state) {
2297 .dir_fsp = dir_fsp,
2298 .recv_fn = handle->fns->get_dos_attributes_recv_fn,
2301 subreq = handle->fns->get_dos_attributes_send_fn(mem_ctx,
2303 handle,
2304 dir_fsp,
2305 smb_fname);
2306 if (tevent_req_nomem(subreq, req)) {
2307 return tevent_req_post(req, ev);
2309 tevent_req_defer_callback(req, ev);
2311 tevent_req_set_callback(subreq,
2312 smb_vfs_call_get_dos_attributes_done,
2313 req);
2315 return req;
2318 static void smb_vfs_call_get_dos_attributes_done(struct tevent_req *subreq)
2320 struct tevent_req *req =
2321 tevent_req_callback_data(subreq,
2322 struct tevent_req);
2323 struct smb_vfs_call_get_dos_attributes_state *state =
2324 tevent_req_data(req,
2325 struct smb_vfs_call_get_dos_attributes_state);
2326 NTSTATUS status;
2327 bool ok;
2330 * Make sure we run as the user again
2332 ok = change_to_user_and_service_by_fsp(state->dir_fsp);
2333 SMB_ASSERT(ok);
2335 status = state->recv_fn(subreq,
2336 &state->aio_state,
2337 &state->dos_attributes);
2338 TALLOC_FREE(subreq);
2339 if (tevent_req_nterror(req, status)) {
2340 return;
2343 tevent_req_done(req);
2346 NTSTATUS smb_vfs_call_get_dos_attributes_recv(
2347 struct tevent_req *req,
2348 struct vfs_aio_state *aio_state,
2349 uint32_t *dos_attributes)
2351 struct smb_vfs_call_get_dos_attributes_state *state =
2352 tevent_req_data(req,
2353 struct smb_vfs_call_get_dos_attributes_state);
2354 NTSTATUS status;
2356 if (tevent_req_is_nterror(req, &status)) {
2357 tevent_req_received(req);
2358 return status;
2361 *aio_state = state->aio_state;
2362 *dos_attributes = state->dos_attributes;
2363 tevent_req_received(req);
2364 return NT_STATUS_OK;
2367 NTSTATUS smb_vfs_call_fget_compression(vfs_handle_struct *handle,
2368 TALLOC_CTX *mem_ctx,
2369 struct files_struct *fsp,
2370 uint16_t *_compression_fmt)
2372 VFS_FIND(fget_compression);
2373 return handle->fns->fget_compression_fn(handle, mem_ctx, fsp,
2374 _compression_fmt);
2377 NTSTATUS smb_vfs_call_set_compression(vfs_handle_struct *handle,
2378 TALLOC_CTX *mem_ctx,
2379 struct files_struct *fsp,
2380 uint16_t compression_fmt)
2382 VFS_FIND(set_compression);
2383 return handle->fns->set_compression_fn(handle, mem_ctx, fsp,
2384 compression_fmt);
2387 NTSTATUS smb_vfs_call_snap_check_path(vfs_handle_struct *handle,
2388 TALLOC_CTX *mem_ctx,
2389 const char *service_path,
2390 char **base_volume)
2392 VFS_FIND(snap_check_path);
2393 return handle->fns->snap_check_path_fn(handle, mem_ctx, service_path,
2394 base_volume);
2397 NTSTATUS smb_vfs_call_snap_create(struct vfs_handle_struct *handle,
2398 TALLOC_CTX *mem_ctx,
2399 const char *base_volume,
2400 time_t *tstamp,
2401 bool rw,
2402 char **base_path,
2403 char **snap_path)
2405 VFS_FIND(snap_create);
2406 return handle->fns->snap_create_fn(handle, mem_ctx, base_volume, tstamp,
2407 rw, base_path, snap_path);
2410 NTSTATUS smb_vfs_call_snap_delete(struct vfs_handle_struct *handle,
2411 TALLOC_CTX *mem_ctx,
2412 char *base_path,
2413 char *snap_path)
2415 VFS_FIND(snap_delete);
2416 return handle->fns->snap_delete_fn(handle, mem_ctx, base_path,
2417 snap_path);
2420 NTSTATUS smb_vfs_call_fget_nt_acl(struct vfs_handle_struct *handle,
2421 struct files_struct *fsp,
2422 uint32_t security_info,
2423 TALLOC_CTX *mem_ctx,
2424 struct security_descriptor **ppdesc)
2426 VFS_FIND(fget_nt_acl);
2427 return handle->fns->fget_nt_acl_fn(handle, fsp, security_info,
2428 mem_ctx, ppdesc);
2431 NTSTATUS smb_vfs_call_fset_nt_acl(struct vfs_handle_struct *handle,
2432 struct files_struct *fsp,
2433 uint32_t security_info_sent,
2434 const struct security_descriptor *psd)
2436 VFS_FIND(fset_nt_acl);
2437 return handle->fns->fset_nt_acl_fn(handle, fsp, security_info_sent,
2438 psd);
2441 NTSTATUS smb_vfs_call_audit_file(struct vfs_handle_struct *handle,
2442 struct smb_filename *file,
2443 struct security_acl *sacl,
2444 uint32_t access_requested,
2445 uint32_t access_denied)
2447 VFS_FIND(audit_file);
2448 return handle->fns->audit_file_fn(handle,
2449 file,
2450 sacl,
2451 access_requested,
2452 access_denied);
2455 SMB_ACL_T smb_vfs_call_sys_acl_get_fd(struct vfs_handle_struct *handle,
2456 struct files_struct *fsp,
2457 SMB_ACL_TYPE_T type,
2458 TALLOC_CTX *mem_ctx)
2460 VFS_FIND(sys_acl_get_fd);
2461 return handle->fns->sys_acl_get_fd_fn(handle, fsp, type, mem_ctx);
2464 int smb_vfs_call_sys_acl_blob_get_fd(struct vfs_handle_struct *handle,
2465 struct files_struct *fsp,
2466 TALLOC_CTX *mem_ctx,
2467 char **blob_description,
2468 DATA_BLOB *blob)
2470 VFS_FIND(sys_acl_blob_get_fd);
2471 return handle->fns->sys_acl_blob_get_fd_fn(handle, fsp, mem_ctx, blob_description, blob);
2474 int smb_vfs_call_sys_acl_set_fd(struct vfs_handle_struct *handle,
2475 struct files_struct *fsp,
2476 SMB_ACL_TYPE_T type,
2477 SMB_ACL_T theacl)
2479 VFS_FIND(sys_acl_set_fd);
2480 return handle->fns->sys_acl_set_fd_fn(handle, fsp, type, theacl);
2483 int smb_vfs_call_sys_acl_delete_def_fd(struct vfs_handle_struct *handle,
2484 struct files_struct *fsp)
2486 VFS_FIND(sys_acl_delete_def_fd);
2487 return handle->fns->sys_acl_delete_def_fd_fn(handle, fsp);
2490 struct smb_vfs_call_getxattrat_state {
2491 files_struct *dir_fsp;
2492 ssize_t (*recv_fn)(struct tevent_req *req,
2493 struct vfs_aio_state *aio_state,
2494 TALLOC_CTX *mem_ctx,
2495 uint8_t **xattr_value);
2496 ssize_t retval;
2497 uint8_t *xattr_value;
2498 struct vfs_aio_state aio_state;
2501 static void smb_vfs_call_getxattrat_done(struct tevent_req *subreq);
2503 struct tevent_req *smb_vfs_call_getxattrat_send(
2504 TALLOC_CTX *mem_ctx,
2505 struct tevent_context *ev,
2506 struct vfs_handle_struct *handle,
2507 files_struct *dir_fsp,
2508 const struct smb_filename *smb_fname,
2509 const char *xattr_name,
2510 size_t alloc_hint)
2512 struct tevent_req *req = NULL;
2513 struct smb_vfs_call_getxattrat_state *state = NULL;
2514 struct tevent_req *subreq = NULL;
2516 req = tevent_req_create(mem_ctx, &state,
2517 struct smb_vfs_call_getxattrat_state);
2518 if (req == NULL) {
2519 return NULL;
2522 VFS_FIND(getxattrat_send);
2524 *state = (struct smb_vfs_call_getxattrat_state) {
2525 .dir_fsp = dir_fsp,
2526 .recv_fn = handle->fns->getxattrat_recv_fn,
2529 subreq = handle->fns->getxattrat_send_fn(mem_ctx,
2531 handle,
2532 dir_fsp,
2533 smb_fname,
2534 xattr_name,
2535 alloc_hint);
2536 if (tevent_req_nomem(subreq, req)) {
2537 return tevent_req_post(req, ev);
2539 tevent_req_defer_callback(req, ev);
2541 tevent_req_set_callback(subreq, smb_vfs_call_getxattrat_done, req);
2542 return req;
2545 static void smb_vfs_call_getxattrat_done(struct tevent_req *subreq)
2547 struct tevent_req *req = tevent_req_callback_data(
2548 subreq, struct tevent_req);
2549 struct smb_vfs_call_getxattrat_state *state = tevent_req_data(
2550 req, struct smb_vfs_call_getxattrat_state);
2551 bool ok;
2554 * Make sure we run as the user again
2556 ok = change_to_user_and_service_by_fsp(state->dir_fsp);
2557 SMB_ASSERT(ok);
2559 state->retval = state->recv_fn(subreq,
2560 &state->aio_state,
2561 state,
2562 &state->xattr_value);
2563 TALLOC_FREE(subreq);
2564 if (state->retval == -1) {
2565 tevent_req_error(req, state->aio_state.error);
2566 return;
2569 tevent_req_done(req);
2572 ssize_t smb_vfs_call_getxattrat_recv(struct tevent_req *req,
2573 struct vfs_aio_state *aio_state,
2574 TALLOC_CTX *mem_ctx,
2575 uint8_t **xattr_value)
2577 struct smb_vfs_call_getxattrat_state *state = tevent_req_data(
2578 req, struct smb_vfs_call_getxattrat_state);
2579 size_t xattr_size;
2581 if (tevent_req_is_unix_error(req, &aio_state->error)) {
2582 tevent_req_received(req);
2583 return -1;
2586 *aio_state = state->aio_state;
2587 xattr_size = state->retval;
2588 if (xattr_value != NULL) {
2589 *xattr_value = talloc_move(mem_ctx, &state->xattr_value);
2592 tevent_req_received(req);
2593 return xattr_size;
2596 ssize_t smb_vfs_call_fgetxattr(struct vfs_handle_struct *handle,
2597 struct files_struct *fsp, const char *name,
2598 void *value, size_t size)
2600 VFS_FIND(fgetxattr);
2601 return handle->fns->fgetxattr_fn(handle, fsp, name, value, size);
2604 ssize_t smb_vfs_call_flistxattr(struct vfs_handle_struct *handle,
2605 struct files_struct *fsp, char *list,
2606 size_t size)
2608 VFS_FIND(flistxattr);
2609 return handle->fns->flistxattr_fn(handle, fsp, list, size);
2612 int smb_vfs_call_fremovexattr(struct vfs_handle_struct *handle,
2613 struct files_struct *fsp, const char *name)
2615 VFS_FIND(fremovexattr);
2616 return handle->fns->fremovexattr_fn(handle, fsp, name);
2619 int smb_vfs_call_fsetxattr(struct vfs_handle_struct *handle,
2620 struct files_struct *fsp, const char *name,
2621 const void *value, size_t size, int flags)
2623 VFS_FIND(fsetxattr);
2624 return handle->fns->fsetxattr_fn(handle, fsp, name, value, size, flags);
2627 bool smb_vfs_call_aio_force(struct vfs_handle_struct *handle,
2628 struct files_struct *fsp)
2630 VFS_FIND(aio_force);
2631 return handle->fns->aio_force_fn(handle, fsp);
2634 NTSTATUS smb_vfs_call_durable_cookie(struct vfs_handle_struct *handle,
2635 struct files_struct *fsp,
2636 TALLOC_CTX *mem_ctx,
2637 DATA_BLOB *cookie)
2639 VFS_FIND(durable_cookie);
2640 return handle->fns->durable_cookie_fn(handle, fsp, mem_ctx, cookie);
2643 NTSTATUS smb_vfs_call_durable_disconnect(struct vfs_handle_struct *handle,
2644 struct files_struct *fsp,
2645 const DATA_BLOB old_cookie,
2646 TALLOC_CTX *mem_ctx,
2647 DATA_BLOB *new_cookie)
2649 VFS_FIND(durable_disconnect);
2650 return handle->fns->durable_disconnect_fn(handle, fsp, old_cookie,
2651 mem_ctx, new_cookie);
2654 NTSTATUS smb_vfs_call_durable_reconnect(struct vfs_handle_struct *handle,
2655 struct smb_request *smb1req,
2656 struct smbXsrv_open *op,
2657 const DATA_BLOB old_cookie,
2658 TALLOC_CTX *mem_ctx,
2659 struct files_struct **fsp,
2660 DATA_BLOB *new_cookie)
2662 VFS_FIND(durable_reconnect);
2663 return handle->fns->durable_reconnect_fn(handle, smb1req, op,
2664 old_cookie, mem_ctx, fsp,
2665 new_cookie);
2668 NTSTATUS smb_vfs_call_freaddir_attr(struct vfs_handle_struct *handle,
2669 struct files_struct *fsp,
2670 TALLOC_CTX *mem_ctx,
2671 struct readdir_attr_data **attr_data)
2673 VFS_FIND(freaddir_attr);
2674 return handle->fns->freaddir_attr_fn(handle,
2675 fsp,
2676 mem_ctx,
2677 attr_data);
2680 bool smb_vfs_call_lock(struct vfs_handle_struct *handle,
2681 struct files_struct *fsp, int op, off_t offset,
2682 off_t count, int type)
2684 VFS_FIND(lock);
2685 return handle->fns->lock_fn(handle, fsp, op, offset, count, type);
2688 bool smb_vfs_call_getlock(struct vfs_handle_struct *handle,
2689 struct files_struct *fsp, off_t *poffset,
2690 off_t *pcount, int *ptype, pid_t *ppid)
2692 VFS_FIND(getlock);
2693 return handle->fns->getlock_fn(handle, fsp, poffset, pcount, ptype,
2694 ppid);
2697 NTSTATUS smb_vfs_call_brl_lock_windows(struct vfs_handle_struct *handle,
2698 struct byte_range_lock *br_lck,
2699 struct lock_struct *plock)
2701 VFS_FIND(brl_lock_windows);
2702 return handle->fns->brl_lock_windows_fn(handle, br_lck, plock);
2705 bool smb_vfs_call_brl_unlock_windows(struct vfs_handle_struct *handle,
2706 struct byte_range_lock *br_lck,
2707 const struct lock_struct *plock)
2709 VFS_FIND(brl_unlock_windows);
2710 return handle->fns->brl_unlock_windows_fn(handle, br_lck, plock);