]> git.saurik.com Git - apple/xnu.git/blame - bsd/netinet6/ip6_fw.h
xnu-517.3.15.tar.gz
[apple/xnu.git] / bsd / netinet6 / ip6_fw.h
CommitLineData
9bccf70c
A
1/*
2 * Copyright (c) 2002 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
43866e37 6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
9bccf70c 7 *
43866e37
A
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
9bccf70c
A
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
43866e37
A
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
9bccf70c
A
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
1c79356b
A
25/*
26 * Copyright (c) 1993 Daniel Boulet
27 * Copyright (c) 1994 Ugen J.S.Antsilevich
28 *
29 * Redistribution and use in source forms, with and without modification,
30 * are permitted provided that this entire comment appears intact.
31 *
32 * Redistribution in binary form may occur without any restrictions.
33 * Obviously, it would be nice if you gave credit where credit is due
34 * but requiring it would be too onerous.
35 *
36 * This software is provided ``AS IS'' without any warranties of any kind.
37 *
38 */
39
40#ifndef _IP6_FW_H
41#define _IP6_FW_H
9bccf70c 42#include <sys/appleapiopts.h>
1c79356b
A
43
44#include <net/if.h>
9bccf70c 45
55e303ae 46#define IPV6_FW_CURRENT_API_VERSION 20 /* Version of this API */
9bccf70c 47
1c79356b
A
48
49/*
50 * This union structure identifies an interface, either explicitly
51 * by name or implicitly by IP address. The flags IP_FW_F_IIFNAME
52 * and IP_FW_F_OIFNAME say how to interpret this structure. An
53 * interface unit number of -1 matches any unit number, while an
54 * IP address of 0.0.0.0 indicates matches any interface.
55 *
56 * The receive and transmit interfaces are only compared against the
57 * the packet if the corresponding bit (IP_FW_F_IIFACE or IP_FW_F_OIFACE)
58 * is set. Note some packets lack a receive or transmit interface
59 * (in which case the missing "interface" never matches).
60 */
61
62union ip6_fw_if {
63 struct in6_addr fu_via_ip6; /* Specified by IPv6 address */
64 struct { /* Specified by interface name */
9bccf70c
A
65#define IP6FW_IFNLEN IFNAMSIZ
66 char name[IP6FW_IFNLEN];
1c79356b
A
67 short unit; /* -1 means match any unit */
68 } fu_via_if;
69};
70
71/*
72 * Format of an IP firewall descriptor
73 *
74 * fw_src, fw_dst, fw_smsk, fw_dmsk are always stored in network byte order.
75 * fw_flg and fw_n*p are stored in host byte order (of course).
76 * Port numbers are stored in HOST byte order.
77 * Warning: setsockopt() will fail if sizeof(struct ip_fw) > MLEN (108)
78 */
79
80struct ip6_fw {
9bccf70c
A
81 u_int32_t version; /* Version of this structure. Should always be */
82 /* set to IP6_FW_CURRENT_API_VERSION by clients. */
83 void *context; /* Context that is usable by user processes to */
84 /* identify this rule. */
1c79356b
A
85 u_long fw_pcnt,fw_bcnt; /* Packet and byte counters */
86 struct in6_addr fw_src, fw_dst; /* Source and destination IPv6 addr */
87 struct in6_addr fw_smsk, fw_dmsk; /* Mask for src and dest IPv6 addr */
88 u_short fw_number; /* Rule number */
89 u_short fw_flg; /* Flags word */
90#define IPV6_FW_MAX_PORTS 10 /* A reasonable maximum */
9bccf70c 91 u_int fw_ipflg; /* IP flags word */
1c79356b
A
92 u_short fw_pts[IPV6_FW_MAX_PORTS]; /* Array of port numbers to match */
93 u_char fw_ip6opt,fw_ip6nopt; /* IPv6 options set/unset */
94 u_char fw_tcpf,fw_tcpnf; /* TCP flags set/unset */
9bccf70c 95#define IPV6_FW_ICMPTYPES_DIM (256 / (sizeof(unsigned) * 8))
1c79356b
A
96 unsigned fw_icmp6types[IPV6_FW_ICMPTYPES_DIM]; /* ICMP types bitmap */
97 long timestamp; /* timestamp (tv_sec) of last match */
98 union ip6_fw_if fw_in_if, fw_out_if;/* Incoming and outgoing interfaces */
99 union {
100 u_short fu_divert_port; /* Divert/tee port (options IP6DIVERT) */
101 u_short fu_skipto_rule; /* SKIPTO command rule number */
102 u_short fu_reject_code; /* REJECT response code */
103 } fw_un;
104 u_char fw_prot; /* IPv6 protocol */
105 u_char fw_nports; /* N'of src ports and # of dst ports */
106 /* in ports array (dst ports follow */
107 /* src ports; max of 10 ports in all; */
108 /* count of 0 means match all ports) */
109};
110
111#define IPV6_FW_GETNSRCP(rule) ((rule)->fw_nports & 0x0f)
112#define IPV6_FW_SETNSRCP(rule, n) do { \
113 (rule)->fw_nports &= ~0x0f; \
114 (rule)->fw_nports |= (n); \
115 } while (0)
116#define IPV6_FW_GETNDSTP(rule) ((rule)->fw_nports >> 4)
117#define IPV6_FW_SETNDSTP(rule, n) do { \
118 (rule)->fw_nports &= ~0xf0; \
119 (rule)->fw_nports |= (n) << 4;\
120 } while (0)
121
122#define fw_divert_port fw_un.fu_divert_port
123#define fw_skipto_rule fw_un.fu_skipto_rule
124#define fw_reject_code fw_un.fu_reject_code
125
126struct ip6_fw_chain {
127 LIST_ENTRY(ip6_fw_chain) chain;
128 struct ip6_fw *rule;
129};
130
131/*
132 * Values for "flags" field .
133 */
134#define IPV6_FW_F_IN 0x0001 /* Check inbound packets */
135#define IPV6_FW_F_OUT 0x0002 /* Check outbound packets */
136#define IPV6_FW_F_IIFACE 0x0004 /* Apply inbound interface test */
137#define IPV6_FW_F_OIFACE 0x0008 /* Apply outbound interface test */
138
139#define IPV6_FW_F_COMMAND 0x0070 /* Mask for type of chain entry: */
140#define IPV6_FW_F_DENY 0x0000 /* This is a deny rule */
141#define IPV6_FW_F_REJECT 0x0010 /* Deny and send a response packet */
142#define IPV6_FW_F_ACCEPT 0x0020 /* This is an accept rule */
143#define IPV6_FW_F_COUNT 0x0030 /* This is a count rule */
144#define IPV6_FW_F_DIVERT 0x0040 /* This is a divert rule */
145#define IPV6_FW_F_TEE 0x0050 /* This is a tee rule */
146#define IPV6_FW_F_SKIPTO 0x0060 /* This is a skipto rule */
147
148#define IPV6_FW_F_PRN 0x0080 /* Print if this rule matches */
149
150#define IPV6_FW_F_SRNG 0x0100 /* The first two src ports are a min *
151 * and max range (stored in host byte *
152 * order). */
153
154#define IPV6_FW_F_DRNG 0x0200 /* The first two dst ports are a min *
155 * and max range (stored in host byte *
156 * order). */
157
158#define IPV6_FW_F_IIFNAME 0x0400 /* In interface by name/unit (not IP) */
159#define IPV6_FW_F_OIFNAME 0x0800 /* Out interface by name/unit (not IP) */
160
161#define IPV6_FW_F_INVSRC 0x1000 /* Invert sense of src check */
162#define IPV6_FW_F_INVDST 0x2000 /* Invert sense of dst check */
163
164#define IPV6_FW_F_FRAG 0x4000 /* Fragment */
165
166#define IPV6_FW_F_ICMPBIT 0x8000 /* ICMP type bitmap is valid */
167
168#define IPV6_FW_F_MASK 0xFFFF /* All possible flag bits mask */
169
9bccf70c
A
170/*
171 * Flags for the 'fw_ipflg' field, for comparing values of ip and its protocols. */
172#define IPV6_FW_IF_TCPEST 0x00000020 /* established TCP connection */
173#define IPV6_FW_IF_TCPMSK 0x00000020 /* mask of all TCP values */
174
1c79356b
A
175/*
176 * For backwards compatibility with rules specifying "via iface" but
177 * not restricted to only "in" or "out" packets, we define this combination
178 * of bits to represent this configuration.
179 */
180
181#define IF6_FW_F_VIAHACK (IPV6_FW_F_IN|IPV6_FW_F_OUT|IPV6_FW_F_IIFACE|IPV6_FW_F_OIFACE)
182
183/*
184 * Definitions for REJECT response codes.
185 * Values less than 256 correspond to ICMP unreachable codes.
186 */
187#define IPV6_FW_REJECT_RST 0x0100 /* TCP packets: send RST */
188
189/*
190 * Definitions for IPv6 option names.
191 */
192#define IPV6_FW_IP6OPT_HOPOPT 0x01
193#define IPV6_FW_IP6OPT_ROUTE 0x02
194#define IPV6_FW_IP6OPT_FRAG 0x04
195#define IPV6_FW_IP6OPT_ESP 0x08
196#define IPV6_FW_IP6OPT_AH 0x10
197#define IPV6_FW_IP6OPT_NONXT 0x20
198#define IPV6_FW_IP6OPT_OPTS 0x40
199
200/*
201 * Definitions for TCP flags.
202 */
203#define IPV6_FW_TCPF_FIN TH_FIN
204#define IPV6_FW_TCPF_SYN TH_SYN
205#define IPV6_FW_TCPF_RST TH_RST
206#define IPV6_FW_TCPF_PSH TH_PUSH
207#define IPV6_FW_TCPF_ACK TH_ACK
208#define IPV6_FW_TCPF_URG TH_URG
1c79356b
A
209
210/*
211 * Main firewall chains definitions and global var's definitions.
212 */
9bccf70c 213#ifdef KERNEL
55e303ae 214#ifdef __APPLE_API_PRIVATE
9bccf70c
A
215
216#define M_IP6FW M_IPFW
217
1c79356b
A
218
219/*
220 * Function definitions.
221 */
222void ip6_fw_init(void);
223
224/* Firewall hooks */
225struct ip6_hdr;
55e303ae 226struct sockopt;
1c79356b
A
227typedef int ip6_fw_chk_t __P((struct ip6_hdr**, struct ifnet*,
228 u_short *, struct mbuf**));
55e303ae 229typedef int ip6_fw_ctl_t __P((struct sockopt *));
1c79356b
A
230extern ip6_fw_chk_t *ip6_fw_chk_ptr;
231extern ip6_fw_ctl_t *ip6_fw_ctl_ptr;
9bccf70c 232extern int ip6_fw_enable;
1c79356b 233
9bccf70c 234#endif /* __APPLE_API_PRIVATE */
55e303ae 235#endif /* KERNEL */
1c79356b
A
236
237#endif /* _IP6_FW_H */