summaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorNick Child <nnac123@linux.ibm.com>2023-03-21 10:07:24 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-05-30 12:42:08 +0100
commit3e750733375cb59cd049de7b38713122cec995c4 (patch)
tree0c21089a706916037289fc9ce85276c492491089 /net/core
parent8175003163986b0b3ca6453cba13ca2a75dd8299 (diff)
downloadlinux-stable-3e750733375cb59cd049de7b38713122cec995c4.tar.gz
linux-stable-3e750733375cb59cd049de7b38713122cec995c4.tar.bz2
linux-stable-3e750733375cb59cd049de7b38713122cec995c4.zip
net: Catch invalid index in XPS mapping
[ Upstream commit 5dd0dfd55baec0742ba8f5625a0dd064aca7db16 ] When setting the XPS value of a TX queue, warn the user once if the index of the queue is greater than the number of allocated TX queues. Previously, this scenario went uncaught. In the best case, it resulted in unnecessary allocations. In the worst case, it resulted in out-of-bounds memory references through calls to `netdev_get_tx_queue( dev, index)`. Therefore, it is important to inform the user but not worth returning an error and risk downing the netdevice. Signed-off-by: Nick Child <nnac123@linux.ibm.com> Reviewed-by: Piotr Raczynski <piotr.raczynski@intel.com> Link: https://lore.kernel.org/r/20230321150725.127229-1-nnac123@linux.ibm.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/dev.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index b778f3596543..03903d3f1d69 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2303,6 +2303,8 @@ int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
bool active = false;
unsigned int nr_ids;
+ WARN_ON_ONCE(index >= dev->num_tx_queues);
+
if (dev->num_tc) {
/* Do not allow XPS on subordinate device directly */
num_tc = dev->num_tc;