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