Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 958d2c1b authored by Jason Gunthorpe's avatar Jason Gunthorpe
Browse files

RDMA/bnxt: Fix structure layout for bnxt_re_pd_resp



What is going on here is a bit subtle, in the kernel there is no
problem because the struct is copied using copy_from_user, so it
can safely have an 8 byte alignment, however in userspace it must
be constructed by concatenation with the ib_uverbs_alloc_pd_resp
struct. This is due to the required memory layout to execute the
command.

Since ibv_uverbs_alloc_pd_resp is only 4 bytes long, this causes
misalignment, and the user space will experience an unexpected padding.
Currently it works around this via pointer maths.

Make everything more robust by having the compiler reduce the alignment
of the struct to 4. The userspace has assertions to ensure this
works properly in all situations.

Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 7672ed33
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -53,11 +53,16 @@ struct bnxt_re_uctx_resp {
	__u32 rsvd;
	__u32 rsvd;
};
};


/*
 * This struct is placed after the ib_uverbs_alloc_pd_resp struct, which is
 * not 8 byted aligned. To avoid undesired padding in various cases we have to
 * set this struct to packed.
 */
struct bnxt_re_pd_resp {
struct bnxt_re_pd_resp {
	__u32 pdid;
	__u32 pdid;
	__u32 dpi;
	__u32 dpi;
	__u64 dbr;
	__u64 dbr;
};
} __attribute__((packed, aligned(4)));


struct bnxt_re_cq_req {
struct bnxt_re_cq_req {
	__u64 cq_va;
	__u64 cq_va;