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