]> git.baikalelectronics.ru Git - kernel.git/commit
ipv4: prevent potential spectre v1 gadget in fib_metrics_match()
authorEric Dumazet <edumazet@google.com>
Fri, 20 Jan 2023 13:31:40 +0000 (13:31 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Feb 2023 06:52:45 +0000 (07:52 +0100)
commitf165fa812256ceaf3ab08bb460ad63423704915e
treec0a6bb856cf35b04b2c97973b5bb2bb1afad109d
parent54267467b4bb1615a3a62cabe147daebd2cd5b29
ipv4: prevent potential spectre v1 gadget in fib_metrics_match()

[ Upstream commit 5e9398a26a92fc402d82ce1f97cc67d832527da0 ]

if (!type)
        continue;
    if (type > RTAX_MAX)
        return false;
    ...
    fi_val = fi->fib_metrics->metrics[type - 1];

@type being used as an array index, we need to prevent
cpu speculation or risk leaking kernel memory content.

Fixes: d0e08e34fcac ("ipv4: do metrics match when looking up and deleting a route")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://lore.kernel.org/r/20230120133140.3624204-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/ipv4/fib_semantics.c