xref: /freebsd-13-stable/sys/netinet/in_var.h (revision 4b40a16f0d188422227478889b38cc341d50f88f)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1985, 1986, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *	@(#)in_var.h	8.2 (Berkeley) 1/9/95
32  */
33 
34 #ifndef _NETINET_IN_VAR_H_
35 #define _NETINET_IN_VAR_H_
36 
37 /*
38  * Argument structure for SIOCAIFADDR.
39  */
40 struct	in_aliasreq {
41 	char	ifra_name[IFNAMSIZ];		/* if name, e.g. "en0" */
42 	struct	sockaddr_in ifra_addr;
43 	struct	sockaddr_in ifra_broadaddr;
44 #define ifra_dstaddr ifra_broadaddr
45 	struct	sockaddr_in ifra_mask;
46 	int	ifra_vhid;
47 };
48 
49 #ifdef _KERNEL
50 #include <sys/queue.h>
51 #include <sys/fnv_hash.h>
52 #include <sys/tree.h>
53 
54 struct igmp_ifsoftc;
55 struct in_multi;
56 struct lltable;
57 SLIST_HEAD(in_multi_head, in_multi);
58 
59 /*
60  * IPv4 per-interface state.
61  */
62 struct in_ifinfo {
63 	struct lltable		*ii_llt;	/* ARP state */
64 	struct igmp_ifsoftc	*ii_igmp;	/* IGMP state */
65 	struct in_multi		*ii_allhosts;	/* 224.0.0.1 membership */
66 };
67 
68 /*
69  * Interface address, Internet version.  One of these structures
70  * is allocated for each Internet address on an interface.
71  * The ifaddr structure contains the protocol-independent part
72  * of the structure and is assumed to be first.
73  */
74 struct in_ifaddr {
75 	struct	ifaddr ia_ifa;		/* protocol-independent info */
76 #define	ia_ifp		ia_ifa.ifa_ifp
77 #define ia_flags	ia_ifa.ifa_flags
78 					/* ia_subnet{,mask} in host order */
79 	u_long	ia_subnet;		/* subnet address */
80 	u_long	ia_subnetmask;		/* mask of subnet */
81 	LIST_ENTRY(in_ifaddr) ia_hash;	/* entry in bucket of inet addresses */
82 	CK_STAILQ_ENTRY(in_ifaddr) ia_link;	/* list of internet addresses */
83 	struct	sockaddr_in ia_addr;	/* reserve space for interface name */
84 	struct	sockaddr_in ia_dstaddr; /* reserve space for broadcast addr */
85 #define	ia_broadaddr	ia_dstaddr
86 	struct	sockaddr_in ia_sockmask; /* reserve space for general netmask */
87 	struct	callout ia_garp_timer;	/* timer for retransmitting GARPs */
88 	int	ia_garp_count;		/* count of retransmitted GARPs */
89 };
90 
91 /*
92  * Given a pointer to an in_ifaddr (ifaddr),
93  * return a pointer to the addr as a sockaddr_in.
94  */
95 #define IA_SIN(ia)    (&(((struct in_ifaddr *)(ia))->ia_addr))
96 #define IA_DSTSIN(ia) (&(((struct in_ifaddr *)(ia))->ia_dstaddr))
97 #define IA_MASKSIN(ia) (&(((struct in_ifaddr *)(ia))->ia_sockmask))
98 
99 #define IN_LNAOF(in, ifa) \
100 	((ntohl((in).s_addr) & ~((struct in_ifaddr *)(ifa)->ia_subnetmask))
101 
102 extern	u_char	inetctlerrmap[];
103 
104 #define LLTABLE(ifp)	\
105 	((struct in_ifinfo *)(ifp)->if_afdata[AF_INET])->ii_llt
106 /*
107  * Hash table for IP addresses.
108  */
109 CK_STAILQ_HEAD(in_ifaddrhead, in_ifaddr);
110 LIST_HEAD(in_ifaddrhashhead, in_ifaddr);
111 
112 VNET_DECLARE(struct in_ifaddrhashhead *, in_ifaddrhashtbl);
113 VNET_DECLARE(struct in_ifaddrhead, in_ifaddrhead);
114 VNET_DECLARE(u_long, in_ifaddrhmask);		/* mask for hash table */
115 
116 #define	V_in_ifaddrhashtbl	VNET(in_ifaddrhashtbl)
117 #define	V_in_ifaddrhead		VNET(in_ifaddrhead)
118 #define	V_in_ifaddrhmask	VNET(in_ifaddrhmask)
119 
120 #define INADDR_NHASH_LOG2       9
121 #define INADDR_NHASH		(1 << INADDR_NHASH_LOG2)
122 #define INADDR_HASHVAL(x)	fnv_32_buf((&(x)), sizeof(x), FNV1_32_INIT)
123 #define INADDR_HASH(x) \
124 	(&V_in_ifaddrhashtbl[INADDR_HASHVAL(x) & V_in_ifaddrhmask])
125 
126 extern	struct rmlock in_ifaddr_lock;
127 
128 #define	IN_IFADDR_LOCK_ASSERT()	rm_assert(&in_ifaddr_lock, RA_LOCKED)
129 #define	IN_IFADDR_RLOCK(t)	rm_rlock(&in_ifaddr_lock, (t))
130 #define	IN_IFADDR_RLOCK_ASSERT()	rm_assert(&in_ifaddr_lock, RA_RLOCKED)
131 #define	IN_IFADDR_RUNLOCK(t)	rm_runlock(&in_ifaddr_lock, (t))
132 #define	IN_IFADDR_WLOCK()	rm_wlock(&in_ifaddr_lock)
133 #define	IN_IFADDR_WLOCK_ASSERT()	rm_assert(&in_ifaddr_lock, RA_WLOCKED)
134 #define	IN_IFADDR_WUNLOCK()	rm_wunlock(&in_ifaddr_lock)
135 
136 /*
137  * Macro for finding the internet address structure (in_ifaddr)
138  * corresponding to one of our IP addresses (in_addr).
139  */
140 #define INADDR_TO_IFADDR(addr, ia) \
141 	/* struct in_addr addr; */ \
142 	/* struct in_ifaddr *ia; */ \
143 do { \
144 \
145 	LIST_FOREACH(ia, INADDR_HASH((addr).s_addr), ia_hash) \
146 		if (IA_SIN(ia)->sin_addr.s_addr == (addr).s_addr) \
147 			break; \
148 } while (0)
149 
150 /*
151  * Macro for finding the interface (ifnet structure) corresponding to one
152  * of our IP addresses.
153  */
154 #define INADDR_TO_IFP(addr, ifp) \
155 	/* struct in_addr addr; */ \
156 	/* struct ifnet *ifp; */ \
157 { \
158 	struct in_ifaddr *ia; \
159 \
160 	INADDR_TO_IFADDR(addr, ia); \
161 	(ifp) = (ia == NULL) ? NULL : ia->ia_ifp; \
162 }
163 
164 /*
165  * Macro for finding the internet address structure (in_ifaddr) corresponding
166  * to a given interface (ifnet structure).
167  */
168 #define IFP_TO_IA(ifp, ia, t)						\
169 	/* struct ifnet *ifp; */					\
170 	/* struct in_ifaddr *ia; */					\
171 	/* struct rm_priotracker *t; */					\
172 do {									\
173 	NET_EPOCH_ASSERT();						\
174 	IN_IFADDR_RLOCK((t));						\
175 	for ((ia) = CK_STAILQ_FIRST(&V_in_ifaddrhead);			\
176 	    (ia) != NULL && (ia)->ia_ifp != (ifp);			\
177 	    (ia) = CK_STAILQ_NEXT((ia), ia_link))				\
178 		continue;						\
179 	IN_IFADDR_RUNLOCK((t));						\
180 } while (0)
181 
182 /*
183  * Legacy IPv4 IGMP per-link structure.
184  */
185 struct router_info {
186 	struct ifnet *rti_ifp;
187 	int    rti_type; /* type of router which is querier on this interface */
188 	int    rti_time; /* # of slow timeouts since last old query */
189 	SLIST_ENTRY(router_info) rti_list;
190 };
191 
192 /*
193  * IPv4 multicast IGMP-layer source entry.
194  */
195 struct ip_msource {
196 	RB_ENTRY(ip_msource)	ims_link;	/* RB tree links */
197 	in_addr_t		ims_haddr;	/* host byte order */
198 	struct ims_st {
199 		uint16_t	ex;		/* # of exclusive members */
200 		uint16_t	in;		/* # of inclusive members */
201 	}			ims_st[2];	/* state at t0, t1 */
202 	uint8_t			ims_stp;	/* pending query */
203 };
204 
205 /*
206  * IPv4 multicast PCB-layer source entry.
207  */
208 struct in_msource {
209 	RB_ENTRY(ip_msource)	ims_link;	/* RB tree links */
210 	in_addr_t		ims_haddr;	/* host byte order */
211 	uint8_t			imsl_st[2];	/* state before/at commit */
212 };
213 
214 RB_HEAD(ip_msource_tree, ip_msource);	/* define struct ip_msource_tree */
215 
216 static __inline int
ip_msource_cmp(const struct ip_msource * a,const struct ip_msource * b)217 ip_msource_cmp(const struct ip_msource *a, const struct ip_msource *b)
218 {
219 
220 	if (a->ims_haddr < b->ims_haddr)
221 		return (-1);
222 	if (a->ims_haddr == b->ims_haddr)
223 		return (0);
224 	return (1);
225 }
226 RB_PROTOTYPE(ip_msource_tree, ip_msource, ims_link, ip_msource_cmp);
227 
228 /*
229  * IPv4 multicast PCB-layer group filter descriptor.
230  */
231 struct in_mfilter {
232 	struct ip_msource_tree	imf_sources; /* source list for (S,G) */
233 	u_long			imf_nsrc;    /* # of source entries */
234 	uint8_t			imf_st[2];   /* state before/at commit */
235 	struct in_multi	       *imf_inm;     /* associated multicast address */
236 	STAILQ_ENTRY(in_mfilter) imf_entry;  /* list entry */
237 };
238 
239 /*
240  * Helper types and functions for IPv4 multicast filters.
241  */
242 STAILQ_HEAD(ip_mfilter_head, in_mfilter);
243 
244 struct in_mfilter *ip_mfilter_alloc(int mflags, int st0, int st1);
245 void ip_mfilter_free(struct in_mfilter *);
246 
247 static inline void
ip_mfilter_init(struct ip_mfilter_head * head)248 ip_mfilter_init(struct ip_mfilter_head *head)
249 {
250 
251 	STAILQ_INIT(head);
252 }
253 
254 static inline struct in_mfilter *
ip_mfilter_first(const struct ip_mfilter_head * head)255 ip_mfilter_first(const struct ip_mfilter_head *head)
256 {
257 
258 	return (STAILQ_FIRST(head));
259 }
260 
261 static inline void
ip_mfilter_insert(struct ip_mfilter_head * head,struct in_mfilter * imf)262 ip_mfilter_insert(struct ip_mfilter_head *head, struct in_mfilter *imf)
263 {
264 
265 	STAILQ_INSERT_TAIL(head, imf, imf_entry);
266 }
267 
268 static inline void
ip_mfilter_remove(struct ip_mfilter_head * head,struct in_mfilter * imf)269 ip_mfilter_remove(struct ip_mfilter_head *head, struct in_mfilter *imf)
270 {
271 
272 	STAILQ_REMOVE(head, imf, in_mfilter, imf_entry);
273 }
274 
275 #define	IP_MFILTER_FOREACH(imf, head) \
276 	STAILQ_FOREACH(imf, head, imf_entry)
277 
278 static inline size_t
ip_mfilter_count(struct ip_mfilter_head * head)279 ip_mfilter_count(struct ip_mfilter_head *head)
280 {
281 	struct in_mfilter *imf;
282 	size_t num = 0;
283 
284 	STAILQ_FOREACH(imf, head, imf_entry)
285 		num++;
286 	return (num);
287 }
288 
289 /*
290  * IPv4 group descriptor.
291  *
292  * For every entry on an ifnet's if_multiaddrs list which represents
293  * an IP multicast group, there is one of these structures.
294  *
295  * If any source filters are present, then a node will exist in the RB-tree
296  * to permit fast lookup by source whenever an operation takes place.
297  * This permits pre-order traversal when we issue reports.
298  * Source filter trees are kept separately from the socket layer to
299  * greatly simplify locking.
300  *
301  * When IGMPv3 is active, inm_timer is the response to group query timer.
302  * The state-change timer inm_sctimer is separate; whenever state changes
303  * for the group the state change record is generated and transmitted,
304  * and kept if retransmissions are necessary.
305  *
306  * FUTURE: inm_link is now only used when groups are being purged
307  * on a detaching ifnet. It could be demoted to a SLIST_ENTRY, but
308  * because it is at the very start of the struct, we can't do this
309  * w/o breaking the ABI for ifmcstat.
310  */
311 struct in_multi {
312 	LIST_ENTRY(in_multi) inm_link;	/* to-be-released by in_ifdetach */
313 	struct	in_addr inm_addr;	/* IP multicast address, convenience */
314 	struct	ifnet *inm_ifp;		/* back pointer to ifnet */
315 	struct	ifmultiaddr *inm_ifma;	/* back pointer to ifmultiaddr */
316 	u_int	inm_timer;		/* IGMPv1/v2 group / v3 query timer */
317 	u_int	inm_state;		/* state of the membership */
318 	void	*inm_rti;		/* unused, legacy field */
319 	u_int	inm_refcount;		/* reference count */
320 
321 	/* New fields for IGMPv3 follow. */
322 	struct igmp_ifsoftc	*inm_igi;	/* IGMP info */
323 	SLIST_ENTRY(in_multi)	 inm_nrele;	/* to-be-released by IGMP */
324 	struct ip_msource_tree	 inm_srcs;	/* tree of sources */
325 	u_long			 inm_nsrc;	/* # of tree entries */
326 
327 	struct mbufq		 inm_scq;	/* queue of pending
328 						 * state-change packets */
329 	struct timeval		 inm_lastgsrtv;	/* Time of last G-S-R query */
330 	uint16_t		 inm_sctimer;	/* state-change timer */
331 	uint16_t		 inm_scrv;	/* state-change rexmit count */
332 
333 	/*
334 	 * SSM state counters which track state at T0 (the time the last
335 	 * state-change report's RV timer went to zero) and T1
336 	 * (time of pending report, i.e. now).
337 	 * Used for computing IGMPv3 state-change reports. Several refcounts
338 	 * are maintained here to optimize for common use-cases.
339 	 */
340 	struct inm_st {
341 		uint16_t	iss_fmode;	/* IGMP filter mode */
342 		uint16_t	iss_asm;	/* # of ASM listeners */
343 		uint16_t	iss_ex;		/* # of exclusive members */
344 		uint16_t	iss_in;		/* # of inclusive members */
345 		uint16_t	iss_rec;	/* # of recorded sources */
346 	}			inm_st[2];	/* state at t0, t1 */
347 };
348 
349 /*
350  * Helper function to derive the filter mode on a source entry
351  * from its internal counters. Predicates are:
352  *  A source is only excluded if all listeners exclude it.
353  *  A source is only included if no listeners exclude it,
354  *  and at least one listener includes it.
355  * May be used by ifmcstat(8).
356  */
357 static __inline uint8_t
ims_get_mode(const struct in_multi * inm,const struct ip_msource * ims,uint8_t t)358 ims_get_mode(const struct in_multi *inm, const struct ip_msource *ims,
359     uint8_t t)
360 {
361 
362 	t = !!t;
363 	if (inm->inm_st[t].iss_ex > 0 &&
364 	    inm->inm_st[t].iss_ex == ims->ims_st[t].ex)
365 		return (MCAST_EXCLUDE);
366 	else if (ims->ims_st[t].in > 0 && ims->ims_st[t].ex == 0)
367 		return (MCAST_INCLUDE);
368 	return (MCAST_UNDEFINED);
369 }
370 
371 #ifdef SYSCTL_DECL
372 SYSCTL_DECL(_net_inet);
373 SYSCTL_DECL(_net_inet_ip);
374 SYSCTL_DECL(_net_inet_raw);
375 #endif
376 
377 /*
378  * Lock macros for IPv4 layer multicast address lists.  IPv4 lock goes
379  * before link layer multicast locks in the lock order.  In most cases,
380  * consumers of IN_*_MULTI() macros should acquire the locks before
381  * calling them; users of the in_{add,del}multi() functions should not.
382  */
383 extern struct mtx in_multi_list_mtx;
384 extern struct sx in_multi_sx;
385 
386 #define	IN_MULTI_LIST_LOCK()		mtx_lock(&in_multi_list_mtx)
387 #define	IN_MULTI_LIST_UNLOCK()	mtx_unlock(&in_multi_list_mtx)
388 #define	IN_MULTI_LIST_LOCK_ASSERT()	mtx_assert(&in_multi_list_mtx, MA_OWNED)
389 #define	IN_MULTI_LIST_UNLOCK_ASSERT() mtx_assert(&in_multi_list_mtx, MA_NOTOWNED)
390 
391 #define	IN_MULTI_LOCK()		sx_xlock(&in_multi_sx)
392 #define	IN_MULTI_UNLOCK()	sx_xunlock(&in_multi_sx)
393 #define	IN_MULTI_LOCK_ASSERT()	sx_assert(&in_multi_sx, SA_XLOCKED)
394 #define	IN_MULTI_UNLOCK_ASSERT() sx_assert(&in_multi_sx, SA_XUNLOCKED)
395 
396 void inm_disconnect(struct in_multi *inm);
397 
398 /*
399  * Get the in_multi pointer from a ifmultiaddr.
400  * Returns NULL if ifmultiaddr is no longer valid.
401  */
402 static __inline struct in_multi *
inm_ifmultiaddr_get_inm(struct ifmultiaddr * ifma)403 inm_ifmultiaddr_get_inm(struct ifmultiaddr *ifma)
404 {
405 
406 	NET_EPOCH_ASSERT();
407 
408 	return ((ifma->ifma_addr->sa_family != AF_INET ||
409 	    (ifma->ifma_flags & IFMA_F_ENQUEUED) == 0) ? NULL :
410 	    ifma->ifma_protospec);
411 }
412 
413 /* Acquire an in_multi record. */
414 static __inline void
inm_acquire_locked(struct in_multi * inm)415 inm_acquire_locked(struct in_multi *inm)
416 {
417 
418 	IN_MULTI_LIST_LOCK_ASSERT();
419 	++inm->inm_refcount;
420 }
421 
422 static __inline void
inm_acquire(struct in_multi * inm)423 inm_acquire(struct in_multi *inm)
424 {
425 	IN_MULTI_LIST_LOCK();
426 	inm_acquire_locked(inm);
427 	IN_MULTI_LIST_UNLOCK();
428 }
429 
430 static __inline void
inm_rele_locked(struct in_multi_head * inmh,struct in_multi * inm)431 inm_rele_locked(struct in_multi_head *inmh, struct in_multi *inm)
432 {
433 	MPASS(inm->inm_refcount > 0);
434 	IN_MULTI_LIST_LOCK_ASSERT();
435 
436 	if (--inm->inm_refcount == 0) {
437 		MPASS(inmh != NULL);
438 		inm_disconnect(inm);
439 		inm->inm_ifma->ifma_protospec = NULL;
440 		SLIST_INSERT_HEAD(inmh, inm, inm_nrele);
441 	}
442 }
443 
444 /*
445  * Return values for imo_multi_filter().
446  */
447 #define MCAST_PASS		0	/* Pass */
448 #define MCAST_NOTGMEMBER	1	/* This host not a member of group */
449 #define MCAST_NOTSMEMBER	2	/* This host excluded source */
450 #define MCAST_MUTED		3	/* [deprecated] */
451 
452 struct rib_head;
453 struct	ip_moptions;
454 
455 struct in_multi *inm_lookup_locked(struct ifnet *, const struct in_addr);
456 struct in_multi *inm_lookup(struct ifnet *, const struct in_addr);
457 int	imo_multi_filter(const struct ip_moptions *, const struct ifnet *,
458 	    const struct sockaddr *, const struct sockaddr *);
459 void	inm_commit(struct in_multi *);
460 void	inm_clear_recorded(struct in_multi *);
461 void	inm_print(const struct in_multi *);
462 int	inm_record_source(struct in_multi *inm, const in_addr_t);
463 void	inm_release_deferred(struct in_multi *);
464 void	inm_release_list_deferred(struct in_multi_head *);
465 void	inm_release_wait(void *);
466 struct	in_multi *
467 in_addmulti(struct in_addr *, struct ifnet *);
468 int	in_joingroup(struct ifnet *, const struct in_addr *,
469 	    /*const*/ struct in_mfilter *, struct in_multi **);
470 int	in_joingroup_locked(struct ifnet *, const struct in_addr *,
471 	    /*const*/ struct in_mfilter *, struct in_multi **);
472 int	in_leavegroup(struct in_multi *, /*const*/ struct in_mfilter *);
473 int	in_leavegroup_locked(struct in_multi *,
474 	    /*const*/ struct in_mfilter *);
475 int	in_control(struct socket *, u_long, caddr_t, struct ifnet *,
476 	    struct thread *);
477 int	in_addprefix(struct in_ifaddr *);
478 int	in_scrubprefix(struct in_ifaddr *, u_int);
479 void	in_ifscrub_all(void);
480 int	in_handle_ifaddr_route(int, struct in_ifaddr *);
481 void	ip_input(struct mbuf *);
482 void	ip_direct_input(struct mbuf *);
483 void	in_ifadown(struct ifaddr *ifa, int);
484 struct	mbuf	*ip_tryforward(struct mbuf *);
485 void	*in_domifattach(struct ifnet *);
486 void	in_domifdetach(struct ifnet *, void *);
487 struct rib_head *in_inithead(uint32_t fibnum);
488 #ifdef VIMAGE
489 void	in_detachhead(struct rib_head *rh);
490 #endif
491 
492 #endif /* _KERNEL */
493 
494 /* INET6 stuff */
495 #include <netinet6/in6_var.h>
496 
497 #endif /* _NETINET_IN_VAR_H_ */
498