The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Xiong Weimin <15927021679@163.com>
To: Alexei Starovoitov <ast@kernel.org>,
	Daniel Borkmann <daniel@iogearbox.net>,
	"David S . Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	Jesper Dangaard Brouer <hawk@kernel.org>,
	John Fastabend <john.fastabend@gmail.com>,
	Stanislav Fomichev <sdf@fomichev.me>
Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
	xiongweimin <xiongweimin@kylinos.cn>
Subject: [PATCH 04/14] examples/vhost_user_rdma: implement protection domain create/destroy commands
Date: Wed, 17 Dec 2025 16:43:30 +0800	[thread overview]
Message-ID: <20251217084422.4875-6-15927021679@163.com> (raw)
In-Reply-To: <20251217084422.4875-1-15927021679@163.com>

From: xiongweimin <xiongweimin@kylinos.cn>

Added core functionality for managing RDMA Protection Domains (PDs):
1. CREATE_PD command for resource allocation and initialization
2. DESTROY_PD command with reference-counted teardown
3. Integration with device-specific PD resource pool
4. Minimalist state management for security domains
5. Robust input validation and error handling

Key features:
- PD identifier (pdn) generation and return to guest
- Atomic reference counting for lifecycle management
- Device association for resource tracking
- Memory-safe buffer handling with CHK_IOVEC
- ENOMEM handling for allocation failures

Signed-off-by: Xiong Weimin<xiongweimin@kylinos.cn>
Change-Id: I36d841a76067813c1880069c71b2eba90337609b
---
 examples/vhost_user_rdma/vhost_rdma_ib.c | 38 ++++++++++++++++++++++++
 examples/vhost_user_rdma/vhost_rdma_ib.h | 30 +++++++++----------
 2 files changed, 53 insertions(+), 15 deletions(-)

diff --git a/examples/vhost_user_rdma/vhost_rdma_ib.c b/examples/vhost_user_rdma/vhost_rdma_ib.c
index 5ec0de8ae7..e590b555d3 100644
--- a/examples/vhost_user_rdma/vhost_rdma_ib.c
+++ b/examples/vhost_user_rdma/vhost_rdma_ib.c
@@ -616,6 +616,42 @@ vhost_rdma_destroy_cq(struct vhost_rdma_device *dev, struct iovec *in, CTRL_NO_R
 	return 0;
 }
 
