1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

vfs_gpfs: deal with pathrefs fsps in smbd_gpfs_set_times()

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14771

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Christof Schmitt <cs@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Thu Aug 26 20:08:51 UTC 2021 on sn-devel-184
This commit is contained in:
Ralph Boehme 2021-08-05 12:08:00 +02:00
parent 93a48399f4
commit fead05a455

View File

@ -1732,13 +1732,45 @@ static int smbd_gpfs_set_times(struct files_struct *fsp,
return 0;
}
rc = gpfswrap_set_times(fsp_get_io_fd(fsp), flags, gpfs_times);
if (rc != 0) {
DBG_WARNING("gpfs_set_times() returned with error %s for %s\n",
strerror(errno),
fsp_str_dbg(fsp));
if (!fsp->fsp_flags.is_pathref) {
rc = gpfswrap_set_times(fsp_get_io_fd(fsp), flags, gpfs_times);
if (rc != 0) {
DBG_WARNING("gpfs_set_times(%s) failed: %s\n",
fsp_str_dbg(fsp), strerror(errno));
}
return rc;
}
if (fsp->fsp_flags.have_proc_fds) {
int fd = fsp_get_pathref_fd(fsp);
const char *p = NULL;
char buf[PATH_MAX];
p = sys_proc_fd_path(fd, buf, sizeof(buf));
if (p == NULL) {
return -1;
}
rc = gpfswrap_set_times_path(buf, flags, gpfs_times);
if (rc != 0) {
DBG_WARNING("gpfs_set_times_path(%s,%s) failed: %s\n",
fsp_str_dbg(fsp), p, strerror(errno));
}
return rc;
}
/*
* This is no longer a handle based call.
*/
rc = gpfswrap_set_times_path(fsp->fsp_name->base_name,
flags,
gpfs_times);
if (rc != 0) {
DBG_WARNING("gpfs_set_times_path(%s) failed: %s\n",
fsp_str_dbg(fsp), strerror(errno));
}
return rc;
}