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