* [RFC PATCH v4 0/2] Async nvme passthrough via io_uring
[not found] <CGME20210325170659epcas5p314b54d01c60189f899f67aaeb9d87a13@epcas5p3.samsung.com>
@ 2021-03-25 17:05 ` Kanchan Joshi
[not found] ` <CGME20210325170704epcas5p3aafad4845b9ea1a545d643121a0ee1e5@epcas5p3.samsung.com>
[not found] ` <CGME20210325170708epcas5p259755feb9f0a769e7390a3b6eebc0e01@epcas5p2.samsung.com>
0 siblings, 2 replies; 3+ messages in thread
From: Kanchan Joshi @ 2021-03-25 17:05 UTC (permalink / raw)
To: axboe, hch, kbusch, chaitanya.kulkarni
Cc: io-uring, linux-nvme, anuj20.g, javier.gonz, nj.shetty,
selvakuma.s1, Kanchan Joshi
This series adds async passthrough capability for nvme block-dev over
io_uring.
The patches are on top of Jens uring-cmd series:
https://lore.kernel.org/linux-nvme/[email protected]/
https://git.kernel.dk/cgit/linux-block/log/?h=io_uring-fops.v4
The tree contains nvme-5.13 updates (pdu-enhancement patches of Keith)
as well.
Application is expected to allocate passthrough command structure, set
it up traditionally, and pass its address via
"block_uring_cmd->unused2[0]" field.
On completion, CQE is posted with completion-status after any ioctl
specific buffer/field update.
Tests are done by transforming fio io_uring read/write into
passthrough:
https://github.com/joshkan/fio/tree/uring_cmd_nvme_v4
Changes from v3:
1. Moved to v4 branch of Jens, adapted to interface changes
2. Extended support for NVME_IOCTL_IO_CMD64
3. Applied nvme feedback - hch, Keith
4. Appiled io_uring feedback - Jens, Stefan
Changes from v2:
1. Rebase against latest uring-cmd branch of Jens
2. Remove per-io nvme_command allocation
3. Disallow passthrough commands with non-zero command effects
Change from v1:
1. Rewire the work on top of Jens uring-cmd interface
2. Support only passthrough, and not other nvme ioctls
Kanchan Joshi (2):
io_uring: add helpers for io_uring_cmd completion in submitter-task.
nvme: wire up support for async passthrough
drivers/nvme/host/core.c | 194 +++++++++++++++++++++++++++++++++------
drivers/nvme/host/nvme.h | 3 +
drivers/nvme/host/pci.c | 1 +
fs/io_uring.c | 23 +++++
include/linux/io_uring.h | 12 +++
5 files changed, 206 insertions(+), 27 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [RFC PATCH v4 1/2] io_uring: add helpers for io_uring_cmd completion in submitter-task.
[not found] ` <CGME20210325170704epcas5p3aafad4845b9ea1a545d643121a0ee1e5@epcas5p3.samsung.com>
@ 2021-03-25 17:05 ` Kanchan Joshi
0 siblings, 0 replies; 3+ messages in thread
From: Kanchan Joshi @ 2021-03-25 17:05 UTC (permalink / raw)
To: axboe, hch, kbusch, chaitanya.kulkarni
Cc: io-uring, linux-nvme, anuj20.g, javier.gonz, nj.shetty,
selvakuma.s1, Kanchan Joshi
Completion of io_uring_cmd ioctl may involve referencing certain
ioctl-specefic fields, requiring original submitter-context.
Introduce two APIs for that purpose:
a. io_uring_cmd_complete_in_task
b. io_uring_cbh_to_io_uring_cmd
The APIs facilitate reusing task-work infra, while driver gets to
implement ioctl-specific handling in a callback.
Signed-off-by: Kanchan Joshi <[email protected]>
Signed-off-by: Anuj Gupta <[email protected]>
---
fs/io_uring.c | 23 +++++++++++++++++++++++
include/linux/io_uring.h | 12 ++++++++++++
2 files changed, 35 insertions(+)
diff --git a/fs/io_uring.c b/fs/io_uring.c
index b6e1b6b51c5f..a8629c460bdd 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -2079,6 +2079,29 @@ static void io_req_task_submit(struct callback_head *cb)
__io_req_task_submit(req);
}
+struct io_uring_cmd *io_uring_cbh_to_io_uring_cmd(struct callback_head *cb)
+{
+ return &container_of(cb, struct io_kiocb, task_work)->uring_cmd;
+}
+EXPORT_SYMBOL_GPL(io_uring_cbh_to_io_uring_cmd);
+
+int io_uring_cmd_complete_in_task(struct io_uring_cmd *ioucmd,
+ void (*driver_cb)(struct callback_head *))
+{
+ int ret;
+ struct io_kiocb *req = container_of(ioucmd, struct io_kiocb, uring_cmd);
+
+ req->task_work.func = driver_cb;
+ ret = io_req_task_work_add(req);
+ if (unlikely(ret)) {
+ req->result = -ECANCELED;
+ percpu_ref_get(&req->ctx->refs);
+ io_req_task_work_add_fallback(req, io_req_task_cancel);
+ }
+ return ret;
+}
+EXPORT_SYMBOL_GPL(io_uring_cmd_complete_in_task);
+
static void io_req_task_queue_fail(struct io_kiocb *req, int ret)
{
req->result = ret;
diff --git a/include/linux/io_uring.h b/include/linux/io_uring.h
index 9956c0f5f9d0..526bc58dea25 100644
--- a/include/linux/io_uring.h
+++ b/include/linux/io_uring.h
@@ -19,6 +19,9 @@ struct io_uring_cmd {
#if defined(CONFIG_IO_URING)
void io_uring_cmd_done(struct io_uring_cmd *cmd, ssize_t ret);
+int io_uring_cmd_complete_in_task(struct io_uring_cmd *ioucmd,
+ void (*driver_cb)(struct callback_head *));
+struct io_uring_cmd *io_uring_cbh_to_io_uring_cmd(struct callback_head *cbh);
struct sock *io_uring_get_socket(struct file *file);
void __io_uring_task_cancel(void);
void __io_uring_files_cancel(struct files_struct *files);
@@ -43,6 +46,15 @@ static inline void io_uring_free(struct task_struct *tsk)
static inline void io_uring_cmd_done(struct io_uring_cmd *cmd, ssize_t ret)
{
}
+int io_uring_cmd_complete_in_task(struct io_uring_cmd *ioucmd,
+ void (*driver_cb)(struct callback_head *))
+{
+ return -1;
+}
+struct io_uring_cmd *io_uring_cbh_to_io_uring_cmd(struct callback_head *)
+{
+ return NULL;
+}
static inline struct sock *io_uring_get_socket(struct file *file)
{
return NULL;
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [RFC PATCH v4 2/2] nvme: wire up support for async passthrough
[not found] ` <CGME20210325170708epcas5p259755feb9f0a769e7390a3b6eebc0e01@epcas5p2.samsung.com>
@ 2021-03-25 17:05 ` Kanchan Joshi
0 siblings, 0 replies; 3+ messages in thread
From: Kanchan Joshi @ 2021-03-25 17:05 UTC (permalink / raw)
To: axboe, hch, kbusch, chaitanya.kulkarni
Cc: io-uring, linux-nvme, anuj20.g, javier.gonz, nj.shetty,
selvakuma.s1, Kanchan Joshi
Introduce handler for mq_ops->uring_cmd(), implementing async
passthrough on block-device.
The handler supports NVME_IOCTL_IO_CMD and NVME_IOCTL_IO64_CMD.
Signed-off-by: Kanchan Joshi <[email protected]>
Signed-off-by: Anuj Gupta <[email protected]>
---
drivers/nvme/host/core.c | 194 +++++++++++++++++++++++++++++++++------
drivers/nvme/host/nvme.h | 3 +
drivers/nvme/host/pci.c | 1 +
3 files changed, 171 insertions(+), 27 deletions(-)
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 560a72418dd2..58759ddfd203 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -1050,6 +1050,96 @@ static void *nvme_add_user_metadata(struct bio *bio, void __user *ubuf,
return ERR_PTR(ret);
}
+/*
+ * Convert integer values from ioctl structures to user pointers, silently
+ * ignoring the upper bits in the compat case to match behaviour of 32-bit
+ * kernels.
+ */
+static void __user *nvme_to_user_ptr(uintptr_t ptrval)
+{
+ if (in_compat_syscall())
+ ptrval = (compat_uptr_t)ptrval;
+ return (void __user *)ptrval;
+}
+/*
+ * This is carved within the io_uring_cmd, to avoid dynamic allocation.
+ * Care should be taken not to grow this beyond what is available.
+ * Expect build warning otherwise.
+ */
+struct uring_cmd_data {
+ union {
+ struct bio *bio;
+ u64 result; /* nvme cmd result */
+ };
+ void *meta; /* kernel-resident buffer */
+ int status; /* nvme cmd status */
+};
+
+inline u64 *nvme_ioucmd_data_addr(struct io_uring_cmd *ioucmd)
+{
+ return &(((struct block_uring_cmd *)&ioucmd->pdu)->unused2[1]);
+}
+
+static void nvme_pt_task_cb(struct callback_head *cb)
+{
+ struct uring_cmd_data *ucd;
+ struct nvme_passthru_cmd64 __user *ptcmd64 = NULL;
+ struct block_uring_cmd *bcmd;
+ struct io_uring_cmd *ioucmd;
+
+ ioucmd = io_uring_cbh_to_io_uring_cmd(cb);
+ bcmd = (struct block_uring_cmd *) &ioucmd->pdu;
+ ptcmd64 = (void __user *) bcmd->unused2[0];
+ ucd = (struct uring_cmd_data *) nvme_ioucmd_data_addr(ioucmd);
+
+ if (ucd->meta) {
+ void __user *umeta = nvme_to_user_ptr(ptcmd64->metadata);
+
+ if (!ucd->status)
+ if (copy_to_user(umeta, ucd->meta, ptcmd64->metadata_len))
+ ucd->status = -EFAULT;
+ kfree(ucd->meta);
+ }
+ if (likely(bcmd->ioctl_cmd == NVME_IOCTL_IO64_CMD)) {
+ if (put_user(ucd->result, &ptcmd64->result))
+ ucd->status = -EFAULT;
+ } else {
+ struct nvme_passthru_cmd __user *ptcmd = (void *)bcmd->unused2[0];
+
+ if (put_user(ucd->result, &ptcmd->result))
+ ucd->status = -EFAULT;
+ }
+ io_uring_cmd_done(ioucmd, ucd->status);
+}
+
+static void nvme_end_async_pt(struct request *req, blk_status_t err)
+{
+ struct io_uring_cmd *ioucmd;
+ struct uring_cmd_data *ucd;
+ struct bio *bio;
+ int ret;
+
+ ioucmd = req->end_io_data;
+ ucd = (struct uring_cmd_data *) nvme_ioucmd_data_addr(ioucmd);
+ /* extract bio before reusing the same field for status */
+ bio = ucd->bio;
+
+ if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
+ ucd->status = -EINTR;
+ else
+ ucd->status = nvme_req(req)->status;
+ ucd->result = le64_to_cpu(nvme_req(req)->result.u64);
+
+ /* this takes care of setting up task-work */
+ ret = io_uring_cmd_complete_in_task(ioucmd, nvme_pt_task_cb);
+ if (ret < 0)
+ kfree(ucd->meta);
+
+ /* we can unmap pages, free bio and request */
+ blk_rq_unmap_user(bio);
+ blk_mq_free_request(req);
+}
+
static u32 nvme_known_admin_effects(u8 opcode)
{
switch (opcode) {
@@ -1138,10 +1228,27 @@ void nvme_execute_passthru_rq(struct request *rq)
}
EXPORT_SYMBOL_NS_GPL(nvme_execute_passthru_rq, NVME_TARGET_PASSTHRU);
+static void nvme_setup_uring_cmd_data(struct request *rq,
+ struct io_uring_cmd *ioucmd, void *meta, bool write)
+{
+ struct uring_cmd_data *ucd;
+
+ ucd = (struct uring_cmd_data *) nvme_ioucmd_data_addr(ioucmd);
+ /* to free bio on completion, as req->bio will be null at that time */
+ ucd->bio = rq->bio;
+ /* meta update is required only for read requests */
+ if (meta && !write)
+ ucd->meta = meta;
+ else
+ ucd->meta = NULL;
+ rq->end_io_data = ioucmd;
+}
+
static int nvme_submit_user_cmd(struct request_queue *q,
struct nvme_command *cmd, void __user *ubuffer,
unsigned bufflen, void __user *meta_buffer, unsigned meta_len,
- u32 meta_seed, u64 *result, unsigned timeout)
+ u32 meta_seed, u64 *result, unsigned timeout,
+ struct io_uring_cmd *ioucmd)
{
bool write = nvme_is_write(cmd);
struct nvme_ns *ns = q->queuedata;
@@ -1177,6 +1284,12 @@ static int nvme_submit_user_cmd(struct request_queue *q,
req->cmd_flags |= REQ_INTEGRITY;
}
}
+ if (ioucmd) { /* async dispatch */
+ nvme_setup_uring_cmd_data(req, ioucmd, meta, write);
+ blk_execute_rq_nowait(ns ? ns->disk : NULL, req, 0,
+ nvme_end_async_pt);
+ return 0;
+ }
nvme_execute_passthru_rq(req);
if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
@@ -1532,18 +1645,6 @@ static void nvme_enable_aen(struct nvme_ctrl *ctrl)
queue_work(nvme_wq, &ctrl->async_event_work);
}
-/*
- * Convert integer values from ioctl structures to user pointers, silently
- * ignoring the upper bits in the compat case to match behaviour of 32-bit
- * kernels.
- */
-static void __user *nvme_to_user_ptr(uintptr_t ptrval)
-{
- if (in_compat_syscall())
- ptrval = (compat_uptr_t)ptrval;
- return (void __user *)ptrval;
-}
-
static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
{
struct nvme_user_io io;
@@ -1604,11 +1705,13 @@ static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
return nvme_submit_user_cmd(ns->queue, &c,
nvme_to_user_ptr(io.addr), length,
- metadata, meta_len, lower_32_bits(io.slba), NULL, 0);
+ metadata, meta_len, lower_32_bits(io.slba), NULL, 0,
+ NULL);
}
static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
- struct nvme_passthru_cmd __user *ucmd)
+ struct nvme_passthru_cmd __user *ucmd,
+ struct io_uring_cmd *ioucmd)
{
struct nvme_passthru_cmd cmd;
struct nvme_command c;
@@ -1642,9 +1745,9 @@ static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
nvme_to_user_ptr(cmd.addr), cmd.data_len,
nvme_to_user_ptr(cmd.metadata), cmd.metadata_len,
- 0, &result, timeout);
+ 0, &result, timeout, ioucmd);
- if (status >= 0) {
+ if (!ioucmd && status >= 0) {
if (put_user(result, &ucmd->result))
return -EFAULT;
}
@@ -1653,7 +1756,8 @@ static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
}
static int nvme_user_cmd64(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
- struct nvme_passthru_cmd64 __user *ucmd)
+ struct nvme_passthru_cmd64 __user *ucmd,
+ struct io_uring_cmd *ioucmd)
{
struct nvme_passthru_cmd64 cmd;
struct nvme_command c;
@@ -1686,9 +1790,9 @@ static int nvme_user_cmd64(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
nvme_to_user_ptr(cmd.addr), cmd.data_len,
nvme_to_user_ptr(cmd.metadata), cmd.metadata_len,
- 0, &cmd.result, timeout);
+ 0, &cmd.result, timeout, ioucmd);
- if (status >= 0) {
+ if (!ioucmd && status >= 0) {
if (put_user(cmd.result, &ucmd->result))
return -EFAULT;
}
@@ -1748,10 +1852,10 @@ static int nvme_handle_ctrl_ioctl(struct nvme_ns *ns, unsigned int cmd,
switch (cmd) {
case NVME_IOCTL_ADMIN_CMD:
- ret = nvme_user_cmd(ctrl, NULL, argp);
+ ret = nvme_user_cmd(ctrl, NULL, argp, NULL);
break;
case NVME_IOCTL_ADMIN64_CMD:
- ret = nvme_user_cmd64(ctrl, NULL, argp);
+ ret = nvme_user_cmd64(ctrl, NULL, argp, NULL);
break;
default:
ret = sed_ioctl(ctrl->opal_dev, cmd, argp);
@@ -1787,13 +1891,13 @@ static int nvme_ioctl(struct block_device *bdev, fmode_t mode,
ret = ns->head->ns_id;
break;
case NVME_IOCTL_IO_CMD:
- ret = nvme_user_cmd(ns->ctrl, ns, argp);
+ ret = nvme_user_cmd(ns->ctrl, ns, argp, NULL);
break;
case NVME_IOCTL_SUBMIT_IO:
ret = nvme_submit_io(ns, argp);
break;
case NVME_IOCTL_IO64_CMD:
- ret = nvme_user_cmd64(ns->ctrl, ns, argp);
+ ret = nvme_user_cmd64(ns->ctrl, ns, argp, NULL);
break;
default:
if (ns->ndev)
@@ -1806,6 +1910,42 @@ static int nvme_ioctl(struct block_device *bdev, fmode_t mode,
return ret;
}
+int nvme_uring_cmd(struct request_queue *q, struct io_uring_cmd *ioucmd,
+ enum io_uring_cmd_flags flags)
+{
+ struct nvme_ns_head *head = NULL;
+ struct block_device *bdev = I_BDEV(ioucmd->file->f_mapping->host);
+ struct block_uring_cmd *bcmd = (struct block_uring_cmd *)&ioucmd->pdu;
+ struct nvme_ns *ns;
+ int srcu_idx, ret;
+ void __user *argp = (void __user *) bcmd->unused2[0];
+
+ BUILD_BUG_ON(sizeof(struct uring_cmd_data) >
+ sizeof(struct block_uring_cmd) -
+ offsetof(struct block_uring_cmd, unused2[1]));
+
+ ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
+ if (unlikely(!ns))
+ return -EWOULDBLOCK;
+
+ switch (bcmd->ioctl_cmd) {
+ case NVME_IOCTL_IO_CMD:
+ ret = nvme_user_cmd(ns->ctrl, ns, argp, ioucmd);
+ break;
+ case NVME_IOCTL_IO64_CMD:
+ ret = nvme_user_cmd64(ns->ctrl, ns, argp, ioucmd);
+ break;
+ default:
+ ret = -ENOTTY;
+ }
+
+ if (ret >= 0)
+ ret = -EIOCBQUEUED;
+ nvme_put_ns_from_disk(head, srcu_idx);
+ return ret;
+}
+EXPORT_SYMBOL_GPL(nvme_uring_cmd);
+
#ifdef CONFIG_COMPAT
struct nvme_user_io32 {
__u8 opcode;
@@ -3299,7 +3439,7 @@ static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp)
kref_get(&ns->kref);
up_read(&ctrl->namespaces_rwsem);
- ret = nvme_user_cmd(ctrl, ns, argp);
+ ret = nvme_user_cmd(ctrl, ns, argp, NULL);
nvme_put_ns(ns);
return ret;
@@ -3316,9 +3456,9 @@ static long nvme_dev_ioctl(struct file *file, unsigned int cmd,
switch (cmd) {
case NVME_IOCTL_ADMIN_CMD:
- return nvme_user_cmd(ctrl, NULL, argp);
+ return nvme_user_cmd(ctrl, NULL, argp, NULL);
case NVME_IOCTL_ADMIN64_CMD:
- return nvme_user_cmd64(ctrl, NULL, argp);
+ return nvme_user_cmd64(ctrl, NULL, argp, NULL);
case NVME_IOCTL_IO_CMD:
return nvme_dev_user_cmd(ctrl, argp);
case NVME_IOCTL_RESET:
diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h
index b0863c59fac4..afca7ac8c6b8 100644
--- a/drivers/nvme/host/nvme.h
+++ b/drivers/nvme/host/nvme.h
@@ -17,6 +17,7 @@
#include <linux/rcupdate.h>
#include <linux/wait.h>
#include <linux/t10-pi.h>
+#include <linux/io_uring.h>
#include <trace/events/block.h>
@@ -620,6 +621,8 @@ int nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout);
void nvme_start_freeze(struct nvme_ctrl *ctrl);
#define NVME_QID_ANY -1
+int nvme_uring_cmd(struct request_queue *q, struct io_uring_cmd *ucmd,
+ enum io_uring_cmd_flags flags);
struct request *nvme_alloc_request(struct request_queue *q,
struct nvme_command *cmd, blk_mq_req_flags_t flags);
void nvme_cleanup_cmd(struct request *req);
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index d47bb18b976a..e8b1d9177148 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -1623,6 +1623,7 @@ static const struct blk_mq_ops nvme_mq_ops = {
.map_queues = nvme_pci_map_queues,
.timeout = nvme_timeout,
.poll = nvme_poll,
+ .uring_cmd = nvme_uring_cmd,
};
static void nvme_dev_remove_admin(struct nvme_dev *dev)
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-03-25 17:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20210325170659epcas5p314b54d01c60189f899f67aaeb9d87a13@epcas5p3.samsung.com>
2021-03-25 17:05 ` [RFC PATCH v4 0/2] Async nvme passthrough via io_uring Kanchan Joshi
[not found] ` <CGME20210325170704epcas5p3aafad4845b9ea1a545d643121a0ee1e5@epcas5p3.samsung.com>
2021-03-25 17:05 ` [RFC PATCH v4 1/2] io_uring: add helpers for io_uring_cmd completion in submitter-task Kanchan Joshi
[not found] ` <CGME20210325170708epcas5p259755feb9f0a769e7390a3b6eebc0e01@epcas5p2.samsung.com>
2021-03-25 17:05 ` [RFC PATCH v4 2/2] nvme: wire up support for async passthrough Kanchan Joshi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox