Fix a valgrind bug in the new [ug]id2sid cache
[Samba.git] / source / modules / vfs_default.c
blob31ebb6352a179d5631c588aab69b9714e068d7f7
1 /*
2 Unix SMB/CIFS implementation.
3 Wrap disk only vfs functions to sidestep dodgy compilers.
4 Copyright (C) Tim Potter 1998
5 Copyright (C) Jeremy Allison 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_VFS
26 /* Check for NULL pointer parameters in vfswrap_* functions */
28 /* We don't want to have NULL function pointers lying around. Someone
29 is sure to try and execute them. These stubs are used to prevent
30 this possibility. */
32 static int vfswrap_connect(vfs_handle_struct *handle, const char *service, const char *user)
34 return 0; /* Return >= 0 for success */
37 static void vfswrap_disconnect(vfs_handle_struct *handle)
41 /* Disk operations */
43 static SMB_BIG_UINT vfswrap_disk_free(vfs_handle_struct *handle, const char *path, bool small_query, SMB_BIG_UINT *bsize,
44 SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize)
46 SMB_BIG_UINT result;
48 result = sys_disk_free(handle->conn, path, small_query, bsize, dfree, dsize);
49 return result;
52 static int vfswrap_get_quota(struct vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt)
54 #ifdef HAVE_SYS_QUOTAS
55 int result;
57 START_PROFILE(syscall_get_quota);
58 result = sys_get_quota(handle->conn->connectpath, qtype, id, qt);
59 END_PROFILE(syscall_get_quota);
60 return result;
61 #else
62 errno = ENOSYS;
63 return -1;
64 #endif
67 static int vfswrap_set_quota(struct vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt)
69 #ifdef HAVE_SYS_QUOTAS
70 int result;
72 START_PROFILE(syscall_set_quota);
73 result = sys_set_quota(handle->conn->connectpath, qtype, id, qt);
74 END_PROFILE(syscall_set_quota);
75 return result;
76 #else
77 errno = ENOSYS;
78 return -1;
79 #endif
82 static int vfswrap_get_shadow_copy_data(struct vfs_handle_struct *handle, struct files_struct *fsp, SHADOW_COPY_DATA *shadow_copy_data, bool labels)
84 errno = ENOSYS;
85 return -1; /* Not implemented. */
88 static int vfswrap_statvfs(struct vfs_handle_struct *handle, const char *path, vfs_statvfs_struct *statbuf)
90 return sys_statvfs(path, statbuf);
93 static uint32_t vfswrap_fs_capabilities(struct vfs_handle_struct *handle)
95 #if defined(DARWINOS)
96 struct vfs_statvfs_struct statbuf;
97 ZERO_STRUCT(statbuf);
98 sys_statvfs(handle->conn->connectpath, &statbuf);
99 return statbuf.FsCapabilities;
100 #endif
101 return FILE_CASE_SENSITIVE_SEARCH | FILE_CASE_PRESERVED_NAMES;
104 /* Directory operations */
106 static SMB_STRUCT_DIR *vfswrap_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
108 SMB_STRUCT_DIR *result;
110 START_PROFILE(syscall_opendir);
111 result = sys_opendir(fname);
112 END_PROFILE(syscall_opendir);
113 return result;
116 static SMB_STRUCT_DIRENT *vfswrap_readdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
118 SMB_STRUCT_DIRENT *result;
120 START_PROFILE(syscall_readdir);
121 result = sys_readdir(dirp);
122 END_PROFILE(syscall_readdir);
123 return result;
126 static void vfswrap_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
128 START_PROFILE(syscall_seekdir);
129 sys_seekdir(dirp, offset);
130 END_PROFILE(syscall_seekdir);
133 static long vfswrap_telldir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
135 long result;
136 START_PROFILE(syscall_telldir);
137 result = sys_telldir(dirp);
138 END_PROFILE(syscall_telldir);
139 return result;
142 static void vfswrap_rewinddir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
144 START_PROFILE(syscall_rewinddir);
145 sys_rewinddir(dirp);
146 END_PROFILE(syscall_rewinddir);
149 static int vfswrap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode)
151 int result;
152 bool has_dacl = False;
154 START_PROFILE(syscall_mkdir);
156 if (lp_inherit_acls(SNUM(handle->conn)) && (has_dacl = directory_has_default_acl(handle->conn, parent_dirname(path))))
157 mode = 0777;
159 result = mkdir(path, mode);
161 if (result == 0 && !has_dacl) {
163 * We need to do this as the default behavior of POSIX ACLs
164 * is to set the mask to be the requested group permission
165 * bits, not the group permission bits to be the requested
166 * group permission bits. This is not what we want, as it will
167 * mess up any inherited ACL bits that were set. JRA.
169 int saved_errno = errno; /* We may get ENOSYS */
170 if ((SMB_VFS_CHMOD_ACL(handle->conn, path, mode) == -1) && (errno == ENOSYS))
171 errno = saved_errno;
174 END_PROFILE(syscall_mkdir);
175 return result;
178 static int vfswrap_rmdir(vfs_handle_struct *handle, const char *path)
180 int result;
182 START_PROFILE(syscall_rmdir);
183 result = rmdir(path);
184 END_PROFILE(syscall_rmdir);
185 return result;
188 static int vfswrap_closedir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp)
190 int result;
192 START_PROFILE(syscall_closedir);
193 result = sys_closedir(dirp);
194 END_PROFILE(syscall_closedir);
195 return result;
198 /* File operations */
200 static int vfswrap_open(vfs_handle_struct *handle, const char *fname,
201 files_struct *fsp, int flags, mode_t mode)
203 int result;
205 START_PROFILE(syscall_open);
206 result = sys_open(fname, flags, mode);
207 END_PROFILE(syscall_open);
208 return result;
211 static int vfswrap_close(vfs_handle_struct *handle, files_struct *fsp, int fd)
213 int result;
215 START_PROFILE(syscall_close);
217 result = close(fd);
218 END_PROFILE(syscall_close);
219 return result;
222 static ssize_t vfswrap_read(vfs_handle_struct *handle, files_struct *fsp, void *data, size_t n)
224 ssize_t result;
226 START_PROFILE_BYTES(syscall_read, n);
227 result = sys_read(fsp->fh->fd, data, n);
228 END_PROFILE(syscall_read);
229 return result;
232 static ssize_t vfswrap_pread(vfs_handle_struct *handle, files_struct *fsp, void *data,
233 size_t n, SMB_OFF_T offset)
235 ssize_t result;
237 #if defined(HAVE_PREAD) || defined(HAVE_PREAD64)
238 START_PROFILE_BYTES(syscall_pread, n);
239 result = sys_pread(fsp->fh->fd, data, n, offset);
240 END_PROFILE(syscall_pread);
242 if (result == -1 && errno == ESPIPE) {
243 /* Maintain the fiction that pipes can be seeked (sought?) on. */
244 result = SMB_VFS_READ(fsp, data, n);
245 fsp->fh->pos = 0;
248 #else /* HAVE_PREAD */
249 SMB_OFF_T curr;
250 int lerrno;
252 curr = SMB_VFS_LSEEK(fsp, 0, SEEK_CUR);
253 if (curr == -1 && errno == ESPIPE) {
254 /* Maintain the fiction that pipes can be seeked (sought?) on. */
255 result = SMB_VFS_READ(fsp, data, n);
256 fsp->fh->pos = 0;
257 return result;
260 if (SMB_VFS_LSEEK(fsp, offset, SEEK_SET) == -1) {
261 return -1;
264 errno = 0;
265 result = SMB_VFS_READ(fsp, data, n);
266 lerrno = errno;
268 SMB_VFS_LSEEK(fsp, curr, SEEK_SET);
269 errno = lerrno;
271 #endif /* HAVE_PREAD */
273 return result;
276 static ssize_t vfswrap_write(vfs_handle_struct *handle, files_struct *fsp, const void *data, size_t n)
278 ssize_t result;
280 START_PROFILE_BYTES(syscall_write, n);
281 result = sys_write(fsp->fh->fd, data, n);
282 END_PROFILE(syscall_write);
283 return result;
286 static ssize_t vfswrap_pwrite(vfs_handle_struct *handle, files_struct *fsp, const void *data,
287 size_t n, SMB_OFF_T offset)
289 ssize_t result;
291 #if defined(HAVE_PWRITE) || defined(HAVE_PRWITE64)
292 START_PROFILE_BYTES(syscall_pwrite, n);
293 result = sys_pwrite(fsp->fh->fd, data, n, offset);
294 END_PROFILE(syscall_pwrite);
296 if (result == -1 && errno == ESPIPE) {
297 /* Maintain the fiction that pipes can be sought on. */
298 result = SMB_VFS_WRITE(fsp, data, n);
301 #else /* HAVE_PWRITE */
302 SMB_OFF_T curr;
303 int lerrno;
305 curr = SMB_VFS_LSEEK(fsp, 0, SEEK_CUR);
306 if (curr == -1) {
307 return -1;
310 if (SMB_VFS_LSEEK(fsp, offset, SEEK_SET) == -1) {
311 return -1;
314 result = SMB_VFS_WRITE(fsp, data, n);
315 lerrno = errno;
317 SMB_VFS_LSEEK(fsp, curr, SEEK_SET);
318 errno = lerrno;
320 #endif /* HAVE_PWRITE */
322 return result;
325 static SMB_OFF_T vfswrap_lseek(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset, int whence)
327 SMB_OFF_T result = 0;
329 START_PROFILE(syscall_lseek);
331 /* Cope with 'stat' file opens. */
332 if (fsp->fh->fd != -1)
333 result = sys_lseek(fsp->fh->fd, offset, whence);
336 * We want to maintain the fiction that we can seek
337 * on a fifo for file system purposes. This allows
338 * people to set up UNIX fifo's that feed data to Windows
339 * applications. JRA.
342 if((result == -1) && (errno == ESPIPE)) {
343 result = 0;
344 errno = 0;
347 END_PROFILE(syscall_lseek);
348 return result;
351 static ssize_t vfswrap_sendfile(vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr,
352 SMB_OFF_T offset, size_t n)
354 ssize_t result;
356 START_PROFILE_BYTES(syscall_sendfile, n);
357 result = sys_sendfile(tofd, fromfsp->fh->fd, hdr, offset, n);
358 END_PROFILE(syscall_sendfile);
359 return result;
362 static ssize_t vfswrap_recvfile(vfs_handle_struct *handle,
363 int fromfd,
364 files_struct *tofsp,
365 SMB_OFF_T offset,
366 size_t n)
368 ssize_t result;
370 START_PROFILE_BYTES(syscall_recvfile, n);
371 result = sys_recvfile(fromfd, tofsp->fh->fd, offset, n);
372 END_PROFILE(syscall_recvfile);
373 return result;
376 /*********************************************************
377 For rename across filesystems Patch from Warren Birnbaum
378 <warrenb@hpcvscdp.cv.hp.com>
379 **********************************************************/
381 static int copy_reg(const char *source, const char *dest)
383 SMB_STRUCT_STAT source_stats;
384 int saved_errno;
385 int ifd = -1;
386 int ofd = -1;
388 if (sys_lstat (source, &source_stats) == -1)
389 return -1;
391 if (!S_ISREG (source_stats.st_mode))
392 return -1;
394 if((ifd = sys_open (source, O_RDONLY, 0)) < 0)
395 return -1;
397 if (unlink (dest) && errno != ENOENT)
398 return -1;
400 #ifdef O_NOFOLLOW
401 if((ofd = sys_open (dest, O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW, 0600)) < 0 )
402 #else
403 if((ofd = sys_open (dest, O_WRONLY | O_CREAT | O_TRUNC , 0600)) < 0 )
404 #endif
405 goto err;
407 if (transfer_file(ifd, ofd, (size_t)-1) == -1)
408 goto err;
411 * Try to preserve ownership. For non-root it might fail, but that's ok.
412 * But root probably wants to know, e.g. if NFS disallows it.
415 #ifdef HAVE_FCHOWN
416 if ((fchown(ofd, source_stats.st_uid, source_stats.st_gid) == -1) && (errno != EPERM))
417 #else
418 if ((chown(dest, source_stats.st_uid, source_stats.st_gid) == -1) && (errno != EPERM))
419 #endif
420 goto err;
423 * fchown turns off set[ug]id bits for non-root,
424 * so do the chmod last.
427 #if defined(HAVE_FCHMOD)
428 if (fchmod (ofd, source_stats.st_mode & 07777))
429 #else
430 if (chmod (dest, source_stats.st_mode & 07777))
431 #endif
432 goto err;
434 if (close (ifd) == -1)
435 goto err;
437 if (close (ofd) == -1)
438 return -1;
440 /* Try to copy the old file's modtime and access time. */
442 struct utimbuf tv;
444 tv.actime = source_stats.st_atime;
445 tv.modtime = source_stats.st_mtime;
446 utime(dest, &tv);
449 if (unlink (source) == -1)
450 return -1;
452 return 0;
454 err:
456 saved_errno = errno;
457 if (ifd != -1)
458 close(ifd);
459 if (ofd != -1)
460 close(ofd);
461 errno = saved_errno;
462 return -1;
465 static int vfswrap_rename(vfs_handle_struct *handle, const char *oldname, const char *newname)
467 int result;
469 START_PROFILE(syscall_rename);
470 result = rename(oldname, newname);
471 if ((result == -1) && (errno == EXDEV)) {
472 /* Rename across filesystems needed. */
473 result = copy_reg(oldname, newname);
476 END_PROFILE(syscall_rename);
477 return result;
480 static int vfswrap_fsync(vfs_handle_struct *handle, files_struct *fsp)
482 #ifdef HAVE_FSYNC
483 int result;
485 START_PROFILE(syscall_fsync);
486 result = fsync(fsp->fh->fd);
487 END_PROFILE(syscall_fsync);
488 return result;
489 #else
490 return 0;
491 #endif
494 static int vfswrap_stat(vfs_handle_struct *handle, const char *fname, SMB_STRUCT_STAT *sbuf)
496 int result;
498 START_PROFILE(syscall_stat);
499 result = sys_stat(fname, sbuf);
500 END_PROFILE(syscall_stat);
501 return result;
504 static int vfswrap_fstat(vfs_handle_struct *handle, files_struct *fsp, SMB_STRUCT_STAT *sbuf)
506 int result;
508 START_PROFILE(syscall_fstat);
509 result = sys_fstat(fsp->fh->fd, sbuf);
510 END_PROFILE(syscall_fstat);
511 return result;
514 int vfswrap_lstat(vfs_handle_struct *handle, const char *path, SMB_STRUCT_STAT *sbuf)
516 int result;
518 START_PROFILE(syscall_lstat);
519 result = sys_lstat(path, sbuf);
520 END_PROFILE(syscall_lstat);
521 return result;
524 static int vfswrap_unlink(vfs_handle_struct *handle, const char *path)
526 int result;
528 START_PROFILE(syscall_unlink);
529 result = unlink(path);
530 END_PROFILE(syscall_unlink);
531 return result;
534 static int vfswrap_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
536 int result;
538 START_PROFILE(syscall_chmod);
541 * We need to do this due to the fact that the default POSIX ACL
542 * chmod modifies the ACL *mask* for the group owner, not the
543 * group owner bits directly. JRA.
548 int saved_errno = errno; /* We might get ENOSYS */
549 if ((result = SMB_VFS_CHMOD_ACL(handle->conn, path, mode)) == 0) {
550 END_PROFILE(syscall_chmod);
551 return result;
553 /* Error - return the old errno. */
554 errno = saved_errno;
557 result = chmod(path, mode);
558 END_PROFILE(syscall_chmod);
559 return result;
562 static int vfswrap_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
564 int result;
566 START_PROFILE(syscall_fchmod);
569 * We need to do this due to the fact that the default POSIX ACL
570 * chmod modifies the ACL *mask* for the group owner, not the
571 * group owner bits directly. JRA.
575 int saved_errno = errno; /* We might get ENOSYS */
576 if ((result = SMB_VFS_FCHMOD_ACL(fsp, mode)) == 0) {
577 END_PROFILE(syscall_fchmod);
578 return result;
580 /* Error - return the old errno. */
581 errno = saved_errno;
584 #if defined(HAVE_FCHMOD)
585 result = fchmod(fsp->fh->fd, mode);
586 #else
587 result = -1;
588 errno = ENOSYS;
589 #endif
591 END_PROFILE(syscall_fchmod);
592 return result;
595 static int vfswrap_chown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
597 int result;
599 START_PROFILE(syscall_chown);
600 result = sys_chown(path, uid, gid);
601 END_PROFILE(syscall_chown);
602 return result;
605 static int vfswrap_fchown(vfs_handle_struct *handle, files_struct *fsp, uid_t uid, gid_t gid)
607 #ifdef HAVE_FCHOWN
608 int result;
610 START_PROFILE(syscall_fchown);
611 result = fchown(fsp->fh->fd, uid, gid);
612 END_PROFILE(syscall_fchown);
613 return result;
614 #else
615 errno = ENOSYS;
616 return -1;
617 #endif
620 static int vfswrap_lchown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
622 int result;
624 START_PROFILE(syscall_lchown);
625 result = sys_lchown(path, uid, gid);
626 END_PROFILE(syscall_lchown);
627 return result;
630 static int vfswrap_chdir(vfs_handle_struct *handle, const char *path)
632 int result;
634 START_PROFILE(syscall_chdir);
635 result = chdir(path);
636 END_PROFILE(syscall_chdir);
637 return result;
640 static char *vfswrap_getwd(vfs_handle_struct *handle, char *path)
642 char *result;
644 START_PROFILE(syscall_getwd);
645 result = sys_getwd(path);
646 END_PROFILE(syscall_getwd);
647 return result;
650 /*********************************************************************
651 nsec timestamp resolution call. Convert down to whatever the underlying
652 system will support.
653 **********************************************************************/
655 static int vfswrap_ntimes(vfs_handle_struct *handle, const char *path, const struct timespec ts[2])
657 int result;
659 START_PROFILE(syscall_ntimes);
660 #if defined(HAVE_UTIMES)
662 struct timeval tv[2];
663 tv[0] = convert_timespec_to_timeval(ts[0]);
664 tv[1] = convert_timespec_to_timeval(ts[1]);
665 result = utimes(path, tv);
667 #elif defined(HAVE_UTIME)
669 struct utimbuf times;
670 times.actime = convert_timespec_to_time_t(ts[0]);
671 times.modtime = convert_timespec_to_time_t(ts[1]);
672 result = utime(path, times);
674 #else
675 errno = ENOSYS;
676 result = -1;
677 #endif
678 END_PROFILE(syscall_ntimes);
679 return result;
682 /*********************************************************************
683 A version of ftruncate that will write the space on disk if strict
684 allocate is set.
685 **********************************************************************/
687 static int strict_allocate_ftruncate(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T len)
689 SMB_STRUCT_STAT st;
690 SMB_OFF_T currpos = SMB_VFS_LSEEK(fsp, 0, SEEK_CUR);
691 unsigned char zero_space[4096];
692 SMB_OFF_T space_to_write;
694 if (currpos == -1)
695 return -1;
697 if (SMB_VFS_FSTAT(fsp, &st) == -1)
698 return -1;
700 space_to_write = len - st.st_size;
702 #ifdef S_ISFIFO
703 if (S_ISFIFO(st.st_mode))
704 return 0;
705 #endif
707 if (st.st_size == len)
708 return 0;
710 /* Shrink - just ftruncate. */
711 if (st.st_size > len)
712 return sys_ftruncate(fsp->fh->fd, len);
714 /* Write out the real space on disk. */
715 if (SMB_VFS_LSEEK(fsp, st.st_size, SEEK_SET) != st.st_size)
716 return -1;
718 space_to_write = len - st.st_size;
720 memset(zero_space, '\0', sizeof(zero_space));
721 while ( space_to_write > 0) {
722 SMB_OFF_T retlen;
723 SMB_OFF_T current_len_to_write = MIN(sizeof(zero_space),space_to_write);
725 retlen = SMB_VFS_WRITE(fsp,(char *)zero_space,current_len_to_write);
726 if (retlen <= 0)
727 return -1;
729 space_to_write -= retlen;
732 /* Seek to where we were */
733 if (SMB_VFS_LSEEK(fsp, currpos, SEEK_SET) != currpos)
734 return -1;
736 return 0;
739 static int vfswrap_ftruncate(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T len)
741 int result = -1;
742 SMB_STRUCT_STAT st;
743 char c = 0;
744 SMB_OFF_T currpos;
746 START_PROFILE(syscall_ftruncate);
748 if (lp_strict_allocate(SNUM(fsp->conn))) {
749 result = strict_allocate_ftruncate(handle, fsp, len);
750 END_PROFILE(syscall_ftruncate);
751 return result;
754 /* we used to just check HAVE_FTRUNCATE_EXTEND and only use
755 sys_ftruncate if the system supports it. Then I discovered that
756 you can have some filesystems that support ftruncate
757 expansion and some that don't! On Linux fat can't do
758 ftruncate extend but ext2 can. */
760 result = sys_ftruncate(fsp->fh->fd, len);
761 if (result == 0)
762 goto done;
764 /* According to W. R. Stevens advanced UNIX prog. Pure 4.3 BSD cannot
765 extend a file with ftruncate. Provide alternate implementation
766 for this */
767 currpos = SMB_VFS_LSEEK(fsp, 0, SEEK_CUR);
768 if (currpos == -1) {
769 goto done;
772 /* Do an fstat to see if the file is longer than the requested
773 size in which case the ftruncate above should have
774 succeeded or shorter, in which case seek to len - 1 and
775 write 1 byte of zero */
776 if (SMB_VFS_FSTAT(fsp, &st) == -1) {
777 goto done;
780 #ifdef S_ISFIFO
781 if (S_ISFIFO(st.st_mode)) {
782 result = 0;
783 goto done;
785 #endif
787 if (st.st_size == len) {
788 result = 0;
789 goto done;
792 if (st.st_size > len) {
793 /* the sys_ftruncate should have worked */
794 goto done;
797 if (SMB_VFS_LSEEK(fsp, len-1, SEEK_SET) != len -1)
798 goto done;
800 if (SMB_VFS_WRITE(fsp, &c, 1)!=1)
801 goto done;
803 /* Seek to where we were */
804 if (SMB_VFS_LSEEK(fsp, currpos, SEEK_SET) != currpos)
805 goto done;
806 result = 0;
808 done:
810 END_PROFILE(syscall_ftruncate);
811 return result;
814 static bool vfswrap_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
816 bool result;
818 START_PROFILE(syscall_fcntl_lock);
819 result = fcntl_lock(fsp->fh->fd, op, offset, count, type);
820 END_PROFILE(syscall_fcntl_lock);
821 return result;
824 static int vfswrap_kernel_flock(vfs_handle_struct *handle, files_struct *fsp,
825 uint32 share_mode)
827 START_PROFILE(syscall_kernel_flock);
828 kernel_flock(fsp->fh->fd, share_mode);
829 END_PROFILE(syscall_kernel_flock);
830 return 0;
833 static bool vfswrap_getlock(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
835 bool result;
837 START_PROFILE(syscall_fcntl_getlock);
838 result = fcntl_getlock(fsp->fh->fd, poffset, pcount, ptype, ppid);
839 END_PROFILE(syscall_fcntl_getlock);
840 return result;
843 static int vfswrap_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
844 int leasetype)
846 int result = -1;
848 START_PROFILE(syscall_linux_setlease);
850 #ifdef HAVE_KERNEL_OPLOCKS_LINUX
851 /* first set the signal handler */
852 if(linux_set_lease_sighandler(fsp->fh->fd) == -1) {
853 return -1;
856 result = linux_setlease(fsp->fh->fd, leasetype);
857 #else
858 errno = ENOSYS;
859 #endif
860 END_PROFILE(syscall_linux_setlease);
861 return result;
864 static int vfswrap_symlink(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
866 int result;
868 START_PROFILE(syscall_symlink);
869 result = sys_symlink(oldpath, newpath);
870 END_PROFILE(syscall_symlink);
871 return result;
874 static int vfswrap_readlink(vfs_handle_struct *handle, const char *path, char *buf, size_t bufsiz)
876 int result;
878 START_PROFILE(syscall_readlink);
879 result = sys_readlink(path, buf, bufsiz);
880 END_PROFILE(syscall_readlink);
881 return result;
884 static int vfswrap_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
886 int result;
888 START_PROFILE(syscall_link);
889 result = sys_link(oldpath, newpath);
890 END_PROFILE(syscall_link);
891 return result;
894 static int vfswrap_mknod(vfs_handle_struct *handle, const char *pathname, mode_t mode, SMB_DEV_T dev)
896 int result;
898 START_PROFILE(syscall_mknod);
899 result = sys_mknod(pathname, mode, dev);
900 END_PROFILE(syscall_mknod);
901 return result;
904 static char *vfswrap_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path)
906 char *result;
908 START_PROFILE(syscall_realpath);
909 result = sys_realpath(path, resolved_path);
910 END_PROFILE(syscall_realpath);
911 return result;
914 static NTSTATUS vfswrap_notify_watch(vfs_handle_struct *vfs_handle,
915 struct sys_notify_context *ctx,
916 struct notify_entry *e,
917 void (*callback)(struct sys_notify_context *ctx,
918 void *private_data,
919 struct notify_event *ev),
920 void *private_data, void *handle)
923 * So far inotify is the only supported default notify mechanism. If
924 * another platform like the the BSD's or a proprietary Unix comes
925 * along and wants another default, we can play the same trick we
926 * played with Posix ACLs.
928 * Until that is the case, hard-code inotify here.
930 #ifdef HAVE_INOTIFY
931 if (lp_kernel_change_notify(ctx->conn->params)) {
932 return inotify_watch(ctx, e, callback, private_data, handle);
934 #endif
936 * Do nothing, leave everything to notify_internal.c
938 return NT_STATUS_OK;
941 static int vfswrap_chflags(vfs_handle_struct *handle, const char *path, int flags)
943 #ifdef HAVE_CHFLAGS
944 return chflags(path, flags);
945 #else
946 errno = ENOSYS;
947 return -1;
948 #endif
951 static struct file_id vfswrap_file_id_create(struct vfs_handle_struct *handle, SMB_DEV_T dev, SMB_INO_T inode)
953 return file_id_create_dev(dev, inode);
956 static NTSTATUS vfswrap_streaminfo(vfs_handle_struct *handle,
957 struct files_struct *fsp,
958 const char *fname,
959 TALLOC_CTX *mem_ctx,
960 unsigned int *pnum_streams,
961 struct stream_struct **pstreams)
963 SMB_STRUCT_STAT sbuf;
964 unsigned int num_streams = 0;
965 struct stream_struct *streams = NULL;
966 int ret;
968 if ((fsp != NULL) && (fsp->is_directory)) {
970 * No default streams on directories
972 goto done;
975 if ((fsp != NULL) && (fsp->fh->fd != -1)) {
976 ret = SMB_VFS_FSTAT(fsp, &sbuf);
978 else {
979 ret = SMB_VFS_STAT(handle->conn, fname, &sbuf);
982 if (ret == -1) {
983 return map_nt_error_from_unix(errno);
986 if (S_ISDIR(sbuf.st_mode)) {
987 goto done;
990 streams = talloc(mem_ctx, struct stream_struct);
992 if (streams == NULL) {
993 return NT_STATUS_NO_MEMORY;
996 streams->size = sbuf.st_size;
997 streams->alloc_size = get_allocation_size(handle->conn, fsp, &sbuf);
999 streams->name = talloc_strdup(streams, "::$DATA");
1000 if (streams->name == NULL) {
1001 TALLOC_FREE(streams);
1002 return NT_STATUS_NO_MEMORY;
1005 num_streams = 1;
1006 done:
1007 *pnum_streams = num_streams;
1008 *pstreams = streams;
1009 return NT_STATUS_OK;
1012 static NTSTATUS vfswrap_fget_nt_acl(vfs_handle_struct *handle,
1013 files_struct *fsp,
1014 uint32 security_info, SEC_DESC **ppdesc)
1016 NTSTATUS result;
1018 START_PROFILE(fget_nt_acl);
1019 result = posix_fget_nt_acl(fsp, security_info, ppdesc);
1020 END_PROFILE(fget_nt_acl);
1021 return result;
1024 static NTSTATUS vfswrap_get_nt_acl(vfs_handle_struct *handle,
1025 const char *name,
1026 uint32 security_info, SEC_DESC **ppdesc)
1028 NTSTATUS result;
1030 START_PROFILE(get_nt_acl);
1031 result = posix_get_nt_acl(handle->conn, name, security_info, ppdesc);
1032 END_PROFILE(get_nt_acl);
1033 return result;
1036 static NTSTATUS vfswrap_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, SEC_DESC *psd)
1038 NTSTATUS result;
1040 START_PROFILE(fset_nt_acl);
1041 result = set_nt_acl(fsp, security_info_sent, psd);
1042 END_PROFILE(fset_nt_acl);
1043 return result;
1046 static NTSTATUS vfswrap_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp, const char *name, uint32 security_info_sent, SEC_DESC *psd)
1048 NTSTATUS result;
1050 START_PROFILE(set_nt_acl);
1051 result = set_nt_acl(fsp, security_info_sent, psd);
1052 END_PROFILE(set_nt_acl);
1053 return result;
1056 static int vfswrap_chmod_acl(vfs_handle_struct *handle, const char *name, mode_t mode)
1058 #ifdef HAVE_NO_ACL
1059 errno = ENOSYS;
1060 return -1;
1061 #else
1062 int result;
1064 START_PROFILE(chmod_acl);
1065 result = chmod_acl(handle->conn, name, mode);
1066 END_PROFILE(chmod_acl);
1067 return result;
1068 #endif
1071 static int vfswrap_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
1073 #ifdef HAVE_NO_ACL
1074 errno = ENOSYS;
1075 return -1;
1076 #else
1077 int result;
1079 START_PROFILE(fchmod_acl);
1080 result = fchmod_acl(fsp, mode);
1081 END_PROFILE(fchmod_acl);
1082 return result;
1083 #endif
1086 static int vfswrap_sys_acl_get_entry(vfs_handle_struct *handle, SMB_ACL_T theacl, int entry_id, SMB_ACL_ENTRY_T *entry_p)
1088 return sys_acl_get_entry(theacl, entry_id, entry_p);
1091 static int vfswrap_sys_acl_get_tag_type(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *tag_type_p)
1093 return sys_acl_get_tag_type(entry_d, tag_type_p);
1096 static int vfswrap_sys_acl_get_permset(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p)
1098 return sys_acl_get_permset(entry_d, permset_p);
1101 static void * vfswrap_sys_acl_get_qualifier(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry_d)
1103 return sys_acl_get_qualifier(entry_d);
1106 static SMB_ACL_T vfswrap_sys_acl_get_file(vfs_handle_struct *handle, const char *path_p, SMB_ACL_TYPE_T type)
1108 return sys_acl_get_file(handle, path_p, type);
1111 static SMB_ACL_T vfswrap_sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp)
1113 return sys_acl_get_fd(handle, fsp);
1116 static int vfswrap_sys_acl_clear_perms(vfs_handle_struct *handle, SMB_ACL_PERMSET_T permset)
1118 return sys_acl_clear_perms(permset);
1121 static int vfswrap_sys_acl_add_perm(vfs_handle_struct *handle, SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
1123 return sys_acl_add_perm(permset, perm);
1126 static char * vfswrap_sys_acl_to_text(vfs_handle_struct *handle, SMB_ACL_T theacl, ssize_t *plen)
1128 return sys_acl_to_text(theacl, plen);
1131 static SMB_ACL_T vfswrap_sys_acl_init(vfs_handle_struct *handle, int count)
1133 return sys_acl_init(count);
1136 static int vfswrap_sys_acl_create_entry(vfs_handle_struct *handle, SMB_ACL_T *pacl, SMB_ACL_ENTRY_T *pentry)
1138 return sys_acl_create_entry(pacl, pentry);
1141 static int vfswrap_sys_acl_set_tag_type(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry, SMB_ACL_TAG_T tagtype)
1143 return sys_acl_set_tag_type(entry, tagtype);
1146 static int vfswrap_sys_acl_set_qualifier(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry, void *qual)
1148 return sys_acl_set_qualifier(entry, qual);
1151 static int vfswrap_sys_acl_set_permset(vfs_handle_struct *handle, SMB_ACL_ENTRY_T entry, SMB_ACL_PERMSET_T permset)
1153 return sys_acl_set_permset(entry, permset);
1156 static int vfswrap_sys_acl_valid(vfs_handle_struct *handle, SMB_ACL_T theacl )
1158 return sys_acl_valid(theacl );
1161 static int vfswrap_sys_acl_set_file(vfs_handle_struct *handle, const char *name, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
1163 return sys_acl_set_file(handle, name, acltype, theacl);
1166 static int vfswrap_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, SMB_ACL_T theacl)
1168 return sys_acl_set_fd(handle, fsp, theacl);
1171 static int vfswrap_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
1173 return sys_acl_delete_def_file(handle, path);
1176 static int vfswrap_sys_acl_get_perm(vfs_handle_struct *handle, SMB_ACL_PERMSET_T permset, SMB_ACL_PERM_T perm)
1178 return sys_acl_get_perm(permset, perm);
1181 static int vfswrap_sys_acl_free_text(vfs_handle_struct *handle, char *text)
1183 return sys_acl_free_text(text);
1186 static int vfswrap_sys_acl_free_acl(vfs_handle_struct *handle, SMB_ACL_T posix_acl)
1188 return sys_acl_free_acl(posix_acl);
1191 static int vfswrap_sys_acl_free_qualifier(vfs_handle_struct *handle, void *qualifier, SMB_ACL_TAG_T tagtype)
1193 return sys_acl_free_qualifier(qualifier, tagtype);
1196 /****************************************************************
1197 Extended attribute operations.
1198 *****************************************************************/
1200 static ssize_t vfswrap_getxattr(struct vfs_handle_struct *handle,const char *path, const char *name, void *value, size_t size)
1202 return sys_getxattr(path, name, value, size);
1205 static ssize_t vfswrap_lgetxattr(struct vfs_handle_struct *handle,const char *path, const char *name, void *value, size_t size)
1207 return sys_lgetxattr(path, name, value, size);
1210 static ssize_t vfswrap_fgetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, void *value, size_t size)
1212 return sys_fgetxattr(fsp->fh->fd, name, value, size);
1215 static ssize_t vfswrap_listxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size)
1217 return sys_listxattr(path, list, size);
1220 ssize_t vfswrap_llistxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size)
1222 return sys_llistxattr(path, list, size);
1225 ssize_t vfswrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size)
1227 return sys_flistxattr(fsp->fh->fd, list, size);
1230 static int vfswrap_removexattr(struct vfs_handle_struct *handle, const char *path, const char *name)
1232 return sys_removexattr(path, name);
1235 static int vfswrap_lremovexattr(struct vfs_handle_struct *handle, const char *path, const char *name)
1237 return sys_lremovexattr(path, name);
1240 static int vfswrap_fremovexattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name)
1242 return sys_fremovexattr(fsp->fh->fd, name);
1245 static int vfswrap_setxattr(struct vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
1247 return sys_setxattr(path, name, value, size, flags);
1250 static int vfswrap_lsetxattr(struct vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
1252 return sys_lsetxattr(path, name, value, size, flags);
1255 static int vfswrap_fsetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags)
1257 return sys_fsetxattr(fsp->fh->fd, name, value, size, flags);
1260 static int vfswrap_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1262 return sys_aio_read(aiocb);
1265 static int vfswrap_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1267 return sys_aio_write(aiocb);
1270 static ssize_t vfswrap_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1272 return sys_aio_return(aiocb);
1275 static int vfswrap_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1277 return sys_aio_cancel(fsp->fh->fd, aiocb);
1280 static int vfswrap_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
1282 return sys_aio_error(aiocb);
1285 static int vfswrap_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
1287 return sys_aio_fsync(op, aiocb);
1290 static int vfswrap_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *timeout)
1292 return sys_aio_suspend(aiocb, n, timeout);
1295 static bool vfswrap_aio_force(struct vfs_handle_struct *handle, struct files_struct *fsp)
1297 return false;
1300 static bool vfswrap_is_offline(struct vfs_handle_struct *handle, const char *path, SMB_STRUCT_STAT *sbuf)
1302 if (ISDOT(path) || ISDOTDOT(path)) {
1303 return false;
1306 if (!lp_dmapi_support(SNUM(handle->conn)) || !dmapi_have_session()) {
1307 #if defined(ENOTSUP)
1308 errno = ENOTSUP;
1309 #endif
1310 return false;
1313 return (dmapi_file_flags(path) & FILE_ATTRIBUTE_OFFLINE) != 0;
1316 static int vfswrap_set_offline(struct vfs_handle_struct *handle, const char *path)
1318 /* We don't know how to set offline bit by default, needs to be overriden in the vfs modules */
1319 #if defined(ENOTSUP)
1320 errno = ENOTSUP;
1321 #endif
1322 return -1;
1325 static vfs_op_tuple vfs_default_ops[] = {
1327 /* Disk operations */
1329 {SMB_VFS_OP(vfswrap_connect), SMB_VFS_OP_CONNECT,
1330 SMB_VFS_LAYER_OPAQUE},
1331 {SMB_VFS_OP(vfswrap_disconnect), SMB_VFS_OP_DISCONNECT,
1332 SMB_VFS_LAYER_OPAQUE},
1333 {SMB_VFS_OP(vfswrap_disk_free), SMB_VFS_OP_DISK_FREE,
1334 SMB_VFS_LAYER_OPAQUE},
1335 {SMB_VFS_OP(vfswrap_get_quota), SMB_VFS_OP_GET_QUOTA,
1336 SMB_VFS_LAYER_OPAQUE},
1337 {SMB_VFS_OP(vfswrap_set_quota), SMB_VFS_OP_SET_QUOTA,
1338 SMB_VFS_LAYER_OPAQUE},
1339 {SMB_VFS_OP(vfswrap_get_shadow_copy_data), SMB_VFS_OP_GET_SHADOW_COPY_DATA,
1340 SMB_VFS_LAYER_OPAQUE},
1341 {SMB_VFS_OP(vfswrap_statvfs), SMB_VFS_OP_STATVFS,
1342 SMB_VFS_LAYER_OPAQUE},
1343 {SMB_VFS_OP(vfswrap_fs_capabilities), SMB_VFS_OP_FS_CAPABILITIES,
1344 SMB_VFS_LAYER_OPAQUE},
1346 /* Directory operations */
1348 {SMB_VFS_OP(vfswrap_opendir), SMB_VFS_OP_OPENDIR,
1349 SMB_VFS_LAYER_OPAQUE},
1350 {SMB_VFS_OP(vfswrap_readdir), SMB_VFS_OP_READDIR,
1351 SMB_VFS_LAYER_OPAQUE},
1352 {SMB_VFS_OP(vfswrap_seekdir), SMB_VFS_OP_SEEKDIR,
1353 SMB_VFS_LAYER_OPAQUE},
1354 {SMB_VFS_OP(vfswrap_telldir), SMB_VFS_OP_TELLDIR,
1355 SMB_VFS_LAYER_OPAQUE},
1356 {SMB_VFS_OP(vfswrap_rewinddir), SMB_VFS_OP_REWINDDIR,
1357 SMB_VFS_LAYER_OPAQUE},
1358 {SMB_VFS_OP(vfswrap_mkdir), SMB_VFS_OP_MKDIR,
1359 SMB_VFS_LAYER_OPAQUE},
1360 {SMB_VFS_OP(vfswrap_rmdir), SMB_VFS_OP_RMDIR,
1361 SMB_VFS_LAYER_OPAQUE},
1362 {SMB_VFS_OP(vfswrap_closedir), SMB_VFS_OP_CLOSEDIR,
1363 SMB_VFS_LAYER_OPAQUE},
1365 /* File operations */
1367 {SMB_VFS_OP(vfswrap_open), SMB_VFS_OP_OPEN,
1368 SMB_VFS_LAYER_OPAQUE},
1369 {SMB_VFS_OP(vfswrap_close), SMB_VFS_OP_CLOSE,
1370 SMB_VFS_LAYER_OPAQUE},
1371 {SMB_VFS_OP(vfswrap_read), SMB_VFS_OP_READ,
1372 SMB_VFS_LAYER_OPAQUE},
1373 {SMB_VFS_OP(vfswrap_pread), SMB_VFS_OP_PREAD,
1374 SMB_VFS_LAYER_OPAQUE},
1375 {SMB_VFS_OP(vfswrap_write), SMB_VFS_OP_WRITE,
1376 SMB_VFS_LAYER_OPAQUE},
1377 {SMB_VFS_OP(vfswrap_pwrite), SMB_VFS_OP_PWRITE,
1378 SMB_VFS_LAYER_OPAQUE},
1379 {SMB_VFS_OP(vfswrap_lseek), SMB_VFS_OP_LSEEK,
1380 SMB_VFS_LAYER_OPAQUE},
1381 {SMB_VFS_OP(vfswrap_sendfile), SMB_VFS_OP_SENDFILE,
1382 SMB_VFS_LAYER_OPAQUE},
1383 {SMB_VFS_OP(vfswrap_recvfile), SMB_VFS_OP_RECVFILE,
1384 SMB_VFS_LAYER_OPAQUE},
1385 {SMB_VFS_OP(vfswrap_rename), SMB_VFS_OP_RENAME,
1386 SMB_VFS_LAYER_OPAQUE},
1387 {SMB_VFS_OP(vfswrap_fsync), SMB_VFS_OP_FSYNC,
1388 SMB_VFS_LAYER_OPAQUE},
1389 {SMB_VFS_OP(vfswrap_stat), SMB_VFS_OP_STAT,
1390 SMB_VFS_LAYER_OPAQUE},
1391 {SMB_VFS_OP(vfswrap_fstat), SMB_VFS_OP_FSTAT,
1392 SMB_VFS_LAYER_OPAQUE},
1393 {SMB_VFS_OP(vfswrap_lstat), SMB_VFS_OP_LSTAT,
1394 SMB_VFS_LAYER_OPAQUE},
1395 {SMB_VFS_OP(vfswrap_unlink), SMB_VFS_OP_UNLINK,
1396 SMB_VFS_LAYER_OPAQUE},
1397 {SMB_VFS_OP(vfswrap_chmod), SMB_VFS_OP_CHMOD,
1398 SMB_VFS_LAYER_OPAQUE},
1399 {SMB_VFS_OP(vfswrap_fchmod), SMB_VFS_OP_FCHMOD,
1400 SMB_VFS_LAYER_OPAQUE},
1401 {SMB_VFS_OP(vfswrap_chown), SMB_VFS_OP_CHOWN,
1402 SMB_VFS_LAYER_OPAQUE},
1403 {SMB_VFS_OP(vfswrap_fchown), SMB_VFS_OP_FCHOWN,
1404 SMB_VFS_LAYER_OPAQUE},
1405 {SMB_VFS_OP(vfswrap_lchown), SMB_VFS_OP_LCHOWN,
1406 SMB_VFS_LAYER_OPAQUE},
1407 {SMB_VFS_OP(vfswrap_chdir), SMB_VFS_OP_CHDIR,
1408 SMB_VFS_LAYER_OPAQUE},
1409 {SMB_VFS_OP(vfswrap_getwd), SMB_VFS_OP_GETWD,
1410 SMB_VFS_LAYER_OPAQUE},
1411 {SMB_VFS_OP(vfswrap_ntimes), SMB_VFS_OP_NTIMES,
1412 SMB_VFS_LAYER_OPAQUE},
1413 {SMB_VFS_OP(vfswrap_ftruncate), SMB_VFS_OP_FTRUNCATE,
1414 SMB_VFS_LAYER_OPAQUE},
1415 {SMB_VFS_OP(vfswrap_lock), SMB_VFS_OP_LOCK,
1416 SMB_VFS_LAYER_OPAQUE},
1417 {SMB_VFS_OP(vfswrap_kernel_flock), SMB_VFS_OP_KERNEL_FLOCK,
1418 SMB_VFS_LAYER_OPAQUE},
1419 {SMB_VFS_OP(vfswrap_linux_setlease), SMB_VFS_OP_LINUX_SETLEASE,
1420 SMB_VFS_LAYER_OPAQUE},
1421 {SMB_VFS_OP(vfswrap_getlock), SMB_VFS_OP_GETLOCK,
1422 SMB_VFS_LAYER_OPAQUE},
1423 {SMB_VFS_OP(vfswrap_symlink), SMB_VFS_OP_SYMLINK,
1424 SMB_VFS_LAYER_OPAQUE},
1425 {SMB_VFS_OP(vfswrap_readlink), SMB_VFS_OP_READLINK,
1426 SMB_VFS_LAYER_OPAQUE},
1427 {SMB_VFS_OP(vfswrap_link), SMB_VFS_OP_LINK,
1428 SMB_VFS_LAYER_OPAQUE},
1429 {SMB_VFS_OP(vfswrap_mknod), SMB_VFS_OP_MKNOD,
1430 SMB_VFS_LAYER_OPAQUE},
1431 {SMB_VFS_OP(vfswrap_realpath), SMB_VFS_OP_REALPATH,
1432 SMB_VFS_LAYER_OPAQUE},
1433 {SMB_VFS_OP(vfswrap_notify_watch), SMB_VFS_OP_NOTIFY_WATCH,
1434 SMB_VFS_LAYER_OPAQUE},
1435 {SMB_VFS_OP(vfswrap_chflags), SMB_VFS_OP_CHFLAGS,
1436 SMB_VFS_LAYER_OPAQUE},
1437 {SMB_VFS_OP(vfswrap_file_id_create), SMB_VFS_OP_FILE_ID_CREATE,
1438 SMB_VFS_LAYER_OPAQUE},
1439 {SMB_VFS_OP(vfswrap_streaminfo), SMB_VFS_OP_STREAMINFO,
1440 SMB_VFS_LAYER_OPAQUE},
1442 /* NT ACL operations. */
1444 {SMB_VFS_OP(vfswrap_fget_nt_acl), SMB_VFS_OP_FGET_NT_ACL,
1445 SMB_VFS_LAYER_OPAQUE},
1446 {SMB_VFS_OP(vfswrap_get_nt_acl), SMB_VFS_OP_GET_NT_ACL,
1447 SMB_VFS_LAYER_OPAQUE},
1448 {SMB_VFS_OP(vfswrap_fset_nt_acl), SMB_VFS_OP_FSET_NT_ACL,
1449 SMB_VFS_LAYER_OPAQUE},
1450 {SMB_VFS_OP(vfswrap_set_nt_acl), SMB_VFS_OP_SET_NT_ACL,
1451 SMB_VFS_LAYER_OPAQUE},
1453 /* POSIX ACL operations. */
1455 {SMB_VFS_OP(vfswrap_chmod_acl), SMB_VFS_OP_CHMOD_ACL,
1456 SMB_VFS_LAYER_OPAQUE},
1457 {SMB_VFS_OP(vfswrap_fchmod_acl), SMB_VFS_OP_FCHMOD_ACL,
1458 SMB_VFS_LAYER_OPAQUE},
1459 {SMB_VFS_OP(vfswrap_sys_acl_get_entry), SMB_VFS_OP_SYS_ACL_GET_ENTRY,
1460 SMB_VFS_LAYER_OPAQUE},
1461 {SMB_VFS_OP(vfswrap_sys_acl_get_tag_type), SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
1462 SMB_VFS_LAYER_OPAQUE},
1463 {SMB_VFS_OP(vfswrap_sys_acl_get_permset), SMB_VFS_OP_SYS_ACL_GET_PERMSET,
1464 SMB_VFS_LAYER_OPAQUE},
1465 {SMB_VFS_OP(vfswrap_sys_acl_get_qualifier), SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
1466 SMB_VFS_LAYER_OPAQUE},
1467 {SMB_VFS_OP(vfswrap_sys_acl_get_file), SMB_VFS_OP_SYS_ACL_GET_FILE,
1468 SMB_VFS_LAYER_OPAQUE},
1469 {SMB_VFS_OP(vfswrap_sys_acl_get_fd), SMB_VFS_OP_SYS_ACL_GET_FD,
1470 SMB_VFS_LAYER_OPAQUE},
1471 {SMB_VFS_OP(vfswrap_sys_acl_clear_perms), SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
1472 SMB_VFS_LAYER_OPAQUE},
1473 {SMB_VFS_OP(vfswrap_sys_acl_add_perm), SMB_VFS_OP_SYS_ACL_ADD_PERM,
1474 SMB_VFS_LAYER_OPAQUE},
1475 {SMB_VFS_OP(vfswrap_sys_acl_to_text), SMB_VFS_OP_SYS_ACL_TO_TEXT,
1476 SMB_VFS_LAYER_OPAQUE},
1477 {SMB_VFS_OP(vfswrap_sys_acl_init), SMB_VFS_OP_SYS_ACL_INIT,
1478 SMB_VFS_LAYER_OPAQUE},
1479 {SMB_VFS_OP(vfswrap_sys_acl_create_entry), SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
1480 SMB_VFS_LAYER_OPAQUE},
1481 {SMB_VFS_OP(vfswrap_sys_acl_set_tag_type), SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
1482 SMB_VFS_LAYER_OPAQUE},
1483 {SMB_VFS_OP(vfswrap_sys_acl_set_qualifier), SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
1484 SMB_VFS_LAYER_OPAQUE},
1485 {SMB_VFS_OP(vfswrap_sys_acl_set_permset), SMB_VFS_OP_SYS_ACL_SET_PERMSET,
1486 SMB_VFS_LAYER_OPAQUE},
1487 {SMB_VFS_OP(vfswrap_sys_acl_valid), SMB_VFS_OP_SYS_ACL_VALID,
1488 SMB_VFS_LAYER_OPAQUE},
1489 {SMB_VFS_OP(vfswrap_sys_acl_set_file), SMB_VFS_OP_SYS_ACL_SET_FILE,
1490 SMB_VFS_LAYER_OPAQUE},
1491 {SMB_VFS_OP(vfswrap_sys_acl_set_fd), SMB_VFS_OP_SYS_ACL_SET_FD,
1492 SMB_VFS_LAYER_OPAQUE},
1493 {SMB_VFS_OP(vfswrap_sys_acl_delete_def_file), SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
1494 SMB_VFS_LAYER_OPAQUE},
1495 {SMB_VFS_OP(vfswrap_sys_acl_get_perm), SMB_VFS_OP_SYS_ACL_GET_PERM,
1496 SMB_VFS_LAYER_OPAQUE},
1497 {SMB_VFS_OP(vfswrap_sys_acl_free_text), SMB_VFS_OP_SYS_ACL_FREE_TEXT,
1498 SMB_VFS_LAYER_OPAQUE},
1499 {SMB_VFS_OP(vfswrap_sys_acl_free_acl), SMB_VFS_OP_SYS_ACL_FREE_ACL,
1500 SMB_VFS_LAYER_OPAQUE},
1501 {SMB_VFS_OP(vfswrap_sys_acl_free_qualifier), SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
1502 SMB_VFS_LAYER_OPAQUE},
1504 /* EA operations. */
1506 {SMB_VFS_OP(vfswrap_getxattr), SMB_VFS_OP_GETXATTR,
1507 SMB_VFS_LAYER_OPAQUE},
1508 {SMB_VFS_OP(vfswrap_lgetxattr), SMB_VFS_OP_LGETXATTR,
1509 SMB_VFS_LAYER_OPAQUE},
1510 {SMB_VFS_OP(vfswrap_fgetxattr), SMB_VFS_OP_FGETXATTR,
1511 SMB_VFS_LAYER_OPAQUE},
1512 {SMB_VFS_OP(vfswrap_listxattr), SMB_VFS_OP_LISTXATTR,
1513 SMB_VFS_LAYER_OPAQUE},
1514 {SMB_VFS_OP(vfswrap_llistxattr), SMB_VFS_OP_LLISTXATTR,
1515 SMB_VFS_LAYER_OPAQUE},
1516 {SMB_VFS_OP(vfswrap_flistxattr), SMB_VFS_OP_FLISTXATTR,
1517 SMB_VFS_LAYER_OPAQUE},
1518 {SMB_VFS_OP(vfswrap_removexattr), SMB_VFS_OP_REMOVEXATTR,
1519 SMB_VFS_LAYER_OPAQUE},
1520 {SMB_VFS_OP(vfswrap_lremovexattr), SMB_VFS_OP_LREMOVEXATTR,
1521 SMB_VFS_LAYER_OPAQUE},
1522 {SMB_VFS_OP(vfswrap_fremovexattr), SMB_VFS_OP_FREMOVEXATTR,
1523 SMB_VFS_LAYER_OPAQUE},
1524 {SMB_VFS_OP(vfswrap_setxattr), SMB_VFS_OP_SETXATTR,
1525 SMB_VFS_LAYER_OPAQUE},
1526 {SMB_VFS_OP(vfswrap_lsetxattr), SMB_VFS_OP_LSETXATTR,
1527 SMB_VFS_LAYER_OPAQUE},
1528 {SMB_VFS_OP(vfswrap_fsetxattr), SMB_VFS_OP_FSETXATTR,
1529 SMB_VFS_LAYER_OPAQUE},
1531 {SMB_VFS_OP(vfswrap_aio_read), SMB_VFS_OP_AIO_READ,
1532 SMB_VFS_LAYER_OPAQUE},
1533 {SMB_VFS_OP(vfswrap_aio_write), SMB_VFS_OP_AIO_WRITE,
1534 SMB_VFS_LAYER_OPAQUE},
1535 {SMB_VFS_OP(vfswrap_aio_return), SMB_VFS_OP_AIO_RETURN,
1536 SMB_VFS_LAYER_OPAQUE},
1537 {SMB_VFS_OP(vfswrap_aio_cancel), SMB_VFS_OP_AIO_CANCEL,
1538 SMB_VFS_LAYER_OPAQUE},
1539 {SMB_VFS_OP(vfswrap_aio_error), SMB_VFS_OP_AIO_ERROR,
1540 SMB_VFS_LAYER_OPAQUE},
1541 {SMB_VFS_OP(vfswrap_aio_fsync), SMB_VFS_OP_AIO_FSYNC,
1542 SMB_VFS_LAYER_OPAQUE},
1543 {SMB_VFS_OP(vfswrap_aio_suspend),SMB_VFS_OP_AIO_SUSPEND,
1544 SMB_VFS_LAYER_OPAQUE},
1546 {SMB_VFS_OP(vfswrap_aio_force), SMB_VFS_OP_AIO_FORCE,
1547 SMB_VFS_LAYER_OPAQUE},
1549 {SMB_VFS_OP(vfswrap_is_offline),SMB_VFS_OP_IS_OFFLINE,
1550 SMB_VFS_LAYER_OPAQUE},
1551 {SMB_VFS_OP(vfswrap_set_offline),SMB_VFS_OP_SET_OFFLINE,
1552 SMB_VFS_LAYER_OPAQUE},
1554 /* Finish VFS operations definition */
1556 {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP,
1557 SMB_VFS_LAYER_NOOP}
1560 NTSTATUS vfs_default_init(void);
1561 NTSTATUS vfs_default_init(void)
1563 unsigned int needed = SMB_VFS_OP_LAST + 1; /* convert from index to count */
1565 if (ARRAY_SIZE(vfs_default_ops) != needed) {
1566 DEBUG(0, ("%s: %u ops registered, but %u ops are required\n",
1567 DEFAULT_VFS_MODULE_NAME, (unsigned int)ARRAY_SIZE(vfs_default_ops), needed));
1568 smb_panic("operation(s) missing from default VFS module");
1571 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
1572 DEFAULT_VFS_MODULE_NAME, vfs_default_ops);