2008-01-02 23:26:11 +00:00
|
|
|
/*-
|
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.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE 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>
|
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>
|
1997-01-03 20:16:31 +00:00
|
|
|
#include <net/if_var.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_types.h>
|
2003-10-03 21:05:08 +00:00
|
|
|
#include <net/radix.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <net/route.h>
|
|
|
|
|
1996-06-08 00:20:42 +00:00
|
|
|
#include <netinet/in.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
#include <netipx/ipx.h>
|
1996-06-08 00:20:42 +00:00
|
|
|
#include <netatalk/at.h>
|
1999-10-21 09:06:11 +00:00
|
|
|
#include <netgraph/ng_socket.h>
|
1995-10-26 20:31:59 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
#include <arpa/inet.h>
|
2001-03-14 20:51:26 +00:00
|
|
|
#include <libutil.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <netdb.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>
|
|
|
|
#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>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "netstat.h"
|
|
|
|
|
2008-01-02 23:26:11 +00:00
|
|
|
#define kget(p, d) (kread((u_long)(p), (char *)&(d), sizeof (d)))
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Definitions for showing gateway flags.
|
|
|
|
*/
|
|
|
|
struct bits {
|
1994-12-13 22:34:34 +00:00
|
|
|
u_long b_mask;
|
1994-05-27 12:33:43 +00:00
|
|
|
char b_val;
|
|
|
|
} bits[] = {
|
|
|
|
{ RTF_UP, 'U' },
|
|
|
|
{ RTF_GATEWAY, 'G' },
|
|
|
|
{ RTF_HOST, 'H' },
|
|
|
|
{ RTF_REJECT, 'R' },
|
|
|
|
{ RTF_DYNAMIC, 'D' },
|
|
|
|
{ RTF_MODIFIED, 'M' },
|
|
|
|
{ RTF_DONE, 'd' }, /* Completed -- for routing messages only */
|
|
|
|
{ RTF_XRESOLVE, 'X' },
|
|
|
|
{ RTF_STATIC, 'S' },
|
|
|
|
{ RTF_PROTO1, '1' },
|
|
|
|
{ RTF_PROTO2, '2' },
|
1994-12-13 22:34:34 +00:00
|
|
|
{ RTF_PRCLONING,'c' },
|
|
|
|
{ RTF_PROTO3, '3' },
|
1996-06-15 17:08:40 +00:00
|
|
|
{ RTF_BLACKHOLE,'B' },
|
|
|
|
{ RTF_BROADCAST,'b' },
|
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
|
|
|
|
{ RTF_LLINFO, 'L' },
|
|
|
|
#endif
|
|
|
|
#ifdef RTF_WASCLONED
|
|
|
|
{ RTF_WASCLONED,'W' },
|
|
|
|
#endif
|
|
|
|
#ifdef RTF_CLONING
|
|
|
|
{ RTF_CLONING, 'C' },
|
|
|
|
#endif
|
2002-09-05 17:06:51 +00:00
|
|
|
{ 0 , 0 }
|
1994-05-27 12:33:43 +00:00
|
|
|
};
|
|
|
|
|
1998-04-22 06:54:31 +00:00
|
|
|
typedef union {
|
1998-08-18 13:41:38 +00:00
|
|
|
long dummy; /* Helps align structure. */
|
1994-05-27 12:33:43 +00:00
|
|
|
struct sockaddr u_sa;
|
|
|
|
u_short u_data[128];
|
1998-04-22 06:54:31 +00:00
|
|
|
} sa_u;
|
|
|
|
|
|
|
|
static sa_u pt_u;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
int do_rtent = 0;
|
|
|
|
struct rtentry rtentry;
|
|
|
|
struct radix_node rnode;
|
|
|
|
struct radix_mask rmask;
|
2009-06-01 15:49:42 +00:00
|
|
|
struct radix_node_head **rt_tables;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
int NewTree = 0;
|
|
|
|
|
2006-07-06 11:59:27 +00:00
|
|
|
struct timespec uptime;
|
|
|
|
|
2008-01-02 23:26:11 +00:00
|
|
|
static struct sockaddr *kgetsa(struct sockaddr *);
|
|
|
|
static void size_cols(int ef, struct radix_node *rn);
|
|
|
|
static void size_cols_tree(struct radix_node *rn);
|
|
|
|
static void size_cols_rtentry(struct rtentry *rt);
|
|
|
|
static void p_tree(struct radix_node *);
|
|
|
|
static void p_rtnode(void);
|
|
|
|
static void ntreestuff(void);
|
|
|
|
static void np_rtentry(struct rt_msghdr *);
|
|
|
|
static void p_sockaddr(struct sockaddr *, struct sockaddr *, int, int);
|
|
|
|
static const char *fmt_sockaddr(struct sockaddr *sa, struct sockaddr *mask,
|
2008-09-01 15:04:38 +00:00
|
|
|
int flags);
|
2008-01-02 23:26:11 +00:00
|
|
|
static void p_flags(int, const char *);
|
2002-06-05 18:29:26 +00:00
|
|
|
static const char *fmt_flags(int f);
|
2008-01-02 23:26:11 +00:00
|
|
|
static void p_rtentry(struct rtentry *);
|
2008-02-11 20:34:27 +00:00
|
|
|
static void domask(char *, in_addr_t, u_long);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Print routing tables.
|
|
|
|
*/
|
|
|
|
void
|
2013-07-12 17:11:30 +00:00
|
|
|
routepr(u_long rtree, int fibnum)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2009-06-01 15:49:42 +00:00
|
|
|
struct radix_node_head **rnhp, *rnh, head;
|
2008-09-01 15:04:38 +00:00
|
|
|
size_t intsize;
|
2013-07-12 17:11:30 +00:00
|
|
|
int fam, 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
|
|
|
|
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);
|
2009-06-01 15:49:42 +00:00
|
|
|
rt_tables = calloc(numfibs * (AF_MAX+1),
|
|
|
|
sizeof(struct radix_node_head *));
|
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
|
|
|
if (rt_tables == NULL)
|
|
|
|
err(EX_OSERR, "memory allocation failed");
|
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
|
|
|
|
* directly we should do rt_rmx.rmx_expire --> expire_time conversion.
|
|
|
|
*/
|
|
|
|
if (clock_gettime(CLOCK_UPTIME, &uptime) < 0)
|
|
|
|
err(EX_OSERR, "clock_gettime() failed");
|
|
|
|
|
2013-07-12 17:11:30 +00:00
|
|
|
printf("Routing tables");
|
|
|
|
if (fibnum)
|
|
|
|
printf(" (fib: %d)", fibnum);
|
|
|
|
printf("\n");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (Aflag == 0 && NewTree)
|
|
|
|
ntreestuff();
|
|
|
|
else {
|
|
|
|
if (rtree == 0) {
|
|
|
|
printf("rt_tables: symbol not in namelist\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-01 15:49:42 +00:00
|
|
|
if (kread((u_long)(rtree), (char *)(rt_tables), (numfibs *
|
|
|
|
(AF_MAX+1) * sizeof(struct radix_node_head *))) != 0)
|
2008-02-14 20:01:52 +00:00
|
|
|
return;
|
2012-02-03 15:26:55 +00:00
|
|
|
for (fam = 0; fam <= AF_MAX; fam++) {
|
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
|
|
|
int tmpfib;
|
2012-02-03 15:26:55 +00:00
|
|
|
|
|
|
|
switch (fam) {
|
|
|
|
case AF_INET6:
|
|
|
|
case AF_INET:
|
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
|
|
|
tmpfib = fibnum;
|
2012-02-03 15:26:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tmpfib = 0;
|
|
|
|
}
|
2009-06-01 15:49:42 +00:00
|
|
|
rnhp = (struct radix_node_head **)*rt_tables;
|
|
|
|
/* Calculate the in-kernel address. */
|
2012-02-03 15:26:55 +00:00
|
|
|
rnhp += tmpfib * (AF_MAX+1) + fam;
|
2009-06-01 15:49:42 +00:00
|
|
|
/* Read the in kernel rhn pointer. */
|
|
|
|
if (kget(rnhp, rnh) != 0)
|
|
|
|
continue;
|
|
|
|
if (rnh == NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
2009-06-01 15:49:42 +00:00
|
|
|
/* Read the rnh data. */
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rnh, head) != 0)
|
|
|
|
continue;
|
2012-02-03 15:26:55 +00:00
|
|
|
if (fam == AF_UNSPEC) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (Aflag && af == 0) {
|
|
|
|
printf("Netmasks:\n");
|
|
|
|
p_tree(head.rnh_treetop);
|
|
|
|
}
|
2012-02-03 15:26:55 +00:00
|
|
|
} else if (af == AF_UNSPEC || af == fam) {
|
|
|
|
size_cols(fam, head.rnh_treetop);
|
|
|
|
pr_family(fam);
|
1994-05-27 12:33:43 +00:00
|
|
|
do_rtent = 1;
|
2012-02-03 15:26:55 +00:00
|
|
|
pr_rthdr(fam);
|
1994-05-27 12:33:43 +00:00
|
|
|
p_tree(head.rnh_treetop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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*/
|
1995-10-26 20:31:59 +00:00
|
|
|
case AF_IPX:
|
|
|
|
afname = "IPX";
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
case AF_ISO:
|
|
|
|
afname = "ISO";
|
|
|
|
break;
|
1996-06-08 00:20:42 +00:00
|
|
|
case AF_APPLETALK:
|
1996-07-23 01:18:47 +00:00
|
|
|
afname = "AppleTalk";
|
1996-06-08 00:20:42 +00:00
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
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)
|
|
|
|
printf("\n%s:\n", afname);
|
|
|
|
else
|
2002-09-05 17:06:51 +00:00
|
|
|
printf("\nProtocol 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 */
|
2003-11-28 17:34:23 +00:00
|
|
|
#define WID_IF_DEFAULT(af) (Wflag ? 8 : 6) /* 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)
|
2003-11-28 17:34:23 +00:00
|
|
|
#define WID_IF_DEFAULT(af) ((af) == AF_INET6 ? 8 : (Wflag ? 8 : 6))
|
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;
|
|
|
|
static int wid_refs;
|
|
|
|
static int wid_use;
|
|
|
|
static int wid_mtu;
|
|
|
|
static int wid_if;
|
|
|
|
static int wid_expire;
|
|
|
|
|
|
|
|
static void
|
2008-01-10 04:28:26 +00:00
|
|
|
size_cols(int ef __unused, struct radix_node *rn)
|
2002-06-05 18:29:26 +00:00
|
|
|
{
|
|
|
|
wid_dst = WID_DST_DEFAULT(ef);
|
|
|
|
wid_gw = WID_GW_DEFAULT(ef);
|
|
|
|
wid_flags = 6;
|
|
|
|
wid_refs = 6;
|
|
|
|
wid_use = 8;
|
|
|
|
wid_mtu = 6;
|
|
|
|
wid_if = WID_IF_DEFAULT(ef);
|
|
|
|
wid_expire = 6;
|
|
|
|
|
|
|
|
if (Wflag)
|
|
|
|
size_cols_tree(rn);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
size_cols_tree(struct radix_node *rn)
|
|
|
|
{
|
|
|
|
again:
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rn, rnode) != 0)
|
|
|
|
return;
|
|
|
|
if (!(rnode.rn_flags & RNF_ACTIVE))
|
|
|
|
return;
|
2002-06-05 18:29:26 +00:00
|
|
|
if (rnode.rn_bit < 0) {
|
|
|
|
if ((rnode.rn_flags & RNF_ROOT) == 0) {
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rn, rtentry) != 0)
|
|
|
|
return;
|
2002-06-05 18:29:26 +00:00
|
|
|
size_cols_rtentry(&rtentry);
|
|
|
|
}
|
|
|
|
if ((rn = rnode.rn_dupedkey))
|
|
|
|
goto again;
|
|
|
|
} else {
|
|
|
|
rn = rnode.rn_right;
|
|
|
|
size_cols_tree(rnode.rn_left);
|
|
|
|
size_cols_tree(rn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
size_cols_rtentry(struct rtentry *rt)
|
|
|
|
{
|
|
|
|
static struct ifnet ifnet, *lastif;
|
|
|
|
static char buffer[100];
|
|
|
|
const char *bp;
|
|
|
|
struct sockaddr *sa;
|
|
|
|
sa_u addr, mask;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
bzero(&addr, sizeof(addr));
|
|
|
|
if ((sa = kgetsa(rt_key(rt))))
|
|
|
|
bcopy(sa, &addr, sa->sa_len);
|
|
|
|
bzero(&mask, sizeof(mask));
|
|
|
|
if (rt_mask(rt) && (sa = kgetsa(rt_mask(rt))))
|
|
|
|
bcopy(sa, &mask, sa->sa_len);
|
|
|
|
bp = fmt_sockaddr(&addr.u_sa, &mask.u_sa, rt->rt_flags);
|
|
|
|
len = strlen(bp);
|
|
|
|
wid_dst = MAX(len, wid_dst);
|
|
|
|
|
|
|
|
bp = fmt_sockaddr(kgetsa(rt->rt_gateway), NULL, RTF_HOST);
|
|
|
|
len = strlen(bp);
|
|
|
|
wid_gw = MAX(len, wid_gw);
|
|
|
|
|
|
|
|
bp = fmt_flags(rt->rt_flags);
|
|
|
|
len = strlen(bp);
|
|
|
|
wid_flags = MAX(len, wid_flags);
|
|
|
|
|
|
|
|
if (addr.u_sa.sa_family == AF_INET || Wflag) {
|
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
|
|
|
len = snprintf(buffer, sizeof(buffer), "%d", rt->rt_refcnt);
|
2002-06-05 18:29:26 +00:00
|
|
|
wid_refs = MAX(len, wid_refs);
|
|
|
|
len = snprintf(buffer, sizeof(buffer), "%lu", rt->rt_use);
|
|
|
|
wid_use = MAX(len, wid_use);
|
|
|
|
if (Wflag && rt->rt_rmx.rmx_mtu != 0) {
|
|
|
|
len = snprintf(buffer, sizeof(buffer),
|
|
|
|
"%lu", rt->rt_rmx.rmx_mtu);
|
|
|
|
wid_mtu = MAX(len, wid_mtu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rt->rt_ifp) {
|
|
|
|
if (rt->rt_ifp != lastif) {
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rt->rt_ifp, ifnet) == 0)
|
|
|
|
len = strlen(ifnet.if_xname);
|
|
|
|
else
|
|
|
|
len = strlen("---");
|
2002-06-05 18:29:26 +00:00
|
|
|
lastif = rt->rt_ifp;
|
|
|
|
wid_if = MAX(len, wid_if);
|
|
|
|
}
|
|
|
|
if (rt->rt_rmx.rmx_expire) {
|
|
|
|
time_t expire_time;
|
|
|
|
|
|
|
|
if ((expire_time =
|
2006-07-06 11:59:27 +00:00
|
|
|
rt->rt_rmx.rmx_expire - uptime.tv_sec) > 0) {
|
2002-06-05 18:29:26 +00:00
|
|
|
len = snprintf(buffer, sizeof(buffer), "%d",
|
|
|
|
(int)expire_time);
|
|
|
|
wid_expire = MAX(len, wid_expire);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print header for routing table columns.
|
|
|
|
*/
|
|
|
|
void
|
2002-09-05 17:06:51 +00:00
|
|
|
pr_rthdr(int af1)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1999-12-21 09:31:14 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
if (Aflag)
|
|
|
|
printf("%-8.8s ","Address");
|
2002-09-05 17:06:51 +00:00
|
|
|
if (af1 == AF_INET || Wflag) {
|
2002-06-05 18:29:26 +00:00
|
|
|
if (Wflag) {
|
|
|
|
printf("%-*.*s %-*.*s %-*.*s %*.*s %*.*s %*.*s %*.*s %*s\n",
|
|
|
|
wid_dst, wid_dst, "Destination",
|
|
|
|
wid_gw, wid_gw, "Gateway",
|
|
|
|
wid_flags, wid_flags, "Flags",
|
|
|
|
wid_refs, wid_refs, "Refs",
|
|
|
|
wid_use, wid_use, "Use",
|
|
|
|
wid_mtu, wid_mtu, "Mtu",
|
|
|
|
wid_if, wid_if, "Netif",
|
|
|
|
wid_expire, "Expire");
|
|
|
|
} else {
|
|
|
|
printf("%-*.*s %-*.*s %-*.*s %*.*s %*.*s %*.*s %*s\n",
|
|
|
|
wid_dst, wid_dst, "Destination",
|
|
|
|
wid_gw, wid_gw, "Gateway",
|
|
|
|
wid_flags, wid_flags, "Flags",
|
|
|
|
wid_refs, wid_refs, "Refs",
|
|
|
|
wid_use, wid_use, "Use",
|
|
|
|
wid_if, wid_if, "Netif",
|
|
|
|
wid_expire, "Expire");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("%-*.*s %-*.*s %-*.*s %*.*s %*s\n",
|
|
|
|
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 struct sockaddr *
|
2001-06-15 23:35:13 +00:00
|
|
|
kgetsa(struct sockaddr *dst)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(dst, pt_u.u_sa) != 0)
|
|
|
|
return (NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (pt_u.u_sa.sa_len > sizeof (pt_u.u_sa))
|
|
|
|
kread((u_long)dst, (char *)pt_u.u_data, pt_u.u_sa.sa_len);
|
|
|
|
return (&pt_u.u_sa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-06-15 23:35:13 +00:00
|
|
|
p_tree(struct radix_node *rn)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
again:
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rn, rnode) != 0)
|
|
|
|
return;
|
|
|
|
if (!(rnode.rn_flags & RNF_ACTIVE))
|
|
|
|
return;
|
2000-04-23 14:18:18 +00:00
|
|
|
if (rnode.rn_bit < 0) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (Aflag)
|
1998-08-18 13:41:38 +00:00
|
|
|
printf("%-8.8lx ", (u_long)rn);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (rnode.rn_flags & RNF_ROOT) {
|
|
|
|
if (Aflag)
|
|
|
|
printf("(root node)%s",
|
|
|
|
rnode.rn_dupedkey ? " =>\n" : "\n");
|
|
|
|
} else if (do_rtent) {
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rn, rtentry) == 0) {
|
|
|
|
p_rtentry(&rtentry);
|
|
|
|
if (Aflag)
|
|
|
|
p_rtnode();
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
} else {
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rnode.rn_key),
|
1996-01-14 23:33:13 +00:00
|
|
|
NULL, 0, 44);
|
1994-05-27 12:33:43 +00:00
|
|
|
putchar('\n');
|
|
|
|
}
|
1996-06-02 23:19:12 +00:00
|
|
|
if ((rn = rnode.rn_dupedkey))
|
1994-05-27 12:33:43 +00:00
|
|
|
goto again;
|
|
|
|
} else {
|
|
|
|
if (Aflag && do_rtent) {
|
1998-08-18 13:41:38 +00:00
|
|
|
printf("%-8.8lx ", (u_long)rn);
|
1994-05-27 12:33:43 +00:00
|
|
|
p_rtnode();
|
|
|
|
}
|
2000-04-23 14:18:18 +00:00
|
|
|
rn = rnode.rn_right;
|
|
|
|
p_tree(rnode.rn_left);
|
1994-05-27 12:33:43 +00:00
|
|
|
p_tree(rn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char nbuf[20];
|
|
|
|
|
|
|
|
static void
|
2001-06-15 23:35:13 +00:00
|
|
|
p_rtnode(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct radix_mask *rm = rnode.rn_mklist;
|
|
|
|
|
2000-04-23 14:18:18 +00:00
|
|
|
if (rnode.rn_bit < 0) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (rnode.rn_mask) {
|
|
|
|
printf("\t mask ");
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rnode.rn_mask),
|
1996-01-14 23:33:13 +00:00
|
|
|
NULL, 0, -1);
|
1994-05-27 12:33:43 +00:00
|
|
|
} else if (rm == 0)
|
|
|
|
return;
|
|
|
|
} else {
|
2000-04-23 14:18:18 +00:00
|
|
|
sprintf(nbuf, "(%d)", rnode.rn_bit);
|
|
|
|
printf("%6.6s %8.8lx : %8.8lx", nbuf, (u_long)rnode.rn_left, (u_long)rnode.rn_right);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
while (rm) {
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rm, rmask) != 0)
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
sprintf(nbuf, " %d refs, ", rmask.rm_refs);
|
1998-08-18 13:41:38 +00:00
|
|
|
printf(" mk = %8.8lx {(%d),%s",
|
2000-04-23 14:18:18 +00:00
|
|
|
(u_long)rm, -1 - rmask.rm_bit, rmask.rm_refs ? nbuf : " ");
|
1996-01-14 23:33:13 +00:00
|
|
|
if (rmask.rm_flags & RNF_NORMAL) {
|
|
|
|
struct radix_node rnode_aux;
|
|
|
|
printf(" <normal>, ");
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rmask.rm_leaf, rnode_aux) == 0)
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rnode_aux.rn_mask),
|
1996-01-14 23:33:13 +00:00
|
|
|
NULL, 0, -1);
|
2008-02-14 20:01:52 +00:00
|
|
|
else
|
|
|
|
p_sockaddr(NULL, NULL, 0, -1);
|
1996-01-14 23:33:13 +00:00
|
|
|
} else
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rmask.rm_mask),
|
|
|
|
NULL, 0, -1);
|
1994-05-27 12:33:43 +00:00
|
|
|
putchar('}');
|
1996-06-02 23:19:12 +00:00
|
|
|
if ((rm = rmask.rm_mklist))
|
1994-05-27 12:33:43 +00:00
|
|
|
printf(" ->");
|
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-06-15 23:35:13 +00:00
|
|
|
ntreestuff(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
size_t needed;
|
|
|
|
int mib[6];
|
|
|
|
char *buf, *next, *lim;
|
2002-09-05 17:06:51 +00:00
|
|
|
struct rt_msghdr *rtm;
|
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;
|
|
|
|
mib[3] = 0;
|
|
|
|
mib[4] = NET_RT_DUMP;
|
|
|
|
mib[5] = 0;
|
|
|
|
if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) {
|
1995-01-23 20:19:16 +00:00
|
|
|
err(1, "sysctl: net.route.0.0.dump estimate");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((buf = malloc(needed)) == 0) {
|
2004-07-26 20:18:11 +00:00
|
|
|
errx(2, "malloc(%lu)", (unsigned long)needed);
|
1995-01-23 20:19:16 +00:00
|
|
|
}
|
1998-04-19 18:18:25 +00:00
|
|
|
if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) {
|
1995-01-23 20:19:16 +00:00
|
|
|
err(1, "sysctl: net.route.0.0.dump");
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
lim = buf + needed;
|
|
|
|
for (next = buf; next < lim; next += rtm->rtm_msglen) {
|
|
|
|
rtm = (struct rt_msghdr *)next;
|
|
|
|
np_rtentry(rtm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-06-15 23:35:13 +00:00
|
|
|
np_rtentry(struct rt_msghdr *rtm)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
struct sockaddr *sa = (struct sockaddr *)(rtm + 1);
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifdef notdef
|
|
|
|
static int masks_done, banner_printed;
|
|
|
|
#endif
|
|
|
|
static int old_af;
|
2002-09-05 17:06:51 +00:00
|
|
|
int af1 = 0, interesting = RTF_UP | RTF_GATEWAY | RTF_HOST;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#ifdef notdef
|
|
|
|
/* for the moment, netmasks are skipped over */
|
|
|
|
if (!banner_printed) {
|
|
|
|
printf("Netmasks:\n");
|
|
|
|
banner_printed = 1;
|
|
|
|
}
|
|
|
|
if (masks_done == 0) {
|
|
|
|
if (rtm->rtm_addrs != RTA_DST ) {
|
|
|
|
masks_done = 1;
|
2002-09-05 17:06:51 +00:00
|
|
|
af1 = sa->sa_family;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
2002-09-05 17:06:51 +00:00
|
|
|
af1 = sa->sa_family;
|
|
|
|
if (af1 != old_af) {
|
|
|
|
pr_family(af1);
|
|
|
|
old_af = af1;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
if (rtm->rtm_addrs == RTA_DST)
|
1996-01-14 23:33:13 +00:00
|
|
|
p_sockaddr(sa, NULL, 0, 36);
|
1994-05-27 12:33:43 +00:00
|
|
|
else {
|
1996-01-14 23:33:13 +00:00
|
|
|
p_sockaddr(sa, NULL, rtm->rtm_flags, 16);
|
2004-04-13 11:24:43 +00:00
|
|
|
sa = (struct sockaddr *)(SA_SIZE(sa) + (char *)sa);
|
1996-01-14 23:33:13 +00:00
|
|
|
p_sockaddr(sa, NULL, 0, 18);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
p_flags(rtm->rtm_flags & interesting, "%-6.6s ");
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-06-15 23:35:13 +00:00
|
|
|
p_sockaddr(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;
|
|
|
|
|
|
|
|
cp = fmt_sockaddr(sa, mask, flags);
|
|
|
|
|
|
|
|
if (width < 0 )
|
|
|
|
printf("%s ", cp);
|
|
|
|
else {
|
|
|
|
if (numeric_addr)
|
|
|
|
printf("%-*s ", width, cp);
|
|
|
|
else
|
|
|
|
printf("%-*.*s ", width, width, cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
fmt_sockaddr(struct sockaddr *sa, struct sockaddr *mask, int flags)
|
|
|
|
{
|
|
|
|
static char workbuf[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) {
|
|
|
|
case AF_INET:
|
|
|
|
{
|
2004-07-26 20:18:11 +00:00
|
|
|
struct sockaddr_in *sockin = (struct sockaddr_in *)sa;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2004-07-26 20:18:11 +00:00
|
|
|
if ((sockin->sin_addr.s_addr == INADDR_ANY) &&
|
2000-01-07 19:56:57 +00:00
|
|
|
mask &&
|
|
|
|
ntohl(((struct sockaddr_in *)mask)->sin_addr.s_addr)
|
|
|
|
==0L)
|
|
|
|
cp = "default" ;
|
1996-01-14 23:33:13 +00:00
|
|
|
else if (flags & RTF_HOST)
|
2004-07-26 20:18:11 +00:00
|
|
|
cp = routename(sockin->sin_addr.s_addr);
|
1996-01-14 23:33:13 +00:00
|
|
|
else if (mask)
|
2004-07-26 20:18:11 +00:00
|
|
|
cp = netname(sockin->sin_addr.s_addr,
|
2013-10-15 09:55:07 +00:00
|
|
|
((struct sockaddr_in *)mask)->sin_addr.s_addr);
|
1996-01-14 23:33:13 +00:00
|
|
|
else
|
2013-10-15 09:55:07 +00:00
|
|
|
cp = netname(sockin->sin_addr.s_addr, INADDR_ANY);
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
{
|
|
|
|
struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)sa;
|
2011-01-20 15:22:01 +00:00
|
|
|
|
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].
|
|
|
|
*/
|
2011-01-20 15:22:01 +00:00
|
|
|
in6_fillscopeid(sa6);
|
1999-12-07 17:39:16 +00:00
|
|
|
|
|
|
|
if (flags & RTF_HOST)
|
|
|
|
cp = routename6(sa6);
|
|
|
|
else if (mask)
|
|
|
|
cp = netname6(sa6,
|
|
|
|
&((struct sockaddr_in6 *)mask)->sin6_addr);
|
|
|
|
else {
|
|
|
|
cp = netname6(sa6, NULL);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /*INET6*/
|
|
|
|
|
1995-10-26 20:31:59 +00:00
|
|
|
case AF_IPX:
|
|
|
|
{
|
1995-12-05 07:29:15 +00:00
|
|
|
struct ipx_addr work = ((struct sockaddr_ipx *)sa)->sipx_addr;
|
|
|
|
if (ipx_nullnet(satoipx_addr(work)))
|
1995-10-26 20:31:59 +00:00
|
|
|
cp = "default";
|
|
|
|
else
|
|
|
|
cp = ipx_print(sa);
|
|
|
|
break;
|
|
|
|
}
|
1996-06-08 00:20:42 +00:00
|
|
|
case AF_APPLETALK:
|
|
|
|
{
|
1996-07-23 22:00:14 +00:00
|
|
|
if (!(flags & RTF_HOST) && mask)
|
1996-09-05 23:34:09 +00:00
|
|
|
cp = atalk_print2(sa,mask,9);
|
1996-07-23 01:18:47 +00:00
|
|
|
else
|
|
|
|
cp = atalk_print(sa,11);
|
1996-06-08 00:20:42 +00:00
|
|
|
break;
|
|
|
|
}
|
1999-10-21 09:06:11 +00:00
|
|
|
case AF_NETGRAPH:
|
|
|
|
{
|
2006-11-27 19:48:45 +00:00
|
|
|
strlcpy(workbuf, ((struct sockaddr_ng *)sa)->sg_data,
|
|
|
|
sizeof(workbuf));
|
|
|
|
cp = workbuf;
|
1999-10-21 09:06:11 +00:00
|
|
|
break;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
case AF_LINK:
|
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
struct sockaddr_dl *sdl = (struct sockaddr_dl *)sa;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (sdl->sdl_nlen == 0 && sdl->sdl_alen == 0 &&
|
2002-09-05 17:06:51 +00:00
|
|
|
sdl->sdl_slen == 0) {
|
1994-05-27 12:33:43 +00:00
|
|
|
(void) sprintf(workbuf, "link#%d", sdl->sdl_index);
|
2002-09-05 17:06:51 +00:00
|
|
|
cp = workbuf;
|
|
|
|
} else
|
1998-04-19 18:18:25 +00:00
|
|
|
switch (sdl->sdl_type) {
|
|
|
|
|
|
|
|
case IFT_ETHER:
|
2004-07-28 18:18:47 +00:00
|
|
|
case IFT_L2VLAN:
|
2008-01-10 20:53:13 +00:00
|
|
|
case IFT_BRIDGE:
|
2002-04-06 10:02:20 +00:00
|
|
|
if (sdl->sdl_alen == ETHER_ADDR_LEN) {
|
|
|
|
cp = ether_ntoa((struct ether_addr *)
|
2002-07-16 05:57:21 +00:00
|
|
|
(sdl->sdl_data + sdl->sdl_nlen));
|
2002-04-06 10:02:20 +00:00
|
|
|
break;
|
1998-04-19 18:18:25 +00:00
|
|
|
}
|
2002-04-06 10:02:20 +00:00
|
|
|
/* FALLTHROUGH */
|
1998-04-19 18:18:25 +00:00
|
|
|
default:
|
|
|
|
cp = link_ntoa(sdl);
|
|
|
|
break;
|
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
|
|
|
|
2002-09-05 17:06:51 +00:00
|
|
|
cq = workbuf;
|
1994-05-27 12:33:43 +00:00
|
|
|
slim = sa->sa_len + (u_char *) sa;
|
2002-09-05 17:06:51 +00:00
|
|
|
cqlim = cq + sizeof(workbuf) - 6;
|
|
|
|
cq += sprintf(cq, "(%d)", sa->sa_family);
|
|
|
|
while (s < slim && cq < cqlim) {
|
|
|
|
cq += sprintf(cq, " %02x", *s++);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (s < slim)
|
2002-09-05 17:06:51 +00:00
|
|
|
cq += sprintf(cq, "%02x", *s++);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
cp = workbuf;
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
{
|
2002-06-05 18:29:26 +00:00
|
|
|
printf(format, fmt_flags(f));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
fmt_flags(int f)
|
|
|
|
{
|
|
|
|
static char name[33];
|
|
|
|
char *flags;
|
|
|
|
struct bits *p = bits;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
for (flags = name; p->b_mask; p++)
|
|
|
|
if (p->b_mask & f)
|
|
|
|
*flags++ = p->b_val;
|
|
|
|
*flags = '\0';
|
2002-06-05 18:29:26 +00:00
|
|
|
return (name);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-06-15 23:35:13 +00:00
|
|
|
p_rtentry(struct rtentry *rt)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
static struct ifnet ifnet, *lastif;
|
2002-06-05 18:29:26 +00:00
|
|
|
static char buffer[128];
|
|
|
|
static char prettyname[128];
|
1996-01-14 23:33:13 +00:00
|
|
|
struct sockaddr *sa;
|
1998-04-22 06:54:31 +00:00
|
|
|
sa_u addr, mask;
|
1995-01-23 20:19:16 +00:00
|
|
|
|
1998-07-06 20:52:08 +00:00
|
|
|
bzero(&addr, sizeof(addr));
|
1998-04-22 06:54:31 +00:00
|
|
|
if ((sa = kgetsa(rt_key(rt))))
|
1998-07-06 20:52:08 +00:00
|
|
|
bcopy(sa, &addr, sa->sa_len);
|
|
|
|
bzero(&mask, sizeof(mask));
|
1998-04-22 06:54:31 +00:00
|
|
|
if (rt_mask(rt) && (sa = kgetsa(rt_mask(rt))))
|
1998-07-06 20:52:08 +00:00
|
|
|
bcopy(sa, &mask, sa->sa_len);
|
2002-06-05 18:29:26 +00:00
|
|
|
p_sockaddr(&addr.u_sa, &mask.u_sa, rt->rt_flags, wid_dst);
|
|
|
|
p_sockaddr(kgetsa(rt->rt_gateway), NULL, RTF_HOST, wid_gw);
|
|
|
|
snprintf(buffer, sizeof(buffer), "%%-%d.%ds ", wid_flags, wid_flags);
|
|
|
|
p_flags(rt->rt_flags, buffer);
|
2001-09-07 12:00:50 +00:00
|
|
|
if (addr.u_sa.sa_family == AF_INET || Wflag) {
|
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
|
|
|
printf("%*d %*lu ", wid_refs, rt->rt_refcnt,
|
2002-06-05 18:29:26 +00:00
|
|
|
wid_use, rt->rt_use);
|
2001-09-07 12:00:50 +00:00
|
|
|
if (Wflag) {
|
2001-06-11 12:39:29 +00:00
|
|
|
if (rt->rt_rmx.rmx_mtu != 0)
|
2002-06-05 18:29:26 +00:00
|
|
|
printf("%*lu ", wid_mtu, rt->rt_rmx.rmx_mtu);
|
2001-06-11 12:39:29 +00:00
|
|
|
else
|
2002-06-05 18:29:26 +00:00
|
|
|
printf("%*s ", wid_mtu, "");
|
2001-06-11 12:39:29 +00:00
|
|
|
}
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
if (rt->rt_ifp) {
|
|
|
|
if (rt->rt_ifp != lastif) {
|
2008-02-14 20:01:52 +00:00
|
|
|
if (kget(rt->rt_ifp, ifnet) == 0)
|
|
|
|
strlcpy(prettyname, ifnet.if_xname,
|
|
|
|
sizeof(prettyname));
|
|
|
|
else
|
|
|
|
strlcpy(prettyname, "---", sizeof(prettyname));
|
1994-05-27 12:33:43 +00:00
|
|
|
lastif = rt->rt_ifp;
|
|
|
|
}
|
2002-06-05 18:29:26 +00:00
|
|
|
printf("%*.*s", wid_if, wid_if, prettyname);
|
1998-04-19 18:18:25 +00:00
|
|
|
if (rt->rt_rmx.rmx_expire) {
|
1995-04-06 06:09:44 +00:00
|
|
|
time_t expire_time;
|
1995-01-23 20:19:16 +00:00
|
|
|
|
1998-04-19 18:18:25 +00:00
|
|
|
if ((expire_time =
|
2006-07-06 11:59:27 +00:00
|
|
|
rt->rt_rmx.rmx_expire - uptime.tv_sec) > 0)
|
2002-06-05 18:29:26 +00:00
|
|
|
printf(" %*d", wid_expire, (int)expire_time);
|
1995-01-23 20:19:16 +00:00
|
|
|
}
|
2001-06-29 08:37:12 +00:00
|
|
|
if (rt->rt_nodes[0].rn_dupedkey)
|
|
|
|
printf(" =>");
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2008-02-07 23:00:40 +00:00
|
|
|
routename(in_addr_t in)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
char *cp;
|
2001-03-14 20:51:26 +00:00
|
|
|
static char line[MAXHOSTNAMELEN];
|
1994-05-27 12:33:43 +00:00
|
|
|
struct hostent *hp;
|
1996-01-15 02:18:35 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
cp = 0;
|
2001-06-15 00:25:44 +00:00
|
|
|
if (!numeric_addr) {
|
2008-02-07 23:00:40 +00:00
|
|
|
hp = gethostbyaddr(&in, sizeof (struct in_addr), AF_INET);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (hp) {
|
|
|
|
cp = hp->h_name;
|
2001-03-14 20:51:26 +00:00
|
|
|
trimdomain(cp, strlen(cp));
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
1998-06-09 04:13:03 +00:00
|
|
|
if (cp) {
|
2008-10-17 21:14:50 +00:00
|
|
|
strlcpy(line, cp, sizeof(line));
|
1998-06-09 04:13:03 +00:00
|
|
|
} else {
|
2008-01-02 23:26:11 +00:00
|
|
|
#define C(x) ((x) & 0xff)
|
1994-05-27 12:33:43 +00:00
|
|
|
in = ntohl(in);
|
2008-02-07 23:00:40 +00:00
|
|
|
sprintf(line, "%u.%u.%u.%u",
|
1994-05-27 12:33:43 +00:00
|
|
|
C(in >> 24), C(in >> 16), C(in >> 8), C(in));
|
|
|
|
}
|
|
|
|
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
|
2008-02-11 20:34:27 +00:00
|
|
|
domask(char *dst, in_addr_t addr __unused, 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
|
|
|
|
2007-02-14 14:17:01 +00:00
|
|
|
if (mask == 0 || (!numeric_addr && NSHIFT(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)
|
|
|
|
sprintf(dst, "&0x%lx", mask);
|
|
|
|
else
|
|
|
|
sprintf(dst, "/%d", 32-i);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Return the name of the network whose address is given.
|
|
|
|
*/
|
|
|
|
char *
|
2013-10-15 09:55:07 +00:00
|
|
|
netname(in_addr_t in, in_addr_t mask)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
char *cp = 0;
|
2001-03-14 20:51:26 +00:00
|
|
|
static char line[MAXHOSTNAMELEN];
|
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
|
|
|
|
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
|
|
|
}
|
2001-10-11 14:30:42 +00:00
|
|
|
if (cp != NULL) {
|
2008-10-17 21:14:50 +00:00
|
|
|
strlcpy(line, cp, sizeof(line));
|
2001-10-11 14:30:42 +00:00
|
|
|
} else {
|
2008-02-07 23:00:40 +00:00
|
|
|
inet_ntop(AF_INET, &in, line, sizeof(line) - 1);
|
2001-06-08 15:44:17 +00:00
|
|
|
}
|
2013-10-15 09:55:07 +00:00
|
|
|
domask(line + strlen(line), i, ntohl(mask));
|
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)) {
|
|
|
|
/* XXX: override is ok? */
|
|
|
|
sa6->sin6_scope_id =
|
|
|
|
ntohs(*(u_int16_t *)&sa6->sin6_addr.s6_addr[2]);
|
|
|
|
sa6->sin6_addr.s6_addr[2] = sa6->sin6_addr.s6_addr[3] = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2002-09-05 17:06:51 +00:00
|
|
|
const char *
|
2001-06-15 23:35:13 +00:00
|
|
|
netname6(struct sockaddr_in6 *sa6, struct in6_addr *mask)
|
1999-12-07 17:39:16 +00:00
|
|
|
{
|
2001-03-14 20:51:26 +00:00
|
|
|
static char line[MAXHOSTNAMELEN];
|
1999-12-07 17:39:16 +00:00
|
|
|
u_char *p = (u_char *)mask;
|
|
|
|
u_char *lim;
|
2005-05-13 16:31:11 +00:00
|
|
|
int masklen, illegal = 0, flag = 0;
|
1999-12-07 17:39:16 +00:00
|
|
|
|
|
|
|
if (mask) {
|
|
|
|
for (masklen = 0, lim = p + 16; p < lim; p++) {
|
|
|
|
switch (*p) {
|
2000-07-04 16:26:46 +00:00
|
|
|
case 0xff:
|
|
|
|
masklen += 8;
|
|
|
|
break;
|
1999-12-07 17:39:16 +00:00
|
|
|
case 0xfe:
|
|
|
|
masklen += 7;
|
|
|
|
break;
|
|
|
|
case 0xfc:
|
|
|
|
masklen += 6;
|
|
|
|
break;
|
|
|
|
case 0xf8:
|
|
|
|
masklen += 5;
|
|
|
|
break;
|
|
|
|
case 0xf0:
|
|
|
|
masklen += 4;
|
|
|
|
break;
|
|
|
|
case 0xe0:
|
|
|
|
masklen += 3;
|
|
|
|
break;
|
|
|
|
case 0xc0:
|
|
|
|
masklen += 2;
|
|
|
|
break;
|
|
|
|
case 0x80:
|
|
|
|
masklen += 1;
|
|
|
|
break;
|
|
|
|
case 0x00:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
illegal ++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (illegal)
|
|
|
|
fprintf(stderr, "illegal prefixlen\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
masklen = 128;
|
|
|
|
|
|
|
|
if (masklen == 0 && IN6_IS_ADDR_UNSPECIFIED(&sa6->sin6_addr))
|
|
|
|
return("default");
|
|
|
|
|
2001-06-15 00:25:44 +00:00
|
|
|
if (numeric_addr)
|
1999-12-07 17:39:16 +00:00
|
|
|
flag |= NI_NUMERICHOST;
|
|
|
|
getnameinfo((struct sockaddr *)sa6, sa6->sin6_len, line, sizeof(line),
|
|
|
|
NULL, 0, flag);
|
|
|
|
|
2001-06-15 00:25:44 +00:00
|
|
|
if (numeric_addr)
|
1999-12-07 17:39:16 +00:00
|
|
|
sprintf(&line[strlen(line)], "/%d", masklen);
|
|
|
|
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2001-06-15 23:35:13 +00:00
|
|
|
routename6(struct sockaddr_in6 *sa6)
|
1999-12-07 17:39:16 +00:00
|
|
|
{
|
2001-03-14 20:51:26 +00:00
|
|
|
static char line[MAXHOSTNAMELEN];
|
2005-05-13 16:31:11 +00:00
|
|
|
int flag = 0;
|
2000-07-04 16:26:46 +00:00
|
|
|
/* use local variable for safety */
|
2006-07-28 16:16:40 +00:00
|
|
|
struct sockaddr_in6 sa6_local;
|
2000-07-04 16:26:46 +00:00
|
|
|
|
2006-07-28 16:16:40 +00:00
|
|
|
sa6_local.sin6_family = AF_INET6;
|
|
|
|
sa6_local.sin6_len = sizeof(sa6_local);
|
2000-07-04 16:26:46 +00:00
|
|
|
sa6_local.sin6_addr = sa6->sin6_addr;
|
|
|
|
sa6_local.sin6_scope_id = sa6->sin6_scope_id;
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2001-06-15 00:25:44 +00:00
|
|
|
if (numeric_addr)
|
1999-12-07 17:39:16 +00:00
|
|
|
flag |= NI_NUMERICHOST;
|
|
|
|
|
2000-07-04 16:26:46 +00:00
|
|
|
getnameinfo((struct sockaddr *)&sa6_local, sa6_local.sin6_len,
|
|
|
|
line, sizeof(line), NULL, 0, flag);
|
1999-12-07 17:39:16 +00:00
|
|
|
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
#endif /*INET6*/
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Print routing statistics
|
|
|
|
*/
|
|
|
|
void
|
2001-06-29 09:08:24 +00:00
|
|
|
rt_stats(u_long rtsaddr, u_long rttaddr)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct rtstat rtstat;
|
2001-06-29 09:08:24 +00:00
|
|
|
int rttrash;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-06-29 09:08:24 +00:00
|
|
|
if (rtsaddr == 0) {
|
1994-05-27 12:33:43 +00:00
|
|
|
printf("rtstat: symbol not in namelist\n");
|
|
|
|
return;
|
|
|
|
}
|
2001-06-29 09:08:24 +00:00
|
|
|
if (rttaddr == 0) {
|
|
|
|
printf("rttrash: symbol not in namelist\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
kread(rtsaddr, (char *)&rtstat, sizeof (rtstat));
|
|
|
|
kread(rttaddr, (char *)&rttrash, sizeof (rttrash));
|
1994-05-27 12:33:43 +00:00
|
|
|
printf("routing:\n");
|
2001-06-23 09:18:57 +00:00
|
|
|
|
|
|
|
#define p(f, m) if (rtstat.f || sflag <= 1) \
|
|
|
|
printf(m, rtstat.f, plural(rtstat.f))
|
|
|
|
|
2009-10-15 10:31:24 +00:00
|
|
|
p(rts_badredirect, "\t%hu bad routing redirect%s\n");
|
|
|
|
p(rts_dynamic, "\t%hu dynamically created route%s\n");
|
|
|
|
p(rts_newgateway, "\t%hu new gateway%s due to redirects\n");
|
|
|
|
p(rts_unreach, "\t%hu destination%s found unreachable\n");
|
|
|
|
p(rts_wildcard, "\t%hu 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)
|
|
|
|
printf("\t%u route%s not in table but not freed\n",
|
|
|
|
rttrash, plural(rttrash));
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
1995-10-26 20:31:59 +00:00
|
|
|
|
|
|
|
char *
|
2001-06-15 23:35:13 +00:00
|
|
|
ipx_print(struct sockaddr *sa)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
|
|
|
u_short port;
|
1998-04-19 18:18:25 +00:00
|
|
|
struct servent *sp = 0;
|
2002-09-05 17:06:51 +00:00
|
|
|
const char *net = "", *host = "";
|
|
|
|
char *p;
|
|
|
|
u_char *q;
|
1995-10-26 20:31:59 +00:00
|
|
|
struct ipx_addr work = ((struct sockaddr_ipx *)sa)->sipx_addr;
|
1998-04-19 18:18:25 +00:00
|
|
|
static char mybuf[50];
|
1995-10-26 20:31:59 +00:00
|
|
|
char cport[10], chost[15], cnet[15];
|
|
|
|
|
|
|
|
port = ntohs(work.x_port);
|
|
|
|
|
|
|
|
if (ipx_nullnet(work) && ipx_nullhost(work)) {
|
|
|
|
|
|
|
|
if (port) {
|
1998-04-19 18:18:25 +00:00
|
|
|
if (sp)
|
|
|
|
sprintf(mybuf, "*.%s", sp->s_name);
|
|
|
|
else
|
|
|
|
sprintf(mybuf, "*.%x", port);
|
1995-10-26 20:31:59 +00:00
|
|
|
} else
|
|
|
|
sprintf(mybuf, "*.*");
|
|
|
|
|
|
|
|
return (mybuf);
|
|
|
|
}
|
|
|
|
|
1997-05-10 10:03:43 +00:00
|
|
|
if (ipx_wildnet(work))
|
1995-10-26 20:31:59 +00:00
|
|
|
net = "any";
|
|
|
|
else if (ipx_nullnet(work))
|
|
|
|
net = "*";
|
|
|
|
else {
|
|
|
|
q = work.x_net.c_net;
|
|
|
|
sprintf(cnet, "%02x%02x%02x%02x",
|
|
|
|
q[0], q[1], q[2], q[3]);
|
|
|
|
for (p = cnet; *p == '0' && p < cnet + 8; p++)
|
|
|
|
continue;
|
|
|
|
net = p;
|
|
|
|
}
|
|
|
|
|
1997-05-10 10:03:43 +00:00
|
|
|
if (ipx_wildhost(work))
|
1995-10-26 20:31:59 +00:00
|
|
|
host = "any";
|
|
|
|
else if (ipx_nullhost(work))
|
|
|
|
host = "*";
|
|
|
|
else {
|
|
|
|
q = work.x_host.c_host;
|
|
|
|
sprintf(chost, "%02x%02x%02x%02x%02x%02x",
|
|
|
|
q[0], q[1], q[2], q[3], q[4], q[5]);
|
|
|
|
for (p = chost; *p == '0' && p < chost + 12; p++)
|
|
|
|
continue;
|
|
|
|
host = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (port) {
|
1998-04-19 18:18:25 +00:00
|
|
|
if (strcmp(host, "*") == 0)
|
|
|
|
host = "";
|
2008-01-02 23:26:11 +00:00
|
|
|
if (sp)
|
1998-06-09 04:13:03 +00:00
|
|
|
snprintf(cport, sizeof(cport),
|
|
|
|
"%s%s", *host ? "." : "", sp->s_name);
|
2008-01-02 23:26:11 +00:00
|
|
|
else
|
1998-06-09 04:13:03 +00:00
|
|
|
snprintf(cport, sizeof(cport),
|
|
|
|
"%s%x", *host ? "." : "", port);
|
1995-10-26 20:31:59 +00:00
|
|
|
} else
|
|
|
|
*cport = 0;
|
|
|
|
|
1998-06-09 04:13:03 +00:00
|
|
|
snprintf(mybuf, sizeof(mybuf), "%s.%s%s", net, host, cport);
|
1995-10-26 20:31:59 +00:00
|
|
|
return(mybuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2001-06-15 23:35:13 +00:00
|
|
|
ipx_phost(struct sockaddr *sa)
|
1995-10-26 20:31:59 +00:00
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
struct sockaddr_ipx *sipx = (struct sockaddr_ipx *)sa;
|
1995-10-26 20:31:59 +00:00
|
|
|
struct sockaddr_ipx work;
|
1998-04-19 18:18:25 +00:00
|
|
|
static union ipx_net ipx_zeronet;
|
1995-10-26 20:31:59 +00:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
work = *sipx;
|
|
|
|
|
|
|
|
work.sipx_addr.x_port = 0;
|
|
|
|
work.sipx_addr.x_net = ipx_zeronet;
|
|
|
|
p = ipx_print((struct sockaddr *)&work);
|
|
|
|
if (strncmp("*.", p, 2) == 0) p += 2;
|
|
|
|
|
|
|
|
return(p);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
void
|
2001-06-15 23:35:13 +00:00
|
|
|
upHex(char *p0)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-09-05 17:06:51 +00:00
|
|
|
char *p = p0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1998-04-19 18:18:25 +00:00
|
|
|
for (; *p; p++)
|
|
|
|
switch (*p) {
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
case 'b':
|
|
|
|
case 'c':
|
|
|
|
case 'd':
|
|
|
|
case 'e':
|
|
|
|
case 'f':
|
|
|
|
*p += ('A' - 'a');
|
|
|
|
break;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|