Skip to content

Commit 2d47fba

Browse files
mmarcinijgunthorpe
authored andcommitted
RDMA/core: Ensure security pkey modify is not lost
The following modify sequence (loosely based on ipoib) will lose a pkey modifcation: - Modify (pkey index, port) - Modify (new pkey index, NO port) After the first modify, the qp_pps list will have saved the pkey and the unit on the main list. During the second modify, get_new_pps() will fetch the port from qp_pps and read the new pkey index from qp_attr->pkey_index. The state will still be zero, or IB_PORT_PKEY_NOT_VALID. Because of the invalid state, the new values will never replace the one in the qp pps list, losing the new pkey. This happens because the following if statements will never correct the state because the first term will be false. If the code had been executed, it would incorrectly overwrite valid values. if ((qp_attr_mask & IB_QP_PKEY_INDEX) && (qp_attr_mask & IB_QP_PORT)) new_pps->main.state = IB_PORT_PKEY_VALID; if (!(qp_attr_mask & (IB_QP_PKEY_INDEX | IB_QP_PORT)) && qp_pps) { new_pps->main.port_num = qp_pps->main.port_num; new_pps->main.pkey_index = qp_pps->main.pkey_index; if (qp_pps->main.state != IB_PORT_PKEY_NOT_VALID) new_pps->main.state = IB_PORT_PKEY_VALID; } Fix by joining the two if statements with an or test to see if qp_pps is non-NULL and in the correct state. Fixes: 1dd0178 ("RDMA/core: Fix protection fault in get_pkey_idx_qp_list") Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Kaike Wan <[email protected]> Signed-off-by: Mike Marciniszyn <[email protected]> Reviewed-by: Leon Romanovsky <[email protected]> Signed-off-by: Jason Gunthorpe <[email protected]>
1 parent 1fa7077 commit 2d47fba

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

drivers/infiniband/core/security.c

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -349,16 +349,11 @@ static struct ib_ports_pkeys *get_new_pps(const struct ib_qp *qp,
349349
else if (qp_pps)
350350
new_pps->main.pkey_index = qp_pps->main.pkey_index;
351351

352-
if ((qp_attr_mask & IB_QP_PKEY_INDEX) && (qp_attr_mask & IB_QP_PORT))
352+
if (((qp_attr_mask & IB_QP_PKEY_INDEX) &&
353+
(qp_attr_mask & IB_QP_PORT)) ||
354+
(qp_pps && qp_pps->main.state != IB_PORT_PKEY_NOT_VALID))
353355
new_pps->main.state = IB_PORT_PKEY_VALID;
354356

355-
if (!(qp_attr_mask & (IB_QP_PKEY_INDEX | IB_QP_PORT)) && qp_pps) {
356-
new_pps->main.port_num = qp_pps->main.port_num;
357-
new_pps->main.pkey_index = qp_pps->main.pkey_index;
358-
if (qp_pps->main.state != IB_PORT_PKEY_NOT_VALID)
359-
new_pps->main.state = IB_PORT_PKEY_VALID;
360-
}
361-
362357
if (qp_attr_mask & IB_QP_ALT_PATH) {
363358
new_pps->alt.port_num = qp_attr->alt_port_num;
364359
new_pps->alt.pkey_index = qp_attr->alt_pkey_index;

0 commit comments

Comments
 (0)