1.\" -*- Nroff -*- 2.\" Copyright 1996, 1997 Massachusetts Institute of Technology 3.\" 4.\" Permission to use, copy, modify, and distribute this software and 5.\" its documentation for any purpose and without fee is hereby 6.\" granted, provided that both the above copyright notice and this 7.\" permission notice appear in all copies, that both the above 8.\" copyright notice and this permission notice appear in all 9.\" supporting documentation, and that the name of M.I.T. not be used 10.\" in advertising or publicity pertaining to distribution of the 11.\" software without specific, written prior permission. M.I.T. makes 12.\" no representations about the suitability of this software for any 13.\" purpose. It is provided "as is" without express or implied 14.\" warranty. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS 17.\" ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, 18.\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 19.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT 20.\" SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21.\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22.\" LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 23.\" USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 24.\" ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 25.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 26.\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27.\" SUCH DAMAGE. 28.\" 29.\" $FreeBSD$ 30.\" 31.Dd December 1, 2009 32.Os 33.Dt IFNET 9 34.Sh NAME 35.Nm ifnet , 36.Nm ifaddr , 37.Nm ifqueue , 38.Nm if_data 39.Nd kernel interfaces for manipulating network interfaces 40.Sh SYNOPSIS 41.In sys/param.h 42.In sys/time.h 43.In sys/socket.h 44.In net/if.h 45.In net/if_var.h 46.In net/if_types.h 47.\" 48.Ss "Interface Manipulation Functions" 49.Ft "struct ifnet *" 50.Fn if_alloc "u_char type" 51.Ft void 52.Fn if_attach "struct ifnet *ifp" 53.Ft void 54.Fn if_detach "struct ifnet *ifp" 55.Ft void 56.Fn if_free "struct ifnet *ifp" 57.Ft void 58.Fn if_free_type "struct ifnet *ifp" "u_char type" 59.Ft void 60.Fn if_down "struct ifnet *ifp" 61.Ft int 62.Fn ifioctl "struct socket *so" "u_long cmd" "caddr_t data" "struct thread *td" 63.Ft int 64.Fn ifpromisc "struct ifnet *ifp" "int pswitch" 65.Ft int 66.Fn if_allmulti "struct ifnet *ifp" "int amswitch" 67.Ft "struct ifnet *" 68.Fn ifunit "const char *name" 69.Ft void 70.Fn if_up "struct ifnet *ifp" 71.\" 72.Ss "Interface Address Functions" 73.Ft "struct ifaddr *" 74.Fn ifa_ifwithaddr "struct sockaddr *addr" 75.Ft "struct ifaddr *" 76.Fn ifa_ifwithdstaddr "struct sockaddr *addr" 77.Ft "struct ifaddr *" 78.Fn ifa_ifwithnet "struct sockaddr *addr" 79.Ft "struct ifaddr *" 80.Fn ifaof_ifpforaddr "struct sockaddr *addr" "struct ifnet *ifp" 81.Ft void 82.Fn ifafree "struct ifaddr *ifa" 83.Fn IFAFREE "struct ifaddr *ifa" 84.\" 85.Ss "Interface Multicast Address Functions" 86.Ft int 87.Fn if_addmulti "struct ifnet *ifp" "struct sockaddr *sa" "struct ifmultiaddr **ifmap" 88.Ft int 89.Fn if_delmulti "struct ifnet *ifp" "struct sockaddr *sa" 90.Ft "struct ifmultiaddr *" 91.Fn ifmaof_ifpforaddr "struct sockaddr *addr" "struct ifnet *ifp" 92.Ss "Output queue macros" 93.Fn IF_DEQUEUE "struct ifqueue *ifq" "struct mbuf *m" 94.\" 95.Ss "struct ifnet Member Functions" 96.Ft void 97.Fn \*(lp*if_input\*(rp "struct ifnet *ifp" "struct mbuf *m" 98.Ft int 99.Fo \*(lp*if_output\*(rp 100.Fa "struct ifnet *ifp" "struct mbuf *m" 101.Fa "struct sockaddr *dst" "struct rtentry *rt" 102.Fc 103.Ft void 104.Fn \*(lp*if_start\*(rp "struct ifnet *ifp" 105.Ft int 106.Fn \*(lp*if_transmit\*(rp "struct ifnet *ifp" "struct mbuf *m" 107.Ft void 108.Fn \*(lp*if_qflush\*(rp "struct ifnet *ifp" 109.Ft int 110.Fn \*(lp*if_ioctl\*(rp "struct ifnet *ifp" "int cmd" "caddr_t data" 111.Ft void 112.Fn \*(lp*if_watchdog\*(rp "struct ifnet *ifp" 113.Ft void 114.Fn \*(lp*if_init\*(rp "void *if_softc" 115.Ft int 116.Fo \*(lp*if_resolvemulti\*(rp 117.Fa "struct ifnet *ifp" "struct sockaddr **retsa" "struct sockaddr *addr" 118.Fc 119.Ss "struct ifaddr member function" 120.Ft void 121.Fo \*(lp*ifa_rtrequest\*(rp 122.Fa "int cmd" "struct rtentry *rt" "struct sockaddr *dst" 123.Fc 124.\" 125.Ss "Global Variables" 126.Vt extern struct ifnethead ifnet ; 127.Vt extern struct ifaddr **ifnet_addrs ; 128.Vt extern int if_index ; 129.Vt extern int ifqmaxlen ; 130.Sh DATA STRUCTURES 131The kernel mechanisms for handling network interfaces reside primarily 132in the 133.Vt ifnet , if_data , ifaddr , 134and 135.Vt ifmultiaddr 136structures in 137.In net/if.h 138and 139.In net/if_var.h 140and the functions named above and defined in 141.Pa /sys/net/if.c . 142Those interfaces which are intended to be used by user programs 143are defined in 144.In net/if.h ; 145these include the interface flags, the 146.Vt if_data 147structure, and the structures defining the appearance of 148interface-related messages on the 149.Xr route 4 150routing socket and in 151.Xr sysctl 3 . 152The header file 153.In net/if_var.h 154defines the kernel-internal interfaces, including the 155.Vt ifnet , ifaddr , 156and 157.Vt ifmultiaddr 158structures and the functions which manipulate them. 159(A few user programs will need 160.In net/if_var.h 161because it is the prerequisite of some other header file like 162.In netinet/if_ether.h . 163Most references to those two files in particular can be replaced by 164.In net/ethernet.h . ) 165.Pp 166The system keeps a linked list of interfaces using the 167.Li TAILQ 168macros defined in 169.Xr queue 3 ; 170this list is headed by a 171.Vt "struct ifnethead" 172called 173.Va ifnet . 174The elements of this list are of type 175.Vt "struct ifnet" , 176and most kernel routines which manipulate interface as such accept or 177return pointers to these structures. 178Each interface structure 179contains an 180.Vt if_data 181structure, which contains statistics and identifying information used 182by management programs, and which is exported to user programs by way 183of the 184.Xr ifmib 4 185branch of the 186.Xr sysctl 3 187MIB. 188Each interface also has a 189.Li TAILQ 190of interface addresses, described by 191.Vt ifaddr 192structures; the head of the queue is always an 193.Dv AF_LINK 194address 195(see 196.Xr link_addr 3 ) 197describing the link layer implemented by the interface (if any). 198(Some trivial interfaces do not provide any link layer addresses; 199this structure, while still present, serves only to identify the 200interface name and index.) 201.Pp 202Finally, those interfaces supporting reception of multicast datagrams 203have a 204.Li TAILQ 205of multicast group memberships, described by 206.Vt ifmultiaddr 207structures. 208These memberships are reference-counted. 209.Pp 210Interfaces are also associated with an output queue, defined as a 211.Vt "struct ifqueue" ; 212this structure is used to hold packets while the interface is in the 213process of sending another. 214.Pp 215.Ss The Vt ifnet Ss structure 216The fields of 217.Vt "struct ifnet" 218are as follows: 219.Bl -tag -width ".Va if_capabilities" -offset indent 220.It Va if_softc 221.Pq Vt "void *" 222A pointer to the driver's private state block. 223(Initialized by driver.) 224.It Va if_l2com 225.Pq Vt "void *" 226A pointer to the common data for the interface's layer 2 protocol. 227(Initialized by 228.Fn if_alloc . ) 229.It Va if_link 230.Pq Fn TAILQ_ENTRY ifnet 231.Xr queue 3 232macro glue. 233.It Va if_xname 234.Pq Vt "char *" 235The name of the interface, 236(e.g., 237.Dq Li fxp0 238or 239.Dq Li lo0 ) . 240(Initialized by driver.) 241.It Va if_dname 242.Pq Vt "const char *" 243The name of the driver. 244(Initialized by driver.) 245.It Va if_dunit 246.Pq Vt int 247A unique number assigned to each interface managed by a particular 248driver. 249Drivers may choose to set this to 250.Dv IF_DUNIT_NONE 251if a unit number is not associated with the device. 252(Initialized by driver.) 253.It Va if_addrhead 254.Pq Vt "struct ifaddrhead" 255The head of the 256.Xr queue 3 257.Li TAILQ 258containing the list of addresses assigned to this interface. 259.It Va if_pcount 260.Pq Vt int 261A count of promiscuous listeners on this interface, used to 262reference-count the 263.Dv IFF_PROMISC 264flag. 265.It Va if_bpf 266.Pq Vt "struct bpf_if *" 267Opaque per-interface data for the packet filter, 268.Xr bpf 4 . 269(Initialized by 270.Fn bpf_attach . ) 271.It Va if_index 272.Pq Vt u_short 273A unique number assigned to each interface in sequence as it is 274attached. 275This number can be used in a 276.Vt "struct sockaddr_dl" 277to refer to a particular interface by index 278(see 279.Xr link_addr 3 ) . 280(Initialized by 281.Fn if_alloc . ) 282.It Va if_flags 283.Pq Vt int 284Flags describing operational parameters of this interface (see below). 285(Manipulated by both driver and generic code.) 286.It Va if_capabilities 287.Pq Vt int 288Flags describing the capabilities the interface supports (see below). 289.It Va if_capenable 290.Pq Vt int 291Flags describing the enabled capabilities of the interface (see below). 292.\" .It Va if_ipending 293.\" Interrupt-pending bits for polled operation: 294.\" .Dv IFI_XMIT 295.\" (transmit complete interrupt) 296.\" and 297.\" .Dv IFI_RECV 298.\" (received packet ready interrupt). 299.\" See the 300.\" .Sx Polling 301.\" section, below. 302.\" (Manipulated by driver.) 303.It Va if_linkmib 304.Pq Vt "void *" 305A pointer to an interface-specific MIB structure exported by 306.Xr ifmib 4 . 307(Initialized by driver.) 308.It Va if_linkmiblen 309.Pq Vt size_t 310The size of said structure. 311(Initialized by driver.) 312.It Va if_data 313.Pq Vt "struct if_data" 314More statistics and information; see 315.Sx "The if_data structure" , 316below. 317(Initialized by driver, manipulated by both driver and generic 318code.) 319.It Va if_snd 320.Pq Vt "struct ifqueue" 321The output queue. 322(Manipulated by driver.) 323.\".It Va if_poll_slowq 324.\".Pq Vt "struct ifqueue *" 325.\"A pointer to the input queue for devices which do not support polling 326.\"well. 327.\"See the 328.\".Sx Polling 329.\"section, below. 330.\"(Initialized by driver.) 331.El 332.Pp 333There are in addition a number of function pointers which the driver 334must initialize to complete its interface with the generic interface 335layer: 336.Bl -ohang -offset indent 337.It Fn if_input 338Pass a packet to an appropriate upper layer as determined 339from the link-layer header of the packet. 340This routine is to be called from an interrupt handler or 341used to emulate reception of a packet on this interface. 342A single function implementing 343.Fn if_input 344can be shared among multiple drivers utilizing the same link-layer 345framing, e.g., Ethernet. 346.It Fn if_output 347Output a packet on interface 348.Fa ifp , 349or queue it on the output queue if the interface is already active. 350.It Fn if_transmit 351Transmit a packet on an interface or queue it if the interface is 352in use. This function will return 353.Dv ENOBUFS 354if the devices software and hardware queues are both full. This 355function must be installed after 356.It Fn if_qflush 357Free mbufs in internally managed queues when the interface is marked down. 358This function must be installed after 359.Fn if_attach 360to override the default implementation. This function is exposed in order 361to allow drivers to manage their own queues and to reduce the latency 362caused by a frequently gratuitous enqueue / dequeue pair to ifq. The 363suggested internal software queueing mechanism is buf_ring. 364.It Fn if_start 365Start queued output on an interface. 366This function is exposed in 367order to provide for some interface classes to share a 368.Fn if_output 369among all drivers. 370.Fn if_start 371may only be called when the 372.Dv IFF_OACTIVE 373flag is not set. 374(Thus, 375.Dv IFF_OACTIVE 376does not literally mean that output is active, but rather that the 377device's internal output queue is full.) Please note that this function 378will soon be deprecated. 379.It Fn if_done 380Not used. 381We are not even sure what it was ever for. 382The prototype is faked. 383.It Fn if_ioctl 384Process interface-related 385.Xr ioctl 2 386requests 387(defined in 388.In sys/sockio.h ) . 389Preliminary processing is done by the generic routine 390.Fn ifioctl 391to check for appropriate privileges, locate the interface being 392manipulated, and perform certain generic operations like twiddling 393flags and flushing queues. 394See the description of 395.Fn ifioctl 396below for more information. 397.\" .It Fn if_poll_recv 398.\" .It Fn if_poll_xmit 399.\" .It Fn if_poll_slowinput 400.\" .It Fn if_poll_intren 401.\" See the 402.\" .Sx Polling 403.\" section, below. 404.It Fn if_init 405Initialize and bring up the hardware, 406e.g., reset the chip and enable the receiver unit. 407Should mark the interface running, 408but not active 409.Dv ( IFF_RUNNING , ~IIF_OACTIVE ) . 410.It Fn if_resolvemulti 411Check the requested multicast group membership, 412.Fa addr , 413for validity, and if necessary compute a link-layer group which 414corresponds to that address which is returned in 415.Fa *retsa . 416Returns zero on success, or an error code on failure. 417.El 418.Ss "Interface Flags" 419Interface flags are used for a number of different purposes. 420Some 421flags simply indicate information about the type of interface and its 422capabilities; others are dynamically manipulated to reflect the 423current state of the interface. 424Flags of the former kind are marked 425.Aq S 426in this table; the latter are marked 427.Aq D . 428.Pp 429The macro 430.Dv IFF_CANTCHANGE 431defines the bits which cannot be set by a user program using the 432.Dv SIOCSIFFLAGS 433command to 434.Xr ioctl 2 ; 435these are indicated by an asterisk 436.Pq Ql * 437in the following listing. 438.Pp 439.Bl -tag -width ".Dv IFF_POINTOPOINT" -offset indent -compact 440.It Dv IFF_UP 441.Aq D 442The interface has been configured up by the user-level code. 443.It Dv IFF_BROADCAST 444.Aq S* 445The interface supports broadcast. 446.It Dv IFF_DEBUG 447.Aq D 448Used to enable/disable driver debugging code. 449.It Dv IFF_LOOPBACK 450.Aq S 451The interface is a loopback device. 452.It Dv IFF_POINTOPOINT 453.Aq S* 454The interface is point-to-point; 455.Dq broadcast 456address is actually the address of the other end. 457.It Dv IFF_RUNNING 458.Aq D* 459The interface has been configured and dynamic resources were 460successfully allocated. 461Probably only useful internal to the 462interface. 463.It Dv IFF_NOARP 464.Aq D 465Disable network address resolution on this interface. 466.It Dv IFF_PROMISC 467.Aq D* 468This interface is in promiscuous mode. 469.It Dv IFF_PPROMISC 470.Aq D 471This interface is in the permanently promiscuous mode (implies 472.Dv IFF_PROMISC ) . 473.It Dv IFF_ALLMULTI 474.Aq D* 475This interface is in all-multicasts mode (used by multicast routers). 476.It Dv IFF_OACTIVE 477.Aq D* 478The interface's hardware output queue (if any) is full; output packets 479are to be queued. 480.It Dv IFF_SIMPLEX 481.Aq S* 482The interface cannot hear its own transmissions. 483.It Dv IFF_LINK0 484.It Dv IFF_LINK1 485.It Dv IFF_LINK2 486.Aq D 487Control flags for the link layer. 488(Currently abused to select among 489multiple physical layers on some devices.) 490.It Dv IFF_MULTICAST 491.Aq S* 492This interface supports multicast. 493.It Dv IFF_POLLING 494.Aq D* 495The interface is in 496.Xr polling 4 497mode. 498See 499.Sx Interface Capabilities Flags 500for details. 501.El 502.Ss "Interface Capabilities Flags" 503Interface capabilities are specialized features an interface may 504or may not support. 505These capabilities are very hardware-specific 506and allow, when enabled, 507to offload specific network processing to the interface 508or to offer a particular feature for use by other kernel parts. 509.Pp 510It should be stressed that a capability can be completely 511uncontrolled (i.e., stay always enabled with no way to disable it) 512or allow limited control over itself (e.g., depend on another 513capability's state.) 514Such peculiarities are determined solely by the hardware and driver 515of a particular interface. 516Only the driver possesses 517the knowledge on whether and how the interface capabilities 518can be controlled. 519Consequently, capabilities flags in 520.Va if_capenable 521should never be modified directly by kernel code other than 522the interface driver. 523The command 524.Dv SIOCSIFCAP 525to 526.Fn ifioctl 527is the dedicated means to attempt altering 528.Va if_capenable 529on an interface. 530Userland code shall use 531.Xr ioctl 2 . 532.Pp 533The following capabilities are currently supported by the system: 534.Bl -tag -width ".Dv IFCAP_VLAN_HWTAGGING" -offset indent 535.It Dv IFCAP_NETCONS 536This interface can be a network console. 537.It Dv IFCAP_POLLING 538This interface supports 539.Xr polling 4 . 540See below for details. 541.It Dv IFCAP_RXCSUM 542This interface can do checksum validation on receiving data. 543Some interfaces do not have sufficient buffer storage to store frames 544above a certain MTU-size completely. 545The driver for the interface might disable hardware checksum validation 546if the MTU is set above the hardcoded limit. 547.It Dv IFCAP_TXCSUM 548This interface can do checksum calculation on transmitting data. 549.It Dv IFCAP_HWCSUM 550A shorthand for 551.Pq Dv IFCAP_RXCSUM | IFCAP_TXCSUM . 552.It Dv IFCAP_VLAN_HWTAGGING 553This interface can do VLAN tagging on output and 554demultiplex frames by their VLAN tag on input. 555.It Dv IFCAP_VLAN_MTU 556The 557.Xr vlan 4 558driver can operate over this interface in software tagging mode 559without having to decrease MTU on 560.Xr vlan 4 561interfaces below 1500 bytes. 562This implies the ability of this interface to cope with frames somewhat 563longer than permitted by the Ethernet specification. 564.It Dv IFCAP_JUMBO_MTU 565This Ethernet interface can transmit and receive frames up to 5669000 bytes long. 567.El 568.Pp 569The ability of advanced network interfaces to offload certain 570computational tasks from the host CPU to the board is limited 571mostly to TCP/IP. 572Therefore a separate field associated with an interface 573(see 574.Va ifnet.if_data.ifi_hwassist 575below) 576keeps a detailed description of its enabled capabilities 577specific to TCP/IP processing. 578The TCP/IP module consults the field to see which tasks 579can be done on an 580.Em outgoing 581packet by the interface. 582The flags defined for that field are a superset of those for 583.Va mbuf.m_pkthdr.csum_flags , 584namely: 585.Bl -tag -width ".Dv CSUM_FRAGMENT" -offset indent 586.It Dv CSUM_IP 587The interface will compute IP checksums. 588.It Dv CSUM_TCP 589The interface will compute TCP checksums. 590.It Dv CSUM_UDP 591The interface will compute UDP checksums. 592.It Dv CSUM_IP_FRAGS 593The interface can compute a TCP or UDP checksum for a packet 594fragmented by the host CPU. 595Makes sense only along with 596.Dv CSUM_TCP 597or 598.Dv CSUM_UDP . 599.It Dv CSUM_FRAGMENT 600The interface will do the fragmentation of IP packets if necessary. 601The host CPU does not need to care about MTU on this interface 602as long as a packet to transmit through it is an IP one and it 603does not exceed the size of the hardware buffer. 604.El 605.Pp 606An interface notifies the TCP/IP module about the tasks 607the former has performed on an 608.Em incoming 609packet by setting the corresponding flags in the field 610.Va mbuf.m_pkthdr.csum_flags 611of the 612.Vt mbuf chain 613containing the packet. 614See 615.Xr mbuf 9 616for details. 617.Pp 618The capability of a network interface to operate in 619.Xr polling 4 620mode involves several flags in different 621global variables and per-interface fields. 622First, there is a system-wide 623.Xr sysctl 8 624master switch named 625.Va kern.polling.enable , 626which can toggle 627.Xr polling 4 628globally. 629If that variable is set to non-zero, 630.Xr polling 4 631will be used on those devices where it is enabled individually. 632Otherwise, 633.Xr polling 4 634will not be used in the system. 635Second, the capability flag 636.Dv IFCAP_POLLING 637set in interface's 638.Va if_capabilities 639indicates support for 640.Xr polling 4 641on the particular interface. 642If set in 643.Va if_capabilities , 644the same flag can be marked or cleared in the interface's 645.Va if_capenable , 646thus initiating switch of the interface to 647.Xr polling 4 648mode or interrupt 649mode, respectively. 650The actual mode change will occur at an implementation-specific moment 651in the future, e.g., during the next interrupt or 652.Xr polling 4 653cycle. 654And finally, if the mode transition has been successful, the flag 655.Dv IFF_POLLING 656is marked or cleared in the interface's 657.Va if_flags 658to indicate the current mode of the interface. 659.Ss The Vt if_data Ss Structure 660In 661.Bx 4.4 , 662a subset of the interface information believed to be of interest to 663management stations was segregated from the 664.Vt ifnet 665structure and moved into its own 666.Vt if_data 667structure to facilitate its use by user programs. 668The following elements of the 669.Vt if_data 670structure are initialized by the interface and are not expected to change 671significantly over the course of normal operation: 672.Bl -tag -width ".Va ifi_lastchange" -offset indent 673.It Va ifi_type 674.Pq Vt u_char 675The type of the interface, as defined in 676.In net/if_types.h 677and described below in the 678.Sx "Interface Types" 679section. 680.It Va ifi_physical 681.Pq Vt u_char 682Intended to represent a selection of physical layers on devices which 683support more than one; never implemented. 684.It Va ifi_addrlen 685.Pq Vt u_char 686Length of a link-layer address on this device, or zero if there are 687none. 688Used to initialized the address length field in 689.Vt sockaddr_dl 690structures referring to this interface. 691.It Va ifi_hdrlen 692.Pq Vt u_char 693Maximum length of any link-layer header which might be prepended by 694the driver to a packet before transmission. 695The generic code computes 696the maximum over all interfaces and uses that value to influence the 697placement of data in 698.Vt mbuf Ns s 699to attempt to ensure that there is always 700sufficient space to prepend a link-layer header without allocating an 701additional 702.Vt mbuf . 703.\" (See 704.\" .Xr mbuf 9 . ) 705.\" .It Va ifi_recvquota 706.\" .Pq Vt u_char 707.\" Number of packets the interface is permitted to receive at one time 708.\" when in polled mode. 709.\" .It Va ifi_xmitquota 710.\" .Pq Vt u_char 711.\" Number of packets the interface is permitted to queue for transmission 712.\" at one time when in polled mode. 713.\" There is some controversy over 714.\" whether such a restriction makes any sense at all. 715.It Va ifi_datalen 716.Pq Vt u_char 717Length of the 718.Vt if_data 719structure. 720Allows some stabilization of the routing socket ABI in the face of 721increases in the length of 722.Vt struct ifdata . 723.It Va ifi_mtu 724.Pq Vt u_long 725The maximum transmission unit of the medium, exclusive of any 726link-layer overhead. 727.It Va ifi_metric 728.Pq Vt u_long 729A dimensionless metric interpreted by a user-mode routing process. 730.It Va ifi_baudrate 731.Pq Vt u_long 732The line rate of the interface, in bits per second. 733.It Va ifi_hwassist 734.Pq Vt u_long 735A detailed interpretation of the capabilities 736to offload computational tasks for 737.Em outgoing 738packets. 739The interface driver must keep this field in accord with 740the current value of 741.Va if_capenable . 742.It Va ifi_epoch 743.Pq Vt time_t 744The system uptime when interface was attached or the statistics 745below were reset. 746This is intended to be used to set the SNMP variable 747.Va ifCounterDiscontinuityTime . 748It may also be used to determine if two successive queries for an 749interface of the same index have returned results for the same 750interface. 751.El 752.Pp 753The structure additionally contains generic statistics applicable to a 754variety of different interface types (except as noted, all members are 755of type 756.Vt u_long ) : 757.Bl -tag -width ".Va ifi_lastchange" -offset indent 758.It Va ifi_link_state 759.Pq Vt u_char 760The current link state of Ethernet interfaces. 761See the 762.Sx Interface Link States 763section for possible values. 764.It Va ifi_ipackets 765Number of packets received. 766.It Va ifi_ierrors 767Number of receive errors detected (e.g., FCS errors, DMA overruns, 768etc.). 769More detailed breakdowns can often be had by way of a 770link-specific MIB. 771.It Va ifi_opackets 772Number of packets transmitted. 773.It Va ifi_oerrors 774Number of output errors detected (e.g., late collisions, DMA overruns, 775etc.). 776More detailed breakdowns can often be had by way of a 777link-specific MIB. 778.It Va ifi_collisions 779Total number of collisions detected on output for CSMA interfaces. 780(This member is sometimes [ab]used by other types of interfaces for 781other output error counts.) 782.It Va ifi_ibytes 783Total traffic received, in bytes. 784.It Va ifi_obytes 785Total traffic transmitted, in bytes. 786.It Va ifi_imcasts 787Number of packets received which were sent by link-layer multicast. 788.It Va ifi_omcasts 789Number of packets sent by link-layer multicast. 790.It Va ifi_iqdrops 791Number of packets dropped on input. 792Rarely implemented. 793.It Va ifi_noproto 794Number of packets received for unknown network-layer protocol. 795.\" .It Va ifi_recvtiming 796.\" Amount of time, in microseconds, spent to receive an average packet on 797.\" this interface. 798.\" See the 799.\" .Sx Polling 800.\" section, below. 801.\" .It Va ifi_xmittiming 802.\" Amount of time, in microseconds, spent to service a transmit-complete 803.\" interrupt on this interface. 804.\" See the 805.\" .Sx Polling 806.\" section, below. 807.It Va ifi_lastchange 808.Pq Vt "struct timeval" 809The time of the last administrative change to the interface (as required 810for 811.Tn SNMP ) . 812.El 813.Ss Interface Types 814The header file 815.In net/if_types.h 816defines symbolic constants for a number of different types of 817interfaces. 818The most common are: 819.Pp 820.Bl -tag -offset indent -width ".Dv IFT_PROPVIRTUAL" -compact 821.It Dv IFT_OTHER 822none of the following 823.It Dv IFT_ETHER 824Ethernet 825.It Dv IFT_ISO88023 826ISO 8802-3 CSMA/CD 827.It Dv IFT_ISO88024 828ISO 8802-4 Token Bus 829.It Dv IFT_ISO88025 830ISO 8802-5 Token Ring 831.It Dv IFT_ISO88026 832ISO 8802-6 DQDB MAN 833.It Dv IFT_FDDI 834FDDI 835.It Dv IFT_PPP 836Internet Point-to-Point Protocol 837.Pq Xr ppp 8 838.It Dv IFT_LOOP 839The loopback 840.Pq Xr lo 4 841interface 842.It Dv IFT_SLIP 843Serial Line IP 844.It Dv IFT_PARA 845Parallel-port IP 846.Pq Dq Tn PLIP 847.It Dv IFT_ATM 848Asynchronous Transfer Mode 849.El 850.Ss Interface Link States 851The following link states are currently defined: 852.Pp 853.Bl -tag -offset indent -width ".Dv LINK_STATE_UNKNOWN" -compact 854.It Dv LINK_STATE_UNKNOWN 855The link is in an invalid or unknown state. 856.It Dv LINK_STATE_DOWN 857The link is down. 858.It Dv LINK_STATE_UP 859The link is up. 860.El 861.Ss The Vt ifaddr Ss Structure 862Every interface is associated with a list 863(or, rather, a 864.Li TAILQ ) 865of addresses, rooted at the interface structure's 866.Va if_addrlist 867member. 868The first element in this list is always an 869.Dv AF_LINK 870address representing the interface itself; multi-access network 871drivers should complete this structure by filling in their link-layer 872addresses after calling 873.Fn if_attach . 874Other members of the structure represent network-layer addresses which 875have been configured by means of the 876.Dv SIOCAIFADDR 877command to 878.Xr ioctl 2 , 879called on a socket of the appropriate protocol family. 880The elements of this list consist of 881.Vt ifaddr 882structures. 883Most protocols will declare their own protocol-specific 884interface address structures, but all begin with a 885.Vt "struct ifaddr" 886which provides the most-commonly-needed functionality across all 887protocols. 888Interface addresses are reference-counted. 889.Pp 890The members of 891.Vt "struct ifaddr" 892are as follows: 893.Bl -tag -width ".Va ifa_rtrequest" -offset indent 894.It Va ifa_addr 895.Pq Vt "struct sockaddr *" 896The local address of the interface. 897.It Va ifa_dstaddr 898.Pq Vt "struct sockaddr *" 899The remote address of point-to-point interfaces, and the broadcast 900address of broadcast interfaces. 901.Va ( ifa_broadaddr 902is a macro for 903.Va ifa_dstaddr . ) 904.It Va ifa_netmask 905.Pq Vt "struct sockaddr *" 906The network mask for multi-access interfaces, and the confusion 907generator for point-to-point interfaces. 908.It Va ifa_ifp 909.Pq Vt "struct ifnet *" 910A link back to the interface structure. 911.It Va ifa_link 912.Pq Fn TAILQ_ENTRY ifaddr 913.Xr queue 3 914glue for list of addresses on each interface. 915.It Va ifa_rtrequest 916See below. 917.It Va ifa_flags 918.Pq Vt u_short 919Some of the flags which would be used for a route representing this 920address in the route table. 921.It Va ifa_refcnt 922.Pq Vt short 923The reference count. 924.It Va ifa_metric 925.Pq Vt int 926A metric associated with this interface address, for the use of some 927external routing protocol. 928.El 929.Pp 930References to 931.Vt ifaddr 932structures are gained manually, by incrementing the 933.Va ifa_refcnt 934member. 935References are released by calling either the 936.Fn ifafree 937function or the 938.Fn IFAFREE 939macro. 940.Pp 941.Fn ifa_rtrequest 942is a pointer to a function which receives callouts from the routing 943code 944.Pq Fn rtrequest 945to perform link-layer-specific actions upon requests to add, resolve, 946or delete routes. 947The 948.Fa cmd 949argument indicates the request in question: 950.Dv RTM_ADD , RTM_RESOLVE , 951or 952.Dv RTM_DELETE . 953The 954.Fa rt 955argument is the route in question; the 956.Fa dst 957argument is the specific destination being manipulated 958for 959.Dv RTM_RESOLVE , 960or a null pointer otherwise. 961.Sh FUNCTIONS 962The functions provided by the generic interface code can be divided 963into two groups: those which manipulate interfaces, and those which 964manipulate interface addresses. 965In addition to these functions, there 966may also be link-layer support routines which are used by a number of 967drivers implementing a specific link layer over different hardware; 968see the documentation for that link layer for more details. 969.Ss The Vt ifmultiaddr Ss Structure 970Every multicast-capable interface is associated with a list of 971multicast group memberships, which indicate at a low level which 972link-layer multicast addresses (if any) should be accepted, and at a 973high level, in which network-layer multicast groups a user process has 974expressed interest. 975.Pp 976The elements of the structure are as follows: 977.Bl -tag -width ".Va ifma_refcount" -offset indent 978.It Va ifma_link 979.Pq Fn LIST_ENTRY ifmultiaddr 980.Xr queue 3 981macro glue. 982.It Va ifma_addr 983.Pq Vt "struct sockaddr *" 984A pointer to the address which this record represents. 985The 986memberships for various address families are stored in arbitrary 987order. 988.It Va ifma_lladdr 989.Pq Vt "struct sockaddr *" 990A pointer to the link-layer multicast address, if any, to which the 991network-layer multicast address in 992.Va ifma_addr 993is mapped, else a null pointer. 994If this element is non-nil, this 995membership also holds an invisible reference to another membership for 996that link-layer address. 997.It Va ifma_refcount 998.Pq Vt u_int 999A reference count of requests for this particular membership. 1000.El 1001.Ss Interface Manipulation Functions 1002.Bl -ohang -offset indent 1003.It Fn if_alloc 1004Allocate and initialize 1005.Vt "struct ifnet" . 1006Initialization includes the allocation of an interface index and may 1007include the allocation of a 1008.Fa type 1009specific structure in 1010.Va if_l2com . 1011.It Fn if_attach 1012Link the specified interface 1013.Fa ifp 1014into the list of network interfaces. 1015Also initialize the list of 1016addresses on that interface, and create a link-layer 1017.Vt ifaddr 1018structure to be the first element in that list. 1019(A pointer to 1020this address structure is saved in the global array 1021.Va ifnet_addrs . ) 1022The 1023.Fa ifp 1024must have been allocated by 1025.Fn if_alloc . 1026.It Fn if_detach 1027Shut down and unlink the specified 1028.Fa ifp 1029from the interface list. 1030.It Fn if_free 1031Free the given 1032.Fa ifp 1033back to the system. 1034The interface must have been previously detached if it was ever attached. 1035.It Fn if_free_type 1036Identical to 1037.Fn if_free 1038except that the given 1039.Fa type 1040is used to free 1041.Va if_l2com 1042instead of the type in 1043.Va if_type . 1044This is intended for use with drivers that change their interface type. 1045.It Fn if_down 1046Mark the interface 1047.Fa ifp 1048as down (i.e., 1049.Dv IFF_UP 1050is not set), 1051flush its output queue, notify protocols of the transition, 1052and generate a message from the 1053.Xr route 4 1054routing socket. 1055.It Fn if_up 1056Mark the interface 1057.Fa ifp 1058as up, notify protocols of the transition, 1059and generate a message from the 1060.Xr route 4 1061routing socket. 1062.It Fn ifpromisc 1063Add or remove a promiscuous reference to 1064.Fa ifp . 1065If 1066.Fa pswitch 1067is true, add a reference; 1068if it is false, remove a reference. 1069On reference count transitions 1070from zero to one and one to zero, set the 1071.Dv IFF_PROMISC 1072flag appropriately and call 1073.Fn if_ioctl 1074to set up the interface in the desired mode. 1075.It Fn if_allmulti 1076As 1077.Fn ifpromisc , 1078but for the all-multicasts 1079.Pq Dv IFF_ALLMULTI 1080flag instead of the promiscuous flag. 1081.It Fn ifunit 1082Return an 1083.Vt ifnet 1084pointer for the interface named 1085.Fa name . 1086.It Fn ifioctl 1087Process the ioctl request 1088.Fa cmd , 1089issued on socket 1090.Fa so 1091by thread 1092.Fa td , 1093with data parameter 1094.Fa data . 1095This is the main routine for handling all interface configuration 1096requests from user mode. 1097It is ordinarily only called from the socket-layer 1098.Xr ioctl 2 1099handler, and only for commands with class 1100.Sq Li i . 1101Any unrecognized commands will be passed down to socket 1102.Fa so Ns 's 1103protocol for 1104further interpretation. 1105The following commands are handled by 1106.Fn ifioctl : 1107.Pp 1108.Bl -tag -width ".Dv OSIOCGIFNETMASK" -offset indent -compact 1109.It Dv SIOCGIFCONF 1110.It Dv OSIOCGIFCONF 1111Get interface configuration. 1112(No call-down to driver.) 1113.Pp 1114.It Dv SIOCSIFNAME 1115Set the interface name. 1116.Dv RTM_IFANNOUNCE 1117departure and arrival messages are sent so that 1118routing code that relies on the interface name will update its interface 1119list. 1120Caller must have appropriate privilege. 1121(No call-down to driver.) 1122.It Dv SIOCGIFCAP 1123.It Dv SIOCGIFFLAGS 1124.It Dv SIOCGIFMETRIC 1125.It Dv SIOCGIFMTU 1126.It Dv SIOCGIFPHYS 1127Get interface capabilities, flags, metric, MTU, medium selection. 1128(No call-down to driver.) 1129.Pp 1130.It Dv SIOCSIFCAP 1131Enable or disable interface capabilities. 1132Caller must have appropriate privilege. 1133Before a call to the driver-specific 1134.Fn if_ioctl 1135routine, the requested mask for enabled capabilities is checked 1136against the mask of capabilities supported by the interface, 1137.Va if_capabilities . 1138Requesting to enable an unsupported capability is invalid. 1139The rest is supposed to be done by the driver, 1140which includes updating 1141.Va if_capenable 1142and 1143.Va if_data.ifi_hwassist 1144appropriately. 1145.Pp 1146.It Dv SIOCSIFFLAGS 1147Change interface flags. 1148Caller must have appropriate privilege. 1149If a change to the 1150.Dv IFF_UP 1151flag is requested, 1152.Fn if_up 1153or 1154.Fn if_down 1155is called as appropriate. 1156Flags listed in 1157.Dv IFF_CANTCHANGE 1158are masked off, and the field 1159.Va if_flags 1160in the interface structure is updated. 1161Finally, the driver 1162.Fn if_ioctl 1163routine is called to perform any setup 1164requested. 1165.Pp 1166.It Dv SIOCSIFMETRIC 1167.It Dv SIOCSIFPHYS 1168Change interface metric or medium. 1169Caller must have appropriate privilege. 1170.Pp 1171.It Dv SIOCSIFMTU 1172Change interface MTU. 1173Caller must have appropriate privilege. 1174MTU 1175values less than 72 or greater than 65535 are considered invalid. 1176The driver 1177.Fn if_ioctl 1178routine is called to implement the change; it is responsible for any 1179additional sanity checking and for actually modifying the MTU in the 1180interface structure. 1181.Pp 1182.It Dv SIOCADDMULTI 1183.It Dv SIOCDELMULTI 1184Add or delete permanent multicast group memberships on the interface. 1185Caller must have appropriate privilege. 1186The 1187.Fn if_addmulti 1188or 1189.Fn if_delmulti 1190function is called to perform the operation; qq.v. 1191.Pp 1192.It Dv SIOCSIFDSTADDR 1193.It Dv SIOCSIFADDR 1194.It Dv SIOCSIFBRDADDR 1195.It Dv SIOCSIFNETMASK 1196The socket's protocol control routine is called to implement the 1197requested action. 1198.Pp 1199.It Dv OSIOGIFADDR 1200.It Dv OSIOCGIFDSTADDR 1201.It Dv OSIOCGIFBRDADDR 1202.It Dv OSIOCGIFNETMASK 1203The socket's protocol control routine is called to implement the 1204requested action. 1205On return, 1206.Vt sockaddr 1207structures are converted into old-style (no 1208.Va sa_len 1209member). 1210.El 1211.El 1212.Pp 1213.Fn if_down , 1214.Fn ifioctl , 1215.Fn ifpromisc , 1216and 1217.Fn if_up 1218must be called at 1219.Fn splnet 1220or higher. 1221.Ss "Interface Address Functions" 1222Several functions exist to look up an interface address structure 1223given an address. 1224.Fn ifa_ifwithaddr 1225returns an interface address with either a local address or a 1226broadcast address precisely matching the parameter 1227.Fa addr . 1228.Fn ifa_ifwithdstaddr 1229returns an interface address for a point-to-point interface whose 1230remote 1231.Pq Dq destination 1232address is 1233.Fa addr . 1234.Pp 1235.Fn ifa_ifwithnet 1236returns the most specific interface address which matches the 1237specified address, 1238.Fa addr , 1239subject to its configured netmask, or a point-to-point interface 1240address whose remote address is 1241.Fa addr 1242if one is found. 1243.Pp 1244.Fn ifaof_ifpforaddr 1245returns the most specific address configured on interface 1246.Fa ifp 1247which matches address 1248.Fa addr , 1249subject to its configured netmask. 1250If the interface is 1251point-to-point, only an interface address whose remote address is 1252precisely 1253.Fa addr 1254will be returned. 1255.Pp 1256All of these functions return a null pointer if no such address can be 1257found. 1258.Ss "Interface Multicast Address Functions" 1259The 1260.Fn if_addmulti , 1261.Fn if_delmulti , 1262and 1263.Fn ifmaof_ifpforaddr 1264functions provide support for requesting and relinquishing multicast 1265group memberships, and for querying an interface's membership list, 1266respectively. 1267The 1268.Fn if_addmulti 1269function takes a pointer to an interface, 1270.Fa ifp , 1271and a generic address, 1272.Fa sa . 1273It also takes a pointer to a 1274.Vt "struct ifmultiaddr *" 1275which is filled in on successful return with the address of the 1276group membership control block. 1277The 1278.Fn if_addmulti 1279function performs the following four-step process: 1280.Bl -enum -offset indent 1281.It 1282Call the interface's 1283.Fn if_resolvemulti 1284entry point to determine the link-layer address, if any, corresponding 1285to this membership request, and also to give the link layer an 1286opportunity to veto this membership request should it so desire. 1287.It 1288Check the interface's group membership list for a pre-existing 1289membership for this group. 1290If one is not found, allocate a new one; 1291if one is, increment its reference count. 1292.It 1293If the 1294.Fn if_resolvemulti 1295routine returned a link-layer address corresponding to the group, 1296repeat the previous step for that address as well. 1297.It 1298If the interface's multicast address filter needs to be changed 1299because a new membership was added, call the interface's 1300.Fn if_ioctl 1301routine 1302(with a 1303.Fa cmd 1304argument of 1305.Dv SIOCADDMULTI ) 1306to request that it do so. 1307.El 1308.Pp 1309The 1310.Fn if_delmulti 1311function, given an interface 1312.Fa ifp 1313and an address, 1314.Fa sa , 1315reverses this process. 1316Both functions return zero on success, or a 1317standard error number on failure. 1318.Pp 1319The 1320.Fn ifmaof_ifpforaddr 1321function examines the membership list of interface 1322.Fa ifp 1323for an address matching 1324.Fa addr , 1325and returns a pointer to that 1326.Vt "struct ifmultiaddr" 1327if one is found, else it returns a null pointer. 1328.Sh SEE ALSO 1329.Xr ioctl 2 , 1330.Xr link_addr 3 , 1331.Xr queue 3 , 1332.Xr sysctl 3 , 1333.Xr bpf 4 , 1334.Xr ifmib 4 , 1335.Xr lo 4 , 1336.Xr netintro 4 , 1337.Xr polling 4 , 1338.Xr config 8 , 1339.Xr ppp 8 , 1340.Xr mbuf 9 , 1341.Xr rtentry 9 1342.Rs 1343.%A Gary R. Wright 1344.%A W. Richard Stevens 1345.%B TCP/IP Illustrated 1346.%V Vol. 2 1347.%O Addison-Wesley, ISBN 0-201-63354-X 1348.Re 1349.Sh AUTHORS 1350This manual page was written by 1351.An Garrett A. Wollman . 1352