2 * Copyright (c) 2007-2018 Apple 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 /* $apfw: git commit 6602420f2f101b74305cd78f7cd9e0c8fdedae97 $ */
30 /* $OpenBSD: pf.c,v 1.567 2008/02/20 23:40:13 henning Exp $ */
33 * Copyright (c) 2001 Daniel Hartmeier
34 * Copyright (c) 2002 - 2013 Henning Brauer
35 * NAT64 - Copyright (c) 2010 Viagenie Inc. (http://www.viagenie.ca)
36 * All rights reserved.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
42 * - Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * - Redistributions in binary form must reproduce the above
45 * copyright notice, this list of conditions and the following
46 * disclaimer in the documentation and/or other materials provided
47 * with the distribution.
49 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
52 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
53 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
54 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
55 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
56 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
57 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
59 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
60 * POSSIBILITY OF SUCH DAMAGE.
62 * Effort sponsored in part by the Defense Advanced Research Projects
63 * Agency (DARPA) and Air Force Research Laboratory, Air Force
64 * Materiel Command, USAF, under agreement number F30602-01-2-0537.
68 #include <machine/endian.h>
69 #include <sys/param.h>
70 #include <sys/systm.h>
71 #include <sys/filio.h>
72 #include <sys/socket.h>
73 #include <sys/socketvar.h>
74 #include <sys/kernel.h>
77 #include <sys/random.h>
78 #include <sys/mcache.h>
79 #include <sys/protosw.h>
81 #include <libkern/crypto/md5.h>
82 #include <libkern/libkern.h>
84 #include <mach/thread_act.h>
87 #include <net/if_types.h>
89 #include <net/route.h>
92 #include <netinet/in.h>
93 #include <netinet/in_var.h>
94 #include <netinet/in_systm.h>
95 #include <netinet/ip.h>
96 #include <netinet/ip_var.h>
97 #include <netinet/tcp.h>
98 #include <netinet/tcp_seq.h>
99 #include <netinet/udp.h>
100 #include <netinet/ip_icmp.h>
101 #include <netinet/in_pcb.h>
102 #include <netinet/tcp_timer.h>
103 #include <netinet/tcp_var.h>
104 #include <netinet/tcp_fsm.h>
105 #include <netinet/udp_var.h>
106 #include <netinet/icmp_var.h>
107 #include <net/if_ether.h>
108 #include <net/ethernet.h>
109 #include <net/flowhash.h>
110 #include <net/nat464_utils.h>
111 #include <net/pfvar.h>
112 #include <net/if_pflog.h>
115 #include <net/if_pfsync.h>
119 #include <netinet/ip6.h>
120 #include <netinet6/in6_pcb.h>
121 #include <netinet6/ip6_var.h>
122 #include <netinet/icmp6.h>
123 #include <netinet6/nd6.h>
127 #include <netinet/ip_dummynet.h>
128 #endif /* DUMMYNET */
131 * For RandomULong(), to get a 32 bits random value
132 * Note that random() returns a 31 bits value, see rdar://11159750
134 #include <dev/random/randomdev.h>
136 #define DPFPRINTF(n, x) (pf_status.debug >= (n) ? printf x : ((void)0))
139 * On Mac OS X, the rtableid value is treated as the interface scope
140 * value that is equivalent to the interface index used for scoped
141 * routing. A valid scope value is anything but IFSCOPE_NONE (0),
142 * as per definition of ifindex which is a positive, non-zero number.
143 * The other BSDs treat a negative rtableid value as invalid, hence
144 * the test against INT_MAX to handle userland apps which initialize
145 * the field with a negative number.
147 #define PF_RTABLEID_IS_VALID(r) \
148 ((r) > IFSCOPE_NONE && (r) <= INT_MAX)
153 decl_lck_mtx_data(, pf_lock_data
);
154 decl_lck_rw_data(, pf_perim_lock_data
);
155 lck_mtx_t
*pf_lock
= &pf_lock_data
;
156 lck_rw_t
*pf_perim_lock
= &pf_perim_lock_data
;
159 struct pf_state_tree_lan_ext pf_statetbl_lan_ext
;
160 struct pf_state_tree_ext_gwy pf_statetbl_ext_gwy
;
162 struct pf_palist pf_pabuf
;
163 struct pf_status pf_status
;
165 u_int32_t ticket_pabuf
;
167 static MD5_CTX pf_tcp_secret_ctx
;
168 static u_char pf_tcp_secret
[16];
169 static int pf_tcp_secret_init
;
170 static int pf_tcp_iss_off
;
172 static struct pf_anchor_stackframe
{
173 struct pf_ruleset
*rs
;
175 struct pf_anchor_node
*parent
;
176 struct pf_anchor
*child
;
177 } pf_anchor_stack
[64];
179 struct pool pf_src_tree_pl
, pf_rule_pl
, pf_pooladdr_pl
;
180 struct pool pf_state_pl
, pf_state_key_pl
;
182 typedef void (*hook_fn_t
)(void *);
185 TAILQ_ENTRY(hook_desc
) hd_list
;
190 #define HOOK_REMOVE 0x01
191 #define HOOK_FREE 0x02
192 #define HOOK_ABORT 0x04
194 static void *hook_establish(struct hook_desc_head
*, int,
196 static void hook_runloop(struct hook_desc_head
*, int flags
);
198 struct pool pf_app_state_pl
;
199 static void pf_print_addr(struct pf_addr
*addr
, sa_family_t af
);
200 static void pf_print_sk_host(struct pf_state_host
*, u_int8_t
, int,
203 static void pf_print_host(struct pf_addr
*, u_int16_t
, u_int8_t
);
205 static void pf_init_threshold(struct pf_threshold
*, u_int32_t
,
207 static void pf_add_threshold(struct pf_threshold
*);
208 static int pf_check_threshold(struct pf_threshold
*);
210 static void pf_change_ap(int, pbuf_t
*, struct pf_addr
*,
211 u_int16_t
*, u_int16_t
*, u_int16_t
*,
212 struct pf_addr
*, u_int16_t
, u_int8_t
, sa_family_t
,
214 static int pf_modulate_sack(pbuf_t
*, int, struct pf_pdesc
*,
215 struct tcphdr
*, struct pf_state_peer
*);
217 static void pf_change_a6(struct pf_addr
*, u_int16_t
*,
218 struct pf_addr
*, u_int8_t
);
219 void pf_change_addr(struct pf_addr
*a
, u_int16_t
*c
,
220 struct pf_addr
*an
, u_int8_t u
,
221 sa_family_t af
, sa_family_t afn
);
223 static void pf_change_icmp(struct pf_addr
*, u_int16_t
*,
224 struct pf_addr
*, struct pf_addr
*, u_int16_t
,
225 u_int16_t
*, u_int16_t
*, u_int16_t
*,
226 u_int16_t
*, u_int8_t
, sa_family_t
);
227 static void pf_send_tcp(const struct pf_rule
*, sa_family_t
,
228 const struct pf_addr
*, const struct pf_addr
*,
229 u_int16_t
, u_int16_t
, u_int32_t
, u_int32_t
,
230 u_int8_t
, u_int16_t
, u_int16_t
, u_int8_t
, int,
231 u_int16_t
, struct ether_header
*, struct ifnet
*);
232 static void pf_send_icmp(pbuf_t
*, u_int8_t
, u_int8_t
,
233 sa_family_t
, struct pf_rule
*);
234 static struct pf_rule
*pf_match_translation(struct pf_pdesc
*, pbuf_t
*,
235 int, int, struct pfi_kif
*, struct pf_addr
*,
236 union pf_state_xport
*, struct pf_addr
*,
237 union pf_state_xport
*, int);
238 static struct pf_rule
*pf_get_translation_aux(struct pf_pdesc
*,
239 pbuf_t
*, int, int, struct pfi_kif
*,
240 struct pf_src_node
**, struct pf_addr
*,
241 union pf_state_xport
*, struct pf_addr
*,
242 union pf_state_xport
*, union pf_state_xport
*
244 static void pf_attach_state(struct pf_state_key
*,
245 struct pf_state
*, int);
246 static void pf_detach_state(struct pf_state
*, int);
247 static u_int32_t
pf_tcp_iss(struct pf_pdesc
*);
248 static int pf_test_rule(struct pf_rule
**, struct pf_state
**,
249 int, struct pfi_kif
*, pbuf_t
*, int,
250 void *, struct pf_pdesc
*, struct pf_rule
**,
251 struct pf_ruleset
**, struct ifqueue
*);
253 static int pf_test_dummynet(struct pf_rule
**, int,
254 struct pfi_kif
*, pbuf_t
**,
255 struct pf_pdesc
*, struct ip_fw_args
*);
256 #endif /* DUMMYNET */
257 static int pf_test_fragment(struct pf_rule
**, int,
258 struct pfi_kif
*, pbuf_t
*, void *,
259 struct pf_pdesc
*, struct pf_rule
**,
260 struct pf_ruleset
**);
261 static int pf_test_state_tcp(struct pf_state
**, int,
262 struct pfi_kif
*, pbuf_t
*, int,
263 void *, struct pf_pdesc
*, u_short
*);
264 static int pf_test_state_udp(struct pf_state
**, int,
265 struct pfi_kif
*, pbuf_t
*, int,
266 void *, struct pf_pdesc
*, u_short
*);
267 static int pf_test_state_icmp(struct pf_state
**, int,
268 struct pfi_kif
*, pbuf_t
*, int,
269 void *, struct pf_pdesc
*, u_short
*);
270 static int pf_test_state_other(struct pf_state
**, int,
271 struct pfi_kif
*, struct pf_pdesc
*);
272 static int pf_match_tag(struct pf_rule
*,
273 struct pf_mtag
*, int *);
274 static void pf_hash(struct pf_addr
*, struct pf_addr
*,
275 struct pf_poolhashkey
*, sa_family_t
);
276 static int pf_map_addr(u_int8_t
, struct pf_rule
*,
277 struct pf_addr
*, struct pf_addr
*,
278 struct pf_addr
*, struct pf_src_node
**);
279 static int pf_get_sport(struct pf_pdesc
*, struct pfi_kif
*,
280 struct pf_rule
*, struct pf_addr
*,
281 union pf_state_xport
*, struct pf_addr
*,
282 union pf_state_xport
*, struct pf_addr
*,
283 union pf_state_xport
*, struct pf_src_node
**
285 static void pf_route(pbuf_t
**, struct pf_rule
*, int,
286 struct ifnet
*, struct pf_state
*,
289 static void pf_route6(pbuf_t
**, struct pf_rule
*, int,
290 struct ifnet
*, struct pf_state
*,
293 static u_int8_t
pf_get_wscale(pbuf_t
*, int, u_int16_t
,
295 static u_int16_t
pf_get_mss(pbuf_t
*, int, u_int16_t
,
297 static u_int16_t
pf_calc_mss(struct pf_addr
*, sa_family_t
,
299 static void pf_set_rt_ifp(struct pf_state
*,
300 struct pf_addr
*, sa_family_t af
);
301 static int pf_check_proto_cksum(pbuf_t
*, int, int,
302 u_int8_t
, sa_family_t
);
303 static int pf_addr_wrap_neq(struct pf_addr_wrap
*,
304 struct pf_addr_wrap
*);
305 static struct pf_state
*pf_find_state(struct pfi_kif
*,
306 struct pf_state_key_cmp
*, u_int
);
307 static int pf_src_connlimit(struct pf_state
**);
308 static void pf_stateins_err(const char *, struct pf_state
*,
310 static int pf_check_congestion(struct ifqueue
*);
313 static const char *pf_pptp_ctrl_type_name(u_int16_t code
);
315 static void pf_pptp_handler(struct pf_state
*, int, int,
316 struct pf_pdesc
*, struct pfi_kif
*);
317 static void pf_pptp_unlink(struct pf_state
*);
318 static void pf_grev1_unlink(struct pf_state
*);
319 static int pf_test_state_grev1(struct pf_state
**, int,
320 struct pfi_kif
*, int, struct pf_pdesc
*);
321 static int pf_ike_compare(struct pf_app_state
*,
322 struct pf_app_state
*);
323 static int pf_test_state_esp(struct pf_state
**, int,
324 struct pfi_kif
*, int, struct pf_pdesc
*);
326 extern struct pool pfr_ktable_pl
;
327 extern struct pool pfr_kentry_pl
;
328 extern int path_mtu_discovery
;
330 struct pf_pool_limit pf_pool_limits
[PF_LIMIT_MAX
] = {
331 { &pf_state_pl
, PFSTATE_HIWAT
},
332 { &pf_app_state_pl
, PFAPPSTATE_HIWAT
},
333 { &pf_src_tree_pl
, PFSNODE_HIWAT
},
334 { &pf_frent_pl
, PFFRAG_FRENT_HIWAT
},
335 { &pfr_ktable_pl
, PFR_KTABLE_HIWAT
},
336 { &pfr_kentry_pl
, PFR_KENTRY_HIWAT
},
340 pf_lazy_makewritable(struct pf_pdesc
*pd
, pbuf_t
*pbuf
, int len
)
348 VERIFY(pbuf
== pd
->mp
);
352 if ((p
= pbuf_ensure_writable(pbuf
, len
)) == NULL
) {
357 pd
->pf_mtag
= pf_find_mtag_pbuf(pbuf
);
362 pd
->src
= (struct pf_addr
*)(uintptr_t)&h
->ip_src
;
363 pd
->dst
= (struct pf_addr
*)(uintptr_t)&h
->ip_dst
;
364 pd
->ip_sum
= &h
->ip_sum
;
369 struct ip6_hdr
*h
= p
;
370 pd
->src
= (struct pf_addr
*)(uintptr_t)&h
->ip6_src
;
371 pd
->dst
= (struct pf_addr
*)(uintptr_t)&h
->ip6_dst
;
379 return len
< 0 ? NULL
: p
;
383 pf_state_lookup_aux(struct pf_state
**state
, struct pfi_kif
*kif
,
384 int direction
, int *action
)
386 if (*state
== NULL
|| (*state
)->timeout
== PFTM_PURGE
) {
391 if (direction
== PF_OUT
&&
392 (((*state
)->rule
.ptr
->rt
== PF_ROUTETO
&&
393 (*state
)->rule
.ptr
->direction
== PF_OUT
) ||
394 ((*state
)->rule
.ptr
->rt
== PF_REPLYTO
&&
395 (*state
)->rule
.ptr
->direction
== PF_IN
)) &&
396 (*state
)->rt_kif
!= NULL
&& (*state
)->rt_kif
!= kif
) {
404 #define STATE_LOOKUP() \
407 *state = pf_find_state(kif, &key, direction); \
408 if (*state != NULL && pd != NULL && \
409 !(pd->pktflags & PKTF_FLOW_ID)) { \
410 pd->flowsrc = (*state)->state_key->flowsrc; \
411 pd->flowhash = (*state)->state_key->flowhash; \
412 if (pd->flowhash != 0) { \
413 pd->pktflags |= PKTF_FLOW_ID; \
414 pd->pktflags &= ~PKTF_FLOW_ADV; \
417 if (pf_state_lookup_aux(state, kif, direction, &action)) \
421 #define STATE_ADDR_TRANSLATE(sk) \
422 (sk)->lan.addr.addr32[0] != (sk)->gwy.addr.addr32[0] || \
423 ((sk)->af_lan == AF_INET6 && \
424 ((sk)->lan.addr.addr32[1] != (sk)->gwy.addr.addr32[1] || \
425 (sk)->lan.addr.addr32[2] != (sk)->gwy.addr.addr32[2] || \
426 (sk)->lan.addr.addr32[3] != (sk)->gwy.addr.addr32[3]))
428 #define STATE_TRANSLATE(sk) \
429 ((sk)->af_lan != (sk)->af_gwy || \
430 STATE_ADDR_TRANSLATE(sk) || \
431 (sk)->lan.xport.port != (sk)->gwy.xport.port)
433 #define STATE_GRE_TRANSLATE(sk) \
434 (STATE_ADDR_TRANSLATE(sk) || \
435 (sk)->lan.xport.call_id != (sk)->gwy.xport.call_id)
437 #define BOUND_IFACE(r, k) \
438 ((r)->rule_flag & PFRULE_IFBOUND) ? (k) : pfi_all
440 #define STATE_INC_COUNTERS(s) \
442 s->rule.ptr->states++; \
443 VERIFY(s->rule.ptr->states != 0); \
444 if (s->anchor.ptr != NULL) { \
445 s->anchor.ptr->states++; \
446 VERIFY(s->anchor.ptr->states != 0); \
448 if (s->nat_rule.ptr != NULL) { \
449 s->nat_rule.ptr->states++; \
450 VERIFY(s->nat_rule.ptr->states != 0); \
454 #define STATE_DEC_COUNTERS(s) \
456 if (s->nat_rule.ptr != NULL) { \
457 VERIFY(s->nat_rule.ptr->states > 0); \
458 s->nat_rule.ptr->states--; \
460 if (s->anchor.ptr != NULL) { \
461 VERIFY(s->anchor.ptr->states > 0); \
462 s->anchor.ptr->states--; \
464 VERIFY(s->rule.ptr->states > 0); \
465 s->rule.ptr->states--; \
468 static __inline
int pf_src_compare(struct pf_src_node
*, struct pf_src_node
*);
469 static __inline
int pf_state_compare_lan_ext(struct pf_state_key
*,
470 struct pf_state_key
*);
471 static __inline
int pf_state_compare_ext_gwy(struct pf_state_key
*,
472 struct pf_state_key
*);
473 static __inline
int pf_state_compare_id(struct pf_state
*,
476 struct pf_src_tree tree_src_tracking
;
478 struct pf_state_tree_id tree_id
;
479 struct pf_state_queue state_list
;
481 RB_GENERATE(pf_src_tree
, pf_src_node
, entry
, pf_src_compare
);
482 RB_GENERATE(pf_state_tree_lan_ext
, pf_state_key
,
483 entry_lan_ext
, pf_state_compare_lan_ext
);
484 RB_GENERATE(pf_state_tree_ext_gwy
, pf_state_key
,
485 entry_ext_gwy
, pf_state_compare_ext_gwy
);
486 RB_GENERATE(pf_state_tree_id
, pf_state
,
487 entry_id
, pf_state_compare_id
);
489 #define PF_DT_SKIP_LANEXT 0x01
490 #define PF_DT_SKIP_EXTGWY 0x02
492 static const u_int16_t PF_PPTP_PORT
= 1723;
493 static const u_int32_t PF_PPTP_MAGIC_NUMBER
= 0x1A2B3C4D;
501 struct pf_pptp_ctrl_hdr
{
503 u_int16_t reserved_0
;
506 struct pf_pptp_ctrl_generic
{
510 #define PF_PPTP_CTRL_TYPE_START_REQ 1
511 struct pf_pptp_ctrl_start_req
{
512 u_int16_t protocol_version
;
513 u_int16_t reserved_1
;
514 u_int32_t framing_capabilities
;
515 u_int32_t bearer_capabilities
;
516 u_int16_t maximum_channels
;
517 u_int16_t firmware_revision
;
518 u_int8_t host_name
[64];
519 u_int8_t vendor_string
[64];
522 #define PF_PPTP_CTRL_TYPE_START_RPY 2
523 struct pf_pptp_ctrl_start_rpy
{
524 u_int16_t protocol_version
;
525 u_int8_t result_code
;
527 u_int32_t framing_capabilities
;
528 u_int32_t bearer_capabilities
;
529 u_int16_t maximum_channels
;
530 u_int16_t firmware_revision
;
531 u_int8_t host_name
[64];
532 u_int8_t vendor_string
[64];
535 #define PF_PPTP_CTRL_TYPE_STOP_REQ 3
536 struct pf_pptp_ctrl_stop_req
{
539 u_int16_t reserved_2
;
542 #define PF_PPTP_CTRL_TYPE_STOP_RPY 4
543 struct pf_pptp_ctrl_stop_rpy
{
546 u_int16_t reserved_1
;
549 #define PF_PPTP_CTRL_TYPE_ECHO_REQ 5
550 struct pf_pptp_ctrl_echo_req
{
551 u_int32_t identifier
;
554 #define PF_PPTP_CTRL_TYPE_ECHO_RPY 6
555 struct pf_pptp_ctrl_echo_rpy
{
556 u_int32_t identifier
;
557 u_int8_t result_code
;
559 u_int16_t reserved_1
;
562 #define PF_PPTP_CTRL_TYPE_CALL_OUT_REQ 7
563 struct pf_pptp_ctrl_call_out_req
{
565 u_int16_t call_sernum
;
567 u_int32_t bearer_type
;
568 u_int32_t framing_type
;
569 u_int16_t rxwindow_size
;
570 u_int16_t proc_delay
;
571 u_int8_t phone_num
[64];
572 u_int8_t sub_addr
[64];
575 #define PF_PPTP_CTRL_TYPE_CALL_OUT_RPY 8
576 struct pf_pptp_ctrl_call_out_rpy
{
578 u_int16_t peer_call_id
;
579 u_int8_t result_code
;
581 u_int16_t cause_code
;
582 u_int32_t connect_speed
;
583 u_int16_t rxwindow_size
;
584 u_int16_t proc_delay
;
585 u_int32_t phy_channel_id
;
588 #define PF_PPTP_CTRL_TYPE_CALL_IN_1ST 9
589 struct pf_pptp_ctrl_call_in_1st
{
591 u_int16_t call_sernum
;
592 u_int32_t bearer_type
;
593 u_int32_t phy_channel_id
;
594 u_int16_t dialed_number_len
;
595 u_int16_t dialing_number_len
;
596 u_int8_t dialed_num
[64];
597 u_int8_t dialing_num
[64];
598 u_int8_t sub_addr
[64];
601 #define PF_PPTP_CTRL_TYPE_CALL_IN_2ND 10
602 struct pf_pptp_ctrl_call_in_2nd
{
604 u_int16_t peer_call_id
;
605 u_int8_t result_code
;
607 u_int16_t rxwindow_size
;
609 u_int16_t reserved_1
;
612 #define PF_PPTP_CTRL_TYPE_CALL_IN_3RD 11
613 struct pf_pptp_ctrl_call_in_3rd
{
615 u_int16_t reserved_1
;
616 u_int32_t connect_speed
;
617 u_int16_t rxwindow_size
;
619 u_int32_t framing_type
;
622 #define PF_PPTP_CTRL_TYPE_CALL_CLR 12
623 struct pf_pptp_ctrl_call_clr
{
625 u_int16_t reserved_1
;
628 #define PF_PPTP_CTRL_TYPE_CALL_DISC 13
629 struct pf_pptp_ctrl_call_disc
{
631 u_int8_t result_code
;
633 u_int16_t cause_code
;
634 u_int16_t reserved_1
;
635 u_int8_t statistics
[128];
638 #define PF_PPTP_CTRL_TYPE_ERROR 14
639 struct pf_pptp_ctrl_error
{
640 u_int16_t peer_call_id
;
641 u_int16_t reserved_1
;
642 u_int32_t crc_errors
;
645 u_int32_t buf_errors
;
646 u_int32_t tim_errors
;
647 u_int32_t align_errors
;
650 #define PF_PPTP_CTRL_TYPE_SET_LINKINFO 15
651 struct pf_pptp_ctrl_set_linkinfo
{
652 u_int16_t peer_call_id
;
653 u_int16_t reserved_1
;
660 pf_pptp_ctrl_type_name(u_int16_t code
)
664 if (code
< PF_PPTP_CTRL_TYPE_START_REQ
||
665 code
> PF_PPTP_CTRL_TYPE_SET_LINKINFO
) {
666 static char reserved
[] = "reserved-00";
668 sprintf(&reserved
[9], "%02x", code
);
671 static const char *name
[] = {
672 "start_req", "start_rpy", "stop_req", "stop_rpy",
673 "echo_req", "echo_rpy", "call_out_req", "call_out_rpy",
674 "call_in_1st", "call_in_2nd", "call_in_3rd",
675 "call_clr", "call_disc", "error", "set_linkinfo"
678 return name
[code
- 1];
683 static const size_t PF_PPTP_CTRL_MSG_MINSIZE
=
684 sizeof(struct pf_pptp_hdr
) + sizeof(struct pf_pptp_ctrl_hdr
);
686 union pf_pptp_ctrl_msg_union
{
687 struct pf_pptp_ctrl_start_req start_req
;
688 struct pf_pptp_ctrl_start_rpy start_rpy
;
689 struct pf_pptp_ctrl_stop_req stop_req
;
690 struct pf_pptp_ctrl_stop_rpy stop_rpy
;
691 struct pf_pptp_ctrl_echo_req echo_req
;
692 struct pf_pptp_ctrl_echo_rpy echo_rpy
;
693 struct pf_pptp_ctrl_call_out_req call_out_req
;
694 struct pf_pptp_ctrl_call_out_rpy call_out_rpy
;
695 struct pf_pptp_ctrl_call_in_1st call_in_1st
;
696 struct pf_pptp_ctrl_call_in_2nd call_in_2nd
;
697 struct pf_pptp_ctrl_call_in_3rd call_in_3rd
;
698 struct pf_pptp_ctrl_call_clr call_clr
;
699 struct pf_pptp_ctrl_call_disc call_disc
;
700 struct pf_pptp_ctrl_error error
;
701 struct pf_pptp_ctrl_set_linkinfo set_linkinfo
;
705 struct pf_pptp_ctrl_msg
{
706 struct pf_pptp_hdr hdr
;
707 struct pf_pptp_ctrl_hdr ctrl
;
708 union pf_pptp_ctrl_msg_union msg
;
711 #define PF_GRE_FLAG_CHECKSUM_PRESENT 0x8000
712 #define PF_GRE_FLAG_VERSION_MASK 0x0007
713 #define PF_GRE_PPP_ETHERTYPE 0x880B
715 struct pf_grev1_hdr
{
717 u_int16_t protocol_type
;
718 u_int16_t payload_length
;
726 static const u_int16_t PF_IKE_PORT
= 500;
729 u_int64_t initiator_cookie
, responder_cookie
;
730 u_int8_t next_payload
, version
, exchange_type
, flags
;
731 u_int32_t message_id
, length
;
734 #define PF_IKE_PACKET_MINSIZE (sizeof (struct pf_ike_hdr))
736 #define PF_IKEv1_EXCHTYPE_BASE 1
737 #define PF_IKEv1_EXCHTYPE_ID_PROTECT 2
738 #define PF_IKEv1_EXCHTYPE_AUTH_ONLY 3
739 #define PF_IKEv1_EXCHTYPE_AGGRESSIVE 4
740 #define PF_IKEv1_EXCHTYPE_INFORMATIONAL 5
741 #define PF_IKEv2_EXCHTYPE_SA_INIT 34
742 #define PF_IKEv2_EXCHTYPE_AUTH 35
743 #define PF_IKEv2_EXCHTYPE_CREATE_CHILD_SA 36
744 #define PF_IKEv2_EXCHTYPE_INFORMATIONAL 37
746 #define PF_IKEv1_FLAG_E 0x01
747 #define PF_IKEv1_FLAG_C 0x02
748 #define PF_IKEv1_FLAG_A 0x04
749 #define PF_IKEv2_FLAG_I 0x08
750 #define PF_IKEv2_FLAG_V 0x10
751 #define PF_IKEv2_FLAG_R 0x20
760 pf_addr_compare(struct pf_addr
*a
, struct pf_addr
*b
, sa_family_t af
)
765 if (a
->addr32
[0] > b
->addr32
[0]) {
768 if (a
->addr32
[0] < b
->addr32
[0]) {
775 if (a
->addr32
[3] > b
->addr32
[3]) {
778 if (a
->addr32
[3] < b
->addr32
[3]) {
781 if (a
->addr32
[2] > b
->addr32
[2]) {
784 if (a
->addr32
[2] < b
->addr32
[2]) {
787 if (a
->addr32
[1] > b
->addr32
[1]) {
790 if (a
->addr32
[1] < b
->addr32
[1]) {
793 if (a
->addr32
[0] > b
->addr32
[0]) {
796 if (a
->addr32
[0] < b
->addr32
[0]) {
806 pf_src_compare(struct pf_src_node
*a
, struct pf_src_node
*b
)
810 if (a
->rule
.ptr
> b
->rule
.ptr
) {
813 if (a
->rule
.ptr
< b
->rule
.ptr
) {
816 if ((diff
= a
->af
- b
->af
) != 0) {
819 if ((diff
= pf_addr_compare(&a
->addr
, &b
->addr
, a
->af
)) != 0) {
826 pf_state_compare_lan_ext(struct pf_state_key
*a
, struct pf_state_key
*b
)
831 if ((diff
= a
->proto
- b
->proto
) != 0) {
834 if ((diff
= a
->af_lan
- b
->af_lan
) != 0) {
838 extfilter
= PF_EXTFILTER_APD
;
843 if ((diff
= a
->lan
.xport
.port
- b
->lan
.xport
.port
) != 0) {
849 if ((diff
= a
->lan
.xport
.port
- b
->lan
.xport
.port
) != 0) {
852 if ((diff
= a
->ext_lan
.xport
.port
- b
->ext_lan
.xport
.port
) != 0) {
858 if ((diff
= a
->proto_variant
- b
->proto_variant
)) {
861 extfilter
= a
->proto_variant
;
862 if ((diff
= a
->lan
.xport
.port
- b
->lan
.xport
.port
) != 0) {
865 if ((extfilter
< PF_EXTFILTER_AD
) &&
866 (diff
= a
->ext_lan
.xport
.port
- b
->ext_lan
.xport
.port
) != 0) {
872 if (a
->proto_variant
== PF_GRE_PPTP_VARIANT
&&
873 a
->proto_variant
== b
->proto_variant
) {
874 if (!!(diff
= a
->ext_lan
.xport
.call_id
-
875 b
->ext_lan
.xport
.call_id
)) {
882 if (!!(diff
= a
->ext_lan
.xport
.spi
- b
->ext_lan
.xport
.spi
)) {
894 if ((diff
= pf_addr_compare(&a
->lan
.addr
, &b
->lan
.addr
,
899 if (extfilter
< PF_EXTFILTER_EI
) {
900 if ((diff
= pf_addr_compare(&a
->ext_lan
.addr
,
910 if ((diff
= pf_addr_compare(&a
->lan
.addr
, &b
->lan
.addr
,
915 if (extfilter
< PF_EXTFILTER_EI
||
916 !PF_AZERO(&b
->ext_lan
.addr
, AF_INET6
)) {
917 if ((diff
= pf_addr_compare(&a
->ext_lan
.addr
,
927 if (a
->app_state
&& b
->app_state
) {
928 if (a
->app_state
->compare_lan_ext
&&
929 b
->app_state
->compare_lan_ext
) {
930 diff
= (const char *)b
->app_state
->compare_lan_ext
-
931 (const char *)a
->app_state
->compare_lan_ext
;
935 diff
= a
->app_state
->compare_lan_ext(a
->app_state
,
947 pf_state_compare_ext_gwy(struct pf_state_key
*a
, struct pf_state_key
*b
)
952 if ((diff
= a
->proto
- b
->proto
) != 0) {
956 if ((diff
= a
->af_gwy
- b
->af_gwy
) != 0) {
960 extfilter
= PF_EXTFILTER_APD
;
965 if ((diff
= a
->gwy
.xport
.port
- b
->gwy
.xport
.port
) != 0) {
971 if ((diff
= a
->ext_gwy
.xport
.port
- b
->ext_gwy
.xport
.port
) != 0) {
974 if ((diff
= a
->gwy
.xport
.port
- b
->gwy
.xport
.port
) != 0) {
980 if ((diff
= a
->proto_variant
- b
->proto_variant
)) {
983 extfilter
= a
->proto_variant
;
984 if ((diff
= a
->gwy
.xport
.port
- b
->gwy
.xport
.port
) != 0) {
987 if ((extfilter
< PF_EXTFILTER_AD
) &&
988 (diff
= a
->ext_gwy
.xport
.port
- b
->ext_gwy
.xport
.port
) != 0) {
994 if (a
->proto_variant
== PF_GRE_PPTP_VARIANT
&&
995 a
->proto_variant
== b
->proto_variant
) {
996 if (!!(diff
= a
->gwy
.xport
.call_id
-
997 b
->gwy
.xport
.call_id
)) {
1004 if (!!(diff
= a
->gwy
.xport
.spi
- b
->gwy
.xport
.spi
)) {
1013 switch (a
->af_gwy
) {
1016 if ((diff
= pf_addr_compare(&a
->gwy
.addr
, &b
->gwy
.addr
,
1021 if (extfilter
< PF_EXTFILTER_EI
) {
1022 if ((diff
= pf_addr_compare(&a
->ext_gwy
.addr
, &b
->ext_gwy
.addr
,
1031 if ((diff
= pf_addr_compare(&a
->gwy
.addr
, &b
->gwy
.addr
,
1036 if (extfilter
< PF_EXTFILTER_EI
||
1037 !PF_AZERO(&b
->ext_gwy
.addr
, AF_INET6
)) {
1038 if ((diff
= pf_addr_compare(&a
->ext_gwy
.addr
, &b
->ext_gwy
.addr
,
1047 if (a
->app_state
&& b
->app_state
) {
1048 if (a
->app_state
->compare_ext_gwy
&&
1049 b
->app_state
->compare_ext_gwy
) {
1050 diff
= (const char *)b
->app_state
->compare_ext_gwy
-
1051 (const char *)a
->app_state
->compare_ext_gwy
;
1055 diff
= a
->app_state
->compare_ext_gwy(a
->app_state
,
1067 pf_state_compare_id(struct pf_state
*a
, struct pf_state
*b
)
1069 if (a
->id
> b
->id
) {
1072 if (a
->id
< b
->id
) {
1075 if (a
->creatorid
> b
->creatorid
) {
1078 if (a
->creatorid
< b
->creatorid
) {
1087 pf_addrcpy(struct pf_addr
*dst
, struct pf_addr
*src
, sa_family_t af
)
1092 dst
->addr32
[0] = src
->addr32
[0];
1096 dst
->addr32
[0] = src
->addr32
[0];
1097 dst
->addr32
[1] = src
->addr32
[1];
1098 dst
->addr32
[2] = src
->addr32
[2];
1099 dst
->addr32
[3] = src
->addr32
[3];
1106 pf_find_state_byid(struct pf_state_cmp
*key
)
1108 pf_status
.fcounters
[FCNT_STATE_SEARCH
]++;
1110 return RB_FIND(pf_state_tree_id
, &tree_id
,
1111 (struct pf_state
*)(void *)key
);
1114 static struct pf_state
*
1115 pf_find_state(struct pfi_kif
*kif
, struct pf_state_key_cmp
*key
, u_int dir
)
1117 struct pf_state_key
*sk
= NULL
;
1120 pf_status
.fcounters
[FCNT_STATE_SEARCH
]++;
1124 sk
= RB_FIND(pf_state_tree_lan_ext
, &pf_statetbl_lan_ext
,
1125 (struct pf_state_key
*)key
);
1128 sk
= RB_FIND(pf_state_tree_ext_gwy
, &pf_statetbl_ext_gwy
,
1129 (struct pf_state_key
*)key
);
1131 * NAT64 is done only on input, for packets coming in from
1132 * from the LAN side, need to lookup the lan_ext tree.
1135 sk
= RB_FIND(pf_state_tree_lan_ext
,
1136 &pf_statetbl_lan_ext
,
1137 (struct pf_state_key
*)key
);
1138 if (sk
&& sk
->af_lan
== sk
->af_gwy
) {
1144 panic("pf_find_state");
1147 /* list is sorted, if-bound states before floating ones */
1149 TAILQ_FOREACH(s
, &sk
->states
, next
)
1150 if (s
->kif
== pfi_all
|| s
->kif
== kif
) {
1159 pf_find_state_all(struct pf_state_key_cmp
*key
, u_int dir
, int *more
)
1161 struct pf_state_key
*sk
= NULL
;
1162 struct pf_state
*s
, *ret
= NULL
;
1164 pf_status
.fcounters
[FCNT_STATE_SEARCH
]++;
1168 sk
= RB_FIND(pf_state_tree_lan_ext
,
1169 &pf_statetbl_lan_ext
, (struct pf_state_key
*)key
);
1172 sk
= RB_FIND(pf_state_tree_ext_gwy
,
1173 &pf_statetbl_ext_gwy
, (struct pf_state_key
*)key
);
1175 * NAT64 is done only on input, for packets coming in from
1176 * from the LAN side, need to lookup the lan_ext tree.
1178 if ((sk
== NULL
) && pf_nat64_configured
) {
1179 sk
= RB_FIND(pf_state_tree_lan_ext
,
1180 &pf_statetbl_lan_ext
,
1181 (struct pf_state_key
*)key
);
1182 if (sk
&& sk
->af_lan
== sk
->af_gwy
) {
1188 panic("pf_find_state_all");
1192 ret
= TAILQ_FIRST(&sk
->states
);
1197 TAILQ_FOREACH(s
, &sk
->states
, next
)
1205 pf_init_threshold(struct pf_threshold
*threshold
,
1206 u_int32_t limit
, u_int32_t seconds
)
1208 threshold
->limit
= limit
* PF_THRESHOLD_MULT
;
1209 threshold
->seconds
= seconds
;
1210 threshold
->count
= 0;
1211 threshold
->last
= pf_time_second();
1215 pf_add_threshold(struct pf_threshold
*threshold
)
1217 u_int32_t t
= pf_time_second(), diff
= t
- threshold
->last
;
1219 if (diff
>= threshold
->seconds
) {
1220 threshold
->count
= 0;
1222 threshold
->count
-= threshold
->count
* diff
/
1225 threshold
->count
+= PF_THRESHOLD_MULT
;
1226 threshold
->last
= t
;
1230 pf_check_threshold(struct pf_threshold
*threshold
)
1232 return threshold
->count
> threshold
->limit
;
1236 pf_src_connlimit(struct pf_state
**state
)
1239 (*state
)->src_node
->conn
++;
1240 VERIFY((*state
)->src_node
->conn
!= 0);
1241 (*state
)->src
.tcp_est
= 1;
1242 pf_add_threshold(&(*state
)->src_node
->conn_rate
);
1244 if ((*state
)->rule
.ptr
->max_src_conn
&&
1245 (*state
)->rule
.ptr
->max_src_conn
<
1246 (*state
)->src_node
->conn
) {
1247 pf_status
.lcounters
[LCNT_SRCCONN
]++;
1251 if ((*state
)->rule
.ptr
->max_src_conn_rate
.limit
&&
1252 pf_check_threshold(&(*state
)->src_node
->conn_rate
)) {
1253 pf_status
.lcounters
[LCNT_SRCCONNRATE
]++;
1261 if ((*state
)->rule
.ptr
->overload_tbl
) {
1263 u_int32_t killed
= 0;
1265 pf_status
.lcounters
[LCNT_OVERLOAD_TABLE
]++;
1266 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
1267 printf("pf_src_connlimit: blocking address ");
1268 pf_print_host(&(*state
)->src_node
->addr
, 0,
1269 (*state
)->state_key
->af_lan
);
1272 bzero(&p
, sizeof(p
));
1273 p
.pfra_af
= (*state
)->state_key
->af_lan
;
1274 switch ((*state
)->state_key
->af_lan
) {
1278 p
.pfra_ip4addr
= (*state
)->src_node
->addr
.v4addr
;
1284 p
.pfra_ip6addr
= (*state
)->src_node
->addr
.v6addr
;
1289 pfr_insert_kentry((*state
)->rule
.ptr
->overload_tbl
,
1290 &p
, pf_calendar_time_second());
1292 /* kill existing states if that's required. */
1293 if ((*state
)->rule
.ptr
->flush
) {
1294 struct pf_state_key
*sk
;
1295 struct pf_state
*st
;
1297 pf_status
.lcounters
[LCNT_OVERLOAD_FLUSH
]++;
1298 RB_FOREACH(st
, pf_state_tree_id
, &tree_id
) {
1301 * Kill states from this source. (Only those
1302 * from the same rule if PF_FLUSH_GLOBAL is not
1306 (*state
)->state_key
->af_lan
&&
1307 (((*state
)->state_key
->direction
==
1309 PF_AEQ(&(*state
)->src_node
->addr
,
1310 &sk
->lan
.addr
, sk
->af_lan
)) ||
1311 ((*state
)->state_key
->direction
== PF_IN
&&
1312 PF_AEQ(&(*state
)->src_node
->addr
,
1313 &sk
->ext_lan
.addr
, sk
->af_lan
))) &&
1314 ((*state
)->rule
.ptr
->flush
&
1316 (*state
)->rule
.ptr
== st
->rule
.ptr
)) {
1317 st
->timeout
= PFTM_PURGE
;
1318 st
->src
.state
= st
->dst
.state
=
1323 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
1324 printf(", %u states killed", killed
);
1327 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
1332 /* kill this state */
1333 (*state
)->timeout
= PFTM_PURGE
;
1334 (*state
)->src
.state
= (*state
)->dst
.state
= TCPS_CLOSED
;
1339 pf_insert_src_node(struct pf_src_node
**sn
, struct pf_rule
*rule
,
1340 struct pf_addr
*src
, sa_family_t af
)
1342 struct pf_src_node k
;
1346 PF_ACPY(&k
.addr
, src
, af
);
1347 if (rule
->rule_flag
& PFRULE_RULESRCTRACK
||
1348 rule
->rpool
.opts
& PF_POOL_STICKYADDR
) {
1353 pf_status
.scounters
[SCNT_SRC_NODE_SEARCH
]++;
1354 *sn
= RB_FIND(pf_src_tree
, &tree_src_tracking
, &k
);
1357 if (!rule
->max_src_nodes
||
1358 rule
->src_nodes
< rule
->max_src_nodes
) {
1359 (*sn
) = pool_get(&pf_src_tree_pl
, PR_WAITOK
);
1361 pf_status
.lcounters
[LCNT_SRCNODES
]++;
1363 if ((*sn
) == NULL
) {
1366 bzero(*sn
, sizeof(struct pf_src_node
));
1368 pf_init_threshold(&(*sn
)->conn_rate
,
1369 rule
->max_src_conn_rate
.limit
,
1370 rule
->max_src_conn_rate
.seconds
);
1373 if (rule
->rule_flag
& PFRULE_RULESRCTRACK
||
1374 rule
->rpool
.opts
& PF_POOL_STICKYADDR
) {
1375 (*sn
)->rule
.ptr
= rule
;
1377 (*sn
)->rule
.ptr
= NULL
;
1379 PF_ACPY(&(*sn
)->addr
, src
, af
);
1380 if (RB_INSERT(pf_src_tree
,
1381 &tree_src_tracking
, *sn
) != NULL
) {
1382 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
1383 printf("pf: src_tree insert failed: ");
1384 pf_print_host(&(*sn
)->addr
, 0, af
);
1387 pool_put(&pf_src_tree_pl
, *sn
);
1390 (*sn
)->creation
= pf_time_second();
1391 (*sn
)->ruletype
= rule
->action
;
1392 if ((*sn
)->rule
.ptr
!= NULL
) {
1393 (*sn
)->rule
.ptr
->src_nodes
++;
1395 pf_status
.scounters
[SCNT_SRC_NODE_INSERT
]++;
1396 pf_status
.src_nodes
++;
1398 if (rule
->max_src_states
&&
1399 (*sn
)->states
>= rule
->max_src_states
) {
1400 pf_status
.lcounters
[LCNT_SRCSTATES
]++;
1408 pf_stateins_err(const char *tree
, struct pf_state
*s
, struct pfi_kif
*kif
)
1410 struct pf_state_key
*sk
= s
->state_key
;
1412 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
1413 printf("pf: state insert failed: %s %s ", tree
, kif
->pfik_name
);
1414 switch (sk
->proto
) {
1424 case IPPROTO_ICMPV6
:
1428 printf("PROTO=%u", sk
->proto
);
1432 pf_print_sk_host(&sk
->lan
, sk
->af_lan
, sk
->proto
,
1435 pf_print_sk_host(&sk
->gwy
, sk
->af_gwy
, sk
->proto
,
1437 printf(" ext_lan: ");
1438 pf_print_sk_host(&sk
->ext_lan
, sk
->af_lan
, sk
->proto
,
1440 printf(" ext_gwy: ");
1441 pf_print_sk_host(&sk
->ext_gwy
, sk
->af_gwy
, sk
->proto
,
1443 if (s
->sync_flags
& PFSTATE_FROMSYNC
) {
1444 printf(" (from sync)");
1451 pf_insert_state(struct pfi_kif
*kif
, struct pf_state
*s
)
1453 struct pf_state_key
*cur
;
1454 struct pf_state
*sp
;
1456 VERIFY(s
->state_key
!= NULL
);
1459 if ((cur
= RB_INSERT(pf_state_tree_lan_ext
, &pf_statetbl_lan_ext
,
1460 s
->state_key
)) != NULL
) {
1461 /* key exists. check for same kif, if none, add to key */
1462 TAILQ_FOREACH(sp
, &cur
->states
, next
)
1463 if (sp
->kif
== kif
) { /* collision! */
1464 pf_stateins_err("tree_lan_ext", s
, kif
);
1466 PF_DT_SKIP_LANEXT
| PF_DT_SKIP_EXTGWY
);
1469 pf_detach_state(s
, PF_DT_SKIP_LANEXT
| PF_DT_SKIP_EXTGWY
);
1470 pf_attach_state(cur
, s
, kif
== pfi_all
? 1 : 0);
1473 /* if cur != NULL, we already found a state key and attached to it */
1474 if (cur
== NULL
&& (cur
= RB_INSERT(pf_state_tree_ext_gwy
,
1475 &pf_statetbl_ext_gwy
, s
->state_key
)) != NULL
) {
1476 /* must not happen. we must have found the sk above! */
1477 pf_stateins_err("tree_ext_gwy", s
, kif
);
1478 pf_detach_state(s
, PF_DT_SKIP_EXTGWY
);
1482 if (s
->id
== 0 && s
->creatorid
== 0) {
1483 s
->id
= htobe64(pf_status
.stateid
++);
1484 s
->creatorid
= pf_status
.hostid
;
1486 if (RB_INSERT(pf_state_tree_id
, &tree_id
, s
) != NULL
) {
1487 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
1488 printf("pf: state insert failed: "
1489 "id: %016llx creatorid: %08x",
1490 be64toh(s
->id
), ntohl(s
->creatorid
));
1491 if (s
->sync_flags
& PFSTATE_FROMSYNC
) {
1492 printf(" (from sync)");
1496 pf_detach_state(s
, 0);
1499 TAILQ_INSERT_TAIL(&state_list
, s
, entry_list
);
1500 pf_status
.fcounters
[FCNT_STATE_INSERT
]++;
1502 VERIFY(pf_status
.states
!= 0);
1503 pfi_kif_ref(kif
, PFI_KIF_REF_STATE
);
1505 pfsync_insert_state(s
);
1511 pf_purge_thread_cont(int err
)
1514 static u_int32_t nloops
= 0;
1515 int t
= 1; /* 1 second */
1518 * Update coarse-grained networking timestamp (in sec.); the idea
1519 * is to piggy-back on the periodic timeout callout to update
1520 * the counter returnable via net_uptime().
1522 net_update_uptime();
1524 lck_rw_lock_shared(pf_perim_lock
);
1525 lck_mtx_lock(pf_lock
);
1527 /* purge everything if not running */
1528 if (!pf_status
.running
) {
1529 pf_purge_expired_states(pf_status
.states
);
1530 pf_purge_expired_fragments();
1531 pf_purge_expired_src_nodes();
1533 /* terminate thread (we don't currently do this) */
1534 if (pf_purge_thread
== NULL
) {
1535 lck_mtx_unlock(pf_lock
);
1536 lck_rw_done(pf_perim_lock
);
1538 thread_deallocate(current_thread());
1539 thread_terminate(current_thread());
1543 /* if there's nothing left, sleep w/o timeout */
1544 if (pf_status
.states
== 0 &&
1545 pf_normalize_isempty() &&
1546 RB_EMPTY(&tree_src_tracking
)) {
1554 /* process a fraction of the state table every second */
1555 pf_purge_expired_states(1 + (pf_status
.states
1556 / pf_default_rule
.timeout
[PFTM_INTERVAL
]));
1558 /* purge other expired types every PFTM_INTERVAL seconds */
1559 if (++nloops
>= pf_default_rule
.timeout
[PFTM_INTERVAL
]) {
1560 pf_purge_expired_fragments();
1561 pf_purge_expired_src_nodes();
1565 lck_mtx_unlock(pf_lock
);
1566 lck_rw_done(pf_perim_lock
);
1568 (void) tsleep0(pf_purge_thread_fn
, PWAIT
, "pf_purge_cont",
1569 t
* hz
, pf_purge_thread_cont
);
1577 pf_purge_thread_fn(void *v
, wait_result_t w
)
1579 #pragma unused(v, w)
1580 (void) tsleep0(pf_purge_thread_fn
, PWAIT
, "pf_purge", 0,
1581 pf_purge_thread_cont
);
1583 * tsleep0() shouldn't have returned as PCATCH was not set;
1584 * therefore assert in this case.
1590 pf_state_expires(const struct pf_state
*state
)
1597 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1599 /* handle all PFTM_* > PFTM_MAX here */
1600 if (state
->timeout
== PFTM_PURGE
) {
1601 return pf_time_second();
1604 VERIFY(state
->timeout
!= PFTM_UNLINKED
);
1605 VERIFY(state
->timeout
< PFTM_MAX
);
1606 t
= state
->rule
.ptr
->timeout
[state
->timeout
];
1608 t
= pf_default_rule
.timeout
[state
->timeout
];
1610 start
= state
->rule
.ptr
->timeout
[PFTM_ADAPTIVE_START
];
1612 end
= state
->rule
.ptr
->timeout
[PFTM_ADAPTIVE_END
];
1613 states
= state
->rule
.ptr
->states
;
1615 start
= pf_default_rule
.timeout
[PFTM_ADAPTIVE_START
];
1616 end
= pf_default_rule
.timeout
[PFTM_ADAPTIVE_END
];
1617 states
= pf_status
.states
;
1619 if (end
&& states
> start
&& start
< end
) {
1621 return state
->expire
+ t
* (end
- states
) /
1624 return pf_time_second();
1627 return state
->expire
+ t
;
1631 pf_purge_expired_src_nodes(void)
1633 struct pf_src_node
*cur
, *next
;
1635 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1637 for (cur
= RB_MIN(pf_src_tree
, &tree_src_tracking
); cur
; cur
= next
) {
1638 next
= RB_NEXT(pf_src_tree
, &tree_src_tracking
, cur
);
1640 if (cur
->states
<= 0 && cur
->expire
<= pf_time_second()) {
1641 if (cur
->rule
.ptr
!= NULL
) {
1642 cur
->rule
.ptr
->src_nodes
--;
1643 if (cur
->rule
.ptr
->states
<= 0 &&
1644 cur
->rule
.ptr
->max_src_nodes
<= 0) {
1645 pf_rm_rule(NULL
, cur
->rule
.ptr
);
1648 RB_REMOVE(pf_src_tree
, &tree_src_tracking
, cur
);
1649 pf_status
.scounters
[SCNT_SRC_NODE_REMOVALS
]++;
1650 pf_status
.src_nodes
--;
1651 pool_put(&pf_src_tree_pl
, cur
);
1657 pf_src_tree_remove_state(struct pf_state
*s
)
1661 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1663 if (s
->src_node
!= NULL
) {
1664 if (s
->src
.tcp_est
) {
1665 VERIFY(s
->src_node
->conn
> 0);
1666 --s
->src_node
->conn
;
1668 VERIFY(s
->src_node
->states
> 0);
1669 if (--s
->src_node
->states
<= 0) {
1670 t
= s
->rule
.ptr
->timeout
[PFTM_SRC_NODE
];
1672 t
= pf_default_rule
.timeout
[PFTM_SRC_NODE
];
1674 s
->src_node
->expire
= pf_time_second() + t
;
1677 if (s
->nat_src_node
!= s
->src_node
&& s
->nat_src_node
!= NULL
) {
1678 VERIFY(s
->nat_src_node
->states
> 0);
1679 if (--s
->nat_src_node
->states
<= 0) {
1680 t
= s
->rule
.ptr
->timeout
[PFTM_SRC_NODE
];
1682 t
= pf_default_rule
.timeout
[PFTM_SRC_NODE
];
1684 s
->nat_src_node
->expire
= pf_time_second() + t
;
1687 s
->src_node
= s
->nat_src_node
= NULL
;
1691 pf_unlink_state(struct pf_state
*cur
)
1693 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1695 if (cur
->src
.state
== PF_TCPS_PROXY_DST
) {
1696 pf_send_tcp(cur
->rule
.ptr
, cur
->state_key
->af_lan
,
1697 &cur
->state_key
->ext_lan
.addr
, &cur
->state_key
->lan
.addr
,
1698 cur
->state_key
->ext_lan
.xport
.port
,
1699 cur
->state_key
->lan
.xport
.port
,
1700 cur
->src
.seqhi
, cur
->src
.seqlo
+ 1,
1701 TH_RST
| TH_ACK
, 0, 0, 0, 1, cur
->tag
, NULL
, NULL
);
1704 hook_runloop(&cur
->unlink_hooks
, HOOK_REMOVE
| HOOK_FREE
);
1705 RB_REMOVE(pf_state_tree_id
, &tree_id
, cur
);
1707 if (cur
->creatorid
== pf_status
.hostid
) {
1708 pfsync_delete_state(cur
);
1711 cur
->timeout
= PFTM_UNLINKED
;
1712 pf_src_tree_remove_state(cur
);
1713 pf_detach_state(cur
, 0);
1716 /* callers should be at splpf and hold the
1717 * write_lock on pf_consistency_lock */
1719 pf_free_state(struct pf_state
*cur
)
1721 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1723 if (pfsyncif
!= NULL
&&
1724 (pfsyncif
->sc_bulk_send_next
== cur
||
1725 pfsyncif
->sc_bulk_terminator
== cur
)) {
1729 VERIFY(cur
->timeout
== PFTM_UNLINKED
);
1730 VERIFY(cur
->rule
.ptr
->states
> 0);
1731 if (--cur
->rule
.ptr
->states
<= 0 &&
1732 cur
->rule
.ptr
->src_nodes
<= 0) {
1733 pf_rm_rule(NULL
, cur
->rule
.ptr
);
1735 if (cur
->nat_rule
.ptr
!= NULL
) {
1736 VERIFY(cur
->nat_rule
.ptr
->states
> 0);
1737 if (--cur
->nat_rule
.ptr
->states
<= 0 &&
1738 cur
->nat_rule
.ptr
->src_nodes
<= 0) {
1739 pf_rm_rule(NULL
, cur
->nat_rule
.ptr
);
1742 if (cur
->anchor
.ptr
!= NULL
) {
1743 VERIFY(cur
->anchor
.ptr
->states
> 0);
1744 if (--cur
->anchor
.ptr
->states
<= 0) {
1745 pf_rm_rule(NULL
, cur
->anchor
.ptr
);
1748 pf_normalize_tcp_cleanup(cur
);
1749 pfi_kif_unref(cur
->kif
, PFI_KIF_REF_STATE
);
1750 TAILQ_REMOVE(&state_list
, cur
, entry_list
);
1752 pf_tag_unref(cur
->tag
);
1754 pool_put(&pf_state_pl
, cur
);
1755 pf_status
.fcounters
[FCNT_STATE_REMOVALS
]++;
1756 VERIFY(pf_status
.states
> 0);
1761 pf_purge_expired_states(u_int32_t maxcheck
)
1763 static struct pf_state
*cur
= NULL
;
1764 struct pf_state
*next
;
1766 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1768 while (maxcheck
--) {
1769 /* wrap to start of list when we hit the end */
1771 cur
= TAILQ_FIRST(&state_list
);
1773 break; /* list empty */
1777 /* get next state, as cur may get deleted */
1778 next
= TAILQ_NEXT(cur
, entry_list
);
1780 if (cur
->timeout
== PFTM_UNLINKED
) {
1782 } else if (pf_state_expires(cur
) <= pf_time_second()) {
1783 /* unlink and free expired state */
1784 pf_unlink_state(cur
);
1792 pf_tbladdr_setup(struct pf_ruleset
*rs
, struct pf_addr_wrap
*aw
)
1794 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1796 if (aw
->type
!= PF_ADDR_TABLE
) {
1799 if ((aw
->p
.tbl
= pfr_attach_table(rs
, aw
->v
.tblname
)) == NULL
) {
1806 pf_tbladdr_remove(struct pf_addr_wrap
*aw
)
1808 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1810 if (aw
->type
!= PF_ADDR_TABLE
|| aw
->p
.tbl
== NULL
) {
1813 pfr_detach_table(aw
->p
.tbl
);
1818 pf_tbladdr_copyout(struct pf_addr_wrap
*aw
)
1820 struct pfr_ktable
*kt
= aw
->p
.tbl
;
1822 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
1824 if (aw
->type
!= PF_ADDR_TABLE
|| kt
== NULL
) {
1827 if (!(kt
->pfrkt_flags
& PFR_TFLAG_ACTIVE
) && kt
->pfrkt_root
!= NULL
) {
1828 kt
= kt
->pfrkt_root
;
1831 aw
->p
.tblcnt
= (kt
->pfrkt_flags
& PFR_TFLAG_ACTIVE
) ?
1836 pf_print_addr(struct pf_addr
*addr
, sa_family_t af
)
1841 u_int32_t a
= ntohl(addr
->addr32
[0]);
1842 printf("%u.%u.%u.%u", (a
>> 24) & 255, (a
>> 16) & 255,
1843 (a
>> 8) & 255, a
& 255);
1850 u_int8_t i
, curstart
= 255, curend
= 0,
1851 maxstart
= 0, maxend
= 0;
1852 for (i
= 0; i
< 8; i
++) {
1853 if (!addr
->addr16
[i
]) {
1854 if (curstart
== 255) {
1861 if ((curend
- curstart
) >
1862 (maxend
- maxstart
)) {
1863 maxstart
= curstart
;
1870 for (i
= 0; i
< 8; i
++) {
1871 if (i
>= maxstart
&& i
<= maxend
) {
1873 if (i
== maxstart
) {
1882 b
= ntohs(addr
->addr16
[i
]);
1896 pf_print_sk_host(struct pf_state_host
*sh
, sa_family_t af
, int proto
,
1897 u_int8_t proto_variant
)
1899 pf_print_addr(&sh
->addr
, af
);
1903 if (sh
->xport
.spi
) {
1904 printf("[%08x]", ntohl(sh
->xport
.spi
));
1909 if (proto_variant
== PF_GRE_PPTP_VARIANT
) {
1910 printf("[%u]", ntohs(sh
->xport
.call_id
));
1916 printf("[%u]", ntohs(sh
->xport
.port
));
1925 pf_print_host(struct pf_addr
*addr
, u_int16_t p
, sa_family_t af
)
1927 pf_print_addr(addr
, af
);
1929 printf("[%u]", ntohs(p
));
1934 pf_print_state(struct pf_state
*s
)
1936 struct pf_state_key
*sk
= s
->state_key
;
1937 switch (sk
->proto
) {
1942 printf("GRE%u ", sk
->proto_variant
);
1953 case IPPROTO_ICMPV6
:
1957 printf("%u ", sk
->proto
);
1960 pf_print_sk_host(&sk
->lan
, sk
->af_lan
, sk
->proto
, sk
->proto_variant
);
1962 pf_print_sk_host(&sk
->gwy
, sk
->af_gwy
, sk
->proto
, sk
->proto_variant
);
1964 pf_print_sk_host(&sk
->ext_lan
, sk
->af_lan
, sk
->proto
,
1967 pf_print_sk_host(&sk
->ext_gwy
, sk
->af_gwy
, sk
->proto
,
1969 printf(" [lo=%u high=%u win=%u modulator=%u", s
->src
.seqlo
,
1970 s
->src
.seqhi
, s
->src
.max_win
, s
->src
.seqdiff
);
1971 if (s
->src
.wscale
&& s
->dst
.wscale
) {
1972 printf(" wscale=%u", s
->src
.wscale
& PF_WSCALE_MASK
);
1975 printf(" [lo=%u high=%u win=%u modulator=%u", s
->dst
.seqlo
,
1976 s
->dst
.seqhi
, s
->dst
.max_win
, s
->dst
.seqdiff
);
1977 if (s
->src
.wscale
&& s
->dst
.wscale
) {
1978 printf(" wscale=%u", s
->dst
.wscale
& PF_WSCALE_MASK
);
1981 printf(" %u:%u", s
->src
.state
, s
->dst
.state
);
1985 pf_print_flags(u_int8_t f
)
2016 #define PF_SET_SKIP_STEPS(i) \
2018 while (head[i] != cur) { \
2019 head[i]->skip[i].ptr = cur; \
2020 head[i] = TAILQ_NEXT(head[i], entries); \
2025 pf_calc_skip_steps(struct pf_rulequeue
*rules
)
2027 struct pf_rule
*cur
, *prev
, *head
[PF_SKIP_COUNT
];
2030 cur
= TAILQ_FIRST(rules
);
2032 for (i
= 0; i
< PF_SKIP_COUNT
; ++i
) {
2035 while (cur
!= NULL
) {
2036 if (cur
->kif
!= prev
->kif
|| cur
->ifnot
!= prev
->ifnot
) {
2037 PF_SET_SKIP_STEPS(PF_SKIP_IFP
);
2039 if (cur
->direction
!= prev
->direction
) {
2040 PF_SET_SKIP_STEPS(PF_SKIP_DIR
);
2042 if (cur
->af
!= prev
->af
) {
2043 PF_SET_SKIP_STEPS(PF_SKIP_AF
);
2045 if (cur
->proto
!= prev
->proto
) {
2046 PF_SET_SKIP_STEPS(PF_SKIP_PROTO
);
2048 if (cur
->src
.neg
!= prev
->src
.neg
||
2049 pf_addr_wrap_neq(&cur
->src
.addr
, &prev
->src
.addr
)) {
2050 PF_SET_SKIP_STEPS(PF_SKIP_SRC_ADDR
);
2053 union pf_rule_xport
*cx
= &cur
->src
.xport
;
2054 union pf_rule_xport
*px
= &prev
->src
.xport
;
2056 switch (cur
->proto
) {
2059 PF_SET_SKIP_STEPS(PF_SKIP_SRC_PORT
);
2062 if (prev
->proto
== IPPROTO_GRE
||
2063 prev
->proto
== IPPROTO_ESP
||
2064 cx
->range
.op
!= px
->range
.op
||
2065 cx
->range
.port
[0] != px
->range
.port
[0] ||
2066 cx
->range
.port
[1] != px
->range
.port
[1]) {
2067 PF_SET_SKIP_STEPS(PF_SKIP_SRC_PORT
);
2072 if (cur
->dst
.neg
!= prev
->dst
.neg
||
2073 pf_addr_wrap_neq(&cur
->dst
.addr
, &prev
->dst
.addr
)) {
2074 PF_SET_SKIP_STEPS(PF_SKIP_DST_ADDR
);
2077 union pf_rule_xport
*cx
= &cur
->dst
.xport
;
2078 union pf_rule_xport
*px
= &prev
->dst
.xport
;
2080 switch (cur
->proto
) {
2082 if (cur
->proto
!= prev
->proto
||
2083 cx
->call_id
!= px
->call_id
) {
2084 PF_SET_SKIP_STEPS(PF_SKIP_DST_PORT
);
2088 if (cur
->proto
!= prev
->proto
||
2089 cx
->spi
!= px
->spi
) {
2090 PF_SET_SKIP_STEPS(PF_SKIP_DST_PORT
);
2094 if (prev
->proto
== IPPROTO_GRE
||
2095 prev
->proto
== IPPROTO_ESP
||
2096 cx
->range
.op
!= px
->range
.op
||
2097 cx
->range
.port
[0] != px
->range
.port
[0] ||
2098 cx
->range
.port
[1] != px
->range
.port
[1]) {
2099 PF_SET_SKIP_STEPS(PF_SKIP_DST_PORT
);
2106 cur
= TAILQ_NEXT(cur
, entries
);
2108 for (i
= 0; i
< PF_SKIP_COUNT
; ++i
) {
2109 PF_SET_SKIP_STEPS(i
);
2114 pf_calc_state_key_flowhash(struct pf_state_key
*sk
)
2116 struct pf_flowhash_key fh
__attribute__((aligned(8)));
2117 uint32_t flowhash
= 0;
2119 bzero(&fh
, sizeof(fh
));
2120 if (PF_ALEQ(&sk
->lan
.addr
, &sk
->ext_lan
.addr
, sk
->af_lan
)) {
2121 bcopy(&sk
->lan
.addr
, &fh
.ap1
.addr
, sizeof(fh
.ap1
.addr
));
2122 bcopy(&sk
->ext_lan
.addr
, &fh
.ap2
.addr
, sizeof(fh
.ap2
.addr
));
2124 bcopy(&sk
->ext_lan
.addr
, &fh
.ap1
.addr
, sizeof(fh
.ap1
.addr
));
2125 bcopy(&sk
->lan
.addr
, &fh
.ap2
.addr
, sizeof(fh
.ap2
.addr
));
2127 if (sk
->lan
.xport
.spi
<= sk
->ext_lan
.xport
.spi
) {
2128 fh
.ap1
.xport
.spi
= sk
->lan
.xport
.spi
;
2129 fh
.ap2
.xport
.spi
= sk
->ext_lan
.xport
.spi
;
2131 fh
.ap1
.xport
.spi
= sk
->ext_lan
.xport
.spi
;
2132 fh
.ap2
.xport
.spi
= sk
->lan
.xport
.spi
;
2135 fh
.proto
= sk
->proto
;
2138 flowhash
= net_flowhash(&fh
, sizeof(fh
), pf_hash_seed
);
2139 if (flowhash
== 0) {
2140 /* try to get a non-zero flowhash */
2141 pf_hash_seed
= RandomULong();
2149 pf_addr_wrap_neq(struct pf_addr_wrap
*aw1
, struct pf_addr_wrap
*aw2
)
2151 if (aw1
->type
!= aw2
->type
) {
2154 switch (aw1
->type
) {
2155 case PF_ADDR_ADDRMASK
:
2157 if (PF_ANEQ(&aw1
->v
.a
.addr
, &aw2
->v
.a
.addr
, 0)) {
2160 if (PF_ANEQ(&aw1
->v
.a
.mask
, &aw2
->v
.a
.mask
, 0)) {
2164 case PF_ADDR_DYNIFTL
:
2165 return aw1
->p
.dyn
== NULL
|| aw2
->p
.dyn
== NULL
||
2166 aw1
->p
.dyn
->pfid_kt
!= aw2
->p
.dyn
->pfid_kt
;
2167 case PF_ADDR_NOROUTE
:
2168 case PF_ADDR_URPFFAILED
:
2171 return aw1
->p
.tbl
!= aw2
->p
.tbl
;
2172 case PF_ADDR_RTLABEL
:
2173 return aw1
->v
.rtlabel
!= aw2
->v
.rtlabel
;
2175 printf("invalid address type: %d\n", aw1
->type
);
2181 pf_cksum_fixup(u_int16_t cksum
, u_int16_t old
, u_int16_t
new, u_int8_t udp
)
2183 return nat464_cksum_fixup(cksum
, old
, new, udp
);
2187 * change ip address & port
2188 * dir : packet direction
2189 * a : address to be changed
2190 * p : port to be changed
2191 * ic : ip header checksum
2192 * pc : protocol checksum
2193 * an : new ip address
2195 * u : should be 1 if UDP packet else 0
2196 * af : address family of the packet
2197 * afn : address family of the new address
2198 * ua : should be 1 if ip address needs to be updated in the packet else
2199 * only the checksum is recalculated & updated.
2202 pf_change_ap(int dir
, pbuf_t
*pbuf
, struct pf_addr
*a
, u_int16_t
*p
,
2203 u_int16_t
*ic
, u_int16_t
*pc
, struct pf_addr
*an
, u_int16_t pn
,
2204 u_int8_t u
, sa_family_t af
, sa_family_t afn
, int ua
)
2209 PF_ACPY(&ao
, a
, af
);
2211 PF_ACPY(a
, an
, afn
);
2221 *ic
= pf_cksum_fixup(pf_cksum_fixup(*ic
,
2222 ao
.addr16
[0], an
->addr16
[0], 0),
2223 ao
.addr16
[1], an
->addr16
[1], 0);
2226 * If the packet is originated from an ALG on the NAT gateway
2227 * (source address is loopback or local), in which case the
2228 * TCP/UDP checksum field contains the pseudo header checksum
2229 * that's not yet complemented.
2230 * In that case we do not need to fixup the checksum for port
2231 * translation as the pseudo header checksum doesn't include ports.
2233 * A packet generated locally will have UDP/TCP CSUM flag
2234 * set (gets set in protocol output).
2236 * It should be noted that the fixup doesn't do anything if the
2239 if (dir
== PF_OUT
&& pbuf
!= NULL
&&
2240 (*pbuf
->pb_csum_flags
& (CSUM_TCP
| CSUM_UDP
))) {
2241 /* Pseudo-header checksum does not include ports */
2242 *pc
= ~pf_cksum_fixup(pf_cksum_fixup(~*pc
,
2243 ao
.addr16
[0], an
->addr16
[0], u
),
2244 ao
.addr16
[1], an
->addr16
[1], u
);
2247 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2248 *pc
, ao
.addr16
[0], an
->addr16
[0], u
),
2249 ao
.addr16
[1], an
->addr16
[1], u
),
2256 *pc
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2257 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2259 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(*pc
,
2260 ao
.addr16
[0], an
->addr16
[0], u
),
2261 ao
.addr16
[1], an
->addr16
[1], u
),
2262 0, an
->addr16
[2], u
),
2263 0, an
->addr16
[3], u
),
2264 0, an
->addr16
[4], u
),
2265 0, an
->addr16
[5], u
),
2266 0, an
->addr16
[6], u
),
2267 0, an
->addr16
[7], u
),
2279 * If the packet is originated from an ALG on the NAT gateway
2280 * (source address is loopback or local), in which case the
2281 * TCP/UDP checksum field contains the pseudo header checksum
2282 * that's not yet complemented.
2283 * A packet generated locally
2284 * will have UDP/TCP CSUM flag set (gets set in protocol
2287 if (dir
== PF_OUT
&& pbuf
!= NULL
&&
2288 (*pbuf
->pb_csum_flags
& (CSUM_TCPIPV6
|
2290 /* Pseudo-header checksum does not include ports */
2292 ~pf_cksum_fixup(pf_cksum_fixup(
2293 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2294 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2296 ao
.addr16
[0], an
->addr16
[0], u
),
2297 ao
.addr16
[1], an
->addr16
[1], u
),
2298 ao
.addr16
[2], an
->addr16
[2], u
),
2299 ao
.addr16
[3], an
->addr16
[3], u
),
2300 ao
.addr16
[4], an
->addr16
[4], u
),
2301 ao
.addr16
[5], an
->addr16
[5], u
),
2302 ao
.addr16
[6], an
->addr16
[6], u
),
2303 ao
.addr16
[7], an
->addr16
[7], u
);
2306 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2307 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2308 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2310 ao
.addr16
[0], an
->addr16
[0], u
),
2311 ao
.addr16
[1], an
->addr16
[1], u
),
2312 ao
.addr16
[2], an
->addr16
[2], u
),
2313 ao
.addr16
[3], an
->addr16
[3], u
),
2314 ao
.addr16
[4], an
->addr16
[4], u
),
2315 ao
.addr16
[5], an
->addr16
[5], u
),
2316 ao
.addr16
[6], an
->addr16
[6], u
),
2317 ao
.addr16
[7], an
->addr16
[7], u
),
2323 *pc
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2324 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2325 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(*pc
,
2326 ao
.addr16
[0], an
->addr16
[0], u
),
2327 ao
.addr16
[1], an
->addr16
[1], u
),
2328 ao
.addr16
[2], 0, u
),
2329 ao
.addr16
[3], 0, u
),
2330 ao
.addr16
[4], 0, u
),
2331 ao
.addr16
[5], 0, u
),
2332 ao
.addr16
[6], 0, u
),
2333 ao
.addr16
[7], 0, u
),
2344 /* Changes a u_int32_t. Uses a void * so there are no align restrictions */
2346 pf_change_a(void *a
, u_int16_t
*c
, u_int32_t an
, u_int8_t u
)
2350 memcpy(&ao
, a
, sizeof(ao
));
2351 memcpy(a
, &an
, sizeof(u_int32_t
));
2352 *c
= pf_cksum_fixup(pf_cksum_fixup(*c
, ao
/ 65536, an
/ 65536, u
),
2353 ao
% 65536, an
% 65536, u
);
2358 pf_change_a6(struct pf_addr
*a
, u_int16_t
*c
, struct pf_addr
*an
, u_int8_t u
)
2362 PF_ACPY(&ao
, a
, AF_INET6
);
2363 PF_ACPY(a
, an
, AF_INET6
);
2365 *c
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2366 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2367 pf_cksum_fixup(pf_cksum_fixup(*c
,
2368 ao
.addr16
[0], an
->addr16
[0], u
),
2369 ao
.addr16
[1], an
->addr16
[1], u
),
2370 ao
.addr16
[2], an
->addr16
[2], u
),
2371 ao
.addr16
[3], an
->addr16
[3], u
),
2372 ao
.addr16
[4], an
->addr16
[4], u
),
2373 ao
.addr16
[5], an
->addr16
[5], u
),
2374 ao
.addr16
[6], an
->addr16
[6], u
),
2375 ao
.addr16
[7], an
->addr16
[7], u
);
2379 pf_change_addr(struct pf_addr
*a
, u_int16_t
*c
, struct pf_addr
*an
, u_int8_t u
,
2380 sa_family_t af
, sa_family_t afn
)
2384 PF_ACPY(&ao
, a
, af
);
2385 PF_ACPY(a
, an
, afn
);
2391 pf_change_a(a
, c
, an
->v4addr
.s_addr
, u
);
2394 *c
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2395 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2396 pf_cksum_fixup(pf_cksum_fixup(*c
,
2397 ao
.addr16
[0], an
->addr16
[0], u
),
2398 ao
.addr16
[1], an
->addr16
[1], u
),
2399 0, an
->addr16
[2], u
),
2400 0, an
->addr16
[3], u
),
2401 0, an
->addr16
[4], u
),
2402 0, an
->addr16
[5], u
),
2403 0, an
->addr16
[6], u
),
2404 0, an
->addr16
[7], u
);
2411 *c
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2412 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2413 pf_cksum_fixup(pf_cksum_fixup(*c
,
2414 ao
.addr16
[0], an
->addr16
[0], u
),
2415 ao
.addr16
[1], an
->addr16
[1], u
),
2416 ao
.addr16
[2], 0, u
),
2417 ao
.addr16
[3], 0, u
),
2418 ao
.addr16
[4], 0, u
),
2419 ao
.addr16
[5], 0, u
),
2420 ao
.addr16
[6], 0, u
),
2421 ao
.addr16
[7], 0, u
);
2424 pf_change_a6(a
, c
, an
, u
);
2434 pf_change_icmp(struct pf_addr
*ia
, u_int16_t
*ip
, struct pf_addr
*oa
,
2435 struct pf_addr
*na
, u_int16_t np
, u_int16_t
*pc
, u_int16_t
*h2c
,
2436 u_int16_t
*ic
, u_int16_t
*hc
, u_int8_t u
, sa_family_t af
)
2438 struct pf_addr oia
, ooa
;
2440 PF_ACPY(&oia
, ia
, af
);
2441 PF_ACPY(&ooa
, oa
, af
);
2443 /* Change inner protocol port, fix inner protocol checksum. */
2445 u_int16_t oip
= *ip
;
2453 *pc
= pf_cksum_fixup(*pc
, oip
, *ip
, u
);
2455 *ic
= pf_cksum_fixup(*ic
, oip
, *ip
, 0);
2457 *ic
= pf_cksum_fixup(*ic
, opc
, *pc
, 0);
2460 /* Change inner ip address, fix inner ip and icmp checksums. */
2461 PF_ACPY(ia
, na
, af
);
2465 u_int32_t oh2c
= *h2c
;
2467 *h2c
= pf_cksum_fixup(pf_cksum_fixup(*h2c
,
2468 oia
.addr16
[0], ia
->addr16
[0], 0),
2469 oia
.addr16
[1], ia
->addr16
[1], 0);
2470 *ic
= pf_cksum_fixup(pf_cksum_fixup(*ic
,
2471 oia
.addr16
[0], ia
->addr16
[0], 0),
2472 oia
.addr16
[1], ia
->addr16
[1], 0);
2473 *ic
= pf_cksum_fixup(*ic
, oh2c
, *h2c
, 0);
2479 *ic
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2480 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2481 pf_cksum_fixup(pf_cksum_fixup(*ic
,
2482 oia
.addr16
[0], ia
->addr16
[0], u
),
2483 oia
.addr16
[1], ia
->addr16
[1], u
),
2484 oia
.addr16
[2], ia
->addr16
[2], u
),
2485 oia
.addr16
[3], ia
->addr16
[3], u
),
2486 oia
.addr16
[4], ia
->addr16
[4], u
),
2487 oia
.addr16
[5], ia
->addr16
[5], u
),
2488 oia
.addr16
[6], ia
->addr16
[6], u
),
2489 oia
.addr16
[7], ia
->addr16
[7], u
);
2493 /* Change outer ip address, fix outer ip or icmpv6 checksum. */
2494 PF_ACPY(oa
, na
, af
);
2498 *hc
= pf_cksum_fixup(pf_cksum_fixup(*hc
,
2499 ooa
.addr16
[0], oa
->addr16
[0], 0),
2500 ooa
.addr16
[1], oa
->addr16
[1], 0);
2505 *ic
= pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2506 pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
2507 pf_cksum_fixup(pf_cksum_fixup(*ic
,
2508 ooa
.addr16
[0], oa
->addr16
[0], u
),
2509 ooa
.addr16
[1], oa
->addr16
[1], u
),
2510 ooa
.addr16
[2], oa
->addr16
[2], u
),
2511 ooa
.addr16
[3], oa
->addr16
[3], u
),
2512 ooa
.addr16
[4], oa
->addr16
[4], u
),
2513 ooa
.addr16
[5], oa
->addr16
[5], u
),
2514 ooa
.addr16
[6], oa
->addr16
[6], u
),
2515 ooa
.addr16
[7], oa
->addr16
[7], u
);
2523 * Need to modulate the sequence numbers in the TCP SACK option
2524 * (credits to Krzysztof Pfaff for report and patch)
2527 pf_modulate_sack(pbuf_t
*pbuf
, int off
, struct pf_pdesc
*pd
,
2528 struct tcphdr
*th
, struct pf_state_peer
*dst
)
2530 int hlen
= (th
->th_off
<< 2) - sizeof(*th
), thoptlen
= hlen
;
2531 u_int8_t opts
[MAX_TCPOPTLEN
], *opt
= opts
;
2532 int copyback
= 0, i
, olen
;
2533 struct sackblk sack
;
2535 #define TCPOLEN_SACKLEN (TCPOLEN_SACK + 2)
2536 if (hlen
< TCPOLEN_SACKLEN
||
2537 !pf_pull_hdr(pbuf
, off
+ sizeof(*th
), opts
, hlen
, NULL
, NULL
, pd
->af
)) {
2541 while (hlen
>= TCPOLEN_SACKLEN
) {
2544 case TCPOPT_EOL
: /* FALLTHROUGH */
2553 if (olen
>= TCPOLEN_SACKLEN
) {
2554 for (i
= 2; i
+ TCPOLEN_SACK
<= olen
;
2555 i
+= TCPOLEN_SACK
) {
2556 memcpy(&sack
, &opt
[i
], sizeof(sack
));
2557 pf_change_a(&sack
.start
, &th
->th_sum
,
2558 htonl(ntohl(sack
.start
) -
2560 pf_change_a(&sack
.end
, &th
->th_sum
,
2561 htonl(ntohl(sack
.end
) -
2563 memcpy(&opt
[i
], &sack
, sizeof(sack
));
2565 copyback
= off
+ sizeof(*th
) + thoptlen
;
2578 if (pf_lazy_makewritable(pd
, pbuf
, copyback
) == NULL
) {
2581 pbuf_copy_back(pbuf
, off
+ sizeof(*th
), thoptlen
, opts
);
2589 * The following functions (pf_send_tcp and pf_send_icmp) are somewhat
2590 * special in that they originate "spurious" packets rather than
2591 * filter/NAT existing packets. As such, they're not a great fit for
2592 * the 'pbuf' shim, which assumes the underlying packet buffers are
2593 * allocated elsewhere.
2595 * Since these functions are rarely used, we'll carry on allocating mbufs
2596 * and passing them to the IP stack for eventual routing.
2599 pf_send_tcp(const struct pf_rule
*r
, sa_family_t af
,
2600 const struct pf_addr
*saddr
, const struct pf_addr
*daddr
,
2601 u_int16_t sport
, u_int16_t dport
, u_int32_t seq
, u_int32_t ack
,
2602 u_int8_t flags
, u_int16_t win
, u_int16_t mss
, u_int8_t ttl
, int tag
,
2603 u_int16_t rtag
, struct ether_header
*eh
, struct ifnet
*ifp
)
2605 #pragma unused(eh, ifp)
2609 struct ip
*h
= NULL
;
2612 struct ip6_hdr
*h6
= NULL
;
2614 struct tcphdr
*th
= NULL
;
2616 struct pf_mtag
*pf_mtag
;
2618 /* maximum segment size tcp option */
2619 tlen
= sizeof(struct tcphdr
);
2627 len
= sizeof(struct ip
) + tlen
;
2632 len
= sizeof(struct ip6_hdr
) + tlen
;
2636 panic("pf_send_tcp: not AF_INET or AF_INET6!");
2640 /* create outgoing mbuf */
2641 m
= m_gethdr(M_DONTWAIT
, MT_HEADER
);
2646 if ((pf_mtag
= pf_get_mtag(m
)) == NULL
) {
2651 pf_mtag
->pftag_flags
|= PF_TAG_GENERATED
;
2653 pf_mtag
->pftag_tag
= rtag
;
2655 if (r
!= NULL
&& PF_RTABLEID_IS_VALID(r
->rtableid
)) {
2656 pf_mtag
->pftag_rtableid
= r
->rtableid
;
2660 /* add hints for ecn */
2661 pf_mtag
->pftag_hdr
= mtod(m
, struct ip
*);
2662 /* record address family */
2663 pf_mtag
->pftag_flags
&= ~(PF_TAG_HDR_INET
| PF_TAG_HDR_INET6
);
2667 pf_mtag
->pftag_flags
|= PF_TAG_HDR_INET
;
2672 pf_mtag
->pftag_flags
|= PF_TAG_HDR_INET6
;
2678 /* indicate this is TCP */
2679 m
->m_pkthdr
.pkt_proto
= IPPROTO_TCP
;
2681 /* Make sure headers are 32-bit aligned */
2682 m
->m_data
+= max_linkhdr
;
2683 m
->m_pkthdr
.len
= m
->m_len
= len
;
2684 m
->m_pkthdr
.rcvif
= NULL
;
2685 bzero(m
->m_data
, len
);
2689 h
= mtod(m
, struct ip
*);
2691 /* IP header fields included in the TCP checksum */
2692 h
->ip_p
= IPPROTO_TCP
;
2693 h
->ip_len
= htons(tlen
);
2694 h
->ip_src
.s_addr
= saddr
->v4addr
.s_addr
;
2695 h
->ip_dst
.s_addr
= daddr
->v4addr
.s_addr
;
2697 th
= (struct tcphdr
*)(void *)((caddr_t
)h
+ sizeof(struct ip
));
2702 h6
= mtod(m
, struct ip6_hdr
*);
2704 /* IP header fields included in the TCP checksum */
2705 h6
->ip6_nxt
= IPPROTO_TCP
;
2706 h6
->ip6_plen
= htons(tlen
);
2707 memcpy(&h6
->ip6_src
, &saddr
->v6addr
, sizeof(struct in6_addr
));
2708 memcpy(&h6
->ip6_dst
, &daddr
->v6addr
, sizeof(struct in6_addr
));
2710 th
= (struct tcphdr
*)(void *)
2711 ((caddr_t
)h6
+ sizeof(struct ip6_hdr
));
2717 th
->th_sport
= sport
;
2718 th
->th_dport
= dport
;
2719 th
->th_seq
= htonl(seq
);
2720 th
->th_ack
= htonl(ack
);
2721 th
->th_off
= tlen
>> 2;
2722 th
->th_flags
= flags
;
2723 th
->th_win
= htons(win
);
2726 opt
= (char *)(th
+ 1);
2727 opt
[0] = TCPOPT_MAXSEG
;
2729 #if BYTE_ORDER != BIG_ENDIAN
2732 bcopy((caddr_t
)&mss
, (caddr_t
)(opt
+ 2), 2);
2741 th
->th_sum
= in_cksum(m
, len
);
2743 /* Finish the IP header */
2745 h
->ip_hl
= sizeof(*h
) >> 2;
2746 h
->ip_tos
= IPTOS_LOWDELAY
;
2748 * ip_output() expects ip_len and ip_off to be in host order.
2751 h
->ip_off
= (path_mtu_discovery
? IP_DF
: 0);
2752 h
->ip_ttl
= ttl
? ttl
: ip_defttl
;
2755 bzero(&ro
, sizeof(ro
));
2756 ip_output(m
, NULL
, &ro
, 0, NULL
, NULL
);
2763 struct route_in6 ro6
;
2766 th
->th_sum
= in6_cksum(m
, IPPROTO_TCP
,
2767 sizeof(struct ip6_hdr
), tlen
);
2769 h6
->ip6_vfc
|= IPV6_VERSION
;
2770 h6
->ip6_hlim
= IPV6_DEFHLIM
;
2772 bzero(&ro6
, sizeof(ro6
));
2773 ip6_output(m
, NULL
, &ro6
, 0, NULL
, NULL
, NULL
);
2774 ROUTE_RELEASE(&ro6
);
2782 pf_send_icmp(pbuf_t
*pbuf
, u_int8_t type
, u_int8_t code
, sa_family_t af
,
2786 struct pf_mtag
*pf_mtag
;
2788 m0
= pbuf_clone_to_mbuf(pbuf
);
2793 if ((pf_mtag
= pf_get_mtag(m0
)) == NULL
) {
2797 pf_mtag
->pftag_flags
|= PF_TAG_GENERATED
;
2799 if (PF_RTABLEID_IS_VALID(r
->rtableid
)) {
2800 pf_mtag
->pftag_rtableid
= r
->rtableid
;
2804 /* add hints for ecn */
2805 pf_mtag
->pftag_hdr
= mtod(m0
, struct ip
*);
2806 /* record address family */
2807 pf_mtag
->pftag_flags
&= ~(PF_TAG_HDR_INET
| PF_TAG_HDR_INET6
);
2811 pf_mtag
->pftag_flags
|= PF_TAG_HDR_INET
;
2812 m0
->m_pkthdr
.pkt_proto
= IPPROTO_ICMP
;
2817 pf_mtag
->pftag_flags
|= PF_TAG_HDR_INET6
;
2818 m0
->m_pkthdr
.pkt_proto
= IPPROTO_ICMPV6
;
2827 icmp_error(m0
, type
, code
, 0, 0);
2832 icmp6_error(m0
, type
, code
, 0);
2839 * Return 1 if the addresses a and b match (with mask m), otherwise return 0.
2840 * If n is 0, they match if they are equal. If n is != 0, they match if they
2844 pf_match_addr(u_int8_t n
, struct pf_addr
*a
, struct pf_addr
*m
,
2845 struct pf_addr
*b
, sa_family_t af
)
2852 if ((a
->addr32
[0] & m
->addr32
[0]) ==
2853 (b
->addr32
[0] & m
->addr32
[0])) {
2860 if (((a
->addr32
[0] & m
->addr32
[0]) ==
2861 (b
->addr32
[0] & m
->addr32
[0])) &&
2862 ((a
->addr32
[1] & m
->addr32
[1]) ==
2863 (b
->addr32
[1] & m
->addr32
[1])) &&
2864 ((a
->addr32
[2] & m
->addr32
[2]) ==
2865 (b
->addr32
[2] & m
->addr32
[2])) &&
2866 ((a
->addr32
[3] & m
->addr32
[3]) ==
2867 (b
->addr32
[3] & m
->addr32
[3]))) {
2889 * Return 1 if b <= a <= e, otherwise return 0.
2892 pf_match_addr_range(struct pf_addr
*b
, struct pf_addr
*e
,
2893 struct pf_addr
*a
, sa_family_t af
)
2898 if ((a
->addr32
[0] < b
->addr32
[0]) ||
2899 (a
->addr32
[0] > e
->addr32
[0])) {
2909 for (i
= 0; i
< 4; ++i
) {
2910 if (a
->addr32
[i
] > b
->addr32
[i
]) {
2912 } else if (a
->addr32
[i
] < b
->addr32
[i
]) {
2917 for (i
= 0; i
< 4; ++i
) {
2918 if (a
->addr32
[i
] < e
->addr32
[i
]) {
2920 } else if (a
->addr32
[i
] > e
->addr32
[i
]) {
2932 pf_match(u_int8_t op
, u_int32_t a1
, u_int32_t a2
, u_int32_t p
)
2936 return (p
> a1
) && (p
< a2
);
2938 return (p
< a1
) || (p
> a2
);
2940 return (p
>= a1
) && (p
<= a2
);
2954 return 0; /* never reached */
2958 pf_match_port(u_int8_t op
, u_int16_t a1
, u_int16_t a2
, u_int16_t p
)
2960 #if BYTE_ORDER != BIG_ENDIAN
2965 return pf_match(op
, a1
, a2
, p
);
2969 pf_match_xport(u_int8_t proto
, u_int8_t proto_variant
, union pf_rule_xport
*rx
,
2970 union pf_state_xport
*sx
)
2977 if (proto_variant
== PF_GRE_PPTP_VARIANT
) {
2978 d
= (rx
->call_id
== sx
->call_id
);
2983 d
= (rx
->spi
== sx
->spi
);
2989 case IPPROTO_ICMPV6
:
2991 d
= pf_match_port(rx
->range
.op
,
2992 rx
->range
.port
[0], rx
->range
.port
[1],
3006 pf_match_uid(u_int8_t op
, uid_t a1
, uid_t a2
, uid_t u
)
3008 if (u
== UID_MAX
&& op
!= PF_OP_EQ
&& op
!= PF_OP_NE
) {
3011 return pf_match(op
, a1
, a2
, u
);
3015 pf_match_gid(u_int8_t op
, gid_t a1
, gid_t a2
, gid_t g
)
3017 if (g
== GID_MAX
&& op
!= PF_OP_EQ
&& op
!= PF_OP_NE
) {
3020 return pf_match(op
, a1
, a2
, g
);
3024 pf_match_tag(struct pf_rule
*r
, struct pf_mtag
*pf_mtag
,
3028 *tag
= pf_mtag
->pftag_tag
;
3031 return (!r
->match_tag_not
&& r
->match_tag
== *tag
) ||
3032 (r
->match_tag_not
&& r
->match_tag
!= *tag
);
3036 pf_tag_packet(pbuf_t
*pbuf
, struct pf_mtag
*pf_mtag
, int tag
,
3037 unsigned int rtableid
, struct pf_pdesc
*pd
)
3039 if (tag
<= 0 && !PF_RTABLEID_IS_VALID(rtableid
) &&
3040 (pd
== NULL
|| !(pd
->pktflags
& PKTF_FLOW_ID
))) {
3044 if (pf_mtag
== NULL
&& (pf_mtag
= pf_get_mtag_pbuf(pbuf
)) == NULL
) {
3049 pf_mtag
->pftag_tag
= tag
;
3051 if (PF_RTABLEID_IS_VALID(rtableid
)) {
3052 pf_mtag
->pftag_rtableid
= rtableid
;
3054 if (pd
!= NULL
&& (pd
->pktflags
& PKTF_FLOW_ID
)) {
3055 *pbuf
->pb_flowsrc
= pd
->flowsrc
;
3056 *pbuf
->pb_flowid
= pd
->flowhash
;
3057 *pbuf
->pb_flags
|= pd
->pktflags
;
3058 *pbuf
->pb_proto
= pd
->proto
;
3065 pf_step_into_anchor(int *depth
, struct pf_ruleset
**rs
, int n
,
3066 struct pf_rule
**r
, struct pf_rule
**a
, int *match
)
3068 struct pf_anchor_stackframe
*f
;
3070 (*r
)->anchor
->match
= 0;
3074 if (*depth
>= (int)sizeof(pf_anchor_stack
) /
3075 (int)sizeof(pf_anchor_stack
[0])) {
3076 printf("pf_step_into_anchor: stack overflow\n");
3077 *r
= TAILQ_NEXT(*r
, entries
);
3079 } else if (*depth
== 0 && a
!= NULL
) {
3082 f
= pf_anchor_stack
+ (*depth
)++;
3085 if ((*r
)->anchor_wildcard
) {
3086 f
->parent
= &(*r
)->anchor
->children
;
3087 if ((f
->child
= RB_MIN(pf_anchor_node
, f
->parent
)) ==
3092 *rs
= &f
->child
->ruleset
;
3096 *rs
= &(*r
)->anchor
->ruleset
;
3098 *r
= TAILQ_FIRST((*rs
)->rules
[n
].active
.ptr
);
3102 pf_step_out_of_anchor(int *depth
, struct pf_ruleset
**rs
, int n
,
3103 struct pf_rule
**r
, struct pf_rule
**a
, int *match
)
3105 struct pf_anchor_stackframe
*f
;
3112 f
= pf_anchor_stack
+ *depth
- 1;
3113 if (f
->parent
!= NULL
&& f
->child
!= NULL
) {
3114 if (f
->child
->match
||
3115 (match
!= NULL
&& *match
)) {
3116 f
->r
->anchor
->match
= 1;
3121 f
->child
= RB_NEXT(pf_anchor_node
, f
->parent
, f
->child
);
3122 if (f
->child
!= NULL
) {
3123 *rs
= &f
->child
->ruleset
;
3124 *r
= TAILQ_FIRST((*rs
)->rules
[n
].active
.ptr
);
3133 if (*depth
== 0 && a
!= NULL
) {
3137 if (f
->r
->anchor
->match
|| (match
!= NULL
&& *match
)) {
3138 quick
= f
->r
->quick
;
3140 *r
= TAILQ_NEXT(f
->r
, entries
);
3141 } while (*r
== NULL
);
3148 pf_poolmask(struct pf_addr
*naddr
, struct pf_addr
*raddr
,
3149 struct pf_addr
*rmask
, struct pf_addr
*saddr
, sa_family_t af
)
3154 naddr
->addr32
[0] = (raddr
->addr32
[0] & rmask
->addr32
[0]) |
3155 ((rmask
->addr32
[0] ^ 0xffffffff) & saddr
->addr32
[0]);
3159 naddr
->addr32
[0] = (raddr
->addr32
[0] & rmask
->addr32
[0]) |
3160 ((rmask
->addr32
[0] ^ 0xffffffff) & saddr
->addr32
[0]);
3161 naddr
->addr32
[1] = (raddr
->addr32
[1] & rmask
->addr32
[1]) |
3162 ((rmask
->addr32
[1] ^ 0xffffffff) & saddr
->addr32
[1]);
3163 naddr
->addr32
[2] = (raddr
->addr32
[2] & rmask
->addr32
[2]) |
3164 ((rmask
->addr32
[2] ^ 0xffffffff) & saddr
->addr32
[2]);
3165 naddr
->addr32
[3] = (raddr
->addr32
[3] & rmask
->addr32
[3]) |
3166 ((rmask
->addr32
[3] ^ 0xffffffff) & saddr
->addr32
[3]);
3172 pf_addr_inc(struct pf_addr
*addr
, sa_family_t af
)
3177 addr
->addr32
[0] = htonl(ntohl(addr
->addr32
[0]) + 1);
3181 if (addr
->addr32
[3] == 0xffffffff) {
3182 addr
->addr32
[3] = 0;
3183 if (addr
->addr32
[2] == 0xffffffff) {
3184 addr
->addr32
[2] = 0;
3185 if (addr
->addr32
[1] == 0xffffffff) {
3186 addr
->addr32
[1] = 0;
3188 htonl(ntohl(addr
->addr32
[0]) + 1);
3191 htonl(ntohl(addr
->addr32
[1]) + 1);
3195 htonl(ntohl(addr
->addr32
[2]) + 1);
3199 htonl(ntohl(addr
->addr32
[3]) + 1);
3206 #define mix(a, b, c) \
3208 a -= b; a -= c; a ^= (c >> 13); \
3209 b -= c; b -= a; b ^= (a << 8); \
3210 c -= a; c -= b; c ^= (b >> 13); \
3211 a -= b; a -= c; a ^= (c >> 12); \
3212 b -= c; b -= a; b ^= (a << 16); \
3213 c -= a; c -= b; c ^= (b >> 5); \
3214 a -= b; a -= c; a ^= (c >> 3); \
3215 b -= c; b -= a; b ^= (a << 10); \
3216 c -= a; c -= b; c ^= (b >> 15); \
3220 * hash function based on bridge_hash in if_bridge.c
3223 pf_hash(struct pf_addr
*inaddr
, struct pf_addr
*hash
,
3224 struct pf_poolhashkey
*key
, sa_family_t af
)
3226 u_int32_t a
= 0x9e3779b9, b
= 0x9e3779b9, c
= key
->key32
[0];
3231 a
+= inaddr
->addr32
[0];
3234 hash
->addr32
[0] = c
+ key
->key32
[2];
3239 a
+= inaddr
->addr32
[0];
3240 b
+= inaddr
->addr32
[2];
3242 hash
->addr32
[0] = c
;
3243 a
+= inaddr
->addr32
[1];
3244 b
+= inaddr
->addr32
[3];
3247 hash
->addr32
[1] = c
;
3248 a
+= inaddr
->addr32
[2];
3249 b
+= inaddr
->addr32
[1];
3252 hash
->addr32
[2] = c
;
3253 a
+= inaddr
->addr32
[3];
3254 b
+= inaddr
->addr32
[0];
3257 hash
->addr32
[3] = c
;
3264 pf_map_addr(sa_family_t af
, struct pf_rule
*r
, struct pf_addr
*saddr
,
3265 struct pf_addr
*naddr
, struct pf_addr
*init_addr
, struct pf_src_node
**sn
)
3267 unsigned char hash
[16];
3268 struct pf_pool
*rpool
= &r
->rpool
;
3269 struct pf_addr
*raddr
= &rpool
->cur
->addr
.v
.a
.addr
;
3270 struct pf_addr
*rmask
= &rpool
->cur
->addr
.v
.a
.mask
;
3271 struct pf_pooladdr
*acur
= rpool
->cur
;
3272 struct pf_src_node k
;
3274 if (*sn
== NULL
&& r
->rpool
.opts
& PF_POOL_STICKYADDR
&&
3275 (r
->rpool
.opts
& PF_POOL_TYPEMASK
) != PF_POOL_NONE
) {
3277 PF_ACPY(&k
.addr
, saddr
, af
);
3278 if (r
->rule_flag
& PFRULE_RULESRCTRACK
||
3279 r
->rpool
.opts
& PF_POOL_STICKYADDR
) {
3284 pf_status
.scounters
[SCNT_SRC_NODE_SEARCH
]++;
3285 *sn
= RB_FIND(pf_src_tree
, &tree_src_tracking
, &k
);
3286 if (*sn
!= NULL
&& !PF_AZERO(&(*sn
)->raddr
, rpool
->af
)) {
3287 PF_ACPY(naddr
, &(*sn
)->raddr
, rpool
->af
);
3288 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
3289 printf("pf_map_addr: src tracking maps ");
3290 pf_print_host(&k
.addr
, 0, af
);
3292 pf_print_host(naddr
, 0, rpool
->af
);
3299 if (rpool
->cur
->addr
.type
== PF_ADDR_NOROUTE
) {
3302 if (rpool
->cur
->addr
.type
== PF_ADDR_DYNIFTL
) {
3303 if (rpool
->cur
->addr
.p
.dyn
== NULL
) {
3306 switch (rpool
->af
) {
3309 if (rpool
->cur
->addr
.p
.dyn
->pfid_acnt4
< 1 &&
3310 (rpool
->opts
& PF_POOL_TYPEMASK
) !=
3311 PF_POOL_ROUNDROBIN
) {
3314 raddr
= &rpool
->cur
->addr
.p
.dyn
->pfid_addr4
;
3315 rmask
= &rpool
->cur
->addr
.p
.dyn
->pfid_mask4
;
3320 if (rpool
->cur
->addr
.p
.dyn
->pfid_acnt6
< 1 &&
3321 (rpool
->opts
& PF_POOL_TYPEMASK
) !=
3322 PF_POOL_ROUNDROBIN
) {
3325 raddr
= &rpool
->cur
->addr
.p
.dyn
->pfid_addr6
;
3326 rmask
= &rpool
->cur
->addr
.p
.dyn
->pfid_mask6
;
3330 } else if (rpool
->cur
->addr
.type
== PF_ADDR_TABLE
) {
3331 if ((rpool
->opts
& PF_POOL_TYPEMASK
) != PF_POOL_ROUNDROBIN
) {
3332 return 1; /* unsupported */
3335 raddr
= &rpool
->cur
->addr
.v
.a
.addr
;
3336 rmask
= &rpool
->cur
->addr
.v
.a
.mask
;
3339 switch (rpool
->opts
& PF_POOL_TYPEMASK
) {
3341 PF_ACPY(naddr
, raddr
, rpool
->af
);
3343 case PF_POOL_BITMASK
:
3344 ASSERT(af
== rpool
->af
);
3345 PF_POOLMASK(naddr
, raddr
, rmask
, saddr
, af
);
3347 case PF_POOL_RANDOM
:
3348 if (init_addr
!= NULL
&& PF_AZERO(init_addr
, rpool
->af
)) {
3352 rpool
->counter
.addr32
[0] = htonl(random());
3357 if (rmask
->addr32
[3] != 0xffffffff) {
3358 rpool
->counter
.addr32
[3] =
3363 if (rmask
->addr32
[2] != 0xffffffff) {
3364 rpool
->counter
.addr32
[2] =
3369 if (rmask
->addr32
[1] != 0xffffffff) {
3370 rpool
->counter
.addr32
[1] =
3375 if (rmask
->addr32
[0] != 0xffffffff) {
3376 rpool
->counter
.addr32
[0] =
3382 PF_POOLMASK(naddr
, raddr
, rmask
, &rpool
->counter
,
3384 PF_ACPY(init_addr
, naddr
, rpool
->af
);
3386 PF_AINC(&rpool
->counter
, rpool
->af
);
3387 PF_POOLMASK(naddr
, raddr
, rmask
, &rpool
->counter
,
3391 case PF_POOL_SRCHASH
:
3392 ASSERT(af
== rpool
->af
);
3393 PF_POOLMASK(naddr
, raddr
, rmask
, saddr
, af
);
3394 pf_hash(saddr
, (struct pf_addr
*)(void *)&hash
,
3396 PF_POOLMASK(naddr
, raddr
, rmask
,
3397 (struct pf_addr
*)(void *)&hash
, af
);
3399 case PF_POOL_ROUNDROBIN
:
3400 if (rpool
->cur
->addr
.type
== PF_ADDR_TABLE
) {
3401 if (!pfr_pool_get(rpool
->cur
->addr
.p
.tbl
,
3402 &rpool
->tblidx
, &rpool
->counter
,
3403 &raddr
, &rmask
, rpool
->af
)) {
3406 } else if (rpool
->cur
->addr
.type
== PF_ADDR_DYNIFTL
) {
3407 if (rpool
->cur
->addr
.p
.dyn
!= NULL
&&
3408 !pfr_pool_get(rpool
->cur
->addr
.p
.dyn
->pfid_kt
,
3409 &rpool
->tblidx
, &rpool
->counter
,
3410 &raddr
, &rmask
, af
)) {
3413 } else if (pf_match_addr(0, raddr
, rmask
, &rpool
->counter
,
3419 if ((rpool
->cur
= TAILQ_NEXT(rpool
->cur
, entries
)) == NULL
) {
3420 rpool
->cur
= TAILQ_FIRST(&rpool
->list
);
3422 if (rpool
->cur
->addr
.type
== PF_ADDR_TABLE
) {
3424 if (pfr_pool_get(rpool
->cur
->addr
.p
.tbl
,
3425 &rpool
->tblidx
, &rpool
->counter
,
3426 &raddr
, &rmask
, rpool
->af
)) {
3427 /* table contains no address of type
3429 if (rpool
->cur
!= acur
) {
3434 } else if (rpool
->cur
->addr
.type
== PF_ADDR_DYNIFTL
) {
3436 if (rpool
->cur
->addr
.p
.dyn
== NULL
) {
3439 if (pfr_pool_get(rpool
->cur
->addr
.p
.dyn
->pfid_kt
,
3440 &rpool
->tblidx
, &rpool
->counter
,
3441 &raddr
, &rmask
, rpool
->af
)) {
3442 /* table contains no address of type
3444 if (rpool
->cur
!= acur
) {
3450 raddr
= &rpool
->cur
->addr
.v
.a
.addr
;
3451 rmask
= &rpool
->cur
->addr
.v
.a
.mask
;
3452 PF_ACPY(&rpool
->counter
, raddr
, rpool
->af
);
3456 PF_ACPY(naddr
, &rpool
->counter
, rpool
->af
);
3457 if (init_addr
!= NULL
&& PF_AZERO(init_addr
, rpool
->af
)) {
3458 PF_ACPY(init_addr
, naddr
, rpool
->af
);
3460 PF_AINC(&rpool
->counter
, rpool
->af
);
3464 PF_ACPY(&(*sn
)->raddr
, naddr
, rpool
->af
);
3467 if (pf_status
.debug
>= PF_DEBUG_MISC
&&
3468 (rpool
->opts
& PF_POOL_TYPEMASK
) != PF_POOL_NONE
) {
3469 printf("pf_map_addr: selected address ");
3470 pf_print_host(naddr
, 0, rpool
->af
);
3478 pf_get_sport(struct pf_pdesc
*pd
, struct pfi_kif
*kif
, struct pf_rule
*r
,
3479 struct pf_addr
*saddr
, union pf_state_xport
*sxport
, struct pf_addr
*daddr
,
3480 union pf_state_xport
*dxport
, struct pf_addr
*naddr
,
3481 union pf_state_xport
*nxport
, struct pf_src_node
**sn
3485 struct pf_state_key_cmp key
;
3486 struct pf_addr init_addr
;
3488 sa_family_t af
= pd
->af
;
3489 u_int8_t proto
= pd
->proto
;
3490 unsigned int low
= r
->rpool
.proxy_port
[0];
3491 unsigned int high
= r
->rpool
.proxy_port
[1];
3493 bzero(&init_addr
, sizeof(init_addr
));
3494 if (pf_map_addr(af
, r
, saddr
, naddr
, &init_addr
, sn
)) {
3498 if (proto
== IPPROTO_ICMP
) {
3504 return 0; /* No output necessary. */
3506 /*--- Special mapping rules for UDP ---*/
3507 if (proto
== IPPROTO_UDP
) {
3508 /*--- Never float IKE source port ---*/
3509 if (ntohs(sxport
->port
) == PF_IKE_PORT
) {
3510 nxport
->port
= sxport
->port
;
3514 /*--- Apply exterior mapping options ---*/
3515 if (r
->extmap
> PF_EXTMAP_APD
) {
3518 TAILQ_FOREACH(s
, &state_list
, entry_list
) {
3519 struct pf_state_key
*sk
= s
->state_key
;
3523 if (s
->nat_rule
.ptr
!= r
) {
3526 if (sk
->proto
!= IPPROTO_UDP
||
3530 if (sk
->lan
.xport
.port
!= sxport
->port
) {
3533 if (PF_ANEQ(&sk
->lan
.addr
, saddr
, af
)) {
3536 if (r
->extmap
< PF_EXTMAP_EI
&&
3537 PF_ANEQ(&sk
->ext_lan
.addr
, daddr
, af
)) {
3541 nxport
->port
= sk
->gwy
.xport
.port
;
3545 } else if (proto
== IPPROTO_TCP
) {
3548 * APPLE MODIFICATION: <rdar://problem/6546358>
3549 * Fix allows....NAT to use a single binding for TCP session
3550 * with same source IP and source port
3552 TAILQ_FOREACH(s
, &state_list
, entry_list
) {
3553 struct pf_state_key
* sk
= s
->state_key
;
3557 if (s
->nat_rule
.ptr
!= r
) {
3560 if (sk
->proto
!= IPPROTO_TCP
|| sk
->af_lan
!= af
) {
3563 if (sk
->lan
.xport
.port
!= sxport
->port
) {
3566 if (!(PF_AEQ(&sk
->lan
.addr
, saddr
, af
))) {
3569 nxport
->port
= sk
->gwy
.xport
.port
;
3576 PF_ACPY(&key
.ext_gwy
.addr
, daddr
, key
.af_gwy
);
3577 PF_ACPY(&key
.gwy
.addr
, naddr
, key
.af_gwy
);
3580 key
.proto_variant
= r
->extfilter
;
3583 key
.proto_variant
= 0;
3587 key
.ext_gwy
.xport
= *dxport
;
3589 memset(&key
.ext_gwy
.xport
, 0,
3590 sizeof(key
.ext_gwy
.xport
));
3593 * port search; start random, step;
3594 * similar 2 portloop in in_pcbbind
3596 if (!(proto
== IPPROTO_TCP
|| proto
== IPPROTO_UDP
||
3597 proto
== IPPROTO_ICMP
)) {
3599 key
.gwy
.xport
= *dxport
;
3601 memset(&key
.gwy
.xport
, 0,
3602 sizeof(key
.gwy
.xport
));
3604 if (pf_find_state_all(&key
, PF_IN
, NULL
) == NULL
) {
3607 } else if (low
== 0 && high
== 0) {
3608 key
.gwy
.xport
= *nxport
;
3609 if (pf_find_state_all(&key
, PF_IN
, NULL
) == NULL
3613 } else if (low
== high
) {
3614 key
.gwy
.xport
.port
= htons(low
);
3615 if (pf_find_state_all(&key
, PF_IN
, NULL
) == NULL
3617 nxport
->port
= htons(low
);
3628 cut
= htonl(random()) % (1 + high
- low
) + low
;
3629 /* low <= cut <= high */
3630 for (tmp
= cut
; tmp
<= high
; ++(tmp
)) {
3631 key
.gwy
.xport
.port
= htons(tmp
);
3632 if (pf_find_state_all(&key
, PF_IN
, NULL
) == NULL
3634 nxport
->port
= htons(tmp
);
3638 for (tmp
= cut
- 1; tmp
>= low
; --(tmp
)) {
3639 key
.gwy
.xport
.port
= htons(tmp
);
3640 if (pf_find_state_all(&key
, PF_IN
, NULL
) == NULL
3642 nxport
->port
= htons(tmp
);
3648 switch (r
->rpool
.opts
& PF_POOL_TYPEMASK
) {
3649 case PF_POOL_RANDOM
:
3650 case PF_POOL_ROUNDROBIN
:
3651 if (pf_map_addr(af
, r
, saddr
, naddr
, &init_addr
, sn
)) {
3656 case PF_POOL_SRCHASH
:
3657 case PF_POOL_BITMASK
:
3661 } while (!PF_AEQ(&init_addr
, naddr
, af
));
3663 return 1; /* none available */
3666 static struct pf_rule
*
3667 pf_match_translation(struct pf_pdesc
*pd
, pbuf_t
*pbuf
, int off
,
3668 int direction
, struct pfi_kif
*kif
, struct pf_addr
*saddr
,
3669 union pf_state_xport
*sxport
, struct pf_addr
*daddr
,
3670 union pf_state_xport
*dxport
, int rs_num
)
3672 struct pf_rule
*r
, *rm
= NULL
;
3673 struct pf_ruleset
*ruleset
= NULL
;
3675 unsigned int rtableid
= IFSCOPE_NONE
;
3678 r
= TAILQ_FIRST(pf_main_ruleset
.rules
[rs_num
].active
.ptr
);
3679 while (r
&& rm
== NULL
) {
3680 struct pf_rule_addr
*src
= NULL
, *dst
= NULL
;
3681 struct pf_addr_wrap
*xdst
= NULL
;
3682 struct pf_addr_wrap
*xsrc
= NULL
;
3683 union pf_rule_xport rdrxport
;
3685 if (r
->action
== PF_BINAT
&& direction
== PF_IN
) {
3687 if (r
->rpool
.cur
!= NULL
) {
3688 xdst
= &r
->rpool
.cur
->addr
;
3690 } else if (r
->action
== PF_RDR
&& direction
== PF_OUT
) {
3693 if (r
->rpool
.cur
!= NULL
) {
3694 rdrxport
.range
.op
= PF_OP_EQ
;
3695 rdrxport
.range
.port
[0] =
3696 htons(r
->rpool
.proxy_port
[0]);
3697 xsrc
= &r
->rpool
.cur
->addr
;
3705 if (pfi_kif_match(r
->kif
, kif
) == r
->ifnot
) {
3706 r
= r
->skip
[PF_SKIP_IFP
].ptr
;
3707 } else if (r
->direction
&& r
->direction
!= direction
) {
3708 r
= r
->skip
[PF_SKIP_DIR
].ptr
;
3709 } else if (r
->af
&& r
->af
!= pd
->af
) {
3710 r
= r
->skip
[PF_SKIP_AF
].ptr
;
3711 } else if (r
->proto
&& r
->proto
!= pd
->proto
) {
3712 r
= r
->skip
[PF_SKIP_PROTO
].ptr
;
3713 } else if (xsrc
&& PF_MISMATCHAW(xsrc
, saddr
, pd
->af
, 0, NULL
)) {
3714 r
= TAILQ_NEXT(r
, entries
);
3715 } else if (!xsrc
&& PF_MISMATCHAW(&src
->addr
, saddr
, pd
->af
,
3717 r
= TAILQ_NEXT(r
, entries
);
3718 } else if (xsrc
&& (!rdrxport
.range
.port
[0] ||
3719 !pf_match_xport(r
->proto
, r
->proto_variant
, &rdrxport
,
3721 r
= TAILQ_NEXT(r
, entries
);
3722 } else if (!xsrc
&& !pf_match_xport(r
->proto
,
3723 r
->proto_variant
, &src
->xport
, sxport
)) {
3724 r
= r
->skip
[src
== &r
->src
? PF_SKIP_SRC_PORT
:
3725 PF_SKIP_DST_PORT
].ptr
;
3726 } else if (dst
!= NULL
&&
3727 PF_MISMATCHAW(&dst
->addr
, daddr
, pd
->af
, dst
->neg
, NULL
)) {
3728 r
= r
->skip
[PF_SKIP_DST_ADDR
].ptr
;
3729 } else if (xdst
!= NULL
&& PF_MISMATCHAW(xdst
, daddr
, pd
->af
,
3731 r
= TAILQ_NEXT(r
, entries
);
3732 } else if (dst
&& !pf_match_xport(r
->proto
, r
->proto_variant
,
3733 &dst
->xport
, dxport
)) {
3734 r
= r
->skip
[PF_SKIP_DST_PORT
].ptr
;
3735 } else if (r
->match_tag
&& !pf_match_tag(r
, pd
->pf_mtag
, &tag
)) {
3736 r
= TAILQ_NEXT(r
, entries
);
3737 } else if (r
->os_fingerprint
!= PF_OSFP_ANY
&& (pd
->proto
!=
3738 IPPROTO_TCP
|| !pf_osfp_match(pf_osfp_fingerprint(pd
, pbuf
,
3739 off
, pd
->hdr
.tcp
), r
->os_fingerprint
))) {
3740 r
= TAILQ_NEXT(r
, entries
);
3745 if (PF_RTABLEID_IS_VALID(r
->rtableid
)) {
3746 rtableid
= r
->rtableid
;
3748 if (r
->anchor
== NULL
) {
3751 pf_step_into_anchor(&asd
, &ruleset
, rs_num
,
3756 pf_step_out_of_anchor(&asd
, &ruleset
, rs_num
, &r
,
3760 if (pf_tag_packet(pbuf
, pd
->pf_mtag
, tag
, rtableid
, NULL
)) {
3763 if (rm
!= NULL
&& (rm
->action
== PF_NONAT
||
3764 rm
->action
== PF_NORDR
|| rm
->action
== PF_NOBINAT
||
3765 rm
->action
== PF_NONAT64
)) {
3772 * Get address translation information for NAT/BINAT/RDR
3773 * pd : pf packet descriptor
3774 * pbuf : pbuf holding the packet
3775 * off : offset to protocol header
3776 * direction : direction of packet
3777 * kif : pf interface info obtained from the packet's recv interface
3778 * sn : source node pointer (output)
3779 * saddr : packet source address
3780 * sxport : packet source port
3781 * daddr : packet destination address
3782 * dxport : packet destination port
3783 * nsxport : translated source port (output)
3785 * Translated source & destination address are updated in pd->nsaddr &
3788 static struct pf_rule
*
3789 pf_get_translation_aux(struct pf_pdesc
*pd
, pbuf_t
*pbuf
, int off
,
3790 int direction
, struct pfi_kif
*kif
, struct pf_src_node
**sn
,
3791 struct pf_addr
*saddr
, union pf_state_xport
*sxport
, struct pf_addr
*daddr
,
3792 union pf_state_xport
*dxport
, union pf_state_xport
*nsxport
3795 struct pf_rule
*r
= NULL
;
3798 if (direction
== PF_OUT
) {
3799 r
= pf_match_translation(pd
, pbuf
, off
, direction
, kif
, saddr
,
3800 sxport
, daddr
, dxport
, PF_RULESET_BINAT
);
3802 r
= pf_match_translation(pd
, pbuf
, off
, direction
, kif
,
3803 saddr
, sxport
, daddr
, dxport
, PF_RULESET_RDR
);
3806 r
= pf_match_translation(pd
, pbuf
, off
, direction
, kif
,
3807 saddr
, sxport
, daddr
, dxport
, PF_RULESET_NAT
);
3810 r
= pf_match_translation(pd
, pbuf
, off
, direction
, kif
, saddr
,
3811 sxport
, daddr
, dxport
, PF_RULESET_RDR
);
3813 r
= pf_match_translation(pd
, pbuf
, off
, direction
, kif
,
3814 saddr
, sxport
, daddr
, dxport
, PF_RULESET_BINAT
);
3819 struct pf_addr
*nsaddr
= &pd
->naddr
;
3820 struct pf_addr
*ndaddr
= &pd
->ndaddr
;
3825 switch (r
->action
) {
3834 * we do NAT64 on incoming path and we call ip_input
3835 * which asserts receive interface to be not NULL.
3836 * The below check is to prevent NAT64 action on any
3837 * packet generated by local entity using synthesized
3840 if ((r
->action
== PF_NAT64
) && (direction
== PF_OUT
)) {
3844 if (pf_get_sport(pd
, kif
, r
, saddr
, sxport
, daddr
,
3845 dxport
, nsaddr
, nsxport
, sn
3847 DPFPRINTF(PF_DEBUG_MISC
,
3848 ("pf: NAT proxy port allocation "
3850 r
->rpool
.proxy_port
[0],
3851 r
->rpool
.proxy_port
[1]));
3855 * For NAT64 the destination IPv4 address is derived
3856 * from the last 32 bits of synthesized IPv6 address
3858 if (r
->action
== PF_NAT64
) {
3859 ndaddr
->v4addr
.s_addr
= daddr
->addr32
[3];
3864 switch (direction
) {
3866 if (r
->rpool
.cur
->addr
.type
==
3868 if (r
->rpool
.cur
->addr
.p
.dyn
== NULL
) {
3874 if (r
->rpool
.cur
->addr
.p
.dyn
->
3879 &r
->rpool
.cur
->addr
.p
.dyn
->
3881 &r
->rpool
.cur
->addr
.p
.dyn
->
3888 if (r
->rpool
.cur
->addr
.p
.dyn
->
3893 &r
->rpool
.cur
->addr
.p
.dyn
->
3895 &r
->rpool
.cur
->addr
.p
.dyn
->
3903 &r
->rpool
.cur
->addr
.v
.a
.addr
,
3904 &r
->rpool
.cur
->addr
.v
.a
.mask
,
3909 if (r
->src
.addr
.type
== PF_ADDR_DYNIFTL
) {
3910 if (r
->src
.addr
.p
.dyn
== NULL
) {
3916 if (r
->src
.addr
.p
.dyn
->
3921 &r
->src
.addr
.p
.dyn
->
3923 &r
->src
.addr
.p
.dyn
->
3930 if (r
->src
.addr
.p
.dyn
->
3935 &r
->src
.addr
.p
.dyn
->
3937 &r
->src
.addr
.p
.dyn
->
3945 &r
->src
.addr
.v
.a
.addr
,
3946 &r
->src
.addr
.v
.a
.mask
, daddr
,
3953 switch (direction
) {
3955 if (r
->dst
.addr
.type
== PF_ADDR_DYNIFTL
) {
3956 if (r
->dst
.addr
.p
.dyn
== NULL
) {
3962 if (r
->dst
.addr
.p
.dyn
->
3967 &r
->dst
.addr
.p
.dyn
->
3969 &r
->dst
.addr
.p
.dyn
->
3976 if (r
->dst
.addr
.p
.dyn
->
3981 &r
->dst
.addr
.p
.dyn
->
3983 &r
->dst
.addr
.p
.dyn
->
3991 &r
->dst
.addr
.v
.a
.addr
,
3992 &r
->dst
.addr
.v
.a
.mask
,
3995 if (nsxport
&& r
->dst
.xport
.range
.port
[0]) {
3997 r
->dst
.xport
.range
.port
[0];
4001 if (pf_map_addr(pd
->af
, r
, saddr
,
4002 ndaddr
, NULL
, sn
)) {
4005 if ((r
->rpool
.opts
& PF_POOL_TYPEMASK
) ==
4007 PF_POOLMASK(ndaddr
, ndaddr
,
4008 &r
->rpool
.cur
->addr
.v
.a
.mask
, daddr
,
4012 if (nsxport
&& dxport
) {
4013 if (r
->rpool
.proxy_port
[1]) {
4014 u_int32_t tmp_nport
;
4017 ((ntohs(dxport
->port
) -
4018 ntohs(r
->dst
.xport
.range
.
4020 (r
->rpool
.proxy_port
[1] -
4021 r
->rpool
.proxy_port
[0] +
4022 1)) + r
->rpool
.proxy_port
[0];
4024 /* wrap around if necessary */
4025 if (tmp_nport
> 65535) {
4029 htons((u_int16_t
)tmp_nport
);
4030 } else if (r
->rpool
.proxy_port
[0]) {
4031 nsxport
->port
= htons(r
->rpool
.
4048 pf_socket_lookup(int direction
, struct pf_pdesc
*pd
)
4050 struct pf_addr
*saddr
, *daddr
;
4051 u_int16_t sport
, dport
;
4052 struct inpcbinfo
*pi
;
4058 pd
->lookup
.uid
= UID_MAX
;
4059 pd
->lookup
.gid
= GID_MAX
;
4060 pd
->lookup
.pid
= NO_PID
;
4062 switch (pd
->proto
) {
4064 if (pd
->hdr
.tcp
== NULL
) {
4067 sport
= pd
->hdr
.tcp
->th_sport
;
4068 dport
= pd
->hdr
.tcp
->th_dport
;
4072 if (pd
->hdr
.udp
== NULL
) {
4075 sport
= pd
->hdr
.udp
->uh_sport
;
4076 dport
= pd
->hdr
.udp
->uh_dport
;
4082 if (direction
== PF_IN
) {
4097 inp
= in_pcblookup_hash_exists(pi
, saddr
->v4addr
, sport
, daddr
->v4addr
, dport
,
4098 0, &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4101 struct in6_addr s6
, d6
;
4103 memset(&s6
, 0, sizeof(s6
));
4104 s6
.s6_addr16
[5] = htons(0xffff);
4105 memcpy(&s6
.s6_addr32
[3], &saddr
->v4addr
,
4106 sizeof(saddr
->v4addr
));
4108 memset(&d6
, 0, sizeof(d6
));
4109 d6
.s6_addr16
[5] = htons(0xffff);
4110 memcpy(&d6
.s6_addr32
[3], &daddr
->v4addr
,
4111 sizeof(daddr
->v4addr
));
4113 inp
= in6_pcblookup_hash_exists(pi
, &s6
, sport
,
4114 &d6
, dport
, 0, &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4116 inp
= in_pcblookup_hash_exists(pi
, saddr
->v4addr
, sport
,
4117 daddr
->v4addr
, dport
, INPLOOKUP_WILDCARD
, &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4119 inp
= in6_pcblookup_hash_exists(pi
, &s6
, sport
,
4120 &d6
, dport
, INPLOOKUP_WILDCARD
,
4121 &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4130 inp
= in_pcblookup_hash_exists(pi
, saddr
->v4addr
, sport
,
4131 daddr
->v4addr
, dport
, INPLOOKUP_WILDCARD
,
4132 &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4142 inp
= in6_pcblookup_hash_exists(pi
, &saddr
->v6addr
, sport
, &daddr
->v6addr
,
4143 dport
, 0, &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4145 inp
= in6_pcblookup_hash_exists(pi
, &saddr
->v6addr
, sport
,
4146 &daddr
->v6addr
, dport
, INPLOOKUP_WILDCARD
,
4147 &pd
->lookup
.uid
, &pd
->lookup
.gid
, NULL
);
4163 pf_get_wscale(pbuf_t
*pbuf
, int off
, u_int16_t th_off
, sa_family_t af
)
4167 u_int8_t
*opt
, optlen
;
4168 u_int8_t wscale
= 0;
4170 hlen
= th_off
<< 2; /* hlen <= sizeof (hdr) */
4171 if (hlen
<= (int)sizeof(struct tcphdr
)) {
4174 if (!pf_pull_hdr(pbuf
, off
, hdr
, hlen
, NULL
, NULL
, af
)) {
4177 opt
= hdr
+ sizeof(struct tcphdr
);
4178 hlen
-= sizeof(struct tcphdr
);
4188 if (wscale
> TCP_MAX_WINSHIFT
) {
4189 wscale
= TCP_MAX_WINSHIFT
;
4191 wscale
|= PF_WSCALE_FLAG
;
4207 pf_get_mss(pbuf_t
*pbuf
, int off
, u_int16_t th_off
, sa_family_t af
)
4211 u_int8_t
*opt
, optlen
;
4212 u_int16_t mss
= tcp_mssdflt
;
4214 hlen
= th_off
<< 2; /* hlen <= sizeof (hdr) */
4215 if (hlen
<= (int)sizeof(struct tcphdr
)) {
4218 if (!pf_pull_hdr(pbuf
, off
, hdr
, hlen
, NULL
, NULL
, af
)) {
4221 opt
= hdr
+ sizeof(struct tcphdr
);
4222 hlen
-= sizeof(struct tcphdr
);
4223 while (hlen
>= TCPOLEN_MAXSEG
) {
4231 bcopy((caddr_t
)(opt
+ 2), (caddr_t
)&mss
, 2);
4232 #if BYTE_ORDER != BIG_ENDIAN
4250 pf_calc_mss(struct pf_addr
*addr
, sa_family_t af
, u_int16_t offer
)
4253 struct sockaddr_in
*dst
;
4257 struct sockaddr_in6
*dst6
;
4258 struct route_in6 ro6
;
4260 struct rtentry
*rt
= NULL
;
4262 u_int16_t mss
= tcp_mssdflt
;
4267 hlen
= sizeof(struct ip
);
4268 bzero(&ro
, sizeof(ro
));
4269 dst
= (struct sockaddr_in
*)(void *)&ro
.ro_dst
;
4270 dst
->sin_family
= AF_INET
;
4271 dst
->sin_len
= sizeof(*dst
);
4272 dst
->sin_addr
= addr
->v4addr
;
4279 hlen
= sizeof(struct ip6_hdr
);
4280 bzero(&ro6
, sizeof(ro6
));
4281 dst6
= (struct sockaddr_in6
*)(void *)&ro6
.ro_dst
;
4282 dst6
->sin6_family
= AF_INET6
;
4283 dst6
->sin6_len
= sizeof(*dst6
);
4284 dst6
->sin6_addr
= addr
->v6addr
;
4285 rtalloc((struct route
*)&ro
);
4290 panic("pf_calc_mss: not AF_INET or AF_INET6!");
4294 if (rt
&& rt
->rt_ifp
) {
4295 /* This is relevant only for PF SYN Proxy */
4296 int interface_mtu
= rt
->rt_ifp
->if_mtu
;
4298 if (af
== AF_INET
&&
4299 INTF_ADJUST_MTU_FOR_CLAT46(rt
->rt_ifp
)) {
4300 interface_mtu
= IN6_LINKMTU(rt
->rt_ifp
);
4301 /* Further adjust the size for CLAT46 expansion */
4302 interface_mtu
-= CLAT46_HDR_EXPANSION_OVERHD
;
4304 mss
= interface_mtu
- hlen
- sizeof(struct tcphdr
);
4305 mss
= max(tcp_mssdflt
, mss
);
4308 mss
= min(mss
, offer
);
4309 mss
= max(mss
, 64); /* sanity - at least max opt space */
4314 pf_set_rt_ifp(struct pf_state
*s
, struct pf_addr
*saddr
, sa_family_t af
)
4316 struct pf_rule
*r
= s
->rule
.ptr
;
4320 if (!r
->rt
|| r
->rt
== PF_FASTROUTE
) {
4323 if ((af
== AF_INET
) || (af
== AF_INET6
)) {
4324 pf_map_addr(af
, r
, saddr
, &s
->rt_addr
, NULL
,
4326 s
->rt_kif
= r
->rpool
.cur
->kif
;
4333 pf_attach_state(struct pf_state_key
*sk
, struct pf_state
*s
, int tail
)
4338 /* list is sorted, if-bound states before floating */
4340 TAILQ_INSERT_TAIL(&sk
->states
, s
, next
);
4342 TAILQ_INSERT_HEAD(&sk
->states
, s
, next
);
4347 pf_detach_state(struct pf_state
*s
, int flags
)
4349 struct pf_state_key
*sk
= s
->state_key
;
4355 s
->state_key
= NULL
;
4356 TAILQ_REMOVE(&sk
->states
, s
, next
);
4357 if (--sk
->refcnt
== 0) {
4358 if (!(flags
& PF_DT_SKIP_EXTGWY
)) {
4359 RB_REMOVE(pf_state_tree_ext_gwy
,
4360 &pf_statetbl_ext_gwy
, sk
);
4362 if (!(flags
& PF_DT_SKIP_LANEXT
)) {
4363 RB_REMOVE(pf_state_tree_lan_ext
,
4364 &pf_statetbl_lan_ext
, sk
);
4366 if (sk
->app_state
) {
4367 pool_put(&pf_app_state_pl
, sk
->app_state
);
4369 pool_put(&pf_state_key_pl
, sk
);
4373 struct pf_state_key
*
4374 pf_alloc_state_key(struct pf_state
*s
, struct pf_state_key
*psk
)
4376 struct pf_state_key
*sk
;
4378 if ((sk
= pool_get(&pf_state_key_pl
, PR_WAITOK
)) == NULL
) {
4381 bzero(sk
, sizeof(*sk
));
4382 TAILQ_INIT(&sk
->states
);
4383 pf_attach_state(sk
, s
, 0);
4385 /* initialize state key from psk, if provided */
4387 bcopy(&psk
->lan
, &sk
->lan
, sizeof(sk
->lan
));
4388 bcopy(&psk
->gwy
, &sk
->gwy
, sizeof(sk
->gwy
));
4389 bcopy(&psk
->ext_lan
, &sk
->ext_lan
, sizeof(sk
->ext_lan
));
4390 bcopy(&psk
->ext_gwy
, &sk
->ext_gwy
, sizeof(sk
->ext_gwy
));
4391 sk
->af_lan
= psk
->af_lan
;
4392 sk
->af_gwy
= psk
->af_gwy
;
4393 sk
->proto
= psk
->proto
;
4394 sk
->direction
= psk
->direction
;
4395 sk
->proto_variant
= psk
->proto_variant
;
4396 VERIFY(psk
->app_state
== NULL
);
4397 sk
->flowsrc
= psk
->flowsrc
;
4398 sk
->flowhash
= psk
->flowhash
;
4399 /* don't touch tree entries, states and refcnt on sk */
4406 pf_tcp_iss(struct pf_pdesc
*pd
)
4409 u_int32_t digest
[4];
4411 if (pf_tcp_secret_init
== 0) {
4412 read_frandom(pf_tcp_secret
, sizeof(pf_tcp_secret
));
4413 MD5Init(&pf_tcp_secret_ctx
);
4414 MD5Update(&pf_tcp_secret_ctx
, pf_tcp_secret
,
4415 sizeof(pf_tcp_secret
));
4416 pf_tcp_secret_init
= 1;
4418 ctx
= pf_tcp_secret_ctx
;
4420 MD5Update(&ctx
, (char *)&pd
->hdr
.tcp
->th_sport
, sizeof(u_short
));
4421 MD5Update(&ctx
, (char *)&pd
->hdr
.tcp
->th_dport
, sizeof(u_short
));
4422 if (pd
->af
== AF_INET6
) {
4423 MD5Update(&ctx
, (char *)&pd
->src
->v6addr
, sizeof(struct in6_addr
));
4424 MD5Update(&ctx
, (char *)&pd
->dst
->v6addr
, sizeof(struct in6_addr
));
4426 MD5Update(&ctx
, (char *)&pd
->src
->v4addr
, sizeof(struct in_addr
));
4427 MD5Update(&ctx
, (char *)&pd
->dst
->v4addr
, sizeof(struct in_addr
));
4429 MD5Final((u_char
*)digest
, &ctx
);
4430 pf_tcp_iss_off
+= 4096;
4431 return digest
[0] + random() + pf_tcp_iss_off
;
4435 * This routine is called to perform address family translation on the
4436 * inner IP header (that may come as payload) of an ICMP(v4addr/6) error
4440 pf_change_icmp_af(pbuf_t
*pbuf
, int off
,
4441 struct pf_pdesc
*pd
, struct pf_pdesc
*pd2
, struct pf_addr
*src
,
4442 struct pf_addr
*dst
, sa_family_t af
, sa_family_t naf
)
4444 struct ip
*ip4
= NULL
;
4445 struct ip6_hdr
*ip6
= NULL
;
4449 if (af
== naf
|| (af
!= AF_INET
&& af
!= AF_INET6
) ||
4450 (naf
!= AF_INET
&& naf
!= AF_INET6
)) {
4455 olen
= pd2
->off
- off
;
4457 hlen
= naf
== AF_INET
? sizeof(*ip4
) : sizeof(*ip6
);
4459 /* Modify the pbuf to accommodate the new header */
4460 hdr
= pbuf_resize_segment(pbuf
, off
, olen
, hlen
);
4465 /* translate inner ip/ip6 header */
4469 bzero(ip4
, sizeof(*ip4
));
4470 ip4
->ip_v
= IPVERSION
;
4471 ip4
->ip_hl
= sizeof(*ip4
) >> 2;
4472 ip4
->ip_len
= htons(sizeof(*ip4
) + pd2
->tot_len
- olen
);
4473 ip4
->ip_id
= rfc6864
? 0 : htons(ip_randomid());
4474 ip4
->ip_off
= htons(IP_DF
);
4475 ip4
->ip_ttl
= pd2
->ttl
;
4476 if (pd2
->proto
== IPPROTO_ICMPV6
) {
4477 ip4
->ip_p
= IPPROTO_ICMP
;
4479 ip4
->ip_p
= pd2
->proto
;
4481 ip4
->ip_src
= src
->v4addr
;
4482 ip4
->ip_dst
= dst
->v4addr
;
4483 ip4
->ip_sum
= pbuf_inet_cksum(pbuf
, 0, 0, ip4
->ip_hl
<< 2);
4487 bzero(ip6
, sizeof(*ip6
));
4488 ip6
->ip6_vfc
= IPV6_VERSION
;
4489 ip6
->ip6_plen
= htons(pd2
->tot_len
- olen
);
4490 if (pd2
->proto
== IPPROTO_ICMP
) {
4491 ip6
->ip6_nxt
= IPPROTO_ICMPV6
;
4493 ip6
->ip6_nxt
= pd2
->proto
;
4495 if (!pd2
->ttl
|| pd2
->ttl
> IPV6_DEFHLIM
) {
4496 ip6
->ip6_hlim
= IPV6_DEFHLIM
;
4498 ip6
->ip6_hlim
= pd2
->ttl
;
4500 ip6
->ip6_src
= src
->v6addr
;
4501 ip6
->ip6_dst
= dst
->v6addr
;
4505 /* adjust payload offset and total packet length */
4506 pd2
->off
+= hlen
- olen
;
4507 pd
->tot_len
+= hlen
- olen
;
4512 #define PTR_IP(field) ((int32_t)offsetof(struct ip, field))
4513 #define PTR_IP6(field) ((int32_t)offsetof(struct ip6_hdr, field))
4516 pf_translate_icmp_af(int af
, void *arg
)
4519 struct icmp6_hdr
*icmp6
;
4528 type
= icmp6
->icmp6_type
;
4529 code
= icmp6
->icmp6_code
;
4530 mtu
= ntohl(icmp6
->icmp6_mtu
);
4533 case ICMP6_ECHO_REQUEST
:
4536 case ICMP6_ECHO_REPLY
:
4537 type
= ICMP_ECHOREPLY
;
4539 case ICMP6_DST_UNREACH
:
4540 type
= ICMP_UNREACH
;
4542 case ICMP6_DST_UNREACH_NOROUTE
:
4543 case ICMP6_DST_UNREACH_BEYONDSCOPE
:
4544 case ICMP6_DST_UNREACH_ADDR
:
4545 code
= ICMP_UNREACH_HOST
;
4547 case ICMP6_DST_UNREACH_ADMIN
:
4548 code
= ICMP_UNREACH_HOST_PROHIB
;
4550 case ICMP6_DST_UNREACH_NOPORT
:
4551 code
= ICMP_UNREACH_PORT
;
4557 case ICMP6_PACKET_TOO_BIG
:
4558 type
= ICMP_UNREACH
;
4559 code
= ICMP_UNREACH_NEEDFRAG
;
4562 case ICMP6_TIME_EXCEEDED
:
4563 type
= ICMP_TIMXCEED
;
4565 case ICMP6_PARAM_PROB
:
4567 case ICMP6_PARAMPROB_HEADER
:
4568 type
= ICMP_PARAMPROB
;
4569 code
= ICMP_PARAMPROB_ERRATPTR
;
4570 ptr
= ntohl(icmp6
->icmp6_pptr
);
4572 if (ptr
== PTR_IP6(ip6_vfc
)) {
4574 } else if (ptr
== PTR_IP6(ip6_vfc
) + 1) {
4575 ptr
= PTR_IP(ip_tos
);
4576 } else if (ptr
== PTR_IP6(ip6_plen
) ||
4577 ptr
== PTR_IP6(ip6_plen
) + 1) {
4578 ptr
= PTR_IP(ip_len
);
4579 } else if (ptr
== PTR_IP6(ip6_nxt
)) {
4581 } else if (ptr
== PTR_IP6(ip6_hlim
)) {
4582 ptr
= PTR_IP(ip_ttl
);
4583 } else if (ptr
>= PTR_IP6(ip6_src
) &&
4584 ptr
< PTR_IP6(ip6_dst
)) {
4585 ptr
= PTR_IP(ip_src
);
4586 } else if (ptr
>= PTR_IP6(ip6_dst
) &&
4587 ptr
< (int32_t)sizeof(struct ip6_hdr
)) {
4588 ptr
= PTR_IP(ip_dst
);
4593 case ICMP6_PARAMPROB_NEXTHEADER
:
4594 type
= ICMP_UNREACH
;
4595 code
= ICMP_UNREACH_PROTOCOL
;
4604 icmp6
->icmp6_type
= type
;
4605 icmp6
->icmp6_code
= code
;
4606 /* aligns well with a icmpv4 nextmtu */
4607 icmp6
->icmp6_mtu
= htonl(mtu
);
4608 /* icmpv4 pptr is a one most significant byte */
4610 icmp6
->icmp6_pptr
= htonl(ptr
<< 24);
4616 type
= icmp4
->icmp_type
;
4617 code
= icmp4
->icmp_code
;
4618 mtu
= ntohs(icmp4
->icmp_nextmtu
);
4622 type
= ICMP6_ECHO_REQUEST
;
4624 case ICMP_ECHOREPLY
:
4625 type
= ICMP6_ECHO_REPLY
;
4628 type
= ICMP6_DST_UNREACH
;
4630 case ICMP_UNREACH_NET
:
4631 case ICMP_UNREACH_HOST
:
4632 case ICMP_UNREACH_NET_UNKNOWN
:
4633 case ICMP_UNREACH_HOST_UNKNOWN
:
4634 case ICMP_UNREACH_ISOLATED
:
4635 case ICMP_UNREACH_TOSNET
:
4636 case ICMP_UNREACH_TOSHOST
:
4637 code
= ICMP6_DST_UNREACH_NOROUTE
;
4639 case ICMP_UNREACH_PORT
:
4640 code
= ICMP6_DST_UNREACH_NOPORT
;
4642 case ICMP_UNREACH_NET_PROHIB
:
4643 case ICMP_UNREACH_HOST_PROHIB
:
4644 case ICMP_UNREACH_FILTER_PROHIB
:
4645 case ICMP_UNREACH_PRECEDENCE_CUTOFF
:
4646 code
= ICMP6_DST_UNREACH_ADMIN
;
4648 case ICMP_UNREACH_PROTOCOL
:
4649 type
= ICMP6_PARAM_PROB
;
4650 code
= ICMP6_PARAMPROB_NEXTHEADER
;
4651 ptr
= offsetof(struct ip6_hdr
, ip6_nxt
);
4653 case ICMP_UNREACH_NEEDFRAG
:
4654 type
= ICMP6_PACKET_TOO_BIG
;
4663 type
= ICMP6_TIME_EXCEEDED
;
4665 case ICMP_PARAMPROB
:
4666 type
= ICMP6_PARAM_PROB
;
4668 case ICMP_PARAMPROB_ERRATPTR
:
4669 code
= ICMP6_PARAMPROB_HEADER
;
4671 case ICMP_PARAMPROB_LENGTH
:
4672 code
= ICMP6_PARAMPROB_HEADER
;
4678 ptr
= icmp4
->icmp_pptr
;
4679 if (ptr
== 0 || ptr
== PTR_IP(ip_tos
)) {
4681 } else if (ptr
== PTR_IP(ip_len
) ||
4682 ptr
== PTR_IP(ip_len
) + 1) {
4683 ptr
= PTR_IP6(ip6_plen
);
4684 } else if (ptr
== PTR_IP(ip_ttl
)) {
4685 ptr
= PTR_IP6(ip6_hlim
);
4686 } else if (ptr
== PTR_IP(ip_p
)) {
4687 ptr
= PTR_IP6(ip6_nxt
);
4688 } else if (ptr
>= PTR_IP(ip_src
) &&
4689 ptr
< PTR_IP(ip_dst
)) {
4690 ptr
= PTR_IP6(ip6_src
);
4691 } else if (ptr
>= PTR_IP(ip_dst
) &&
4692 ptr
< (int32_t)sizeof(struct ip
)) {
4693 ptr
= PTR_IP6(ip6_dst
);
4701 icmp4
->icmp_type
= type
;
4702 icmp4
->icmp_code
= code
;
4703 icmp4
->icmp_nextmtu
= htons(mtu
);
4705 icmp4
->icmp_void
= htonl(ptr
);
4713 /* Note: frees pbuf if PF_NAT64 is returned */
4715 pf_nat64_ipv6(pbuf_t
*pbuf
, int off
, struct pf_pdesc
*pd
)
4721 * ip_input asserts for rcvif to be not NULL
4722 * That may not be true for two corner cases
4723 * 1. If for some reason a local app sends DNS
4724 * AAAA query to local host
4725 * 2. If IPv6 stack in kernel internally generates a
4726 * message destined for a synthesized IPv6 end-point.
4728 if (pbuf
->pb_ifp
== NULL
) {
4732 ip4
= (struct ip
*)pbuf_resize_segment(pbuf
, 0, off
, sizeof(*ip4
));
4739 ip4
->ip_tos
= pd
->tos
& htonl(0x0ff00000);
4740 ip4
->ip_len
= htons(sizeof(*ip4
) + (pd
->tot_len
- off
));
4742 ip4
->ip_off
= htons(IP_DF
);
4743 ip4
->ip_ttl
= pd
->ttl
;
4744 ip4
->ip_p
= pd
->proto
;
4746 ip4
->ip_src
= pd
->naddr
.v4addr
;
4747 ip4
->ip_dst
= pd
->ndaddr
.v4addr
;
4748 ip4
->ip_sum
= pbuf_inet_cksum(pbuf
, 0, 0, ip4
->ip_hl
<< 2);
4750 /* recalculate icmp checksums */
4751 if (pd
->proto
== IPPROTO_ICMP
) {
4753 int hlen
= sizeof(*ip4
);
4755 icmp
= (struct icmp
*)pbuf_contig_segment(pbuf
, hlen
,
4761 icmp
->icmp_cksum
= 0;
4762 icmp
->icmp_cksum
= pbuf_inet_cksum(pbuf
, 0, hlen
,
4763 ntohs(ip4
->ip_len
) - hlen
);
4766 if ((m
= pbuf_to_mbuf(pbuf
, TRUE
)) != NULL
) {
4774 pf_nat64_ipv4(pbuf_t
*pbuf
, int off
, struct pf_pdesc
*pd
)
4776 struct ip6_hdr
*ip6
;
4779 if (pbuf
->pb_ifp
== NULL
) {
4783 ip6
= (struct ip6_hdr
*)pbuf_resize_segment(pbuf
, 0, off
, sizeof(*ip6
));
4788 ip6
->ip6_vfc
= htonl((6 << 28) | (pd
->tos
<< 20));
4789 ip6
->ip6_plen
= htons(pd
->tot_len
- off
);
4790 ip6
->ip6_nxt
= pd
->proto
;
4791 ip6
->ip6_hlim
= pd
->ttl
;
4792 ip6
->ip6_src
= pd
->naddr
.v6addr
;
4793 ip6
->ip6_dst
= pd
->ndaddr
.v6addr
;
4795 /* recalculate icmp6 checksums */
4796 if (pd
->proto
== IPPROTO_ICMPV6
) {
4797 struct icmp6_hdr
*icmp6
;
4798 int hlen
= sizeof(*ip6
);
4800 icmp6
= (struct icmp6_hdr
*)pbuf_contig_segment(pbuf
, hlen
,
4802 if (icmp6
== NULL
) {
4806 icmp6
->icmp6_cksum
= 0;
4807 icmp6
->icmp6_cksum
= pbuf_inet6_cksum(pbuf
,
4808 IPPROTO_ICMPV6
, hlen
,
4809 ntohs(ip6
->ip6_plen
));
4810 } else if (pd
->proto
== IPPROTO_UDP
) {
4812 int hlen
= sizeof(*ip6
);
4814 uh
= (struct udphdr
*)pbuf_contig_segment(pbuf
, hlen
,
4820 if (uh
->uh_sum
== 0) {
4821 uh
->uh_sum
= pbuf_inet6_cksum(pbuf
, IPPROTO_UDP
,
4822 hlen
, ntohs(ip6
->ip6_plen
));
4826 if ((m
= pbuf_to_mbuf(pbuf
, TRUE
)) != NULL
) {
4834 pf_test_rule(struct pf_rule
**rm
, struct pf_state
**sm
, int direction
,
4835 struct pfi_kif
*kif
, pbuf_t
*pbuf
, int off
, void *h
,
4836 struct pf_pdesc
*pd
, struct pf_rule
**am
, struct pf_ruleset
**rsm
,
4837 struct ifqueue
*ifq
)
4840 struct pf_rule
*nr
= NULL
;
4841 struct pf_addr
*saddr
= pd
->src
, *daddr
= pd
->dst
;
4842 sa_family_t af
= pd
->af
;
4843 struct pf_rule
*r
, *a
= NULL
;
4844 struct pf_ruleset
*ruleset
= NULL
;
4845 struct pf_src_node
*nsn
= NULL
;
4846 struct tcphdr
*th
= pd
->hdr
.tcp
;
4847 struct udphdr
*uh
= pd
->hdr
.udp
;
4849 int rewrite
= 0, hdrlen
= 0;
4851 unsigned int rtableid
= IFSCOPE_NONE
;
4855 u_int16_t mss
= tcp_mssdflt
;
4856 u_int8_t icmptype
= 0, icmpcode
= 0;
4858 struct pf_grev1_hdr
*grev1
= pd
->hdr
.grev1
;
4859 union pf_state_xport bxport
, bdxport
, nxport
, sxport
, dxport
;
4860 struct pf_state_key psk
;
4862 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
4864 if (direction
== PF_IN
&& pf_check_congestion(ifq
)) {
4865 REASON_SET(&reason
, PFRES_CONGEST
);
4874 switch (pd
->proto
) {
4876 sxport
.port
= th
->th_sport
;
4877 dxport
.port
= th
->th_dport
;
4878 hdrlen
= sizeof(*th
);
4881 sxport
.port
= uh
->uh_sport
;
4882 dxport
.port
= uh
->uh_dport
;
4883 hdrlen
= sizeof(*uh
);
4887 if (pd
->af
!= AF_INET
) {
4890 sxport
.port
= dxport
.port
= pd
->hdr
.icmp
->icmp_id
;
4891 hdrlen
= ICMP_MINLEN
;
4892 icmptype
= pd
->hdr
.icmp
->icmp_type
;
4893 icmpcode
= pd
->hdr
.icmp
->icmp_code
;
4895 if (ICMP_ERRORTYPE(icmptype
)) {
4901 case IPPROTO_ICMPV6
:
4902 if (pd
->af
!= AF_INET6
) {
4905 sxport
.port
= dxport
.port
= pd
->hdr
.icmp6
->icmp6_id
;
4906 hdrlen
= sizeof(*pd
->hdr
.icmp6
);
4907 icmptype
= pd
->hdr
.icmp6
->icmp6_type
;
4908 icmpcode
= pd
->hdr
.icmp6
->icmp6_code
;
4910 if (ICMP6_ERRORTYPE(icmptype
)) {
4916 if (pd
->proto_variant
== PF_GRE_PPTP_VARIANT
) {
4917 sxport
.call_id
= dxport
.call_id
=
4918 pd
->hdr
.grev1
->call_id
;
4919 hdrlen
= sizeof(*pd
->hdr
.grev1
);
4924 dxport
.spi
= pd
->hdr
.esp
->spi
;
4925 hdrlen
= sizeof(*pd
->hdr
.esp
);
4929 r
= TAILQ_FIRST(pf_main_ruleset
.rules
[PF_RULESET_FILTER
].active
.ptr
);
4934 if (direction
== PF_OUT
) {
4940 /* check packet for BINAT/NAT/RDR */
4941 if ((nr
= pf_get_translation_aux(pd
, pbuf
, off
, direction
, kif
, &nsn
,
4942 saddr
, &sxport
, daddr
, &dxport
, &nxport
4947 if (pd
->af
!= pd
->naf
) {
4953 PF_ACPY(&pd
->baddr
, saddr
, af
);
4954 PF_ACPY(&pd
->bdaddr
, daddr
, af
);
4956 switch (pd
->proto
) {
4958 if (pd
->af
!= pd
->naf
||
4959 PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
4960 pf_change_ap(direction
, pd
->mp
, saddr
,
4961 &th
->th_sport
, pd
->ip_sum
, &th
->th_sum
,
4962 &pd
->naddr
, nxport
.port
, 0, af
,
4964 sxport
.port
= th
->th_sport
;
4967 if (pd
->af
!= pd
->naf
||
4968 PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
) ||
4969 (nr
&& (nr
->action
== PF_RDR
) &&
4970 (th
->th_dport
!= nxport
.port
))) {
4971 if (nr
&& nr
->action
== PF_RDR
) {
4972 dport
= nxport
.port
;
4974 dport
= th
->th_dport
;
4976 pf_change_ap(direction
, pd
->mp
, daddr
,
4977 &th
->th_dport
, pd
->ip_sum
,
4978 &th
->th_sum
, &pd
->ndaddr
,
4979 dport
, 0, af
, pd
->naf
, ua
);
4980 dxport
.port
= th
->th_dport
;
4986 if (pd
->af
!= pd
->naf
||
4987 PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
4988 pf_change_ap(direction
, pd
->mp
, saddr
,
4989 &uh
->uh_sport
, pd
->ip_sum
,
4990 &uh
->uh_sum
, &pd
->naddr
,
4991 nxport
.port
, 1, af
, pd
->naf
, ua
);
4992 sxport
.port
= uh
->uh_sport
;
4995 if (pd
->af
!= pd
->naf
||
4996 PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
) ||
4997 (nr
&& (nr
->action
== PF_RDR
) &&
4998 (uh
->uh_dport
!= nxport
.port
))) {
4999 if (nr
&& nr
->action
== PF_RDR
) {
5000 dport
= nxport
.port
;
5002 dport
= uh
->uh_dport
;
5004 pf_change_ap(direction
, pd
->mp
, daddr
,
5005 &uh
->uh_dport
, pd
->ip_sum
,
5006 &uh
->uh_sum
, &pd
->ndaddr
,
5007 dport
, 0, af
, pd
->naf
, ua
);
5008 dxport
.port
= uh
->uh_dport
;
5014 if (pd
->af
!= AF_INET
) {
5019 * pd->af != pd->naf not handled yet here and would be
5020 * needed for NAT46 needed to support XLAT.
5021 * Will cross the bridge when it comes.
5023 if (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5024 pf_change_a(&saddr
->v4addr
.s_addr
, pd
->ip_sum
,
5025 pd
->naddr
.v4addr
.s_addr
, 0);
5026 pd
->hdr
.icmp
->icmp_cksum
= pf_cksum_fixup(
5027 pd
->hdr
.icmp
->icmp_cksum
, sxport
.port
,
5029 pd
->hdr
.icmp
->icmp_id
= nxport
.port
;
5032 if (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5033 pf_change_a(&daddr
->v4addr
.s_addr
, pd
->ip_sum
,
5034 pd
->ndaddr
.v4addr
.s_addr
, 0);
5040 case IPPROTO_ICMPV6
:
5041 if (pd
->af
!= AF_INET6
) {
5045 if (pd
->af
!= pd
->naf
||
5046 PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5047 pf_change_addr(saddr
,
5048 &pd
->hdr
.icmp6
->icmp6_cksum
,
5049 &pd
->naddr
, 0, pd
->af
, pd
->naf
);
5052 if (pd
->af
!= pd
->naf
||
5053 PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5054 pf_change_addr(daddr
,
5055 &pd
->hdr
.icmp6
->icmp6_cksum
,
5056 &pd
->ndaddr
, 0, pd
->af
, pd
->naf
);
5059 if (pd
->af
!= pd
->naf
) {
5060 if (pf_translate_icmp_af(AF_INET
,
5064 pd
->proto
= IPPROTO_ICMP
;
5070 if ((direction
== PF_IN
) &&
5071 (pd
->proto_variant
== PF_GRE_PPTP_VARIANT
)) {
5072 grev1
->call_id
= nxport
.call_id
;
5078 if (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5079 pf_change_a(&saddr
->v4addr
.s_addr
,
5081 pd
->naddr
.v4addr
.s_addr
, 0);
5083 if (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5084 pf_change_a(&daddr
->v4addr
.s_addr
,
5086 pd
->ndaddr
.v4addr
.s_addr
, 0);
5092 if (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5093 PF_ACPY(saddr
, &pd
->naddr
, AF_INET6
);
5095 if (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5096 PF_ACPY(daddr
, &pd
->ndaddr
, AF_INET6
);
5104 if (direction
== PF_OUT
) {
5111 if (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5112 pf_change_a(&saddr
->v4addr
.s_addr
,
5113 pd
->ip_sum
, pd
->naddr
.v4addr
.s_addr
, 0);
5115 if (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5116 pf_change_a(&daddr
->v4addr
.s_addr
,
5118 pd
->ndaddr
.v4addr
.s_addr
, 0);
5124 if (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5125 PF_ACPY(saddr
, &pd
->naddr
, AF_INET6
);
5127 if (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5128 PF_ACPY(daddr
, &pd
->ndaddr
, AF_INET6
);
5138 if ((pd
->naf
!= AF_INET
) ||
5139 (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
))) {
5140 pf_change_addr(saddr
, pd
->ip_sum
,
5141 &pd
->naddr
, 0, af
, pd
->naf
);
5144 if ((pd
->naf
!= AF_INET
) ||
5145 (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
))) {
5146 pf_change_addr(daddr
, pd
->ip_sum
,
5147 &pd
->ndaddr
, 0, af
, pd
->naf
);
5153 if (PF_ANEQ(saddr
, &pd
->naddr
, pd
->af
)) {
5154 PF_ACPY(saddr
, &pd
->naddr
, af
);
5156 if (PF_ANEQ(daddr
, &pd
->ndaddr
, pd
->af
)) {
5157 PF_ACPY(daddr
, &pd
->ndaddr
, af
);
5173 if (nr
&& nr
->tag
> 0) {
5179 if (pfi_kif_match(r
->kif
, kif
) == r
->ifnot
) {
5180 r
= r
->skip
[PF_SKIP_IFP
].ptr
;
5181 } else if (r
->direction
&& r
->direction
!= direction
) {
5182 r
= r
->skip
[PF_SKIP_DIR
].ptr
;
5183 } else if (r
->af
&& r
->af
!= pd
->af
) {
5184 r
= r
->skip
[PF_SKIP_AF
].ptr
;
5185 } else if (r
->proto
&& r
->proto
!= pd
->proto
) {
5186 r
= r
->skip
[PF_SKIP_PROTO
].ptr
;
5187 } else if (PF_MISMATCHAW(&r
->src
.addr
, saddr
, pd
->af
,
5189 r
= r
->skip
[PF_SKIP_SRC_ADDR
].ptr
;
5191 /* tcp/udp only. port_op always 0 in other cases */
5192 else if (r
->proto
== pd
->proto
&&
5193 (r
->proto
== IPPROTO_TCP
|| r
->proto
== IPPROTO_UDP
) &&
5194 r
->src
.xport
.range
.op
&&
5195 !pf_match_port(r
->src
.xport
.range
.op
,
5196 r
->src
.xport
.range
.port
[0], r
->src
.xport
.range
.port
[1],
5198 r
= r
->skip
[PF_SKIP_SRC_PORT
].ptr
;
5199 } else if (PF_MISMATCHAW(&r
->dst
.addr
, daddr
, pd
->af
,
5200 r
->dst
.neg
, NULL
)) {
5201 r
= r
->skip
[PF_SKIP_DST_ADDR
].ptr
;
5203 /* tcp/udp only. port_op always 0 in other cases */
5204 else if (r
->proto
== pd
->proto
&&
5205 (r
->proto
== IPPROTO_TCP
|| r
->proto
== IPPROTO_UDP
) &&
5206 r
->dst
.xport
.range
.op
&&
5207 !pf_match_port(r
->dst
.xport
.range
.op
,
5208 r
->dst
.xport
.range
.port
[0], r
->dst
.xport
.range
.port
[1],
5210 r
= r
->skip
[PF_SKIP_DST_PORT
].ptr
;
5212 /* icmp only. type always 0 in other cases */
5213 else if (r
->type
&& r
->type
!= icmptype
+ 1) {
5214 r
= TAILQ_NEXT(r
, entries
);
5216 /* icmp only. type always 0 in other cases */
5217 else if (r
->code
&& r
->code
!= icmpcode
+ 1) {
5218 r
= TAILQ_NEXT(r
, entries
);
5219 } else if ((r
->rule_flag
& PFRULE_TOS
) && r
->tos
&&
5220 !(r
->tos
& pd
->tos
)) {
5221 r
= TAILQ_NEXT(r
, entries
);
5222 } else if ((r
->rule_flag
& PFRULE_DSCP
) && r
->tos
&&
5223 !(r
->tos
& (pd
->tos
& DSCP_MASK
))) {
5224 r
= TAILQ_NEXT(r
, entries
);
5225 } else if ((r
->rule_flag
& PFRULE_SC
) && r
->tos
&&
5226 ((r
->tos
& SCIDX_MASK
) != pd
->sc
)) {
5227 r
= TAILQ_NEXT(r
, entries
);
5228 } else if (r
->rule_flag
& PFRULE_FRAGMENT
) {
5229 r
= TAILQ_NEXT(r
, entries
);
5230 } else if (pd
->proto
== IPPROTO_TCP
&&
5231 (r
->flagset
& th
->th_flags
) != r
->flags
) {
5232 r
= TAILQ_NEXT(r
, entries
);
5234 /* tcp/udp only. uid.op always 0 in other cases */
5235 else if (r
->uid
.op
&& (pd
->lookup
.done
|| ((void)(pd
->lookup
.done
=
5236 pf_socket_lookup(direction
, pd
)), 1)) &&
5237 !pf_match_uid(r
->uid
.op
, r
->uid
.uid
[0], r
->uid
.uid
[1],
5239 r
= TAILQ_NEXT(r
, entries
);
5241 /* tcp/udp only. gid.op always 0 in other cases */
5242 else if (r
->gid
.op
&& (pd
->lookup
.done
|| ((void)(pd
->lookup
.done
=
5243 pf_socket_lookup(direction
, pd
)), 1)) &&
5244 !pf_match_gid(r
->gid
.op
, r
->gid
.gid
[0], r
->gid
.gid
[1],
5246 r
= TAILQ_NEXT(r
, entries
);
5247 } else if (r
->prob
&& r
->prob
<= (RandomULong() % (UINT_MAX
- 1) + 1)) {
5248 r
= TAILQ_NEXT(r
, entries
);
5249 } else if (r
->match_tag
&& !pf_match_tag(r
, pd
->pf_mtag
, &tag
)) {
5250 r
= TAILQ_NEXT(r
, entries
);
5251 } else if (r
->os_fingerprint
!= PF_OSFP_ANY
&&
5252 (pd
->proto
!= IPPROTO_TCP
|| !pf_osfp_match(
5253 pf_osfp_fingerprint(pd
, pbuf
, off
, th
),
5254 r
->os_fingerprint
))) {
5255 r
= TAILQ_NEXT(r
, entries
);
5260 if (PF_RTABLEID_IS_VALID(r
->rtableid
)) {
5261 rtableid
= r
->rtableid
;
5263 if (r
->anchor
== NULL
) {
5271 r
= TAILQ_NEXT(r
, entries
);
5273 pf_step_into_anchor(&asd
, &ruleset
,
5274 PF_RULESET_FILTER
, &r
, &a
, &match
);
5277 if (r
== NULL
&& pf_step_out_of_anchor(&asd
, &ruleset
,
5278 PF_RULESET_FILTER
, &r
, &a
, &match
)) {
5286 REASON_SET(&reason
, PFRES_MATCH
);
5288 if (r
->log
|| (nr
!= NULL
&& nr
->log
)) {
5290 if (rewrite
< off
+ hdrlen
) {
5291 rewrite
= off
+ hdrlen
;
5294 if (pf_lazy_makewritable(pd
, pbuf
, rewrite
) == NULL
) {
5295 REASON_SET(&reason
, PFRES_MEMORY
);
5299 pbuf_copy_back(pbuf
, off
, hdrlen
, pd
->hdr
.any
);
5301 PFLOG_PACKET(kif
, h
, pbuf
, pd
->af
, direction
, reason
,
5302 r
->log
? r
: nr
, a
, ruleset
, pd
);
5305 if ((r
->action
== PF_DROP
) &&
5306 ((r
->rule_flag
& PFRULE_RETURNRST
) ||
5307 (r
->rule_flag
& PFRULE_RETURNICMP
) ||
5308 (r
->rule_flag
& PFRULE_RETURN
))) {
5309 /* undo NAT changes, if they have taken place */
5310 /* XXX For NAT64 we are not reverting the changes */
5311 if (nr
!= NULL
&& nr
->action
!= PF_NAT64
) {
5312 if (direction
== PF_OUT
) {
5314 switch (pd
->proto
) {
5316 pf_change_ap(direction
, pd
->mp
, saddr
,
5317 &th
->th_sport
, pd
->ip_sum
,
5318 &th
->th_sum
, &pd
->baddr
,
5319 bxport
.port
, 0, af
, pd
->af
, 1);
5320 sxport
.port
= th
->th_sport
;
5324 pf_change_ap(direction
, pd
->mp
, saddr
,
5325 &pd
->hdr
.udp
->uh_sport
, pd
->ip_sum
,
5326 &pd
->hdr
.udp
->uh_sum
, &pd
->baddr
,
5327 bxport
.port
, 1, af
, pd
->af
, 1);
5328 sxport
.port
= pd
->hdr
.udp
->uh_sport
;
5333 case IPPROTO_ICMPV6
:
5338 PF_ACPY(&pd
->baddr
, saddr
, af
);
5343 pf_change_a(&saddr
->v4addr
.s_addr
,
5345 pd
->baddr
.v4addr
.s_addr
, 0);
5350 PF_ACPY(saddr
, &pd
->baddr
,
5357 PF_ACPY(&pd
->baddr
, saddr
, af
);
5361 pf_change_a(&saddr
->v4addr
.s_addr
,
5363 pd
->baddr
.v4addr
.s_addr
, 0);
5368 PF_ACPY(saddr
, &pd
->baddr
,
5377 pf_change_a(&saddr
->v4addr
.s_addr
,
5379 pd
->baddr
.v4addr
.s_addr
, 0);
5382 PF_ACPY(saddr
, &pd
->baddr
, af
);
5387 switch (pd
->proto
) {
5389 pf_change_ap(direction
, pd
->mp
, daddr
,
5390 &th
->th_dport
, pd
->ip_sum
,
5391 &th
->th_sum
, &pd
->bdaddr
,
5392 bdxport
.port
, 0, af
, pd
->af
, 1);
5393 dxport
.port
= th
->th_dport
;
5397 pf_change_ap(direction
, pd
->mp
, daddr
,
5398 &pd
->hdr
.udp
->uh_dport
, pd
->ip_sum
,
5399 &pd
->hdr
.udp
->uh_sum
, &pd
->bdaddr
,
5400 bdxport
.port
, 1, af
, pd
->af
, 1);
5401 dxport
.port
= pd
->hdr
.udp
->uh_dport
;
5406 case IPPROTO_ICMPV6
:
5411 if (pd
->proto_variant
==
5412 PF_GRE_PPTP_VARIANT
) {
5420 pf_change_a(&daddr
->v4addr
.s_addr
,
5422 pd
->bdaddr
.v4addr
.s_addr
, 0);
5427 PF_ACPY(daddr
, &pd
->bdaddr
,
5437 pf_change_a(&daddr
->v4addr
.s_addr
,
5439 pd
->bdaddr
.v4addr
.s_addr
, 0);
5444 PF_ACPY(daddr
, &pd
->bdaddr
,
5453 pf_change_a(&daddr
->v4addr
.s_addr
,
5455 pd
->bdaddr
.v4addr
.s_addr
, 0);
5459 PF_ACPY(daddr
, &pd
->bdaddr
, af
);
5466 if (pd
->proto
== IPPROTO_TCP
&&
5467 ((r
->rule_flag
& PFRULE_RETURNRST
) ||
5468 (r
->rule_flag
& PFRULE_RETURN
)) &&
5469 !(th
->th_flags
& TH_RST
)) {
5470 u_int32_t ack
= ntohl(th
->th_seq
) + pd
->p_len
;
5480 len
= ntohs(h4
->ip_len
) - off
;
5485 len
= ntohs(h6
->ip6_plen
) -
5486 (off
- sizeof(*h6
));
5491 if (pf_check_proto_cksum(pbuf
, off
, len
, IPPROTO_TCP
,
5493 REASON_SET(&reason
, PFRES_PROTCKSUM
);
5495 if (th
->th_flags
& TH_SYN
) {
5498 if (th
->th_flags
& TH_FIN
) {
5501 pf_send_tcp(r
, pd
->af
, pd
->dst
,
5502 pd
->src
, th
->th_dport
, th
->th_sport
,
5503 ntohl(th
->th_ack
), ack
, TH_RST
| TH_ACK
, 0, 0,
5504 r
->return_ttl
, 1, 0, pd
->eh
, kif
->pfik_ifp
);
5506 } else if (pd
->proto
!= IPPROTO_ICMP
&& pd
->af
== AF_INET
&&
5507 pd
->proto
!= IPPROTO_ESP
&& pd
->proto
!= IPPROTO_AH
&&
5509 pf_send_icmp(pbuf
, r
->return_icmp
>> 8,
5510 r
->return_icmp
& 255, pd
->af
, r
);
5511 } else if (pd
->proto
!= IPPROTO_ICMPV6
&& af
== AF_INET6
&&
5512 pd
->proto
!= IPPROTO_ESP
&& pd
->proto
!= IPPROTO_AH
&&
5514 pf_send_icmp(pbuf
, r
->return_icmp6
>> 8,
5515 r
->return_icmp6
& 255, pd
->af
, r
);
5519 if (r
->action
== PF_DROP
) {
5523 /* prepare state key, for flowhash and/or the state (if created) */
5524 bzero(&psk
, sizeof(psk
));
5525 psk
.proto
= pd
->proto
;
5526 psk
.direction
= direction
;
5527 if (pd
->proto
== IPPROTO_UDP
) {
5528 if (ntohs(pd
->hdr
.udp
->uh_sport
) == PF_IKE_PORT
&&
5529 ntohs(pd
->hdr
.udp
->uh_dport
) == PF_IKE_PORT
) {
5530 psk
.proto_variant
= PF_EXTFILTER_APD
;
5532 psk
.proto_variant
= nr
? nr
->extfilter
: r
->extfilter
;
5533 if (psk
.proto_variant
< PF_EXTFILTER_APD
) {
5534 psk
.proto_variant
= PF_EXTFILTER_APD
;
5537 } else if (pd
->proto
== IPPROTO_GRE
) {
5538 psk
.proto_variant
= pd
->proto_variant
;
5540 if (direction
== PF_OUT
) {
5542 PF_ACPY(&psk
.gwy
.addr
, saddr
, af
);
5543 PF_ACPY(&psk
.ext_gwy
.addr
, daddr
, af
);
5544 switch (pd
->proto
) {
5546 psk
.gwy
.xport
.spi
= 0;
5547 psk
.ext_gwy
.xport
.spi
= pd
->hdr
.esp
->spi
;
5551 case IPPROTO_ICMPV6
:
5554 * NAT64 requires protocol translation between ICMPv4
5555 * and ICMPv6. TCP and UDP do not require protocol
5556 * translation. To avoid adding complexity just to
5557 * handle ICMP(v4addr/v6addr), we always lookup for
5558 * proto = IPPROTO_ICMP on both LAN and WAN side
5560 psk
.proto
= IPPROTO_ICMP
;
5561 psk
.gwy
.xport
.port
= nxport
.port
;
5562 psk
.ext_gwy
.xport
.spi
= 0;
5565 psk
.gwy
.xport
= sxport
;
5566 psk
.ext_gwy
.xport
= dxport
;
5571 PF_ACPY(&psk
.lan
.addr
, &pd
->baddr
, af
);
5572 psk
.lan
.xport
= bxport
;
5573 PF_ACPY(&psk
.ext_lan
.addr
, &pd
->bdaddr
, af
);
5574 psk
.ext_lan
.xport
= bdxport
;
5576 PF_ACPY(&psk
.lan
.addr
, &psk
.gwy
.addr
, af
);
5577 psk
.lan
.xport
= psk
.gwy
.xport
;
5578 PF_ACPY(&psk
.ext_lan
.addr
, &psk
.ext_gwy
.addr
, af
);
5579 psk
.ext_lan
.xport
= psk
.ext_gwy
.xport
;
5583 if (nr
&& nr
->action
== PF_NAT64
) {
5584 PF_ACPY(&psk
.lan
.addr
, &pd
->baddr
, af
);
5585 PF_ACPY(&psk
.ext_lan
.addr
, &pd
->bdaddr
, af
);
5587 PF_ACPY(&psk
.lan
.addr
, daddr
, af
);
5588 PF_ACPY(&psk
.ext_lan
.addr
, saddr
, af
);
5590 switch (pd
->proto
) {
5593 case IPPROTO_ICMPV6
:
5596 * NAT64 requires protocol translation between ICMPv4
5597 * and ICMPv6. TCP and UDP do not require protocol
5598 * translation. To avoid adding complexity just to
5599 * handle ICMP(v4addr/v6addr), we always lookup for
5600 * proto = IPPROTO_ICMP on both LAN and WAN side
5602 psk
.proto
= IPPROTO_ICMP
;
5603 if (nr
&& nr
->action
== PF_NAT64
) {
5604 psk
.lan
.xport
= bxport
;
5605 psk
.ext_lan
.xport
= bxport
;
5607 psk
.lan
.xport
= nxport
;
5608 psk
.ext_lan
.xport
.spi
= 0;
5612 psk
.ext_lan
.xport
.spi
= 0;
5613 psk
.lan
.xport
.spi
= pd
->hdr
.esp
->spi
;
5617 if (nr
->action
== PF_NAT64
) {
5618 psk
.lan
.xport
= bxport
;
5619 psk
.ext_lan
.xport
= bdxport
;
5621 psk
.lan
.xport
= dxport
;
5622 psk
.ext_lan
.xport
= sxport
;
5625 psk
.lan
.xport
= dxport
;
5626 psk
.ext_lan
.xport
= sxport
;
5630 psk
.af_gwy
= pd
->naf
;
5632 if (nr
->action
== PF_NAT64
) {
5633 PF_ACPY(&psk
.gwy
.addr
, &pd
->naddr
, pd
->naf
);
5634 PF_ACPY(&psk
.ext_gwy
.addr
, &pd
->ndaddr
,
5636 if ((pd
->proto
== IPPROTO_ICMPV6
) ||
5637 (pd
->proto
== IPPROTO_ICMP
)) {
5638 psk
.gwy
.xport
= nxport
;
5639 psk
.ext_gwy
.xport
= nxport
;
5641 psk
.gwy
.xport
= sxport
;
5642 psk
.ext_gwy
.xport
= dxport
;
5645 PF_ACPY(&psk
.gwy
.addr
, &pd
->bdaddr
, af
);
5646 psk
.gwy
.xport
= bdxport
;
5647 PF_ACPY(&psk
.ext_gwy
.addr
, saddr
, af
);
5648 psk
.ext_gwy
.xport
= sxport
;
5651 PF_ACPY(&psk
.gwy
.addr
, &psk
.lan
.addr
, af
);
5652 psk
.gwy
.xport
= psk
.lan
.xport
;
5653 PF_ACPY(&psk
.ext_gwy
.addr
, &psk
.ext_lan
.addr
, af
);
5654 psk
.ext_gwy
.xport
= psk
.ext_lan
.xport
;
5657 if (pd
->pktflags
& PKTF_FLOW_ID
) {
5658 /* flow hash was already computed outside of PF */
5659 psk
.flowsrc
= pd
->flowsrc
;
5660 psk
.flowhash
= pd
->flowhash
;
5662 /* compute flow hash and store it in state key */
5663 psk
.flowsrc
= FLOWSRC_PF
;
5664 psk
.flowhash
= pf_calc_state_key_flowhash(&psk
);
5665 pd
->flowsrc
= psk
.flowsrc
;
5666 pd
->flowhash
= psk
.flowhash
;
5667 pd
->pktflags
|= PKTF_FLOW_ID
;
5668 pd
->pktflags
&= ~PKTF_FLOW_ADV
;
5671 if (pf_tag_packet(pbuf
, pd
->pf_mtag
, tag
, rtableid
, pd
)) {
5672 REASON_SET(&reason
, PFRES_MEMORY
);
5676 if (!state_icmp
&& (r
->keep_state
|| nr
!= NULL
||
5677 (pd
->flags
& PFDESC_TCP_NORM
))) {
5678 /* create new state */
5679 struct pf_state
*s
= NULL
;
5680 struct pf_state_key
*sk
= NULL
;
5681 struct pf_src_node
*sn
= NULL
;
5682 struct pf_ike_hdr ike
;
5684 if (pd
->proto
== IPPROTO_UDP
) {
5685 size_t plen
= pbuf
->pb_packet_len
- off
- sizeof(*uh
);
5687 if (ntohs(uh
->uh_sport
) == PF_IKE_PORT
&&
5688 ntohs(uh
->uh_dport
) == PF_IKE_PORT
&&
5689 plen
>= PF_IKE_PACKET_MINSIZE
) {
5690 if (plen
> PF_IKE_PACKET_MINSIZE
) {
5691 plen
= PF_IKE_PACKET_MINSIZE
;
5693 pbuf_copy_data(pbuf
, off
+ sizeof(*uh
), plen
,
5698 if (nr
!= NULL
&& pd
->proto
== IPPROTO_ESP
&&
5699 direction
== PF_OUT
) {
5700 struct pf_state_key_cmp sk0
;
5701 struct pf_state
*s0
;
5705 * This squelches state creation if the external
5706 * address matches an existing incomplete state with a
5707 * different internal address. Only one 'blocking'
5708 * partial state is allowed for each external address.
5710 memset(&sk0
, 0, sizeof(sk0
));
5711 sk0
.af_gwy
= pd
->af
;
5712 sk0
.proto
= IPPROTO_ESP
;
5713 PF_ACPY(&sk0
.gwy
.addr
, saddr
, sk0
.af_gwy
);
5714 PF_ACPY(&sk0
.ext_gwy
.addr
, daddr
, sk0
.af_gwy
);
5715 s0
= pf_find_state(kif
, &sk0
, PF_IN
);
5717 if (s0
&& PF_ANEQ(&s0
->state_key
->lan
.addr
,
5724 /* check maximums */
5725 if (r
->max_states
&& (r
->states
>= r
->max_states
)) {
5726 pf_status
.lcounters
[LCNT_STATES
]++;
5727 REASON_SET(&reason
, PFRES_MAXSTATES
);
5730 /* src node for filter rule */
5731 if ((r
->rule_flag
& PFRULE_SRCTRACK
||
5732 r
->rpool
.opts
& PF_POOL_STICKYADDR
) &&
5733 pf_insert_src_node(&sn
, r
, saddr
, af
) != 0) {
5734 REASON_SET(&reason
, PFRES_SRCLIMIT
);
5737 /* src node for translation rule */
5738 if (nr
!= NULL
&& (nr
->rpool
.opts
& PF_POOL_STICKYADDR
) &&
5739 ((direction
== PF_OUT
&&
5740 nr
->action
!= PF_RDR
&&
5741 pf_insert_src_node(&nsn
, nr
, &pd
->baddr
, af
) != 0) ||
5742 (pf_insert_src_node(&nsn
, nr
, saddr
, af
) != 0))) {
5743 REASON_SET(&reason
, PFRES_SRCLIMIT
);
5746 s
= pool_get(&pf_state_pl
, PR_WAITOK
);
5748 REASON_SET(&reason
, PFRES_MEMORY
);
5750 if (sn
!= NULL
&& sn
->states
== 0 && sn
->expire
== 0) {
5751 RB_REMOVE(pf_src_tree
, &tree_src_tracking
, sn
);
5752 pf_status
.scounters
[SCNT_SRC_NODE_REMOVALS
]++;
5753 pf_status
.src_nodes
--;
5754 pool_put(&pf_src_tree_pl
, sn
);
5756 if (nsn
!= sn
&& nsn
!= NULL
&& nsn
->states
== 0 &&
5758 RB_REMOVE(pf_src_tree
, &tree_src_tracking
, nsn
);
5759 pf_status
.scounters
[SCNT_SRC_NODE_REMOVALS
]++;
5760 pf_status
.src_nodes
--;
5761 pool_put(&pf_src_tree_pl
, nsn
);
5764 if (sk
->app_state
) {
5765 pool_put(&pf_app_state_pl
,
5768 pool_put(&pf_state_key_pl
, sk
);
5772 bzero(s
, sizeof(*s
));
5773 TAILQ_INIT(&s
->unlink_hooks
);
5775 s
->nat_rule
.ptr
= nr
;
5777 STATE_INC_COUNTERS(s
);
5778 s
->allow_opts
= r
->allow_opts
;
5779 s
->log
= r
->log
& PF_LOG_ALL
;
5781 s
->log
|= nr
->log
& PF_LOG_ALL
;
5783 switch (pd
->proto
) {
5785 s
->src
.seqlo
= ntohl(th
->th_seq
);
5786 s
->src
.seqhi
= s
->src
.seqlo
+ pd
->p_len
+ 1;
5787 if ((th
->th_flags
& (TH_SYN
| TH_ACK
)) ==
5788 TH_SYN
&& r
->keep_state
== PF_STATE_MODULATE
) {
5789 /* Generate sequence number modulator */
5790 if ((s
->src
.seqdiff
= pf_tcp_iss(pd
) -
5791 s
->src
.seqlo
) == 0) {
5794 pf_change_a(&th
->th_seq
, &th
->th_sum
,
5795 htonl(s
->src
.seqlo
+ s
->src
.seqdiff
), 0);
5796 rewrite
= off
+ sizeof(*th
);
5800 if (th
->th_flags
& TH_SYN
) {
5802 s
->src
.wscale
= pf_get_wscale(pbuf
, off
,
5805 s
->src
.max_win
= MAX(ntohs(th
->th_win
), 1);
5806 if (s
->src
.wscale
& PF_WSCALE_MASK
) {
5807 /* Remove scale factor from initial window */
5808 int win
= s
->src
.max_win
;
5809 win
+= 1 << (s
->src
.wscale
& PF_WSCALE_MASK
);
5810 s
->src
.max_win
= (win
- 1) >>
5811 (s
->src
.wscale
& PF_WSCALE_MASK
);
5813 if (th
->th_flags
& TH_FIN
) {
5818 s
->src
.state
= TCPS_SYN_SENT
;
5819 s
->dst
.state
= TCPS_CLOSED
;
5820 s
->timeout
= PFTM_TCP_FIRST_PACKET
;
5823 s
->src
.state
= PFUDPS_SINGLE
;
5824 s
->dst
.state
= PFUDPS_NO_TRAFFIC
;
5825 s
->timeout
= PFTM_UDP_FIRST_PACKET
;
5829 case IPPROTO_ICMPV6
:
5831 s
->timeout
= PFTM_ICMP_FIRST_PACKET
;
5834 s
->src
.state
= PFGRE1S_INITIATING
;
5835 s
->dst
.state
= PFGRE1S_NO_TRAFFIC
;
5836 s
->timeout
= PFTM_GREv1_INITIATING
;
5839 s
->src
.state
= PFESPS_INITIATING
;
5840 s
->dst
.state
= PFESPS_NO_TRAFFIC
;
5841 s
->timeout
= PFTM_ESP_FIRST_PACKET
;
5844 s
->src
.state
= PFOTHERS_SINGLE
;
5845 s
->dst
.state
= PFOTHERS_NO_TRAFFIC
;
5846 s
->timeout
= PFTM_OTHER_FIRST_PACKET
;
5849 s
->creation
= pf_time_second();
5850 s
->expire
= pf_time_second();
5854 s
->src_node
->states
++;
5855 VERIFY(s
->src_node
->states
!= 0);
5858 PF_ACPY(&nsn
->raddr
, &pd
->naddr
, af
);
5859 s
->nat_src_node
= nsn
;
5860 s
->nat_src_node
->states
++;
5861 VERIFY(s
->nat_src_node
->states
!= 0);
5863 if (pd
->proto
== IPPROTO_TCP
) {
5864 if ((pd
->flags
& PFDESC_TCP_NORM
) &&
5865 pf_normalize_tcp_init(pbuf
, off
, pd
, th
, &s
->src
,
5867 REASON_SET(&reason
, PFRES_MEMORY
);
5868 pf_src_tree_remove_state(s
);
5869 STATE_DEC_COUNTERS(s
);
5870 pool_put(&pf_state_pl
, s
);
5873 if ((pd
->flags
& PFDESC_TCP_NORM
) && s
->src
.scrub
&&
5874 pf_normalize_tcp_stateful(pbuf
, off
, pd
, &reason
,
5875 th
, s
, &s
->src
, &s
->dst
, &rewrite
)) {
5876 /* This really shouldn't happen!!! */
5877 DPFPRINTF(PF_DEBUG_URGENT
,
5878 ("pf_normalize_tcp_stateful failed on "
5880 pf_normalize_tcp_cleanup(s
);
5881 pf_src_tree_remove_state(s
);
5882 STATE_DEC_COUNTERS(s
);
5883 pool_put(&pf_state_pl
, s
);
5888 /* allocate state key and import values from psk */
5889 if ((sk
= pf_alloc_state_key(s
, &psk
)) == NULL
) {
5890 REASON_SET(&reason
, PFRES_MEMORY
);
5892 * XXXSCW: This will leak the freshly-allocated
5893 * state structure 's'. Although it should
5894 * eventually be aged-out and removed.
5899 pf_set_rt_ifp(s
, saddr
, af
); /* needs s->state_key set */
5901 pbuf
= pd
->mp
; // XXXSCW: Why?
5903 if (sk
->app_state
== 0) {
5904 switch (pd
->proto
) {
5906 u_int16_t dport
= (direction
== PF_OUT
) ?
5907 sk
->ext_gwy
.xport
.port
: sk
->gwy
.xport
.port
;
5910 ntohs(dport
) == PF_PPTP_PORT
) {
5911 struct pf_app_state
*as
;
5913 as
= pool_get(&pf_app_state_pl
,
5921 bzero(as
, sizeof(*as
));
5922 as
->handler
= pf_pptp_handler
;
5923 as
->compare_lan_ext
= 0;
5924 as
->compare_ext_gwy
= 0;
5925 as
->u
.pptp
.grev1_state
= 0;
5927 (void) hook_establish(&s
->unlink_hooks
,
5928 0, (hook_fn_t
) pf_pptp_unlink
, s
);
5935 ntohs(uh
->uh_sport
) == PF_IKE_PORT
&&
5936 ntohs(uh
->uh_dport
) == PF_IKE_PORT
) {
5937 struct pf_app_state
*as
;
5939 as
= pool_get(&pf_app_state_pl
,
5947 bzero(as
, sizeof(*as
));
5948 as
->compare_lan_ext
= pf_ike_compare
;
5949 as
->compare_ext_gwy
= pf_ike_compare
;
5950 as
->u
.ike
.cookie
= ike
.initiator_cookie
;
5961 if (pf_insert_state(BOUND_IFACE(r
, kif
), s
)) {
5962 if (pd
->proto
== IPPROTO_TCP
) {
5963 pf_normalize_tcp_cleanup(s
);
5965 REASON_SET(&reason
, PFRES_STATEINS
);
5966 pf_src_tree_remove_state(s
);
5967 STATE_DEC_COUNTERS(s
);
5968 pool_put(&pf_state_pl
, s
);
5977 if (pd
->proto
== IPPROTO_TCP
&&
5978 (th
->th_flags
& (TH_SYN
| TH_ACK
)) == TH_SYN
&&
5979 r
->keep_state
== PF_STATE_SYNPROXY
) {
5980 int ua
= (sk
->af_lan
== sk
->af_gwy
) ? 1 : 0;
5981 s
->src
.state
= PF_TCPS_PROXY_SRC
;
5983 if (direction
== PF_OUT
) {
5984 pf_change_ap(direction
, pd
->mp
, saddr
,
5985 &th
->th_sport
, pd
->ip_sum
,
5986 &th
->th_sum
, &pd
->baddr
,
5987 bxport
.port
, 0, af
, pd
->af
, ua
);
5988 sxport
.port
= th
->th_sport
;
5990 pf_change_ap(direction
, pd
->mp
, daddr
,
5991 &th
->th_dport
, pd
->ip_sum
,
5992 &th
->th_sum
, &pd
->baddr
,
5993 bxport
.port
, 0, af
, pd
->af
, ua
);
5994 sxport
.port
= th
->th_dport
;
5997 s
->src
.seqhi
= htonl(random());
5998 /* Find mss option */
5999 mss
= pf_get_mss(pbuf
, off
, th
->th_off
, af
);
6000 mss
= pf_calc_mss(saddr
, af
, mss
);
6001 mss
= pf_calc_mss(daddr
, af
, mss
);
6003 pf_send_tcp(r
, af
, daddr
, saddr
, th
->th_dport
,
6004 th
->th_sport
, s
->src
.seqhi
, ntohl(th
->th_seq
) + 1,
6005 TH_SYN
| TH_ACK
, 0, s
->src
.mss
, 0, 1, 0, NULL
, NULL
);
6006 REASON_SET(&reason
, PFRES_SYNPROXY
);
6007 return PF_SYNPROXY_DROP
;
6010 if (sk
->app_state
&& sk
->app_state
->handler
) {
6013 switch (pd
->proto
) {
6015 offx
+= th
->th_off
<< 2;
6018 offx
+= pd
->hdr
.udp
->uh_ulen
<< 2;
6021 /* ALG handlers only apply to TCP and UDP rules */
6026 sk
->app_state
->handler(s
, direction
, offx
,
6029 REASON_SET(&reason
, PFRES_MEMORY
);
6032 pbuf
= pd
->mp
; // XXXSCW: Why?
6037 /* copy back packet headers if we performed NAT operations */
6039 if (rewrite
< off
+ hdrlen
) {
6040 rewrite
= off
+ hdrlen
;
6043 if (pf_lazy_makewritable(pd
, pd
->mp
, rewrite
) == NULL
) {
6044 REASON_SET(&reason
, PFRES_MEMORY
);
6048 pbuf_copy_back(pbuf
, off
, hdrlen
, pd
->hdr
.any
);
6049 if (af
== AF_INET6
&& pd
->naf
== AF_INET
) {
6050 return pf_nat64_ipv6(pbuf
, off
, pd
);
6051 } else if (af
== AF_INET
&& pd
->naf
== AF_INET6
) {
6052 return pf_nat64_ipv4(pbuf
, off
, pd
);
6059 boolean_t is_nlc_enabled_glb
= FALSE
;
6061 static inline boolean_t
6062 pf_is_dummynet_enabled(void)
6065 if (__probable(!PF_IS_ENABLED
)) {
6069 if (__probable(!DUMMYNET_LOADED
)) {
6073 if (__probable(TAILQ_EMPTY(pf_main_ruleset
.
6074 rules
[PF_RULESET_DUMMYNET
].active
.ptr
))) {
6081 #endif /* DUMMYNET */
6085 pf_is_nlc_enabled(void)
6088 if (__probable(!pf_is_dummynet_enabled())) {
6092 if (__probable(!is_nlc_enabled_glb
)) {
6099 #endif /* DUMMYNET */
6104 * When pf_test_dummynet() returns PF_PASS, the rule matching parameter "rm"
6105 * remains unchanged, meaning the packet did not match a dummynet rule.
6106 * when the packet does match a dummynet rule, pf_test_dummynet() returns
6107 * PF_PASS and zero out the mbuf rule as the packet is effectively siphoned
6111 pf_test_dummynet(struct pf_rule
**rm
, int direction
, struct pfi_kif
*kif
,
6112 pbuf_t
**pbuf0
, struct pf_pdesc
*pd
, struct ip_fw_args
*fwa
)
6114 pbuf_t
*pbuf
= *pbuf0
;
6115 struct pf_rule
*am
= NULL
;
6116 struct pf_ruleset
*rsm
= NULL
;
6117 struct pf_addr
*saddr
= pd
->src
, *daddr
= pd
->dst
;
6118 sa_family_t af
= pd
->af
;
6119 struct pf_rule
*r
, *a
= NULL
;
6120 struct pf_ruleset
*ruleset
= NULL
;
6121 struct tcphdr
*th
= pd
->hdr
.tcp
;
6125 unsigned int rtableid
= IFSCOPE_NONE
;
6128 u_int8_t icmptype
= 0, icmpcode
= 0;
6129 struct ip_fw_args dnflow
;
6130 struct pf_rule
*prev_matching_rule
= fwa
? fwa
->fwa_pf_rule
: NULL
;
6131 int found_prev_rule
= (prev_matching_rule
) ? 0 : 1;
6133 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
6135 if (!pf_is_dummynet_enabled()) {
6139 bzero(&dnflow
, sizeof(dnflow
));
6143 /* Fragments don't gave protocol headers */
6144 if (!(pd
->flags
& PFDESC_IP_FRAG
)) {
6145 switch (pd
->proto
) {
6147 dnflow
.fwa_id
.flags
= pd
->hdr
.tcp
->th_flags
;
6148 dnflow
.fwa_id
.dst_port
= ntohs(pd
->hdr
.tcp
->th_dport
);
6149 dnflow
.fwa_id
.src_port
= ntohs(pd
->hdr
.tcp
->th_sport
);
6150 hdrlen
= sizeof(*th
);
6153 dnflow
.fwa_id
.dst_port
= ntohs(pd
->hdr
.udp
->uh_dport
);
6154 dnflow
.fwa_id
.src_port
= ntohs(pd
->hdr
.udp
->uh_sport
);
6155 hdrlen
= sizeof(*pd
->hdr
.udp
);
6159 if (af
!= AF_INET
) {
6162 hdrlen
= ICMP_MINLEN
;
6163 icmptype
= pd
->hdr
.icmp
->icmp_type
;
6164 icmpcode
= pd
->hdr
.icmp
->icmp_code
;
6168 case IPPROTO_ICMPV6
:
6169 if (af
!= AF_INET6
) {
6172 hdrlen
= sizeof(*pd
->hdr
.icmp6
);
6173 icmptype
= pd
->hdr
.icmp6
->icmp6_type
;
6174 icmpcode
= pd
->hdr
.icmp6
->icmp6_code
;
6178 if (pd
->proto_variant
== PF_GRE_PPTP_VARIANT
) {
6179 hdrlen
= sizeof(*pd
->hdr
.grev1
);
6183 hdrlen
= sizeof(*pd
->hdr
.esp
);
6188 r
= TAILQ_FIRST(pf_main_ruleset
.rules
[PF_RULESET_DUMMYNET
].active
.ptr
);
6192 if (pfi_kif_match(r
->kif
, kif
) == r
->ifnot
) {
6193 r
= r
->skip
[PF_SKIP_IFP
].ptr
;
6194 } else if (r
->direction
&& r
->direction
!= direction
) {
6195 r
= r
->skip
[PF_SKIP_DIR
].ptr
;
6196 } else if (r
->af
&& r
->af
!= af
) {
6197 r
= r
->skip
[PF_SKIP_AF
].ptr
;
6198 } else if (r
->proto
&& r
->proto
!= pd
->proto
) {
6199 r
= r
->skip
[PF_SKIP_PROTO
].ptr
;
6200 } else if (PF_MISMATCHAW(&r
->src
.addr
, saddr
, af
,
6202 r
= r
->skip
[PF_SKIP_SRC_ADDR
].ptr
;
6204 /* tcp/udp only. port_op always 0 in other cases */
6205 else if (r
->proto
== pd
->proto
&&
6206 (r
->proto
== IPPROTO_TCP
|| r
->proto
== IPPROTO_UDP
) &&
6207 ((pd
->flags
& PFDESC_IP_FRAG
) ||
6208 ((r
->src
.xport
.range
.op
&&
6209 !pf_match_port(r
->src
.xport
.range
.op
,
6210 r
->src
.xport
.range
.port
[0], r
->src
.xport
.range
.port
[1],
6212 r
= r
->skip
[PF_SKIP_SRC_PORT
].ptr
;
6213 } else if (PF_MISMATCHAW(&r
->dst
.addr
, daddr
, af
,
6214 r
->dst
.neg
, NULL
)) {
6215 r
= r
->skip
[PF_SKIP_DST_ADDR
].ptr
;
6217 /* tcp/udp only. port_op always 0 in other cases */
6218 else if (r
->proto
== pd
->proto
&&
6219 (r
->proto
== IPPROTO_TCP
|| r
->proto
== IPPROTO_UDP
) &&
6220 r
->dst
.xport
.range
.op
&&
6221 ((pd
->flags
& PFDESC_IP_FRAG
) ||
6222 !pf_match_port(r
->dst
.xport
.range
.op
,
6223 r
->dst
.xport
.range
.port
[0], r
->dst
.xport
.range
.port
[1],
6225 r
= r
->skip
[PF_SKIP_DST_PORT
].ptr
;
6227 /* icmp only. type always 0 in other cases */
6229 ((pd
->flags
& PFDESC_IP_FRAG
) ||
6230 r
->type
!= icmptype
+ 1)) {
6231 r
= TAILQ_NEXT(r
, entries
);
6233 /* icmp only. type always 0 in other cases */
6235 ((pd
->flags
& PFDESC_IP_FRAG
) ||
6236 r
->code
!= icmpcode
+ 1)) {
6237 r
= TAILQ_NEXT(r
, entries
);
6238 } else if (r
->tos
&& !(r
->tos
== pd
->tos
)) {
6239 r
= TAILQ_NEXT(r
, entries
);
6240 } else if (r
->rule_flag
& PFRULE_FRAGMENT
) {
6241 r
= TAILQ_NEXT(r
, entries
);
6242 } else if (pd
->proto
== IPPROTO_TCP
&&
6243 ((pd
->flags
& PFDESC_IP_FRAG
) ||
6244 (r
->flagset
& th
->th_flags
) != r
->flags
)) {
6245 r
= TAILQ_NEXT(r
, entries
);
6246 } else if (r
->prob
&& r
->prob
<= (RandomULong() % (UINT_MAX
- 1) + 1)) {
6247 r
= TAILQ_NEXT(r
, entries
);
6248 } else if (r
->match_tag
&& !pf_match_tag(r
, pd
->pf_mtag
, &tag
)) {
6249 r
= TAILQ_NEXT(r
, entries
);
6252 * Need to go past the previous dummynet matching rule
6254 if (r
->anchor
== NULL
) {
6255 if (found_prev_rule
) {
6259 if (PF_RTABLEID_IS_VALID(r
->rtableid
)) {
6260 rtableid
= r
->rtableid
;
6269 } else if (r
== prev_matching_rule
) {
6270 found_prev_rule
= 1;
6272 r
= TAILQ_NEXT(r
, entries
);
6274 pf_step_into_anchor(&asd
, &ruleset
,
6275 PF_RULESET_DUMMYNET
, &r
, &a
, &match
);
6278 if (r
== NULL
&& pf_step_out_of_anchor(&asd
, &ruleset
,
6279 PF_RULESET_DUMMYNET
, &r
, &a
, &match
)) {
6291 REASON_SET(&reason
, PFRES_DUMMYNET
);
6294 PFLOG_PACKET(kif
, h
, pbuf
, af
, direction
, reason
, r
,
6298 if (r
->action
== PF_NODUMMYNET
) {
6299 int dirndx
= (direction
== PF_OUT
);
6301 r
->packets
[dirndx
]++;
6302 r
->bytes
[dirndx
] += pd
->tot_len
;
6306 if (pf_tag_packet(pbuf
, pd
->pf_mtag
, tag
, rtableid
, pd
)) {
6307 REASON_SET(&reason
, PFRES_MEMORY
);
6312 if (r
->dnpipe
&& ip_dn_io_ptr
!= NULL
) {
6314 int dirndx
= (direction
== PF_OUT
);
6316 r
->packets
[dirndx
]++;
6317 r
->bytes
[dirndx
] += pd
->tot_len
;
6319 dnflow
.fwa_cookie
= r
->dnpipe
;
6320 dnflow
.fwa_pf_rule
= r
;
6321 dnflow
.fwa_id
.proto
= pd
->proto
;
6322 dnflow
.fwa_flags
= r
->dntype
;
6325 dnflow
.fwa_id
.addr_type
= 4;
6326 dnflow
.fwa_id
.src_ip
= ntohl(saddr
->v4addr
.s_addr
);
6327 dnflow
.fwa_id
.dst_ip
= ntohl(daddr
->v4addr
.s_addr
);
6330 dnflow
.fwa_id
.addr_type
= 6;
6331 dnflow
.fwa_id
.src_ip6
= saddr
->v6addr
;
6332 dnflow
.fwa_id
.dst_ip6
= saddr
->v6addr
;
6337 dnflow
.fwa_oif
= fwa
->fwa_oif
;
6338 dnflow
.fwa_oflags
= fwa
->fwa_oflags
;
6340 * Note that fwa_ro, fwa_dst and fwa_ipoa are
6341 * actually in a union so the following does work
6342 * for both IPv4 and IPv6
6344 dnflow
.fwa_ro
= fwa
->fwa_ro
;
6345 dnflow
.fwa_dst
= fwa
->fwa_dst
;
6346 dnflow
.fwa_ipoa
= fwa
->fwa_ipoa
;
6347 dnflow
.fwa_ro6_pmtu
= fwa
->fwa_ro6_pmtu
;
6348 dnflow
.fwa_origifp
= fwa
->fwa_origifp
;
6349 dnflow
.fwa_mtu
= fwa
->fwa_mtu
;
6350 dnflow
.fwa_alwaysfrag
= fwa
->fwa_alwaysfrag
;
6351 dnflow
.fwa_unfragpartlen
= fwa
->fwa_unfragpartlen
;
6352 dnflow
.fwa_exthdrs
= fwa
->fwa_exthdrs
;
6355 if (af
== AF_INET
) {
6356 struct ip
*iphdr
= pbuf
->pb_data
;
6357 NTOHS(iphdr
->ip_len
);
6358 NTOHS(iphdr
->ip_off
);
6361 * Don't need to unlock pf_lock as NET_THREAD_HELD_PF
6362 * allows for recursive behavior
6364 m
= pbuf_to_mbuf(pbuf
, TRUE
);
6367 dnflow
.fwa_cookie
, (af
== AF_INET
) ?
6368 ((direction
== PF_IN
) ? DN_TO_IP_IN
: DN_TO_IP_OUT
) :
6369 ((direction
== PF_IN
) ? DN_TO_IP6_IN
: DN_TO_IP6_OUT
),
6370 &dnflow
, DN_CLIENT_PF
);
6374 * The packet is siphoned out by dummynet so return a NULL
6375 * pbuf so the caller can still return success.
6384 #endif /* DUMMYNET */
6387 pf_test_fragment(struct pf_rule
**rm
, int direction
, struct pfi_kif
*kif
,
6388 pbuf_t
*pbuf
, void *h
, struct pf_pdesc
*pd
, struct pf_rule
**am
,
6389 struct pf_ruleset
**rsm
)
6392 struct pf_rule
*r
, *a
= NULL
;
6393 struct pf_ruleset
*ruleset
= NULL
;
6394 sa_family_t af
= pd
->af
;
6400 r
= TAILQ_FIRST(pf_main_ruleset
.rules
[PF_RULESET_FILTER
].active
.ptr
);
6403 if (pfi_kif_match(r
->kif
, kif
) == r
->ifnot
) {
6404 r
= r
->skip
[PF_SKIP_IFP
].ptr
;
6405 } else if (r
->direction
&& r
->direction
!= direction
) {
6406 r
= r
->skip
[PF_SKIP_DIR
].ptr
;
6407 } else if (r
->af
&& r
->af
!= af
) {
6408 r
= r
->skip
[PF_SKIP_AF
].ptr
;
6409 } else if (r
->proto
&& r
->proto
!= pd
->proto
) {
6410 r
= r
->skip
[PF_SKIP_PROTO
].ptr
;
6411 } else if (PF_MISMATCHAW(&r
->src
.addr
, pd
->src
, af
,
6413 r
= r
->skip
[PF_SKIP_SRC_ADDR
].ptr
;
6414 } else if (PF_MISMATCHAW(&r
->dst
.addr
, pd
->dst
, af
,
6415 r
->dst
.neg
, NULL
)) {
6416 r
= r
->skip
[PF_SKIP_DST_ADDR
].ptr
;
6417 } else if ((r
->rule_flag
& PFRULE_TOS
) && r
->tos
&&
6418 !(r
->tos
& pd
->tos
)) {
6419 r
= TAILQ_NEXT(r
, entries
);
6420 } else if ((r
->rule_flag
& PFRULE_DSCP
) && r
->tos
&&
6421 !(r
->tos
& (pd
->tos
& DSCP_MASK
))) {
6422 r
= TAILQ_NEXT(r
, entries
);
6423 } else if ((r
->rule_flag
& PFRULE_SC
) && r
->tos
&&
6424 ((r
->tos
& SCIDX_MASK
) != pd
->sc
)) {
6425 r
= TAILQ_NEXT(r
, entries
);
6426 } else if (r
->os_fingerprint
!= PF_OSFP_ANY
) {
6427 r
= TAILQ_NEXT(r
, entries
);
6428 } else if (pd
->proto
== IPPROTO_UDP
&&
6429 (r
->src
.xport
.range
.op
|| r
->dst
.xport
.range
.op
)) {
6430 r
= TAILQ_NEXT(r
, entries
);
6431 } else if (pd
->proto
== IPPROTO_TCP
&&
6432 (r
->src
.xport
.range
.op
|| r
->dst
.xport
.range
.op
||
6434 r
= TAILQ_NEXT(r
, entries
);
6435 } else if ((pd
->proto
== IPPROTO_ICMP
||
6436 pd
->proto
== IPPROTO_ICMPV6
) &&
6437 (r
->type
|| r
->code
)) {
6438 r
= TAILQ_NEXT(r
, entries
);
6439 } else if (r
->prob
&& r
->prob
<= (RandomULong() % (UINT_MAX
- 1) + 1)) {
6440 r
= TAILQ_NEXT(r
, entries
);
6441 } else if (r
->match_tag
&& !pf_match_tag(r
, pd
->pf_mtag
, &tag
)) {
6442 r
= TAILQ_NEXT(r
, entries
);
6444 if (r
->anchor
== NULL
) {
6452 r
= TAILQ_NEXT(r
, entries
);
6454 pf_step_into_anchor(&asd
, &ruleset
,
6455 PF_RULESET_FILTER
, &r
, &a
, &match
);
6458 if (r
== NULL
&& pf_step_out_of_anchor(&asd
, &ruleset
,
6459 PF_RULESET_FILTER
, &r
, &a
, &match
)) {
6467 REASON_SET(&reason
, PFRES_MATCH
);
6470 PFLOG_PACKET(kif
, h
, pbuf
, af
, direction
, reason
, r
, a
, ruleset
,
6474 if (r
->action
!= PF_PASS
) {
6478 if (pf_tag_packet(pbuf
, pd
->pf_mtag
, tag
, -1, NULL
)) {
6479 REASON_SET(&reason
, PFRES_MEMORY
);
6487 pf_pptp_handler(struct pf_state
*s
, int direction
, int off
,
6488 struct pf_pdesc
*pd
, struct pfi_kif
*kif
)
6490 #pragma unused(direction)
6492 struct pf_pptp_state
*pptps
;
6493 struct pf_pptp_ctrl_msg cm
;
6495 struct pf_state
*gs
;
6497 u_int16_t
*pac_call_id
;
6498 u_int16_t
*pns_call_id
;
6499 u_int16_t
*spoof_call_id
;
6500 u_int8_t
*pac_state
;
6501 u_int8_t
*pns_state
;
6502 enum { PF_PPTP_PASS
, PF_PPTP_INSERT_GRE
, PF_PPTP_REMOVE_GRE
} op
;
6504 struct pf_state_key
*sk
;
6505 struct pf_state_key
*gsk
;
6506 struct pf_app_state
*gas
;
6509 pptps
= &sk
->app_state
->u
.pptp
;
6510 gs
= pptps
->grev1_state
;
6513 gs
->expire
= pf_time_second();
6517 plen
= min(sizeof(cm
), pbuf
->pb_packet_len
- off
);
6518 if (plen
< PF_PPTP_CTRL_MSG_MINSIZE
) {
6521 tlen
= plen
- PF_PPTP_CTRL_MSG_MINSIZE
;
6522 pbuf_copy_data(pbuf
, off
, plen
, &cm
);
6524 if (ntohl(cm
.hdr
.magic
) != PF_PPTP_MAGIC_NUMBER
) {
6527 if (ntohs(cm
.hdr
.type
) != 1) {
6531 #define TYPE_LEN_CHECK(_type, _name) \
6532 case PF_PPTP_CTRL_TYPE_##_type: \
6533 if (tlen < sizeof(struct pf_pptp_ctrl_##_name)) \
6537 switch (cm
.ctrl
.type
) {
6538 TYPE_LEN_CHECK(START_REQ
, start_req
);
6539 TYPE_LEN_CHECK(START_RPY
, start_rpy
);
6540 TYPE_LEN_CHECK(STOP_REQ
, stop_req
);
6541 TYPE_LEN_CHECK(STOP_RPY
, stop_rpy
);
6542 TYPE_LEN_CHECK(ECHO_REQ
, echo_req
);
6543 TYPE_LEN_CHECK(ECHO_RPY
, echo_rpy
);
6544 TYPE_LEN_CHECK(CALL_OUT_REQ
, call_out_req
);
6545 TYPE_LEN_CHECK(CALL_OUT_RPY
, call_out_rpy
);
6546 TYPE_LEN_CHECK(CALL_IN_1ST
, call_in_1st
);
6547 TYPE_LEN_CHECK(CALL_IN_2ND
, call_in_2nd
);
6548 TYPE_LEN_CHECK(CALL_IN_3RD
, call_in_3rd
);
6549 TYPE_LEN_CHECK(CALL_CLR
, call_clr
);
6550 TYPE_LEN_CHECK(CALL_DISC
, call_disc
);
6551 TYPE_LEN_CHECK(ERROR
, error
);
6552 TYPE_LEN_CHECK(SET_LINKINFO
, set_linkinfo
);
6556 #undef TYPE_LEN_CHECK
6559 gs
= pool_get(&pf_state_pl
, PR_WAITOK
);
6564 memcpy(gs
, s
, sizeof(*gs
));
6566 memset(&gs
->entry_id
, 0, sizeof(gs
->entry_id
));
6567 memset(&gs
->entry_list
, 0, sizeof(gs
->entry_list
));
6569 TAILQ_INIT(&gs
->unlink_hooks
);
6572 gs
->pfsync_time
= 0;
6573 gs
->packets
[0] = gs
->packets
[1] = 0;
6574 gs
->bytes
[0] = gs
->bytes
[1] = 0;
6575 gs
->timeout
= PFTM_UNLINKED
;
6576 gs
->id
= gs
->creatorid
= 0;
6577 gs
->src
.state
= gs
->dst
.state
= PFGRE1S_NO_TRAFFIC
;
6578 gs
->src
.scrub
= gs
->dst
.scrub
= 0;
6580 gas
= pool_get(&pf_app_state_pl
, PR_NOWAIT
);
6582 pool_put(&pf_state_pl
, gs
);
6586 gsk
= pf_alloc_state_key(gs
, NULL
);
6588 pool_put(&pf_app_state_pl
, gas
);
6589 pool_put(&pf_state_pl
, gs
);
6593 memcpy(&gsk
->lan
, &sk
->lan
, sizeof(gsk
->lan
));
6594 memcpy(&gsk
->gwy
, &sk
->gwy
, sizeof(gsk
->gwy
));
6595 memcpy(&gsk
->ext_lan
, &sk
->ext_lan
, sizeof(gsk
->ext_lan
));
6596 memcpy(&gsk
->ext_gwy
, &sk
->ext_gwy
, sizeof(gsk
->ext_gwy
));
6597 gsk
->af_lan
= sk
->af_lan
;
6598 gsk
->af_gwy
= sk
->af_gwy
;
6599 gsk
->proto
= IPPROTO_GRE
;
6600 gsk
->proto_variant
= PF_GRE_PPTP_VARIANT
;
6601 gsk
->app_state
= gas
;
6602 gsk
->lan
.xport
.call_id
= 0;
6603 gsk
->gwy
.xport
.call_id
= 0;
6604 gsk
->ext_lan
.xport
.call_id
= 0;
6605 gsk
->ext_gwy
.xport
.call_id
= 0;
6606 gsk
->flowsrc
= FLOWSRC_PF
;
6607 gsk
->flowhash
= pf_calc_state_key_flowhash(gsk
);
6608 memset(gas
, 0, sizeof(*gas
));
6609 gas
->u
.grev1
.pptp_state
= s
;
6610 STATE_INC_COUNTERS(gs
);
6611 pptps
->grev1_state
= gs
;
6612 (void) hook_establish(&gs
->unlink_hooks
, 0,
6613 (hook_fn_t
) pf_grev1_unlink
, gs
);
6615 gsk
= gs
->state_key
;
6618 switch (sk
->direction
) {
6620 pns_call_id
= &gsk
->ext_lan
.xport
.call_id
;
6621 pns_state
= &gs
->dst
.state
;
6622 pac_call_id
= &gsk
->lan
.xport
.call_id
;
6623 pac_state
= &gs
->src
.state
;
6627 pns_call_id
= &gsk
->lan
.xport
.call_id
;
6628 pns_state
= &gs
->src
.state
;
6629 pac_call_id
= &gsk
->ext_lan
.xport
.call_id
;
6630 pac_state
= &gs
->dst
.state
;
6634 DPFPRINTF(PF_DEBUG_URGENT
,
6635 ("pf_pptp_handler: bad directional!\n"));
6642 ct
= ntohs(cm
.ctrl
.type
);
6645 case PF_PPTP_CTRL_TYPE_CALL_OUT_REQ
:
6646 *pns_call_id
= cm
.msg
.call_out_req
.call_id
;
6647 *pns_state
= PFGRE1S_INITIATING
;
6648 if (s
->nat_rule
.ptr
&& pns_call_id
== &gsk
->lan
.xport
.call_id
) {
6649 spoof_call_id
= &cm
.msg
.call_out_req
.call_id
;
6653 case PF_PPTP_CTRL_TYPE_CALL_OUT_RPY
:
6654 *pac_call_id
= cm
.msg
.call_out_rpy
.call_id
;
6655 if (s
->nat_rule
.ptr
) {
6657 (pac_call_id
== &gsk
->lan
.xport
.call_id
) ?
6658 &cm
.msg
.call_out_rpy
.call_id
:
6659 &cm
.msg
.call_out_rpy
.peer_call_id
;
6661 if (gs
->timeout
== PFTM_UNLINKED
) {
6662 *pac_state
= PFGRE1S_INITIATING
;
6663 op
= PF_PPTP_INSERT_GRE
;
6667 case PF_PPTP_CTRL_TYPE_CALL_IN_1ST
:
6668 *pns_call_id
= cm
.msg
.call_in_1st
.call_id
;
6669 *pns_state
= PFGRE1S_INITIATING
;
6670 if (s
->nat_rule
.ptr
&& pns_call_id
== &gsk
->lan
.xport
.call_id
) {
6671 spoof_call_id
= &cm
.msg
.call_in_1st
.call_id
;
6675 case PF_PPTP_CTRL_TYPE_CALL_IN_2ND
:
6676 *pac_call_id
= cm
.msg
.call_in_2nd
.call_id
;
6677 *pac_state
= PFGRE1S_INITIATING
;
6678 if (s
->nat_rule
.ptr
) {
6680 (pac_call_id
== &gsk
->lan
.xport
.call_id
) ?
6681 &cm
.msg
.call_in_2nd
.call_id
:
6682 &cm
.msg
.call_in_2nd
.peer_call_id
;
6686 case PF_PPTP_CTRL_TYPE_CALL_IN_3RD
:
6687 if (s
->nat_rule
.ptr
&& pns_call_id
== &gsk
->lan
.xport
.call_id
) {
6688 spoof_call_id
= &cm
.msg
.call_in_3rd
.call_id
;
6690 if (cm
.msg
.call_in_3rd
.call_id
!= *pns_call_id
) {
6693 if (gs
->timeout
== PFTM_UNLINKED
) {
6694 op
= PF_PPTP_INSERT_GRE
;
6698 case PF_PPTP_CTRL_TYPE_CALL_CLR
:
6699 if (cm
.msg
.call_clr
.call_id
!= *pns_call_id
) {
6700 op
= PF_PPTP_REMOVE_GRE
;
6704 case PF_PPTP_CTRL_TYPE_CALL_DISC
:
6705 if (cm
.msg
.call_clr
.call_id
!= *pac_call_id
) {
6706 op
= PF_PPTP_REMOVE_GRE
;
6710 case PF_PPTP_CTRL_TYPE_ERROR
:
6711 if (s
->nat_rule
.ptr
&& pns_call_id
== &gsk
->lan
.xport
.call_id
) {
6712 spoof_call_id
= &cm
.msg
.error
.peer_call_id
;
6716 case PF_PPTP_CTRL_TYPE_SET_LINKINFO
:
6717 if (s
->nat_rule
.ptr
&& pac_call_id
== &gsk
->lan
.xport
.call_id
) {
6718 spoof_call_id
= &cm
.msg
.set_linkinfo
.peer_call_id
;
6727 if (!gsk
->gwy
.xport
.call_id
&& gsk
->lan
.xport
.call_id
) {
6728 gsk
->gwy
.xport
.call_id
= gsk
->lan
.xport
.call_id
;
6729 if (spoof_call_id
) {
6730 u_int16_t call_id
= 0;
6732 struct pf_state_key_cmp key
;
6734 key
.af_gwy
= gsk
->af_gwy
;
6735 key
.proto
= IPPROTO_GRE
;
6736 key
.proto_variant
= PF_GRE_PPTP_VARIANT
;
6737 PF_ACPY(&key
.gwy
.addr
, &gsk
->gwy
.addr
, key
.af_gwy
);
6738 PF_ACPY(&key
.ext_gwy
.addr
, &gsk
->ext_gwy
.addr
, key
.af_gwy
);
6739 key
.gwy
.xport
.call_id
= gsk
->gwy
.xport
.call_id
;
6740 key
.ext_gwy
.xport
.call_id
= gsk
->ext_gwy
.xport
.call_id
;
6742 call_id
= htonl(random());
6745 while (pf_find_state_all(&key
, PF_IN
, 0)) {
6746 call_id
= ntohs(call_id
);
6748 if (--call_id
== 0) {
6751 call_id
= htons(call_id
);
6753 key
.gwy
.xport
.call_id
= call_id
;
6756 DPFPRINTF(PF_DEBUG_URGENT
,
6757 ("pf_pptp_handler: failed to spoof "
6759 key
.gwy
.xport
.call_id
= 0;
6764 gsk
->gwy
.xport
.call_id
= call_id
;
6770 if (spoof_call_id
&& gsk
->lan
.xport
.call_id
!= gsk
->gwy
.xport
.call_id
) {
6771 if (*spoof_call_id
== gsk
->gwy
.xport
.call_id
) {
6772 *spoof_call_id
= gsk
->lan
.xport
.call_id
;
6773 th
->th_sum
= pf_cksum_fixup(th
->th_sum
,
6774 gsk
->gwy
.xport
.call_id
, gsk
->lan
.xport
.call_id
, 0);
6776 *spoof_call_id
= gsk
->gwy
.xport
.call_id
;
6777 th
->th_sum
= pf_cksum_fixup(th
->th_sum
,
6778 gsk
->lan
.xport
.call_id
, gsk
->gwy
.xport
.call_id
, 0);
6781 if (pf_lazy_makewritable(pd
, pbuf
, off
+ plen
) == NULL
) {
6782 pptps
->grev1_state
= NULL
;
6783 STATE_DEC_COUNTERS(gs
);
6784 pool_put(&pf_state_pl
, gs
);
6787 pbuf_copy_back(pbuf
, off
, plen
, &cm
);
6791 case PF_PPTP_REMOVE_GRE
:
6792 gs
->timeout
= PFTM_PURGE
;
6793 gs
->src
.state
= gs
->dst
.state
= PFGRE1S_NO_TRAFFIC
;
6794 gsk
->lan
.xport
.call_id
= 0;
6795 gsk
->gwy
.xport
.call_id
= 0;
6796 gsk
->ext_lan
.xport
.call_id
= 0;
6797 gsk
->ext_gwy
.xport
.call_id
= 0;
6798 gs
->id
= gs
->creatorid
= 0;
6801 case PF_PPTP_INSERT_GRE
:
6802 gs
->creation
= pf_time_second();
6803 gs
->expire
= pf_time_second();
6804 gs
->timeout
= PFTM_TCP_ESTABLISHED
;
6805 if (gs
->src_node
!= NULL
) {
6806 ++gs
->src_node
->states
;
6807 VERIFY(gs
->src_node
->states
!= 0);
6809 if (gs
->nat_src_node
!= NULL
) {
6810 ++gs
->nat_src_node
->states
;
6811 VERIFY(gs
->nat_src_node
->states
!= 0);
6813 pf_set_rt_ifp(gs
, &sk
->lan
.addr
, sk
->af_lan
);
6814 if (pf_insert_state(BOUND_IFACE(s
->rule
.ptr
, kif
), gs
)) {
6817 * FIX ME: insertion can fail when multiple PNS
6818 * behind the same NAT open calls to the same PAC
6819 * simultaneously because spoofed call ID numbers
6820 * are chosen before states are inserted. This is
6821 * hard to fix and happens infrequently enough that
6822 * users will normally try again and this ALG will
6823 * succeed. Failures are expected to be rare enough
6824 * that fixing this is a low priority.
6826 pptps
->grev1_state
= NULL
;
6827 pd
->lmw
= -1; /* Force PF_DROP on PFRES_MEMORY */
6828 pf_src_tree_remove_state(gs
);
6829 STATE_DEC_COUNTERS(gs
);
6830 pool_put(&pf_state_pl
, gs
);
6831 DPFPRINTF(PF_DEBUG_URGENT
, ("pf_pptp_handler: error "
6832 "inserting GREv1 state.\n"));
6842 pf_pptp_unlink(struct pf_state
*s
)
6844 struct pf_app_state
*as
= s
->state_key
->app_state
;
6845 struct pf_state
*grev1s
= as
->u
.pptp
.grev1_state
;
6848 struct pf_app_state
*gas
= grev1s
->state_key
->app_state
;
6850 if (grev1s
->timeout
< PFTM_MAX
) {
6851 grev1s
->timeout
= PFTM_PURGE
;
6853 gas
->u
.grev1
.pptp_state
= NULL
;
6854 as
->u
.pptp
.grev1_state
= NULL
;
6859 pf_grev1_unlink(struct pf_state
*s
)
6861 struct pf_app_state
*as
= s
->state_key
->app_state
;
6862 struct pf_state
*pptps
= as
->u
.grev1
.pptp_state
;
6865 struct pf_app_state
*pas
= pptps
->state_key
->app_state
;
6867 pas
->u
.pptp
.grev1_state
= NULL
;
6868 as
->u
.grev1
.pptp_state
= NULL
;
6873 pf_ike_compare(struct pf_app_state
*a
, struct pf_app_state
*b
)
6875 int64_t d
= a
->u
.ike
.cookie
- b
->u
.ike
.cookie
;
6876 return (d
> 0) ? 1 : ((d
< 0) ? -1 : 0);
6880 pf_do_nat64(struct pf_state_key
*sk
, struct pf_pdesc
*pd
, pbuf_t
*pbuf
,
6883 if (pd
->af
== AF_INET
) {
6884 if (pd
->af
!= sk
->af_lan
) {
6885 pd
->ndaddr
= sk
->lan
.addr
;
6886 pd
->naddr
= sk
->ext_lan
.addr
;
6888 pd
->naddr
= sk
->gwy
.addr
;
6889 pd
->ndaddr
= sk
->ext_gwy
.addr
;
6891 return pf_nat64_ipv4(pbuf
, off
, pd
);
6892 } else if (pd
->af
== AF_INET6
) {
6893 if (pd
->af
!= sk
->af_lan
) {
6894 pd
->ndaddr
= sk
->lan
.addr
;
6895 pd
->naddr
= sk
->ext_lan
.addr
;
6897 pd
->naddr
= sk
->gwy
.addr
;
6898 pd
->ndaddr
= sk
->ext_gwy
.addr
;
6900 return pf_nat64_ipv6(pbuf
, off
, pd
);
6906 pf_test_state_tcp(struct pf_state
**state
, int direction
, struct pfi_kif
*kif
,
6907 pbuf_t
*pbuf
, int off
, void *h
, struct pf_pdesc
*pd
,
6911 struct pf_state_key_cmp key
;
6912 struct tcphdr
*th
= pd
->hdr
.tcp
;
6913 u_int16_t win
= ntohs(th
->th_win
);
6914 u_int32_t ack
, end
, seq
, orig_seq
;
6918 struct pf_state_peer
*src
, *dst
;
6919 struct pf_state_key
*sk
;
6922 key
.proto
= IPPROTO_TCP
;
6923 key
.af_lan
= key
.af_gwy
= pd
->af
;
6926 * For NAT64 the first time rule search and state creation
6927 * is done on the incoming side only.
6928 * Once the state gets created, NAT64's LAN side (ipv6) will
6929 * not be able to find the state in ext-gwy tree as that normally
6930 * is intended to be looked up for incoming traffic from the
6932 * Therefore to handle NAT64 case we init keys here for both
6933 * lan-ext as well as ext-gwy trees.
6934 * In the state lookup we attempt a lookup on both trees if
6935 * first one does not return any result and return a match if
6936 * the match state's was created by NAT64 rule.
6938 PF_ACPY(&key
.ext_gwy
.addr
, pd
->src
, key
.af_gwy
);
6939 PF_ACPY(&key
.gwy
.addr
, pd
->dst
, key
.af_gwy
);
6940 key
.ext_gwy
.xport
.port
= th
->th_sport
;
6941 key
.gwy
.xport
.port
= th
->th_dport
;
6943 PF_ACPY(&key
.lan
.addr
, pd
->src
, key
.af_lan
);
6944 PF_ACPY(&key
.ext_lan
.addr
, pd
->dst
, key
.af_lan
);
6945 key
.lan
.xport
.port
= th
->th_sport
;
6946 key
.ext_lan
.xport
.port
= th
->th_dport
;
6950 sk
= (*state
)->state_key
;
6952 * In case of NAT64 the translation is first applied on the LAN
6953 * side. Therefore for stack's address family comparison
6954 * we use sk->af_lan.
6956 if ((direction
== sk
->direction
) && (pd
->af
== sk
->af_lan
)) {
6957 src
= &(*state
)->src
;
6958 dst
= &(*state
)->dst
;
6960 src
= &(*state
)->dst
;
6961 dst
= &(*state
)->src
;
6964 if (src
->state
== PF_TCPS_PROXY_SRC
) {
6965 if (direction
!= sk
->direction
) {
6966 REASON_SET(reason
, PFRES_SYNPROXY
);
6967 return PF_SYNPROXY_DROP
;
6969 if (th
->th_flags
& TH_SYN
) {
6970 if (ntohl(th
->th_seq
) != src
->seqlo
) {
6971 REASON_SET(reason
, PFRES_SYNPROXY
);
6974 pf_send_tcp((*state
)->rule
.ptr
, pd
->af
, pd
->dst
,
6975 pd
->src
, th
->th_dport
, th
->th_sport
,
6976 src
->seqhi
, ntohl(th
->th_seq
) + 1,
6977 TH_SYN
| TH_ACK
, 0, src
->mss
, 0, 1,
6979 REASON_SET(reason
, PFRES_SYNPROXY
);
6980 return PF_SYNPROXY_DROP
;
6981 } else if (!(th
->th_flags
& TH_ACK
) ||
6982 (ntohl(th
->th_ack
) != src
->seqhi
+ 1) ||
6983 (ntohl(th
->th_seq
) != src
->seqlo
+ 1)) {
6984 REASON_SET(reason
, PFRES_SYNPROXY
);
6986 } else if ((*state
)->src_node
!= NULL
&&
6987 pf_src_connlimit(state
)) {
6988 REASON_SET(reason
, PFRES_SRCLIMIT
);
6991 src
->state
= PF_TCPS_PROXY_DST
;
6994 if (src
->state
== PF_TCPS_PROXY_DST
) {
6995 struct pf_state_host
*psrc
, *pdst
;
6997 if (direction
== PF_OUT
) {
6999 pdst
= &sk
->ext_gwy
;
7001 psrc
= &sk
->ext_lan
;
7004 if (direction
== sk
->direction
) {
7005 if (((th
->th_flags
& (TH_SYN
| TH_ACK
)) != TH_ACK
) ||
7006 (ntohl(th
->th_ack
) != src
->seqhi
+ 1) ||
7007 (ntohl(th
->th_seq
) != src
->seqlo
+ 1)) {
7008 REASON_SET(reason
, PFRES_SYNPROXY
);
7011 src
->max_win
= MAX(ntohs(th
->th_win
), 1);
7012 if (dst
->seqhi
== 1) {
7013 dst
->seqhi
= htonl(random());
7015 pf_send_tcp((*state
)->rule
.ptr
, pd
->af
, &psrc
->addr
,
7016 &pdst
->addr
, psrc
->xport
.port
, pdst
->xport
.port
,
7017 dst
->seqhi
, 0, TH_SYN
, 0,
7018 src
->mss
, 0, 0, (*state
)->tag
, NULL
, NULL
);
7019 REASON_SET(reason
, PFRES_SYNPROXY
);
7020 return PF_SYNPROXY_DROP
;
7021 } else if (((th
->th_flags
& (TH_SYN
| TH_ACK
)) !=
7022 (TH_SYN
| TH_ACK
)) ||
7023 (ntohl(th
->th_ack
) != dst
->seqhi
+ 1)) {
7024 REASON_SET(reason
, PFRES_SYNPROXY
);
7027 dst
->max_win
= MAX(ntohs(th
->th_win
), 1);
7028 dst
->seqlo
= ntohl(th
->th_seq
);
7029 pf_send_tcp((*state
)->rule
.ptr
, pd
->af
, pd
->dst
,
7030 pd
->src
, th
->th_dport
, th
->th_sport
,
7031 ntohl(th
->th_ack
), ntohl(th
->th_seq
) + 1,
7032 TH_ACK
, src
->max_win
, 0, 0, 0,
7033 (*state
)->tag
, NULL
, NULL
);
7034 pf_send_tcp((*state
)->rule
.ptr
, pd
->af
, &psrc
->addr
,
7035 &pdst
->addr
, psrc
->xport
.port
, pdst
->xport
.port
,
7036 src
->seqhi
+ 1, src
->seqlo
+ 1,
7037 TH_ACK
, dst
->max_win
, 0, 0, 1,
7039 src
->seqdiff
= dst
->seqhi
-
7041 dst
->seqdiff
= src
->seqhi
-
7043 src
->seqhi
= src
->seqlo
+
7045 dst
->seqhi
= dst
->seqlo
+
7047 src
->wscale
= dst
->wscale
= 0;
7048 src
->state
= dst
->state
=
7050 REASON_SET(reason
, PFRES_SYNPROXY
);
7051 return PF_SYNPROXY_DROP
;
7055 if (((th
->th_flags
& (TH_SYN
| TH_ACK
)) == TH_SYN
) &&
7056 dst
->state
>= TCPS_FIN_WAIT_2
&&
7057 src
->state
>= TCPS_FIN_WAIT_2
) {
7058 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
7059 printf("pf: state reuse ");
7060 pf_print_state(*state
);
7061 pf_print_flags(th
->th_flags
);
7064 /* XXX make sure it's the same direction ?? */
7065 src
->state
= dst
->state
= TCPS_CLOSED
;
7066 pf_unlink_state(*state
);
7071 if ((th
->th_flags
& TH_SYN
) == 0) {
7072 sws
= (src
->wscale
& PF_WSCALE_FLAG
) ?
7073 (src
->wscale
& PF_WSCALE_MASK
) : TCP_MAX_WINSHIFT
;
7074 dws
= (dst
->wscale
& PF_WSCALE_FLAG
) ?
7075 (dst
->wscale
& PF_WSCALE_MASK
) : TCP_MAX_WINSHIFT
;
7081 * Sequence tracking algorithm from Guido van Rooij's paper:
7082 * http://www.madison-gurkha.com/publications/tcp_filtering/
7086 orig_seq
= seq
= ntohl(th
->th_seq
);
7087 if (src
->seqlo
== 0) {
7088 /* First packet from this end. Set its state */
7090 if ((pd
->flags
& PFDESC_TCP_NORM
|| dst
->scrub
) &&
7091 src
->scrub
== NULL
) {
7092 if (pf_normalize_tcp_init(pbuf
, off
, pd
, th
, src
, dst
)) {
7093 REASON_SET(reason
, PFRES_MEMORY
);
7098 /* Deferred generation of sequence number modulator */
7099 if (dst
->seqdiff
&& !src
->seqdiff
) {
7100 /* use random iss for the TCP server */
7101 while ((src
->seqdiff
= random() - seq
) == 0) {
7104 ack
= ntohl(th
->th_ack
) - dst
->seqdiff
;
7105 pf_change_a(&th
->th_seq
, &th
->th_sum
, htonl(seq
+
7107 pf_change_a(&th
->th_ack
, &th
->th_sum
, htonl(ack
), 0);
7108 copyback
= off
+ sizeof(*th
);
7110 ack
= ntohl(th
->th_ack
);
7113 end
= seq
+ pd
->p_len
;
7114 if (th
->th_flags
& TH_SYN
) {
7116 if (dst
->wscale
& PF_WSCALE_FLAG
) {
7117 src
->wscale
= pf_get_wscale(pbuf
, off
,
7118 th
->th_off
, pd
->af
);
7119 if (src
->wscale
& PF_WSCALE_FLAG
) {
7121 * Remove scale factor from initial
7124 sws
= src
->wscale
& PF_WSCALE_MASK
;
7125 win
= ((u_int32_t
)win
+ (1 << sws
) - 1)
7127 dws
= dst
->wscale
& PF_WSCALE_MASK
;
7130 * Window scale negotiation has failed,
7131 * therefore we must restore the window
7132 * scale in the state record that we
7133 * optimistically removed in
7134 * pf_test_rule(). Care is required to
7135 * prevent arithmetic overflow from
7136 * zeroing the window when it's
7137 * truncated down to 16-bits.
7139 u_int32_t max_win
= dst
->max_win
;
7141 dst
->wscale
& PF_WSCALE_MASK
;
7142 dst
->max_win
= MIN(0xffff, max_win
);
7143 /* in case of a retrans SYN|ACK */
7148 if (th
->th_flags
& TH_FIN
) {
7153 if (src
->state
< TCPS_SYN_SENT
) {
7154 src
->state
= TCPS_SYN_SENT
;
7158 * May need to slide the window (seqhi may have been set by
7159 * the crappy stack check or if we picked up the connection
7160 * after establishment)
7162 if (src
->seqhi
== 1 ||
7163 SEQ_GEQ(end
+ MAX(1, (u_int32_t
)dst
->max_win
<< dws
),
7165 src
->seqhi
= end
+ MAX(1, (u_int32_t
)dst
->max_win
<< dws
);
7167 if (win
> src
->max_win
) {
7171 ack
= ntohl(th
->th_ack
) - dst
->seqdiff
;
7173 /* Modulate sequence numbers */
7174 pf_change_a(&th
->th_seq
, &th
->th_sum
, htonl(seq
+
7176 pf_change_a(&th
->th_ack
, &th
->th_sum
, htonl(ack
), 0);
7177 copyback
= off
+ sizeof(*th
);
7179 end
= seq
+ pd
->p_len
;
7180 if (th
->th_flags
& TH_SYN
) {
7183 if (th
->th_flags
& TH_FIN
) {
7188 if ((th
->th_flags
& TH_ACK
) == 0) {
7189 /* Let it pass through the ack skew check */
7191 } else if ((ack
== 0 &&
7192 (th
->th_flags
& (TH_ACK
| TH_RST
)) == (TH_ACK
| TH_RST
)) ||
7193 /* broken tcp stacks do not set ack */
7194 (dst
->state
< TCPS_SYN_SENT
)) {
7196 * Many stacks (ours included) will set the ACK number in an
7197 * FIN|ACK if the SYN times out -- no sequence to ACK.
7203 /* Ease sequencing restrictions on no data packets */
7208 ackskew
= dst
->seqlo
- ack
;
7212 * Need to demodulate the sequence numbers in any TCP SACK options
7213 * (Selective ACK). We could optionally validate the SACK values
7214 * against the current ACK window, either forwards or backwards, but
7215 * I'm not confident that SACK has been implemented properly
7216 * everywhere. It wouldn't surprise me if several stacks accidently
7217 * SACK too far backwards of previously ACKed data. There really aren't
7218 * any security implications of bad SACKing unless the target stack
7219 * doesn't validate the option length correctly. Someone trying to
7220 * spoof into a TCP connection won't bother blindly sending SACK
7223 if (dst
->seqdiff
&& (th
->th_off
<< 2) > (int)sizeof(struct tcphdr
)) {
7224 copyback
= pf_modulate_sack(pbuf
, off
, pd
, th
, dst
);
7225 if (copyback
== -1) {
7226 REASON_SET(reason
, PFRES_MEMORY
);
7230 pbuf
= pd
->mp
; // XXXSCW: Why?
7234 #define MAXACKWINDOW (0xffff + 1500) /* 1500 is an arbitrary fudge factor */
7235 if (SEQ_GEQ(src
->seqhi
, end
) &&
7236 /* Last octet inside other's window space */
7237 SEQ_GEQ(seq
, src
->seqlo
- ((u_int32_t
)dst
->max_win
<< dws
)) &&
7238 /* Retrans: not more than one window back */
7239 (ackskew
>= -MAXACKWINDOW
) &&
7240 /* Acking not more than one reassembled fragment backwards */
7241 (ackskew
<= (MAXACKWINDOW
<< sws
)) &&
7242 /* Acking not more than one window forward */
7243 ((th
->th_flags
& TH_RST
) == 0 || orig_seq
== src
->seqlo
||
7244 (orig_seq
== src
->seqlo
+ 1) || (orig_seq
+ 1 == src
->seqlo
) ||
7245 (pd
->flags
& PFDESC_IP_REAS
) == 0)) {
7246 /* Require an exact/+1 sequence match on resets when possible */
7248 if (dst
->scrub
|| src
->scrub
) {
7249 if (pf_normalize_tcp_stateful(pbuf
, off
, pd
, reason
, th
,
7250 *state
, src
, dst
, ©back
)) {
7254 pbuf
= pd
->mp
; // XXXSCW: Why?
7257 /* update max window */
7258 if (src
->max_win
< win
) {
7261 /* synchronize sequencing */
7262 if (SEQ_GT(end
, src
->seqlo
)) {
7265 /* slide the window of what the other end can send */
7266 if (SEQ_GEQ(ack
+ ((u_int32_t
)win
<< sws
), dst
->seqhi
)) {
7267 dst
->seqhi
= ack
+ MAX(((u_int32_t
)win
<< sws
), 1);
7271 if (th
->th_flags
& TH_SYN
) {
7272 if (src
->state
< TCPS_SYN_SENT
) {
7273 src
->state
= TCPS_SYN_SENT
;
7276 if (th
->th_flags
& TH_FIN
) {
7277 if (src
->state
< TCPS_CLOSING
) {
7278 src
->state
= TCPS_CLOSING
;
7281 if (th
->th_flags
& TH_ACK
) {
7282 if (dst
->state
== TCPS_SYN_SENT
) {
7283 dst
->state
= TCPS_ESTABLISHED
;
7284 if (src
->state
== TCPS_ESTABLISHED
&&
7285 (*state
)->src_node
!= NULL
&&
7286 pf_src_connlimit(state
)) {
7287 REASON_SET(reason
, PFRES_SRCLIMIT
);
7290 } else if (dst
->state
== TCPS_CLOSING
) {
7291 dst
->state
= TCPS_FIN_WAIT_2
;
7294 if (th
->th_flags
& TH_RST
) {
7295 src
->state
= dst
->state
= TCPS_TIME_WAIT
;
7298 /* update expire time */
7299 (*state
)->expire
= pf_time_second();
7300 if (src
->state
>= TCPS_FIN_WAIT_2
&&
7301 dst
->state
>= TCPS_FIN_WAIT_2
) {
7302 (*state
)->timeout
= PFTM_TCP_CLOSED
;
7303 } else if (src
->state
>= TCPS_CLOSING
&&
7304 dst
->state
>= TCPS_CLOSING
) {
7305 (*state
)->timeout
= PFTM_TCP_FIN_WAIT
;
7306 } else if (src
->state
< TCPS_ESTABLISHED
||
7307 dst
->state
< TCPS_ESTABLISHED
) {
7308 (*state
)->timeout
= PFTM_TCP_OPENING
;
7309 } else if (src
->state
>= TCPS_CLOSING
||
7310 dst
->state
>= TCPS_CLOSING
) {
7311 (*state
)->timeout
= PFTM_TCP_CLOSING
;
7313 (*state
)->timeout
= PFTM_TCP_ESTABLISHED
;
7316 /* Fall through to PASS packet */
7317 } else if ((dst
->state
< TCPS_SYN_SENT
||
7318 dst
->state
>= TCPS_FIN_WAIT_2
|| src
->state
>= TCPS_FIN_WAIT_2
) &&
7319 SEQ_GEQ(src
->seqhi
+ MAXACKWINDOW
, end
) &&
7320 /* Within a window forward of the originating packet */
7321 SEQ_GEQ(seq
, src
->seqlo
- MAXACKWINDOW
)) {
7322 /* Within a window backward of the originating packet */
7325 * This currently handles three situations:
7326 * 1) Stupid stacks will shotgun SYNs before their peer
7328 * 2) When PF catches an already established stream (the
7329 * firewall rebooted, the state table was flushed, routes
7331 * 3) Packets get funky immediately after the connection
7332 * closes (this should catch Solaris spurious ACK|FINs
7333 * that web servers like to spew after a close)
7335 * This must be a little more careful than the above code
7336 * since packet floods will also be caught here. We don't
7337 * update the TTL here to mitigate the damage of a packet
7338 * flood and so the same code can handle awkward establishment
7339 * and a loosened connection close.
7340 * In the establishment case, a correct peer response will
7341 * validate the connection, go through the normal state code
7342 * and keep updating the state TTL.
7345 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
7346 printf("pf: loose state match: ");
7347 pf_print_state(*state
);
7348 pf_print_flags(th
->th_flags
);
7349 printf(" seq=%u (%u) ack=%u len=%u ackskew=%d "
7350 "pkts=%llu:%llu dir=%s,%s\n", seq
, orig_seq
, ack
,
7351 pd
->p_len
, ackskew
, (*state
)->packets
[0],
7352 (*state
)->packets
[1],
7353 direction
== PF_IN
? "in" : "out",
7354 direction
== sk
->direction
?
7358 if (dst
->scrub
|| src
->scrub
) {
7359 if (pf_normalize_tcp_stateful(pbuf
, off
, pd
, reason
, th
,
7360 *state
, src
, dst
, ©back
)) {
7363 pbuf
= pd
->mp
; // XXXSCW: Why?
7366 /* update max window */
7367 if (src
->max_win
< win
) {
7370 /* synchronize sequencing */
7371 if (SEQ_GT(end
, src
->seqlo
)) {
7374 /* slide the window of what the other end can send */
7375 if (SEQ_GEQ(ack
+ ((u_int32_t
)win
<< sws
), dst
->seqhi
)) {
7376 dst
->seqhi
= ack
+ MAX(((u_int32_t
)win
<< sws
), 1);
7380 * Cannot set dst->seqhi here since this could be a shotgunned
7381 * SYN and not an already established connection.
7384 if (th
->th_flags
& TH_FIN
) {
7385 if (src
->state
< TCPS_CLOSING
) {
7386 src
->state
= TCPS_CLOSING
;
7389 if (th
->th_flags
& TH_RST
) {
7390 src
->state
= dst
->state
= TCPS_TIME_WAIT
;
7393 /* Fall through to PASS packet */
7395 if (dst
->state
== TCPS_SYN_SENT
&&
7396 src
->state
== TCPS_SYN_SENT
) {
7397 /* Send RST for state mismatches during handshake */
7398 if (!(th
->th_flags
& TH_RST
)) {
7399 pf_send_tcp((*state
)->rule
.ptr
, pd
->af
,
7400 pd
->dst
, pd
->src
, th
->th_dport
,
7401 th
->th_sport
, ntohl(th
->th_ack
), 0,
7403 (*state
)->rule
.ptr
->return_ttl
, 1, 0,
7404 pd
->eh
, kif
->pfik_ifp
);
7409 } else if (pf_status
.debug
>= PF_DEBUG_MISC
) {
7410 printf("pf: BAD state: ");
7411 pf_print_state(*state
);
7412 pf_print_flags(th
->th_flags
);
7413 printf("\n seq=%u (%u) ack=%u len=%u ackskew=%d "
7414 "sws=%u dws=%u pkts=%llu:%llu dir=%s,%s\n",
7415 seq
, orig_seq
, ack
, pd
->p_len
, ackskew
,
7416 (unsigned int)sws
, (unsigned int)dws
,
7417 (*state
)->packets
[0], (*state
)->packets
[1],
7418 direction
== PF_IN
? "in" : "out",
7419 direction
== sk
->direction
?
7421 printf("pf: State failure on: %c %c %c %c | %c %c\n",
7422 SEQ_GEQ(src
->seqhi
, end
) ? ' ' : '1',
7424 src
->seqlo
- ((u_int32_t
)dst
->max_win
<< dws
)) ?
7426 (ackskew
>= -MAXACKWINDOW
) ? ' ' : '3',
7427 (ackskew
<= (MAXACKWINDOW
<< sws
)) ? ' ' : '4',
7428 SEQ_GEQ(src
->seqhi
+ MAXACKWINDOW
, end
) ?' ' :'5',
7429 SEQ_GEQ(seq
, src
->seqlo
- MAXACKWINDOW
) ?' ' :'6');
7431 REASON_SET(reason
, PFRES_BADSTATE
);
7435 /* Any packets which have gotten here are to be passed */
7437 if (sk
->app_state
&&
7438 sk
->app_state
->handler
) {
7439 sk
->app_state
->handler(*state
, direction
,
7440 off
+ (th
->th_off
<< 2), pd
, kif
);
7442 REASON_SET(reason
, PFRES_MEMORY
);
7445 pbuf
= pd
->mp
; // XXXSCW: Why?
7448 /* translate source/destination address, if necessary */
7449 if (STATE_TRANSLATE(sk
)) {
7450 pd
->naf
= (pd
->af
== sk
->af_lan
) ? sk
->af_gwy
: sk
->af_lan
;
7452 if (direction
== PF_OUT
) {
7453 pf_change_ap(direction
, pd
->mp
, pd
->src
, &th
->th_sport
,
7454 pd
->ip_sum
, &th
->th_sum
, &sk
->gwy
.addr
,
7455 sk
->gwy
.xport
.port
, 0, pd
->af
, pd
->naf
, 1);
7457 if (pd
->af
!= pd
->naf
) {
7458 if (pd
->af
== sk
->af_gwy
) {
7459 pf_change_ap(direction
, pd
->mp
, pd
->dst
,
7460 &th
->th_dport
, pd
->ip_sum
,
7461 &th
->th_sum
, &sk
->lan
.addr
,
7462 sk
->lan
.xport
.port
, 0,
7463 pd
->af
, pd
->naf
, 0);
7465 pf_change_ap(direction
, pd
->mp
, pd
->src
,
7466 &th
->th_sport
, pd
->ip_sum
,
7467 &th
->th_sum
, &sk
->ext_lan
.addr
,
7468 th
->th_sport
, 0, pd
->af
,
7471 pf_change_ap(direction
, pd
->mp
, pd
->dst
,
7472 &th
->th_dport
, pd
->ip_sum
,
7473 &th
->th_sum
, &sk
->ext_gwy
.addr
,
7474 th
->th_dport
, 0, pd
->af
,
7477 pf_change_ap(direction
, pd
->mp
, pd
->src
,
7478 &th
->th_sport
, pd
->ip_sum
,
7479 &th
->th_sum
, &sk
->gwy
.addr
,
7480 sk
->gwy
.xport
.port
, 0, pd
->af
,
7484 pf_change_ap(direction
, pd
->mp
, pd
->dst
,
7485 &th
->th_dport
, pd
->ip_sum
,
7486 &th
->th_sum
, &sk
->lan
.addr
,
7487 sk
->lan
.xport
.port
, 0, pd
->af
,
7492 copyback
= off
+ sizeof(*th
);
7496 if (pf_lazy_makewritable(pd
, pbuf
, copyback
) == NULL
) {
7497 REASON_SET(reason
, PFRES_MEMORY
);
7501 /* Copyback sequence modulation or stateful scrub changes */
7502 pbuf_copy_back(pbuf
, off
, sizeof(*th
), th
);
7504 if (sk
->af_lan
!= sk
->af_gwy
) {
7505 return pf_do_nat64(sk
, pd
, pbuf
, off
);
7512 pf_test_state_udp(struct pf_state
**state
, int direction
, struct pfi_kif
*kif
,
7513 pbuf_t
*pbuf
, int off
, void *h
, struct pf_pdesc
*pd
, u_short
*reason
)
7516 struct pf_state_peer
*src
, *dst
;
7517 struct pf_state_key_cmp key
;
7518 struct pf_state_key
*sk
;
7519 struct udphdr
*uh
= pd
->hdr
.udp
;
7520 struct pf_app_state as
;
7521 int action
, extfilter
;
7523 key
.proto_variant
= PF_EXTFILTER_APD
;
7525 key
.proto
= IPPROTO_UDP
;
7526 key
.af_lan
= key
.af_gwy
= pd
->af
;
7529 * For NAT64 the first time rule search and state creation
7530 * is done on the incoming side only.
7531 * Once the state gets created, NAT64's LAN side (ipv6) will
7532 * not be able to find the state in ext-gwy tree as that normally
7533 * is intended to be looked up for incoming traffic from the
7535 * Therefore to handle NAT64 case we init keys here for both
7536 * lan-ext as well as ext-gwy trees.
7537 * In the state lookup we attempt a lookup on both trees if
7538 * first one does not return any result and return a match if
7539 * the match state's was created by NAT64 rule.
7541 PF_ACPY(&key
.ext_gwy
.addr
, pd
->src
, key
.af_gwy
);
7542 PF_ACPY(&key
.gwy
.addr
, pd
->dst
, key
.af_gwy
);
7543 key
.ext_gwy
.xport
.port
= uh
->uh_sport
;
7544 key
.gwy
.xport
.port
= uh
->uh_dport
;
7546 PF_ACPY(&key
.lan
.addr
, pd
->src
, key
.af_lan
);
7547 PF_ACPY(&key
.ext_lan
.addr
, pd
->dst
, key
.af_lan
);
7548 key
.lan
.xport
.port
= uh
->uh_sport
;
7549 key
.ext_lan
.xport
.port
= uh
->uh_dport
;
7551 if (ntohs(uh
->uh_sport
) == PF_IKE_PORT
&&
7552 ntohs(uh
->uh_dport
) == PF_IKE_PORT
) {
7553 struct pf_ike_hdr ike
;
7554 size_t plen
= pbuf
->pb_packet_len
- off
- sizeof(*uh
);
7555 if (plen
< PF_IKE_PACKET_MINSIZE
) {
7556 DPFPRINTF(PF_DEBUG_MISC
,
7557 ("pf: IKE message too small.\n"));
7561 if (plen
> sizeof(ike
)) {
7564 pbuf_copy_data(pbuf
, off
+ sizeof(*uh
), plen
, &ike
);
7566 if (ike
.initiator_cookie
) {
7567 key
.app_state
= &as
;
7568 as
.compare_lan_ext
= pf_ike_compare
;
7569 as
.compare_ext_gwy
= pf_ike_compare
;
7570 as
.u
.ike
.cookie
= ike
.initiator_cookie
;
7573 * <http://tools.ietf.org/html/\
7574 * draft-ietf-ipsec-nat-t-ike-01>
7575 * Support non-standard NAT-T implementations that
7576 * push the ESP packet over the top of the IKE packet.
7577 * Do not drop packet.
7579 DPFPRINTF(PF_DEBUG_MISC
,
7580 ("pf: IKE initiator cookie = 0.\n"));
7584 *state
= pf_find_state(kif
, &key
, direction
);
7586 if (!key
.app_state
&& *state
== 0) {
7587 key
.proto_variant
= PF_EXTFILTER_AD
;
7588 *state
= pf_find_state(kif
, &key
, direction
);
7591 if (!key
.app_state
&& *state
== 0) {
7592 key
.proto_variant
= PF_EXTFILTER_EI
;
7593 *state
= pf_find_state(kif
, &key
, direction
);
7596 /* similar to STATE_LOOKUP() */
7597 if (*state
!= NULL
&& pd
!= NULL
&& !(pd
->pktflags
& PKTF_FLOW_ID
)) {
7598 pd
->flowsrc
= (*state
)->state_key
->flowsrc
;
7599 pd
->flowhash
= (*state
)->state_key
->flowhash
;
7600 if (pd
->flowhash
!= 0) {
7601 pd
->pktflags
|= PKTF_FLOW_ID
;
7602 pd
->pktflags
&= ~PKTF_FLOW_ADV
;
7606 if (pf_state_lookup_aux(state
, kif
, direction
, &action
)) {
7610 sk
= (*state
)->state_key
;
7613 * In case of NAT64 the translation is first applied on the LAN
7614 * side. Therefore for stack's address family comparison
7615 * we use sk->af_lan.
7617 if ((direction
== sk
->direction
) && (pd
->af
== sk
->af_lan
)) {
7618 src
= &(*state
)->src
;
7619 dst
= &(*state
)->dst
;
7621 src
= &(*state
)->dst
;
7622 dst
= &(*state
)->src
;
7626 if (src
->state
< PFUDPS_SINGLE
) {
7627 src
->state
= PFUDPS_SINGLE
;
7629 if (dst
->state
== PFUDPS_SINGLE
) {
7630 dst
->state
= PFUDPS_MULTIPLE
;
7633 /* update expire time */
7634 (*state
)->expire
= pf_time_second();
7635 if (src
->state
== PFUDPS_MULTIPLE
&& dst
->state
== PFUDPS_MULTIPLE
) {
7636 (*state
)->timeout
= PFTM_UDP_MULTIPLE
;
7638 (*state
)->timeout
= PFTM_UDP_SINGLE
;
7641 extfilter
= sk
->proto_variant
;
7642 if (extfilter
> PF_EXTFILTER_APD
) {
7643 if (direction
== PF_OUT
) {
7644 sk
->ext_lan
.xport
.port
= key
.ext_lan
.xport
.port
;
7645 if (extfilter
> PF_EXTFILTER_AD
) {
7646 PF_ACPY(&sk
->ext_lan
.addr
, &key
.ext_lan
.addr
,
7650 sk
->ext_gwy
.xport
.port
= key
.ext_gwy
.xport
.port
;
7651 if (extfilter
> PF_EXTFILTER_AD
) {
7652 PF_ACPY(&sk
->ext_gwy
.addr
, &key
.ext_gwy
.addr
,
7658 if (sk
->app_state
&& sk
->app_state
->handler
) {
7659 sk
->app_state
->handler(*state
, direction
, off
+ uh
->uh_ulen
,
7662 REASON_SET(reason
, PFRES_MEMORY
);
7665 pbuf
= pd
->mp
; // XXXSCW: Why?
7668 /* translate source/destination address, if necessary */
7669 if (STATE_TRANSLATE(sk
)) {
7670 if (pf_lazy_makewritable(pd
, pbuf
, off
+ sizeof(*uh
)) == NULL
) {
7671 REASON_SET(reason
, PFRES_MEMORY
);
7675 pd
->naf
= (pd
->af
== sk
->af_lan
) ? sk
->af_gwy
: sk
->af_lan
;
7677 if (direction
== PF_OUT
) {
7678 pf_change_ap(direction
, pd
->mp
, pd
->src
, &uh
->uh_sport
,
7679 pd
->ip_sum
, &uh
->uh_sum
, &sk
->gwy
.addr
,
7680 sk
->gwy
.xport
.port
, 1, pd
->af
, pd
->naf
, 1);
7682 if (pd
->af
!= pd
->naf
) {
7683 if (pd
->af
== sk
->af_gwy
) {
7684 pf_change_ap(direction
, pd
->mp
, pd
->dst
,
7685 &uh
->uh_dport
, pd
->ip_sum
,
7686 &uh
->uh_sum
, &sk
->lan
.addr
,
7687 sk
->lan
.xport
.port
, 1,
7688 pd
->af
, pd
->naf
, 0);
7690 pf_change_ap(direction
, pd
->mp
, pd
->src
,
7691 &uh
->uh_sport
, pd
->ip_sum
,
7692 &uh
->uh_sum
, &sk
->ext_lan
.addr
,
7693 uh
->uh_sport
, 1, pd
->af
,
7696 pf_change_ap(direction
, pd
->mp
, pd
->dst
,
7697 &uh
->uh_dport
, pd
->ip_sum
,
7698 &uh
->uh_sum
, &sk
->ext_gwy
.addr
,
7699 uh
->uh_dport
, 1, pd
->af
,
7702 pf_change_ap(direction
, pd
->mp
, pd
->src
,
7703 &uh
->uh_sport
, pd
->ip_sum
,
7704 &uh
->uh_sum
, &sk
->gwy
.addr
,
7705 sk
->gwy
.xport
.port
, 1, pd
->af
,
7709 pf_change_ap(direction
, pd
->mp
, pd
->dst
,
7710 &uh
->uh_dport
, pd
->ip_sum
,
7711 &uh
->uh_sum
, &sk
->lan
.addr
,
7712 sk
->lan
.xport
.port
, 1,
7713 pd
->af
, pd
->naf
, 1);
7717 pbuf_copy_back(pbuf
, off
, sizeof(*uh
), uh
);
7718 if (sk
->af_lan
!= sk
->af_gwy
) {
7719 return pf_do_nat64(sk
, pd
, pbuf
, off
);
7726 pf_test_state_icmp(struct pf_state
**state
, int direction
, struct pfi_kif
*kif
,
7727 pbuf_t
*pbuf
, int off
, void *h
, struct pf_pdesc
*pd
, u_short
*reason
)
7730 struct pf_addr
*saddr
= pd
->src
, *daddr
= pd
->dst
;
7731 struct in_addr srcv4_inaddr
= saddr
->v4addr
;
7732 u_int16_t icmpid
= 0, *icmpsum
= NULL
;
7733 u_int8_t icmptype
= 0;
7735 struct pf_state_key_cmp key
;
7736 struct pf_state_key
*sk
;
7738 struct pf_app_state as
;
7743 switch (pd
->proto
) {
7746 icmptype
= pd
->hdr
.icmp
->icmp_type
;
7747 icmpid
= pd
->hdr
.icmp
->icmp_id
;
7748 icmpsum
= &pd
->hdr
.icmp
->icmp_cksum
;
7750 if (ICMP_ERRORTYPE(icmptype
)) {
7756 case IPPROTO_ICMPV6
:
7757 icmptype
= pd
->hdr
.icmp6
->icmp6_type
;
7758 icmpid
= pd
->hdr
.icmp6
->icmp6_id
;
7759 icmpsum
= &pd
->hdr
.icmp6
->icmp6_cksum
;
7761 if (ICMP6_ERRORTYPE(icmptype
)) {
7770 * ICMP query/reply message not related to a TCP/UDP packet.
7771 * Search for an ICMP state.
7774 * NAT64 requires protocol translation between ICMPv4
7775 * and ICMPv6. TCP and UDP do not require protocol
7776 * translation. To avoid adding complexity just to
7777 * handle ICMP(v4addr/v6addr), we always lookup for
7778 * proto = IPPROTO_ICMP on both LAN and WAN side
7780 key
.proto
= IPPROTO_ICMP
;
7781 key
.af_lan
= key
.af_gwy
= pd
->af
;
7783 PF_ACPY(&key
.ext_gwy
.addr
, pd
->src
, key
.af_gwy
);
7784 PF_ACPY(&key
.gwy
.addr
, pd
->dst
, key
.af_gwy
);
7785 key
.ext_gwy
.xport
.port
= 0;
7786 key
.gwy
.xport
.port
= icmpid
;
7788 PF_ACPY(&key
.lan
.addr
, pd
->src
, key
.af_lan
);
7789 PF_ACPY(&key
.ext_lan
.addr
, pd
->dst
, key
.af_lan
);
7790 key
.lan
.xport
.port
= icmpid
;
7791 key
.ext_lan
.xport
.port
= 0;
7795 sk
= (*state
)->state_key
;
7796 (*state
)->expire
= pf_time_second();
7797 (*state
)->timeout
= PFTM_ICMP_ERROR_REPLY
;
7799 /* translate source/destination address, if necessary */
7800 if (STATE_TRANSLATE(sk
)) {
7801 pd
->naf
= (pd
->af
== sk
->af_lan
) ?
7802 sk
->af_gwy
: sk
->af_lan
;
7803 if (direction
== PF_OUT
) {
7807 pf_change_a(&saddr
->v4addr
.s_addr
,
7809 sk
->gwy
.addr
.v4addr
.s_addr
, 0);
7810 pd
->hdr
.icmp
->icmp_cksum
=
7812 pd
->hdr
.icmp
->icmp_cksum
, icmpid
,
7813 sk
->gwy
.xport
.port
, 0);
7814 pd
->hdr
.icmp
->icmp_id
=
7816 if (pf_lazy_makewritable(pd
, pbuf
,
7817 off
+ ICMP_MINLEN
) == NULL
) {
7820 pbuf_copy_back(pbuf
, off
, ICMP_MINLEN
,
7827 &pd
->hdr
.icmp6
->icmp6_cksum
,
7829 if (pf_lazy_makewritable(pd
, NULL
,
7830 off
+ sizeof(struct icmp6_hdr
)) ==
7834 pbuf_copy_back(pbuf
, off
,
7835 sizeof(struct icmp6_hdr
),
7844 if (pd
->naf
!= AF_INET
) {
7845 if (pf_translate_icmp_af(
7846 AF_INET6
, pd
->hdr
.icmp
)) {
7850 pd
->proto
= IPPROTO_ICMPV6
;
7852 pf_change_a(&daddr
->v4addr
.s_addr
,
7854 sk
->lan
.addr
.v4addr
.s_addr
, 0);
7856 pd
->hdr
.icmp
->icmp_cksum
=
7858 pd
->hdr
.icmp
->icmp_cksum
,
7859 icmpid
, sk
->lan
.xport
.port
, 0);
7861 pd
->hdr
.icmp
->icmp_id
=
7865 if (pf_lazy_makewritable(pd
, pbuf
,
7866 off
+ ICMP_MINLEN
) == NULL
) {
7869 pbuf_copy_back(pbuf
, off
, ICMP_MINLEN
,
7871 if (sk
->af_lan
!= sk
->af_gwy
) {
7872 return pf_do_nat64(sk
, pd
,
7879 if (pd
->naf
!= AF_INET6
) {
7880 if (pf_translate_icmp_af(
7881 AF_INET
, pd
->hdr
.icmp6
)) {
7885 pd
->proto
= IPPROTO_ICMP
;
7888 &pd
->hdr
.icmp6
->icmp6_cksum
,
7891 if (pf_lazy_makewritable(pd
, pbuf
,
7892 off
+ sizeof(struct icmp6_hdr
)) ==
7896 pbuf_copy_back(pbuf
, off
,
7897 sizeof(struct icmp6_hdr
),
7899 if (sk
->af_lan
!= sk
->af_gwy
) {
7900 return pf_do_nat64(sk
, pd
,
7912 * ICMP error message in response to a TCP/UDP packet.
7913 * Extract the inner TCP/UDP header and search for that state.
7915 struct pf_pdesc pd2
; /* For inner (original) header */
7920 struct ip6_hdr h2_6
;
7926 memset(&pd2
, 0, sizeof(pd2
));
7932 /* offset of h2 in mbuf chain */
7933 ipoff2
= off
+ ICMP_MINLEN
;
7935 if (!pf_pull_hdr(pbuf
, ipoff2
, &h2
, sizeof(h2
),
7936 NULL
, reason
, pd2
.af
)) {
7937 DPFPRINTF(PF_DEBUG_MISC
,
7938 ("pf: ICMP error message too short "
7943 * ICMP error messages don't refer to non-first
7946 if (h2
.ip_off
& htons(IP_OFFMASK
)) {
7947 REASON_SET(reason
, PFRES_FRAG
);
7951 /* offset of protocol header that follows h2 */
7952 off2
= ipoff2
+ (h2
.ip_hl
<< 2);
7954 pd2
.off
= ipoff2
+ (h2
.ip_hl
<< 2);
7956 pd2
.proto
= h2
.ip_p
;
7957 pd2
.src
= (struct pf_addr
*)&h2
.ip_src
;
7958 pd2
.dst
= (struct pf_addr
*)&h2
.ip_dst
;
7959 pd2
.ip_sum
= &h2
.ip_sum
;
7964 ipoff2
= off
+ sizeof(struct icmp6_hdr
);
7966 if (!pf_pull_hdr(pbuf
, ipoff2
, &h2_6
, sizeof(h2_6
),
7967 NULL
, reason
, pd2
.af
)) {
7968 DPFPRINTF(PF_DEBUG_MISC
,
7969 ("pf: ICMP error message too short "
7973 pd2
.proto
= h2_6
.ip6_nxt
;
7974 pd2
.src
= (struct pf_addr
*)(uintptr_t)&h2_6
.ip6_src
;
7975 pd2
.dst
= (struct pf_addr
*)(uintptr_t)&h2_6
.ip6_dst
;
7977 off2
= ipoff2
+ sizeof(h2_6
);
7979 switch (pd2
.proto
) {
7980 case IPPROTO_FRAGMENT
:
7982 * ICMPv6 error messages for
7983 * non-first fragments
7985 REASON_SET(reason
, PFRES_FRAG
);
7988 case IPPROTO_HOPOPTS
:
7989 case IPPROTO_ROUTING
:
7990 case IPPROTO_DSTOPTS
: {
7991 /* get next header and header length */
7992 struct ip6_ext opt6
;
7994 if (!pf_pull_hdr(pbuf
, off2
, &opt6
,
7995 sizeof(opt6
), NULL
, reason
,
7997 DPFPRINTF(PF_DEBUG_MISC
,
7998 ("pf: ICMPv6 short opt\n"));
8001 if (pd2
.proto
== IPPROTO_AH
) {
8002 off2
+= (opt6
.ip6e_len
+ 2) * 4;
8004 off2
+= (opt6
.ip6e_len
+ 1) * 8;
8006 pd2
.proto
= opt6
.ip6e_nxt
;
8007 /* goto the next header */
8014 } while (!terminal
);
8021 switch (pd2
.proto
) {
8025 struct pf_state_peer
*src
, *dst
;
8030 * Only the first 8 bytes of the TCP header can be
8031 * expected. Don't access any TCP header fields after
8032 * th_seq, an ackskew test is not possible.
8034 if (!pf_pull_hdr(pbuf
, off2
, &th
, 8, NULL
, reason
,
8036 DPFPRINTF(PF_DEBUG_MISC
,
8037 ("pf: ICMP error message too short "
8042 key
.proto
= IPPROTO_TCP
;
8043 key
.af_gwy
= pd2
.af
;
8044 PF_ACPY(&key
.ext_gwy
.addr
, pd2
.dst
, key
.af_gwy
);
8045 PF_ACPY(&key
.gwy
.addr
, pd2
.src
, key
.af_gwy
);
8046 key
.ext_gwy
.xport
.port
= th
.th_dport
;
8047 key
.gwy
.xport
.port
= th
.th_sport
;
8049 key
.af_lan
= pd2
.af
;
8050 PF_ACPY(&key
.lan
.addr
, pd2
.dst
, key
.af_lan
);
8051 PF_ACPY(&key
.ext_lan
.addr
, pd2
.src
, key
.af_lan
);
8052 key
.lan
.xport
.port
= th
.th_dport
;
8053 key
.ext_lan
.xport
.port
= th
.th_sport
;
8057 sk
= (*state
)->state_key
;
8058 if ((direction
== sk
->direction
) &&
8059 ((sk
->af_lan
== sk
->af_gwy
) ||
8060 (pd2
.af
== sk
->af_lan
))) {
8061 src
= &(*state
)->dst
;
8062 dst
= &(*state
)->src
;
8064 src
= &(*state
)->src
;
8065 dst
= &(*state
)->dst
;
8068 if (src
->wscale
&& (dst
->wscale
& PF_WSCALE_FLAG
)) {
8069 dws
= dst
->wscale
& PF_WSCALE_MASK
;
8071 dws
= TCP_MAX_WINSHIFT
;
8074 /* Demodulate sequence number */
8075 seq
= ntohl(th
.th_seq
) - src
->seqdiff
;
8077 pf_change_a(&th
.th_seq
, icmpsum
,
8082 if (!SEQ_GEQ(src
->seqhi
, seq
) ||
8084 src
->seqlo
- ((u_int32_t
)dst
->max_win
<< dws
))) {
8085 if (pf_status
.debug
>= PF_DEBUG_MISC
) {
8086 printf("pf: BAD ICMP %d:%d ",
8087 icmptype
, pd
->hdr
.icmp
->icmp_code
);
8088 pf_print_host(pd
->src
, 0, pd
->af
);
8090 pf_print_host(pd
->dst
, 0, pd
->af
);
8092 pf_print_state(*state
);
8093 printf(" seq=%u\n", seq
);
8095 REASON_SET(reason
, PFRES_BADSTATE
);
8099 pd
->naf
= pd2
.naf
= (pd2
.af
== sk
->af_lan
) ?
8100 sk
->af_gwy
: sk
->af_lan
;
8102 if (STATE_TRANSLATE(sk
)) {
8104 if (sk
->af_lan
!= sk
->af_gwy
) {
8105 struct pf_state_host
*saddr2
, *daddr2
;
8107 if (pd2
.naf
== sk
->af_lan
) {
8109 daddr2
= &sk
->ext_lan
;
8111 saddr2
= &sk
->ext_gwy
;
8115 /* translate ICMP message types and codes */
8116 if (pf_translate_icmp_af(pd
->naf
,
8121 if (pf_lazy_makewritable(pd
, pbuf
,
8122 off2
+ 8) == NULL
) {
8126 pbuf_copy_back(pbuf
, pd
->off
,
8127 sizeof(struct icmp6_hdr
),
8131 * translate inner ip header within the
8134 if (pf_change_icmp_af(pbuf
, ipoff2
, pd
,
8135 &pd2
, &saddr2
->addr
, &daddr2
->addr
,
8140 if (pd
->naf
== AF_INET
) {
8141 pd
->proto
= IPPROTO_ICMP
;
8143 pd
->proto
= IPPROTO_ICMPV6
;
8147 * translate inner tcp header within
8150 pf_change_ap(direction
, NULL
, pd2
.src
,
8151 &th
.th_sport
, pd2
.ip_sum
,
8152 &th
.th_sum
, &daddr2
->addr
,
8153 saddr2
->xport
.port
, 0, pd2
.af
,
8156 pf_change_ap(direction
, NULL
, pd2
.dst
,
8157 &th
.th_dport
, pd2
.ip_sum
,
8158 &th
.th_sum
, &saddr2
->addr
,
8159 daddr2
->xport
.port
, 0, pd2
.af
,
8162 pbuf_copy_back(pbuf
, pd2
.off
, 8, &th
);
8164 /* translate outer ip header */
8165 PF_ACPY(&pd
->naddr
, &daddr2
->addr
,
8167 PF_ACPY(&pd
->ndaddr
, &saddr2
->addr
,
8169 if (pd
->af
== AF_INET
) {
8170 memcpy(&pd
->naddr
.addr32
[3],
8172 sizeof(pd
->naddr
.addr32
[3]));
8173 return pf_nat64_ipv4(pbuf
, off
,
8176 return pf_nat64_ipv6(pbuf
, off
,
8180 if (direction
== PF_IN
) {
8181 pf_change_icmp(pd2
.src
, &th
.th_sport
,
8182 daddr
, &sk
->lan
.addr
,
8183 sk
->lan
.xport
.port
, NULL
,
8184 pd2
.ip_sum
, icmpsum
,
8185 pd
->ip_sum
, 0, pd2
.af
);
8187 pf_change_icmp(pd2
.dst
, &th
.th_dport
,
8188 saddr
, &sk
->gwy
.addr
,
8189 sk
->gwy
.xport
.port
, NULL
,
8190 pd2
.ip_sum
, icmpsum
,
8191 pd
->ip_sum
, 0, pd2
.af
);
8197 if (pf_lazy_makewritable(pd
, pbuf
, off2
+ 8) ==
8204 pbuf_copy_back(pbuf
, off
, ICMP_MINLEN
,
8206 pbuf_copy_back(pbuf
, ipoff2
, sizeof(h2
),
8212 pbuf_copy_back(pbuf
, off
,
8213 sizeof(struct icmp6_hdr
),
8215 pbuf_copy_back(pbuf
, ipoff2
,
8216 sizeof(h2_6
), &h2_6
);
8220 pbuf_copy_back(pbuf
, off2
, 8, &th
);
8228 if (!pf_pull_hdr(pbuf
, off2
, &uh
, sizeof(uh
),
8229 NULL
, reason
, pd2
.af
)) {
8230 DPFPRINTF(PF_DEBUG_MISC
,
8231 ("pf: ICMP error message too short "
8236 key
.af_gwy
= pd2
.af
;
8237 PF_ACPY(&key
.ext_gwy
.addr
, pd2
.dst
, key
.af_gwy
);
8238 PF_ACPY(&key
.gwy
.addr
, pd2
.src
, key
.af_gwy
);
8239 key
.ext_gwy
.xport
.port
= uh
.uh_dport
;
8240 key
.gwy
.xport
.port
= uh
.uh_sport
;
8242 key
.af_lan
= pd2
.af
;
8243 PF_ACPY(&key
.lan
.addr
, pd2
.dst
, key
.af_lan
);
8244 PF_ACPY(&key
.ext_lan
.addr
, pd2
.src
, key
.af_lan
);
8245 key
.lan
.xport
.port
= uh
.uh_dport
;
8246 key
.ext_lan
.xport
.port
= uh
.uh_sport
;
8248 key
.proto
= IPPROTO_UDP
;
8249 key
.proto_variant
= PF_EXTFILTER_APD
;
8252 if (ntohs(uh
.uh_sport
) == PF_IKE_PORT
&&
8253 ntohs(uh
.uh_dport
) == PF_IKE_PORT
) {
8254 struct pf_ike_hdr ike
;
8255 size_t plen
= pbuf
->pb_packet_len
- off2
-
8257 if (direction
== PF_IN
&&
8258 plen
< 8 /* PF_IKE_PACKET_MINSIZE */) {
8259 DPFPRINTF(PF_DEBUG_MISC
, ("pf: "
8260 "ICMP error, embedded IKE message "
8265 if (plen
> sizeof(ike
)) {
8268 pbuf_copy_data(pbuf
, off
+ sizeof(uh
), plen
,
8271 key
.app_state
= &as
;
8272 as
.compare_lan_ext
= pf_ike_compare
;
8273 as
.compare_ext_gwy
= pf_ike_compare
;
8274 as
.u
.ike
.cookie
= ike
.initiator_cookie
;
8277 *state
= pf_find_state(kif
, &key
, dx
);
8279 if (key
.app_state
&& *state
== 0) {
8281 *state
= pf_find_state(kif
, &key
, dx
);
8285 key
.proto_variant
= PF_EXTFILTER_AD
;
8286 *state
= pf_find_state(kif
, &key
, dx
);
8290 key
.proto_variant
= PF_EXTFILTER_EI
;
8291 *state
= pf_find_state(kif
, &key
, dx
);
8294 /* similar to STATE_LOOKUP() */
8295 if (*state
!= NULL
&& pd
!= NULL
&&
8296 !(pd
->pktflags
& PKTF_FLOW_ID
)) {
8297 pd
->flowsrc
= (*state
)->state_key
->flowsrc
;
8298 pd
->flowhash
= (*state
)->state_key
->flowhash
;
8299 if (pd
->flowhash
!= 0) {
8300 pd
->pktflags
|= PKTF_FLOW_ID
;
8301 pd
->pktflags
&= ~PKTF_FLOW_ADV
;
8305 if (pf_state_lookup_aux(state
, kif
, direction
, &action
)) {
8309 sk
= (*state
)->state_key
;
8310 pd
->naf
= pd2
.naf
= (pd2
.af
== sk
->af_lan
) ?
8311 sk
->af_gwy
: sk
->af_lan
;
8313 if (STATE_TRANSLATE(sk
)) {
8315 if (sk
->af_lan
!= sk
->af_gwy
) {
8316 struct pf_state_host
*saddr2
, *daddr2
;
8318 if (pd2
.naf
== sk
->af_lan
) {
8320 daddr2
= &sk
->ext_lan
;
8322 saddr2
= &sk
->ext_gwy
;
8326 /* translate ICMP message */
8327 if (pf_translate_icmp_af(pd
->naf
,
8331 if (pf_lazy_makewritable(pd
, pbuf
,
8332 off2
+ 8) == NULL
) {
8336 pbuf_copy_back(pbuf
, pd
->off
,
8337 sizeof(struct icmp6_hdr
),
8341 * translate inner ip header within the
8344 if (pf_change_icmp_af(pbuf
, ipoff2
, pd
,
8345 &pd2
, &saddr2
->addr
, &daddr2
->addr
,
8350 if (pd
->naf
== AF_INET
) {
8351 pd
->proto
= IPPROTO_ICMP
;
8353 pd
->proto
= IPPROTO_ICMPV6
;
8357 * translate inner udp header within
8360 pf_change_ap(direction
, NULL
, pd2
.src
,
8361 &uh
.uh_sport
, pd2
.ip_sum
,
8362 &uh
.uh_sum
, &daddr2
->addr
,
8363 saddr2
->xport
.port
, 0, pd2
.af
,
8366 pf_change_ap(direction
, NULL
, pd2
.dst
,
8367 &uh
.uh_dport
, pd2
.ip_sum
,
8368 &uh
.uh_sum
, &saddr2
->addr
,
8369 daddr2
->xport
.port
, 0, pd2
.af
,
8372 pbuf_copy_back(pbuf
, pd2
.off
,
8375 /* translate outer ip header */
8376 PF_ACPY(&pd
->naddr
, &daddr2
->addr
,
8378 PF_ACPY(&pd
->ndaddr
, &saddr2
->addr
,
8380 if (pd
->af
== AF_INET
) {
8381 memcpy(&pd
->naddr
.addr32
[3],
8383 sizeof(pd
->naddr
.addr32
[3]));
8384 return pf_nat64_ipv4(pbuf
, off
,
8387 return pf_nat64_ipv6(pbuf
, off
,
8391 if (direction
== PF_IN
) {
8392 pf_change_icmp(pd2
.src
, &uh
.uh_sport
,
8393 daddr
, &sk
->lan
.addr
,
8394 sk
->lan
.xport
.port
, &uh
.uh_sum
,
8395 pd2
.ip_sum
, icmpsum
,
8396 pd
->ip_sum
, 1, pd2
.af
);
8398 pf_change_icmp(pd2
.dst
, &uh
.uh_dport
,
8399 saddr
, &sk
->gwy
.addr
,
8400 sk
->gwy
.xport
.port
, &uh
.uh_sum
,
8401 pd2
.ip_sum
, icmpsum
,
8402 pd
->ip_sum
, 1, pd2
.af
);
8404 if (pf_lazy_makewritable(pd
, pbuf
,
8405 off2
+ sizeof(uh
)) == NULL
) {
8411 pbuf_copy_back(pbuf
, off
, ICMP_MINLEN
,
8413 pbuf_copy_back(pbuf
, ipoff2
,
8419 pbuf_copy_back(pbuf
, off
,
8420 sizeof(struct icmp6_hdr
),
8422 pbuf_copy_back(pbuf
, ipoff2
,
8423 sizeof(h2_6
), &h2_6
);
8427 pbuf_copy_back(pbuf
, off2
, sizeof(uh
), &uh
);
8433 case IPPROTO_ICMP
: {
8436 if (!pf_pull_hdr(pbuf
, off2
, &iih
, ICMP_MINLEN
,
8437 NULL
, reason
, pd2
.af
)) {
8438 DPFPRINTF(PF_DEBUG_MISC
,
8439 ("pf: ICMP error message too short i"
8444 key
.proto
= IPPROTO_ICMP
;
8445 if (direction
== PF_IN
) {
8446 key
.af_gwy
= pd2
.af
;
8447 PF_ACPY(&key
.ext_gwy
.addr
, pd2
.dst
, key
.af_gwy
);
8448 PF_ACPY(&key
.gwy
.addr
, pd2
.src
, key
.af_gwy
);
8449 key
.ext_gwy
.xport
.port
= 0;
8450 key
.gwy
.xport
.port
= iih
.icmp_id
;
8452 key
.af_lan
= pd2
.af
;
8453 PF_ACPY(&key
.lan
.addr
, pd2
.dst
, key
.af_lan
);
8454 PF_ACPY(&key
.ext_lan
.addr
, pd2
.src
, key
.af_lan
);
8455 key
.lan
.xport
.port
= iih
.icmp_id
;
8456 key
.ext_lan
.xport
.port
= 0;
8461 sk
= (*state
)->state_key
;
8462 if (STATE_TRANSLATE(sk
)) {
8463 if (direction
== PF_IN
) {
8464 pf_change_icmp(pd2
.src
, &iih
.icmp_id
,
8465 daddr
, &sk
->lan
.addr
,
8466 sk
->lan
.xport
.port
, NULL
,
8467 pd2
.ip_sum
, icmpsum
,
8468 pd
->ip_sum
, 0, AF_INET
);
8470 pf_change_icmp(pd2
.dst
, &iih
.icmp_id
,
8471 saddr
, &sk
->gwy
.addr
,
8472 sk
->gwy
.xport
.port
, NULL
,
8473 pd2
.ip_sum
, icmpsum
,
8474 pd
->ip_sum
, 0, AF_INET
);
8476 if (pf_lazy_makewritable(pd
, pbuf
,
8477 off2
+ ICMP_MINLEN
) == NULL
) {
8480 pbuf_copy_back(pbuf
, off
, ICMP_MINLEN
,
8482 pbuf_copy_back(pbuf
, ipoff2
, sizeof(h2
), &h2
);
8483 pbuf_copy_back(pbuf
, off2
, ICMP_MINLEN
, &iih
);
8490 case IPPROTO_ICMPV6
: {
8491 struct icmp6_hdr iih
;
8493 if (!pf_pull_hdr(pbuf
, off2
, &iih
,
8494 sizeof(struct icmp6_hdr
), NULL
, reason
, pd2
.af
)) {
8495 DPFPRINTF(PF_DEBUG_MISC
,
8496 ("pf: ICMP error message too short "
8501 key
.proto
= IPPROTO_ICMPV6
;
8502 if (direction
== PF_IN
) {
8503 key
.af_gwy
= pd2
.af
;
8504 PF_ACPY(&key
.ext_gwy
.addr
, pd2
.dst
, key
.af_gwy
);
8505 PF_ACPY(&key
.gwy
.addr
, pd2
.src
, key
.af_gwy
);
8506 key
.ext_gwy
.xport
.port
= 0;
8507 key
.gwy
.xport
.port
= iih
.icmp6_id
;
8509 key
.af_lan
= pd2
.af
;
8510 PF_ACPY(&key
.lan
.addr
, pd2
.dst
, key
.af_lan
);
8511 PF_ACPY(&key
.ext_lan
.addr
, pd2
.src
, key
.af_lan
);
8512 key
.lan
.xport
.port
= iih
.icmp6_id
;
8513 key
.ext_lan
.xport
.port
= 0;
8518 sk
= (*state
)->state_key
;
8519 if (STATE_TRANSLATE(sk
)) {
8520 if (direction
== PF_IN
) {
8521 pf_change_icmp(pd2
.src
, &iih
.icmp6_id
,
8522 daddr
, &sk
->lan
.addr
,
8523 sk
->lan
.xport
.port
, NULL
,
8524 pd2
.ip_sum
, icmpsum
,
8525 pd
->ip_sum
, 0, AF_INET6
);
8527 pf_change_icmp(pd2
.dst
, &iih
.icmp6_id
,
8528 saddr
, &sk
->gwy
.addr
,
8529 sk
->gwy
.xport
.port
, NULL
,
8530 pd2
.ip_sum
, icmpsum
,
8531 pd
->ip_sum
, 0, AF_INET6
);
8533 if (pf_lazy_makewritable(pd
, pbuf
, off2
+
8534 sizeof(struct icmp6_hdr
)) == NULL
) {
8537 pbuf_copy_back(pbuf
, off
,
8538 sizeof(struct icmp6_hdr
), pd
->hdr
.icmp6
);
8539 pbuf_copy_back(pbuf
, ipoff2
, sizeof(h2_6
),
8541 pbuf_copy_back(pbuf
, off2
,
8542 sizeof(struct icmp6_hdr
), &iih
);
8549 key
.proto
= pd2
.proto
;
8550 if (direction
== PF_IN
) {
8551 key
.af_gwy
= pd2
.af
;
8552 PF_ACPY(&key
.ext_gwy
.addr
, pd2
.dst
, key
.af_gwy
);
8553 PF_ACPY(&key
.gwy
.addr
, pd2
.src
, key
.af_gwy
);
8554 key
.ext_gwy
.xport
.port
= 0;
8555 key
.gwy
.xport
.port
= 0;
8557 key
.af_lan
= pd2
.af
;
8558 PF_ACPY(&key
.lan
.addr
, pd2
.dst
, key
.af_lan
);
8559 PF_ACPY(&key
.ext_lan
.addr
, pd2
.src
, key
.af_lan
);
8560 key
.lan
.xport
.port
= 0;
8561 key
.ext_lan
.xport
.port
= 0;
8566 sk
= (*state
)->state_key
;
8567 if (STATE_TRANSLATE(sk
)) {
8568 if (direction
== PF_IN
) {
8569 pf_change_icmp(pd2
.src
, NULL
, daddr
,
8570 &sk
->lan
.addr
, 0, NULL
,
8571 pd2
.ip_sum
, icmpsum
,
8572 pd
->ip_sum
, 0, pd2
.af
);
8574 pf_change_icmp(pd2
.dst
, NULL
, saddr
,
8575 &sk
->gwy
.addr
, 0, NULL
,
8576 pd2
.ip_sum
, icmpsum
,
8577 pd
->ip_sum
, 0, pd2
.af
);
8582 if (pf_lazy_makewritable(pd
, pbuf
,
8583 ipoff2
+ sizeof(h2
)) == NULL
) {
8588 * Xnu was missing the following...
8590 pbuf_copy_back(pbuf
, off
, ICMP_MINLEN
,
8592 pbuf_copy_back(pbuf
, ipoff2
,
8601 if (pf_lazy_makewritable(pd
, pbuf
,
8602 ipoff2
+ sizeof(h2_6
)) == NULL
) {
8605 pbuf_copy_back(pbuf
, off
,
8606 sizeof(struct icmp6_hdr
),
8608 pbuf_copy_back(pbuf
, ipoff2
,
8609 sizeof(h2_6
), &h2_6
);
8622 pf_test_state_grev1(struct pf_state
**state
, int direction
,
8623 struct pfi_kif
*kif
, int off
, struct pf_pdesc
*pd
)
8625 struct pf_state_peer
*src
;
8626 struct pf_state_peer
*dst
;
8627 struct pf_state_key_cmp key
;
8628 struct pf_grev1_hdr
*grev1
= pd
->hdr
.grev1
;
8631 key
.proto
= IPPROTO_GRE
;
8632 key
.proto_variant
= PF_GRE_PPTP_VARIANT
;
8633 if (direction
== PF_IN
) {
8634 key
.af_gwy
= pd
->af
;
8635 PF_ACPY(&key
.ext_gwy
.addr
, pd
->src
, key
.af_gwy
);
8636 PF_ACPY(&key
.gwy
.addr
, pd
->dst
, key
.af_gwy
);
8637 key
.gwy
.xport
.call_id
= grev1
->call_id
;
8639 key
.af_lan
= pd
->af
;
8640 PF_ACPY(&key
.lan
.addr
, pd
->src
, key
.af_lan
);
8641 PF_ACPY(&key
.ext_lan
.addr
, pd
->dst
, key
.af_lan
);
8642 key
.ext_lan
.xport
.call_id
= grev1
->call_id
;
8647 if (direction
== (*state
)->state_key
->direction
) {
8648 src
= &(*state
)->src
;
8649 dst
= &(*state
)->dst
;
8651 src
= &(*state
)->dst
;
8652 dst
= &(*state
)->src
;
8656 if (src
->state
< PFGRE1S_INITIATING
) {
8657 src
->state
= PFGRE1S_INITIATING
;
8660 /* update expire time */
8661 (*state
)->expire
= pf_time_second();
8662 if (src
->state
>= PFGRE1S_INITIATING
&&
8663 dst
->state
>= PFGRE1S_INITIATING
) {
8664 if ((*state
)->timeout
!= PFTM_TCP_ESTABLISHED
) {
8665 (*state
)->timeout
= PFTM_GREv1_ESTABLISHED
;
8667 src
->state
= PFGRE1S_ESTABLISHED
;
8668 dst
->state
= PFGRE1S_ESTABLISHED
;
8670 (*state
)->timeout
= PFTM_GREv1_INITIATING
;
8673 if ((*state
)->state_key
->app_state
) {
8674 (*state
)->state_key
->app_state
->u
.grev1
.pptp_state
->expire
=
8678 /* translate source/destination address, if necessary */
8679 if (STATE_GRE_TRANSLATE((*state
)->state_key
)) {
8680 if (direction
== PF_OUT
) {
8684 pf_change_a(&pd
->src
->v4addr
.s_addr
,
8686 (*state
)->state_key
->gwy
.addr
.v4addr
.s_addr
, 0);
8691 PF_ACPY(pd
->src
, &(*state
)->state_key
->gwy
.addr
,
8697 grev1
->call_id
= (*state
)->state_key
->lan
.xport
.call_id
;
8702 pf_change_a(&pd
->dst
->v4addr
.s_addr
,
8704 (*state
)->state_key
->lan
.addr
.v4addr
.s_addr
, 0);
8709 PF_ACPY(pd
->dst
, &(*state
)->state_key
->lan
.addr
,
8716 if (pf_lazy_makewritable(pd
, pd
->mp
, off
+ sizeof(*grev1
)) ==
8720 pbuf_copy_back(pd
->mp
, off
, sizeof(*grev1
), grev1
);
8727 pf_test_state_esp(struct pf_state
**state
, int direction
, struct pfi_kif
*kif
,
8728 int off
, struct pf_pdesc
*pd
)
8731 struct pf_state_peer
*src
;
8732 struct pf_state_peer
*dst
;
8733 struct pf_state_key_cmp key
;
8734 struct pf_esp_hdr
*esp
= pd
->hdr
.esp
;
8737 memset(&key
, 0, sizeof(key
));
8738 key
.proto
= IPPROTO_ESP
;
8739 if (direction
== PF_IN
) {
8740 key
.af_gwy
= pd
->af
;
8741 PF_ACPY(&key
.ext_gwy
.addr
, pd
->src
, key
.af_gwy
);
8742 PF_ACPY(&key
.gwy
.addr
, pd
->dst
, key
.af_gwy
);
8743 key
.gwy
.xport
.spi
= esp
->spi
;
8745 key
.af_lan
= pd
->af
;
8746 PF_ACPY(&key
.lan
.addr
, pd
->src
, key
.af_lan
);
8747 PF_ACPY(&key
.ext_lan
.addr
, pd
->dst
, key
.af_lan
);
8748 key
.ext_lan
.xport
.spi
= esp
->spi
;
8751 *state
= pf_find_state(kif
, &key
, direction
);
8758 * No matching state. Look for a blocking state. If we find
8759 * one, then use that state and move it so that it's keyed to
8760 * the SPI in the current packet.
8762 if (direction
== PF_IN
) {
8763 key
.gwy
.xport
.spi
= 0;
8765 s
= pf_find_state(kif
, &key
, direction
);
8767 struct pf_state_key
*sk
= s
->state_key
;
8769 RB_REMOVE(pf_state_tree_ext_gwy
,
8770 &pf_statetbl_ext_gwy
, sk
);
8771 sk
->lan
.xport
.spi
= sk
->gwy
.xport
.spi
=
8774 if (RB_INSERT(pf_state_tree_ext_gwy
,
8775 &pf_statetbl_ext_gwy
, sk
)) {
8776 pf_detach_state(s
, PF_DT_SKIP_EXTGWY
);
8782 key
.ext_lan
.xport
.spi
= 0;
8784 s
= pf_find_state(kif
, &key
, direction
);
8786 struct pf_state_key
*sk
= s
->state_key
;
8788 RB_REMOVE(pf_state_tree_lan_ext
,
8789 &pf_statetbl_lan_ext
, sk
);
8790 sk
->ext_lan
.xport
.spi
= esp
->spi
;
8792 if (RB_INSERT(pf_state_tree_lan_ext
,
8793 &pf_statetbl_lan_ext
, sk
)) {
8794 pf_detach_state(s
, PF_DT_SKIP_LANEXT
);
8804 if (s
->creatorid
== pf_status
.hostid
) {
8805 pfsync_delete_state(s
);
8808 s
->timeout
= PFTM_UNLINKED
;
8809 hook_runloop(&s
->unlink_hooks
,
8810 HOOK_REMOVE
| HOOK_FREE
);
8811 pf_src_tree_remove_state(s
);
8818 /* similar to STATE_LOOKUP() */
8819 if (*state
!= NULL
&& pd
!= NULL
&& !(pd
->pktflags
& PKTF_FLOW_ID
)) {
8820 pd
->flowsrc
= (*state
)->state_key
->flowsrc
;
8821 pd
->flowhash
= (*state
)->state_key
->flowhash
;
8822 if (pd
->flowhash
!= 0) {
8823 pd
->pktflags
|= PKTF_FLOW_ID
;
8824 pd
->pktflags
&= ~PKTF_FLOW_ADV
;
8828 if (pf_state_lookup_aux(state
, kif
, direction
, &action
)) {
8832 if (direction
== (*state
)->state_key
->direction
) {
8833 src
= &(*state
)->src
;
8834 dst
= &(*state
)->dst
;
8836 src
= &(*state
)->dst
;
8837 dst
= &(*state
)->src
;
8841 if (src
->state
< PFESPS_INITIATING
) {
8842 src
->state
= PFESPS_INITIATING
;
8845 /* update expire time */
8846 (*state
)->expire
= pf_time_second();
8847 if (src
->state
>= PFESPS_INITIATING
&&
8848 dst
->state
>= PFESPS_INITIATING
) {
8849 (*state
)->timeout
= PFTM_ESP_ESTABLISHED
;
8850 src
->state
= PFESPS_ESTABLISHED
;
8851 dst
->state
= PFESPS_ESTABLISHED
;
8853 (*state
)->timeout
= PFTM_ESP_INITIATING
;
8855 /* translate source/destination address, if necessary */
8856 if (STATE_ADDR_TRANSLATE((*state
)->state_key
)) {
8857 if (direction
== PF_OUT
) {
8861 pf_change_a(&pd
->src
->v4addr
.s_addr
,
8863 (*state
)->state_key
->gwy
.addr
.v4addr
.s_addr
, 0);
8868 PF_ACPY(pd
->src
, &(*state
)->state_key
->gwy
.addr
,
8877 pf_change_a(&pd
->dst
->v4addr
.s_addr
,
8879 (*state
)->state_key
->lan
.addr
.v4addr
.s_addr
, 0);
8884 PF_ACPY(pd
->dst
, &(*state
)->state_key
->lan
.addr
,
8896 pf_test_state_other(struct pf_state
**state
, int direction
, struct pfi_kif
*kif
,
8897 struct pf_pdesc
*pd
)
8899 struct pf_state_peer
*src
, *dst
;
8900 struct pf_state_key_cmp key
;
8903 key
.proto
= pd
->proto
;
8904 if (direction
== PF_IN
) {
8905 key
.af_gwy
= pd
->af
;
8906 PF_ACPY(&key
.ext_gwy
.addr
, pd
->src
, key
.af_gwy
);
8907 PF_ACPY(&key
.gwy
.addr
, pd
->dst
, key
.af_gwy
);
8908 key
.ext_gwy
.xport
.port
= 0;
8909 key
.gwy
.xport
.port
= 0;
8911 key
.af_lan
= pd
->af
;
8912 PF_ACPY(&key
.lan
.addr
, pd
->src
, key
.af_lan
);
8913 PF_ACPY(&key
.ext_lan
.addr
, pd
->dst
, key
.af_lan
);
8914 key
.lan
.xport
.port
= 0;
8915 key
.ext_lan
.xport
.port
= 0;
8920 if (direction
== (*state
)->state_key
->direction
) {
8921 src
= &(*state
)->src
;
8922 dst
= &(*state
)->dst
;
8924 src
= &(*state
)->dst
;
8925 dst
= &(*state
)->src
;
8929 if (src
->state
< PFOTHERS_SINGLE
) {
8930 src
->state
= PFOTHERS_SINGLE
;
8932 if (dst
->state
== PFOTHERS_SINGLE
) {
8933 dst
->state
= PFOTHERS_MULTIPLE
;
8936 /* update expire time */
8937 (*state
)->expire
= pf_time_second();
8938 if (src
->state
== PFOTHERS_MULTIPLE
&& dst
->state
== PFOTHERS_MULTIPLE
) {
8939 (*state
)->timeout
= PFTM_OTHER_MULTIPLE
;
8941 (*state
)->timeout
= PFTM_OTHER_SINGLE
;
8944 /* translate source/destination address, if necessary */
8945 if (STATE_ADDR_TRANSLATE((*state
)->state_key
)) {
8946 if (direction
== PF_OUT
) {
8950 pf_change_a(&pd
->src
->v4addr
.s_addr
,
8952 (*state
)->state_key
->gwy
.addr
.v4addr
.s_addr
,
8959 &(*state
)->state_key
->gwy
.addr
, pd
->af
);
8967 pf_change_a(&pd
->dst
->v4addr
.s_addr
,
8969 (*state
)->state_key
->lan
.addr
.v4addr
.s_addr
,
8976 &(*state
)->state_key
->lan
.addr
, pd
->af
);
8987 * ipoff and off are measured from the start of the mbuf chain.
8988 * h must be at "ipoff" on the mbuf chain.
8991 pf_pull_hdr(pbuf_t
*pbuf
, int off
, void *p
, int len
,
8992 u_short
*actionp
, u_short
*reasonp
, sa_family_t af
)
8997 struct ip
*h
= pbuf
->pb_data
;
8998 u_int16_t fragoff
= (ntohs(h
->ip_off
) & IP_OFFMASK
) << 3;
9001 if (fragoff
>= len
) {
9002 ACTION_SET(actionp
, PF_PASS
);
9004 ACTION_SET(actionp
, PF_DROP
);
9005 REASON_SET(reasonp
, PFRES_FRAG
);
9009 if (pbuf
->pb_packet_len
< (unsigned)(off
+ len
) ||
9010 ntohs(h
->ip_len
) < off
+ len
) {
9011 ACTION_SET(actionp
, PF_DROP
);
9012 REASON_SET(reasonp
, PFRES_SHORT
);
9020 struct ip6_hdr
*h
= pbuf
->pb_data
;
9022 if (pbuf
->pb_packet_len
< (unsigned)(off
+ len
) ||
9023 (ntohs(h
->ip6_plen
) + sizeof(struct ip6_hdr
)) <
9024 (unsigned)(off
+ len
)) {
9025 ACTION_SET(actionp
, PF_DROP
);
9026 REASON_SET(reasonp
, PFRES_SHORT
);
9033 pbuf_copy_data(pbuf
, off
, len
, p
);
9038 pf_routable(struct pf_addr
*addr
, sa_family_t af
, struct pfi_kif
*kif
)
9041 struct sockaddr_in
*dst
;
9044 struct sockaddr_in6
*dst6
;
9045 struct route_in6 ro
;
9050 bzero(&ro
, sizeof(ro
));
9053 dst
= satosin(&ro
.ro_dst
);
9054 dst
->sin_family
= AF_INET
;
9055 dst
->sin_len
= sizeof(*dst
);
9056 dst
->sin_addr
= addr
->v4addr
;
9060 dst6
= (struct sockaddr_in6
*)&ro
.ro_dst
;
9061 dst6
->sin6_family
= AF_INET6
;
9062 dst6
->sin6_len
= sizeof(*dst6
);
9063 dst6
->sin6_addr
= addr
->v6addr
;
9070 /* XXX: IFT_ENC is not currently used by anything*/
9071 /* Skip checks for ipsec interfaces */
9072 if (kif
!= NULL
&& kif
->pfik_ifp
->if_type
== IFT_ENC
) {
9076 /* XXX: what is the point of this? */
9077 rtalloc((struct route
*)&ro
);
9085 pf_rtlabel_match(struct pf_addr
*addr
, sa_family_t af
, struct pf_addr_wrap
*aw
)
9088 struct sockaddr_in
*dst
;
9090 struct sockaddr_in6
*dst6
;
9091 struct route_in6 ro
;
9097 bzero(&ro
, sizeof(ro
));
9100 dst
= satosin(&ro
.ro_dst
);
9101 dst
->sin_family
= AF_INET
;
9102 dst
->sin_len
= sizeof(*dst
);
9103 dst
->sin_addr
= addr
->v4addr
;
9107 dst6
= (struct sockaddr_in6
*)&ro
.ro_dst
;
9108 dst6
->sin6_family
= AF_INET6
;
9109 dst6
->sin6_len
= sizeof(*dst6
);
9110 dst6
->sin6_addr
= addr
->v6addr
;
9117 /* XXX: what is the point of this? */
9118 rtalloc((struct route
*)&ro
);
9127 pf_route(pbuf_t
**pbufp
, struct pf_rule
*r
, int dir
, struct ifnet
*oifp
,
9128 struct pf_state
*s
, struct pf_pdesc
*pd
)
9131 struct mbuf
*m0
, *m1
;
9132 struct route iproute
;
9133 struct route
*ro
= &iproute
;
9134 struct sockaddr_in
*dst
;
9136 struct ifnet
*ifp
= NULL
;
9137 struct pf_addr naddr
;
9138 struct pf_src_node
*sn
= NULL
;
9141 int interface_mtu
= 0;
9142 bzero(&iproute
, sizeof(iproute
));
9144 if (pbufp
== NULL
|| !pbuf_is_valid(*pbufp
) || r
== NULL
||
9145 (dir
!= PF_IN
&& dir
!= PF_OUT
) || oifp
== NULL
) {
9146 panic("pf_route: invalid parameters");
9149 if (pd
->pf_mtag
->pftag_routed
++ > 3) {
9150 pbuf_destroy(*pbufp
);
9157 * Since this is something of an edge case and may involve the
9158 * host stack (for routing, at least for now), we convert the
9159 * incoming pbuf into an mbuf.
9161 if (r
->rt
== PF_DUPTO
) {
9162 m0
= pbuf_clone_to_mbuf(*pbufp
);
9163 } else if ((r
->rt
== PF_REPLYTO
) == (r
->direction
== dir
)) {
9166 /* We're going to consume this packet */
9167 m0
= pbuf_to_mbuf(*pbufp
, TRUE
);
9175 /* We now have the packet in an mbuf (m0) */
9177 if (m0
->m_len
< (int)sizeof(struct ip
)) {
9178 DPFPRINTF(PF_DEBUG_URGENT
,
9179 ("pf_route: packet length < sizeof (struct ip)\n"));
9183 ip
= mtod(m0
, struct ip
*);
9185 dst
= satosin((void *)&ro
->ro_dst
);
9186 dst
->sin_family
= AF_INET
;
9187 dst
->sin_len
= sizeof(*dst
);
9188 dst
->sin_addr
= ip
->ip_dst
;
9190 if (r
->rt
== PF_FASTROUTE
) {
9192 if (ro
->ro_rt
== NULL
) {
9193 ipstat
.ips_noroute
++;
9197 ifp
= ro
->ro_rt
->rt_ifp
;
9199 ro
->ro_rt
->rt_use
++;
9201 if (ro
->ro_rt
->rt_flags
& RTF_GATEWAY
) {
9202 dst
= satosin((void *)ro
->ro_rt
->rt_gateway
);
9204 RT_UNLOCK(ro
->ro_rt
);
9206 if (TAILQ_EMPTY(&r
->rpool
.list
)) {
9207 DPFPRINTF(PF_DEBUG_URGENT
,
9208 ("pf_route: TAILQ_EMPTY(&r->rpool.list)\n"));
9212 pf_map_addr(AF_INET
, r
, (struct pf_addr
*)&ip
->ip_src
,
9214 if (!PF_AZERO(&naddr
, AF_INET
)) {
9215 dst
->sin_addr
.s_addr
= naddr
.v4addr
.s_addr
;
9217 ifp
= r
->rpool
.cur
->kif
?
9218 r
->rpool
.cur
->kif
->pfik_ifp
: NULL
;
9220 if (!PF_AZERO(&s
->rt_addr
, AF_INET
)) {
9221 dst
->sin_addr
.s_addr
=
9222 s
->rt_addr
.v4addr
.s_addr
;
9224 ifp
= s
->rt_kif
? s
->rt_kif
->pfik_ifp
: NULL
;
9232 if (pf_test_mbuf(PF_OUT
, ifp
, &m0
, NULL
, NULL
) != PF_PASS
) {
9234 } else if (m0
== NULL
) {
9237 if (m0
->m_len
< (int)sizeof(struct ip
)) {
9238 DPFPRINTF(PF_DEBUG_URGENT
,
9239 ("pf_route: packet length < sizeof (struct ip)\n"));
9242 ip
= mtod(m0
, struct ip
*);
9245 /* Catch routing changes wrt. hardware checksumming for TCP or UDP. */
9246 ip_output_checksum(ifp
, m0
, ((ip
->ip_hl
) << 2), ntohs(ip
->ip_len
),
9249 interface_mtu
= ifp
->if_mtu
;
9251 if (INTF_ADJUST_MTU_FOR_CLAT46(ifp
)) {
9252 interface_mtu
= IN6_LINKMTU(ifp
);
9253 /* Further adjust the size for CLAT46 expansion */
9254 interface_mtu
-= CLAT46_HDR_EXPANSION_OVERHD
;
9257 if (ntohs(ip
->ip_len
) <= interface_mtu
|| TSO_IPV4_OK(ifp
, m0
) ||
9258 (!(ip
->ip_off
& htons(IP_DF
)) &&
9259 (ifp
->if_hwassist
& CSUM_FRAGMENT
))) {
9261 if (sw_csum
& CSUM_DELAY_IP
) {
9262 ip
->ip_sum
= in_cksum(m0
, ip
->ip_hl
<< 2);
9263 sw_csum
&= ~CSUM_DELAY_IP
;
9264 m0
->m_pkthdr
.csum_flags
&= ~CSUM_DELAY_IP
;
9266 error
= ifnet_output(ifp
, PF_INET
, m0
, ro
->ro_rt
, sintosa(dst
));
9271 * Too large for interface; fragment if possible.
9272 * Must be able to put at least 8 bytes per fragment.
9273 * Balk when DF bit is set or the interface didn't support TSO.
9275 if ((ip
->ip_off
& htons(IP_DF
)) ||
9276 (m0
->m_pkthdr
.csum_flags
& CSUM_TSO_IPV4
)) {
9277 ipstat
.ips_cantfrag
++;
9278 if (r
->rt
!= PF_DUPTO
) {
9279 icmp_error(m0
, ICMP_UNREACH
, ICMP_UNREACH_NEEDFRAG
, 0,
9289 /* PR-8933605: send ip_len,ip_off to ip_fragment in host byte order */
9290 #if BYTE_ORDER != BIG_ENDIAN
9294 error
= ip_fragment(m0
, ifp
, interface_mtu
, sw_csum
);
9301 for (m0
= m1
; m0
; m0
= m1
) {
9305 error
= ifnet_output(ifp
, PF_INET
, m0
, ro
->ro_rt
,
9313 ipstat
.ips_fragmented
++;
9317 ROUTE_RELEASE(&iproute
);
9330 pf_route6(pbuf_t
**pbufp
, struct pf_rule
*r
, int dir
, struct ifnet
*oifp
,
9331 struct pf_state
*s
, struct pf_pdesc
*pd
)
9335 struct route_in6 ip6route
;
9336 struct route_in6
*ro
;
9337 struct sockaddr_in6
*dst
;
9338 struct ip6_hdr
*ip6
;
9339 struct ifnet
*ifp
= NULL
;
9340 struct pf_addr naddr
;
9341 struct pf_src_node
*sn
= NULL
;
9344 if (pbufp
== NULL
|| !pbuf_is_valid(*pbufp
) || r
== NULL
||
9345 (dir
!= PF_IN
&& dir
!= PF_OUT
) || oifp
== NULL
) {
9346 panic("pf_route6: invalid parameters");
9349 if (pd
->pf_mtag
->pftag_routed
++ > 3) {
9350 pbuf_destroy(*pbufp
);
9357 * Since this is something of an edge case and may involve the
9358 * host stack (for routing, at least for now), we convert the
9359 * incoming pbuf into an mbuf.
9361 if (r
->rt
== PF_DUPTO
) {
9362 m0
= pbuf_clone_to_mbuf(*pbufp
);
9363 } else if ((r
->rt
== PF_REPLYTO
) == (r
->direction
== dir
)) {
9366 /* We're about to consume this packet */
9367 m0
= pbuf_to_mbuf(*pbufp
, TRUE
);
9375 if (m0
->m_len
< (int)sizeof(struct ip6_hdr
)) {
9376 DPFPRINTF(PF_DEBUG_URGENT
,
9377 ("pf_route6: m0->m_len < sizeof (struct ip6_hdr)\n"));
9380 ip6
= mtod(m0
, struct ip6_hdr
*);
9383 bzero((caddr_t
)ro
, sizeof(*ro
));
9384 dst
= (struct sockaddr_in6
*)&ro
->ro_dst
;
9385 dst
->sin6_family
= AF_INET6
;
9386 dst
->sin6_len
= sizeof(*dst
);
9387 dst
->sin6_addr
= ip6
->ip6_dst
;
9389 /* Cheat. XXX why only in the v6addr case??? */
9390 if (r
->rt
== PF_FASTROUTE
) {
9391 struct pf_mtag
*pf_mtag
;
9393 if ((pf_mtag
= pf_get_mtag(m0
)) == NULL
) {
9396 pf_mtag
->pftag_flags
|= PF_TAG_GENERATED
;
9397 ip6_output(m0
, NULL
, NULL
, 0, NULL
, NULL
, NULL
);
9401 if (TAILQ_EMPTY(&r
->rpool
.list
)) {
9402 DPFPRINTF(PF_DEBUG_URGENT
,
9403 ("pf_route6: TAILQ_EMPTY(&r->rpool.list)\n"));
9407 pf_map_addr(AF_INET6
, r
, (struct pf_addr
*)(uintptr_t)&ip6
->ip6_src
,
9409 if (!PF_AZERO(&naddr
, AF_INET6
)) {
9410 PF_ACPY((struct pf_addr
*)&dst
->sin6_addr
,
9413 ifp
= r
->rpool
.cur
->kif
? r
->rpool
.cur
->kif
->pfik_ifp
: NULL
;
9415 if (!PF_AZERO(&s
->rt_addr
, AF_INET6
)) {
9416 PF_ACPY((struct pf_addr
*)&dst
->sin6_addr
,
9417 &s
->rt_addr
, AF_INET6
);
9419 ifp
= s
->rt_kif
? s
->rt_kif
->pfik_ifp
: NULL
;
9426 if (pf_test6_mbuf(PF_OUT
, ifp
, &m0
, NULL
, NULL
) != PF_PASS
) {
9428 } else if (m0
== NULL
) {
9431 if (m0
->m_len
< (int)sizeof(struct ip6_hdr
)) {
9432 DPFPRINTF(PF_DEBUG_URGENT
, ("pf_route6: m0->m_len "
9433 "< sizeof (struct ip6_hdr)\n"));
9436 ip6
= mtod(m0
, struct ip6_hdr
*);
9440 * If the packet is too large for the outgoing interface,
9441 * send back an icmp6 error.
9443 if (IN6_IS_SCOPE_EMBED(&dst
->sin6_addr
)) {
9444 dst
->sin6_addr
.s6_addr16
[1] = htons(ifp
->if_index
);
9446 if ((unsigned)m0
->m_pkthdr
.len
<= ifp
->if_mtu
) {
9447 error
= nd6_output(ifp
, ifp
, m0
, dst
, NULL
, NULL
);
9449 in6_ifstat_inc(ifp
, ifs6_in_toobig
);
9450 if (r
->rt
!= PF_DUPTO
) {
9451 icmp6_error(m0
, ICMP6_PACKET_TOO_BIG
, 0, ifp
->if_mtu
);
9470 * check protocol (tcp/udp/icmp/icmp6) checksum and set mbuf flag
9471 * off is the offset where the protocol header starts
9472 * len is the total length of protocol header plus payload
9473 * returns 0 when the checksum is valid, otherwise returns 1.
9476 pf_check_proto_cksum(pbuf_t
*pbuf
, int off
, int len
, u_int8_t p
,
9485 * Optimize for the common case; if the hardware calculated
9486 * value doesn't include pseudo-header checksum, or if it
9487 * is partially-computed (only 16-bit summation), do it in
9490 if ((*pbuf
->pb_csum_flags
&
9491 (CSUM_DATA_VALID
| CSUM_PSEUDO_HDR
)) ==
9492 (CSUM_DATA_VALID
| CSUM_PSEUDO_HDR
) &&
9493 (*pbuf
->pb_csum_data
^ 0xffff) == 0) {
9499 case IPPROTO_ICMPV6
:
9505 if (off
< (int)sizeof(struct ip
) || len
< (int)sizeof(struct udphdr
)) {
9508 if (pbuf
->pb_packet_len
< (unsigned)(off
+ len
)) {
9514 if (p
== IPPROTO_ICMP
) {
9516 if (m
->m_len
< off
) {
9521 sum
= in_cksum(m
, len
);
9525 if (pbuf
->pb_contig_len
< (unsigned)off
) {
9528 sum
= pbuf_inet_cksum(pbuf
, 0, off
, len
);
9531 if (pbuf
->pb_contig_len
< (int)sizeof(struct ip
)) {
9534 sum
= pbuf_inet_cksum(pbuf
, p
, off
, len
);
9540 if (pbuf
->pb_contig_len
< (int)sizeof(struct ip6_hdr
)) {
9543 sum
= pbuf_inet6_cksum(pbuf
, p
, off
, len
);
9552 tcpstat
.tcps_rcvbadsum
++;
9555 udpstat
.udps_badsum
++;
9558 icmpstat
.icps_checksum
++;
9561 case IPPROTO_ICMPV6
:
9562 icmp6stat
.icp6s_checksum
++;
9572 #define PF_APPLE_UPDATE_PDESC_IPv4() \
9574 if (pbuf && pd.mp && pbuf != pd.mp) { \
9576 h = pbuf->pb_data; \
9577 pd.pf_mtag = pf_get_mtag_pbuf(pbuf); \
9582 pf_test_mbuf(int dir
, struct ifnet
*ifp
, struct mbuf
**m0
,
9583 struct ether_header
*eh
, struct ip_fw_args
*fwa
)
9585 pbuf_t pbuf_store
, *pbuf
;
9588 pbuf_init_mbuf(&pbuf_store
, *m0
, (*m0
)->m_pkthdr
.rcvif
);
9591 rv
= pf_test(dir
, ifp
, &pbuf
, eh
, fwa
);
9593 if (pbuf_is_valid(pbuf
)) {
9594 *m0
= pbuf
->pb_mbuf
;
9595 pbuf
->pb_mbuf
= NULL
;
9605 pf_test(int dir
, struct ifnet
*ifp
, pbuf_t
**pbufp
,
9606 struct ether_header
*eh
, struct ip_fw_args
*fwa
)
9611 struct pfi_kif
*kif
;
9612 u_short action
= PF_PASS
, reason
= 0, log
= 0;
9613 pbuf_t
*pbuf
= *pbufp
;
9615 struct pf_rule
*a
= NULL
, *r
= &pf_default_rule
, *tr
, *nr
;
9616 struct pf_state
*s
= NULL
;
9617 struct pf_state_key
*sk
= NULL
;
9618 struct pf_ruleset
*ruleset
= NULL
;
9620 int off
, dirndx
, pqid
= 0;
9622 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
9624 if (!pf_status
.running
) {
9628 memset(&pd
, 0, sizeof(pd
));
9630 if ((pd
.pf_mtag
= pf_get_mtag_pbuf(pbuf
)) == NULL
) {
9631 DPFPRINTF(PF_DEBUG_URGENT
,
9632 ("pf_test: pf_get_mtag_pbuf returned NULL\n"));
9636 if (pd
.pf_mtag
->pftag_flags
& PF_TAG_GENERATED
) {
9640 kif
= (struct pfi_kif
*)ifp
->if_pf_kif
;
9643 DPFPRINTF(PF_DEBUG_URGENT
,
9644 ("pf_test: kif == NULL, if_name %s\n", ifp
->if_name
));
9647 if (kif
->pfik_flags
& PFI_IFLAG_SKIP
) {
9651 /* initialize enough of pd for the done label */
9655 pd
.pf_mtag
= pf_get_mtag_pbuf(pbuf
);
9656 pd
.src
= (struct pf_addr
*)&h
->ip_src
;
9657 pd
.dst
= (struct pf_addr
*)&h
->ip_dst
;
9658 PF_ACPY(&pd
.baddr
, pd
.src
, AF_INET
);
9659 PF_ACPY(&pd
.bdaddr
, pd
.dst
, AF_INET
);
9660 pd
.ip_sum
= &h
->ip_sum
;
9662 pd
.proto_variant
= 0;
9666 pd
.tot_len
= ntohs(h
->ip_len
);
9669 if (pbuf
->pb_packet_len
< (int)sizeof(*h
)) {
9671 REASON_SET(&reason
, PFRES_SHORT
);
9677 if (fwa
!= NULL
&& fwa
->fwa_pf_rule
!= NULL
) {
9680 #endif /* DUMMYNET */
9682 /* We do IP header normalization and packet reassembly here */
9683 action
= pf_normalize_ip(pbuf
, dir
, kif
, &reason
, &pd
);
9684 if (action
!= PF_PASS
|| pd
.lmw
< 0) {
9691 #endif /* DUMMYNET */
9692 /* pf_normalize can mess with pb_data */
9695 off
= h
->ip_hl
<< 2;
9696 if (off
< (int)sizeof(*h
)) {
9698 REASON_SET(&reason
, PFRES_SHORT
);
9703 pd
.src
= (struct pf_addr
*)&h
->ip_src
;
9704 pd
.dst
= (struct pf_addr
*)&h
->ip_dst
;
9705 PF_ACPY(&pd
.baddr
, pd
.src
, AF_INET
);
9706 PF_ACPY(&pd
.bdaddr
, pd
.dst
, AF_INET
);
9707 pd
.ip_sum
= &h
->ip_sum
;
9709 pd
.proto_variant
= 0;
9712 pd
.pf_mtag
= pf_get_mtag_pbuf(pbuf
);
9716 pd
.sc
= MBUF_SCIDX(pbuf_get_service_class(pbuf
));
9717 pd
.tot_len
= ntohs(h
->ip_len
);
9720 if (*pbuf
->pb_flags
& PKTF_FLOW_ID
) {
9721 pd
.flowsrc
= *pbuf
->pb_flowsrc
;
9722 pd
.flowhash
= *pbuf
->pb_flowid
;
9723 pd
.pktflags
= *pbuf
->pb_flags
& PKTF_FLOW_MASK
;
9726 /* handle fragments that didn't get reassembled by normalization */
9727 if (h
->ip_off
& htons(IP_MF
| IP_OFFMASK
)) {
9728 pd
.flags
|= PFDESC_IP_FRAG
;
9730 /* Traffic goes through dummynet first */
9731 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9732 if (action
== PF_DROP
|| pbuf
== NULL
) {
9736 #endif /* DUMMYNET */
9737 action
= pf_test_fragment(&r
, dir
, kif
, pbuf
, h
,
9746 if (!pf_pull_hdr(pbuf
, off
, &th
, sizeof(th
),
9747 &action
, &reason
, AF_INET
)) {
9748 log
= action
!= PF_PASS
;
9751 pd
.p_len
= pd
.tot_len
- off
- (th
.th_off
<< 2);
9752 if ((th
.th_flags
& TH_ACK
) && pd
.p_len
== 0) {
9756 /* Traffic goes through dummynet first */
9757 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9758 if (action
== PF_DROP
|| pbuf
== NULL
) {
9762 #endif /* DUMMYNET */
9763 action
= pf_normalize_tcp(dir
, kif
, pbuf
, 0, off
, h
, &pd
);
9767 PF_APPLE_UPDATE_PDESC_IPv4();
9768 if (action
== PF_DROP
) {
9771 action
= pf_test_state_tcp(&s
, dir
, kif
, pbuf
, off
, h
, &pd
,
9773 if (action
== PF_NAT64
) {
9779 PF_APPLE_UPDATE_PDESC_IPv4();
9780 if (action
== PF_PASS
) {
9782 pfsync_update_state(s
);
9783 #endif /* NPFSYNC */
9787 } else if (s
== NULL
) {
9788 action
= pf_test_rule(&r
, &s
, dir
, kif
,
9789 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
9798 if (!pf_pull_hdr(pbuf
, off
, &uh
, sizeof(uh
),
9799 &action
, &reason
, AF_INET
)) {
9800 log
= action
!= PF_PASS
;
9803 if (uh
.uh_dport
== 0 ||
9804 ntohs(uh
.uh_ulen
) > pbuf
->pb_packet_len
- off
||
9805 ntohs(uh
.uh_ulen
) < sizeof(struct udphdr
)) {
9807 REASON_SET(&reason
, PFRES_SHORT
);
9811 /* Traffic goes through dummynet first */
9812 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9813 if (action
== PF_DROP
|| pbuf
== NULL
) {
9817 #endif /* DUMMYNET */
9818 action
= pf_test_state_udp(&s
, dir
, kif
, pbuf
, off
, h
, &pd
,
9820 if (action
== PF_NAT64
) {
9826 PF_APPLE_UPDATE_PDESC_IPv4();
9827 if (action
== PF_PASS
) {
9829 pfsync_update_state(s
);
9830 #endif /* NPFSYNC */
9834 } else if (s
== NULL
) {
9835 action
= pf_test_rule(&r
, &s
, dir
, kif
,
9836 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
9841 case IPPROTO_ICMP
: {
9845 if (!pf_pull_hdr(pbuf
, off
, &ih
, ICMP_MINLEN
,
9846 &action
, &reason
, AF_INET
)) {
9847 log
= action
!= PF_PASS
;
9851 /* Traffic goes through dummynet first */
9852 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9853 if (action
== PF_DROP
|| pbuf
== NULL
) {
9857 #endif /* DUMMYNET */
9858 action
= pf_test_state_icmp(&s
, dir
, kif
, pbuf
, off
, h
, &pd
,
9860 if (action
== PF_NAT64
) {
9866 PF_APPLE_UPDATE_PDESC_IPv4();
9867 if (action
== PF_PASS
) {
9869 pfsync_update_state(s
);
9870 #endif /* NPFSYNC */
9874 } else if (s
== NULL
) {
9875 action
= pf_test_rule(&r
, &s
, dir
, kif
,
9876 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
9882 struct pf_esp_hdr esp
;
9885 if (!pf_pull_hdr(pbuf
, off
, &esp
, sizeof(esp
), &action
, &reason
,
9887 log
= action
!= PF_PASS
;
9891 /* Traffic goes through dummynet first */
9892 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9893 if (action
== PF_DROP
|| pbuf
== NULL
) {
9897 #endif /* DUMMYNET */
9898 action
= pf_test_state_esp(&s
, dir
, kif
, off
, &pd
);
9902 PF_APPLE_UPDATE_PDESC_IPv4();
9903 if (action
== PF_PASS
) {
9905 pfsync_update_state(s
);
9906 #endif /* NPFSYNC */
9910 } else if (s
== NULL
) {
9911 action
= pf_test_rule(&r
, &s
, dir
, kif
,
9912 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
9918 struct pf_grev1_hdr grev1
;
9919 pd
.hdr
.grev1
= &grev1
;
9920 if (!pf_pull_hdr(pbuf
, off
, &grev1
, sizeof(grev1
), &action
,
9921 &reason
, AF_INET
)) {
9922 log
= (action
!= PF_PASS
);
9926 /* Traffic goes through dummynet first */
9927 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9928 if (action
== PF_DROP
|| pbuf
== NULL
) {
9932 #endif /* DUMMYNET */
9933 if ((ntohs(grev1
.flags
) & PF_GRE_FLAG_VERSION_MASK
) == 1 &&
9934 ntohs(grev1
.protocol_type
) == PF_GRE_PPP_ETHERTYPE
) {
9935 if (ntohs(grev1
.payload_length
) >
9936 pbuf
->pb_packet_len
- off
) {
9938 REASON_SET(&reason
, PFRES_SHORT
);
9941 pd
.proto_variant
= PF_GRE_PPTP_VARIANT
;
9942 action
= pf_test_state_grev1(&s
, dir
, kif
, off
, &pd
);
9946 PF_APPLE_UPDATE_PDESC_IPv4();
9947 if (action
== PF_PASS
) {
9949 pfsync_update_state(s
);
9950 #endif /* NPFSYNC */
9955 } else if (s
== NULL
) {
9956 action
= pf_test_rule(&r
, &s
, dir
, kif
, pbuf
,
9957 off
, h
, &pd
, &a
, &ruleset
, NULL
);
9958 if (action
== PF_PASS
) {
9964 /* not GREv1/PPTP, so treat as ordinary GRE... */
9969 /* Traffic goes through dummynet first */
9970 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
9971 if (action
== PF_DROP
|| pbuf
== NULL
) {
9975 #endif /* DUMMYNET */
9976 action
= pf_test_state_other(&s
, dir
, kif
, &pd
);
9980 PF_APPLE_UPDATE_PDESC_IPv4();
9981 if (action
== PF_PASS
) {
9983 pfsync_update_state(s
);
9984 #endif /* NPFSYNC */
9988 } else if (s
== NULL
) {
9989 action
= pf_test_rule(&r
, &s
, dir
, kif
, pbuf
, off
, h
,
9990 &pd
, &a
, &ruleset
, NULL
);
9996 if (action
== PF_NAT64
) {
10002 PF_APPLE_UPDATE_PDESC_IPv4();
10004 if (action
!= PF_DROP
) {
10005 if (action
== PF_PASS
&& h
->ip_hl
> 5 &&
10006 !((s
&& s
->allow_opts
) || r
->allow_opts
)) {
10008 REASON_SET(&reason
, PFRES_IPOPTIONS
);
10010 DPFPRINTF(PF_DEBUG_MISC
,
10011 ("pf: dropping packet with ip options [hlen=%u]\n",
10012 (unsigned int) h
->ip_hl
));
10015 if ((s
&& s
->tag
) || PF_RTABLEID_IS_VALID(r
->rtableid
) ||
10016 (pd
.pktflags
& PKTF_FLOW_ID
)) {
10017 (void) pf_tag_packet(pbuf
, pd
.pf_mtag
, s
? s
->tag
: 0,
10021 if (action
== PF_PASS
) {
10023 /* add hints for ecn */
10024 pd
.pf_mtag
->pftag_hdr
= h
;
10025 /* record address family */
10026 pd
.pf_mtag
->pftag_flags
&= ~PF_TAG_HDR_INET6
;
10027 pd
.pf_mtag
->pftag_flags
|= PF_TAG_HDR_INET
;
10028 #endif /* PF_ECN */
10029 /* record protocol */
10030 *pbuf
->pb_proto
= pd
.proto
;
10033 * connections redirected to loopback should not match sockets
10034 * bound specifically to loopback due to security implications,
10035 * see tcp_input() and in_pcblookup_listen().
10037 if (dir
== PF_IN
&& (pd
.proto
== IPPROTO_TCP
||
10038 pd
.proto
== IPPROTO_UDP
) && s
!= NULL
&&
10039 s
->nat_rule
.ptr
!= NULL
&&
10040 (s
->nat_rule
.ptr
->action
== PF_RDR
||
10041 s
->nat_rule
.ptr
->action
== PF_BINAT
) &&
10042 (ntohl(pd
.dst
->v4addr
.s_addr
) >> IN_CLASSA_NSHIFT
)
10043 == IN_LOOPBACKNET
) {
10044 pd
.pf_mtag
->pftag_flags
|= PF_TAG_TRANSLATE_LOCALHOST
;
10050 struct pf_rule
*lr
;
10052 if (s
!= NULL
&& s
->nat_rule
.ptr
!= NULL
&&
10053 s
->nat_rule
.ptr
->log
& PF_LOG_ALL
) {
10054 lr
= s
->nat_rule
.ptr
;
10058 PFLOG_PACKET(kif
, h
, pbuf
, AF_INET
, dir
, reason
, lr
, a
, ruleset
,
10062 kif
->pfik_bytes
[0][dir
== PF_OUT
][action
!= PF_PASS
] += pd
.tot_len
;
10063 kif
->pfik_packets
[0][dir
== PF_OUT
][action
!= PF_PASS
]++;
10065 if (action
== PF_PASS
|| r
->action
== PF_DROP
) {
10066 dirndx
= (dir
== PF_OUT
);
10067 r
->packets
[dirndx
]++;
10068 r
->bytes
[dirndx
] += pd
.tot_len
;
10070 a
->packets
[dirndx
]++;
10071 a
->bytes
[dirndx
] += pd
.tot_len
;
10075 if (s
->nat_rule
.ptr
!= NULL
) {
10076 s
->nat_rule
.ptr
->packets
[dirndx
]++;
10077 s
->nat_rule
.ptr
->bytes
[dirndx
] += pd
.tot_len
;
10079 if (s
->src_node
!= NULL
) {
10080 s
->src_node
->packets
[dirndx
]++;
10081 s
->src_node
->bytes
[dirndx
] += pd
.tot_len
;
10083 if (s
->nat_src_node
!= NULL
) {
10084 s
->nat_src_node
->packets
[dirndx
]++;
10085 s
->nat_src_node
->bytes
[dirndx
] += pd
.tot_len
;
10087 dirndx
= (dir
== sk
->direction
) ? 0 : 1;
10088 s
->packets
[dirndx
]++;
10089 s
->bytes
[dirndx
] += pd
.tot_len
;
10092 nr
= (s
!= NULL
) ? s
->nat_rule
.ptr
: pd
.nat_rule
;
10096 * XXX: we need to make sure that the addresses
10097 * passed to pfr_update_stats() are the same than
10098 * the addresses used during matching (pfr_match)
10100 if (r
== &pf_default_rule
) {
10102 x
= (sk
== NULL
|| sk
->direction
== dir
) ?
10103 &pd
.baddr
: &pd
.naddr
;
10105 x
= (sk
== NULL
|| sk
->direction
== dir
) ?
10106 &pd
.naddr
: &pd
.baddr
;
10108 if (x
== &pd
.baddr
|| s
== NULL
) {
10109 /* we need to change the address */
10110 if (dir
== PF_OUT
) {
10117 if (tr
->src
.addr
.type
== PF_ADDR_TABLE
) {
10118 pfr_update_stats(tr
->src
.addr
.p
.tbl
, (sk
== NULL
||
10119 sk
->direction
== dir
) ?
10120 pd
.src
: pd
.dst
, pd
.af
,
10121 pd
.tot_len
, dir
== PF_OUT
, r
->action
== PF_PASS
,
10124 if (tr
->dst
.addr
.type
== PF_ADDR_TABLE
) {
10125 pfr_update_stats(tr
->dst
.addr
.p
.tbl
, (sk
== NULL
||
10126 sk
->direction
== dir
) ? pd
.dst
: pd
.src
, pd
.af
,
10127 pd
.tot_len
, dir
== PF_OUT
, r
->action
== PF_PASS
,
10132 VERIFY(pbuf
== NULL
|| pd
.mp
== NULL
|| pd
.mp
== pbuf
);
10136 REASON_SET(&reason
, PFRES_MEMORY
);
10140 if (action
== PF_DROP
) {
10141 pbuf_destroy(*pbufp
);
10149 if (action
== PF_SYNPROXY_DROP
) {
10150 pbuf_destroy(*pbufp
);
10153 } else if (r
->rt
) {
10154 /* pf_route can free the pbuf causing *pbufp to become NULL */
10155 pf_route(pbufp
, r
, dir
, kif
->pfik_ifp
, s
, &pd
);
10163 #define PF_APPLE_UPDATE_PDESC_IPv6() \
10165 if (pbuf && pd.mp && pbuf != pd.mp) { \
10168 h = pbuf->pb_data; \
10172 pf_test6_mbuf(int dir
, struct ifnet
*ifp
, struct mbuf
**m0
,
10173 struct ether_header
*eh
, struct ip_fw_args
*fwa
)
10175 pbuf_t pbuf_store
, *pbuf
;
10178 pbuf_init_mbuf(&pbuf_store
, *m0
, (*m0
)->m_pkthdr
.rcvif
);
10179 pbuf
= &pbuf_store
;
10181 rv
= pf_test6(dir
, ifp
, &pbuf
, eh
, fwa
);
10183 if (pbuf_is_valid(pbuf
)) {
10184 *m0
= pbuf
->pb_mbuf
;
10185 pbuf
->pb_mbuf
= NULL
;
10186 pbuf_destroy(pbuf
);
10195 pf_test6(int dir
, struct ifnet
*ifp
, pbuf_t
**pbufp
,
10196 struct ether_header
*eh
, struct ip_fw_args
*fwa
)
10199 #pragma unused(fwa)
10201 struct pfi_kif
*kif
;
10202 u_short action
= PF_PASS
, reason
= 0, log
= 0;
10203 pbuf_t
*pbuf
= *pbufp
;
10205 struct pf_rule
*a
= NULL
, *r
= &pf_default_rule
, *tr
, *nr
;
10206 struct pf_state
*s
= NULL
;
10207 struct pf_state_key
*sk
= NULL
;
10208 struct pf_ruleset
*ruleset
= NULL
;
10209 struct pf_pdesc pd
;
10210 int off
, terminal
= 0, dirndx
, rh_cnt
= 0;
10213 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
10215 if (!pf_status
.running
) {
10219 memset(&pd
, 0, sizeof(pd
));
10221 if ((pd
.pf_mtag
= pf_get_mtag_pbuf(pbuf
)) == NULL
) {
10222 DPFPRINTF(PF_DEBUG_URGENT
,
10223 ("pf_test6: pf_get_mtag_pbuf returned NULL\n"));
10227 if (pd
.pf_mtag
->pftag_flags
& PF_TAG_GENERATED
) {
10231 kif
= (struct pfi_kif
*)ifp
->if_pf_kif
;
10234 DPFPRINTF(PF_DEBUG_URGENT
,
10235 ("pf_test6: kif == NULL, if_name %s\n", ifp
->if_name
));
10238 if (kif
->pfik_flags
& PFI_IFLAG_SKIP
) {
10245 off
= ((caddr_t
)h
- (caddr_t
)pbuf
->pb_data
) + sizeof(struct ip6_hdr
);
10248 pd
.pf_mtag
= pf_get_mtag_pbuf(pbuf
);
10249 pd
.src
= (struct pf_addr
*)(uintptr_t)&h
->ip6_src
;
10250 pd
.dst
= (struct pf_addr
*)(uintptr_t)&h
->ip6_dst
;
10251 PF_ACPY(&pd
.baddr
, pd
.src
, AF_INET6
);
10252 PF_ACPY(&pd
.bdaddr
, pd
.dst
, AF_INET6
);
10256 pd
.proto_variant
= 0;
10258 pd
.ttl
= h
->ip6_hlim
;
10259 pd
.sc
= MBUF_SCIDX(pbuf_get_service_class(pbuf
));
10260 pd
.tot_len
= ntohs(h
->ip6_plen
) + sizeof(struct ip6_hdr
);
10263 if (*pbuf
->pb_flags
& PKTF_FLOW_ID
) {
10264 pd
.flowsrc
= *pbuf
->pb_flowsrc
;
10265 pd
.flowhash
= *pbuf
->pb_flowid
;
10266 pd
.pktflags
= (*pbuf
->pb_flags
& PKTF_FLOW_MASK
);
10269 if (pbuf
->pb_packet_len
< (int)sizeof(*h
)) {
10271 REASON_SET(&reason
, PFRES_SHORT
);
10277 if (fwa
!= NULL
&& fwa
->fwa_pf_rule
!= NULL
) {
10280 #endif /* DUMMYNET */
10282 /* We do IP header normalization and packet reassembly here */
10283 action
= pf_normalize_ip6(pbuf
, dir
, kif
, &reason
, &pd
);
10284 if (action
!= PF_PASS
|| pd
.lmw
< 0) {
10291 #endif /* DUMMYNET */
10296 * we do not support jumbogram yet. if we keep going, zero ip6_plen
10297 * will do something bad, so drop the packet for now.
10299 if (htons(h
->ip6_plen
) == 0) {
10301 REASON_SET(&reason
, PFRES_NORM
); /*XXX*/
10306 pd
.src
= (struct pf_addr
*)(uintptr_t)&h
->ip6_src
;
10307 pd
.dst
= (struct pf_addr
*)(uintptr_t)&h
->ip6_dst
;
10308 PF_ACPY(&pd
.baddr
, pd
.src
, AF_INET6
);
10309 PF_ACPY(&pd
.bdaddr
, pd
.dst
, AF_INET6
);
10313 pd
.ttl
= h
->ip6_hlim
;
10314 pd
.tot_len
= ntohs(h
->ip6_plen
) + sizeof(struct ip6_hdr
);
10317 off
= ((caddr_t
)h
- (caddr_t
)pbuf
->pb_data
) + sizeof(struct ip6_hdr
);
10318 pd
.proto
= h
->ip6_nxt
;
10319 pd
.proto_variant
= 0;
10322 pd
.pf_mtag
= pf_get_mtag_pbuf(pbuf
);
10326 case IPPROTO_FRAGMENT
: {
10327 struct ip6_frag ip6f
;
10329 pd
.flags
|= PFDESC_IP_FRAG
;
10330 if (!pf_pull_hdr(pbuf
, off
, &ip6f
, sizeof ip6f
, NULL
,
10332 DPFPRINTF(PF_DEBUG_MISC
,
10333 ("pf: IPv6 short fragment header\n"));
10335 REASON_SET(&reason
, PFRES_SHORT
);
10339 pd
.proto
= nxt
= ip6f
.ip6f_nxt
;
10341 /* Traffic goes through dummynet first */
10342 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
,
10344 if (action
== PF_DROP
|| pbuf
== NULL
) {
10348 #endif /* DUMMYNET */
10349 action
= pf_test_fragment(&r
, dir
, kif
, pbuf
, h
, &pd
,
10351 if (action
== PF_DROP
) {
10352 REASON_SET(&reason
, PFRES_FRAG
);
10357 case IPPROTO_ROUTING
:
10362 case IPPROTO_HOPOPTS
:
10363 case IPPROTO_DSTOPTS
: {
10364 /* get next header and header length */
10365 struct ip6_ext opt6
;
10367 if (!pf_pull_hdr(pbuf
, off
, &opt6
, sizeof(opt6
),
10368 NULL
, &reason
, pd
.af
)) {
10369 DPFPRINTF(PF_DEBUG_MISC
,
10370 ("pf: IPv6 short opt\n"));
10375 if (pd
.proto
== IPPROTO_AH
) {
10376 off
+= (opt6
.ip6e_len
+ 2) * 4;
10378 off
+= (opt6
.ip6e_len
+ 1) * 8;
10380 nxt
= opt6
.ip6e_nxt
;
10381 /* goto the next header */
10388 } while (!terminal
);
10391 switch (pd
.proto
) {
10392 case IPPROTO_TCP
: {
10396 if (!pf_pull_hdr(pbuf
, off
, &th
, sizeof(th
),
10397 &action
, &reason
, AF_INET6
)) {
10398 log
= action
!= PF_PASS
;
10401 pd
.p_len
= pd
.tot_len
- off
- (th
.th_off
<< 2);
10403 /* Traffic goes through dummynet first */
10404 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
10405 if (action
== PF_DROP
|| pbuf
== NULL
) {
10409 #endif /* DUMMYNET */
10410 action
= pf_normalize_tcp(dir
, kif
, pbuf
, 0, off
, h
, &pd
);
10414 PF_APPLE_UPDATE_PDESC_IPv6();
10415 if (action
== PF_DROP
) {
10418 action
= pf_test_state_tcp(&s
, dir
, kif
, pbuf
, off
, h
, &pd
,
10420 if (action
== PF_NAT64
) {
10426 PF_APPLE_UPDATE_PDESC_IPv6();
10427 if (action
== PF_PASS
) {
10429 pfsync_update_state(s
);
10430 #endif /* NPFSYNC */
10434 } else if (s
== NULL
) {
10435 action
= pf_test_rule(&r
, &s
, dir
, kif
,
10436 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
10441 case IPPROTO_UDP
: {
10445 if (!pf_pull_hdr(pbuf
, off
, &uh
, sizeof(uh
),
10446 &action
, &reason
, AF_INET6
)) {
10447 log
= action
!= PF_PASS
;
10450 if (uh
.uh_dport
== 0 ||
10451 ntohs(uh
.uh_ulen
) > pbuf
->pb_packet_len
- off
||
10452 ntohs(uh
.uh_ulen
) < sizeof(struct udphdr
)) {
10454 REASON_SET(&reason
, PFRES_SHORT
);
10458 /* Traffic goes through dummynet first */
10459 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
10460 if (action
== PF_DROP
|| pbuf
== NULL
) {
10464 #endif /* DUMMYNET */
10465 action
= pf_test_state_udp(&s
, dir
, kif
, pbuf
, off
, h
, &pd
,
10467 if (action
== PF_NAT64
) {
10473 PF_APPLE_UPDATE_PDESC_IPv6();
10474 if (action
== PF_PASS
) {
10476 pfsync_update_state(s
);
10477 #endif /* NPFSYNC */
10481 } else if (s
== NULL
) {
10482 action
= pf_test_rule(&r
, &s
, dir
, kif
,
10483 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
10488 case IPPROTO_ICMPV6
: {
10489 struct icmp6_hdr ih
;
10491 pd
.hdr
.icmp6
= &ih
;
10492 if (!pf_pull_hdr(pbuf
, off
, &ih
, sizeof(ih
),
10493 &action
, &reason
, AF_INET6
)) {
10494 log
= action
!= PF_PASS
;
10498 /* Traffic goes through dummynet first */
10499 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
10500 if (action
== PF_DROP
|| pbuf
== NULL
) {
10504 #endif /* DUMMYNET */
10505 action
= pf_test_state_icmp(&s
, dir
, kif
,
10506 pbuf
, off
, h
, &pd
, &reason
);
10507 if (action
== PF_NAT64
) {
10513 PF_APPLE_UPDATE_PDESC_IPv6();
10514 if (action
== PF_PASS
) {
10516 pfsync_update_state(s
);
10517 #endif /* NPFSYNC */
10521 } else if (s
== NULL
) {
10522 action
= pf_test_rule(&r
, &s
, dir
, kif
,
10523 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
10528 case IPPROTO_ESP
: {
10529 struct pf_esp_hdr esp
;
10532 if (!pf_pull_hdr(pbuf
, off
, &esp
, sizeof(esp
), &action
,
10533 &reason
, AF_INET6
)) {
10534 log
= action
!= PF_PASS
;
10538 /* Traffic goes through dummynet first */
10539 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
10540 if (action
== PF_DROP
|| pbuf
== NULL
) {
10544 #endif /* DUMMYNET */
10545 action
= pf_test_state_esp(&s
, dir
, kif
, off
, &pd
);
10549 PF_APPLE_UPDATE_PDESC_IPv6();
10550 if (action
== PF_PASS
) {
10552 pfsync_update_state(s
);
10553 #endif /* NPFSYNC */
10557 } else if (s
== NULL
) {
10558 action
= pf_test_rule(&r
, &s
, dir
, kif
,
10559 pbuf
, off
, h
, &pd
, &a
, &ruleset
, NULL
);
10564 case IPPROTO_GRE
: {
10565 struct pf_grev1_hdr grev1
;
10567 pd
.hdr
.grev1
= &grev1
;
10568 if (!pf_pull_hdr(pbuf
, off
, &grev1
, sizeof(grev1
), &action
,
10569 &reason
, AF_INET6
)) {
10570 log
= (action
!= PF_PASS
);
10574 /* Traffic goes through dummynet first */
10575 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
10576 if (action
== PF_DROP
|| pbuf
== NULL
) {
10580 #endif /* DUMMYNET */
10581 if ((ntohs(grev1
.flags
) & PF_GRE_FLAG_VERSION_MASK
) == 1 &&
10582 ntohs(grev1
.protocol_type
) == PF_GRE_PPP_ETHERTYPE
) {
10583 if (ntohs(grev1
.payload_length
) >
10584 pbuf
->pb_packet_len
- off
) {
10586 REASON_SET(&reason
, PFRES_SHORT
);
10589 action
= pf_test_state_grev1(&s
, dir
, kif
, off
, &pd
);
10593 PF_APPLE_UPDATE_PDESC_IPv6();
10594 if (action
== PF_PASS
) {
10596 pfsync_update_state(s
);
10597 #endif /* NPFSYNC */
10602 } else if (s
== NULL
) {
10603 action
= pf_test_rule(&r
, &s
, dir
, kif
, pbuf
,
10604 off
, h
, &pd
, &a
, &ruleset
, NULL
);
10605 if (action
== PF_PASS
) {
10611 /* not GREv1/PPTP, so treat as ordinary GRE... */
10616 /* Traffic goes through dummynet first */
10617 action
= pf_test_dummynet(&r
, dir
, kif
, &pbuf
, &pd
, fwa
);
10618 if (action
== PF_DROP
|| pbuf
== NULL
) {
10622 #endif /* DUMMYNET */
10623 action
= pf_test_state_other(&s
, dir
, kif
, &pd
);
10627 PF_APPLE_UPDATE_PDESC_IPv6();
10628 if (action
== PF_PASS
) {
10630 pfsync_update_state(s
);
10631 #endif /* NPFSYNC */
10635 } else if (s
== NULL
) {
10636 action
= pf_test_rule(&r
, &s
, dir
, kif
, pbuf
, off
, h
,
10637 &pd
, &a
, &ruleset
, NULL
);
10643 if (action
== PF_NAT64
) {
10649 PF_APPLE_UPDATE_PDESC_IPv6();
10651 /* handle dangerous IPv6 extension headers. */
10652 if (action
!= PF_DROP
) {
10653 if (action
== PF_PASS
&& rh_cnt
&&
10654 !((s
&& s
->allow_opts
) || r
->allow_opts
)) {
10656 REASON_SET(&reason
, PFRES_IPOPTIONS
);
10658 DPFPRINTF(PF_DEBUG_MISC
,
10659 ("pf: dropping packet with dangerous v6addr headers\n"));
10662 if ((s
&& s
->tag
) || PF_RTABLEID_IS_VALID(r
->rtableid
) ||
10663 (pd
.pktflags
& PKTF_FLOW_ID
)) {
10664 (void) pf_tag_packet(pbuf
, pd
.pf_mtag
, s
? s
->tag
: 0,
10668 if (action
== PF_PASS
) {
10670 /* add hints for ecn */
10671 pd
.pf_mtag
->pftag_hdr
= h
;
10672 /* record address family */
10673 pd
.pf_mtag
->pftag_flags
&= ~PF_TAG_HDR_INET
;
10674 pd
.pf_mtag
->pftag_flags
|= PF_TAG_HDR_INET6
;
10675 #endif /* PF_ECN */
10676 /* record protocol */
10677 *pbuf
->pb_proto
= pd
.proto
;
10678 if (dir
== PF_IN
&& (pd
.proto
== IPPROTO_TCP
||
10679 pd
.proto
== IPPROTO_UDP
) && s
!= NULL
&&
10680 s
->nat_rule
.ptr
!= NULL
&&
10681 (s
->nat_rule
.ptr
->action
== PF_RDR
||
10682 s
->nat_rule
.ptr
->action
== PF_BINAT
) &&
10683 IN6_IS_ADDR_LOOPBACK(&pd
.dst
->v6addr
)) {
10684 pd
.pf_mtag
->pftag_flags
|= PF_TAG_TRANSLATE_LOCALHOST
;
10691 struct pf_rule
*lr
;
10693 if (s
!= NULL
&& s
->nat_rule
.ptr
!= NULL
&&
10694 s
->nat_rule
.ptr
->log
& PF_LOG_ALL
) {
10695 lr
= s
->nat_rule
.ptr
;
10699 PFLOG_PACKET(kif
, h
, pbuf
, AF_INET6
, dir
, reason
, lr
, a
, ruleset
,
10703 kif
->pfik_bytes
[1][dir
== PF_OUT
][action
!= PF_PASS
] += pd
.tot_len
;
10704 kif
->pfik_packets
[1][dir
== PF_OUT
][action
!= PF_PASS
]++;
10706 if (action
== PF_PASS
|| r
->action
== PF_DROP
) {
10707 dirndx
= (dir
== PF_OUT
);
10708 r
->packets
[dirndx
]++;
10709 r
->bytes
[dirndx
] += pd
.tot_len
;
10711 a
->packets
[dirndx
]++;
10712 a
->bytes
[dirndx
] += pd
.tot_len
;
10716 if (s
->nat_rule
.ptr
!= NULL
) {
10717 s
->nat_rule
.ptr
->packets
[dirndx
]++;
10718 s
->nat_rule
.ptr
->bytes
[dirndx
] += pd
.tot_len
;
10720 if (s
->src_node
!= NULL
) {
10721 s
->src_node
->packets
[dirndx
]++;
10722 s
->src_node
->bytes
[dirndx
] += pd
.tot_len
;
10724 if (s
->nat_src_node
!= NULL
) {
10725 s
->nat_src_node
->packets
[dirndx
]++;
10726 s
->nat_src_node
->bytes
[dirndx
] += pd
.tot_len
;
10728 dirndx
= (dir
== sk
->direction
) ? 0 : 1;
10729 s
->packets
[dirndx
]++;
10730 s
->bytes
[dirndx
] += pd
.tot_len
;
10733 nr
= (s
!= NULL
) ? s
->nat_rule
.ptr
: pd
.nat_rule
;
10737 * XXX: we need to make sure that the addresses
10738 * passed to pfr_update_stats() are the same than
10739 * the addresses used during matching (pfr_match)
10741 if (r
== &pf_default_rule
) {
10743 x
= (s
== NULL
|| sk
->direction
== dir
) ?
10744 &pd
.baddr
: &pd
.naddr
;
10746 x
= (s
== NULL
|| sk
->direction
== dir
) ?
10747 &pd
.naddr
: &pd
.baddr
;
10749 if (x
== &pd
.baddr
|| s
== NULL
) {
10750 if (dir
== PF_OUT
) {
10757 if (tr
->src
.addr
.type
== PF_ADDR_TABLE
) {
10758 pfr_update_stats(tr
->src
.addr
.p
.tbl
, (sk
== NULL
||
10759 sk
->direction
== dir
) ? pd
.src
: pd
.dst
, pd
.af
,
10760 pd
.tot_len
, dir
== PF_OUT
, r
->action
== PF_PASS
,
10763 if (tr
->dst
.addr
.type
== PF_ADDR_TABLE
) {
10764 pfr_update_stats(tr
->dst
.addr
.p
.tbl
, (sk
== NULL
||
10765 sk
->direction
== dir
) ? pd
.dst
: pd
.src
, pd
.af
,
10766 pd
.tot_len
, dir
== PF_OUT
, r
->action
== PF_PASS
,
10772 if (action
== PF_SYNPROXY_DROP
) {
10776 } else if (r
->rt
) {
10777 /* pf_route6 can free the mbuf causing *m0 to become NULL */
10778 pf_route6(m0
, r
, dir
, kif
->pfik_ifp
, s
, &pd
);
10781 VERIFY(pbuf
== NULL
|| pd
.mp
== NULL
|| pd
.mp
== pbuf
);
10785 REASON_SET(&reason
, PFRES_MEMORY
);
10789 if (action
== PF_DROP
) {
10790 pbuf_destroy(*pbufp
);
10798 if (action
== PF_SYNPROXY_DROP
) {
10799 pbuf_destroy(*pbufp
);
10802 } else if (r
->rt
) {
10803 /* pf_route6 can free the mbuf causing *m0 to become NULL */
10804 pf_route6(pbufp
, r
, dir
, kif
->pfik_ifp
, s
, &pd
);
10813 pf_check_congestion(struct ifqueue
*ifq
)
10815 #pragma unused(ifq)
10820 pool_init(struct pool
*pp
, size_t size
, unsigned int align
, unsigned int ioff
,
10821 int flags
, const char *wchan
, void *palloc
)
10823 #pragma unused(align, ioff, flags, palloc)
10824 bzero(pp
, sizeof(*pp
));
10825 pp
->pool_zone
= zinit(size
, 1024 * size
, PAGE_SIZE
, wchan
);
10826 if (pp
->pool_zone
!= NULL
) {
10827 zone_change(pp
->pool_zone
, Z_EXPAND
, TRUE
);
10828 zone_change(pp
->pool_zone
, Z_CALLERACCT
, FALSE
);
10829 pp
->pool_hiwat
= pp
->pool_limit
= (unsigned int)-1;
10830 pp
->pool_name
= wchan
;
10834 /* Zones cannot be currently destroyed */
10836 pool_destroy(struct pool
*pp
)
10842 pool_sethiwat(struct pool
*pp
, int n
)
10844 pp
->pool_hiwat
= n
; /* Currently unused */
10848 pool_sethardlimit(struct pool
*pp
, int n
, const char *warnmess
, int ratecap
)
10850 #pragma unused(warnmess, ratecap)
10851 pp
->pool_limit
= n
;
10855 pool_get(struct pool
*pp
, int flags
)
10859 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
10861 if (pp
->pool_count
> pp
->pool_limit
) {
10862 DPFPRINTF(PF_DEBUG_NOISY
,
10863 ("pf: pool %s hard limit reached (%d)\n",
10864 pp
->pool_name
!= NULL
? pp
->pool_name
: "unknown",
10870 buf
= zalloc_canblock(pp
->pool_zone
, (flags
& (PR_NOWAIT
| PR_WAITOK
)));
10873 VERIFY(pp
->pool_count
!= 0);
10879 pool_put(struct pool
*pp
, void *v
)
10881 LCK_MTX_ASSERT(pf_lock
, LCK_MTX_ASSERT_OWNED
);
10883 zfree(pp
->pool_zone
, v
);
10884 VERIFY(pp
->pool_count
!= 0);
10889 pf_find_mtag_pbuf(pbuf_t
*pbuf
)
10891 return pbuf
->pb_pftag
;
10895 pf_find_mtag(struct mbuf
*m
)
10901 pf_get_mtag(struct mbuf
*m
)
10903 return pf_find_mtag(m
);
10907 pf_get_mtag_pbuf(pbuf_t
*pbuf
)
10909 return pf_find_mtag_pbuf(pbuf
);
10913 pf_time_second(void)
10922 pf_calendar_time_second(void)
10931 hook_establish(struct hook_desc_head
*head
, int tail
, hook_fn_t fn
, void *arg
)
10933 struct hook_desc
*hd
;
10935 hd
= _MALLOC(sizeof(*hd
), M_DEVBUF
, M_WAITOK
);
10943 TAILQ_INSERT_TAIL(head
, hd
, hd_list
);
10945 TAILQ_INSERT_HEAD(head
, hd
, hd_list
);
10952 hook_runloop(struct hook_desc_head
*head
, int flags
)
10954 struct hook_desc
*hd
;
10956 if (!(flags
& HOOK_REMOVE
)) {
10957 if (!(flags
& HOOK_ABORT
)) {
10958 TAILQ_FOREACH(hd
, head
, hd_list
)
10959 hd
->hd_fn(hd
->hd_arg
);
10962 while (!!(hd
= TAILQ_FIRST(head
))) {
10963 TAILQ_REMOVE(head
, hd
, hd_list
);
10964 if (!(flags
& HOOK_ABORT
)) {
10965 hd
->hd_fn(hd
->hd_arg
);
10967 if (flags
& HOOK_FREE
) {
10968 _FREE(hd
, M_DEVBUF
);