+static int
+vhost_rdma_create_pd(struct vhost_rdma_device *dev, CTRL_NO_CMD, struct iovec *out)
+{
+	struct vhost_rdma_ack_create_pd *create_rsp;
+	struct vhost_rdma_pd *pd;
+	uint32_t idx;
+
+	CHK_IOVEC(create_rsp, out);
+
+	pd = vhost_rdma_pool_alloc(&dev->pd_pool, &idx);
+	if(pd == NULL) {
+		return -ENOMEM;
+	}
+	vhost_rdma_ref_init(pd);
+
+	pd->dev = dev;
+	pd->pdn = idx;
+	create_rsp->pdn = idx;
+
+	return 0;
+}
+
+static int
+vhost_rdma_destroy_pd(struct vhost_rdma_device *dev, struct iovec *in, CTRL_NO_RSP)
+{
+	struct vhost_rdma_cmd_destroy_pd *create_cmd;
+	struct vhost_rdma_pd *pd;
+
+	CHK_IOVEC(create_cmd, in);
+
+	pd = vhost_rdma_pool_get(&dev->pd_pool, create_cmd->pdn);
+	vhost_rdma_drop_ref(pd, dev, pd);
+
+	return 0;
+}
+
 /* Command handler table declaration */
 struct {
 	int (*handler)(struct vhost_rdma_device *dev, struct iovec *in, struct iovec *out);
@@ -625,6 +661,8 @@ struct {
 	DEFINE_VIRTIO_RDMA_CMD(VHOST_RDMA_CTRL_ROCE_QUERY_PORT,				vhost_rdma_query_port),
 	DEFINE_VIRTIO_RDMA_CMD(VHOST_RDMA_CTRL_ROCE_CREATE_CQ,				vhost_rdma_create_cq),
 	DEFINE_VIRTIO_RDMA_CMD(VHOST_RDMA_CTRL_ROCE_DESTROY_CQ,				vhost_rdma_destroy_cq),
+	DEFINE_VIRTIO_RDMA_CMD(VHOST_RDMA_CTRL_ROCE_CREATE_PD,				vhost_rdma_create_pd),
+	DEFINE_VIRTIO_RDMA_CMD(VHOST_RDMA_CTRL_ROCE_DESTROY_PD,				vhost_rdma_destroy_pd),
 };
 
 /**
diff --git a/examples/vhost_user_rdma/vhost_rdma_ib.h b/examples/vhost_user_rdma/vhost_rdma_ib.h
index 6420c8c7e2..6356abc65a 100644
--- a/examples/vhost_user_rdma/vhost_rdma_ib.h
+++ b/examples/vhost_user_rdma/vhost_rdma_ib.h
@@ -667,44 +667,44 @@ struct vhost_rdma_ctrl_hdr {
 
 struct vhost_rdma_ack_query_port {
 	enum vhost_rdma_ib_port_state	state;
-	enum vhost_rdma_ib_mtu		    max_mtu;
-	enum vhost_rdma_ib_mtu		    active_mtu;
+	enum vhost_rdma_ib_mtu			max_mtu;
+	enum vhost_rdma_ib_mtu			active_mtu;
 	uint32_t			phys_mtu;
-	int			        gid_tbl_len;
+	int					gid_tbl_len;
 	uint32_t			port_cap_flags;
 	uint32_t			max_msg_sz;
 	uint32_t			bad_pkey_cntr;
 	uint32_t			qkey_viol_cntr;
 	uint16_t			pkey_tbl_len;
 	uint16_t			active_speed;
-	uint8_t			    active_width;
-	uint8_t			    phys_state;
+	uint8_t				active_width;
+	uint8_t				phys_state;
 	uint32_t			reserved[32];	/* For future extensions */
 }__rte_packed;
 
 struct vhost_rdma_cmd_create_cq {
-        /* Size of CQ */
-        uint32_t cqe;
+	/* Size of CQ */
+	uint32_t cqe;
 };
 
 struct vhost_rdma_ack_create_cq {
-        /* The index of CQ */
-        uint32_t cqn;
+	/* The index of CQ */
+	uint32_t cqn;
 };
 
 struct vhost_rdma_cmd_destroy_cq {
-        /* The index of CQ */
-        uint32_t cqn;
+	/* The index of CQ */
+	uint32_t cqn;
 };
 
 struct vhost_rdma_ack_create_pd {
-        /* The handle of PD */
-        uint32_t pdn;
+	/* The handle of PD */
+	uint32_t pdn;
 };
 
 struct vhost_rdma_cmd_destroy_pd {
-        /* The handle of PD */
-        uint32_t pdn;
+	/* The handle of PD */
+	uint32_t pdn;
 };
 
 /**
-- 
2.43.0


  parent reply	other threads:[~2025-12-17  8:45 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-17  8:43 Implement initial driver for virtio-RDMA devices(kernel), virtio-rdma device model(qemu) and vhost-user-RDMA backend device(dpdk) Xiong Weimin
2025-12-17  8:43 ` [PATCH 01/14] examples/vhost_user_rdma: implement core application initialization for supporting vhost_user_rdma device Xiong Weimin
2025-12-17  8:43 ` [PATCH] hw/rdma: Implement vhost-user RDMA device with PCI support Xiong Weimin
2025-12-17  8:43 ` [PATCH 02/14] examples/vhost_user_rdma: implement device and port query commands Xiong Weimin
2025-12-17  8:43 ` [PATCH 03/14] examples/vhost_user_rdma: implement create and destroy completion queue commands Xiong Weimin
2025-12-17  8:43 ` Xiong Weimin [this message]
2025-12-17  8:43 ` [PATCH 05/14] examples/vhost_user_rdma: implement comprehensive memory region management Xiong Weimin
2025-12-17  8:43 ` [PATCH 06/14] examples/vhost_user_rdma: implement comprehensive queue pair lifecycle management Xiong Weimin
2025-12-17  8:43 ` [PATCH 07/14] examples/vhost_user_rdma: Implement high-performance requester engine with advanced flow control Xiong Weimin
2025-12-17  8:43 ` [PATCH 08/14] examples/vhost_user_rdma: implement advanced completer engine with reliability features Xiong Weimin
2025-12-17  8:43 ` [PATCH 09/14] examples/vhost_user_rdma: implement P_Key query operation with default partition key Xiong Weimin
  -- strict thread matches above, loose matches on Subject: below --
2025-12-17  8:49 Implement initial driver for virtio-RDMA devices(kernel), virtio-rdma device model(qemu) and vhost-user-RDMA backend device(dpdk) Xiong Weimin
2025-12-17  8:49 ` [PATCH 04/14] examples/vhost_user_rdma: implement protection domain create/destroy commands Xiong Weimin
2025-12-17  8:05 Implement initial driver for virtio-RDMA devices(kernel), virtio-rdma device model(qemu) and vhost-user-RDMA backend device(dpdk) 15927021679
2025-12-17  8:05 ` [PATCH 04/14] examples/vhost_user_rdma: implement protection domain create/destroy commands 15927021679

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=20251217084422.4875-6-15927021679@163.com \
    --to=15927021679@163.com \
    --cc=ast@kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=hawk@kernel.org \
    --cc=john.fastabend@gmail.com \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=sdf@fomichev.me \
    --cc=xiongweimin@kylinos.cn \
    /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