]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/ip6_fw.h
2 * Copyright (c) 2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1993 Daniel Boulet
30 * Copyright (c) 1994 Ugen J.S.Antsilevich
32 * Redistribution and use in source forms, with and without modification,
33 * are permitted provided that this entire comment appears intact.
35 * Redistribution in binary form may occur without any restrictions.
36 * Obviously, it would be nice if you gave credit where credit is due
37 * but requiring it would be too onerous.
39 * This software is provided ``AS IS'' without any warranties of any kind.
47 * Define IPv6 Firewall event subclass, and associated events.
51 @defined KEV_IP6FW_SUBCLASS
52 @discussion The kernel event subclass for IPv6 Firewall.
54 #define KEV_IP6FW_SUBCLASS 2
57 @defined KEV_IP6FW_ADD
58 @discussion The event code indicating a rule has been added.
60 #define KEV_IP6FW_ADD 1
63 @defined KEV_IP6FW_DEL
64 @discussion The event code indicating a rule has been removed.
66 #define KEV_IP6FW_DEL 2
69 @defined KEV_IP6FW_FLUSH
70 @discussion The event code indicating the rule set has been flushed.
72 #define KEV_IP6FW_FLUSH 3
75 @defined KEV_IP6FW_FLUSH
76 @discussion The event code indicating the enable flag has been changed
78 #define KEV_IP6FW_ENABLE 4
84 #include <sys/appleapiopts.h>
88 #define IPV6_FW_CURRENT_API_VERSION 20 /* Version of this API */
92 * This union structure identifies an interface, either explicitly
93 * by name or implicitly by IP address. The flags IP_FW_F_IIFNAME
94 * and IP_FW_F_OIFNAME say how to interpret this structure. An
95 * interface unit number of -1 matches any unit number, while an
96 * IP address of 0.0.0.0 indicates matches any interface.
98 * The receive and transmit interfaces are only compared against the
99 * the packet if the corresponding bit (IP_FW_F_IIFACE or IP_FW_F_OIFACE)
100 * is set. Note some packets lack a receive or transmit interface
101 * (in which case the missing "interface" never matches).
105 struct in6_addr fu_via_ip6
; /* Specified by IPv6 address */
106 struct { /* Specified by interface name */
107 #define IP6FW_IFNLEN IFNAMSIZ
108 char name
[IP6FW_IFNLEN
];
109 short unit
; /* -1 means match any unit */
114 * Format of an IP firewall descriptor
116 * fw_src, fw_dst, fw_smsk, fw_dmsk are always stored in network byte order.
117 * fw_flg and fw_n*p are stored in host byte order (of course).
118 * Port numbers are stored in HOST byte order.
119 * Warning: setsockopt() will fail if sizeof(struct ip_fw) > MLEN (108)
123 u_int32_t version
; /* Version of this structure. Should always be */
124 /* set to IP6_FW_CURRENT_API_VERSION by clients. */
125 void *context
; /* Context that is usable by user processes to */
126 /* identify this rule. */
127 u_long fw_pcnt
,fw_bcnt
; /* Packet and byte counters */
128 struct in6_addr fw_src
, fw_dst
; /* Source and destination IPv6 addr */
129 struct in6_addr fw_smsk
, fw_dmsk
; /* Mask for src and dest IPv6 addr */
130 u_short fw_number
; /* Rule number */
131 u_short fw_flg
; /* Flags word */
132 #define IPV6_FW_MAX_PORTS 10 /* A reasonable maximum */
133 u_int fw_ipflg
; /* IP flags word */
134 u_short fw_pts
[IPV6_FW_MAX_PORTS
]; /* Array of port numbers to match */
135 u_char fw_ip6opt
,fw_ip6nopt
; /* IPv6 options set/unset */
136 u_char fw_tcpf
,fw_tcpnf
; /* TCP flags set/unset */
137 #define IPV6_FW_ICMPTYPES_DIM (256 / (sizeof(unsigned) * 8))
138 unsigned fw_icmp6types
[IPV6_FW_ICMPTYPES_DIM
]; /* ICMP types bitmap */
139 long timestamp
; /* timestamp (tv_sec) of last match */
140 union ip6_fw_if fw_in_if
, fw_out_if
;/* Incoming and outgoing interfaces */
142 u_short fu_divert_port
; /* Divert/tee port (options IP6DIVERT) */
143 u_short fu_skipto_rule
; /* SKIPTO command rule number */
144 u_short fu_reject_code
; /* REJECT response code */
146 u_char fw_prot
; /* IPv6 protocol */
147 u_char fw_nports
; /* N'of src ports and # of dst ports */
148 /* in ports array (dst ports follow */
149 /* src ports; max of 10 ports in all; */
150 /* count of 0 means match all ports) */
153 #define IPV6_FW_GETNSRCP(rule) ((rule)->fw_nports & 0x0f)
154 #define IPV6_FW_SETNSRCP(rule, n) do { \
155 (rule)->fw_nports &= ~0x0f; \
156 (rule)->fw_nports |= (n); \
158 #define IPV6_FW_GETNDSTP(rule) ((rule)->fw_nports >> 4)
159 #define IPV6_FW_SETNDSTP(rule, n) do { \
160 (rule)->fw_nports &= ~0xf0; \
161 (rule)->fw_nports |= (n) << 4;\
164 #define fw_divert_port fw_un.fu_divert_port
165 #define fw_skipto_rule fw_un.fu_skipto_rule
166 #define fw_reject_code fw_un.fu_reject_code
168 struct ip6_fw_chain
{
169 LIST_ENTRY(ip6_fw_chain
) chain
;
174 * Values for "flags" field .
176 #define IPV6_FW_F_IN 0x0001 /* Check inbound packets */
177 #define IPV6_FW_F_OUT 0x0002 /* Check outbound packets */
178 #define IPV6_FW_F_IIFACE 0x0004 /* Apply inbound interface test */
179 #define IPV6_FW_F_OIFACE 0x0008 /* Apply outbound interface test */
181 #define IPV6_FW_F_COMMAND 0x0070 /* Mask for type of chain entry: */
182 #define IPV6_FW_F_DENY 0x0000 /* This is a deny rule */
183 #define IPV6_FW_F_REJECT 0x0010 /* Deny and send a response packet */
184 #define IPV6_FW_F_ACCEPT 0x0020 /* This is an accept rule */
185 #define IPV6_FW_F_COUNT 0x0030 /* This is a count rule */
186 #define IPV6_FW_F_DIVERT 0x0040 /* This is a divert rule */
187 #define IPV6_FW_F_TEE 0x0050 /* This is a tee rule */
188 #define IPV6_FW_F_SKIPTO 0x0060 /* This is a skipto rule */
190 #define IPV6_FW_F_PRN 0x0080 /* Print if this rule matches */
192 #define IPV6_FW_F_SRNG 0x0100 /* The first two src ports are a min *
193 * and max range (stored in host byte *
196 #define IPV6_FW_F_DRNG 0x0200 /* The first two dst ports are a min *
197 * and max range (stored in host byte *
200 #define IPV6_FW_F_IIFNAME 0x0400 /* In interface by name/unit (not IP) */
201 #define IPV6_FW_F_OIFNAME 0x0800 /* Out interface by name/unit (not IP) */
203 #define IPV6_FW_F_INVSRC 0x1000 /* Invert sense of src check */
204 #define IPV6_FW_F_INVDST 0x2000 /* Invert sense of dst check */
206 #define IPV6_FW_F_FRAG 0x4000 /* Fragment */
208 #define IPV6_FW_F_ICMPBIT 0x8000 /* ICMP type bitmap is valid */
210 #define IPV6_FW_F_MASK 0xFFFF /* All possible flag bits mask */
213 * Flags for the 'fw_ipflg' field, for comparing values of ip and its protocols. */
214 #define IPV6_FW_IF_TCPEST 0x00000020 /* established TCP connection */
215 #define IPV6_FW_IF_TCPMSK 0x00000020 /* mask of all TCP values */
218 * For backwards compatibility with rules specifying "via iface" but
219 * not restricted to only "in" or "out" packets, we define this combination
220 * of bits to represent this configuration.
223 #define IF6_FW_F_VIAHACK (IPV6_FW_F_IN|IPV6_FW_F_OUT|IPV6_FW_F_IIFACE|IPV6_FW_F_OIFACE)
226 * Definitions for REJECT response codes.
227 * Values less than 256 correspond to ICMP unreachable codes.
229 #define IPV6_FW_REJECT_RST 0x0100 /* TCP packets: send RST */
232 * Definitions for IPv6 option names.
234 #define IPV6_FW_IP6OPT_HOPOPT 0x01
235 #define IPV6_FW_IP6OPT_ROUTE 0x02
236 #define IPV6_FW_IP6OPT_FRAG 0x04
237 #define IPV6_FW_IP6OPT_ESP 0x08
238 #define IPV6_FW_IP6OPT_AH 0x10
239 #define IPV6_FW_IP6OPT_NONXT 0x20
240 #define IPV6_FW_IP6OPT_OPTS 0x40
243 * Definitions for TCP flags.
245 #define IPV6_FW_TCPF_FIN TH_FIN
246 #define IPV6_FW_TCPF_SYN TH_SYN
247 #define IPV6_FW_TCPF_RST TH_RST
248 #define IPV6_FW_TCPF_PSH TH_PUSH
249 #define IPV6_FW_TCPF_ACK TH_ACK
250 #define IPV6_FW_TCPF_URG TH_URG
253 * Main firewall chains definitions and global var's definitions.
255 #ifdef KERNEL_PRIVATE
257 #define M_IP6FW M_IPFW
261 * Function definitions.
263 void ip6_fw_init(void);
268 typedef int ip6_fw_chk_t(struct ip6_hdr
**, struct ifnet
*,
269 u_short
*, struct mbuf
**);
270 typedef int ip6_fw_ctl_t(struct sockopt
*);
271 extern ip6_fw_chk_t
*ip6_fw_chk_ptr
;
272 extern ip6_fw_ctl_t
*ip6_fw_ctl_ptr
;
273 extern int ip6_fw_enable
;
275 #endif /* KERNEL_PRIVATE */
277 #endif /* !__LP64__ */
278 #endif /* _IP6_FW_H */