nexthop: Assert the invariant that a NH group is of only one type
authorPetr Machata <petrm@nvidia.com>
Thu, 28 Jan 2021 12:49:16 +0000 (13:49 +0100)
committerJakub Kicinski <kuba@kernel.org>
Fri, 29 Jan 2021 04:49:51 +0000 (20:49 -0800)
Most of the code that deals with nexthop groups relies on the fact that the
group is of exactly one well-known type. Currently there is only one type,
"mpath", but as more next-hop group types come, it becomes desirable to
have a central place where the setting is validated. Introduce such place
into nexthop_create_group(), such that the check is done before the code
that relies on that invariant is invoked.

Signed-off-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ipv4/nexthop.c

index 7a30df5aea75544823cff516ff35b966245b3277..c09b8231f56ae34d9f9f0fc33a0251382ed155a5 100644 (file)
@@ -1466,10 +1466,13 @@ static struct nexthop *nexthop_create_group(struct net *net,
                nhg->nh_entries[i].nh_parent = nh;
        }
 
-       if (cfg->nh_grp_type == NEXTHOP_GRP_TYPE_MPATH) {
+       if (cfg->nh_grp_type == NEXTHOP_GRP_TYPE_MPATH)
                nhg->mpath = 1;
+
+       WARN_ON_ONCE(nhg->mpath != 1);
+
+       if (nhg->mpath)
                nh_group_rebalance(nhg);
-       }
 
        if (cfg->nh_fdb)
                nhg->fdb_nh = 1;