Skip to content

Commit

Permalink
scsi: be2iscsi: Add length check when parsing nlattrs
Browse files Browse the repository at this point in the history
beiscsi_iface_set_param() parses nlattr with nla_for_each_attr and assumes
every attributes can be viewed as struct iscsi_iface_param_info.

This is not true because there is no any nla_policy to validate the
attributes passed from the upper function iscsi_set_iface_params().

Add the nla_len check before accessing the nlattr data and return EINVAL if
the length check fails.

Fixes: 0e43895 ("[SCSI] be2iscsi: adding functionality to change network settings using iscsiadm")
Signed-off-by: Lin Ma <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Chris Leech <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
  • Loading branch information
f0rm2l1n authored and martinkpetersen committed Jul 26, 2023
1 parent ce51c81 commit ee0268f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers/scsi/be2iscsi/be_iscsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@ int beiscsi_iface_set_param(struct Scsi_Host *shost,
}

nla_for_each_attr(attrib, data, dt_len, rm_len) {
/* ignore nla_type as it is never used */
if (nla_len(attrib) < sizeof(*iface_param))
return -EINVAL;

iface_param = nla_data(attrib);

if (iface_param->param_type != ISCSI_NET_PARAM)
Expand Down

0 comments on commit ee0268f

Please sign in to comment.