1994-05-30 19:09:18 +00:00
|
|
|
.\" Copyright (c) 1990, 1991, 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.
|
2014-03-14 03:07:51 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-30 19:09:18 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
1996-10-08 20:37:24 +00:00
|
|
|
.\" From: @(#)route.4 8.6 (Berkeley) 4/19/94
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-30 19:09:18 +00:00
|
|
|
.\"
|
2004-11-04 08:29:28 +00:00
|
|
|
.Dd November 4, 2004
|
1994-05-30 19:09:18 +00:00
|
|
|
.Dt ROUTE 4
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
2001-07-14 19:41:16 +00:00
|
|
|
.Nm route
|
1994-05-30 19:09:18 +00:00
|
|
|
.Nd kernel packet forwarding database
|
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In sys/types.h
|
|
|
|
.In sys/time.h
|
|
|
|
.In sys/socket.h
|
|
|
|
.In net/if.h
|
|
|
|
.In net/route.h
|
1994-05-30 19:09:18 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn socket PF_ROUTE SOCK_RAW "int family"
|
|
|
|
.Sh DESCRIPTION
|
1999-09-14 00:26:11 +00:00
|
|
|
.Fx
|
1994-05-30 19:09:18 +00:00
|
|
|
provides some packet routing facilities.
|
|
|
|
The kernel maintains a routing information database, which
|
|
|
|
is used in selecting the appropriate network interface when
|
|
|
|
transmitting packets.
|
|
|
|
.Pp
|
|
|
|
A user process (or possibly multiple co-operating processes)
|
|
|
|
maintains this database by sending messages over a special kind
|
|
|
|
of socket.
|
|
|
|
This supplants fixed size
|
|
|
|
.Xr ioctl 2 Ns 's
|
|
|
|
used in earlier releases.
|
|
|
|
Routing table changes may only be carried out by the super user.
|
|
|
|
.Pp
|
|
|
|
The operating system may spontaneously emit routing messages in response
|
|
|
|
to external events, such as receipt of a re-direct, or failure to
|
|
|
|
locate a suitable route for a request.
|
|
|
|
The message types are described in greater detail below.
|
|
|
|
.Pp
|
|
|
|
Routing database entries come in two flavors: for a specific
|
|
|
|
host, or for all hosts on a generic subnetwork (as specified
|
|
|
|
by a bit mask and value under the mask.
|
|
|
|
The effect of wildcard or default route may be achieved by using
|
|
|
|
a mask of all zeros, and there may be hierarchical routes.
|
|
|
|
.Pp
|
|
|
|
When the system is booted and addresses are assigned
|
|
|
|
to the network interfaces, each protocol family
|
|
|
|
installs a routing table entry for each interface when it is ready for traffic.
|
|
|
|
Normally the protocol specifies the route
|
|
|
|
through each interface as a
|
|
|
|
.Dq direct
|
|
|
|
connection to the destination host
|
2003-06-28 23:53:39 +00:00
|
|
|
or network.
|
|
|
|
If the route is direct, the transport layer of
|
1994-05-30 19:09:18 +00:00
|
|
|
a protocol family usually requests the packet be sent to the
|
2003-06-28 23:53:39 +00:00
|
|
|
same host specified in the packet.
|
|
|
|
Otherwise, the interface
|
1994-05-30 19:09:18 +00:00
|
|
|
is requested to address the packet to the gateway listed in the routing entry
|
2004-07-03 18:29:24 +00:00
|
|
|
(i.e., the packet is forwarded).
|
1994-05-30 19:09:18 +00:00
|
|
|
.Pp
|
|
|
|
When routing a packet,
|
2001-07-14 19:41:16 +00:00
|
|
|
the kernel will attempt to find
|
1994-05-30 19:09:18 +00:00
|
|
|
the most specific route matching the destination.
|
|
|
|
(If there are two different mask and value-under-the-mask pairs
|
|
|
|
that match, the more specific is the one with more bits in the mask.
|
|
|
|
A route to a host is regarded as being supplied with a mask of
|
|
|
|
as many ones as there are bits in the destination).
|
|
|
|
If no entry is found, the destination is declared to be unreachable,
|
2004-05-14 20:07:49 +00:00
|
|
|
and a routing-miss message is generated if there are any
|
2002-03-14 18:34:46 +00:00
|
|
|
listeners on the routing control socket described below.
|
1994-05-30 19:09:18 +00:00
|
|
|
.Pp
|
|
|
|
A wildcard routing entry is specified with a zero
|
|
|
|
destination address value, and a mask of all zeroes.
|
|
|
|
Wildcard routes will be used
|
|
|
|
when the system fails to find other routes matching the
|
2003-06-28 23:53:39 +00:00
|
|
|
destination.
|
|
|
|
The combination of wildcard
|
1994-05-30 19:09:18 +00:00
|
|
|
routes and routing redirects can provide an economical
|
|
|
|
mechanism for routing traffic.
|
|
|
|
.Pp
|
|
|
|
One opens the channel for passing routing control messages
|
|
|
|
by using the socket call shown in the synopsis above:
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fa family
|
|
|
|
parameter may be
|
|
|
|
.Dv AF_UNSPEC
|
|
|
|
which will provide
|
|
|
|
routing information for all address families, or can be restricted
|
|
|
|
to a specific address family by specifying which one is desired.
|
|
|
|
There can be more than one routing socket open per system.
|
|
|
|
.Pp
|
|
|
|
Messages are formed by a header followed by a small
|
1999-09-14 00:26:11 +00:00
|
|
|
number of sockaddrs (now variable length particularly
|
1994-05-30 19:09:18 +00:00
|
|
|
in the
|
|
|
|
.Tn ISO
|
|
|
|
case), interpreted by position, and delimited
|
|
|
|
by the new length entry in the sockaddr.
|
|
|
|
An example of a message with four addresses might be an
|
|
|
|
.Tn ISO
|
|
|
|
redirect:
|
|
|
|
Destination, Netmask, Gateway, and Author of the redirect.
|
|
|
|
The interpretation of which address are present is given by a
|
|
|
|
bit mask within the header, and the sequence is least significant
|
|
|
|
to most significant bit within the vector.
|
|
|
|
.Pp
|
|
|
|
Any messages sent to the kernel are returned, and copies are sent
|
2003-06-28 23:53:39 +00:00
|
|
|
to all interested listeners.
|
|
|
|
The kernel will provide the process
|
1999-09-14 00:26:11 +00:00
|
|
|
ID for the sender, and the sender may use an additional sequence
|
2003-06-28 23:53:39 +00:00
|
|
|
field to distinguish between outstanding messages.
|
|
|
|
However, message replies may be lost when kernel buffers are exhausted.
|
1994-05-30 19:09:18 +00:00
|
|
|
.Pp
|
|
|
|
The kernel may reject certain messages, and will indicate this
|
|
|
|
by filling in the
|
|
|
|
.Ar rtm_errno
|
|
|
|
field.
|
|
|
|
The routing code returns
|
2000-11-22 16:11:48 +00:00
|
|
|
.Er EEXIST
|
1994-05-30 19:09:18 +00:00
|
|
|
if
|
|
|
|
requested to duplicate an existing entry,
|
2000-11-22 16:11:48 +00:00
|
|
|
.Er ESRCH
|
1994-05-30 19:09:18 +00:00
|
|
|
if
|
|
|
|
requested to delete a non-existent entry,
|
|
|
|
or
|
2000-11-22 16:11:48 +00:00
|
|
|
.Er ENOBUFS
|
1994-05-30 19:09:18 +00:00
|
|
|
if insufficient resources were available
|
|
|
|
to install a new route.
|
1999-09-14 00:26:11 +00:00
|
|
|
In the current implementation, all routing processes run locally,
|
1994-05-30 19:09:18 +00:00
|
|
|
and the values for
|
|
|
|
.Ar rtm_errno
|
|
|
|
are available through the normal
|
|
|
|
.Em errno
|
|
|
|
mechanism, even if the routing reply message is lost.
|
|
|
|
.Pp
|
|
|
|
A process may avoid the expense of reading replies to
|
|
|
|
its own messages by issuing a
|
|
|
|
.Xr setsockopt 2
|
|
|
|
call indicating that the
|
|
|
|
.Dv SO_USELOOPBACK
|
|
|
|
option
|
|
|
|
at the
|
|
|
|
.Dv SOL_SOCKET
|
|
|
|
level is to be turned off.
|
|
|
|
A process may ignore all messages from the routing socket
|
2001-07-14 19:41:16 +00:00
|
|
|
by doing a
|
1994-05-30 19:09:18 +00:00
|
|
|
.Xr shutdown 2
|
|
|
|
system call for further input.
|
|
|
|
.Pp
|
|
|
|
If a route is in use when it is deleted,
|
|
|
|
the routing entry will be marked down and removed from the routing table,
|
|
|
|
but the resources associated with it will not
|
2001-07-14 19:41:16 +00:00
|
|
|
be reclaimed until all references to it are released.
|
1994-05-30 19:09:18 +00:00
|
|
|
User processes can obtain information about the routing
|
|
|
|
entry to a specific destination by using a
|
|
|
|
.Dv RTM_GET
|
1999-09-14 00:26:11 +00:00
|
|
|
message, or by calling
|
|
|
|
.Xr sysctl 3 .
|
1994-05-30 19:09:18 +00:00
|
|
|
.Pp
|
|
|
|
Messages include:
|
|
|
|
.Bd -literal
|
|
|
|
#define RTM_ADD 0x1 /* Add Route */
|
|
|
|
#define RTM_DELETE 0x2 /* Delete Route */
|
|
|
|
#define RTM_CHANGE 0x3 /* Change Metrics, Flags, or Gateway */
|
|
|
|
#define RTM_GET 0x4 /* Report Information */
|
1999-09-14 00:26:11 +00:00
|
|
|
#define RTM_LOSING 0x5 /* Kernel Suspects Partitioning */
|
1994-05-30 19:09:18 +00:00
|
|
|
#define RTM_REDIRECT 0x6 /* Told to use different route */
|
|
|
|
#define RTM_MISS 0x7 /* Lookup failed on this address */
|
1999-09-14 00:26:11 +00:00
|
|
|
#define RTM_LOCK 0x8 /* fix specified metrics */
|
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
|
|
|
#define RTM_RESOLVE 0xb /* request to resolve dst to LL addr - unused */
|
1999-09-14 00:26:11 +00:00
|
|
|
#define RTM_NEWADDR 0xc /* address being added to iface */
|
|
|
|
#define RTM_DELADDR 0xd /* address being removed from iface */
|
|
|
|
#define RTM_IFINFO 0xe /* iface going up/down etc. */
|
|
|
|
#define RTM_NEWMADDR 0xf /* mcast group membership being added to if */
|
|
|
|
#define RTM_DELMADDR 0x10 /* mcast group membership being deleted */
|
2002-01-18 14:33:04 +00:00
|
|
|
#define RTM_IFANNOUNCE 0x11 /* iface arrival/departure */
|
2009-04-22 12:52:12 +00:00
|
|
|
#define RTM_IEEE80211 0x12 /* IEEE80211 wireless event */
|
1994-05-30 19:09:18 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1999-09-14 00:26:11 +00:00
|
|
|
A message header consists of one of the following:
|
1994-05-30 19:09:18 +00:00
|
|
|
.Bd -literal
|
|
|
|
struct rt_msghdr {
|
1999-09-14 00:26:11 +00:00
|
|
|
u_short rtm_msglen; /* to skip over non-understood messages */
|
|
|
|
u_char rtm_version; /* future binary compatibility */
|
|
|
|
u_char rtm_type; /* message type */
|
|
|
|
u_short rtm_index; /* index for associated ifp */
|
|
|
|
int rtm_flags; /* flags, incl. kern & message, e.g. DONE */
|
|
|
|
int rtm_addrs; /* bitmask identifying sockaddrs in msg */
|
|
|
|
pid_t rtm_pid; /* identify sender */
|
|
|
|
int rtm_seq; /* for sender to identify action */
|
|
|
|
int rtm_errno; /* why failed */
|
2009-04-22 12:52:12 +00:00
|
|
|
int rtm_fmask; /* bitmask used in RTM_CHANGE message */
|
1999-09-14 00:26:11 +00:00
|
|
|
u_long rtm_inits; /* which metrics we are initializing */
|
1994-05-30 19:09:18 +00:00
|
|
|
struct rt_metrics rtm_rmx; /* metrics themselves */
|
|
|
|
};
|
1999-09-14 00:26:11 +00:00
|
|
|
|
|
|
|
struct if_msghdr {
|
|
|
|
u_short ifm_msglen; /* to skip over non-understood messages */
|
2000-11-26 23:43:15 +00:00
|
|
|
u_char ifm_version; /* future binary compatibility */
|
1999-09-14 00:26:11 +00:00
|
|
|
u_char ifm_type; /* message type */
|
|
|
|
int ifm_addrs; /* like rtm_addrs */
|
|
|
|
int ifm_flags; /* value of if_flags */
|
|
|
|
u_short ifm_index; /* index for associated ifp */
|
|
|
|
struct if_data ifm_data; /* statistics and other data about if */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ifa_msghdr {
|
|
|
|
u_short ifam_msglen; /* to skip over non-understood messages */
|
2000-11-26 23:43:15 +00:00
|
|
|
u_char ifam_version; /* future binary compatibility */
|
1999-09-14 00:26:11 +00:00
|
|
|
u_char ifam_type; /* message type */
|
|
|
|
int ifam_addrs; /* like rtm_addrs */
|
|
|
|
int ifam_flags; /* value of ifa_flags */
|
|
|
|
u_short ifam_index; /* index for associated ifp */
|
|
|
|
int ifam_metric; /* value of ifa_metric */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ifma_msghdr {
|
|
|
|
u_short ifmam_msglen; /* to skip over non-understood messages */
|
2000-11-26 23:43:15 +00:00
|
|
|
u_char ifmam_version; /* future binary compatibility */
|
1999-09-14 00:26:11 +00:00
|
|
|
u_char ifmam_type; /* message type */
|
|
|
|
int ifmam_addrs; /* like rtm_addrs */
|
|
|
|
int ifmam_flags; /* value of ifa_flags */
|
|
|
|
u_short ifmam_index; /* index for associated ifp */
|
|
|
|
};
|
2002-01-18 14:33:04 +00:00
|
|
|
|
|
|
|
struct if_announcemsghdr {
|
|
|
|
u_short ifan_msglen; /* to skip over non-understood messages */
|
|
|
|
u_char ifan_version; /* future binary compatibility */
|
|
|
|
u_char ifan_type; /* message type */
|
|
|
|
u_short ifan_index; /* index for associated ifp */
|
|
|
|
char ifan_name[IFNAMSIZ]; /* if name, e.g. "en0" */
|
|
|
|
u_short ifan_what; /* what type of announcement */
|
|
|
|
};
|
1994-05-30 19:09:18 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1999-09-14 00:26:11 +00:00
|
|
|
The
|
|
|
|
.Dv RTM_IFINFO
|
|
|
|
message uses a
|
|
|
|
.Ar if_msghdr
|
|
|
|
header, the
|
|
|
|
.Dv RTM_NEWADDR
|
|
|
|
and
|
|
|
|
.Dv RTM_DELADDR
|
|
|
|
messages use a
|
|
|
|
.Ar ifa_msghdr
|
|
|
|
header, the
|
|
|
|
.Dv RTM_NEWMADDR
|
|
|
|
and
|
|
|
|
.Dv RTM_DELMADDR
|
|
|
|
messages use a
|
2002-01-18 14:33:04 +00:00
|
|
|
.Vt ifma_msghdr
|
|
|
|
header, the
|
|
|
|
.Dv RTM_IFANNOUNCE
|
|
|
|
message uses a
|
|
|
|
.Vt if_announcemsghdr
|
|
|
|
header,
|
1999-09-14 00:26:11 +00:00
|
|
|
and all other messages use the
|
|
|
|
.Ar rt_msghdr
|
|
|
|
header.
|
|
|
|
.Pp
|
|
|
|
The
|
1996-10-08 20:37:24 +00:00
|
|
|
.Dq Li "struct rt_metrics"
|
|
|
|
and the flag bits are as defined in
|
|
|
|
.Xr rtentry 9 .
|
1994-05-30 19:09:18 +00:00
|
|
|
.Pp
|
|
|
|
Specifiers for metric values in rmx_locks and rtm_inits are:
|
|
|
|
.Bd -literal
|
1999-09-14 00:26:11 +00:00
|
|
|
#define RTV_MTU 0x1 /* init or lock _mtu */
|
|
|
|
#define RTV_HOPCOUNT 0x2 /* init or lock _hopcount */
|
|
|
|
#define RTV_EXPIRE 0x4 /* init or lock _expire */
|
|
|
|
#define RTV_RPIPE 0x8 /* init or lock _recvpipe */
|
|
|
|
#define RTV_SPIPE 0x10 /* init or lock _sendpipe */
|
|
|
|
#define RTV_SSTHRESH 0x20 /* init or lock _ssthresh */
|
|
|
|
#define RTV_RTT 0x40 /* init or lock _rtt */
|
|
|
|
#define RTV_RTTVAR 0x80 /* init or lock _rttvar */
|
2009-04-22 12:52:12 +00:00
|
|
|
#define RTV_WEIGHT 0x100 /* init or lock _weight */
|
1994-05-30 19:09:18 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Specifiers for which addresses are present in the messages are:
|
|
|
|
.Bd -literal
|
|
|
|
#define RTA_DST 0x1 /* destination sockaddr present */
|
|
|
|
#define RTA_GATEWAY 0x2 /* gateway sockaddr present */
|
|
|
|
#define RTA_NETMASK 0x4 /* netmask sockaddr present */
|
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
|
|
|
#define RTA_GENMASK 0x8 /* cloning mask sockaddr present - unused */
|
1994-05-30 19:09:18 +00:00
|
|
|
#define RTA_IFP 0x10 /* interface name sockaddr present */
|
|
|
|
#define RTA_IFA 0x20 /* interface addr sockaddr present */
|
|
|
|
#define RTA_AUTHOR 0x40 /* sockaddr for author of redirect */
|
1999-09-14 00:26:11 +00:00
|
|
|
#define RTA_BRD 0x80 /* for NEWADDR, broadcast or p-p dest addr */
|
1994-05-30 19:09:18 +00:00
|
|
|
.Ed
|
1996-10-08 20:37:24 +00:00
|
|
|
.Sh SEE ALSO
|
1999-09-14 00:26:11 +00:00
|
|
|
.Xr sysctl 3 ,
|
1996-10-08 20:37:24 +00:00
|
|
|
.Xr route 8 ,
|
|
|
|
.Xr rtentry 9
|
2004-11-04 02:13:15 +00:00
|
|
|
.Pp
|
|
|
|
The constants for the
|
2004-11-04 08:29:28 +00:00
|
|
|
.Va rtm_flags
|
2004-11-04 02:13:15 +00:00
|
|
|
field are documented in the manual page for the
|
|
|
|
.Xr route 8
|
|
|
|
utility.
|
1996-10-08 20:37:24 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
A
|
|
|
|
.Dv PF_ROUTE
|
|
|
|
protocol family first appeared in
|
|
|
|
.Bx 4.3 reno .
|