xref: /freebsd/sys/netinet/ip_var.h (revision b68d2789f0d745d420203ca7dae9408f81cc7206)
1c398230bSWarner Losh /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 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  *
313271ad14SGarrett Wollman  *	@(#)ip_var.h	8.2 (Berkeley) 1/9/95
32df8bae1dSRodney W. Grimes  */
33df8bae1dSRodney W. Grimes 
34707f139eSPaul Richards #ifndef _NETINET_IP_VAR_H_
35707f139eSPaul Richards #define	_NETINET_IP_VAR_H_
36707f139eSPaul Richards 
37cb6bb230SMatt Macy #include <sys/epoch.h>
38aa70361dSKristof Provost #include <sys/queue.h>
39aa70361dSKristof Provost #include <sys/types.h>
40aa70361dSKristof Provost 
41aa70361dSKristof Provost #include <netinet/in.h>
4233841545SHajimu UMEMOTO 
43df8bae1dSRodney W. Grimes /*
44df8bae1dSRodney W. Grimes  * Overlay for ip header used by other protocols (tcp, udp).
45df8bae1dSRodney W. Grimes  */
46df8bae1dSRodney W. Grimes struct ipovly {
476effc713SDoug Rabson 	u_char	ih_x1[9];		/* (unused) */
48df8bae1dSRodney W. Grimes 	u_char	ih_pr;			/* protocol */
49430d30d8SBill Fenner 	u_short	ih_len;			/* protocol length */
50df8bae1dSRodney W. Grimes 	struct	in_addr ih_src;		/* source internet address */
51df8bae1dSRodney W. Grimes 	struct	in_addr ih_dst;		/* destination internet address */
52df8bae1dSRodney W. Grimes };
53df8bae1dSRodney W. Grimes 
5469dac2eaSRobert Watson #ifdef _KERNEL
55df8bae1dSRodney W. Grimes /*
56df8bae1dSRodney W. Grimes  * Ip reassembly queue structure.  Each fragment
57df8bae1dSRodney W. Grimes  * being reassembled is attached to one of these structures.
58a30cb315SGleb Smirnoff  * They are timed out after net.inet.ip.fragttl seconds, and may also be
59a30cb315SGleb Smirnoff  * reclaimed if memory becomes tight.
60df8bae1dSRodney W. Grimes  */
61df8bae1dSRodney W. Grimes struct ipq {
62462b86feSPoul-Henning Kamp 	TAILQ_ENTRY(ipq) ipq_list;	/* to other reass headers */
63a30cb315SGleb Smirnoff 	time_t	ipq_expire;		/* time_uptime when ipq expires */
64a30cb315SGleb Smirnoff 	u_char	ipq_nfrags;		/* # frags in this packet */
65df8bae1dSRodney W. Grimes 	u_char	ipq_p;			/* protocol of this fragment */
66df8bae1dSRodney W. Grimes 	u_short	ipq_id;			/* sequence id for reassembly */
672157f3c3SJonathan T. Looney 	int	ipq_maxoff;		/* total length of packet */
686effc713SDoug Rabson 	struct mbuf *ipq_frags;		/* to ip headers of fragments */
69df8bae1dSRodney W. Grimes 	struct	in_addr ipq_src,ipq_dst;
70eca8a663SRobert Watson 	struct label *ipq_label;	/* MAC label */
71df8bae1dSRodney W. Grimes };
7269dac2eaSRobert Watson #endif /* _KERNEL */
73df8bae1dSRodney W. Grimes 
74df8bae1dSRodney W. Grimes /*
75c444cddeSAndre Oppermann  * Structure stored in mbuf in inpcb.ip_options
76c444cddeSAndre Oppermann  * and passed to ip_output when ip options are in use.
77c444cddeSAndre Oppermann  * The actual length of the options (including ipopt_dst)
78c444cddeSAndre Oppermann  * is in m_len.
79c444cddeSAndre Oppermann  */
80c444cddeSAndre Oppermann #define MAX_IPOPTLEN	40
81c444cddeSAndre Oppermann 
82c444cddeSAndre Oppermann struct ipoption {
83c444cddeSAndre Oppermann 	struct	in_addr ipopt_dst;	/* first-hop dst if source routed */
84c444cddeSAndre Oppermann 	char	ipopt_list[MAX_IPOPTLEN];	/* options proper */
85c444cddeSAndre Oppermann };
86c444cddeSAndre Oppermann 
8759854ecfSHans Petter Selasky #if defined(_NETINET_IN_VAR_H_) && defined(_KERNEL)
88c444cddeSAndre Oppermann /*
89df8bae1dSRodney W. Grimes  * Structure attached to inpcb.ip_moptions and
90df8bae1dSRodney W. Grimes  * passed to ip_output when IP multicast options are in use.
9171498f30SBruce M Simpson  * This structure is lazy-allocated.
92df8bae1dSRodney W. Grimes  */
93df8bae1dSRodney W. Grimes struct ip_moptions {
94df8bae1dSRodney W. Grimes 	struct	ifnet *imo_multicast_ifp; /* ifp for outgoing multicasts */
9533841545SHajimu UMEMOTO 	struct in_addr imo_multicast_addr; /* ifindex/addr on MULTICAST_IF */
963548bfc9SBruce M Simpson 	u_long	imo_multicast_vif;	/* vif num outgoing multicasts */
97df8bae1dSRodney W. Grimes 	u_char	imo_multicast_ttl;	/* TTL for outgoing multicasts */
98df8bae1dSRodney W. Grimes 	u_char	imo_multicast_loop;	/* 1 => hear sends if a member */
9959854ecfSHans Petter Selasky 	struct ip_mfilter_head imo_head; /* group membership list */
100df8bae1dSRodney W. Grimes };
10159854ecfSHans Petter Selasky #else
10259854ecfSHans Petter Selasky struct ip_moptions;
10359854ecfSHans Petter Selasky #endif
104df8bae1dSRodney W. Grimes 
105df8bae1dSRodney W. Grimes struct	ipstat {
1065923c293SGleb Smirnoff 	uint64_t ips_total;		/* total packets received */
1075923c293SGleb Smirnoff 	uint64_t ips_badsum;		/* checksum bad */
1085923c293SGleb Smirnoff 	uint64_t ips_tooshort;		/* packet too short */
1095923c293SGleb Smirnoff 	uint64_t ips_toosmall;		/* not enough data */
1105923c293SGleb Smirnoff 	uint64_t ips_badhlen;		/* ip header length < data size */
1115923c293SGleb Smirnoff 	uint64_t ips_badlen;		/* ip length < ip header length */
1125923c293SGleb Smirnoff 	uint64_t ips_fragments;		/* fragments received */
1135923c293SGleb Smirnoff 	uint64_t ips_fragdropped;	/* frags dropped (dups, out of space) */
1145923c293SGleb Smirnoff 	uint64_t ips_fragtimeout;	/* fragments timed out */
1155923c293SGleb Smirnoff 	uint64_t ips_forward;		/* packets forwarded */
1165923c293SGleb Smirnoff 	uint64_t ips_fastforward;	/* packets fast forwarded */
1175923c293SGleb Smirnoff 	uint64_t ips_cantforward;	/* packets rcvd for unreachable dest */
1185923c293SGleb Smirnoff 	uint64_t ips_redirectsent;	/* packets forwarded on same net */
1195923c293SGleb Smirnoff 	uint64_t ips_noproto;		/* unknown or unsupported protocol */
1205923c293SGleb Smirnoff 	uint64_t ips_delivered;		/* datagrams delivered to upper level*/
1215923c293SGleb Smirnoff 	uint64_t ips_localout;		/* total ip packets generated here */
1225923c293SGleb Smirnoff 	uint64_t ips_odropped;		/* lost packets due to nobufs, etc. */
1235923c293SGleb Smirnoff 	uint64_t ips_reassembled;	/* total packets reassembled ok */
1245923c293SGleb Smirnoff 	uint64_t ips_fragmented;	/* datagrams successfully fragmented */
1255923c293SGleb Smirnoff 	uint64_t ips_ofragments;	/* output fragments created */
1265923c293SGleb Smirnoff 	uint64_t ips_cantfrag;		/* don't fragment flag was set, etc. */
1275923c293SGleb Smirnoff 	uint64_t ips_badoptions;		/* error in option processing */
1285923c293SGleb Smirnoff 	uint64_t ips_noroute;		/* packets discarded due to no route */
1295923c293SGleb Smirnoff 	uint64_t ips_badvers;		/* ip version != 4 */
1305923c293SGleb Smirnoff 	uint64_t ips_rawout;		/* total raw ip packets generated */
1315923c293SGleb Smirnoff 	uint64_t ips_toolong;		/* ip length > max ip packet size */
1325923c293SGleb Smirnoff 	uint64_t ips_notmember;		/* multicasts for unregistered grps */
1335923c293SGleb Smirnoff 	uint64_t ips_nogif;		/* no match gif found */
1345923c293SGleb Smirnoff 	uint64_t ips_badaddr;		/* invalid address on header */
135df8bae1dSRodney W. Grimes };
136df8bae1dSRodney W. Grimes 
137664a31e4SPeter Wemm #ifdef _KERNEL
1385914e1eaSBruce Evans 
1395923c293SGleb Smirnoff #include <sys/counter.h>
140eddfbb76SRobert Watson #include <net/vnet.h>
141eddfbb76SRobert Watson 
1425da0521fSAndrey V. Elsukov VNET_PCPUSTAT_DECLARE(struct ipstat, ipstat);
143315e3e38SRobert Watson /*
144315e3e38SRobert Watson  * In-kernel consumers can use these accessor macros directly to update
145315e3e38SRobert Watson  * stats.
146315e3e38SRobert Watson  */
1475da0521fSAndrey V. Elsukov #define	IPSTAT_ADD(name, val)	\
1485da0521fSAndrey V. Elsukov     VNET_PCPUSTAT_ADD(struct ipstat, ipstat, name, (val))
149e3389419SAndrey V. Elsukov #define	IPSTAT_SUB(name, val)	IPSTAT_ADD(name, -(val))
15086425c62SRobert Watson #define	IPSTAT_INC(name)	IPSTAT_ADD(name, 1)
151e3389419SAndrey V. Elsukov #define	IPSTAT_DEC(name)	IPSTAT_SUB(name, 1)
15286425c62SRobert Watson 
153315e3e38SRobert Watson /*
154315e3e38SRobert Watson  * Kernel module consumers must use this accessor macro.
155315e3e38SRobert Watson  */
156315e3e38SRobert Watson void	kmod_ipstat_inc(int statnum);
157315e3e38SRobert Watson #define	KMOD_IPSTAT_INC(name)	\
1585da0521fSAndrey V. Elsukov     kmod_ipstat_inc(offsetof(struct ipstat, name) / sizeof(uint64_t))
159315e3e38SRobert Watson void	kmod_ipstat_dec(int statnum);
160315e3e38SRobert Watson #define	KMOD_IPSTAT_DEC(name)	\
1615da0521fSAndrey V. Elsukov     kmod_ipstat_dec(offsetof(struct ipstat, name) / sizeof(uint64_t))
162315e3e38SRobert Watson 
16371498f30SBruce M Simpson /* flags passed to ip_output as last parameter */
16471498f30SBruce M Simpson #define	IP_FORWARDING		0x1		/* most of ip header exists */
16571498f30SBruce M Simpson #define	IP_RAWOUTPUT		0x2		/* raw ip header exists */
16671498f30SBruce M Simpson #define	IP_SENDONES		0x4		/* send all-ones broadcast */
16771498f30SBruce M Simpson #define	IP_SENDTOIF		0x8		/* send on specific ifnet */
168beaa515eSAndre Oppermann #define IP_ROUTETOIF		SO_DONTROUTE	/* 0x10 bypass routing tables */
169beaa515eSAndre Oppermann #define IP_ALLOWBROADCAST	SO_BROADCAST	/* 0x20 can send broadcast packets */
170061a4b4cSAdrian Chadd #define	IP_NODEFAULTFLOWID	0x40		/* Don't set the flowid from inp */
17135c7bb34SRandall Stewart #define IP_NO_SND_TAG_RL	0x80		/* Don't send down the ratelimit tag */
172df8bae1dSRodney W. Grimes 
1732fcb030aSAndrew Thompson #ifdef __NO_STRICT_ALIGNMENT
1742fcb030aSAndrew Thompson #define IP_HDR_ALIGNED_P(ip)	1
1752fcb030aSAndrew Thompson #else
1762fcb030aSAndrew Thompson #define IP_HDR_ALIGNED_P(ip)	((((intptr_t) (ip)) & 3) == 0)
1772fcb030aSAndrew Thompson #endif
1782fcb030aSAndrew Thompson 
179cfe8b629SGarrett Wollman struct ip;
180ca5d5e73SBruce Evans struct inpcb;
1815e26bd9aSBruce Evans struct route;
182cfe8b629SGarrett Wollman struct sockopt;
18328c00100SMatt Macy struct inpcbinfo;
1845e26bd9aSBruce Evans 
185eddfbb76SRobert Watson VNET_DECLARE(int, ip_defttl);			/* default IP ttl */
186eddfbb76SRobert Watson VNET_DECLARE(int, ipforwarding);		/* ip forwarding */
1878ad114c0SGeorge V. Neville-Neil VNET_DECLARE(int, ipsendredirects);
188c76ff708SAndre Oppermann #ifdef IPSTEALTH
189eddfbb76SRobert Watson VNET_DECLARE(int, ipstealth);			/* stealth forwarding */
190c76ff708SAndre Oppermann #endif
191eddfbb76SRobert Watson VNET_DECLARE(struct socket *, ip_rsvpd);	/* reservation protocol daemon*/
192eddfbb76SRobert Watson VNET_DECLARE(struct socket *, ip_mrouter);	/* multicast routing daemon */
19382cea7e6SBjoern A. Zeeb extern int	(*legal_vif_num)(int);
19482cea7e6SBjoern A. Zeeb extern u_long	(*ip_mcast_src)(int);
19582cea7e6SBjoern A. Zeeb VNET_DECLARE(int, rsvp_on);
1963c2824b9SAlexander V. Chernikov VNET_DECLARE(int, drop_redirect);
197eddfbb76SRobert Watson 
1981e77c105SRobert Watson #define	V_ip_id			VNET(ip_id)
1991e77c105SRobert Watson #define	V_ip_defttl		VNET(ip_defttl)
2001e77c105SRobert Watson #define	V_ipforwarding		VNET(ipforwarding)
2018ad114c0SGeorge V. Neville-Neil #define	V_ipsendredirects	VNET(ipsendredirects)
202eddfbb76SRobert Watson #ifdef IPSTEALTH
2031e77c105SRobert Watson #define	V_ipstealth		VNET(ipstealth)
204eddfbb76SRobert Watson #endif
2051e77c105SRobert Watson #define	V_ip_rsvpd		VNET(ip_rsvpd)
2061e77c105SRobert Watson #define	V_ip_mrouter		VNET(ip_mrouter)
20782cea7e6SBjoern A. Zeeb #define	V_rsvp_on		VNET(rsvp_on)
2083c2824b9SAlexander V. Chernikov #define	V_drop_redirect		VNET(drop_redirect)
209df8bae1dSRodney W. Grimes 
210cb6bb230SMatt Macy void	inp_freemoptions(struct ip_moptions *);
21171498f30SBruce M Simpson int	inp_getmoptions(struct inpcb *, struct sockopt *);
21271498f30SBruce M Simpson int	inp_setmoptions(struct inpcb *, struct sockopt *);
21371498f30SBruce M Simpson 
2144d77a549SAlfred Perlstein int	ip_ctloutput(struct socket *, struct sockopt *sopt);
2151e78ac21SJeffrey Hsu int	ip_fragment(struct ip *ip, struct mbuf **m_frag, int mtu,
216078468edSGleb Smirnoff 	    u_long if_hwassist_flags);
217ef39adf0SAndre Oppermann void	ip_forward(struct mbuf *m, int srcrt);
218beaa515eSAndre Oppermann extern int
219beaa515eSAndre Oppermann 	(*ip_mforward)(struct ip *, struct ifnet *, struct mbuf *,
2204d77a549SAlfred Perlstein 	    struct ip_moptions *);
2214d77a549SAlfred Perlstein int	ip_output(struct mbuf *,
2225d846453SSam Leffler 	    struct mbuf *, struct route *, int, struct ip_moptions *,
2235d846453SSam Leffler 	    struct inpcb *);
2249b932e9eSAndre Oppermann struct mbuf *
2259b932e9eSAndre Oppermann 	ip_reass(struct mbuf *);
2264d77a549SAlfred Perlstein void	ip_savecontrol(struct inpcb *, struct mbuf **, struct ip *,
2274d77a549SAlfred Perlstein 	    struct mbuf *);
2286d947416SGleb Smirnoff void	ip_fillid(struct ip *);
2294d77a549SAlfred Perlstein int	rip_ctloutput(struct socket *, struct sockopt *);
2308f5a8818SKevin Lo int	ipip_input(struct mbuf **, int *, int);
2318f5a8818SKevin Lo int	rsvp_input(struct mbuf **, int *, int);
23278b1fc05SGleb Smirnoff 
2334d77a549SAlfred Perlstein int	ip_rsvp_init(struct socket *);
2344d77a549SAlfred Perlstein int	ip_rsvp_done(void);
235bbb4330bSLuigi Rizzo extern int	(*ip_rsvp_vif)(struct socket *, struct sockopt *);
236bbb4330bSLuigi Rizzo extern void	(*ip_rsvp_force_done)(struct socket *);
2378f5a8818SKevin Lo extern int	(*rsvp_input_p)(struct mbuf **, int *, int);
238bbb4330bSLuigi Rizzo 
23924b96f35SGleb Smirnoff typedef int	ipproto_input_t(struct mbuf **, int *, int);
240fcb3f813SGleb Smirnoff struct icmp;
241fcb3f813SGleb Smirnoff typedef void	ipproto_ctlinput_t(struct icmp *);
24224b96f35SGleb Smirnoff int	ipproto_register(uint8_t, ipproto_input_t, ipproto_ctlinput_t);
24324b96f35SGleb Smirnoff int	ipproto_unregister(uint8_t);
24424b96f35SGleb Smirnoff #define	IPPROTO_REGISTER(prot, input, ctl)	do {			\
24524b96f35SGleb Smirnoff 	int error __diagused;						\
24624b96f35SGleb Smirnoff 	error = ipproto_register(prot, input, ctl);			\
24724b96f35SGleb Smirnoff 	MPASS(error == 0);						\
24824b96f35SGleb Smirnoff } while (0)
24924b96f35SGleb Smirnoff 
25043d39ca7SGleb Smirnoff ipproto_input_t		rip_input;
25143d39ca7SGleb Smirnoff ipproto_ctlinput_t	rip_ctlinput;
25243d39ca7SGleb Smirnoff 
253b252313fSGleb Smirnoff VNET_DECLARE(struct pfil_head *, inet_pfil_head);
254b252313fSGleb Smirnoff #define	V_inet_pfil_head	VNET(inet_pfil_head)
255b252313fSGleb Smirnoff #define	PFIL_INET_NAME		"inet"
256134ea224SSam Leffler 
2575ab15157SDoug Rabson VNET_DECLARE(struct pfil_head *, inet_local_pfil_head);
2585ab15157SDoug Rabson #define	V_inet_local_pfil_head	VNET(inet_local_pfil_head)
2595ab15157SDoug Rabson #define	PFIL_INET_LOCAL_NAME	"inet-local"
2605ab15157SDoug Rabson 
2611c238475SJonathan Lemon void	in_delayed_cksum(struct mbuf *m);
2621c238475SJonathan Lemon 
263b2019e17SLuigi Rizzo /* Hooks for ipfw, dummynet, divert etc. Most are declared in raw_ip.c */
264b2019e17SLuigi Rizzo /*
265b2019e17SLuigi Rizzo  * Reference to an ipfw or packet filter rule that can be carried
266b2019e17SLuigi Rizzo  * outside critical sections.
267b2019e17SLuigi Rizzo  * A rule is identified by rulenum:rule_id which is ordered.
268b2019e17SLuigi Rizzo  * In version chain_id the rule can be found in slot 'slot', so
269b2019e17SLuigi Rizzo  * we don't need a lookup if chain_id == chain->id.
270b2019e17SLuigi Rizzo  *
271b2019e17SLuigi Rizzo  * On exit from the firewall this structure refers to the rule after
272b2019e17SLuigi Rizzo  * the matching one (slot points to the new rule; rulenum:rule_id-1
273b2019e17SLuigi Rizzo  * is the matching rule), and additional info (e.g. info often contains
274b2019e17SLuigi Rizzo  * the insn argument or tablearg in the low 16 bits, in host format).
275b2019e17SLuigi Rizzo  * On entry, the structure is valid if slot>0, and refers to the starting
276b2019e17SLuigi Rizzo  * rules. 'info' contains the reason for reinject, e.g. divert port,
277b2019e17SLuigi Rizzo  * divert direction, and so on.
278fc727ad6SBoris Lytochkin  *
279fc727ad6SBoris Lytochkin  * Packet Mark is an analogue to ipfw tags with O(1) lookup from mbuf while
280fc727ad6SBoris Lytochkin  * regular tags require a single-linked list traversal. Mark is a 32-bit
281fc727ad6SBoris Lytochkin  * number that can be looked up in a table [with 'number' table-type], matched
282fc727ad6SBoris Lytochkin  * or compared with a number with optional mask applied before comparison.
283fc727ad6SBoris Lytochkin  * Having generic nature, Mark can be used in a variety of needs.
284fc727ad6SBoris Lytochkin  * For example, it could be used as a security group: mark will hold a
285fc727ad6SBoris Lytochkin  * security group id and represent a group of packet flows that shares same
286fc727ad6SBoris Lytochkin  * access control policy.
287fc727ad6SBoris Lytochkin  * O_MASK opcode can match mark value bitwise so one can build a hierarchical
288fc727ad6SBoris Lytochkin  * model designating different meanings for a bit range(s).
289b2019e17SLuigi Rizzo  */
290b2019e17SLuigi Rizzo struct ipfw_rule_ref {
291fc727ad6SBoris Lytochkin /* struct m_tag spans 24 bytes above this point, see mbuf_tags(9) */
292fc727ad6SBoris Lytochkin 	/* spare space just to be save in case struct m_tag grows */
293fc727ad6SBoris Lytochkin /* -- 32 bytes -- */
294b2019e17SLuigi Rizzo 	uint32_t	slot;		/* slot for matching rule	*/
295b2019e17SLuigi Rizzo 	uint32_t	rulenum;	/* matching rule number		*/
296b2019e17SLuigi Rizzo 	uint32_t	rule_id;	/* matching rule id		*/
297b2019e17SLuigi Rizzo 	uint32_t	chain_id;	/* ruleset id			*/
298b2019e17SLuigi Rizzo 	uint32_t	info;		/* see below			*/
299fc727ad6SBoris Lytochkin 	uint32_t	pkt_mark;	/* packet mark			*/
300fc727ad6SBoris Lytochkin 	uint32_t	spare[2];
301fc727ad6SBoris Lytochkin /* -- 64 bytes -- */
302b2019e17SLuigi Rizzo };
303b2019e17SLuigi Rizzo 
304b2019e17SLuigi Rizzo enum {
305b2019e17SLuigi Rizzo 	IPFW_INFO_MASK	= 0x0000ffff,
306b2019e17SLuigi Rizzo 	IPFW_INFO_OUT	= 0x00000000,	/* outgoing, just for convenience */
307b2019e17SLuigi Rizzo 	IPFW_INFO_IN	= 0x80000000,	/* incoming, overloads dir */
308b2019e17SLuigi Rizzo 	IPFW_ONEPASS	= 0x40000000,	/* One-pass, do not reinject */
309b2019e17SLuigi Rizzo 	IPFW_IS_MASK	= 0x30000000,	/* which source ? */
310b2019e17SLuigi Rizzo 	IPFW_IS_DIVERT	= 0x20000000,
311b2019e17SLuigi Rizzo 	IPFW_IS_DUMMYNET =0x10000000,
312a6e8e924SLuigi Rizzo 	IPFW_IS_PIPE	= 0x08000000,	/* pipe=1, queue = 0 */
313b2019e17SLuigi Rizzo };
314b2019e17SLuigi Rizzo #define MTAG_IPFW	1148380143	/* IPFW-tagged cookie */
315b2019e17SLuigi Rizzo #define MTAG_IPFW_RULE	1262273568	/* rule reference */
3169527ec6eSAndrey V. Elsukov #define	MTAG_IPFW_CALL	1308397630	/* call stack */
317b2019e17SLuigi Rizzo 
318115a40c7SLuigi Rizzo struct ip_fw_args;
3190b4b0b0fSJulian Elischer typedef int	(*ip_fw_ctl_ptr_t)(struct sockopt *);
3200b4b0b0fSJulian Elischer VNET_DECLARE(ip_fw_ctl_ptr_t, ip_fw_ctl_ptr);
3210b4b0b0fSJulian Elischer #define	V_ip_fw_ctl_ptr		VNET(ip_fw_ctl_ptr)
3220b4b0b0fSJulian Elischer 
323b2019e17SLuigi Rizzo /* Divert hooks. */
3241830dae3SGleb Smirnoff extern void	(*ip_divert_ptr)(struct mbuf *m, bool incoming);
325b2019e17SLuigi Rizzo /* ng_ipfw hooks -- XXX make it the same as divert and dummynet */
326cef9f220SGleb Smirnoff extern int	(*ng_ipfw_input_p)(struct mbuf **, struct ip_fw_args *, bool);
327115a40c7SLuigi Rizzo extern int	(*ip_dn_ctl_ptr)(struct sockopt *);
328dc0fa4f7SGleb Smirnoff extern int	(*ip_dn_io_ptr)(struct mbuf **, struct ip_fw_args *);
329fabf705fSIgor Ostapenko 
330fabf705fSIgor Ostapenko /* pf specific mtag for divert(4) support */
331c1146e6aSKristof Provost __enum_uint8_decl(pf_mtag_dir) {
332c1146e6aSKristof Provost 	PF_DIVERT_MTAG_DIR_IN = 1,
333c1146e6aSKristof Provost 	PF_DIVERT_MTAG_DIR_OUT = 2
334c1146e6aSKristof Provost };
335fabf705fSIgor Ostapenko struct pf_divert_mtag {
336*b68d2789SIgor Ostapenko 	__enum_uint8(pf_mtag_dir) idir;		/* initial pkt direction */
337c1146e6aSKristof Provost 	union {
338*b68d2789SIgor Ostapenko 		__enum_uint8(pf_mtag_dir) ndir;	/* new dir after re-enter */
339*b68d2789SIgor Ostapenko 		uint16_t port;			/* initial divert(4) port */
340c1146e6aSKristof Provost 	};
341fabf705fSIgor Ostapenko };
342fabf705fSIgor Ostapenko #define MTAG_PF_DIVERT	1262273569
343fabf705fSIgor Ostapenko 
344664a31e4SPeter Wemm #endif /* _KERNEL */
345707f139eSPaul Richards 
3465914e1eaSBruce Evans #endif /* !_NETINET_IP_VAR_H_ */
347