diff options
author | Julian Wiedmann <[email protected]> | 2021-11-26 18:55:43 +0100 |
---|---|---|
committer | Jakub Kicinski <[email protected]> | 2021-11-26 11:17:47 -0800 |
commit | 0276af2176c78771da7f311621a25d7608045827 (patch) | |
tree | 06475cc9bb118ed3cdc85bc8ec51391df235f7b9 /net/unix | |
parent | c26381f97e2a7df43826150dc7d4c207bd6794a5 (diff) |
ethtool: ioctl: fix potential NULL deref in ethtool_set_coalesce()
ethtool_set_coalesce() now uses both the .get_coalesce() and
.set_coalesce() callbacks. But the check for their availability is
buggy, so changing the coalesce settings on a device where the driver
provides only _one_ of the callbacks results in a NULL pointer
dereference instead of an -EOPNOTSUPP.
Fix the condition so that the availability of both callbacks is
ensured. This also matches the netlink code.
Note that reproducing this requires some effort - it only affects the
legacy ioctl path, and needs a specific combination of driver options:
- have .get_coalesce() and .coalesce_supported but no
.set_coalesce(), or
- have .set_coalesce() but no .get_coalesce(). Here eg. ethtool doesn't
cause the crash as it first attempts to call ethtool_get_coalesce()
and bails out on error.
Fixes: f3ccfda19319 ("ethtool: extend coalesce setting uAPI with CQE mode")
Cc: Yufeng Mo <[email protected]>
Cc: Huazhong Tan <[email protected]>
Cc: Andrew Lunn <[email protected]>
Cc: Heiner Kallweit <[email protected]>
Signed-off-by: Julian Wiedmann <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'net/unix')
0 files changed, 0 insertions, 0 deletions