@@ -141,6 +141,8 @@ struct FileOperations
V9fsPath *newdir, const char *new_name);
int (*unlinkat)(FsContext *ctx, V9fsPath *dir, const char *name, int flags);
int (*ftruncate)(FsContext *, int, V9fsFidOpenState *, off_t);
+ int (*futimens)(FsContext *, int, V9fsFidOpenState *,
+ const struct timespec *);
void *opaque;
};
@@ -400,6 +400,15 @@ static int handle_utimensat(FsContext *ctx, V9fsPath *fs_path,
return ret;
}
+static int handle_futimens(FsContext *s, int fid_type, V9fsFidOpenState *fs,
+ const struct timespec *buf)
+{
+ int fd;
+
+ fd = v9fs_get_fd_fid(fid_type, fs);
+ return qemu_futimens(fd, buf);
+}
+
static int handle_remove(FsContext *ctx, const char *path)
{
errno = EOPNOTSUPP;
@@ -706,4 +715,5 @@ FileOperations handle_ops = {
.renameat = handle_renameat,
.unlinkat = handle_unlinkat,
.ftruncate = handle_ftruncate,
+ .futimens = handle_futimens,
};
@@ -953,6 +953,15 @@ static int local_utimensat(FsContext *s, V9fsPath *fs_path,
return ret;
}
+static int local_futimens(FsContext *s, int fid_type, V9fsFidOpenState *fs,
+ const struct timespec *buf)
+{
+ int fd;
+
+ fd = v9fs_get_fd_fid(fid_type, fs);
+ return qemu_futimens(fd, buf);
+}
+
static int local_remove(FsContext *ctx, const char *path)
{
int err;
@@ -1290,4 +1299,5 @@ FileOperations local_ops = {
.renameat = local_renameat,
.unlinkat = local_unlinkat,
.ftruncate = local_ftruncate,
+ .futimens = local_futimens,
};
@@ -923,6 +923,15 @@ static int proxy_utimensat(FsContext *s, V9fsPath *fs_path,
return retval;
}
+static int proxy_futimens(FsContext *s, int fid_type, V9fsFidOpenState *fs,
+ const struct timespec *buf)
+{
+ int fd;
+
+ fd = v9fs_get_fd_fid(fid_type, fs);
+ return qemu_futimens(fd, buf);
+}
+
static int proxy_remove(FsContext *ctx, const char *path)
{
int retval;
@@ -1221,4 +1230,5 @@ FileOperations proxy_ops = {
.renameat = proxy_renameat,
.unlinkat = proxy_unlinkat,
.ftruncate = proxy_ftruncate,
+ .futimens = proxy_futimens,
};
@@ -412,6 +412,13 @@ static int synth_utimensat(FsContext *fs_ctx, V9fsPath *path,
return 0;
}
+static int synth_futimens(FsContext *fs_ctx, int fid_type, V9fsFidOpenState *fs,
+ const struct timespec *buf)
+{
+ errno = EPERM;
+ return -1;
+}
+
static int synth_remove(FsContext *ctx, const char *path)
{
errno = EPERM;
@@ -574,4 +581,5 @@ FileOperations synth_ops = {
.renameat = synth_renameat,
.unlinkat = synth_unlinkat,
.ftruncate = synth_ftruncate,
+ .futimens = synth_futimens,
};
@@ -1194,6 +1194,20 @@ static int v9fs_do_truncate(V9fsPDU *pdu, V9fsFidState *fidp, off_t size)
return err;
}
+static int v9fs_do_utimens(V9fsPDU *pdu, V9fsFidState *fidp,
+ struct timespec times[2])
+{
+ int err;
+
+ if (fid_has_file(fidp)) {
+ err = v9fs_co_futimens(pdu, fidp, times);
+ } else {
+ err = v9fs_co_utimensat(pdu, &fidp->path, times);
+ }
+
+ return err;
+}
+
/* Attribute flags */
#define P9_ATTR_MODE (1 << 0)
#define P9_ATTR_UID (1 << 1)
@@ -1254,7 +1268,7 @@ static void v9fs_setattr(void *opaque)
} else {
times[1].tv_nsec = UTIME_OMIT;
}
- err = v9fs_co_utimensat(pdu, &fidp->path, times);
+ err = v9fs_do_utimens(pdu, fidp, times);
if (err < 0) {
goto out;
}
@@ -2749,7 +2763,7 @@ static void v9fs_wstat(void *opaque)
} else {
times[1].tv_nsec = UTIME_OMIT;
}
- err = v9fs_co_utimensat(pdu, &fidp->path, times);
+ err = v9fs_do_utimens(pdu, fidp, times);
if (err < 0) {
goto out;
}
@@ -133,6 +133,24 @@ int v9fs_co_utimensat(V9fsPDU *pdu, V9fsPath *path,
return err;
}
+int v9fs_co_futimens(V9fsPDU *pdu, V9fsFidState *fidp, struct timespec times[2])
+{
+ int err;
+ V9fsState *s = pdu->s;
+
+ if (v9fs_request_cancelled(pdu)) {
+ return -EINTR;
+ }
+ v9fs_co_run_in_worker(
+ {
+ err = s->ops->futimens(&s->ctx, fidp->fid_type, &fidp->fs, times);
+ if (err < 0) {
+ err = -errno;
+ }
+ });
+ return err;
+}
+
int v9fs_co_chown(V9fsPDU *pdu, V9fsPath *path, uid_t uid, gid_t gid)
{
int err;
@@ -95,5 +95,6 @@ extern int v9fs_co_name_to_path(V9fsPDU *, V9fsPath *,
extern int v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t,
V9fsStatDotl *v9stat);
extern int v9fs_co_ftruncate(V9fsPDU *, V9fsFidState *, off_t);
+extern int v9fs_co_futimens(V9fsPDU *, V9fsFidState *, struct timespec [2]);
#endif
This allows futimens() in the guest to stay functional even if the file was unlinked. Signed-off-by: Greg Kurz <groug@kaod.org> --- fsdev/file-op-9p.h | 2 ++ hw/9pfs/9p-handle.c | 10 ++++++++++ hw/9pfs/9p-local.c | 10 ++++++++++ hw/9pfs/9p-proxy.c | 10 ++++++++++ hw/9pfs/9p-synth.c | 8 ++++++++ hw/9pfs/9p.c | 18 ++++++++++++++++-- hw/9pfs/cofs.c | 18 ++++++++++++++++++ hw/9pfs/coth.h | 1 + 8 files changed, 75 insertions(+), 2 deletions(-) ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape