From: Pavel Begunkov <asml.silence@gmail.com>
To: Anuj Gupta/Anuj Gupta <anuj20.g@samsung.com>,
Jens Axboe <axboe@kernel.dk>, Keith Busch <kbusch@kernel.org>,
Christoph Hellwig <hch@lst.de>, Sagi Grimberg <sagi@grimberg.me>,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-nvme@lists.infradead.org, linux-fsdevel@vger.kernel.org,
io-uring@vger.kernel.org, linux-media@vger.kernel.org,
dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org
Cc: "Alexander Viro" <viro@zeniv.linux.org.uk>,
"Christian Brauner" <brauner@kernel.org>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>,
"Nitesh Shetty" <nj.shetty@samsung.com>,
"Kanchan Joshi" <joshi.k@samsung.com>,
"Jason Gunthorpe" <jgg@nvidia.com>,
"Damien Le Moal" <dlemoal@kernel.org>,
"Alasdair Kergon" <agk@redhat.com>,
"Mike Snitzer" <snitzer@kernel.org>,
"Mikulas Patocka" <mpatocka@redhat.com>,
"Benjamin Marzinski" <bmarzins@redhat.com>,
"David Sterba" <dsterba@suse.com>,
"Ilya Dryomov" <idryomov@gmail.com>,
dm-devel@lists.linux.dev, nvdimm@lists.linux.dev,
linux-btrfs@vger.kernel.org, ceph-devel@vger.kernel.org
Subject: Re: [PATCH v4 14/14] io_uring/rsrc: add dmabuf backed registered buffers
Date: Wed, 29 Jul 2026 14:43:34 +0100 [thread overview]
Message-ID: <0df2f832-e8a8-4fdd-a5b6-e08657c2891f@gmail.com> (raw)
In-Reply-To: <583fdfb2-5368-467f-a388-6d388859c995@samsung.com>
On 7/29/26 14:30, Anuj Gupta/Anuj Gupta wrote:
> On 7/29/2026 2:59 AM, Pavel Begunkov wrote:
>> +static struct io_rsrc_node *io_register_dmabuf(struct io_ring_ctx *ctx,
>> + struct io_uring_regbuf_desc *desc)
>> +{
>> + struct io_rsrc_node *node = NULL;
>> + struct io_mapped_ubuf *imu = NULL;
>> + struct io_regbuf_dma *regbuf = NULL;
>> + struct file *target_file = NULL;
>> + struct dma_buf *dmabuf = NULL;
>> + int ret;
>> +
>> + if (!IS_ENABLED(CONFIG_DMA_SHARED_BUFFER))
>> + return ERR_PTR(-EOPNOTSUPP);
>> + if (ctx->flags & IORING_SETUP_IOPOLL)
>> + return ERR_PTR(-EOPNOTSUPP);
>> + if (desc->uaddr || desc->size)
>> + return ERR_PTR(-EINVAL);
>> +
>> + ret = -ENOMEM;
>> + node = io_rsrc_node_alloc(ctx, IORING_RSRC_BUFFER);
>> + if (!node)
>> + return ERR_PTR(-ENOMEM);
>> + imu = io_alloc_imu(ctx, 0);
>> + if (!imu)
>> + goto err;
>> + regbuf = kzalloc(sizeof(*regbuf), GFP_KERNEL);
>> + if (!regbuf)
>> + goto err;
>> +
>> + ret = -EBADF;
>> + target_file = fget(desc->target_fd);
>> + if (!target_file)
>> + goto err;
>> +
>> + dmabuf = dma_buf_get(desc->dmabuf_fd);
>> + if (IS_ERR(dmabuf)) {
>> + ret = PTR_ERR(dmabuf);
>> + dmabuf = NULL;
>> + goto err;
>> + }
>> + if (dmabuf->size > SZ_1G) {
>> + ret = -EINVAL;
>> + goto err;
>> + }
>> +
>> + ret = dma_buf_io_ctx_create(target_file, ®buf->ctx, dmabuf,
>> + DMA_BIDIRECTIONAL);
>> + if (ret)
>> + goto err;
>> +
>> + regbuf->target_file = target_file;
>> + imu->nr_bvecs = 1;
>
> There is no bvec backing a dmabuf imu - should this be 0?
Doesn't really matter as it's not used. It's 1 to say that
it's just 1 contig segment, but I can just zero it to avoid
confusion.
>
>> + imu->ubuf = 0;
>> + imu->len = dmabuf->size;
>> + imu->folio_shift = 0;
>> + imu->release = io_release_reg_dmabuf;
>> + imu->priv = regbuf;
>> + imu->flags = IO_REGBUF_F_DMABUF;
>> + imu->dir = IO_IMU_DEST | IO_IMU_SOURCE;
>> + refcount_set(&imu->refs, 1);
>> + node->buf = imu;
>> + dma_buf_put(dmabuf);
>> + return node;
>> +err:
>> + kfree(regbuf);
>> + if (imu)
>> + io_free_imu(ctx, imu);
>> + if (node)
>> + io_cache_free(&ctx->node_cache, node);
>> + if (target_file)
>> + fput(target_file);
>> + if (dmabuf)
>> + dma_buf_put(dmabuf);
>> + return ERR_PTR(ret);
>> +}
>> +
>> +
>
> nit: extra newline here
>
>> +static int io_import_dmabuf(struct io_kiocb *req,
>> + int ddir, struct iov_iter *iter,
>> + struct io_mapped_ubuf *imu,
>> + size_t len, size_t offset,
>> + unsigned issue_flags)
>> +{
>> + struct io_regbuf_dma *db = imu->priv;
>> + struct dma_buf_io_map *map;
>> +
>> + if (!IS_ENABLED(CONFIG_DMA_SHARED_BUFFER))
>> + return -EOPNOTSUPP;
>> + if (!len)
>> + return -EFAULT;
>> + if (req->file != db->target_file)
>> + return -EBADF;
>> +
>> + if (req->flags & REQ_F_DROP_DMABUF) {
>> + map = req->dmabuf_map;
>> + goto init_iter;
>> + }
>
> O_DIRECT is checked only during registration; we should recheck
> (file->f_flags & O_DIRECT) per request.
Nobody should be able to clear O_DIRECT, unless I missed something?
And fwiw, io_uring wouldn't be the right place to do it.
--
Pavel Begunkov
next prev parent reply other threads:[~2026-07-29 13:43 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-28 21:29 [PATCH v4 00/14] Add dmabuf read/write via io_uring Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 01/14] dma-buf: introduce initial file I/O infrastructure Pavel Begunkov
2026-07-29 6:59 ` Christoph Hellwig
2026-07-29 10:37 ` Pavel Begunkov
2026-07-29 11:28 ` Christoph Hellwig
2026-07-29 13:11 ` Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 02/14] iov_iter: add iterator type for dmabuf maps Pavel Begunkov
2026-07-29 6:59 ` Christoph Hellwig
2026-07-29 10:40 ` Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 03/14] block: rename bi_bvec_done Pavel Begunkov
2026-07-29 7:00 ` Christoph Hellwig
2026-07-28 21:29 ` [PATCH v4 04/14] block: always adjust bi_offset on bio_advance_iter Pavel Begunkov
2026-07-29 7:00 ` Christoph Hellwig
2026-07-28 21:29 ` [PATCH v4 05/14] block: move bvec init into __bio_clone Pavel Begunkov
2026-07-29 7:00 ` Christoph Hellwig
2026-07-28 21:29 ` [PATCH v4 06/14] block: introduce dma map backed bio type Pavel Begunkov
2026-07-29 7:07 ` Christoph Hellwig
2026-07-29 11:03 ` Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 07/14] block: forward init_dma_buf_io_ctx to drivers Pavel Begunkov
2026-07-29 7:07 ` Christoph Hellwig
2026-07-28 21:29 ` [PATCH v4 08/14] nvme-pci: implement dma_token backed requests Pavel Begunkov
2026-07-29 7:10 ` Christoph Hellwig
2026-07-29 10:49 ` Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 09/14] nvme-pci: add SGL support for the dmabuf path Pavel Begunkov
2026-07-29 7:21 ` Christoph Hellwig
2026-07-29 10:17 ` Anuj Gupta/Anuj Gupta
2026-07-29 11:31 ` Christoph Hellwig
2026-07-29 11:45 ` Pavel Begunkov
2026-07-29 11:55 ` Christoph Hellwig
2026-07-29 13:08 ` Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 10/14] io_uring/rsrc: introduce buf registration structure Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 11/14] io_uring/rsrc: extend buffer update Pavel Begunkov
2026-07-29 13:31 ` Anuj Gupta/Anuj Gupta
2026-07-29 13:39 ` Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 12/14] io_uring/rsrc: add uncloneable regbuf flag Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 13/14] io_uring/rsrc: add regbuf import flags Pavel Begunkov
2026-07-28 21:29 ` [PATCH v4 14/14] io_uring/rsrc: add dmabuf backed registered buffers Pavel Begunkov
2026-07-29 13:30 ` Anuj Gupta/Anuj Gupta
2026-07-29 13:43 ` Pavel Begunkov [this message]
2026-07-29 16:52 ` Anuj gupta
2026-07-29 17:45 ` Pavel Begunkov
2026-07-29 6:54 ` [PATCH v4 00/14] Add dmabuf read/write via io_uring Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0df2f832-e8a8-4fdd-a5b6-e08657c2891f@gmail.com \
--to=asml.silence@gmail.com \
--cc=agk@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=anuj20.g@samsung.com \
--cc=axboe@kernel.dk \
--cc=bmarzins@redhat.com \
--cc=brauner@kernel.org \
--cc=ceph-devel@vger.kernel.org \
--cc=christian.koenig@amd.com \
--cc=dlemoal@kernel.org \
--cc=dm-devel@lists.linux.dev \
--cc=dri-devel@lists.freedesktop.org \
--cc=dsterba@suse.com \
--cc=hch@lst.de \
--cc=idryomov@gmail.com \
--cc=io-uring@vger.kernel.org \
--cc=jgg@nvidia.com \
--cc=joshi.k@samsung.com \
--cc=kbusch@kernel.org \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=mpatocka@redhat.com \
--cc=nj.shetty@samsung.com \
--cc=nvdimm@lists.linux.dev \
--cc=sagi@grimberg.me \
--cc=snitzer@kernel.org \
--cc=sumit.semwal@linaro.org \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox