diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c index eefc346df752bf696242c649b84f7be974b99e6e..4fb03094ab78fba5a31b0a5f22e164abec41ea0b 100644 --- a/net/ipv4/fib_semantics.c +++ b/net/ipv4/fib_semantics.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -1019,6 +1020,7 @@ bool fib_metrics_match(struct fib_config *cfg, struct fib_info *fi) if (type > RTAX_MAX) return false; + type = array_index_nospec(type, RTAX_MAX + 1); if (type == RTAX_CC_ALGO) { char tmp[TCP_CA_NAME_MAX]; bool ecn_ca = false;