[RFC ABI 6/8] IB/core: Add outptr to udata in order to track the output size

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Matan Barak <matanb@xxxxxxxxxxxx>

Sometimes, a netlink attribute describes a response buffer.
For example, when a vendor writes a response, the uptr netlink
attribute in the core response describe the vendor's response length.
Similarly, the core response length is described by its header, which
is actually a netsted netlink attribute.
Therefore, we need to have a way to count how much data was written
to the udata. Adding an outptr to track this data.

Signed-off-by: Leon Romanovsky <leonro@xxxxxxxxxxxx>
Signed-off-by: Matan Barak <matanb@xxxxxxxxxxxx>
Signed-off-by: Haggai Eran <haggaie@xxxxxxxxxxxx>
---
 drivers/infiniband/core/uverbs.h | 3 +++
 include/rdma/ib_verbs.h          | 8 +++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/drivers/infiniband/core/uverbs.h b/drivers/infiniband/core/uverbs.h
index a46cb29..c8d8700 100644
--- a/drivers/infiniband/core/uverbs.h
+++ b/drivers/infiniband/core/uverbs.h
@@ -46,11 +46,13 @@
 #include <rdma/ib_verbs.h>
 #include <rdma/ib_umem.h>
 #include <rdma/ib_user_verbs.h>
+#include <rdma/ib_user_ioctl.h>
 
 #define INIT_UDATA(udata, ibuf, obuf, ilen, olen)			\
 	do {								\
 		(udata)->inbuf  = (const void __user *) (ibuf);		\
 		(udata)->outbuf = (void __user *) (obuf);		\
+		(udata)->outptr = (void __user *)(obuf);		\
 		(udata)->inlen  = (ilen);				\
 		(udata)->outlen = (olen);				\
 	} while (0)
@@ -59,6 +61,7 @@
 	do {									\
 		(udata)->inbuf  = (ilen) ? (const void __user *) (ibuf) : NULL;	\
 		(udata)->outbuf = (olen) ? (void __user *) (obuf) : NULL;	\
+		(udata)->outptr = (olen) ? (void __user *)(obuf) : NULL;	\
 		(udata)->inlen  = (ilen);					\
 		(udata)->outlen = (olen);					\
 	} while (0)
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index 1904c02..f5275b9 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -1360,6 +1360,7 @@ struct ib_uobject {
 struct ib_udata {
 	const void __user *inbuf;
 	void __user *outbuf;
+	void __user *outptr;
 	size_t       inlen;
 	size_t       outlen;
 };
@@ -1990,7 +1991,12 @@ static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t
 
 static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
 {
-	return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
+	int ret = copy_to_user(udata->outptr, src, len) ? -EFAULT : 0;
+
+	if (!ret)
+		udata->outptr += len;
+
+	return ret;
 }
 
 static inline bool ib_is_udata_cleared(struct ib_udata *udata,
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Photo]     [Yosemite News]     [Yosemite Photos]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux