📄 route.4
字号:
.\" 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..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 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..\".\" @(#)route.4 8.6 (Berkeley) 4/19/94.\".Dd April 19, 1994.Dt ROUTE 4.Os.Sh NAME.Nm route .Nd kernel packet forwarding database.Sh SYNOPSIS.Fd #include <sys/socket.h>.Fd #include <net/if.h>.Fd #include <net/route.h>.Ft int.Fn socket PF_ROUTE SOCK_RAW "int family".Sh DESCRIPTION.Tn UNIXprovides some packet routing facilities.The kernel maintains a routing information database, whichis used in selecting the appropriate network interface whentransmitting packets..PpA user process (or possibly multiple co-operating processes)maintains this database by sending messages over a special kindof socket.This supplants fixed size.Xr ioctl 2 Ns 'sused in earlier releases.Routing table changes may only be carried out by the super user..PpThe operating system may spontaneously emit routing messages in responseto external events, such as receipt of a re-direct, or failure tolocate a suitable route for a request.The message types are described in greater detail below..PpRouting database entries come in two flavors: for a specifichost, or for all hosts on a generic subnetwork (as specifiedby a bit mask and value under the mask.The effect of wildcard or default route may be achieved by usinga mask of all zeros, and there may be hierarchical routes..PpWhen the system is booted and addresses are assignedto the network interfaces, each protocol familyinstalls a routing table entry for each interface when it is ready for traffic.Normally the protocol specifies the routethrough each interface as a.Dq directconnection to the destination hostor network. If the route is direct, the transport layer ofa protocol family usually requests the packet be sent to thesame host specified in the packet. Otherwise, the interfaceis requested to address the packet to the gateway listed in the routing entry(i.e. the packet is forwarded)..PpWhen routing a packet,the kernel will attempt to find the most specific route matching the destination.(If there are two different mask and value-under-the-mask pairsthat 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 ofas many ones as there are bits in the destination).If no entry is found, the destination is declared to be unreachable,and a routing\-miss message is generated if there are anylisters on the routing control socket described below..PpA wildcard routing entry is specified with a zerodestination address value, and a mask of all zeroes.Wildcard routes will be usedwhen the system fails to find other routes matching thedestination. The combination of wildcardroutes and routing redirects can provide an economicalmechanism for routing traffic..PpOne opens the channel for passing routing control messagesby using the socket call shown in the synopsis above:.PpThe.Fa familyparameter may be.Dv AF_UNSPECwhich will providerouting information for all address families, or can be restrictedto a specific address family by specifying which one is desired.There can be more than one routing socket open per system..PpMessages are formed by a header followed by a smallnumber of sockadders (now variable length particularlyin the.Tn ISOcase), interpreted by position, and delimitedby the new length entry in the sockaddr.An example of a message with four addresses might be an.Tn ISOredirect:Destination, Netmask, Gateway, and Author of the redirect.The interpretation of which address are present is given by abit mask within the header, and the sequence is least significantto most significant bit within the vector..PpAny messages sent to the kernel are returned, and copies are sentto all interested listeners. The kernel will provide the processid. for the sender, and the sender may use an additional sequencefield to distinguish between outstanding messages. However,message replies may be lost when kernel buffers are exhausted..PpThe kernel may reject certain messages, and will indicate thisby filling in the.Ar rtm_errnofield.The routing code returns.Dv EEXISTifrequested to duplicate an existing entry,.Dv ESRCHifrequested to delete a non-existent entry,or.Dv ENOBUFSif insufficient resources were availableto install a new route.In the current implementation, all routing process run locally,and the values for.Ar rtm_errnoare available through the normal.Em errnomechanism, even if the routing reply message is lost..PpA process may avoid the expense of reading replies toits own messages by issuing a.Xr setsockopt 2call indicating that the.Dv SO_USELOOPBACKoptionat the.Dv SOL_SOCKETlevel is to be turned off.A process may ignore all messages from the routing socketby doing a .Xr shutdown 2system call for further input..PpIf 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 notbe reclaimed until all references to it are released. User processes can obtain information about the routingentry to a specific destination by using a.Dv RTM_GETmessage,or by reading the.Pa /dev/kmemdevice, or by issuing a.Xr getkerninfo 2system call..PpMessages 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 */#define RTM_LOOSING 0x5 /* Kernel Suspects Partitioning */#define RTM_REDIRECT 0x6 /* Told to use different route */#define RTM_MISS 0x7 /* Lookup failed on this address */#define RTM_RESOLVE 0xb /* request to resolve dst to LL addr */.Ed.PpA message header consists of:.Bd -literalstruct rt_msghdr { u_short rmt_msglen; /* to skip over non-understood messages */ u_char rtm_version; /* future binary compatibility */ u_char rtm_type; /* message type */ u_short rmt_index; /* index for associated ifp */ pid_t rmt_pid; /* identify sender */ int rtm_addrs; /* bitmask identifying sockaddrs in msg */ int rtm_seq; /* for sender to identify action */ int rtm_errno; /* why failed */ int rtm_flags; /* flags, incl kern & message, e.g. DONE */ int rtm_use; /* from rtentry */ u_long rtm_inits; /* which values we are initializing */ struct rt_metrics rtm_rmx; /* metrics themselves */};.Ed.Ppwhere.Bd -literalstruct rt_metrics { u_long rmx_locks; /* Kernel must leave these values alone */ u_long rmx_mtu; /* MTU for this path */ u_long rmx_hopcount; /* max hops expected */ u_long rmx_expire; /* lifetime for route, e.g. redirect */ u_long rmx_recvpipe; /* inbound delay-bandwith product */ u_long rmx_sendpipe; /* outbound delay-bandwith product */ u_long rmx_ssthresh; /* outbound gateway buffer limit */ u_long rmx_rtt; /* estimated round trip time */ u_long rmx_rttvar; /* estimated rtt variance */};.Ed.PpFlags include the values:.Bd -literal#define RTF_UP 0x1 /* route usable */#define RTF_GATEWAY 0x2 /* destination is a gateway */#define RTF_HOST 0x4 /* host entry (net otherwise) */#define RTF_REJECT 0x8 /* host or net unreachable */#define RTF_DYNAMIC 0x10 /* created dynamically (by redirect) */#define RTF_MODIFIED 0x20 /* modified dynamically (by redirect) */#define RTF_DONE 0x40 /* message confirmed */#define RTF_MASK 0x80 /* subnet mask present */#define RTF_CLONING 0x100 /* generate new routes on use */#define RTF_XRESOLVE 0x200 /* external daemon resolves name */#define RTF_LLINFO 0x400 /* generated by ARP or ESIS */#define RTF_STATIC 0x800 /* manually added */#define RTF_BLACKHOLE 0x1000 /* just discard pkts (during updates) */#define RTF_PROTO2 0x4000 /* protocol specific routing flag #1 */#define RTF_PROTO1 0x8000 /* protocol specific routing flag #2 */.Ed.PpSpecifiers for metric values in rmx_locks and rtm_inits are:.Bd -literal#define RTV_SSTHRESH 0x1 /* init or lock _ssthresh */#define RTV_RPIPE 0x2 /* init or lock _recvpipe */#define RTV_SPIPE 0x4 /* init or lock _sendpipe */#define RTV_HOPCOUNT 0x8 /* init or lock _hopcount */#define RTV_RTT 0x10 /* init or lock _rtt */#define RTV_RTTVAR 0x20 /* init or lock _rttvar */#define RTV_MTU 0x40 /* init or lock _mtu */.Ed.PpSpecifiers 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 */#define RTA_GENMASK 0x8 /* cloning mask sockaddr present */#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 */.Ed
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -