]> git.baikalelectronics.ru Git - kernel.git/commit
bnxt_en: Fix the 'Invalid VF' id check in bnxt_vf_ndo_prep routine.
authorVenkat Duvvuru <venkatkumar.duvvuru@broadcom.com>
Thu, 4 Jan 2018 23:46:55 +0000 (18:46 -0500)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Jan 2018 19:13:45 +0000 (14:13 -0500)
commit8d7f79b411dc97cfd12fa9f5df8de12f2dbf4601
tree1022901b77f6602dc0778c78868c7f82d341ecef
parentf540359d28f01800a6f7458dbb91df6083e6f446
bnxt_en: Fix the 'Invalid VF' id check in bnxt_vf_ndo_prep routine.

In bnxt_vf_ndo_prep (which is called by bnxt_get_vf_config ndo), there is a
check for "Invalid VF id". Currently, the check is done against max_vfs.
However, the user doesn't always create max_vfs. So, the check should be
against the created number of VFs. The number of bnxt_vf_info structures
that are allocated in bnxt_alloc_vf_resources routine is the "number of
requested VFs". So, if an "invalid VF id" falls between the requested
number of VFs and the max_vfs, the driver will be dereferencing an invalid
pointer.

Fixes: 93658deae41f ("bnxt_en: New Broadcom ethernet driver.")
Signed-off-by: Venkat Devvuru <venkatkumar.duvvuru@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c