MULTICAST is now standard
[unix-history] / usr / src / sys / net / if.h
CommitLineData
cb1c44c2 1/*
ba56c73e 2 * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
5b519e94 3 * All rights reserved.
cb1c44c2 4 *
dbf0c423 5 * %sccs.include.redist.c%
5b519e94 6 *
5548a02f 7 * @(#)if.h 7.20 (Berkeley) %G%
cb1c44c2 8 */
665ce890
BJ
9
10/*
f1b2fa5b
BJ
11 * Structures defining a network interface, providing a packet
12 * transport mechanism (ala level 0 of the PUP protocols).
13 *
14 * Each interface accepts output datagrams of a specified maximum
15 * length, and provides higher level routines with input datagrams
16 * received from its medium.
17 *
18 * Output occurs when the routine if_output is called, with three parameters:
320326b9 19 * (*ifp->if_output)(ifp, m, dst, rt)
ee787340
SL
20 * Here m is the mbuf chain to be sent and dst is the destination address.
21 * The output routine encapsulates the supplied datagram if necessary,
22 * and then transmits it on its medium.
f1b2fa5b
BJ
23 *
24 * On input, each interface unwraps the data received by it, and either
25 * places it on the input queue of a internetwork datagram routine
26 * and posts the associated software interrupt, or passes the datagram to a raw
27 * packet input routine.
28 *
ee787340 29 * Routines exist for locating interfaces by their addresses
f1b2fa5b
BJ
30 * or for locating a interface on a certain network, as well as more general
31 * routing and gateway routines maintaining information used to locate
ee787340 32 * interfaces. These routines live in the files if.c and route.c
8a13b737 33 */
ba56c73e 34#ifndef _TIME_ /* XXX fast fix for SNMP, going away soon */
ba56c73e
KS
35#include <sys/time.h>
36#endif
8a13b737 37
7e3bff40
KS
38#ifdef __STDC__
39/*
40 * Forward structure declarations for function prototypes [sic].
41 */
1a30fb87
KS
42struct rtentry;
43struct mbuf;
7e3bff40 44#endif
ec1367f4
KS
45/*
46 * Structure describing information about an interface
47 * which may be of interest to management entities.
48 */
8a13b737
BJ
49/*
50 * Structure defining a queue for a network interface.
665ce890
BJ
51 *
52 * (Would like to call this struct ``if'', but C isn't PL/1.)
53 */
ba56c73e 54
665ce890 55struct ifnet {
b454c3ea 56 char *if_name; /* name, e.g. ``en'' or ``lo'' */
ec1367f4
KS
57 struct ifnet *if_next; /* all struct ifnets are chained */
58 struct ifaddr *if_addrlist; /* linked list of addresses per if */
59 int if_pcount; /* number of promiscuous listeners */
78cafbd4 60 caddr_t if_bpf; /* packet filter structure */
ec1367f4 61 u_short if_index; /* numeric abbreviation for this if */
665ce890 62 short if_unit; /* sub-unit for lower level driver */
de602274 63 short if_timer; /* time 'til if_watchdog called */
ec1367f4
KS
64 short if_flags; /* up/down, broadcast, etc. */
65 struct if_data {
66/* generic interface information */
ec1367f4
KS
67 u_char ifi_type; /* ethernet, tokenring, etc */
68 u_char ifi_addrlen; /* media address length */
69 u_char ifi_hdrlen; /* media header length */
78cafbd4
KS
70 u_long ifi_mtu; /* maximum transmission unit */
71 u_long ifi_metric; /* routing metric (external only) */
72 u_long ifi_baudrate; /* linespeed */
ec1367f4 73/* volatile statistics */
78cafbd4
KS
74 u_long ifi_ipackets; /* packets received on interface */
75 u_long ifi_ierrors; /* input errors on interface */
76 u_long ifi_opackets; /* packets sent on interface */
77 u_long ifi_oerrors; /* output errors on interface */
78 u_long ifi_collisions; /* collisions on csma interfaces */
79 u_long ifi_ibytes; /* total number of octets received */
80 u_long ifi_obytes; /* total number of octets sent */
81 u_long ifi_imcasts; /* packets received via multicast */
82 u_long ifi_omcasts; /* packets sent via multicast */
83 u_long ifi_iqdrops; /* dropped on input, this interface */
84 u_long ifi_noproto; /* destined for unsupported protocol */
ec1367f4
KS
85 struct timeval ifi_lastchange;/* last updated */
86 } if_data;
f1b2fa5b 87/* procedure handles */
320326b9
KS
88 int (*if_init) /* init routine */
89 __P((int));
90 int (*if_output) /* output routine (enqueue) */
91 __P((struct ifnet *, struct mbuf *, struct sockaddr *,
92 struct rtentry *));
93 int (*if_start) /* initiate output routine */
94 __P((struct ifnet *));
95 int (*if_done) /* output complete routine */
96 __P((struct ifnet *)); /* (XXX not used; fake prototype) */
97 int (*if_ioctl) /* ioctl routine */
98 __P((struct ifnet *, int, caddr_t));
78cafbd4
KS
99 int (*if_reset)
100 __P((int)); /* new autoconfig will permit removal */
320326b9
KS
101 int (*if_watchdog) /* timer routine */
102 __P((int));
ec1367f4
KS
103 struct ifqueue {
104 struct mbuf *ifq_head;
105 struct mbuf *ifq_tail;
106 int ifq_len;
107 int ifq_maxlen;
108 int ifq_drops;
109 } if_snd; /* output queue */
665ce890 110};
ec1367f4
KS
111#define if_mtu if_data.ifi_mtu
112#define if_type if_data.ifi_type
113#define if_addrlen if_data.ifi_addrlen
114#define if_hdrlen if_data.ifi_hdrlen
115#define if_metric if_data.ifi_metric
116#define if_baudrate if_data.ifi_baudrate
117#define if_ipackets if_data.ifi_ipackets
118#define if_ierrors if_data.ifi_ierrors
119#define if_opackets if_data.ifi_opackets
120#define if_oerrors if_data.ifi_oerrors
121#define if_collisions if_data.ifi_collisions
122#define if_ibytes if_data.ifi_ibytes
123#define if_obytes if_data.ifi_obytes
124#define if_imcasts if_data.ifi_imcasts
125#define if_omcasts if_data.ifi_omcasts
126#define if_iqdrops if_data.ifi_iqdrops
127#define if_noproto if_data.ifi_noproto
128#define if_lastchange if_data.ifi_lastchange
665ce890 129
ee787340
SL
130#define IFF_UP 0x1 /* interface is up */
131#define IFF_BROADCAST 0x2 /* broadcast address valid */
132#define IFF_DEBUG 0x4 /* turn on debugging */
484ee22e 133#define IFF_LOOPBACK 0x8 /* is a loopback net */
dc39362e 134#define IFF_POINTOPOINT 0x10 /* interface is point-to-point link */
a62dd253 135#define IFF_NOTRAILERS 0x20 /* avoid use of trailers */
81889e84 136#define IFF_RUNNING 0x40 /* resources allocated */
2effa891 137#define IFF_NOARP 0x80 /* no address resolution protocol */
bbe75d63
MK
138#define IFF_PROMISC 0x100 /* receive all packets */
139#define IFF_ALLMULTI 0x200 /* receive all multicast packets */
38a81509
MK
140#define IFF_OACTIVE 0x400 /* transmission in progress */
141#define IFF_SIMPLEX 0x800 /* can't hear own transmissions */
38f662d0
KS
142#define IFF_LINK0 0x1000 /* per link layer defined bit */
143#define IFF_LINK1 0x2000 /* per link layer defined bit */
144#define IFF_LINK2 0x4000 /* per link layer defined bit */
78cafbd4 145#define IFF_MULTICAST 0x8000 /* supports multicast */
38a81509 146
484ee22e 147/* flags set internally only: */
3d424137 148#define IFF_CANTCHANGE \
78cafbd4
KS
149 (IFF_BROADCAST|IFF_POINTOPOINT|IFF_RUNNING|IFF_OACTIVE|\
150 IFF_SIMPLEX|IFF_MULTICAST)
ee787340 151
f1b2fa5b
BJ
152/*
153 * Output queues (ifp->if_snd) and internetwork datagram level (pup level 1)
154 * input routines have queues of messages stored on ifqueue structures
155 * (defined above). Entries are added to and deleted from these structures
156 * by these macros, which should be called with ipl raised to splimp().
157 */
1e977657
BJ
158#define IF_QFULL(ifq) ((ifq)->ifq_len >= (ifq)->ifq_maxlen)
159#define IF_DROP(ifq) ((ifq)->ifq_drops++)
8a13b737 160#define IF_ENQUEUE(ifq, m) { \
0428a0b2 161 (m)->m_nextpkt = 0; \
8a13b737 162 if ((ifq)->ifq_tail == 0) \
405c9168 163 (ifq)->ifq_head = m; \
8a13b737 164 else \
0428a0b2 165 (ifq)->ifq_tail->m_nextpkt = m; \
405c9168 166 (ifq)->ifq_tail = m; \
1e977657 167 (ifq)->ifq_len++; \
8a13b737 168}
e740a894 169#define IF_PREPEND(ifq, m) { \
0428a0b2 170 (m)->m_nextpkt = (ifq)->ifq_head; \
1dd55890
BJ
171 if ((ifq)->ifq_tail == 0) \
172 (ifq)->ifq_tail = (m); \
e740a894 173 (ifq)->ifq_head = (m); \
1e977657 174 (ifq)->ifq_len++; \
e740a894 175}
8a13b737
BJ
176#define IF_DEQUEUE(ifq, m) { \
177 (m) = (ifq)->ifq_head; \
178 if (m) { \
0428a0b2 179 if (((ifq)->ifq_head = (m)->m_nextpkt) == 0) \
8a13b737 180 (ifq)->ifq_tail = 0; \
0428a0b2 181 (m)->m_nextpkt = 0; \
1e977657 182 (ifq)->ifq_len--; \
8a13b737
BJ
183 } \
184}
665ce890 185
1e977657 186#define IFQ_MAXLEN 50
de602274 187#define IFNET_SLOWHZ 1 /* granularity is 1 second */
1e977657 188
63de846e
MK
189/*
190 * The ifaddr structure contains information about one address
191 * of an interface. They are maintained by the different address families,
192 * are allocated and attached when an address is set, and are linked
193 * together so all addresses for an interface can be located.
194 */
195struct ifaddr {
b72a6efb
KS
196 struct sockaddr *ifa_addr; /* address of interface */
197 struct sockaddr *ifa_dstaddr; /* other end of p-to-p link */
198#define ifa_broadaddr ifa_dstaddr /* broadcast address interface */
199 struct sockaddr *ifa_netmask; /* used to determine subnet */
63de846e
MK
200 struct ifnet *ifa_ifp; /* back-pointer to interface */
201 struct ifaddr *ifa_next; /* next address for interface */
78cafbd4 202 void (*ifa_rtrequest)(); /* check or clean routes (+ or -)'d */
8b2d214b 203 u_short ifa_flags; /* mostly rt_flags for cloning */
320326b9 204 short ifa_refcnt; /* extra to malloc for link info */
ec1367f4 205 int ifa_metric; /* cost of going out this interface */
78cafbd4
KS
206#ifdef notdef
207 struct rtentry *ifa_rt; /* XXXX for ROUTETOIF ????? */
208#endif
63de846e 209};
78cafbd4 210#define IFA_ROUTE RTF_UP /* route installed */
ec1367f4
KS
211
212/*
213 * Message format for use in obtaining information about interfaces
214 * from getkerninfo and the routing socket
215 */
216struct if_msghdr {
217 u_short ifm_msglen; /* to skip over non-understood messages */
218 u_char ifm_version; /* future binary compatability */
219 u_char ifm_type; /* message type */
220 int ifm_addrs; /* like rtm_addrs */
221 int ifm_flags; /* value of if_flags */
222 u_short ifm_index; /* index for associated ifp */
223 struct if_data ifm_data;/* statistics and other data about if */
224};
225
226/*
227 * Message format for use in obtaining information about interface addresses
228 * from getkerninfo and the routing socket
229 */
230struct ifa_msghdr {
231 u_short ifam_msglen; /* to skip over non-understood messages */
232 u_char ifam_version; /* future binary compatability */
233 u_char ifam_type; /* message type */
234 int ifam_addrs; /* like rtm_addrs */
235 int ifam_flags; /* value of ifa_flags */
236 u_short ifam_index; /* index for associated ifp */
237 int ifam_metric; /* value of ifa_metric */
238};
239
0c33c832 240/*
a62dd253
SL
241 * Interface request structure used for socket
242 * ioctl's. All interface ioctl's must have parameter
243 * definitions which begin with ifr_name. The
244 * remainder may be interface specific.
0c33c832
SL
245 */
246struct ifreq {
a62dd253
SL
247#define IFNAMSIZ 16
248 char ifr_name[IFNAMSIZ]; /* if name, e.g. "en0" */
0c33c832
SL
249 union {
250 struct sockaddr ifru_addr;
251 struct sockaddr ifru_dstaddr;
bdef13f6 252 struct sockaddr ifru_broadaddr;
0c33c832 253 short ifru_flags;
484ee22e 254 int ifru_metric;
a62dd253 255 caddr_t ifru_data;
0c33c832
SL
256 } ifr_ifru;
257#define ifr_addr ifr_ifru.ifru_addr /* address */
258#define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-to-p link */
bdef13f6 259#define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */
0c33c832 260#define ifr_flags ifr_ifru.ifru_flags /* flags */
484ee22e 261#define ifr_metric ifr_ifru.ifru_metric /* metric */
a62dd253 262#define ifr_data ifr_ifru.ifru_data /* for use by interface */
0c33c832
SL
263};
264
b72a6efb
KS
265struct ifaliasreq {
266 char ifra_name[IFNAMSIZ]; /* if name, e.g. "en0" */
267 struct sockaddr ifra_addr;
268 struct sockaddr ifra_broadaddr;
269 struct sockaddr ifra_mask;
270};
271
0c33c832
SL
272/*
273 * Structure used in SIOCGIFCONF request.
274 * Used to retrieve interface configuration
275 * for machine (useful for programs which
276 * must know all networks accessible).
277 */
278struct ifconf {
279 int ifc_len; /* size of associated buffer */
280 union {
281 caddr_t ifcu_buf;
282 struct ifreq *ifcu_req;
283 } ifc_ifcu;
284#define ifc_buf ifc_ifcu.ifcu_buf /* buffer address */
285#define ifc_req ifc_ifcu.ifcu_req /* array of structures returned */
286};
287
5548a02f
KB
288#include <net/if_arp.h>
289
665ce890 290#ifdef KERNEL
38f662d0 291#define IFAFREE(ifa) \
320326b9 292 if ((ifa)->ifa_refcnt <= 0) \
38f662d0
KS
293 ifafree(ifa); \
294 else \
295 (ifa)->ifa_refcnt--;
296
38f662d0
KS
297struct ifnet *ifnet;
298struct ifaddr *ifa_ifwithaddr __P((struct sockaddr *)),
299 *ifa_ifwithnet __P((struct sockaddr *)),
300 *ifa_ifwithdstaddr __P((struct sockaddr *));
301void ifafree __P((struct ifaddr *));
320326b9 302void if_attach __P((struct ifnet *));
5548a02f 303#endif