]>
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_LICENSE_HEADER_START@
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.
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
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1993 Daniel Boulet
24 * Copyright (c) 1994 Ugen J.S.Antsilevich
26 * Redistribution and use in source forms, with and without modification,
27 * are permitted provided that this entire comment appears intact.
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.
33 * This software is provided ``AS IS'' without any warranties of any kind.
39 #include <sys/appleapiopts.h>
43 #define IPV6_FW_CURRENT_API_VERSION 20 /* Version of this API */
47 * This union structure identifies an interface, either explicitly
48 * by name or implicitly by IP address. The flags IP_FW_F_IIFNAME
49 * and IP_FW_F_OIFNAME say how to interpret this structure. An
50 * interface unit number of -1 matches any unit number, while an
51 * IP address of 0.0.0.0 indicates matches any interface.
53 * The receive and transmit interfaces are only compared against the
54 * the packet if the corresponding bit (IP_FW_F_IIFACE or IP_FW_F_OIFACE)
55 * is set. Note some packets lack a receive or transmit interface
56 * (in which case the missing "interface" never matches).
60 struct in6_addr fu_via_ip6
; /* Specified by IPv6 address */
61 struct { /* Specified by interface name */
62 #define IP6FW_IFNLEN IFNAMSIZ
63 char name
[IP6FW_IFNLEN
];
64 short unit
; /* -1 means match any unit */
69 * Format of an IP firewall descriptor
71 * fw_src, fw_dst, fw_smsk, fw_dmsk are always stored in network byte order.
72 * fw_flg and fw_n*p are stored in host byte order (of course).
73 * Port numbers are stored in HOST byte order.
74 * Warning: setsockopt() will fail if sizeof(struct ip_fw) > MLEN (108)
78 u_int32_t version
; /* Version of this structure. Should always be */
79 /* set to IP6_FW_CURRENT_API_VERSION by clients. */
80 void *context
; /* Context that is usable by user processes to */
81 /* identify this rule. */
82 u_long fw_pcnt
,fw_bcnt
; /* Packet and byte counters */
83 struct in6_addr fw_src
, fw_dst
; /* Source and destination IPv6 addr */
84 struct in6_addr fw_smsk
, fw_dmsk
; /* Mask for src and dest IPv6 addr */
85 u_short fw_number
; /* Rule number */
86 u_short fw_flg
; /* Flags word */
87 #define IPV6_FW_MAX_PORTS 10 /* A reasonable maximum */
88 u_int fw_ipflg
; /* IP flags word */
89 u_short fw_pts
[IPV6_FW_MAX_PORTS
]; /* Array of port numbers to match */
90 u_char fw_ip6opt
,fw_ip6nopt
; /* IPv6 options set/unset */
91 u_char fw_tcpf
,fw_tcpnf
; /* TCP flags set/unset */
92 #define IPV6_FW_ICMPTYPES_DIM (256 / (sizeof(unsigned) * 8))
93 unsigned fw_icmp6types
[IPV6_FW_ICMPTYPES_DIM
]; /* ICMP types bitmap */
94 long timestamp
; /* timestamp (tv_sec) of last match */
95 union ip6_fw_if fw_in_if
, fw_out_if
;/* Incoming and outgoing interfaces */
97 u_short fu_divert_port
; /* Divert/tee port (options IP6DIVERT) */
98 u_short fu_skipto_rule
; /* SKIPTO command rule number */
99 u_short fu_reject_code
; /* REJECT response code */
101 u_char fw_prot
; /* IPv6 protocol */
102 u_char fw_nports
; /* N'of src ports and # of dst ports */
103 /* in ports array (dst ports follow */
104 /* src ports; max of 10 ports in all; */
105 /* count of 0 means match all ports) */
108 #define IPV6_FW_GETNSRCP(rule) ((rule)->fw_nports & 0x0f)
109 #define IPV6_FW_SETNSRCP(rule, n) do { \
110 (rule)->fw_nports &= ~0x0f; \
111 (rule)->fw_nports |= (n); \
113 #define IPV6_FW_GETNDSTP(rule) ((rule)->fw_nports >> 4)
114 #define IPV6_FW_SETNDSTP(rule, n) do { \
115 (rule)->fw_nports &= ~0xf0; \
116 (rule)->fw_nports |= (n) << 4;\
119 #define fw_divert_port fw_un.fu_divert_port
120 #define fw_skipto_rule fw_un.fu_skipto_rule
121 #define fw_reject_code fw_un.fu_reject_code
123 struct ip6_fw_chain
{
124 LIST_ENTRY(ip6_fw_chain
) chain
;
129 * Values for "flags" field .
131 #define IPV6_FW_F_IN 0x0001 /* Check inbound packets */
132 #define IPV6_FW_F_OUT 0x0002 /* Check outbound packets */
133 #define IPV6_FW_F_IIFACE 0x0004 /* Apply inbound interface test */
134 #define IPV6_FW_F_OIFACE 0x0008 /* Apply outbound interface test */
136 #define IPV6_FW_F_COMMAND 0x0070 /* Mask for type of chain entry: */
137 #define IPV6_FW_F_DENY 0x0000 /* This is a deny rule */
138 #define IPV6_FW_F_REJECT 0x0010 /* Deny and send a response packet */
139 #define IPV6_FW_F_ACCEPT 0x0020 /* This is an accept rule */
140 #define IPV6_FW_F_COUNT 0x0030 /* This is a count rule */
141 #define IPV6_FW_F_DIVERT 0x0040 /* This is a divert rule */
142 #define IPV6_FW_F_TEE 0x0050 /* This is a tee rule */
143 #define IPV6_FW_F_SKIPTO 0x0060 /* This is a skipto rule */
145 #define IPV6_FW_F_PRN 0x0080 /* Print if this rule matches */
147 #define IPV6_FW_F_SRNG 0x0100 /* The first two src ports are a min *
148 * and max range (stored in host byte *
151 #define IPV6_FW_F_DRNG 0x0200 /* The first two dst ports are a min *
152 * and max range (stored in host byte *
155 #define IPV6_FW_F_IIFNAME 0x0400 /* In interface by name/unit (not IP) */
156 #define IPV6_FW_F_OIFNAME 0x0800 /* Out interface by name/unit (not IP) */
158 #define IPV6_FW_F_INVSRC 0x1000 /* Invert sense of src check */
159 #define IPV6_FW_F_INVDST 0x2000 /* Invert sense of dst check */
161 #define IPV6_FW_F_FRAG 0x4000 /* Fragment */
163 #define IPV6_FW_F_ICMPBIT 0x8000 /* ICMP type bitmap is valid */
165 #define IPV6_FW_F_MASK 0xFFFF /* All possible flag bits mask */
168 * Flags for the 'fw_ipflg' field, for comparing values of ip and its protocols. */
169 #define IPV6_FW_IF_TCPEST 0x00000020 /* established TCP connection */
170 #define IPV6_FW_IF_TCPMSK 0x00000020 /* mask of all TCP values */
173 * For backwards compatibility with rules specifying "via iface" but
174 * not restricted to only "in" or "out" packets, we define this combination
175 * of bits to represent this configuration.
178 #define IF6_FW_F_VIAHACK (IPV6_FW_F_IN|IPV6_FW_F_OUT|IPV6_FW_F_IIFACE|IPV6_FW_F_OIFACE)
181 * Definitions for REJECT response codes.
182 * Values less than 256 correspond to ICMP unreachable codes.
184 #define IPV6_FW_REJECT_RST 0x0100 /* TCP packets: send RST */
187 * Definitions for IPv6 option names.
189 #define IPV6_FW_IP6OPT_HOPOPT 0x01
190 #define IPV6_FW_IP6OPT_ROUTE 0x02
191 #define IPV6_FW_IP6OPT_FRAG 0x04
192 #define IPV6_FW_IP6OPT_ESP 0x08
193 #define IPV6_FW_IP6OPT_AH 0x10
194 #define IPV6_FW_IP6OPT_NONXT 0x20
195 #define IPV6_FW_IP6OPT_OPTS 0x40
198 * Definitions for TCP flags.
200 #define IPV6_FW_TCPF_FIN TH_FIN
201 #define IPV6_FW_TCPF_SYN TH_SYN
202 #define IPV6_FW_TCPF_RST TH_RST
203 #define IPV6_FW_TCPF_PSH TH_PUSH
204 #define IPV6_FW_TCPF_ACK TH_ACK
205 #define IPV6_FW_TCPF_URG TH_URG
208 * Main firewall chains definitions and global var's definitions.
210 #ifdef KERNEL_PRIVATE
212 #define M_IP6FW M_IPFW
216 * Function definitions.
218 void ip6_fw_init(void);
223 typedef int ip6_fw_chk_t(struct ip6_hdr
**, struct ifnet
*,
224 u_short
*, struct mbuf
**);
225 typedef int ip6_fw_ctl_t(struct sockopt
*);
226 extern ip6_fw_chk_t
*ip6_fw_chk_ptr
;
227 extern ip6_fw_ctl_t
*ip6_fw_ctl_ptr
;
228 extern int ip6_fw_enable
;
230 #endif /* KERNEL_PRIVATE */
232 #endif /* _IP6_FW_H */