From: Christof Schmitt Date: Thu, 26 Oct 2023 22:51:02 +0000 (-0700) Subject: vfs_gpfs: Implement CAP_DAC_OVERRIDE for fstatat X-Git-Tag: samba-4.18.9~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=619eb761344c8473042136555c7d85a76cd84b05;p=thirdparty%2Fsamba.git vfs_gpfs: Implement CAP_DAC_OVERRIDE for fstatat BUG: https://bugzilla.samba.org/show_bug.cgi?id=15507 Signed-off-by: Christof Schmitt Reviewed-by: Ralph Boehme Autobuild-User(master): Ralph Böhme Autobuild-Date(master): Wed Nov 8 18:42:13 UTC 2023 on atb-devel-224 (cherry picked from commit 963fc353e70b940f4009ca2764e966682400e2dc) --- diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 568e11f1aac..e88ef817a36 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1708,6 +1708,31 @@ static int vfs_gpfs_lstat(struct vfs_handle_struct *handle, return ret; } +static int vfs_gpfs_fstatat(struct vfs_handle_struct *handle, + const struct files_struct *dirfsp, + const struct smb_filename *smb_fname, + SMB_STRUCT_STAT *sbuf, + int flags) +{ + int ret; + + ret = SMB_VFS_NEXT_FSTATAT(handle, dirfsp, smb_fname, sbuf, flags); + if (ret == -1 && errno == EACCES) { + bool fake_dctime = + lp_fake_directory_create_times(SNUM(handle->conn)); + + DBG_DEBUG("fstatat for %s failed with EACCES. Trying with " + "CAP_DAC_OVERRIDE.\n", dirfsp->fsp_name->base_name); + ret = fstatat_with_cap_dac_override(fsp_get_pathref_fd(dirfsp), + smb_fname->base_name, + sbuf, + flags, + fake_dctime); + } + + return ret; +} + static int timespec_to_gpfs_time( struct timespec ts, gpfs_timestruc_t *gt, int idx, int *flags) { @@ -2639,6 +2664,7 @@ static struct vfs_fn_pointers vfs_gpfs_fns = { .stat_fn = vfs_gpfs_stat, .fstat_fn = vfs_gpfs_fstat, .lstat_fn = vfs_gpfs_lstat, + .fstatat_fn = vfs_gpfs_fstatat, .fntimes_fn = vfs_gpfs_fntimes, .aio_force_fn = vfs_gpfs_aio_force, .sendfile_fn = vfs_gpfs_sendfile,