Skip to content

Commit

Permalink
net/sfc: validate queue span when parsing flow action RSS
Browse files Browse the repository at this point in the history
[ upstream commit 667151a ]

The current code silently shrinks the value if it exceeds
the supported maximum. Do not do that. Validate the value.

Fixes: d77d073 ("net/sfc: support flow API RSS action")

Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru>
Reviewed-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
  • Loading branch information
ol-ivanmal authored and kevintraynor committed Feb 21, 2022
1 parent c935f27 commit 4599a61
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/net/sfc/sfc_flow.c
Expand Up @@ -1477,6 +1477,9 @@ sfc_flow_parse_rss(struct sfc_adapter *sa,
rxq_hw_index_max = rxq->hw_index;
}

if (rxq_hw_index_max - rxq_hw_index_min + 1 > EFX_MAXRSS)
return -EINVAL;

switch (action_rss->func) {
case RTE_ETH_HASH_FUNCTION_DEFAULT:
case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
Expand Down Expand Up @@ -1612,9 +1615,8 @@ sfc_flow_filter_insert(struct sfc_adapter *sa,
uint8_t *rss_key;

if (spec_filter->rss) {
rss_spread = MIN(flow_rss->rxq_hw_index_max -
flow_rss->rxq_hw_index_min + 1,
EFX_MAXRSS);
rss_spread = flow_rss->rxq_hw_index_max -
flow_rss->rxq_hw_index_min + 1;
rss_hash_types = flow_rss->rss_hash_types;
rss_key = flow_rss->rss_key;
} else {
Expand Down

0 comments on commit 4599a61

Please sign in to comment.