xref: /freebsd/sys/netinet/in_var.h (revision bb06a80cf60b3afba459b72b2b2842898938fecf)
1c398230bSWarner Losh /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1985, 1986, 1993
5df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes  * are met:
10df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
16df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
17df8bae1dSRodney W. Grimes  *    without specific prior written permission.
18df8bae1dSRodney W. Grimes  *
19df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
30df8bae1dSRodney W. Grimes  *
312180b925SGarrett Wollman  *	@(#)in_var.h	8.2 (Berkeley) 1/9/95
32c3aac50fSPeter Wemm  * $FreeBSD$
33df8bae1dSRodney W. Grimes  */
34df8bae1dSRodney W. Grimes 
35707f139eSPaul Richards #ifndef _NETINET_IN_VAR_H_
36707f139eSPaul Richards #define _NETINET_IN_VAR_H_
37707f139eSPaul Richards 
3826d50672SGleb Smirnoff /*
3926d50672SGleb Smirnoff  * Argument structure for SIOCAIFADDR.
4026d50672SGleb Smirnoff  */
4126d50672SGleb Smirnoff struct	in_aliasreq {
4226d50672SGleb Smirnoff 	char	ifra_name[IFNAMSIZ];		/* if name, e.g. "en0" */
4326d50672SGleb Smirnoff 	struct	sockaddr_in ifra_addr;
4426d50672SGleb Smirnoff 	struct	sockaddr_in ifra_broadaddr;
4526d50672SGleb Smirnoff #define ifra_dstaddr ifra_broadaddr
4626d50672SGleb Smirnoff 	struct	sockaddr_in ifra_mask;
4726d50672SGleb Smirnoff 	int	ifra_vhid;
4826d50672SGleb Smirnoff };
4926d50672SGleb Smirnoff 
5026d50672SGleb Smirnoff #ifdef _KERNEL
51ffa5b11aSGarrett Wollman #include <sys/queue.h>
52ca925d9cSJonathan Lemon #include <sys/fnv_hash.h>
53d10910e6SBruce M Simpson #include <sys/tree.h>
54d10910e6SBruce M Simpson 
550d159406SGleb Smirnoff struct igmp_ifsoftc;
56d10910e6SBruce M Simpson struct in_multi;
57d10910e6SBruce M Simpson struct lltable;
58f3e1324bSStephen Hurd SLIST_HEAD(in_multi_head, in_multi);
59d10910e6SBruce M Simpson 
60d10910e6SBruce M Simpson /*
61d10910e6SBruce M Simpson  * IPv4 per-interface state.
62d10910e6SBruce M Simpson  */
63d10910e6SBruce M Simpson struct in_ifinfo {
64d10910e6SBruce M Simpson 	struct lltable		*ii_llt;	/* ARP state */
650d159406SGleb Smirnoff 	struct igmp_ifsoftc	*ii_igmp;	/* IGMP state */
66d10910e6SBruce M Simpson 	struct in_multi		*ii_allhosts;	/* 224.0.0.1 membership */
67d10910e6SBruce M Simpson };
68ffa5b11aSGarrett Wollman 
69df8bae1dSRodney W. Grimes /*
70df8bae1dSRodney W. Grimes  * Interface address, Internet version.  One of these structures
71477180fbSGarrett Wollman  * is allocated for each Internet address on an interface.
72df8bae1dSRodney W. Grimes  * The ifaddr structure contains the protocol-independent part
73df8bae1dSRodney W. Grimes  * of the structure and is assumed to be first.
74df8bae1dSRodney W. Grimes  */
75df8bae1dSRodney W. Grimes struct in_ifaddr {
76df8bae1dSRodney W. Grimes 	struct	ifaddr ia_ifa;		/* protocol-independent info */
77df8bae1dSRodney W. Grimes #define	ia_ifp		ia_ifa.ifa_ifp
78df8bae1dSRodney W. Grimes #define ia_flags	ia_ifa.ifa_flags
79b365d954SGleb Smirnoff 					/* ia_subnet{,mask} in host order */
80b365d954SGleb Smirnoff 	u_long	ia_subnet;		/* subnet address */
81b365d954SGleb Smirnoff 	u_long	ia_subnetmask;		/* mask of subnet */
82c8ee75f2SGleb Smirnoff 	CK_LIST_ENTRY(in_ifaddr) ia_hash;	/* hash of internet addresses */
83d7c5a620SMatt Macy 	CK_STAILQ_ENTRY(in_ifaddr) ia_link;	/* list of internet addresses */
84df8bae1dSRodney W. Grimes 	struct	sockaddr_in ia_addr;	/* reserve space for interface name */
85df8bae1dSRodney W. Grimes 	struct	sockaddr_in ia_dstaddr; /* reserve space for broadcast addr */
86df8bae1dSRodney W. Grimes #define	ia_broadaddr	ia_dstaddr
87df8bae1dSRodney W. Grimes 	struct	sockaddr_in ia_sockmask; /* reserve space for general netmask */
882d9db0bcSEric van Gyzen 	struct	callout ia_garp_timer;	/* timer for retransmitting GARPs */
892d9db0bcSEric van Gyzen 	int	ia_garp_count;		/* count of retransmitted GARPs */
90df8bae1dSRodney W. Grimes };
91df8bae1dSRodney W. Grimes 
92df8bae1dSRodney W. Grimes /*
93df8bae1dSRodney W. Grimes  * Given a pointer to an in_ifaddr (ifaddr),
94df8bae1dSRodney W. Grimes  * return a pointer to the addr as a sockaddr_in.
95df8bae1dSRodney W. Grimes  */
96df8bae1dSRodney W. Grimes #define IA_SIN(ia)    (&(((struct in_ifaddr *)(ia))->ia_addr))
971bc8a809SSteven Wallace #define IA_DSTSIN(ia) (&(((struct in_ifaddr *)(ia))->ia_dstaddr))
98d2945360SGleb Smirnoff #define IA_MASKSIN(ia) (&(((struct in_ifaddr *)(ia))->ia_sockmask))
99df8bae1dSRodney W. Grimes 
100df8bae1dSRodney W. Grimes #define IN_LNAOF(in, ifa) \
101df8bae1dSRodney W. Grimes 	((ntohl((in).s_addr) & ~((struct in_ifaddr *)(ifa)->ia_subnetmask))
102df8bae1dSRodney W. Grimes 
103582b6122SKip Macy #define LLTABLE(ifp)	\
104582b6122SKip Macy 	((struct in_ifinfo *)(ifp)->if_afdata[AF_INET])->ii_llt
105df8bae1dSRodney W. Grimes /*
106ca925d9cSJonathan Lemon  * Hash table for IP addresses.
107ca925d9cSJonathan Lemon  */
108d7c5a620SMatt Macy CK_STAILQ_HEAD(in_ifaddrhead, in_ifaddr);
109c8ee75f2SGleb Smirnoff CK_LIST_HEAD(in_ifaddrhashhead, in_ifaddr);
110eddfbb76SRobert Watson 
111eddfbb76SRobert Watson VNET_DECLARE(struct in_ifaddrhashhead *, in_ifaddrhashtbl);
112eddfbb76SRobert Watson VNET_DECLARE(struct in_ifaddrhead, in_ifaddrhead);
113eddfbb76SRobert Watson VNET_DECLARE(u_long, in_ifaddrhmask);		/* mask for hash table */
114eddfbb76SRobert Watson 
1151e77c105SRobert Watson #define	V_in_ifaddrhashtbl	VNET(in_ifaddrhashtbl)
1161e77c105SRobert Watson #define	V_in_ifaddrhead		VNET(in_ifaddrhead)
1171e77c105SRobert Watson #define	V_in_ifaddrhmask	VNET(in_ifaddrhmask)
118ca925d9cSJonathan Lemon 
119ca925d9cSJonathan Lemon #define INADDR_NHASH_LOG2       9
120ca925d9cSJonathan Lemon #define INADDR_NHASH		(1 << INADDR_NHASH_LOG2)
121ca925d9cSJonathan Lemon #define INADDR_HASHVAL(x)	fnv_32_buf((&(x)), sizeof(x), FNV1_32_INIT)
122ca925d9cSJonathan Lemon #define INADDR_HASH(x) \
123603724d3SBjoern A. Zeeb 	(&V_in_ifaddrhashtbl[INADDR_HASHVAL(x) & V_in_ifaddrhmask])
124ca925d9cSJonathan Lemon 
12507ea6709SBruce M Simpson /*
126e2fd806bSBruce M Simpson  * Macro for finding the internet address structure (in_ifaddr)
12707ea6709SBruce M Simpson  * corresponding to one of our IP addresses (in_addr).
12807ea6709SBruce M Simpson  */
12907ea6709SBruce M Simpson #define INADDR_TO_IFADDR(addr, ia) \
13007ea6709SBruce M Simpson 	/* struct in_addr addr; */ \
13107ea6709SBruce M Simpson 	/* struct in_ifaddr *ia; */ \
13207ea6709SBruce M Simpson do {									\
133c8ee75f2SGleb Smirnoff 	NET_EPOCH_ASSERT();						\
134c8ee75f2SGleb Smirnoff 	CK_LIST_FOREACH(ia, INADDR_HASH((addr).s_addr), ia_hash)	\
13507ea6709SBruce M Simpson 		if (IA_SIN(ia)->sin_addr.s_addr == (addr).s_addr)	\
13607ea6709SBruce M Simpson 			break;						\
13707ea6709SBruce M Simpson } while (0)
138ca925d9cSJonathan Lemon 
139ca925d9cSJonathan Lemon /*
140df8bae1dSRodney W. Grimes  * Macro for finding the interface (ifnet structure) corresponding to one
141df8bae1dSRodney W. Grimes  * of our IP addresses.
142df8bae1dSRodney W. Grimes  */
143df8bae1dSRodney W. Grimes #define INADDR_TO_IFP(addr, ifp) \
144df8bae1dSRodney W. Grimes 	/* struct in_addr addr; */ \
145df8bae1dSRodney W. Grimes 	/* struct ifnet *ifp; */ \
146df8bae1dSRodney W. Grimes { \
1479f81cc84SRuslan Ermilov 	struct in_ifaddr *ia; \
148df8bae1dSRodney W. Grimes \
14907ea6709SBruce M Simpson 	INADDR_TO_IFADDR(addr, ia); \
150df8bae1dSRodney W. Grimes 	(ifp) = (ia == NULL) ? NULL : ia->ia_ifp; \
151df8bae1dSRodney W. Grimes }
152df8bae1dSRodney W. Grimes 
153df8bae1dSRodney W. Grimes /*
154df8bae1dSRodney W. Grimes  * Macro for finding the internet address structure (in_ifaddr) corresponding
155df8bae1dSRodney W. Grimes  * to a given interface (ifnet structure).
156df8bae1dSRodney W. Grimes  */
1572144431cSGleb Smirnoff #define IFP_TO_IA(ifp, ia)						\
158df8bae1dSRodney W. Grimes 	/* struct ifnet *ifp; */					\
159df8bae1dSRodney W. Grimes 	/* struct in_ifaddr *ia; */					\
160b9abeb9dSGleb Smirnoff do {									\
161b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();						\
162d7c5a620SMatt Macy 	for ((ia) = CK_STAILQ_FIRST(&V_in_ifaddrhead);			\
163df8bae1dSRodney W. Grimes 	    (ia) != NULL && (ia)->ia_ifp != (ifp);			\
164d7c5a620SMatt Macy 	    (ia) = CK_STAILQ_NEXT((ia), ia_link))			\
165df8bae1dSRodney W. Grimes 		continue;						\
166b9abeb9dSGleb Smirnoff } while (0)
167df8bae1dSRodney W. Grimes 
168df8bae1dSRodney W. Grimes /*
169d10910e6SBruce M Simpson  * Legacy IPv4 IGMP per-link structure.
170f0068c4aSGarrett Wollman  */
171f0068c4aSGarrett Wollman struct router_info {
17249fa849bSBill Fenner 	struct ifnet *rti_ifp;
17349fa849bSBill Fenner 	int    rti_type; /* type of router which is querier on this interface */
17449fa849bSBill Fenner 	int    rti_time; /* # of slow timeouts since last old query */
1756c4b2ad3SRobert Watson 	SLIST_ENTRY(router_info) rti_list;
176f0068c4aSGarrett Wollman };
177f0068c4aSGarrett Wollman 
178f0068c4aSGarrett Wollman /*
179d10910e6SBruce M Simpson  * IPv4 multicast IGMP-layer source entry.
180d10910e6SBruce M Simpson  */
181d10910e6SBruce M Simpson struct ip_msource {
182d10910e6SBruce M Simpson 	RB_ENTRY(ip_msource)	ims_link;	/* RB tree links */
183d10910e6SBruce M Simpson 	in_addr_t		ims_haddr;	/* host byte order */
184d10910e6SBruce M Simpson 	struct ims_st {
185d10910e6SBruce M Simpson 		uint16_t	ex;		/* # of exclusive members */
186d10910e6SBruce M Simpson 		uint16_t	in;		/* # of inclusive members */
187d10910e6SBruce M Simpson 	}			ims_st[2];	/* state at t0, t1 */
188d10910e6SBruce M Simpson 	uint8_t			ims_stp;	/* pending query */
189d10910e6SBruce M Simpson };
190d10910e6SBruce M Simpson 
191d10910e6SBruce M Simpson /*
192d10910e6SBruce M Simpson  * IPv4 multicast PCB-layer source entry.
193d10910e6SBruce M Simpson  */
194d10910e6SBruce M Simpson struct in_msource {
195d10910e6SBruce M Simpson 	RB_ENTRY(ip_msource)	ims_link;	/* RB tree links */
196d10910e6SBruce M Simpson 	in_addr_t		ims_haddr;	/* host byte order */
197d10910e6SBruce M Simpson 	uint8_t			imsl_st[2];	/* state before/at commit */
198d10910e6SBruce M Simpson };
199d10910e6SBruce M Simpson 
200d10910e6SBruce M Simpson RB_HEAD(ip_msource_tree, ip_msource);	/* define struct ip_msource_tree */
201d10910e6SBruce M Simpson 
202d10910e6SBruce M Simpson static __inline int
203d10910e6SBruce M Simpson ip_msource_cmp(const struct ip_msource *a, const struct ip_msource *b)
204d10910e6SBruce M Simpson {
205d10910e6SBruce M Simpson 
206d10910e6SBruce M Simpson 	if (a->ims_haddr < b->ims_haddr)
207d10910e6SBruce M Simpson 		return (-1);
208d10910e6SBruce M Simpson 	if (a->ims_haddr == b->ims_haddr)
209d10910e6SBruce M Simpson 		return (0);
210d10910e6SBruce M Simpson 	return (1);
211d10910e6SBruce M Simpson }
212d10910e6SBruce M Simpson RB_PROTOTYPE(ip_msource_tree, ip_msource, ims_link, ip_msource_cmp);
213d10910e6SBruce M Simpson 
214d10910e6SBruce M Simpson /*
215d10910e6SBruce M Simpson  * IPv4 multicast PCB-layer group filter descriptor.
216d10910e6SBruce M Simpson  */
217d10910e6SBruce M Simpson struct in_mfilter {
218d10910e6SBruce M Simpson 	struct ip_msource_tree	imf_sources; /* source list for (S,G) */
219d10910e6SBruce M Simpson 	u_long			imf_nsrc;    /* # of source entries */
220d10910e6SBruce M Simpson 	uint8_t			imf_st[2];   /* state before/at commit */
22159854ecfSHans Petter Selasky 	struct in_multi	       *imf_inm;     /* associated multicast address */
22259854ecfSHans Petter Selasky 	STAILQ_ENTRY(in_mfilter) imf_entry;  /* list entry */
223d10910e6SBruce M Simpson };
224d10910e6SBruce M Simpson 
225d10910e6SBruce M Simpson /*
22659854ecfSHans Petter Selasky  * Helper types and functions for IPv4 multicast filters.
22759854ecfSHans Petter Selasky  */
22859854ecfSHans Petter Selasky STAILQ_HEAD(ip_mfilter_head, in_mfilter);
22959854ecfSHans Petter Selasky 
23059854ecfSHans Petter Selasky struct in_mfilter *ip_mfilter_alloc(int mflags, int st0, int st1);
23159854ecfSHans Petter Selasky void ip_mfilter_free(struct in_mfilter *);
23259854ecfSHans Petter Selasky 
23359854ecfSHans Petter Selasky static inline void
23459854ecfSHans Petter Selasky ip_mfilter_init(struct ip_mfilter_head *head)
23559854ecfSHans Petter Selasky {
23659854ecfSHans Petter Selasky 
23759854ecfSHans Petter Selasky 	STAILQ_INIT(head);
23859854ecfSHans Petter Selasky }
23959854ecfSHans Petter Selasky 
24059854ecfSHans Petter Selasky static inline struct in_mfilter *
24159854ecfSHans Petter Selasky ip_mfilter_first(const struct ip_mfilter_head *head)
24259854ecfSHans Petter Selasky {
24359854ecfSHans Petter Selasky 
24459854ecfSHans Petter Selasky 	return (STAILQ_FIRST(head));
24559854ecfSHans Petter Selasky }
24659854ecfSHans Petter Selasky 
24759854ecfSHans Petter Selasky static inline void
24859854ecfSHans Petter Selasky ip_mfilter_insert(struct ip_mfilter_head *head, struct in_mfilter *imf)
24959854ecfSHans Petter Selasky {
25059854ecfSHans Petter Selasky 
25159854ecfSHans Petter Selasky 	STAILQ_INSERT_TAIL(head, imf, imf_entry);
25259854ecfSHans Petter Selasky }
25359854ecfSHans Petter Selasky 
25459854ecfSHans Petter Selasky static inline void
25559854ecfSHans Petter Selasky ip_mfilter_remove(struct ip_mfilter_head *head, struct in_mfilter *imf)
25659854ecfSHans Petter Selasky {
25759854ecfSHans Petter Selasky 
25859854ecfSHans Petter Selasky 	STAILQ_REMOVE(head, imf, in_mfilter, imf_entry);
25959854ecfSHans Petter Selasky }
26059854ecfSHans Petter Selasky 
26159854ecfSHans Petter Selasky #define	IP_MFILTER_FOREACH(imf, head) \
26259854ecfSHans Petter Selasky 	STAILQ_FOREACH(imf, head, imf_entry)
26359854ecfSHans Petter Selasky 
26459854ecfSHans Petter Selasky static inline size_t
26559854ecfSHans Petter Selasky ip_mfilter_count(struct ip_mfilter_head *head)
26659854ecfSHans Petter Selasky {
26759854ecfSHans Petter Selasky 	struct in_mfilter *imf;
26859854ecfSHans Petter Selasky 	size_t num = 0;
26959854ecfSHans Petter Selasky 
27059854ecfSHans Petter Selasky 	STAILQ_FOREACH(imf, head, imf_entry)
27159854ecfSHans Petter Selasky 		num++;
27259854ecfSHans Petter Selasky 	return (num);
27359854ecfSHans Petter Selasky }
27459854ecfSHans Petter Selasky 
27559854ecfSHans Petter Selasky /*
276d10910e6SBruce M Simpson  * IPv4 group descriptor.
277d10910e6SBruce M Simpson  *
278d10910e6SBruce M Simpson  * For every entry on an ifnet's if_multiaddrs list which represents
279d10910e6SBruce M Simpson  * an IP multicast group, there is one of these structures.
280d10910e6SBruce M Simpson  *
281d10910e6SBruce M Simpson  * If any source filters are present, then a node will exist in the RB-tree
282d10910e6SBruce M Simpson  * to permit fast lookup by source whenever an operation takes place.
283d10910e6SBruce M Simpson  * This permits pre-order traversal when we issue reports.
284d10910e6SBruce M Simpson  * Source filter trees are kept separately from the socket layer to
285d10910e6SBruce M Simpson  * greatly simplify locking.
286d10910e6SBruce M Simpson  *
287d10910e6SBruce M Simpson  * When IGMPv3 is active, inm_timer is the response to group query timer.
288d10910e6SBruce M Simpson  * The state-change timer inm_sctimer is separate; whenever state changes
289d10910e6SBruce M Simpson  * for the group the state change record is generated and transmitted,
290d10910e6SBruce M Simpson  * and kept if retransmissions are necessary.
291d10910e6SBruce M Simpson  *
292d10910e6SBruce M Simpson  * FUTURE: inm_link is now only used when groups are being purged
293d10910e6SBruce M Simpson  * on a detaching ifnet. It could be demoted to a SLIST_ENTRY, but
294d10910e6SBruce M Simpson  * because it is at the very start of the struct, we can't do this
295d10910e6SBruce M Simpson  * w/o breaking the ABI for ifmcstat.
296df8bae1dSRodney W. Grimes  */
297df8bae1dSRodney W. Grimes struct in_multi {
298d10910e6SBruce M Simpson 	LIST_ENTRY(in_multi) inm_link;	/* to-be-released by in_ifdetach */
299477180fbSGarrett Wollman 	struct	in_addr inm_addr;	/* IP multicast address, convenience */
300df8bae1dSRodney W. Grimes 	struct	ifnet *inm_ifp;		/* back pointer to ifnet */
301477180fbSGarrett Wollman 	struct	ifmultiaddr *inm_ifma;	/* back pointer to ifmultiaddr */
302d10910e6SBruce M Simpson 	u_int	inm_timer;		/* IGMPv1/v2 group / v3 query timer */
303f0068c4aSGarrett Wollman 	u_int	inm_state;		/* state of the membership */
304d10910e6SBruce M Simpson 	void	*inm_rti;		/* unused, legacy field */
305ec002feeSBruce M Simpson 	u_int	inm_refcount;		/* reference count */
306d10910e6SBruce M Simpson 
307d10910e6SBruce M Simpson 	/* New fields for IGMPv3 follow. */
3080d159406SGleb Smirnoff 	struct igmp_ifsoftc	*inm_igi;	/* IGMP info */
309d10910e6SBruce M Simpson 	SLIST_ENTRY(in_multi)	 inm_nrele;	/* to-be-released by IGMP */
310d10910e6SBruce M Simpson 	struct ip_msource_tree	 inm_srcs;	/* tree of sources */
311d10910e6SBruce M Simpson 	u_long			 inm_nsrc;	/* # of tree entries */
312d10910e6SBruce M Simpson 
313058e08beSGleb Smirnoff 	struct mbufq		 inm_scq;	/* queue of pending
314d10910e6SBruce M Simpson 						 * state-change packets */
315d10910e6SBruce M Simpson 	struct timeval		 inm_lastgsrtv;	/* Time of last G-S-R query */
316d10910e6SBruce M Simpson 	uint16_t		 inm_sctimer;	/* state-change timer */
317d10910e6SBruce M Simpson 	uint16_t		 inm_scrv;	/* state-change rexmit count */
318d10910e6SBruce M Simpson 
319d10910e6SBruce M Simpson 	/*
320d10910e6SBruce M Simpson 	 * SSM state counters which track state at T0 (the time the last
321d10910e6SBruce M Simpson 	 * state-change report's RV timer went to zero) and T1
322d10910e6SBruce M Simpson 	 * (time of pending report, i.e. now).
323d10910e6SBruce M Simpson 	 * Used for computing IGMPv3 state-change reports. Several refcounts
324d10910e6SBruce M Simpson 	 * are maintained here to optimize for common use-cases.
325d10910e6SBruce M Simpson 	 */
326d10910e6SBruce M Simpson 	struct inm_st {
327d10910e6SBruce M Simpson 		uint16_t	iss_fmode;	/* IGMP filter mode */
328d10910e6SBruce M Simpson 		uint16_t	iss_asm;	/* # of ASM listeners */
329d10910e6SBruce M Simpson 		uint16_t	iss_ex;		/* # of exclusive members */
330d10910e6SBruce M Simpson 		uint16_t	iss_in;		/* # of inclusive members */
331d10910e6SBruce M Simpson 		uint16_t	iss_rec;	/* # of recorded sources */
332d10910e6SBruce M Simpson 	}			inm_st[2];	/* state at t0, t1 */
333df8bae1dSRodney W. Grimes };
334df8bae1dSRodney W. Grimes 
33571498f30SBruce M Simpson /*
336d10910e6SBruce M Simpson  * Helper function to derive the filter mode on a source entry
337d10910e6SBruce M Simpson  * from its internal counters. Predicates are:
338d10910e6SBruce M Simpson  *  A source is only excluded if all listeners exclude it.
339d10910e6SBruce M Simpson  *  A source is only included if no listeners exclude it,
340d10910e6SBruce M Simpson  *  and at least one listener includes it.
341d10910e6SBruce M Simpson  * May be used by ifmcstat(8).
34271498f30SBruce M Simpson  */
343d10910e6SBruce M Simpson static __inline uint8_t
344d10910e6SBruce M Simpson ims_get_mode(const struct in_multi *inm, const struct ip_msource *ims,
345d10910e6SBruce M Simpson     uint8_t t)
346d10910e6SBruce M Simpson {
347d10910e6SBruce M Simpson 
348d10910e6SBruce M Simpson 	t = !!t;
349d10910e6SBruce M Simpson 	if (inm->inm_st[t].iss_ex > 0 &&
350d10910e6SBruce M Simpson 	    inm->inm_st[t].iss_ex == ims->ims_st[t].ex)
351d10910e6SBruce M Simpson 		return (MCAST_EXCLUDE);
352d10910e6SBruce M Simpson 	else if (ims->ims_st[t].in > 0 && ims->ims_st[t].ex == 0)
353d10910e6SBruce M Simpson 		return (MCAST_INCLUDE);
354d10910e6SBruce M Simpson 	return (MCAST_UNDEFINED);
355d10910e6SBruce M Simpson }
35671498f30SBruce M Simpson 
357ce02431fSDoug Rabson #ifdef SYSCTL_DECL
358969bb53eSAndre Oppermann SYSCTL_DECL(_net_inet);
359ce02431fSDoug Rabson SYSCTL_DECL(_net_inet_ip);
360ce02431fSDoug Rabson SYSCTL_DECL(_net_inet_raw);
361ce02431fSDoug Rabson #endif
362ce02431fSDoug Rabson 
363df8bae1dSRodney W. Grimes /*
364dd5a318bSRobert Watson  * Lock macros for IPv4 layer multicast address lists.  IPv4 lock goes
365dd5a318bSRobert Watson  * before link layer multicast locks in the lock order.  In most cases,
366dd5a318bSRobert Watson  * consumers of IN_*_MULTI() macros should acquire the locks before
367dd5a318bSRobert Watson  * calling them; users of the in_{add,del}multi() functions should not.
368dd5a318bSRobert Watson  */
369f3e1324bSStephen Hurd extern struct mtx in_multi_list_mtx;
370f3e1324bSStephen Hurd extern struct sx in_multi_sx;
371f3e1324bSStephen Hurd 
372f3e1324bSStephen Hurd #define	IN_MULTI_LIST_LOCK()		mtx_lock(&in_multi_list_mtx)
373f3e1324bSStephen Hurd #define	IN_MULTI_LIST_UNLOCK()	mtx_unlock(&in_multi_list_mtx)
374f3e1324bSStephen Hurd #define	IN_MULTI_LIST_LOCK_ASSERT()	mtx_assert(&in_multi_list_mtx, MA_OWNED)
375f3e1324bSStephen Hurd #define	IN_MULTI_LIST_UNLOCK_ASSERT() mtx_assert(&in_multi_list_mtx, MA_NOTOWNED)
376f3e1324bSStephen Hurd 
377f3e1324bSStephen Hurd #define	IN_MULTI_LOCK()		sx_xlock(&in_multi_sx)
378f3e1324bSStephen Hurd #define	IN_MULTI_UNLOCK()	sx_xunlock(&in_multi_sx)
379f3e1324bSStephen Hurd #define	IN_MULTI_LOCK_ASSERT()	sx_assert(&in_multi_sx, SA_XLOCKED)
380f3e1324bSStephen Hurd #define	IN_MULTI_UNLOCK_ASSERT() sx_assert(&in_multi_sx, SA_XUNLOCKED)
381dd5a318bSRobert Watson 
382b6f6f880SMatt Macy void inm_disconnect(struct in_multi *inm);
3831e9482f4SAlexander Motin 
3841e9482f4SAlexander Motin /*
3851e9482f4SAlexander Motin  * Get the in_multi pointer from a ifmultiaddr.
3861e9482f4SAlexander Motin  * Returns NULL if ifmultiaddr is no longer valid.
3871e9482f4SAlexander Motin  */
3881e9482f4SAlexander Motin static __inline struct in_multi *
3891e9482f4SAlexander Motin inm_ifmultiaddr_get_inm(struct ifmultiaddr *ifma)
3901e9482f4SAlexander Motin {
3911e9482f4SAlexander Motin 
3921e9482f4SAlexander Motin 	NET_EPOCH_ASSERT();
3931e9482f4SAlexander Motin 
3941e9482f4SAlexander Motin 	return ((ifma->ifma_addr->sa_family != AF_INET ||
3951e9482f4SAlexander Motin 	    (ifma->ifma_flags & IFMA_F_ENQUEUED) == 0) ? NULL :
3961e9482f4SAlexander Motin 	    ifma->ifma_protospec);
3971e9482f4SAlexander Motin }
398b6f6f880SMatt Macy 
399d10910e6SBruce M Simpson /* Acquire an in_multi record. */
400d10910e6SBruce M Simpson static __inline void
401d10910e6SBruce M Simpson inm_acquire_locked(struct in_multi *inm)
402d10910e6SBruce M Simpson {
403d10910e6SBruce M Simpson 
404f3e1324bSStephen Hurd 	IN_MULTI_LIST_LOCK_ASSERT();
405d10910e6SBruce M Simpson 	++inm->inm_refcount;
406d10910e6SBruce M Simpson }
407df8bae1dSRodney W. Grimes 
408f3e1324bSStephen Hurd static __inline void
409f3e1324bSStephen Hurd inm_acquire(struct in_multi *inm)
410f3e1324bSStephen Hurd {
411f3e1324bSStephen Hurd 	IN_MULTI_LIST_LOCK();
412f3e1324bSStephen Hurd 	inm_acquire_locked(inm);
413f3e1324bSStephen Hurd 	IN_MULTI_LIST_UNLOCK();
414f3e1324bSStephen Hurd }
415f3e1324bSStephen Hurd 
416f3e1324bSStephen Hurd static __inline void
417f3e1324bSStephen Hurd inm_rele_locked(struct in_multi_head *inmh, struct in_multi *inm)
418f3e1324bSStephen Hurd {
419f3e1324bSStephen Hurd 	MPASS(inm->inm_refcount > 0);
420f3e1324bSStephen Hurd 	IN_MULTI_LIST_LOCK_ASSERT();
421f3e1324bSStephen Hurd 
422f3e1324bSStephen Hurd 	if (--inm->inm_refcount == 0) {
423f3e1324bSStephen Hurd 		MPASS(inmh != NULL);
424b6f6f880SMatt Macy 		inm_disconnect(inm);
425f3e1324bSStephen Hurd 		inm->inm_ifma->ifma_protospec = NULL;
426f3e1324bSStephen Hurd 		SLIST_INSERT_HEAD(inmh, inm, inm_nrele);
427f3e1324bSStephen Hurd 	}
428f3e1324bSStephen Hurd }
429f3e1324bSStephen Hurd 
430df8bae1dSRodney W. Grimes /*
431d10910e6SBruce M Simpson  * Return values for imo_multi_filter().
432df8bae1dSRodney W. Grimes  */
433d10910e6SBruce M Simpson #define MCAST_PASS		0	/* Pass */
434d10910e6SBruce M Simpson #define MCAST_NOTGMEMBER	1	/* This host not a member of group */
435d10910e6SBruce M Simpson #define MCAST_NOTSMEMBER	2	/* This host excluded source */
436d10910e6SBruce M Simpson #define MCAST_MUTED		3	/* [deprecated] */
437df8bae1dSRodney W. Grimes 
4382f23f45bSAlexander V. Chernikov struct rib_head;
43971498f30SBruce M Simpson struct	ip_moptions;
440*bb06a80cSAlexander V. Chernikov struct ucred;
44171498f30SBruce M Simpson 
4428d7cf9b5SGleb Smirnoff struct in_multi *inm_lookup_locked(struct ifnet *, const struct in_addr);
4438d7cf9b5SGleb Smirnoff struct in_multi *inm_lookup(struct ifnet *, const struct in_addr);
444d10910e6SBruce M Simpson int	imo_multi_filter(const struct ip_moptions *, const struct ifnet *,
445d10910e6SBruce M Simpson 	    const struct sockaddr *, const struct sockaddr *);
446d10910e6SBruce M Simpson void	inm_commit(struct in_multi *);
447d10910e6SBruce M Simpson void	inm_clear_recorded(struct in_multi *);
448d10910e6SBruce M Simpson void	inm_print(const struct in_multi *);
449d10910e6SBruce M Simpson int	inm_record_source(struct in_multi *inm, const in_addr_t);
450f3e1324bSStephen Hurd void	inm_release_deferred(struct in_multi *);
451f3e1324bSStephen Hurd void	inm_release_list_deferred(struct in_multi_head *);
4523689652cSHans Petter Selasky void	inm_release_wait(void *);
453d10910e6SBruce M Simpson int	in_joingroup(struct ifnet *, const struct in_addr *,
454d10910e6SBruce M Simpson 	    /*const*/ struct in_mfilter *, struct in_multi **);
455d10910e6SBruce M Simpson int	in_joingroup_locked(struct ifnet *, const struct in_addr *,
456d10910e6SBruce M Simpson 	    /*const*/ struct in_mfilter *, struct in_multi **);
457d10910e6SBruce M Simpson int	in_leavegroup(struct in_multi *, /*const*/ struct in_mfilter *);
458d10910e6SBruce M Simpson int	in_leavegroup_locked(struct in_multi *,
459d10910e6SBruce M Simpson 	    /*const*/ struct in_mfilter *);
460f277746eSGleb Smirnoff int	in_control(struct socket *, u_long, void *, struct ifnet *,
4614d77a549SAlfred Perlstein 	    struct thread *);
462*bb06a80cSAlexander V. Chernikov int	in_control_ioctl(u_long, void *, struct ifnet *,
463*bb06a80cSAlexander V. Chernikov 	    struct ucred *);
464130aebbaSAlexander V. Chernikov int	in_addprefix(struct in_ifaddr *);
46508b68b0eSGleb Smirnoff int	in_scrubprefix(struct in_ifaddr *, u_int);
46689856f7eSBjoern A. Zeeb void	in_ifscrub_all(void);
4674d77a549SAlfred Perlstein void	ip_input(struct mbuf *);
468b8bc95cdSAdrian Chadd void	ip_direct_input(struct mbuf *);
469586904c2SGleb Smirnoff void	in_ifadown(struct ifaddr *ifa, int);
47033872124SGeorge V. Neville-Neil struct	mbuf	*ip_tryforward(struct mbuf *);
4716e6b3f7cSQing Li void	*in_domifattach(struct ifnet *);
4726e6b3f7cSQing Li void	in_domifdetach(struct ifnet *, void *);
4732f23f45bSAlexander V. Chernikov struct rib_head *in_inithead(uint32_t fibnum);
4742f23f45bSAlexander V. Chernikov #ifdef VIMAGE
4752f23f45bSAlexander V. Chernikov void	in_detachhead(struct rib_head *rh);
4762f23f45bSAlexander V. Chernikov #endif
4776e6b3f7cSQing Li 
478664a31e4SPeter Wemm #endif /* _KERNEL */
4792180b925SGarrett Wollman 
48076429de4SYoshinobu Inoue /* INET6 stuff */
48176429de4SYoshinobu Inoue #include <netinet6/in6_var.h>
48276429de4SYoshinobu Inoue 
4832180b925SGarrett Wollman #endif /* _NETINET_IN_VAR_H_ */
484