2008-01-02 23:26:11 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1983, 1988, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*/
|
|
|
|
|
1995-01-23 20:19:16 +00:00
|
|
|
#if 0
|
2004-07-26 20:18:11 +00:00
|
|
|
#ifndef lint
|
1996-01-14 23:33:13 +00:00
|
|
|
static char sccsid[] = "From: @(#)route.c 8.6 (Berkeley) 4/28/95";
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif /* not lint */
|
2004-07-26 20:18:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
2007-07-16 17:15:55 +00:00
|
|
|
#include <sys/socketvar.h>
|
2015-04-07 05:50:45 +00:00
|
|
|
#include <sys/sysctl.h>
|
1996-12-10 17:11:53 +00:00
|
|
|
#include <sys/time.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-04-06 10:02:20 +00:00
|
|
|
#include <net/ethernet.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_types.h>
|
|
|
|
#include <net/route.h>
|
|
|
|
|
1996-06-08 00:20:42 +00:00
|
|
|
#include <netinet/in.h>
|
1999-10-21 09:06:11 +00:00
|
|
|
#include <netgraph/ng_socket.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
#include <arpa/inet.h>
|
2013-12-18 18:25:27 +00:00
|
|
|
#include <ifaddrs.h>
|
2001-03-14 20:51:26 +00:00
|
|
|
#include <libutil.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <netdb.h>
|
2017-01-05 09:23:54 +00:00
|
|
|
#include <stdbool.h>
|
2006-07-28 16:09:19 +00:00
|
|
|
#include <stdint.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-02-21 23:47:20 +00:00
|
|
|
#include <stdbool.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <string.h>
|
2006-07-06 11:59:27 +00:00
|
|
|
#include <sysexits.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <unistd.h>
|
1995-01-23 20:19:16 +00:00
|
|
|
#include <err.h>
|
2015-02-21 23:47:20 +00:00
|
|
|
#include <libxo/xo.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "netstat.h"
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
#include "common.h"
|
2015-09-02 18:51:36 +00:00
|
|
|
#include "nl_defs.h"
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Definitions for showing gateway flags.
|
|
|
|
*/
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
struct bits rt_bits[] = {
|
2015-02-21 23:47:20 +00:00
|
|
|
{ RTF_UP, 'U', "up" },
|
|
|
|
{ RTF_GATEWAY, 'G', "gateway" },
|
|
|
|
{ RTF_HOST, 'H', "host" },
|
|
|
|
{ RTF_REJECT, 'R', "reject" },
|
|
|
|
{ RTF_DYNAMIC, 'D', "dynamic" },
|
|
|
|
{ RTF_MODIFIED, 'M', "modified" },
|
|
|
|
{ RTF_DONE, 'd', "done" }, /* Completed -- for routing msgs only */
|
|
|
|
{ RTF_XRESOLVE, 'X', "xresolve" },
|
|
|
|
{ RTF_STATIC, 'S', "static" },
|
|
|
|
{ RTF_PROTO1, '1', "proto1" },
|
|
|
|
{ RTF_PROTO2, '2', "proto2" },
|
|
|
|
{ RTF_PROTO3, '3', "proto3" },
|
|
|
|
{ RTF_BLACKHOLE,'B', "blackhole" },
|
|
|
|
{ RTF_BROADCAST,'b', "broadcast" },
|
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
|
|
|
#ifdef RTF_LLINFO
|
2015-02-21 23:47:20 +00:00
|
|
|
{ RTF_LLINFO, 'L', "llinfo" },
|
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
|
|
|
#endif
|
2015-02-21 23:47:20 +00:00
|
|
|
{ 0 , 0, NULL }
|
1994-05-27 12:33:43 +00:00
|
|
|
};
|
|
|
|
|
2013-12-18 18:25:27 +00:00
|
|
|
static struct ifmap_entry *ifmap;
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
static size_t ifmap_size;
|
2015-09-01 08:42:04 +00:00
|
|
|
static struct timespec uptime;
|
2006-07-06 11:59:27 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
static const char *netname4(in_addr_t, in_addr_t);
|
2016-08-27 11:06:06 +00:00
|
|
|
#ifdef INET6
|
2015-09-01 08:42:04 +00:00
|
|
|
static const char *netname6(struct sockaddr_in6 *, struct sockaddr_in6 *);
|
2016-08-27 11:06:06 +00:00
|
|
|
#endif
|
2013-12-20 12:08:36 +00:00
|
|
|
static void p_rtable_sysctl(int, int);
|
2015-02-21 23:47:20 +00:00
|
|
|
static void p_rtentry_sysctl(const char *name, struct rt_msghdr *);
|
2008-01-02 23:26:11 +00:00
|
|
|
static void p_flags(int, const char *);
|
2017-01-05 09:23:54 +00:00
|
|
|
static void domask(char *, size_t, u_long);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print routing tables.
|
|
|
|
*/
|
|
|
|
void
|
2013-12-20 00:17:26 +00:00
|
|
|
routepr(int fibnum, int af)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2008-09-01 15:04:38 +00:00
|
|
|
size_t intsize;
|
2013-12-20 12:08:36 +00:00
|
|
|
int numfibs;
|
Add code to allow the system to handle multiple routing tables.
This particular implementation is designed to be fully backwards compatible
and to be MFC-able to 7.x (and 6.x)
Currently the only protocol that can make use of the multiple tables is IPv4
Similar functionality exists in OpenBSD and Linux.
From my notes:
-----
One thing where FreeBSD has been falling behind, and which by chance I
have some time to work on is "policy based routing", which allows
different
packet streams to be routed by more than just the destination address.
Constraints:
------------
I want to make some form of this available in the 6.x tree
(and by extension 7.x) , but FreeBSD in general needs it so I might as
well do it in -current and back port the portions I need.
One of the ways that this can be done is to have the ability to
instantiate multiple kernel routing tables (which I will now
refer to as "Forwarding Information Bases" or "FIBs" for political
correctness reasons). Which FIB a particular packet uses to make
the next hop decision can be decided by a number of mechanisms.
The policies these mechanisms implement are the "Policies" referred
to in "Policy based routing".
One of the constraints I have if I try to back port this work to
6.x is that it must be implemented as a EXTENSION to the existing
ABIs in 6.x so that third party applications do not need to be
recompiled in timespan of the branch.
This first version will not have some of the bells and whistles that
will come with later versions. It will, for example, be limited to 16
tables in the first commit.
Implementation method, Compatible version. (part 1)
-------------------------------
For this reason I have implemented a "sufficient subset" of a
multiple routing table solution in Perforce, and back-ported it
to 6.x. (also in Perforce though not always caught up with what I
have done in -current/P4). The subset allows a number of FIBs
to be defined at compile time (8 is sufficient for my purposes in 6.x)
and implements the changes needed to allow IPV4 to use them. I have not
done the changes for ipv6 simply because I do not need it, and I do not
have enough knowledge of ipv6 (e.g. neighbor discovery) needed to do it.
Other protocol families are left untouched and should there be
users with proprietary protocol families, they should continue to work
and be oblivious to the existence of the extra FIBs.
To understand how this is done, one must know that the current FIB
code starts everything off with a single dimensional array of
pointers to FIB head structures (One per protocol family), each of
which in turn points to the trie of routes available to that family.
The basic change in the ABI compatible version of the change is to
extent that array to be a 2 dimensional array, so that
instead of protocol family X looking at rt_tables[X] for the
table it needs, it looks at rt_tables[Y][X] when for all
protocol families except ipv4 Y is always 0.
Code that is unaware of the change always just sees the first row
of the table, which of course looks just like the one dimensional
array that existed before.
The entry points rtrequest(), rtalloc(), rtalloc1(), rtalloc_ign()
are all maintained, but refer only to the first row of the array,
so that existing callers in proprietary protocols can continue to
do the "right thing".
Some new entry points are added, for the exclusive use of ipv4 code
called in_rtrequest(), in_rtalloc(), in_rtalloc1() and in_rtalloc_ign(),
which have an extra argument which refers the code to the correct row.
In addition, there are some new entry points (currently called
rtalloc_fib() and friends) that check the Address family being
looked up and call either rtalloc() (and friends) if the protocol
is not IPv4 forcing the action to row 0 or to the appropriate row
if it IS IPv4 (and that info is available). These are for calling
from code that is not specific to any particular protocol. The way
these are implemented would change in the non ABI preserving code
to be added later.
One feature of the first version of the code is that for ipv4,
the interface routes show up automatically on all the FIBs, so
that no matter what FIB you select you always have the basic
direct attached hosts available to you. (rtinit() does this
automatically).
You CAN delete an interface route from one FIB should you want
to but by default it's there. ARP information is also available
in each FIB. It's assumed that the same machine would have the
same MAC address, regardless of which FIB you are using to get
to it.
This brings us as to how the correct FIB is selected for an outgoing
IPV4 packet.
Firstly, all packets have a FIB associated with them. if nothing
has been done to change it, it will be FIB 0. The FIB is changed
in the following ways.
Packets fall into one of a number of classes.
1/ locally generated packets, coming from a socket/PCB.
Such packets select a FIB from a number associated with the
socket/PCB. This in turn is inherited from the process,
but can be changed by a socket option. The process in turn
inherits it on fork. I have written a utility call setfib
that acts a bit like nice..
setfib -3 ping target.example.com # will use fib 3 for ping.
It is an obvious extension to make it a property of a jail
but I have not done so. It can be achieved by combining the setfib and
jail commands.
2/ packets received on an interface for forwarding.
By default these packets would use table 0,
(or possibly a number settable in a sysctl(not yet)).
but prior to routing the firewall can inspect them (see below).
(possibly in the future you may be able to associate a FIB
with packets received on an interface.. An ifconfig arg, but not yet.)
3/ packets inspected by a packet classifier, which can arbitrarily
associate a fib with it on a packet by packet basis.
A fib assigned to a packet by a packet classifier
(such as ipfw) would over-ride a fib associated by
a more default source. (such as cases 1 or 2).
4/ a tcp listen socket associated with a fib will generate
accept sockets that are associated with that same fib.
5/ Packets generated in response to some other packet (e.g. reset
or icmp packets). These should use the FIB associated with the
packet being reponded to.
6/ Packets generated during encapsulation.
gif, tun and other tunnel interfaces will encapsulate using the FIB
that was in effect withthe proces that set up the tunnel.
thus setfib 1 ifconfig gif0 [tunnel instructions]
will set the fib for the tunnel to use to be fib 1.
Routing messages would be associated with their
process, and thus select one FIB or another.
messages from the kernel would be associated with the fib they
refer to and would only be received by a routing socket associated
with that fib. (not yet implemented)
In addition Netstat has been edited to be able to cope with the
fact that the array is now 2 dimensional. (It looks in system
memory using libkvm (!)). Old versions of netstat see only the first FIB.
In addition two sysctls are added to give:
a) the number of FIBs compiled in (active)
b) the default FIB of the calling process.
Early testing experience:
-------------------------
Basically our (IronPort's) appliance does this functionality already
using ipfw fwd but that method has some drawbacks.
For example,
It can't fully simulate a routing table because it can't influence the
socket's choice of local address when a connect() is done.
Testing during the generating of these changes has been
remarkably smooth so far. Multiple tables have co-existed
with no notable side effects, and packets have been routes
accordingly.
ipfw has grown 2 new keywords:
setfib N ip from anay to any
count ip from any to any fib N
In pf there seems to be a requirement to be able to give symbolic names to the
fibs but I do not have that capacity. I am not sure if it is required.
SCTP has interestingly enough built in support for this, called VRFs
in Cisco parlance. it will be interesting to see how that handles it
when it suddenly actually does something.
Where to next:
--------------------
After committing the ABI compatible version and MFCing it, I'd
like to proceed in a forward direction in -current. this will
result in some roto-tilling in the routing code.
Firstly: the current code's idea of having a separate tree per
protocol family, all of the same format, and pointed to by the
1 dimensional array is a bit silly. Especially when one considers that
there is code that makes assumptions about every protocol having the
same internal structures there. Some protocols don't WANT that
sort of structure. (for example the whole idea of a netmask is foreign
to appletalk). This needs to be made opaque to the external code.
My suggested first change is to add routing method pointers to the
'domain' structure, along with information pointing the data.
instead of having an array of pointers to uniform structures,
there would be an array pointing to the 'domain' structures
for each protocol address domain (protocol family),
and the methods this reached would be called. The methods would have
an argument that gives FIB number, but the protocol would be free
to ignore it.
When the ABI can be changed it raises the possibilty of the
addition of a fib entry into the "struct route". Currently,
the structure contains the sockaddr of the desination, and the resulting
fib entry. To make this work fully, one could add a fib number
so that given an address and a fib, one can find the third element, the
fib entry.
Interaction with the ARP layer/ LL layer would need to be
revisited as well. Qing Li has been working on this already.
This work was sponsored by Ironport Systems/Cisco
PR:
Reviewed by: several including rwatson, bz and mlair (parts each)
Approved by:
Obtained from: Ironport systems/Cisco
MFC after:
Security:
2008-05-09 23:00:22 +00:00
|
|
|
|
2015-04-07 05:50:45 +00:00
|
|
|
if (live == 0)
|
|
|
|
return;
|
|
|
|
|
2008-05-10 09:22:17 +00:00
|
|
|
intsize = sizeof(int);
|
2013-07-12 17:11:30 +00:00
|
|
|
if (fibnum == -1 &&
|
|
|
|
sysctlbyname("net.my_fibnum", &fibnum, &intsize, NULL, 0) == -1)
|
Add code to allow the system to handle multiple routing tables.
This particular implementation is designed to be fully backwards compatible
and to be MFC-able to 7.x (and 6.x)
Currently the only protocol that can make use of the multiple tables is IPv4
Similar functionality exists in OpenBSD and Linux.
From my notes:
-----
One thing where FreeBSD has been falling behind, and which by chance I
have some time to work on is "policy based routing", which allows
different
packet streams to be routed by more than just the destination address.
Constraints:
------------
I want to make some form of this available in the 6.x tree
(and by extension 7.x) , but FreeBSD in general needs it so I might as
well do it in -current and back port the portions I need.
One of the ways that this can be done is to have the ability to
instantiate multiple kernel routing tables (which I will now
refer to as "Forwarding Information Bases" or "FIBs" for political
correctness reasons). Which FIB a particular packet uses to make
the next hop decision can be decided by a number of mechanisms.
The policies these mechanisms implement are the "Policies" referred
to in "Policy based routing".
One of the constraints I have if I try to back port this work to
6.x is that it must be implemented as a EXTENSION to the existing
ABIs in 6.x so that third party applications do not need to be
recompiled in timespan of the branch.
This first version will not have some of the bells and whistles that
will come with later versions. It will, for example, be limited to 16
tables in the first commit.
Implementation method, Compatible version. (part 1)
-------------------------------
For this reason I have implemented a "sufficient subset" of a
multiple routing table solution in Perforce, and back-ported it
to 6.x. (also in Perforce though not always caught up with what I
have done in -current/P4). The subset allows a number of FIBs
to be defined at compile time (8 is sufficient for my purposes in 6.x)
and implements the changes needed to allow IPV4 to use them. I have not
done the changes for ipv6 simply because I do not need it, and I do not
have enough knowledge of ipv6 (e.g. neighbor discovery) needed to do it.
Other protocol families are left untouched and should there be
users with proprietary protocol families, they should continue to work
and be oblivious to the existence of the extra FIBs.
To understand how this is done, one must know that the current FIB
code starts everything off with a single dimensional array of
pointers to FIB head structures (One per protocol family), each of
which in turn points to the trie of routes available to that family.
The basic change in the ABI compatible version of the change is to
extent that array to be a 2 dimensional array, so that
instead of protocol family X looking at rt_tables[X] for the
table it needs, it looks at rt_tables[Y][X] when for all
protocol families except ipv4 Y is always 0.
Code that is unaware of the change always just sees the first row
of the table, which of course looks just like the one dimensional
array that existed before.
The entry points rtrequest(), rtalloc(), rtalloc1(), rtalloc_ign()
are all maintained, but refer only to the first row of the array,
so that existing callers in proprietary protocols can continue to
do the "right thing".
Some new entry points are added, for the exclusive use of ipv4 code
called in_rtrequest(), in_rtalloc(), in_rtalloc1() and in_rtalloc_ign(),
which have an extra argument which refers the code to the correct row.
In addition, there are some new entry points (currently called
rtalloc_fib() and friends) that check the Address family being
looked up and call either rtalloc() (and friends) if the protocol
is not IPv4 forcing the action to row 0 or to the appropriate row
if it IS IPv4 (and that info is available). These are for calling
from code that is not specific to any particular protocol. The way
these are implemented would change in the non ABI preserving code
to be added later.
One feature of the first version of the code is that for ipv4,
the interface routes show up automatically on all the FIBs, so
that no matter what FIB you select you always have the basic
direct attached hosts available to you. (rtinit() does this
automatically).
You CAN delete an interface route from one FIB should you want
to but by default it's there. ARP information is also available
in each FIB. It's assumed that the same machine would have the
same MAC address, regardless of which FIB you are using to get
to it.
This brings us as to how the correct FIB is selected for an outgoing
IPV4 packet.
Firstly, all packets have a FIB associated with them. if nothing
has been done to change it, it will be FIB 0. The FIB is changed
in the following ways.
Packets fall into one of a number of classes.
1/ locally generated packets, coming from a socket/PCB.
Such packets select a FIB from a number associated with the
socket/PCB. This in turn is inherited from the process,
but can be changed by a socket option. The process in turn
inherits it on fork. I have written a utility call setfib
that acts a bit like nice..
setfib -3 ping target.example.com # will use fib 3 for ping.
It is an obvious extension to make it a property of a jail
but I have not done so. It can be achieved by combining the setfib and
jail commands.
2/ packets received on an interface for forwarding.
By default these packets would use table 0,
(or possibly a number settable in a sysctl(not yet)).
but prior to routing the firewall can inspect them (see below).
(possibly in the future you may be able to associate a FIB
with packets received on an interface.. An ifconfig arg, but not yet.)
3/ packets inspected by a packet classifier, which can arbitrarily
associate a fib with it on a packet by packet basis.
A fib assigned to a packet by a packet classifier
(such as ipfw) would over-ride a fib associated by
a more default source. (such as cases 1 or 2).
4/ a tcp listen socket associated with a fib will generate
accept sockets that are associated with that same fib.
5/ Packets generated in response to some other packet (e.g. reset
or icmp packets). These should use the FIB associated with the
packet being reponded to.
6/ Packets generated during encapsulation.
gif, tun and other tunnel interfaces will encapsulate using the FIB
that was in effect withthe proces that set up the tunnel.
thus setfib 1 ifconfig gif0 [tunnel instructions]
will set the fib for the tunnel to use to be fib 1.
Routing messages would be associated with their
process, and thus select one FIB or another.
messages from the kernel would be associated with the fib they
refer to and would only be received by a routing socket associated
with that fib. (not yet implemented)
In addition Netstat has been edited to be able to cope with the
fact that the array is now 2 dimensional. (It looks in system
memory using libkvm (!)). Old versions of netstat see only the first FIB.
In addition two sysctls are added to give:
a) the number of FIBs compiled in (active)
b) the default FIB of the calling process.
Early testing experience:
-------------------------
Basically our (IronPort's) appliance does this functionality already
using ipfw fwd but that method has some drawbacks.
For example,
It can't fully simulate a routing table because it can't influence the
socket's choice of local address when a connect() is done.
Testing during the generating of these changes has been
remarkably smooth so far. Multiple tables have co-existed
with no notable side effects, and packets have been routes
accordingly.
ipfw has grown 2 new keywords:
setfib N ip from anay to any
count ip from any to any fib N
In pf there seems to be a requirement to be able to give symbolic names to the
fibs but I do not have that capacity. I am not sure if it is required.
SCTP has interestingly enough built in support for this, called VRFs
in Cisco parlance. it will be interesting to see how that handles it
when it suddenly actually does something.
Where to next:
--------------------
After committing the ABI compatible version and MFCing it, I'd
like to proceed in a forward direction in -current. this will
result in some roto-tilling in the routing code.
Firstly: the current code's idea of having a separate tree per
protocol family, all of the same format, and pointed to by the
1 dimensional array is a bit silly. Especially when one considers that
there is code that makes assumptions about every protocol having the
same internal structures there. Some protocols don't WANT that
sort of structure. (for example the whole idea of a netmask is foreign
to appletalk). This needs to be made opaque to the external code.
My suggested first change is to add routing method pointers to the
'domain' structure, along with information pointing the data.
instead of having an array of pointers to uniform structures,
there would be an array pointing to the 'domain' structures
for each protocol address domain (protocol family),
and the methods this reached would be called. The methods would have
an argument that gives FIB number, but the protocol would be free
to ignore it.
When the ABI can be changed it raises the possibilty of the
addition of a fib entry into the "struct route". Currently,
the structure contains the sockaddr of the desination, and the resulting
fib entry. To make this work fully, one could add a fib number
so that given an address and a fib, one can find the third element, the
fib entry.
Interaction with the ARP layer/ LL layer would need to be
revisited as well. Qing Li has been working on this already.
This work was sponsored by Ironport Systems/Cisco
PR:
Reviewed by: several including rwatson, bz and mlair (parts each)
Approved by:
Obtained from: Ironport systems/Cisco
MFC after:
Security:
2008-05-09 23:00:22 +00:00
|
|
|
fibnum = 0;
|
2008-05-10 09:22:17 +00:00
|
|
|
if (sysctlbyname("net.fibs", &numfibs, &intsize, NULL, 0) == -1)
|
Add code to allow the system to handle multiple routing tables.
This particular implementation is designed to be fully backwards compatible
and to be MFC-able to 7.x (and 6.x)
Currently the only protocol that can make use of the multiple tables is IPv4
Similar functionality exists in OpenBSD and Linux.
From my notes:
-----
One thing where FreeBSD has been falling behind, and which by chance I
have some time to work on is "policy based routing", which allows
different
packet streams to be routed by more than just the destination address.
Constraints:
------------
I want to make some form of this available in the 6.x tree
(and by extension 7.x) , but FreeBSD in general needs it so I might as
well do it in -current and back port the portions I need.
One of the ways that this can be done is to have the ability to
instantiate multiple kernel routing tables (which I will now
refer to as "Forwarding Information Bases" or "FIBs" for political
correctness reasons). Which FIB a particular packet uses to make
the next hop decision can be decided by a number of mechanisms.
The policies these mechanisms implement are the "Policies" referred
to in "Policy based routing".
One of the constraints I have if I try to back port this work to
6.x is that it must be implemented as a EXTENSION to the existing
ABIs in 6.x so that third party applications do not need to be
recompiled in timespan of the branch.
This first version will not have some of the bells and whistles that
will come with later versions. It will, for example, be limited to 16
tables in the first commit.
Implementation method, Compatible version. (part 1)
-------------------------------
For this reason I have implemented a "sufficient subset" of a
multiple routing table solution in Perforce, and back-ported it
to 6.x. (also in Perforce though not always caught up with what I
have done in -current/P4). The subset allows a number of FIBs
to be defined at compile time (8 is sufficient for my purposes in 6.x)
and implements the changes needed to allow IPV4 to use them. I have not
done the changes for ipv6 simply because I do not need it, and I do not
have enough knowledge of ipv6 (e.g. neighbor discovery) needed to do it.
Other protocol families are left untouched and should there be
users with proprietary protocol families, they should continue to work
and be oblivious to the existence of the extra FIBs.
To understand how this is done, one must know that the current FIB
code starts everything off with a single dimensional array of
pointers to FIB head structures (One per protocol family), each of
which in turn points to the trie of routes available to that family.
The basic change in the ABI compatible version of the change is to
extent that array to be a 2 dimensional array, so that
instead of protocol family X looking at rt_tables[X] for the
table it needs, it looks at rt_tables[Y][X] when for all
protocol families except ipv4 Y is always 0.
Code that is unaware of the change always just sees the first row
of the table, which of course looks just like the one dimensional
array that existed before.
The entry points rtrequest(), rtalloc(), rtalloc1(), rtalloc_ign()
are all maintained, but refer only to the first row of the array,
so that existing callers in proprietary protocols can continue to
do the "right thing".
Some new entry points are added, for the exclusive use of ipv4 code
called in_rtrequest(), in_rtalloc(), in_rtalloc1() and in_rtalloc_ign(),
which have an extra argument which refers the code to the correct row.
In addition, there are some new entry points (currently called
rtalloc_fib() and friends) that check the Address family being
looked up and call either rtalloc() (and friends) if the protocol
is not IPv4 forcing the action to row 0 or to the appropriate row
if it IS IPv4 (and that info is available). These are for calling
from code that is not specific to any particular protocol. The way
these are implemented would change in the non ABI preserving code
to be added later.
One feature of the first version of the code is that for ipv4,
the interface routes show up automatically on all the FIBs, so
that no matter what FIB you select you always have the basic
direct attached hosts available to you. (rtinit() does this
automatically).
You CAN delete an interface route from one FIB should you want
to but by default it's there. ARP information is also available
in each FIB. It's assumed that the same machine would have the
same MAC address, regardless of which FIB you are using to get
to it.
This brings us as to how the correct FIB is selected for an outgoing
IPV4 packet.
Firstly, all packets have a FIB associated with them. if nothing
has been done to change it, it will be FIB 0. The FIB is changed
in the following ways.
Packets fall into one of a number of classes.
1/ locally generated packets, coming from a socket/PCB.
Such packets select a FIB from a number associated with the
socket/PCB. This in turn is inherited from the process,
but can be changed by a socket option. The process in turn
inherits it on fork. I have written a utility call setfib
that acts a bit like nice..
setfib -3 ping target.example.com # will use fib 3 for ping.
It is an obvious extension to make it a property of a jail
but I have not done so. It can be achieved by combining the setfib and
jail commands.
2/ packets received on an interface for forwarding.
By default these packets would use table 0,
(or possibly a number settable in a sysctl(not yet)).
but prior to routing the firewall can inspect them (see below).
(possibly in the future you may be able to associate a FIB
with packets received on an interface.. An ifconfig arg, but not yet.)
3/ packets inspected by a packet classifier, which can arbitrarily
associate a fib with it on a packet by packet basis.
A fib assigned to a packet by a packet classifier
(such as ipfw) would over-ride a fib associated by
a more default source. (such as cases 1 or 2).
4/ a tcp listen socket associated with a fib will generate
accept sockets that are associated with that same fib.
5/ Packets generated in response to some other packet (e.g. reset
or icmp packets). These should use the FIB associated with the
packet being reponded to.
6/ Packets generated during encapsulation.
gif, tun and other tunnel interfaces will encapsulate using the FIB
that was in effect withthe proces that set up the tunnel.
thus setfib 1 ifconfig gif0 [tunnel instructions]
will set the fib for the tunnel to use to be fib 1.
Routing messages would be associated with their
process, and thus select one FIB or another.
messages from the kernel would be associated with the fib they
refer to and would only be received by a routing socket associated
with that fib. (not yet implemented)
In addition Netstat has been edited to be able to cope with the
fact that the array is now 2 dimensional. (It looks in system
memory using libkvm (!)). Old versions of netstat see only the first FIB.
In addition two sysctls are added to give:
a) the number of FIBs compiled in (active)
b) the default FIB of the calling process.
Early testing experience:
-------------------------
Basically our (IronPort's) appliance does this functionality already
using ipfw fwd but that method has some drawbacks.
For example,
It can't fully simulate a routing table because it can't influence the
socket's choice of local address when a connect() is done.
Testing during the generating of these changes has been
remarkably smooth so far. Multiple tables have co-existed
with no notable side effects, and packets have been routes
accordingly.
ipfw has grown 2 new keywords:
setfib N ip from anay to any
count ip from any to any fib N
In pf there seems to be a requirement to be able to give symbolic names to the
fibs but I do not have that capacity. I am not sure if it is required.
SCTP has interestingly enough built in support for this, called VRFs
in Cisco parlance. it will be interesting to see how that handles it
when it suddenly actually does something.
Where to next:
--------------------
After committing the ABI compatible version and MFCing it, I'd
like to proceed in a forward direction in -current. this will
result in some roto-tilling in the routing code.
Firstly: the current code's idea of having a separate tree per
protocol family, all of the same format, and pointed to by the
1 dimensional array is a bit silly. Especially when one considers that
there is code that makes assumptions about every protocol having the
same internal structures there. Some protocols don't WANT that
sort of structure. (for example the whole idea of a netmask is foreign
to appletalk). This needs to be made opaque to the external code.
My suggested first change is to add routing method pointers to the
'domain' structure, along with information pointing the data.
instead of having an array of pointers to uniform structures,
there would be an array pointing to the 'domain' structures
for each protocol address domain (protocol family),
and the methods this reached would be called. The methods would have
an argument that gives FIB number, but the protocol would be free
to ignore it.
When the ABI can be changed it raises the possibilty of the
addition of a fib entry into the "struct route". Currently,
the structure contains the sockaddr of the desination, and the resulting
fib entry. To make this work fully, one could add a fib number
so that given an address and a fib, one can find the third element, the
fib entry.
Interaction with the ARP layer/ LL layer would need to be
revisited as well. Qing Li has been working on this already.
This work was sponsored by Ironport Systems/Cisco
PR:
Reviewed by: several including rwatson, bz and mlair (parts each)
Approved by:
Obtained from: Ironport systems/Cisco
MFC after:
Security:
2008-05-09 23:00:22 +00:00
|
|
|
numfibs = 1;
|
2013-07-12 17:11:30 +00:00
|
|
|
if (fibnum < 0 || fibnum > numfibs - 1)
|
|
|
|
errx(EX_USAGE, "%d: invalid fib", fibnum);
|
2006-07-06 11:59:27 +00:00
|
|
|
/*
|
|
|
|
* Since kernel & userland use different timebase
|
|
|
|
* (time_uptime vs time_second) and we are reading kernel memory
|
2014-03-05 01:17:47 +00:00
|
|
|
* directly we should do rt_expire --> expire_time conversion.
|
2006-07-06 11:59:27 +00:00
|
|
|
*/
|
|
|
|
if (clock_gettime(CLOCK_UPTIME, &uptime) < 0)
|
|
|
|
err(EX_OSERR, "clock_gettime() failed");
|
|
|
|
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_open_container("route-information");
|
|
|
|
xo_emit("{T:Routing tables}");
|
2013-07-12 17:11:30 +00:00
|
|
|
if (fibnum)
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit(" ({L:fib}: {:fib/%d})", fibnum);
|
|
|
|
xo_emit("\n");
|
2015-04-07 05:50:45 +00:00
|
|
|
p_rtable_sysctl(fibnum, af);
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_close_container("route-information");
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 12:08:36 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print address family header before a section of the routing table.
|
|
|
|
*/
|
|
|
|
void
|
2002-09-05 17:06:51 +00:00
|
|
|
pr_family(int af1)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
const char *afname;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-09-05 17:06:51 +00:00
|
|
|
switch (af1) {
|
1994-05-27 12:33:43 +00:00
|
|
|
case AF_INET:
|
|
|
|
afname = "Internet";
|
|
|
|
break;
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
afname = "Internet6";
|
|
|
|
break;
|
|
|
|
#endif /*INET6*/
|
1994-05-27 12:33:43 +00:00
|
|
|
case AF_ISO:
|
|
|
|
afname = "ISO";
|
|
|
|
break;
|
|
|
|
case AF_CCITT:
|
|
|
|
afname = "X.25";
|
|
|
|
break;
|
1999-10-21 09:06:11 +00:00
|
|
|
case AF_NETGRAPH:
|
|
|
|
afname = "Netgraph";
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
default:
|
|
|
|
afname = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (afname)
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("\n{k:address-family/%s}:\n", afname);
|
1994-05-27 12:33:43 +00:00
|
|
|
else
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("\n{L:Protocol Family} {k:address-family/%d}:\n", af1);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* column widths; each followed by one space */
|
2000-07-04 16:26:46 +00:00
|
|
|
#ifndef INET6
|
2002-06-05 18:29:26 +00:00
|
|
|
#define WID_DST_DEFAULT(af) 18 /* width of destination column */
|
|
|
|
#define WID_GW_DEFAULT(af) 18 /* width of gateway column */
|
2014-05-21 10:04:51 +00:00
|
|
|
#define WID_IF_DEFAULT(af) (Wflag ? 10 : 8) /* width of netif column */
|
2000-07-04 16:26:46 +00:00
|
|
|
#else
|
2002-06-05 18:29:26 +00:00
|
|
|
#define WID_DST_DEFAULT(af) \
|
|
|
|
((af) == AF_INET6 ? (numeric_addr ? 33: 18) : 18)
|
|
|
|
#define WID_GW_DEFAULT(af) \
|
|
|
|
((af) == AF_INET6 ? (numeric_addr ? 29 : 18) : 18)
|
2014-05-21 10:04:51 +00:00
|
|
|
#define WID_IF_DEFAULT(af) ((af) == AF_INET6 ? 8 : (Wflag ? 10 : 8))
|
1999-12-07 17:39:16 +00:00
|
|
|
#endif /*INET6*/
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-06-05 18:29:26 +00:00
|
|
|
static int wid_dst;
|
|
|
|
static int wid_gw;
|
|
|
|
static int wid_flags;
|
2014-03-05 01:17:47 +00:00
|
|
|
static int wid_pksent;
|
2002-06-05 18:29:26 +00:00
|
|
|
static int wid_mtu;
|
|
|
|
static int wid_if;
|
|
|
|
static int wid_expire;
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print header for routing table columns.
|
|
|
|
*/
|
2015-09-01 08:42:04 +00:00
|
|
|
static void
|
|
|
|
pr_rthdr(int af1 __unused)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1999-12-21 09:31:14 +00:00
|
|
|
|
2013-12-18 18:25:27 +00:00
|
|
|
if (Wflag) {
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("{T:/%-*.*s} {T:/%-*.*s} {T:/%-*.*s} {T:/%*.*s} "
|
2015-05-17 15:12:55 +00:00
|
|
|
"{T:/%*.*s} {T:/%*.*s} {T:/%*s}\n",
|
2013-12-18 18:25:27 +00:00
|
|
|
wid_dst, wid_dst, "Destination",
|
|
|
|
wid_gw, wid_gw, "Gateway",
|
|
|
|
wid_flags, wid_flags, "Flags",
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
wid_mtu, wid_mtu, "Nhop#",
|
2013-12-18 18:25:27 +00:00
|
|
|
wid_mtu, wid_mtu, "Mtu",
|
|
|
|
wid_if, wid_if, "Netif",
|
|
|
|
wid_expire, "Expire");
|
2002-06-05 18:29:26 +00:00
|
|
|
} else {
|
2015-05-18 18:03:47 +00:00
|
|
|
xo_emit("{T:/%-*.*s} {T:/%-*.*s} {T:/%-*.*s} {T:/%*.*s} "
|
2015-02-21 23:47:20 +00:00
|
|
|
"{T:/%*s}\n",
|
2002-06-05 18:29:26 +00:00
|
|
|
wid_dst, wid_dst, "Destination",
|
|
|
|
wid_gw, wid_gw, "Gateway",
|
|
|
|
wid_flags, wid_flags, "Flags",
|
|
|
|
wid_if, wid_if, "Netif",
|
|
|
|
wid_expire, "Expire");
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-20 12:08:36 +00:00
|
|
|
p_rtable_sysctl(int fibnum, int af)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
size_t needed;
|
2013-12-18 18:25:27 +00:00
|
|
|
int mib[7];
|
1994-05-27 12:33:43 +00:00
|
|
|
char *buf, *next, *lim;
|
2002-09-05 17:06:51 +00:00
|
|
|
struct rt_msghdr *rtm;
|
2013-12-18 18:25:27 +00:00
|
|
|
struct sockaddr *sa;
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
int fam = AF_UNSPEC;
|
2015-02-21 23:47:20 +00:00
|
|
|
int need_table_close = false;
|
2013-12-18 18:25:27 +00:00
|
|
|
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
ifmap = prepare_ifmap(&ifmap_size);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1998-04-19 18:18:25 +00:00
|
|
|
mib[0] = CTL_NET;
|
|
|
|
mib[1] = PF_ROUTE;
|
|
|
|
mib[2] = 0;
|
2013-12-18 18:25:27 +00:00
|
|
|
mib[3] = af;
|
1998-04-19 18:18:25 +00:00
|
|
|
mib[4] = NET_RT_DUMP;
|
|
|
|
mib[5] = 0;
|
2013-12-18 18:25:27 +00:00
|
|
|
mib[6] = fibnum;
|
2014-05-21 10:04:51 +00:00
|
|
|
if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0)
|
2014-05-15 19:26:20 +00:00
|
|
|
err(EX_OSERR, "sysctl: net.route.0.%d.dump.%d estimate", af,
|
|
|
|
fibnum);
|
2014-05-21 10:04:51 +00:00
|
|
|
if ((buf = malloc(needed)) == NULL)
|
2004-07-26 20:18:11 +00:00
|
|
|
errx(2, "malloc(%lu)", (unsigned long)needed);
|
2014-05-21 10:04:51 +00:00
|
|
|
if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0)
|
2013-12-20 00:17:26 +00:00
|
|
|
err(1, "sysctl: net.route.0.%d.dump.%d", af, fibnum);
|
1994-05-27 12:33:43 +00:00
|
|
|
lim = buf + needed;
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_open_container("route-table");
|
|
|
|
xo_open_list("rt-family");
|
1994-05-27 12:33:43 +00:00
|
|
|
for (next = buf; next < lim; next += rtm->rtm_msglen) {
|
|
|
|
rtm = (struct rt_msghdr *)next;
|
2014-05-15 19:26:20 +00:00
|
|
|
if (rtm->rtm_version != RTM_VERSION)
|
|
|
|
continue;
|
2013-12-18 18:25:27 +00:00
|
|
|
/*
|
|
|
|
* Peek inside header to determine AF
|
|
|
|
*/
|
|
|
|
sa = (struct sockaddr *)(rtm + 1);
|
2015-02-21 23:47:20 +00:00
|
|
|
/* Only print family first time. */
|
2013-12-18 18:25:27 +00:00
|
|
|
if (fam != sa->sa_family) {
|
2015-02-21 23:47:20 +00:00
|
|
|
if (need_table_close) {
|
|
|
|
xo_close_list("rt-entry");
|
|
|
|
xo_close_instance("rt-family");
|
|
|
|
}
|
|
|
|
need_table_close = true;
|
|
|
|
|
2013-12-18 18:25:27 +00:00
|
|
|
fam = sa->sa_family;
|
2015-04-07 05:50:45 +00:00
|
|
|
wid_dst = WID_DST_DEFAULT(fam);
|
|
|
|
wid_gw = WID_GW_DEFAULT(fam);
|
|
|
|
wid_flags = 6;
|
|
|
|
wid_pksent = 8;
|
|
|
|
wid_mtu = 6;
|
|
|
|
wid_if = WID_IF_DEFAULT(fam);
|
|
|
|
wid_expire = 6;
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_open_instance("rt-family");
|
2013-12-18 18:25:27 +00:00
|
|
|
pr_family(fam);
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_open_list("rt-entry");
|
|
|
|
|
2013-12-18 18:25:27 +00:00
|
|
|
pr_rthdr(fam);
|
|
|
|
}
|
2015-02-21 23:47:20 +00:00
|
|
|
p_rtentry_sysctl("rt-entry", rtm);
|
|
|
|
}
|
|
|
|
if (need_table_close) {
|
|
|
|
xo_close_list("rt-entry");
|
|
|
|
xo_close_instance("rt-family");
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_close_list("rt-family");
|
|
|
|
xo_close_container("route-table");
|
2014-05-15 19:26:20 +00:00
|
|
|
free(buf);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-02-21 23:47:20 +00:00
|
|
|
p_rtentry_sysctl(const char *name, struct rt_msghdr *rtm)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2015-09-01 08:42:04 +00:00
|
|
|
struct sockaddr *sa, *addr[RTAX_MAX];
|
2013-12-18 18:25:27 +00:00
|
|
|
char buffer[128];
|
|
|
|
char prettyname[128];
|
2015-12-01 16:04:50 +00:00
|
|
|
int i, protrusion;
|
2013-12-18 18:25:27 +00:00
|
|
|
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_open_instance(name);
|
2015-09-01 08:42:04 +00:00
|
|
|
sa = (struct sockaddr *)(rtm + 1);
|
|
|
|
for (i = 0; i < RTAX_MAX; i++) {
|
2017-04-16 19:17:10 +00:00
|
|
|
if (rtm->rtm_addrs & (1 << i)) {
|
2015-09-01 08:42:04 +00:00
|
|
|
addr[i] = sa;
|
2017-04-16 19:17:10 +00:00
|
|
|
sa = (struct sockaddr *)((char *)sa + SA_SIZE(sa));
|
|
|
|
}
|
2015-09-01 08:42:04 +00:00
|
|
|
}
|
2015-02-21 23:47:20 +00:00
|
|
|
|
2015-12-01 16:04:50 +00:00
|
|
|
protrusion = p_sockaddr("destination", addr[RTAX_DST],
|
|
|
|
addr[RTAX_NETMASK],
|
2015-09-01 08:42:04 +00:00
|
|
|
rtm->rtm_flags, wid_dst);
|
2015-12-01 16:04:50 +00:00
|
|
|
protrusion = p_sockaddr("gateway", addr[RTAX_GATEWAY], NULL, RTF_HOST,
|
|
|
|
wid_gw - protrusion);
|
2015-05-18 18:03:47 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "{[:-%d}{:flags/%%s}{]:} ",
|
2015-12-01 16:04:50 +00:00
|
|
|
wid_flags - protrusion);
|
2013-12-18 18:25:27 +00:00
|
|
|
p_flags(rtm->rtm_flags, buffer);
|
|
|
|
if (Wflag) {
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
/* XXX: use=0? */
|
|
|
|
xo_emit("{t:nhop/%*lu} ", wid_mtu, rtm->rtm_rmx.rmx_nhidx);
|
2014-03-05 01:17:47 +00:00
|
|
|
|
2013-12-18 18:25:27 +00:00
|
|
|
if (rtm->rtm_rmx.rmx_mtu != 0)
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("{t:mtu/%*lu} ", wid_mtu, rtm->rtm_rmx.rmx_mtu);
|
2013-12-18 18:25:27 +00:00
|
|
|
else
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("{P:/%*s} ", wid_mtu, "");
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2013-12-18 18:25:27 +00:00
|
|
|
|
|
|
|
memset(prettyname, 0, sizeof(prettyname));
|
|
|
|
if (rtm->rtm_index < ifmap_size) {
|
|
|
|
strlcpy(prettyname, ifmap[rtm->rtm_index].ifname,
|
|
|
|
sizeof(prettyname));
|
|
|
|
if (*prettyname == '\0')
|
|
|
|
strlcpy(prettyname, "---", sizeof(prettyname));
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2013-12-18 18:25:27 +00:00
|
|
|
|
2015-11-20 12:32:49 +00:00
|
|
|
if (Wflag)
|
|
|
|
xo_emit("{t:interface-name/%*s}", wid_if, prettyname);
|
|
|
|
else
|
|
|
|
xo_emit("{t:interface-name/%*.*s}", wid_if, wid_if,
|
|
|
|
prettyname);
|
2013-12-18 18:25:27 +00:00
|
|
|
if (rtm->rtm_rmx.rmx_expire) {
|
|
|
|
time_t expire_time;
|
|
|
|
|
2015-02-21 23:47:20 +00:00
|
|
|
if ((expire_time = rtm->rtm_rmx.rmx_expire - uptime.tv_sec) > 0)
|
|
|
|
xo_emit(" {:expire-time/%*d}", wid_expire,
|
|
|
|
(int)expire_time);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2013-12-18 18:25:27 +00:00
|
|
|
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("\n");
|
|
|
|
xo_close_instance(name);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
int
|
2015-02-21 23:47:20 +00:00
|
|
|
p_sockaddr(const char *name, struct sockaddr *sa, struct sockaddr *mask,
|
|
|
|
int flags, int width)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-06-05 18:29:26 +00:00
|
|
|
const char *cp;
|
2015-02-21 23:47:20 +00:00
|
|
|
char buf[128];
|
2015-12-01 16:04:50 +00:00
|
|
|
int protrusion;
|
2002-06-05 18:29:26 +00:00
|
|
|
|
|
|
|
cp = fmt_sockaddr(sa, mask, flags);
|
|
|
|
|
2015-02-21 23:47:20 +00:00
|
|
|
if (width < 0) {
|
|
|
|
snprintf(buf, sizeof(buf), "{:%s/%%s} ", name);
|
|
|
|
xo_emit(buf, cp);
|
2016-03-27 20:02:21 +00:00
|
|
|
protrusion = 0;
|
2015-02-21 23:47:20 +00:00
|
|
|
} else {
|
2015-09-01 08:42:04 +00:00
|
|
|
if (Wflag != 0 || numeric_addr) {
|
2015-02-21 23:47:20 +00:00
|
|
|
snprintf(buf, sizeof(buf), "{[:%d}{:%s/%%s}{]:} ",
|
|
|
|
-width, name);
|
|
|
|
xo_emit(buf, cp);
|
2015-12-01 16:04:50 +00:00
|
|
|
protrusion = strlen(cp) - width;
|
|
|
|
if (protrusion < 0)
|
|
|
|
protrusion = 0;
|
2015-02-21 23:47:20 +00:00
|
|
|
} else {
|
|
|
|
snprintf(buf, sizeof(buf), "{[:%d}{:%s/%%-.*s}{]:} ",
|
|
|
|
-width, name);
|
|
|
|
xo_emit(buf, width, cp);
|
2015-12-01 16:04:50 +00:00
|
|
|
protrusion = 0;
|
2015-02-21 23:47:20 +00:00
|
|
|
}
|
2002-06-05 18:29:26 +00:00
|
|
|
}
|
2015-12-01 16:04:50 +00:00
|
|
|
return (protrusion);
|
2002-06-05 18:29:26 +00:00
|
|
|
}
|
|
|
|
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
const char *
|
2002-06-05 18:29:26 +00:00
|
|
|
fmt_sockaddr(struct sockaddr *sa, struct sockaddr *mask, int flags)
|
|
|
|
{
|
2015-09-01 08:42:04 +00:00
|
|
|
static char buf[128];
|
2002-09-05 17:06:51 +00:00
|
|
|
const char *cp;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2008-02-14 20:01:52 +00:00
|
|
|
if (sa == NULL)
|
|
|
|
return ("null");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
switch(sa->sa_family) {
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
2012-11-17 20:19:00 +00:00
|
|
|
/*
|
|
|
|
* The sa6->sin6_scope_id must be filled here because
|
|
|
|
* this sockaddr is extracted from kmem(4) directly
|
|
|
|
* and has KAME-specific embedded scope id in
|
|
|
|
* sa6->sin6_addr.s6_addr[2].
|
|
|
|
*/
|
2015-09-01 08:42:04 +00:00
|
|
|
in6_fillscopeid(satosin6(sa));
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
#endif /*INET6*/
|
|
|
|
case AF_INET:
|
1999-12-07 17:39:16 +00:00
|
|
|
if (flags & RTF_HOST)
|
2015-09-01 08:42:04 +00:00
|
|
|
cp = routename(sa, numeric_addr);
|
1999-12-07 17:39:16 +00:00
|
|
|
else if (mask)
|
2015-09-01 08:42:04 +00:00
|
|
|
cp = netname(sa, mask);
|
|
|
|
else
|
|
|
|
cp = netname(sa, NULL);
|
1999-12-07 17:39:16 +00:00
|
|
|
break;
|
1999-10-21 09:06:11 +00:00
|
|
|
case AF_NETGRAPH:
|
|
|
|
{
|
2015-09-01 08:42:04 +00:00
|
|
|
strlcpy(buf, ((struct sockaddr_ng *)sa)->sg_data,
|
|
|
|
sizeof(buf));
|
|
|
|
cp = buf;
|
1999-10-21 09:06:11 +00:00
|
|
|
break;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
case AF_LINK:
|
|
|
|
{
|
2015-09-01 08:42:04 +00:00
|
|
|
#if 0
|
2002-09-05 17:06:51 +00:00
|
|
|
struct sockaddr_dl *sdl = (struct sockaddr_dl *)sa;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
/* Interface route. */
|
|
|
|
if (sdl->sdl_nlen)
|
|
|
|
cp = sdl->sdl_data;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
cp = routename(sa, 1);
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
u_char *s = (u_char *)sa->sa_data, *slim;
|
|
|
|
char *cq, *cqlim;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
cq = buf;
|
1994-05-27 12:33:43 +00:00
|
|
|
slim = sa->sa_len + (u_char *) sa;
|
2017-01-05 09:23:54 +00:00
|
|
|
cqlim = cq + sizeof(buf) - sizeof(" ffff");
|
2017-01-09 07:36:31 +00:00
|
|
|
snprintf(cq, sizeof(buf), "(%d)", sa->sa_family);
|
2017-01-05 09:23:54 +00:00
|
|
|
cq += strlen(cq);
|
2002-09-05 17:06:51 +00:00
|
|
|
while (s < slim && cq < cqlim) {
|
2017-01-05 09:23:54 +00:00
|
|
|
snprintf(cq, sizeof(" ff"), " %02x", *s++);
|
|
|
|
cq += strlen(cq);
|
|
|
|
if (s < slim) {
|
|
|
|
snprintf(cq, sizeof("ff"), "%02x", *s++);
|
|
|
|
cq += strlen(cq);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2015-09-01 08:42:04 +00:00
|
|
|
cp = buf;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
2002-06-05 18:29:26 +00:00
|
|
|
|
|
|
|
return (cp);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-09-05 17:06:51 +00:00
|
|
|
p_flags(int f, const char *format)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2015-02-21 23:47:20 +00:00
|
|
|
|
Introduce nexthop objects and new routing KPI.
This is the foundational change for the routing subsytem rearchitecture.
More details and goals are available in https://reviews.freebsd.org/D24141 .
This patch introduces concept of nexthop objects and new nexthop-based
routing KPI.
Nexthops are objects, containing all necessary information for performing
the packet output decision. Output interface, mtu, flags, gw address goes
there. For most of the cases, these objects will serve the same role as
the struct rtentry is currently serving.
Typically there will be low tens of such objects for the router even with
multiple BGP full-views, as these objects will be shared between routing
entries. This allows to store more information in the nexthop.
New KPI:
struct nhop_object *fib4_lookup(uint32_t fibnum, struct in_addr dst,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
struct nhop_object *fib6_lookup(uint32_t fibnum, const struct in6_addr *dst6,
uint32_t scopeid, uint32_t flags, uint32_t flowid);
These 2 function are intended to replace all all flavours of
<in_|in6_>rtalloc[1]<_ign><_fib>, mpath functions and the previous
fib[46]-generation functions.
Upon successful lookup, they return nexthop object which is guaranteed to
exist within current NET_EPOCH. If longer lifetime is desired, one can
specify NHR_REF as a flag and get a referenced version of the nexthop.
Reference semantic closely resembles rtentry one, allowing sed-style conversion.
Additionally, another 2 functions are introduced to support uRPF functionality
inside variety of our firewalls. Their primary goal is to hide the multipath
implementation details inside the routing subsystem, greatly simplifying
firewalls implementation:
int fib4_lookup_urpf(uint32_t fibnum, struct in_addr dst, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
int fib6_lookup_urpf(uint32_t fibnum, const struct in6_addr *dst6, uint32_t scopeid,
uint32_t flags, const struct ifnet *src_if);
All functions have a separate scopeid argument, paving way to eliminating IPv6 scope
embedding and allowing to support IPv4 link-locals in the future.
Structure changes:
* rtentry gets new 'rt_nhop' pointer, slightly growing the overall size.
* rib_head gets new 'rnh_preadd' callback pointer, slightly growing overall sz.
Old KPI:
During the transition state old and new KPI will coexists. As there are another 4-5
decent-sized conversion patches, it will probably take a couple of weeks.
To support both KPIs, fields not required by the new KPI (most of rtentry) has to be
kept, resulting in the temporary size increase.
Once conversion is finished, rtentry will notably shrink.
More details:
* architectural overview: https://reviews.freebsd.org/D24141
* list of the next changes: https://reviews.freebsd.org/D24232
Reviewed by: ae,glebius(initial version)
Differential Revision: https://reviews.freebsd.org/D24232
2020-04-12 14:30:00 +00:00
|
|
|
print_flags_generic(f, rt_bits, format, "flags_pretty");
|
2002-06-05 18:29:26 +00:00
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
char *
|
2015-09-01 08:42:04 +00:00
|
|
|
routename(struct sockaddr *sa, int flags)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2015-09-01 08:42:04 +00:00
|
|
|
static char line[NI_MAXHOST];
|
|
|
|
int error, f;
|
|
|
|
|
|
|
|
f = (flags) ? NI_NUMERICHOST : 0;
|
|
|
|
error = getnameinfo(sa, sa->sa_len, line, sizeof(line),
|
|
|
|
NULL, 0, f);
|
|
|
|
if (error) {
|
|
|
|
const void *src;
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
#ifdef INET
|
|
|
|
case AF_INET:
|
|
|
|
src = &satosin(sa)->sin_addr;
|
|
|
|
break;
|
|
|
|
#endif /* INET */
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
src = &satosin6(sa)->sin6_addr;
|
|
|
|
break;
|
|
|
|
#endif /* INET6 */
|
|
|
|
default:
|
|
|
|
return(line);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2015-09-01 08:42:04 +00:00
|
|
|
inet_ntop(sa->sa_family, src, line, sizeof(line) - 1);
|
|
|
|
return (line);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2015-09-01 08:42:04 +00:00
|
|
|
trimdomain(line, strlen(line));
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
return (line);
|
|
|
|
}
|
|
|
|
|
2007-02-14 14:17:01 +00:00
|
|
|
#define NSHIFT(m) ( \
|
|
|
|
(m) == IN_CLASSA_NET ? IN_CLASSA_NSHIFT : \
|
|
|
|
(m) == IN_CLASSB_NET ? IN_CLASSB_NSHIFT : \
|
|
|
|
(m) == IN_CLASSC_NET ? IN_CLASSC_NSHIFT : \
|
|
|
|
0)
|
1996-01-14 23:33:13 +00:00
|
|
|
|
|
|
|
static void
|
2017-01-05 09:23:54 +00:00
|
|
|
domask(char *dst, size_t buflen, u_long mask)
|
1996-01-14 23:33:13 +00:00
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
int b, i;
|
1996-01-14 23:33:13 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
if (mask == 0) {
|
1996-01-14 23:33:13 +00:00
|
|
|
*dst = '\0';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
i = 0;
|
|
|
|
for (b = 0; b < 32; b++)
|
|
|
|
if (mask & (1 << b)) {
|
2002-09-05 17:06:51 +00:00
|
|
|
int bb;
|
1996-01-14 23:33:13 +00:00
|
|
|
|
|
|
|
i = b;
|
|
|
|
for (bb = b+1; bb < 32; bb++)
|
|
|
|
if (!(mask & (1 << bb))) {
|
|
|
|
i = -1; /* noncontig */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == -1)
|
2017-01-05 09:23:54 +00:00
|
|
|
snprintf(dst, buflen, "&0x%lx", mask);
|
1996-01-14 23:33:13 +00:00
|
|
|
else
|
2017-01-05 09:23:54 +00:00
|
|
|
snprintf(dst, buflen, "/%d", 32-i);
|
1996-01-14 23:33:13 +00:00
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Return the name of the network whose address is given.
|
|
|
|
*/
|
2015-09-01 08:42:04 +00:00
|
|
|
const char *
|
|
|
|
netname(struct sockaddr *sa, struct sockaddr *mask)
|
|
|
|
{
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
if (mask != NULL)
|
|
|
|
return (netname4(satosin(sa)->sin_addr.s_addr,
|
|
|
|
satosin(mask)->sin_addr.s_addr));
|
|
|
|
else
|
|
|
|
return (netname4(satosin(sa)->sin_addr.s_addr,
|
|
|
|
INADDR_ANY));
|
|
|
|
break;
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
return (netname6(satosin6(sa), satosin6(mask)));
|
|
|
|
#endif /* INET6 */
|
|
|
|
default:
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
netname4(in_addr_t in, in_addr_t mask)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
char *cp = 0;
|
2017-01-05 09:23:54 +00:00
|
|
|
static char line[MAXHOSTNAMELEN + sizeof("&0xffffffff")];
|
2015-09-01 08:42:04 +00:00
|
|
|
char nline[INET_ADDRSTRLEN];
|
1994-05-27 12:33:43 +00:00
|
|
|
struct netent *np = 0;
|
2008-02-11 20:34:27 +00:00
|
|
|
in_addr_t i;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
if (in == INADDR_ANY && mask == 0) {
|
|
|
|
strlcpy(line, "default", sizeof(line));
|
|
|
|
return (line);
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:55:07 +00:00
|
|
|
/* It is ok to supply host address. */
|
|
|
|
in &= mask;
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
i = ntohl(in);
|
2001-06-15 00:25:44 +00:00
|
|
|
if (!numeric_addr && i) {
|
2013-10-15 09:55:07 +00:00
|
|
|
np = getnetbyaddr(i >> NSHIFT(ntohl(mask)), AF_INET);
|
2001-10-11 14:30:42 +00:00
|
|
|
if (np != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
cp = np->n_name;
|
2001-03-14 20:51:26 +00:00
|
|
|
trimdomain(cp, strlen(cp));
|
1996-01-15 02:18:35 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2015-11-05 11:02:28 +00:00
|
|
|
if (cp != NULL)
|
2008-10-17 21:14:50 +00:00
|
|
|
strlcpy(line, cp, sizeof(line));
|
2015-11-05 11:02:28 +00:00
|
|
|
else {
|
|
|
|
inet_ntop(AF_INET, &in, nline, sizeof(nline));
|
2015-09-01 08:42:04 +00:00
|
|
|
strlcpy(line, nline, sizeof(line));
|
2017-01-05 09:23:54 +00:00
|
|
|
domask(line + strlen(line), sizeof(line) - strlen(line), ntohl(mask));
|
2015-11-05 11:02:28 +00:00
|
|
|
}
|
2015-09-01 08:42:04 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
return (line);
|
|
|
|
}
|
|
|
|
|
2007-02-14 14:17:01 +00:00
|
|
|
#undef NSHIFT
|
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
2011-01-20 15:22:01 +00:00
|
|
|
void
|
|
|
|
in6_fillscopeid(struct sockaddr_in6 *sa6)
|
|
|
|
{
|
|
|
|
#if defined(__KAME__)
|
|
|
|
/*
|
|
|
|
* XXX: This is a special workaround for KAME kernels.
|
|
|
|
* sin6_scope_id field of SA should be set in the future.
|
|
|
|
*/
|
|
|
|
if (IN6_IS_ADDR_LINKLOCAL(&sa6->sin6_addr) ||
|
|
|
|
IN6_IS_ADDR_MC_NODELOCAL(&sa6->sin6_addr) ||
|
|
|
|
IN6_IS_ADDR_MC_LINKLOCAL(&sa6->sin6_addr)) {
|
2014-05-15 19:26:20 +00:00
|
|
|
if (sa6->sin6_scope_id == 0)
|
|
|
|
sa6->sin6_scope_id =
|
|
|
|
ntohs(*(u_int16_t *)&sa6->sin6_addr.s6_addr[2]);
|
2011-01-20 15:22:01 +00:00
|
|
|
sa6->sin6_addr.s6_addr[2] = sa6->sin6_addr.s6_addr[3] = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
/* Mask to length table. To check an invalid value, (length + 1) is used. */
|
2017-01-05 09:23:54 +00:00
|
|
|
static const u_char masktolen[256] = {
|
2015-09-01 08:42:04 +00:00
|
|
|
[0xff] = 8 + 1,
|
|
|
|
[0xfe] = 7 + 1,
|
|
|
|
[0xfc] = 6 + 1,
|
|
|
|
[0xf8] = 5 + 1,
|
|
|
|
[0xf0] = 4 + 1,
|
|
|
|
[0xe0] = 3 + 1,
|
|
|
|
[0xc0] = 2 + 1,
|
|
|
|
[0x80] = 1 + 1,
|
|
|
|
[0x00] = 0 + 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
netname6(struct sockaddr_in6 *sa6, struct sockaddr_in6 *mask)
|
1999-12-07 17:39:16 +00:00
|
|
|
{
|
2015-09-01 08:42:04 +00:00
|
|
|
static char line[NI_MAXHOST + sizeof("/xxx") - 1];
|
2015-11-04 14:47:10 +00:00
|
|
|
struct sockaddr_in6 addr;
|
2015-09-01 08:42:04 +00:00
|
|
|
char nline[NI_MAXHOST];
|
2017-01-05 09:23:54 +00:00
|
|
|
char maskbuf[sizeof("/xxx")];
|
2015-09-01 08:42:04 +00:00
|
|
|
u_char *p, *lim;
|
2017-01-05 09:23:54 +00:00
|
|
|
u_char masklen;
|
|
|
|
int i;
|
|
|
|
bool illegal = false;
|
1999-12-07 17:39:16 +00:00
|
|
|
|
|
|
|
if (mask) {
|
2015-09-01 08:42:04 +00:00
|
|
|
p = (u_char *)&mask->sin6_addr;
|
1999-12-07 17:39:16 +00:00
|
|
|
for (masklen = 0, lim = p + 16; p < lim; p++) {
|
2017-01-05 09:23:54 +00:00
|
|
|
if (masktolen[*p] > 0) {
|
2015-09-01 08:42:04 +00:00
|
|
|
/* -1 is required. */
|
2017-01-05 09:23:54 +00:00
|
|
|
masklen += (masktolen[*p] - 1);
|
|
|
|
} else
|
|
|
|
illegal = true;
|
1999-12-07 17:39:16 +00:00
|
|
|
}
|
|
|
|
if (illegal)
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_error("illegal prefixlen\n");
|
2015-11-04 14:47:10 +00:00
|
|
|
|
|
|
|
memcpy(&addr, sa6, sizeof(addr));
|
|
|
|
for (i = 0; i < 16; ++i)
|
|
|
|
addr.sin6_addr.s6_addr[i] &=
|
|
|
|
mask->sin6_addr.s6_addr[i];
|
|
|
|
sa6 = &addr;
|
1999-12-07 17:39:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
masklen = 128;
|
|
|
|
|
|
|
|
if (masklen == 0 && IN6_IS_ADDR_UNSPECIFIED(&sa6->sin6_addr))
|
|
|
|
return("default");
|
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
getnameinfo((struct sockaddr *)sa6, sa6->sin6_len, nline, sizeof(nline),
|
|
|
|
NULL, 0, NI_NUMERICHOST);
|
2001-06-15 00:25:44 +00:00
|
|
|
if (numeric_addr)
|
2015-09-01 08:42:04 +00:00
|
|
|
strlcpy(line, nline, sizeof(line));
|
|
|
|
else
|
|
|
|
getnameinfo((struct sockaddr *)sa6, sa6->sin6_len, line,
|
|
|
|
sizeof(line), NULL, 0, 0);
|
2017-01-05 09:23:54 +00:00
|
|
|
if (numeric_addr || strcmp(line, nline) == 0) {
|
|
|
|
snprintf(maskbuf, sizeof(maskbuf), "/%d", masklen);
|
|
|
|
strlcat(line, maskbuf, sizeof(line));
|
|
|
|
}
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2015-09-01 08:42:04 +00:00
|
|
|
return (line);
|
1999-12-07 17:39:16 +00:00
|
|
|
}
|
|
|
|
#endif /*INET6*/
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print routing statistics
|
|
|
|
*/
|
|
|
|
void
|
2013-12-20 00:17:26 +00:00
|
|
|
rt_stats(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct rtstat rtstat;
|
2013-12-20 00:17:26 +00:00
|
|
|
u_long rtsaddr, rttaddr;
|
2001-06-29 09:08:24 +00:00
|
|
|
int rttrash;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2015-09-02 18:51:36 +00:00
|
|
|
if ((rtsaddr = nl[N_RTSTAT].n_value) == 0) {
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("{W:rtstat: symbol not in namelist}\n");
|
1994-05-27 12:33:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-09-02 18:51:36 +00:00
|
|
|
if ((rttaddr = nl[N_RTTRASH].n_value) == 0) {
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("{W:rttrash: symbol not in namelist}\n");
|
2001-06-29 09:08:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-12-17 02:02:26 +00:00
|
|
|
kread_counters(rtsaddr, (char *)&rtstat, sizeof (rtstat));
|
2001-06-29 09:08:24 +00:00
|
|
|
kread(rttaddr, (char *)&rttrash, sizeof (rttrash));
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("{T:routing}:\n");
|
2001-06-23 09:18:57 +00:00
|
|
|
|
|
|
|
#define p(f, m) if (rtstat.f || sflag <= 1) \
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit(m, rtstat.f, plural(rtstat.f))
|
|
|
|
|
2019-12-17 02:02:26 +00:00
|
|
|
p(rts_badredirect, "\t{:bad-redirects/%ju} "
|
2015-02-21 23:47:20 +00:00
|
|
|
"{N:/bad routing redirect%s}\n");
|
2019-12-17 02:02:26 +00:00
|
|
|
p(rts_dynamic, "\t{:dynamically-created/%ju} "
|
2015-02-21 23:47:20 +00:00
|
|
|
"{N:/dynamically created route%s}\n");
|
2019-12-17 02:02:26 +00:00
|
|
|
p(rts_newgateway, "\t{:new-gateways/%ju} "
|
2015-02-21 23:47:20 +00:00
|
|
|
"{N:/new gateway%s due to redirects}\n");
|
2019-12-17 02:02:26 +00:00
|
|
|
p(rts_unreach, "\t{:unreachable-destination/%ju} "
|
2015-02-21 23:47:20 +00:00
|
|
|
"{N:/destination%s found unreachable}\n");
|
2019-12-17 02:02:26 +00:00
|
|
|
p(rts_wildcard, "\t{:wildcard-uses/%ju} "
|
2015-02-21 23:47:20 +00:00
|
|
|
"{N:/use%s of a wildcard route}\n");
|
2001-06-23 09:18:57 +00:00
|
|
|
#undef p
|
2001-06-29 09:08:24 +00:00
|
|
|
|
|
|
|
if (rttrash || sflag <= 1)
|
2015-02-21 23:47:20 +00:00
|
|
|
xo_emit("\t{:unused-but-not-freed/%u} "
|
|
|
|
"{N:/route%s not in table but not freed}\n",
|
2001-06-29 09:08:24 +00:00
|
|
|
rttrash, plural(rttrash));
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|