2008-04-13 06:12:13 +00:00
|
|
|
/* $KAME: radix_mpath.c,v 1.17 2004/11/08 10:29:39 itojun Exp $ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 WIDE Project.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
* THE AUTHORS DO NOT GUARANTEE THAT THIS SOFTWARE DOES NOT INFRINGE
|
|
|
|
* ANY OTHERS' INTELLECTUAL PROPERTIES. IN NO EVENT SHALL THE AUTHORS
|
|
|
|
* BE LIABLE FOR ANY INFRINGEMENT OF ANY OTHERS' INTELLECTUAL
|
|
|
|
* PROPERTIES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2008-11-05 11:54:56 +00:00
|
|
|
#include "opt_inet.h"
|
2008-04-13 23:04:46 +00:00
|
|
|
#include "opt_inet6.h"
|
|
|
|
|
2008-04-13 06:12:13 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/domain.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <net/radix.h>
|
|
|
|
#include <net/radix_mpath.h>
|
|
|
|
#include <net/route.h>
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
#include <net/route_var.h>
|
2008-04-13 06:12:13 +00:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_var.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* give some jitter to hash, to avoid synchronization between routers
|
|
|
|
*/
|
2008-11-11 09:40:27 +00:00
|
|
|
static uint32_t hashjitter;
|
2008-04-13 06:12:13 +00:00
|
|
|
|
|
|
|
int
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
rt_mpath_capable(struct rib_head *rnh)
|
2008-04-13 06:12:13 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
return rnh->rnh_multipath;
|
|
|
|
}
|
|
|
|
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
int
|
|
|
|
rn_mpath_capable(struct radix_head *rh)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (rt_mpath_capable((struct rib_head *)rh));
|
|
|
|
}
|
|
|
|
|
2008-04-13 06:12:13 +00:00
|
|
|
struct radix_node *
|
|
|
|
rn_mpath_next(struct radix_node *rn)
|
|
|
|
{
|
|
|
|
struct radix_node *next;
|
|
|
|
|
|
|
|
if (!rn->rn_dupedkey)
|
|
|
|
return NULL;
|
|
|
|
next = rn->rn_dupedkey;
|
|
|
|
if (rn->rn_mask == next->rn_mask)
|
|
|
|
return next;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-04-14 23:05:36 +00:00
|
|
|
uint32_t
|
2008-04-13 06:12:13 +00:00
|
|
|
rn_mpath_count(struct radix_node *rn)
|
|
|
|
{
|
2009-04-14 23:05:36 +00:00
|
|
|
uint32_t i = 0;
|
|
|
|
struct rtentry *rt;
|
|
|
|
|
|
|
|
while (rn != NULL) {
|
|
|
|
rt = (struct rtentry *)rn;
|
2014-03-05 01:17:47 +00:00
|
|
|
i += rt->rt_weight;
|
2009-04-14 23:05:36 +00:00
|
|
|
rn = rn_mpath_next(rn);
|
|
|
|
}
|
|
|
|
return (i);
|
2008-04-13 06:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct rtentry *
|
|
|
|
rt_mpath_matchgate(struct rtentry *rt, struct sockaddr *gate)
|
|
|
|
{
|
|
|
|
struct radix_node *rn;
|
|
|
|
|
2011-08-25 04:31:20 +00:00
|
|
|
if (!gate || !rt->rt_gateway)
|
2008-04-13 06:12:13 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* beyond here, we use rn as the master copy */
|
|
|
|
rn = (struct radix_node *)rt;
|
|
|
|
do {
|
|
|
|
rt = (struct rtentry *)rn;
|
|
|
|
/*
|
|
|
|
* we are removing an address alias that has
|
|
|
|
* the same prefix as another address
|
|
|
|
* we need to compare the interface address because
|
|
|
|
* rt_gateway is a special sockadd_dl structure
|
|
|
|
*/
|
|
|
|
if (rt->rt_gateway->sa_family == AF_LINK) {
|
|
|
|
if (!memcmp(rt->rt_ifa->ifa_addr, gate, gate->sa_len))
|
|
|
|
break;
|
|
|
|
}
|
2014-01-06 22:36:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for other options:
|
|
|
|
* 1) Routes with 'real' IPv4/IPv6 gateway
|
|
|
|
* 2) Loopback host routes (another AF_LINK/sockadd_dl check)
|
|
|
|
* */
|
|
|
|
if (rt->rt_gateway->sa_len == gate->sa_len &&
|
|
|
|
!memcmp(rt->rt_gateway, gate, gate->sa_len))
|
|
|
|
break;
|
2008-04-13 06:12:13 +00:00
|
|
|
} while ((rn = rn_mpath_next(rn)) != NULL);
|
|
|
|
|
|
|
|
return (struct rtentry *)rn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* go through the chain and unlink "rt" from the list
|
|
|
|
* the caller will free "rt"
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
rt_mpath_deldup(struct rtentry *headrt, struct rtentry *rt)
|
|
|
|
{
|
|
|
|
struct radix_node *t, *tt;
|
|
|
|
|
|
|
|
if (!headrt || !rt)
|
|
|
|
return (0);
|
|
|
|
t = (struct radix_node *)headrt;
|
|
|
|
tt = rn_mpath_next(t);
|
|
|
|
while (tt) {
|
|
|
|
if (tt == (struct radix_node *)rt) {
|
|
|
|
t->rn_dupedkey = tt->rn_dupedkey;
|
|
|
|
tt->rn_dupedkey = NULL;
|
|
|
|
tt->rn_flags &= ~RNF_ACTIVE;
|
|
|
|
tt[1].rn_flags &= ~RNF_ACTIVE;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
t = tt;
|
|
|
|
tt = rn_mpath_next((struct radix_node *)t);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check if we have the same key/mask/gateway on the table already.
|
2014-01-04 22:25:26 +00:00
|
|
|
* Assume @rt rt_key host bits are cleared according to @netmask
|
2008-04-13 06:12:13 +00:00
|
|
|
*/
|
|
|
|
int
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
rt_mpath_conflict(struct rib_head *rnh, struct rtentry *rt,
|
2008-04-13 06:12:13 +00:00
|
|
|
struct sockaddr *netmask)
|
|
|
|
{
|
|
|
|
struct radix_node *rn, *rn1;
|
|
|
|
struct rtentry *rt1;
|
|
|
|
|
|
|
|
rn = (struct radix_node *)rt;
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
rn1 = rnh->rnh_lookup(rt_key(rt), netmask, &rnh->head);
|
2008-04-13 06:12:13 +00:00
|
|
|
if (!rn1 || rn1->rn_flags & RNF_ROOT)
|
2014-01-04 22:25:26 +00:00
|
|
|
return (0);
|
2008-04-13 06:12:13 +00:00
|
|
|
|
2014-01-04 22:25:26 +00:00
|
|
|
/* key/mask are the same. compare gateway for all multipaths */
|
2008-04-13 06:12:13 +00:00
|
|
|
do {
|
|
|
|
rt1 = (struct rtentry *)rn1;
|
|
|
|
|
|
|
|
/* sanity: no use in comparing the same thing */
|
|
|
|
if (rn1 == rn)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (rt1->rt_gateway->sa_family == AF_LINK) {
|
|
|
|
if (rt1->rt_ifa->ifa_addr->sa_len != rt->rt_ifa->ifa_addr->sa_len ||
|
|
|
|
bcmp(rt1->rt_ifa->ifa_addr, rt->rt_ifa->ifa_addr,
|
|
|
|
rt1->rt_ifa->ifa_addr->sa_len))
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
if (rt1->rt_gateway->sa_len != rt->rt_gateway->sa_len ||
|
|
|
|
bcmp(rt1->rt_gateway, rt->rt_gateway,
|
|
|
|
rt1->rt_gateway->sa_len))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* all key/mask/gateway are the same. conflicting entry. */
|
2014-01-04 22:25:26 +00:00
|
|
|
return (EEXIST);
|
2008-04-13 06:12:13 +00:00
|
|
|
} while ((rn1 = rn_mpath_next(rn1)) != NULL);
|
|
|
|
|
2014-01-04 22:25:26 +00:00
|
|
|
return (0);
|
2008-04-13 06:12:13 +00:00
|
|
|
}
|
|
|
|
|
2016-01-11 08:45:28 +00:00
|
|
|
static struct rtentry *
|
|
|
|
rt_mpath_selectrte(struct rtentry *rte, uint32_t hash)
|
2008-04-13 06:12:13 +00:00
|
|
|
{
|
|
|
|
struct radix_node *rn0, *rn;
|
2016-01-15 13:47:11 +00:00
|
|
|
uint32_t total_weight;
|
2009-04-14 23:05:36 +00:00
|
|
|
struct rtentry *rt;
|
|
|
|
int64_t weight;
|
2008-04-13 06:12:13 +00:00
|
|
|
|
2016-01-11 08:45:28 +00:00
|
|
|
/* beyond here, we use rn as the master copy */
|
|
|
|
rn0 = rn = (struct radix_node *)rte;
|
2016-01-15 13:47:11 +00:00
|
|
|
rt = rte;
|
2016-01-11 08:45:28 +00:00
|
|
|
|
|
|
|
/* gw selection by Modulo-N Hash (RFC2991) XXX need improvement? */
|
2016-01-15 13:47:11 +00:00
|
|
|
total_weight = rn_mpath_count(rn0);
|
2016-01-11 08:45:28 +00:00
|
|
|
hash += hashjitter;
|
2016-01-15 13:47:11 +00:00
|
|
|
hash %= total_weight;
|
|
|
|
for (weight = abs((int32_t)hash);
|
|
|
|
rt != NULL && weight >= rt->rt_weight;
|
2016-04-26 20:27:17 +00:00
|
|
|
weight -= (rt == NULL) ? 0 : rt->rt_weight) {
|
2016-01-11 08:45:28 +00:00
|
|
|
|
|
|
|
/* stay within the multipath routes */
|
|
|
|
if (rn->rn_dupedkey && rn->rn_mask != rn->rn_dupedkey->rn_mask)
|
|
|
|
break;
|
|
|
|
rn = rn->rn_dupedkey;
|
|
|
|
rt = (struct rtentry *)rn;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rt);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct rtentry *
|
|
|
|
rt_mpath_select(struct rtentry *rte, uint32_t hash)
|
|
|
|
{
|
|
|
|
if (rn_mpath_next((struct radix_node *)rte) == NULL)
|
|
|
|
return (rte);
|
|
|
|
|
|
|
|
return (rt_mpath_selectrte(rte, hash));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rtalloc_mpath_fib(struct route *ro, uint32_t hash, u_int fibnum)
|
|
|
|
{
|
|
|
|
struct rtentry *rt;
|
|
|
|
|
2008-04-13 06:12:13 +00:00
|
|
|
/*
|
|
|
|
* XXX we don't attempt to lookup cached route again; what should
|
|
|
|
* be done for sendto(3) case?
|
|
|
|
*/
|
2010-03-09 01:11:45 +00:00
|
|
|
if (ro->ro_rt && ro->ro_rt->rt_ifp && (ro->ro_rt->rt_flags & RTF_UP)
|
|
|
|
&& RT_LINK_IS_UP(ro->ro_rt->rt_ifp))
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
return;
|
|
|
|
ro->ro_rt = rtalloc1_fib(&ro->ro_dst, 1, 0, fibnum);
|
2008-04-13 06:12:13 +00:00
|
|
|
|
|
|
|
/* if the route does not exist or it is not multipath, don't care */
|
2008-04-24 05:04:52 +00:00
|
|
|
if (ro->ro_rt == NULL)
|
|
|
|
return;
|
|
|
|
if (rn_mpath_next((struct radix_node *)ro->ro_rt) == NULL) {
|
2008-04-13 06:12:13 +00:00
|
|
|
RT_UNLOCK(ro->ro_rt);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-11 08:45:28 +00:00
|
|
|
rt = rt_mpath_selectrte(ro->ro_rt, hash);
|
2008-04-13 06:12:13 +00:00
|
|
|
/* XXX try filling rt_gwroute and avoid unreachable gw */
|
|
|
|
|
2009-04-14 23:05:36 +00:00
|
|
|
/* gw selection has failed - there must be only zero weight routes */
|
2016-01-11 08:45:28 +00:00
|
|
|
if (!rt) {
|
2008-04-13 06:12:13 +00:00
|
|
|
RT_UNLOCK(ro->ro_rt);
|
2009-04-14 23:05:36 +00:00
|
|
|
ro->ro_rt = NULL;
|
2008-04-13 06:12:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-04-14 23:05:36 +00:00
|
|
|
if (ro->ro_rt != rt) {
|
|
|
|
RTFREE_LOCKED(ro->ro_rt);
|
2016-01-11 08:45:28 +00:00
|
|
|
ro->ro_rt = rt;
|
2009-04-14 23:05:36 +00:00
|
|
|
RT_LOCK(ro->ro_rt);
|
|
|
|
RT_ADDREF(ro->ro_rt);
|
|
|
|
|
|
|
|
}
|
2008-04-13 06:12:13 +00:00
|
|
|
RT_UNLOCK(ro->ro_rt);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern int in6_inithead(void **head, int off);
|
|
|
|
extern int in_inithead(void **head, int off);
|
|
|
|
|
2008-11-05 11:54:56 +00:00
|
|
|
#ifdef INET
|
2008-04-13 06:12:13 +00:00
|
|
|
int
|
|
|
|
rn4_mpath_inithead(void **head, int off)
|
|
|
|
{
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
struct rib_head *rnh;
|
2008-04-13 06:12:13 +00:00
|
|
|
|
|
|
|
hashjitter = arc4random();
|
|
|
|
if (in_inithead(head, off) == 1) {
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
rnh = (struct rib_head *)*head;
|
2008-04-13 06:12:13 +00:00
|
|
|
rnh->rnh_multipath = 1;
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
2008-11-05 11:54:56 +00:00
|
|
|
#endif
|
2008-04-13 06:12:13 +00:00
|
|
|
|
2008-04-13 21:38:05 +00:00
|
|
|
#ifdef INET6
|
2008-04-13 06:12:13 +00:00
|
|
|
int
|
|
|
|
rn6_mpath_inithead(void **head, int off)
|
|
|
|
{
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
struct rib_head *rnh;
|
2008-04-13 06:12:13 +00:00
|
|
|
|
|
|
|
hashjitter = arc4random();
|
|
|
|
if (in6_inithead(head, off) == 1) {
|
MFP r287070,r287073: split radix implementation and route table structure.
There are number of radix consumers in kernel land (pf,ipfw,nfs,route)
with different requirements. In fact, first 3 don't have _any_ requirements
and first 2 does not use radix locking. On the other hand, routing
structure do have these requirements (rnh_gen, multipath, custom
to-be-added control plane functions, different locking).
Additionally, radix should not known anything about its consumers internals.
So, radix code now uses tiny 'struct radix_head' structure along with
internal 'struct radix_mask_head' instead of 'struct radix_node_head'.
Existing consumers still uses the same 'struct radix_node_head' with
slight modifications: they need to pass pointer to (embedded)
'struct radix_head' to all radix callbacks.
Routing code now uses new 'struct rib_head' with different locking macro:
RADIX_NODE_HEAD prefix was renamed to RIB_ (which stands for routing
information base).
New net/route_var.h header was added to hold routing subsystem internal
data. 'struct rib_head' was placed there. 'struct rtentry' will also
be moved there soon.
2016-01-25 06:33:15 +00:00
|
|
|
rnh = (struct rib_head *)*head;
|
2008-04-13 06:12:13 +00:00
|
|
|
rnh->rnh_multipath = 1;
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-13 21:38:05 +00:00
|
|
|
#endif
|