summaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-01-08 17:41:21 -0700
committerJens Axboe <axboe@kernel.dk>2020-01-20 17:04:04 -0700
commitc12cedf24e786509de031a832e6b0e5f8b3ca37b (patch)
tree15b0e4f42451bbe57a8610247d861f312b0d48b7 /fs/io_uring.c
parentf2842ab5b72d7ee5f7f8385c2d4f32c133f5837b (diff)
io_uring: add 'struct open_how' to the openat request context
We'll need this for openat2(2) support, remove flags and mode from the existing io_open struct. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r--fs/io_uring.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 70656762244f..d8d252b4c9be 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -390,13 +390,12 @@ struct io_open {
struct file *file;
int dfd;
union {
- umode_t mode;
unsigned mask;
};
const char __user *fname;
struct filename *filename;
struct statx __user *buffer;
- int flags;
+ struct open_how how;
};
struct io_files_update {
@@ -2474,9 +2473,9 @@ static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
return -EINVAL;
req->open.dfd = READ_ONCE(sqe->fd);
- req->open.mode = READ_ONCE(sqe->len);
+ req->open.how.mode = READ_ONCE(sqe->len);
req->open.fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
- req->open.flags = READ_ONCE(sqe->open_flags);
+ req->open.how.flags = READ_ONCE(sqe->open_flags);
req->open.filename = getname(req->open.fname);
if (IS_ERR(req->open.filename)) {
@@ -2501,7 +2500,7 @@ static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
return -EAGAIN;
}
- how = build_open_how(req->open.flags, req->open.mode);
+ how = build_open_how(req->open.how.flags, req->open.how.mode);
ret = build_open_flags(&how, &op);
if (ret)
goto err;
@@ -2604,9 +2603,9 @@ static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
req->open.mask = READ_ONCE(sqe->len);
req->open.fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
- req->open.flags = READ_ONCE(sqe->statx_flags);
+ req->open.how.flags = READ_ONCE(sqe->statx_flags);
- if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.flags))
+ if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
return -EINVAL;
req->open.filename = getname_flags(req->open.fname, lookup_flags, NULL);
@@ -2631,7 +2630,7 @@ static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
if (force_nonblock)
return -EAGAIN;
- if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->flags))
+ if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
return -EINVAL;
retry:
@@ -2643,7 +2642,7 @@ retry:
if (ret)
goto err;
- ret = vfs_getattr(&path, &stat, ctx->mask, ctx->flags);
+ ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
path_put(&path);
if (retry_estale(ret, lookup_flags)) {
lookup_flags |= LOOKUP_REVAL;