kernel - Fix fairq, PF table hash was not being initialized
[dragonfly.git] / sys / net / pf / pf.c
1 /*      $OpenBSD: pf.c,v 1.614 2008/08/02 12:34:37 henning Exp $ */
2
3 /*
4  * Copyright (c) 2004 The DragonFly Project.  All rights reserved.
5  *
6  * Copyright (c) 2001 Daniel Hartmeier
7  * Copyright (c) 2002 - 2008 Henning Brauer
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  *    - Redistributions of source code must retain the above copyright
15  *      notice, this list of conditions and the following disclaimer.
16  *    - Redistributions in binary form must reproduce the above
17  *      copyright notice, this list of conditions and the following
18  *      disclaimer in the documentation and/or other materials provided
19  *      with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *
34  * Effort sponsored in part by the Defense Advanced Research Projects
35  * Agency (DARPA) and Air Force Research Laboratory, Air Force
36  * Materiel Command, USAF, under agreement number F30602-01-2-0537.
37  *
38  */
39
40 #include "opt_inet.h"
41 #include "opt_inet6.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/malloc.h>
46 #include <sys/mbuf.h>
47 #include <sys/filio.h>
48 #include <sys/socket.h>
49 #include <sys/socketvar.h>
50 #include <sys/kernel.h>
51 #include <sys/time.h>
52 #include <sys/sysctl.h>
53 #include <sys/endian.h>
54 #include <vm/vm_zone.h>
55 #include <sys/proc.h>
56 #include <sys/kthread.h>
57
58 #include <machine/inttypes.h>
59
60 #include <sys/md5.h>
61
62 #include <net/if.h>
63 #include <net/if_types.h>
64 #include <net/bpf.h>
65 #include <net/netisr.h>
66 #include <net/route.h>
67
68 #include <netinet/in.h>
69 #include <netinet/in_var.h>
70 #include <netinet/in_systm.h>
71 #include <netinet/ip.h>
72 #include <netinet/ip_var.h>
73 #include <netinet/tcp.h>
74 #include <netinet/tcp_seq.h>
75 #include <netinet/udp.h>
76 #include <netinet/ip_icmp.h>
77 #include <netinet/in_pcb.h>
78 #include <netinet/tcp_timer.h>
79 #include <netinet/tcp_var.h>
80 #include <netinet/udp_var.h>
81 #include <netinet/icmp_var.h>
82 #include <netinet/if_ether.h>
83
84 #include <net/pf/pfvar.h>
85 #include <net/pf/if_pflog.h>
86
87 #include <net/pf/if_pfsync.h>
88
89 #ifdef INET6
90 #include <netinet/ip6.h>
91 #include <netinet/in_pcb.h>
92 #include <netinet/icmp6.h>
93 #include <netinet6/nd6.h>
94 #include <netinet6/ip6_var.h>
95 #include <netinet6/in6_pcb.h>
96 #endif /* INET6 */
97
98 #include <sys/in_cksum.h>
99 #include <sys/ucred.h>
100 #include <machine/limits.h>
101 #include <sys/msgport2.h>
102 #include <net/netmsg2.h>
103
104 extern int ip_optcopy(struct ip *, struct ip *);
105 extern int debug_pfugidhack;
106
107 struct lwkt_token pf_token = LWKT_TOKEN_INITIALIZER(pf_token);
108
109 #define DPFPRINTF(n, x) if (pf_status.debug >= (n)) kprintf x
110
111 /*
112  * Global variables
113  */
114
115 /* mask radix tree */
116 struct radix_node_head  *pf_maskhead;
117
118 /* state tables */
119 struct pf_state_tree     pf_statetbl;
120
121 struct pf_altqqueue      pf_altqs[2];
122 struct pf_palist         pf_pabuf;
123 struct pf_altqqueue     *pf_altqs_active;
124 struct pf_altqqueue     *pf_altqs_inactive;
125 struct pf_status         pf_status;
126
127 u_int32_t                ticket_altqs_active;
128 u_int32_t                ticket_altqs_inactive;
129 int                      altqs_inactive_open;
130 u_int32_t                ticket_pabuf;
131
132 MD5_CTX                  pf_tcp_secret_ctx;
133 u_char                   pf_tcp_secret[16];
134 int                      pf_tcp_secret_init;
135 int                      pf_tcp_iss_off;
136
137 struct pf_anchor_stackframe {
138         struct pf_ruleset                       *rs;
139         struct pf_rule                          *r;
140         struct pf_anchor_node                   *parent;
141         struct pf_anchor                        *child;
142 } pf_anchor_stack[64];
143
144 vm_zone_t                pf_src_tree_pl, pf_rule_pl, pf_pooladdr_pl;
145 vm_zone_t                pf_state_pl, pf_state_key_pl, pf_state_item_pl;
146 vm_zone_t                pf_altq_pl;
147
148 void                     pf_print_host(struct pf_addr *, u_int16_t, u_int8_t);
149
150 void                     pf_init_threshold(struct pf_threshold *, u_int32_t,
151                             u_int32_t);
152 void                     pf_add_threshold(struct pf_threshold *);
153 int                      pf_check_threshold(struct pf_threshold *);
154
155 void                     pf_change_ap(struct pf_addr *, u_int16_t *,
156                             u_int16_t *, u_int16_t *, struct pf_addr *,
157                             u_int16_t, u_int8_t, sa_family_t);
158 int                      pf_modulate_sack(struct mbuf *, int, struct pf_pdesc *,
159                             struct tcphdr *, struct pf_state_peer *);
160 #ifdef INET6
161 void                     pf_change_a6(struct pf_addr *, u_int16_t *,
162                             struct pf_addr *, u_int8_t);
163 #endif /* INET6 */
164 void                     pf_change_icmp(struct pf_addr *, u_int16_t *,
165                             struct pf_addr *, struct pf_addr *, u_int16_t,
166                             u_int16_t *, u_int16_t *, u_int16_t *,
167                             u_int16_t *, u_int8_t, sa_family_t);
168 void                     pf_send_tcp(const struct pf_rule *, sa_family_t,
169                             const struct pf_addr *, const struct pf_addr *,
170                             u_int16_t, u_int16_t, u_int32_t, u_int32_t,
171                             u_int8_t, u_int16_t, u_int16_t, u_int8_t, int,
172                             u_int16_t, struct ether_header *, struct ifnet *);
173 void                     pf_send_icmp(struct mbuf *, u_int8_t, u_int8_t,
174                             sa_family_t, struct pf_rule *);
175 struct pf_rule          *pf_match_translation(struct pf_pdesc *, struct mbuf *,
176                             int, int, struct pfi_kif *,
177                             struct pf_addr *, u_int16_t, struct pf_addr *,
178                             u_int16_t, int);
179 struct pf_rule          *pf_get_translation(struct pf_pdesc *, struct mbuf *,
180                             int, int, struct pfi_kif *, struct pf_src_node **,
181                             struct pf_state_key **, struct pf_state_key **,
182                             struct pf_state_key **, struct pf_state_key **,
183                             struct pf_addr *, struct pf_addr *,
184                             u_int16_t, u_int16_t);
185 void                     pf_detach_state(struct pf_state *);
186 int                      pf_state_key_setup(struct pf_pdesc *, struct pf_rule *,
187                             struct pf_state_key **, struct pf_state_key **,
188                             struct pf_state_key **, struct pf_state_key **,
189                             struct pf_addr *, struct pf_addr *,
190                             u_int16_t, u_int16_t);
191 void                     pf_state_key_detach(struct pf_state *, int);
192 u_int32_t                pf_tcp_iss(struct pf_pdesc *);
193 int                      pf_test_rule(struct pf_rule **, struct pf_state **,
194                             int, struct pfi_kif *, struct mbuf *, int,
195                             void *, struct pf_pdesc *, struct pf_rule **,
196                             struct pf_ruleset **, struct ifqueue *, struct inpcb *);
197 static __inline int      pf_create_state(struct pf_rule *, struct pf_rule *,
198                             struct pf_rule *, struct pf_pdesc *,
199                             struct pf_src_node *, struct pf_state_key *,
200                             struct pf_state_key *, struct pf_state_key *,
201                             struct pf_state_key *, struct mbuf *, int,
202                             u_int16_t, u_int16_t, int *, struct pfi_kif *,
203                             struct pf_state **, int, u_int16_t, u_int16_t,
204                             int);
205 int                      pf_test_fragment(struct pf_rule **, int,
206                             struct pfi_kif *, struct mbuf *, void *,
207                             struct pf_pdesc *, struct pf_rule **,
208                             struct pf_ruleset **);
209 int                      pf_tcp_track_full(struct pf_state_peer *,
210                             struct pf_state_peer *, struct pf_state **,
211                             struct pfi_kif *, struct mbuf *, int,
212                             struct pf_pdesc *, u_short *, int *);
213 int                     pf_tcp_track_sloppy(struct pf_state_peer *,
214                             struct pf_state_peer *, struct pf_state **,
215                             struct pf_pdesc *, u_short *);
216 int                      pf_test_state_tcp(struct pf_state **, int,
217                             struct pfi_kif *, struct mbuf *, int,
218                             void *, struct pf_pdesc *, u_short *);
219 int                      pf_test_state_udp(struct pf_state **, int,
220                             struct pfi_kif *, struct mbuf *, int,
221                             void *, struct pf_pdesc *);
222 int                      pf_test_state_icmp(struct pf_state **, int,
223                             struct pfi_kif *, struct mbuf *, int,
224                             void *, struct pf_pdesc *, u_short *);
225 int                      pf_test_state_other(struct pf_state **, int,
226                             struct pfi_kif *, struct mbuf *, struct pf_pdesc *);
227 void                     pf_step_into_anchor(int *, struct pf_ruleset **, int,
228                             struct pf_rule **, struct pf_rule **, int *);
229 int                      pf_step_out_of_anchor(int *, struct pf_ruleset **,
230                              int, struct pf_rule **, struct pf_rule **,
231                              int *);
232 void                     pf_hash(struct pf_addr *, struct pf_addr *,
233                             struct pf_poolhashkey *, sa_family_t);
234 int                      pf_map_addr(u_int8_t, struct pf_rule *,
235                             struct pf_addr *, struct pf_addr *,
236                             struct pf_addr *, struct pf_src_node **);
237 int                      pf_get_sport(sa_family_t, u_int8_t, struct pf_rule *,
238                             struct pf_addr *, struct pf_addr *, u_int16_t,
239                             struct pf_addr *, u_int16_t*, u_int16_t, u_int16_t,
240                             struct pf_src_node **);
241 void                     pf_route(struct mbuf **, struct pf_rule *, int,
242                             struct ifnet *, struct pf_state *,
243                             struct pf_pdesc *);
244 void                     pf_route6(struct mbuf **, struct pf_rule *, int,
245                             struct ifnet *, struct pf_state *,
246                             struct pf_pdesc *);
247 u_int8_t                 pf_get_wscale(struct mbuf *, int, u_int16_t,
248                             sa_family_t);
249 u_int16_t                pf_get_mss(struct mbuf *, int, u_int16_t,
250                             sa_family_t);
251 u_int16_t                pf_calc_mss(struct pf_addr *, sa_family_t,
252                                 u_int16_t);
253 void                     pf_set_rt_ifp(struct pf_state *,
254                             struct pf_addr *);
255 int                      pf_check_proto_cksum(struct mbuf *, int, int,
256                             u_int8_t, sa_family_t);
257 struct pf_divert        *pf_get_divert(struct mbuf *);
258 void                     pf_print_state_parts(struct pf_state *,
259                             struct pf_state_key *, struct pf_state_key *);
260 int                      pf_addr_wrap_neq(struct pf_addr_wrap *,
261                             struct pf_addr_wrap *);
262 struct pf_state         *pf_find_state(struct pfi_kif *,
263                             struct pf_state_key_cmp *, u_int, struct mbuf *);
264 int                      pf_src_connlimit(struct pf_state **);
265 int                      pf_check_congestion(struct ifqueue *);
266
267 extern int pf_end_threads;
268
269 struct pf_pool_limit pf_pool_limits[PF_LIMIT_MAX] = {
270         { &pf_state_pl, PFSTATE_HIWAT },
271         { &pf_src_tree_pl, PFSNODE_HIWAT },
272         { &pf_frent_pl, PFFRAG_FRENT_HIWAT },
273         { &pfr_ktable_pl, PFR_KTABLE_HIWAT },
274         { &pfr_kentry_pl, PFR_KENTRY_HIWAT }
275 };
276
277 #define STATE_LOOKUP(i, k, d, s, m)                                     \
278         do {                                                            \
279                 s = pf_find_state(i, k, d, m);                  \
280                 if (s == NULL || (s)->timeout == PFTM_PURGE)            \
281                         return (PF_DROP);                               \
282                 if (d == PF_OUT &&                                      \
283                     (((s)->rule.ptr->rt == PF_ROUTETO &&                \
284                     (s)->rule.ptr->direction == PF_OUT) ||              \
285                     ((s)->rule.ptr->rt == PF_REPLYTO &&                 \
286                     (s)->rule.ptr->direction == PF_IN)) &&              \
287                     (s)->rt_kif != NULL &&                              \
288                     (s)->rt_kif != i)                                   \
289                         return (PF_PASS);                               \
290         } while (0)
291
292 #define BOUND_IFACE(r, k) \
293         ((r)->rule_flag & PFRULE_IFBOUND) ? (k) : pfi_all
294
295 #define STATE_INC_COUNTERS(s)                           \
296         do {                                            \
297                 s->rule.ptr->states_cur++;              \
298                 s->rule.ptr->states_tot++;              \
299                 if (s->anchor.ptr != NULL) {            \
300                         s->anchor.ptr->states_cur++;    \
301                         s->anchor.ptr->states_tot++;    \
302                 }                                       \
303                 if (s->nat_rule.ptr != NULL) {          \
304                         s->nat_rule.ptr->states_cur++;  \
305                         s->nat_rule.ptr->states_tot++;  \
306                 }                                       \
307         } while (0)
308
309 #define STATE_DEC_COUNTERS(s)                           \
310         do {                                            \
311                 if (s->nat_rule.ptr != NULL)            \
312                         s->nat_rule.ptr->states_cur--;  \
313                 if (s->anchor.ptr != NULL)              \
314                         s->anchor.ptr->states_cur--;    \
315                 s->rule.ptr->states_cur--;              \
316         } while (0)
317
318 static __inline int pf_src_compare(struct pf_src_node *, struct pf_src_node *);
319 static __inline int pf_state_compare_key(struct pf_state_key *,
320         struct pf_state_key *);
321 static __inline int pf_state_compare_id(struct pf_state *,
322         struct pf_state *);
323
324 struct pf_src_tree tree_src_tracking;
325
326 struct pf_state_tree_id tree_id;
327 struct pf_state_queue state_list;
328
329 RB_GENERATE(pf_src_tree, pf_src_node, entry, pf_src_compare);
330 RB_GENERATE(pf_state_tree, pf_state_key, entry, pf_state_compare_key);
331 RB_GENERATE(pf_state_tree_id, pf_state,
332     entry_id, pf_state_compare_id);
333
334 static __inline int
335 pf_src_compare(struct pf_src_node *a, struct pf_src_node *b)
336 {
337         int     diff;
338
339         if (a->rule.ptr > b->rule.ptr)
340                 return (1);
341         if (a->rule.ptr < b->rule.ptr)
342                 return (-1);
343         if ((diff = a->af - b->af) != 0)
344                 return (diff);
345         switch (a->af) {
346 #ifdef INET
347         case AF_INET:
348                 if (a->addr.addr32[0] > b->addr.addr32[0])
349                         return (1);
350                 if (a->addr.addr32[0] < b->addr.addr32[0])
351                         return (-1);
352                 break;
353 #endif /* INET */
354 #ifdef INET6
355         case AF_INET6:
356                 if (a->addr.addr32[3] > b->addr.addr32[3])
357                         return (1);
358                 if (a->addr.addr32[3] < b->addr.addr32[3])
359                         return (-1);
360                 if (a->addr.addr32[2] > b->addr.addr32[2])
361                         return (1);
362                 if (a->addr.addr32[2] < b->addr.addr32[2])
363                         return (-1);
364                 if (a->addr.addr32[1] > b->addr.addr32[1])
365                         return (1);
366                 if (a->addr.addr32[1] < b->addr.addr32[1])
367                         return (-1);
368                 if (a->addr.addr32[0] > b->addr.addr32[0])
369                         return (1);
370                 if (a->addr.addr32[0] < b->addr.addr32[0])
371                         return (-1);
372                 break;
373 #endif /* INET6 */
374         }
375         return (0);
376 }
377
378 u_int32_t
379 pf_state_hash(struct pf_state_key *sk)
380 {
381         u_int32_t hv = (u_int32_t)(((intptr_t)sk >> 6) ^ ((intptr_t)sk >> 15));
382         if (hv == 0)    /* disallow 0 */
383                 hv = 1;
384         return(hv);
385 }
386
387 #ifdef INET6
388 void
389 pf_addrcpy(struct pf_addr *dst, struct pf_addr *src, sa_family_t af)
390 {
391         switch (af) {
392 #ifdef INET
393         case AF_INET:
394                 dst->addr32[0] = src->addr32[0];
395                 break;
396 #endif /* INET */
397         case AF_INET6:
398                 dst->addr32[0] = src->addr32[0];
399                 dst->addr32[1] = src->addr32[1];
400                 dst->addr32[2] = src->addr32[2];
401                 dst->addr32[3] = src->addr32[3];
402                 break;
403         }
404 }
405 #endif /* INET6 */
406
407 void
408 pf_init_threshold(struct pf_threshold *threshold,
409     u_int32_t limit, u_int32_t seconds)
410 {
411         threshold->limit = limit * PF_THRESHOLD_MULT;
412         threshold->seconds = seconds;
413         threshold->count = 0;
414         threshold->last = time_second;
415 }
416
417 void
418 pf_add_threshold(struct pf_threshold *threshold)
419 {
420         u_int32_t t = time_second, diff = t - threshold->last;
421
422         if (diff >= threshold->seconds)
423                 threshold->count = 0;
424         else
425                 threshold->count -= threshold->count * diff /
426                     threshold->seconds;
427         threshold->count += PF_THRESHOLD_MULT;
428         threshold->last = t;
429 }
430
431 int
432 pf_check_threshold(struct pf_threshold *threshold)
433 {
434         return (threshold->count > threshold->limit);
435 }
436
437 int
438 pf_src_connlimit(struct pf_state **state)
439 {
440         int bad = 0;
441
442         (*state)->src_node->conn++;
443         (*state)->src.tcp_est = 1;
444         pf_add_threshold(&(*state)->src_node->conn_rate);
445
446         if ((*state)->rule.ptr->max_src_conn &&
447             (*state)->rule.ptr->max_src_conn <
448             (*state)->src_node->conn) {
449                 pf_status.lcounters[LCNT_SRCCONN]++;
450                 bad++;
451         }
452
453         if ((*state)->rule.ptr->max_src_conn_rate.limit &&
454             pf_check_threshold(&(*state)->src_node->conn_rate)) {
455                 pf_status.lcounters[LCNT_SRCCONNRATE]++;
456                 bad++;
457         }
458
459         if (!bad)
460                 return (0);
461
462         if ((*state)->rule.ptr->overload_tbl) {
463                 struct pfr_addr p;
464                 u_int32_t       killed = 0;
465
466                 pf_status.lcounters[LCNT_OVERLOAD_TABLE]++;
467                 if (pf_status.debug >= PF_DEBUG_MISC) {
468                         kprintf("pf_src_connlimit: blocking address ");
469                         pf_print_host(&(*state)->src_node->addr, 0,
470                             (*state)->key[PF_SK_WIRE]->af);
471                 }
472
473                 bzero(&p, sizeof(p));
474                 p.pfra_af = (*state)->key[PF_SK_WIRE]->af;
475                 switch ((*state)->key[PF_SK_WIRE]->af) {
476 #ifdef INET
477                 case AF_INET:
478                         p.pfra_net = 32;
479                         p.pfra_ip4addr = (*state)->src_node->addr.v4;
480                         break;
481 #endif /* INET */
482 #ifdef INET6
483                 case AF_INET6:
484                         p.pfra_net = 128;
485                         p.pfra_ip6addr = (*state)->src_node->addr.v6;
486                         break;
487 #endif /* INET6 */
488                 }
489
490                 pfr_insert_kentry((*state)->rule.ptr->overload_tbl,
491                     &p, time_second);
492
493                 /* kill existing states if that's required. */
494                 if ((*state)->rule.ptr->flush) {
495                         struct pf_state_key *sk;
496                         struct pf_state *st;
497
498                         pf_status.lcounters[LCNT_OVERLOAD_FLUSH]++;
499                         RB_FOREACH(st, pf_state_tree_id, &tree_id) {
500                                 sk = st->key[PF_SK_WIRE];
501                                 /*
502                                  * Kill states from this source.  (Only those
503                                  * from the same rule if PF_FLUSH_GLOBAL is not
504                                  * set)
505                                  */
506                                 if (sk->af ==
507                                     (*state)->key[PF_SK_WIRE]->af &&
508                                     (((*state)->direction == PF_OUT &&
509                                     PF_AEQ(&(*state)->src_node->addr,
510                                         &sk->addr[0], sk->af)) ||
511                                     ((*state)->direction == PF_IN &&
512                                     PF_AEQ(&(*state)->src_node->addr,
513                                         &sk->addr[1], sk->af))) &&
514                                     ((*state)->rule.ptr->flush &
515                                     PF_FLUSH_GLOBAL ||
516                                     (*state)->rule.ptr == st->rule.ptr)) {
517                                         st->timeout = PFTM_PURGE;
518                                         st->src.state = st->dst.state =
519                                             TCPS_CLOSED;
520                                         killed++;
521                                 }
522                         }
523                         if (pf_status.debug >= PF_DEBUG_MISC)
524                                 kprintf(", %u states killed", killed);
525                 }
526                 if (pf_status.debug >= PF_DEBUG_MISC)
527                         kprintf("\n");
528         }
529
530         /* kill this state */
531         (*state)->timeout = PFTM_PURGE;
532         (*state)->src.state = (*state)->dst.state = TCPS_CLOSED;
533         return (1);
534 }
535
536 int
537 pf_insert_src_node(struct pf_src_node **sn, struct pf_rule *rule,
538     struct pf_addr *src, sa_family_t af)
539 {
540         struct pf_src_node      k;
541
542         if (*sn == NULL) {
543                 k.af = af;
544                 PF_ACPY(&k.addr, src, af);
545                 if (rule->rule_flag & PFRULE_RULESRCTRACK ||
546                     rule->rpool.opts & PF_POOL_STICKYADDR)
547                         k.rule.ptr = rule;
548                 else
549                         k.rule.ptr = NULL;
550                 pf_status.scounters[SCNT_SRC_NODE_SEARCH]++;
551                 *sn = RB_FIND(pf_src_tree, &tree_src_tracking, &k);
552         }
553         if (*sn == NULL) {
554                 if (!rule->max_src_nodes ||
555                     rule->src_nodes < rule->max_src_nodes)
556                         (*sn) = pool_get(&pf_src_tree_pl, PR_NOWAIT | PR_ZERO);
557                 else
558                         pf_status.lcounters[LCNT_SRCNODES]++;
559                 if ((*sn) == NULL)
560                         return (-1);
561
562                 pf_init_threshold(&(*sn)->conn_rate,
563                     rule->max_src_conn_rate.limit,
564                     rule->max_src_conn_rate.seconds);
565
566                 (*sn)->af = af;
567                 if (rule->rule_flag & PFRULE_RULESRCTRACK ||
568                     rule->rpool.opts & PF_POOL_STICKYADDR)
569                         (*sn)->rule.ptr = rule;
570                 else
571                         (*sn)->rule.ptr = NULL;
572                 PF_ACPY(&(*sn)->addr, src, af);
573                 if (RB_INSERT(pf_src_tree,
574                     &tree_src_tracking, *sn) != NULL) {
575                         if (pf_status.debug >= PF_DEBUG_MISC) {
576                                 kprintf("pf: src_tree insert failed: ");
577                                 pf_print_host(&(*sn)->addr, 0, af);
578                                 kprintf("\n");
579                         }
580                         pool_put(&pf_src_tree_pl, *sn);
581                         return (-1);
582                 }
583                 (*sn)->creation = time_second;
584                 (*sn)->ruletype = rule->action;
585                 if ((*sn)->rule.ptr != NULL)
586                         (*sn)->rule.ptr->src_nodes++;
587                 pf_status.scounters[SCNT_SRC_NODE_INSERT]++;
588                 pf_status.src_nodes++;
589         } else {
590                 if (rule->max_src_states &&
591                     (*sn)->states >= rule->max_src_states) {
592                         pf_status.lcounters[LCNT_SRCSTATES]++;
593                         return (-1);
594                 }
595         }
596         return (0);
597 }
598
599 /* state table stuff */
600
601 static __inline int
602 pf_state_compare_key(struct pf_state_key *a, struct pf_state_key *b)
603 {
604         int     diff;
605
606         if ((diff = a->proto - b->proto) != 0)
607                 return (diff);
608         if ((diff = a->af - b->af) != 0)
609                 return (diff);
610         switch (a->af) {
611 #ifdef INET
612         case AF_INET:
613                 if (a->addr[0].addr32[0] > b->addr[0].addr32[0])
614                         return (1);
615                 if (a->addr[0].addr32[0] < b->addr[0].addr32[0])
616                         return (-1);
617                 if (a->addr[1].addr32[0] > b->addr[1].addr32[0])
618                         return (1);
619                 if (a->addr[1].addr32[0] < b->addr[1].addr32[0])
620                         return (-1);
621                 break;
622 #endif /* INET */
623 #ifdef INET6
624         case AF_INET6:
625                 if (a->addr[0].addr32[3] > b->addr[0].addr32[3])
626                         return (1);
627                 if (a->addr[0].addr32[3] < b->addr[0].addr32[3])
628                         return (-1);
629                 if (a->addr[1].addr32[3] > b->addr[1].addr32[3])
630                         return (1);
631                 if (a->addr[1].addr32[3] < b->addr[1].addr32[3])
632                         return (-1);
633                 if (a->addr[0].addr32[2] > b->addr[0].addr32[2])
634                         return (1);
635                 if (a->addr[0].addr32[2] < b->addr[0].addr32[2])
636                         return (-1);
637                 if (a->addr[1].addr32[2] > b->addr[1].addr32[2])
638                         return (1);
639                 if (a->addr[1].addr32[2] < b->addr[1].addr32[2])
640                         return (-1);
641                 if (a->addr[0].addr32[1] > b->addr[0].addr32[1])
642                         return (1);
643                 if (a->addr[0].addr32[1] < b->addr[0].addr32[1])
644                         return (-1);
645                 if (a->addr[1].addr32[1] > b->addr[1].addr32[1])
646                         return (1);
647                 if (a->addr[1].addr32[1] < b->addr[1].addr32[1])
648                         return (-1);
649                 if (a->addr[0].addr32[0] > b->addr[0].addr32[0])
650                         return (1);
651                 if (a->addr[0].addr32[0] < b->addr[0].addr32[0])
652                         return (-1);
653                 if (a->addr[1].addr32[0] > b->addr[1].addr32[0])
654                         return (1);
655                 if (a->addr[1].addr32[0] < b->addr[1].addr32[0])
656                         return (-1);
657                 break;
658 #endif /* INET6 */
659         }
660
661         if ((diff = a->port[0] - b->port[0]) != 0)
662                 return (diff);
663         if ((diff = a->port[1] - b->port[1]) != 0)
664                 return (diff);
665
666         return (0);
667 }
668
669 static __inline int
670 pf_state_compare_id(struct pf_state *a, struct pf_state *b)
671 {
672         if (a->id > b->id)
673                 return (1);
674         if (a->id < b->id)
675                 return (-1);
676         if (a->creatorid > b->creatorid)
677                 return (1);
678         if (a->creatorid < b->creatorid)
679                 return (-1);
680
681         return (0);
682 }
683
684 int
685 pf_state_key_attach(struct pf_state_key *sk, struct pf_state *s, int idx)
686 {
687         struct pf_state_item    *si;
688         struct pf_state_key     *cur;
689
690         KKASSERT(s->key[idx] == NULL);  /* XXX handle this? */
691
692         if ((cur = RB_INSERT(pf_state_tree, &pf_statetbl, sk)) != NULL) {
693                 /* key exists. check for same kif, if none, add to key */
694                 TAILQ_FOREACH(si, &cur->states, entry)
695                         if (si->s->kif == s->kif &&
696                             si->s->direction == s->direction) {
697                                 if (pf_status.debug >= PF_DEBUG_MISC) {
698                                         kprintf(
699                                             "pf: %s key attach failed on %s: ",
700                                             (idx == PF_SK_WIRE) ?
701                                             "wire" : "stack",
702                                             s->kif->pfik_name);
703                                         pf_print_state_parts(s,
704                                             (idx == PF_SK_WIRE) ? sk : NULL,
705                                             (idx == PF_SK_STACK) ? sk : NULL);
706                                         kprintf("\n");
707                                 }
708                                 pool_put(&pf_state_key_pl, sk);
709                                 return (-1);    /* collision! */
710                         }
711                 pool_put(&pf_state_key_pl, sk);
712                 s->key[idx] = cur;
713         } else
714                 s->key[idx] = sk;
715
716         if ((si = pool_get(&pf_state_item_pl, PR_NOWAIT)) == NULL) {
717                 pf_state_key_detach(s, idx);
718                 return (-1);
719         }
720         si->s = s;
721
722         /* list is sorted, if-bound states before floating */
723         if (s->kif == pfi_all)
724                 TAILQ_INSERT_TAIL(&s->key[idx]->states, si, entry);
725         else
726                 TAILQ_INSERT_HEAD(&s->key[idx]->states, si, entry);
727         return (0);
728 }
729
730 void
731 pf_detach_state(struct pf_state *s)
732 {
733         if (s->key[PF_SK_WIRE] == s->key[PF_SK_STACK])
734                 s->key[PF_SK_WIRE] = NULL;
735
736         if (s->key[PF_SK_STACK] != NULL)
737                 pf_state_key_detach(s, PF_SK_STACK);
738
739         if (s->key[PF_SK_WIRE] != NULL)
740                 pf_state_key_detach(s, PF_SK_WIRE);
741 }
742
743 void
744 pf_state_key_detach(struct pf_state *s, int idx)
745 {
746         struct pf_state_item    *si;
747
748         si = TAILQ_FIRST(&s->key[idx]->states);
749         while (si && si->s != s)
750             si = TAILQ_NEXT(si, entry);
751
752         if (si) {
753                 TAILQ_REMOVE(&s->key[idx]->states, si, entry);
754                 pool_put(&pf_state_item_pl, si);
755         }
756
757         if (TAILQ_EMPTY(&s->key[idx]->states)) {
758                 RB_REMOVE(pf_state_tree, &pf_statetbl, s->key[idx]);
759                 if (s->key[idx]->reverse)
760                         s->key[idx]->reverse->reverse = NULL;
761                 if (s->key[idx]->inp)
762                         s->key[idx]->inp->inp_pf_sk = NULL;
763                 pool_put(&pf_state_key_pl, s->key[idx]);
764         }
765         s->key[idx] = NULL;
766 }
767
768 struct pf_state_key *
769 pf_alloc_state_key(int pool_flags)
770 {
771         struct pf_state_key     *sk;
772
773         if ((sk = pool_get(&pf_state_key_pl, pool_flags)) == NULL)
774                 return (NULL);
775         TAILQ_INIT(&sk->states);
776
777         return (sk);
778 }
779
780 int
781 pf_state_key_setup(struct pf_pdesc *pd, struct pf_rule *nr,
782         struct pf_state_key **skw, struct pf_state_key **sks,
783         struct pf_state_key **skp, struct pf_state_key **nkp,
784         struct pf_addr *saddr, struct pf_addr *daddr,
785         u_int16_t sport, u_int16_t dport)
786 {
787         KKASSERT((*skp == NULL && *nkp == NULL));
788
789         if ((*skp = pf_alloc_state_key(PR_NOWAIT | PR_ZERO)) == NULL)
790                 return (ENOMEM);
791
792         PF_ACPY(&(*skp)->addr[pd->sidx], saddr, pd->af);
793         PF_ACPY(&(*skp)->addr[pd->didx], daddr, pd->af);
794         (*skp)->port[pd->sidx] = sport;
795         (*skp)->port[pd->didx] = dport;
796         (*skp)->proto = pd->proto;
797         (*skp)->af = pd->af;
798
799         if (nr != NULL) {
800                 if ((*nkp = pf_alloc_state_key(PR_NOWAIT | PR_ZERO)) == NULL)
801                         return (ENOMEM); /* caller must handle cleanup */
802
803                 /* XXX maybe just bcopy and TAILQ_INIT(&(*nkp)->states) */
804                 PF_ACPY(&(*nkp)->addr[0], &(*skp)->addr[0], pd->af);
805                 PF_ACPY(&(*nkp)->addr[1], &(*skp)->addr[1], pd->af);
806                 (*nkp)->port[0] = (*skp)->port[0];
807                 (*nkp)->port[1] = (*skp)->port[1];
808                 (*nkp)->proto = pd->proto;
809                 (*nkp)->af = pd->af;
810         } else
811                 *nkp = *skp;
812
813         if (pd->dir == PF_IN) {
814                 *skw = *skp;
815                 *sks = *nkp;
816         } else {
817                 *sks = *skp;
818                 *skw = *nkp;
819         }
820         return (0);
821 }
822
823
824 int
825 pf_state_insert(struct pfi_kif *kif, struct pf_state_key *skw,
826     struct pf_state_key *sks, struct pf_state *s)
827 {
828         s->kif = kif;
829
830         if (skw == sks) {
831                 if (pf_state_key_attach(skw, s, PF_SK_WIRE))
832                         return (-1);
833                 s->key[PF_SK_STACK] = s->key[PF_SK_WIRE];
834         } else {
835                 if (pf_state_key_attach(skw, s, PF_SK_WIRE)) {
836                         pool_put(&pf_state_key_pl, sks);
837                         return (-1);
838                 }
839                 if (pf_state_key_attach(sks, s, PF_SK_STACK)) {
840                         pf_state_key_detach(s, PF_SK_WIRE);
841                         return (-1);
842                 }
843         }
844
845         if (s->id == 0 && s->creatorid == 0) {
846                 s->id = htobe64(pf_status.stateid++);
847                 s->creatorid = pf_status.hostid;
848         }
849
850         /*
851          * Calculate hash code for altq
852          */
853         s->hash = crc32(s->key[PF_SK_WIRE], sizeof(*sks));
854
855         if (RB_INSERT(pf_state_tree_id, &tree_id, s) != NULL) {
856                 if (pf_status.debug >= PF_DEBUG_MISC) {
857                         kprintf("pf: state insert failed: "
858                             "id: %016jx creatorid: %08x",
859                               (uintmax_t)be64toh(s->id), ntohl(s->creatorid));
860                         if (s->sync_flags & PFSTATE_FROMSYNC)
861                                 kprintf(" (from sync)");
862                         kprintf("\n");
863                 }
864                 pf_detach_state(s);
865                 return (-1);
866         }
867         TAILQ_INSERT_TAIL(&state_list, s, entry_list);
868         pf_status.fcounters[FCNT_STATE_INSERT]++;
869         pf_status.states++;
870         pfi_kif_ref(kif, PFI_KIF_REF_STATE);
871         pfsync_insert_state(s);
872         return (0);
873 }
874
875 struct pf_state *
876 pf_find_state_byid(struct pf_state_cmp *key)
877 {
878         pf_status.fcounters[FCNT_STATE_SEARCH]++;
879
880         return (RB_FIND(pf_state_tree_id, &tree_id, (struct pf_state *)key));
881 }
882
883 struct pf_state *
884 pf_find_state(struct pfi_kif *kif, struct pf_state_key_cmp *key, u_int dir,
885     struct mbuf *m)
886 {
887         struct pf_state_key     *sk;
888         struct pf_state_item    *si;
889
890         pf_status.fcounters[FCNT_STATE_SEARCH]++;
891
892         if (dir == PF_OUT && m->m_pkthdr.pf.statekey &&
893             ((struct pf_state_key *)m->m_pkthdr.pf.statekey)->reverse)
894                 sk = ((struct pf_state_key *)m->m_pkthdr.pf.statekey)->reverse;
895         else {
896                 if ((sk = RB_FIND(pf_state_tree, &pf_statetbl,
897                     (struct pf_state_key *)key)) == NULL)
898                         return (NULL);
899                 if (dir == PF_OUT && m->m_pkthdr.pf.statekey) {
900                         ((struct pf_state_key *)
901                             m->m_pkthdr.pf.statekey)->reverse = sk;
902                         sk->reverse = m->m_pkthdr.pf.statekey;
903                 }
904         }
905
906         if (dir == PF_OUT)
907                 m->m_pkthdr.pf.statekey = NULL;
908
909         /* list is sorted, if-bound states before floating ones */
910         TAILQ_FOREACH(si, &sk->states, entry)
911                 if ((si->s->kif == pfi_all || si->s->kif == kif) &&
912                     sk == (dir == PF_IN ? si->s->key[PF_SK_WIRE] :
913                     si->s->key[PF_SK_STACK]))
914                         return (si->s);
915
916         return (NULL);
917 }
918
919 struct pf_state *
920 pf_find_state_all(struct pf_state_key_cmp *key, u_int dir, int *more)
921 {
922         struct pf_state_key     *sk;
923         struct pf_state_item    *si, *ret = NULL;
924
925         pf_status.fcounters[FCNT_STATE_SEARCH]++;
926
927         sk = RB_FIND(pf_state_tree, &pf_statetbl, (struct pf_state_key *)key);
928
929         if (sk != NULL) {
930                 TAILQ_FOREACH(si, &sk->states, entry)
931                         if (dir == PF_INOUT ||
932                             (sk == (dir == PF_IN ? si->s->key[PF_SK_WIRE] :
933                             si->s->key[PF_SK_STACK]))) {
934                                 if (more == NULL)
935                                         return (si->s);
936
937                                 if (ret)
938                                         (*more)++;
939                                 else
940                                         ret = si;
941                         }
942         }
943         return (ret ? ret->s : NULL);
944 }
945
946 /* END state table stuff */
947
948
949 void
950 pf_purge_thread(void *v)
951 {
952         int nloops = 0;
953         int locked = 0;
954
955         lwkt_gettoken(&pf_token);
956         for (;;) {
957                 tsleep(pf_purge_thread, PWAIT, "pftm", 1 * hz);
958
959                 lockmgr(&pf_consistency_lock, LK_EXCLUSIVE);
960
961                 if (pf_end_threads) {
962                         pf_purge_expired_states(pf_status.states, 1);
963                         pf_purge_expired_fragments();
964                         pf_purge_expired_src_nodes(1);
965                         pf_end_threads++;
966
967                         lockmgr(&pf_consistency_lock, LK_RELEASE);
968                         wakeup(pf_purge_thread);
969                         kthread_exit();
970                 }
971                 crit_enter();
972
973                 /* process a fraction of the state table every second */
974                 if(!pf_purge_expired_states(1 + (pf_status.states
975                     / pf_default_rule.timeout[PFTM_INTERVAL]), 0)) {
976
977                         pf_purge_expired_states(1 + (pf_status.states
978                             / pf_default_rule.timeout[PFTM_INTERVAL]), 1);
979                 }
980
981                 /* purge other expired types every PFTM_INTERVAL seconds */
982                 if (++nloops >= pf_default_rule.timeout[PFTM_INTERVAL]) {
983                         pf_purge_expired_fragments();
984                         if (!pf_purge_expired_src_nodes(locked)) {
985                                 pf_purge_expired_src_nodes(1);
986                         }
987                         nloops = 0;
988                 }
989                 crit_exit();
990                 lockmgr(&pf_consistency_lock, LK_RELEASE);
991         }
992         lwkt_reltoken(&pf_token);
993 }
994
995 u_int32_t
996 pf_state_expires(const struct pf_state *state)
997 {
998         u_int32_t       timeout;
999         u_int32_t       start;
1000         u_int32_t       end;
1001         u_int32_t       states;
1002
1003         /* handle all PFTM_* > PFTM_MAX here */
1004         if (state->timeout == PFTM_PURGE)
1005                 return (time_second);
1006         if (state->timeout == PFTM_UNTIL_PACKET)
1007                 return (0);
1008         KKASSERT(state->timeout != PFTM_UNLINKED);
1009         KKASSERT(state->timeout < PFTM_MAX);
1010         timeout = state->rule.ptr->timeout[state->timeout];
1011         if (!timeout)
1012                 timeout = pf_default_rule.timeout[state->timeout];
1013         start = state->rule.ptr->timeout[PFTM_ADAPTIVE_START];
1014         if (start) {
1015                 end = state->rule.ptr->timeout[PFTM_ADAPTIVE_END];
1016                 states = state->rule.ptr->states_cur;
1017         } else {
1018                 start = pf_default_rule.timeout[PFTM_ADAPTIVE_START];
1019                 end = pf_default_rule.timeout[PFTM_ADAPTIVE_END];
1020                 states = pf_status.states;
1021         }
1022         if (end && states > start && start < end) {
1023                 if (states < end)
1024                         return (state->expire + timeout * (end - states) /
1025                             (end - start));
1026                 else
1027                         return (time_second);
1028         }
1029         return (state->expire + timeout);
1030 }
1031
1032 int
1033 pf_purge_expired_src_nodes(int waslocked)
1034 {
1035          struct pf_src_node             *cur, *next;
1036          int                             locked = waslocked;
1037
1038          for (cur = RB_MIN(pf_src_tree, &tree_src_tracking); cur; cur = next) {
1039                  next = RB_NEXT(pf_src_tree, &tree_src_tracking, cur);
1040
1041                  if (cur->states <= 0 && cur->expire <= time_second) {
1042                          if (! locked) {
1043                                  lockmgr(&pf_consistency_lock, LK_EXCLUSIVE);
1044                                  next = RB_NEXT(pf_src_tree,
1045                                      &tree_src_tracking, cur);
1046                                  locked = 1;
1047                          }
1048                          if (cur->rule.ptr != NULL) {
1049                                  cur->rule.ptr->src_nodes--;
1050                                  if (cur->rule.ptr->states_cur <= 0 &&
1051                                      cur->rule.ptr->max_src_nodes <= 0)
1052                                          pf_rm_rule(NULL, cur->rule.ptr);
1053                          }
1054                          RB_REMOVE(pf_src_tree, &tree_src_tracking, cur);
1055                          pf_status.scounters[SCNT_SRC_NODE_REMOVALS]++;
1056                          pf_status.src_nodes--;
1057                          pool_put(&pf_src_tree_pl, cur);
1058                  }
1059          }
1060
1061          if (locked && !waslocked)
1062                 lockmgr(&pf_consistency_lock, LK_RELEASE);
1063         return(1);
1064 }
1065
1066 void
1067 pf_src_tree_remove_state(struct pf_state *s)
1068 {
1069         u_int32_t timeout;
1070
1071         if (s->src_node != NULL) {
1072                 if (s->src.tcp_est)
1073                         --s->src_node->conn;
1074                 if (--s->src_node->states <= 0) {
1075                         timeout = s->rule.ptr->timeout[PFTM_SRC_NODE];
1076                         if (!timeout)
1077                                 timeout =
1078                                     pf_default_rule.timeout[PFTM_SRC_NODE];
1079                         s->src_node->expire = time_second + timeout;
1080                 }
1081         }
1082         if (s->nat_src_node != s->src_node && s->nat_src_node != NULL) {
1083                 if (--s->nat_src_node->states <= 0) {
1084                         timeout = s->rule.ptr->timeout[PFTM_SRC_NODE];
1085                         if (!timeout)
1086                                 timeout =
1087                                     pf_default_rule.timeout[PFTM_SRC_NODE];
1088                         s->nat_src_node->expire = time_second + timeout;
1089                 }
1090         }
1091         s->src_node = s->nat_src_node = NULL;
1092 }
1093
1094 /* callers should be at crit_enter() */
1095 void
1096 pf_unlink_state(struct pf_state *cur)
1097 {
1098         if (cur->src.state == PF_TCPS_PROXY_DST) {
1099                 /* XXX wire key the right one? */
1100                 pf_send_tcp(cur->rule.ptr, cur->key[PF_SK_WIRE]->af,
1101                     &cur->key[PF_SK_WIRE]->addr[1],
1102                     &cur->key[PF_SK_WIRE]->addr[0],
1103                     cur->key[PF_SK_WIRE]->port[1],
1104                     cur->key[PF_SK_WIRE]->port[0],
1105                     cur->src.seqhi, cur->src.seqlo + 1,
1106                     TH_RST|TH_ACK, 0, 0, 0, 1, cur->tag, NULL, NULL);
1107         }
1108         RB_REMOVE(pf_state_tree_id, &tree_id, cur);
1109         if (cur->creatorid == pf_status.hostid)
1110                 pfsync_delete_state(cur);
1111         cur->timeout = PFTM_UNLINKED;
1112         pf_src_tree_remove_state(cur);
1113         pf_detach_state(cur);
1114 }
1115
1116 static struct pf_state  *purge_cur;
1117
1118 /* callers should be at crit_enter() and hold the
1119  * write_lock on pf_consistency_lock */
1120 void
1121 pf_free_state(struct pf_state *cur)
1122 {
1123         if (pfsyncif != NULL &&
1124             (pfsyncif->sc_bulk_send_next == cur ||
1125             pfsyncif->sc_bulk_terminator == cur))
1126                 return;
1127         KKASSERT(cur->timeout == PFTM_UNLINKED);
1128         if (--cur->rule.ptr->states_cur <= 0 &&
1129             cur->rule.ptr->src_nodes <= 0)
1130                 pf_rm_rule(NULL, cur->rule.ptr);
1131         if (cur->nat_rule.ptr != NULL)
1132                 if (--cur->nat_rule.ptr->states_cur <= 0 &&
1133                         cur->nat_rule.ptr->src_nodes <= 0)
1134                         pf_rm_rule(NULL, cur->nat_rule.ptr);
1135         if (cur->anchor.ptr != NULL)
1136                 if (--cur->anchor.ptr->states_cur <= 0)
1137                         pf_rm_rule(NULL, cur->anchor.ptr);
1138         pf_normalize_tcp_cleanup(cur);
1139         pfi_kif_unref(cur->kif, PFI_KIF_REF_STATE);
1140
1141         /*
1142          * We may be freeing pf_purge_expired_states()'s saved scan entry,
1143          * adjust it if necessary.
1144          */
1145         if (purge_cur == cur) {
1146                 kprintf("PURGE CONFLICT\n");
1147                 purge_cur = TAILQ_NEXT(purge_cur, entry_list);
1148         }
1149         TAILQ_REMOVE(&state_list, cur, entry_list);
1150         if (cur->tag)
1151                 pf_tag_unref(cur->tag);
1152         pool_put(&pf_state_pl, cur);
1153         pf_status.fcounters[FCNT_STATE_REMOVALS]++;
1154         pf_status.states--;
1155 }
1156
1157 int
1158 pf_purge_expired_states(u_int32_t maxcheck, int waslocked)
1159 {
1160         struct pf_state         *cur;
1161         int                      locked = waslocked;
1162
1163         while (maxcheck--) {
1164                 /*
1165                  * Wrap to start of list when we hit the end
1166                  */
1167                 cur = purge_cur;
1168                 if (cur == NULL) {
1169                         cur = TAILQ_FIRST(&state_list);
1170                         if (cur == NULL)
1171                                 break;  /* list empty */
1172                 }
1173
1174                 /*
1175                  * Setup next (purge_cur) while we process this one.  If we block and
1176                  * something else deletes purge_cur, pf_free_state() will adjust it further
1177                  * ahead.
1178                  */
1179                 purge_cur = TAILQ_NEXT(cur, entry_list);
1180
1181                 if (cur->timeout == PFTM_UNLINKED) {
1182                         /* free unlinked state */
1183                         if (! locked) {
1184                                 lockmgr(&pf_consistency_lock, LK_EXCLUSIVE);
1185                                 locked = 1;
1186                         }
1187                         pf_free_state(cur);
1188                 } else if (pf_state_expires(cur) <= time_second) {
1189                         /* unlink and free expired state */
1190                         pf_unlink_state(cur);
1191                         if (! locked) {
1192                                 if (!lockmgr(&pf_consistency_lock, LK_EXCLUSIVE))
1193                                         return (0);
1194                                 locked = 1;
1195                         }
1196                         pf_free_state(cur);
1197                 }
1198         }
1199
1200         if (locked)
1201                 lockmgr(&pf_consistency_lock, LK_RELEASE);
1202         return (1);
1203 }
1204
1205 int
1206 pf_tbladdr_setup(struct pf_ruleset *rs, struct pf_addr_wrap *aw)
1207 {
1208         if (aw->type != PF_ADDR_TABLE)
1209                 return (0);
1210         if ((aw->p.tbl = pfr_attach_table(rs, aw->v.tblname)) == NULL)
1211                 return (1);
1212         return (0);
1213 }
1214
1215 void
1216 pf_tbladdr_remove(struct pf_addr_wrap *aw)
1217 {
1218         if (aw->type != PF_ADDR_TABLE || aw->p.tbl == NULL)
1219                 return;
1220         pfr_detach_table(aw->p.tbl);
1221         aw->p.tbl = NULL;
1222 }
1223
1224 void
1225 pf_tbladdr_copyout(struct pf_addr_wrap *aw)
1226 {
1227         struct pfr_ktable *kt = aw->p.tbl;
1228
1229         if (aw->type != PF_ADDR_TABLE || kt == NULL)
1230                 return;
1231         if (!(kt->pfrkt_flags & PFR_TFLAG_ACTIVE) && kt->pfrkt_root != NULL)
1232                 kt = kt->pfrkt_root;
1233         aw->p.tbl = NULL;
1234         aw->p.tblcnt = (kt->pfrkt_flags & PFR_TFLAG_ACTIVE) ?
1235                 kt->pfrkt_cnt : -1;
1236 }
1237
1238 void
1239 pf_print_host(struct pf_addr *addr, u_int16_t p, sa_family_t af)
1240 {
1241         switch (af) {
1242 #ifdef INET
1243         case AF_INET: {
1244                 u_int32_t a = ntohl(addr->addr32[0]);
1245                 kprintf("%u.%u.%u.%u", (a>>24)&255, (a>>16)&255,
1246                     (a>>8)&255, a&255);
1247                 if (p) {
1248                         p = ntohs(p);
1249                         kprintf(":%u", p);
1250                 }
1251                 break;
1252         }
1253 #endif /* INET */
1254 #ifdef INET6
1255         case AF_INET6: {
1256                 u_int16_t b;
1257                 u_int8_t i, curstart = 255, curend = 0,
1258                     maxstart = 0, maxend = 0;
1259                 for (i = 0; i < 8; i++) {
1260                         if (!addr->addr16[i]) {
1261                                 if (curstart == 255)
1262                                         curstart = i;
1263                                 else
1264                                         curend = i;
1265                         } else {
1266                                 if (curstart) {
1267                                         if ((curend - curstart) >
1268                                             (maxend - maxstart)) {
1269                                                 maxstart = curstart;
1270                                                 maxend = curend;
1271                                                 curstart = 255;
1272                                         }
1273                                 }
1274                         }
1275                 }
1276                 for (i = 0; i < 8; i++) {
1277                         if (i >= maxstart && i <= maxend) {
1278                                 if (maxend != 7) {
1279                                         if (i == maxstart)
1280                                                 kprintf(":");
1281                                 } else {
1282                                         if (i == maxend)
1283                                                 kprintf(":");
1284                                 }
1285                         } else {
1286                                 b = ntohs(addr->addr16[i]);
1287                                 kprintf("%x", b);
1288                                 if (i < 7)
1289                                         kprintf(":");
1290                         }
1291                 }
1292                 if (p) {
1293                         p = ntohs(p);
1294                         kprintf("[%u]", p);
1295                 }
1296                 break;
1297         }
1298 #endif /* INET6 */
1299         }
1300 }
1301
1302 void
1303 pf_print_state(struct pf_state *s)
1304 {
1305         pf_print_state_parts(s, NULL, NULL);
1306 }
1307
1308 void
1309 pf_print_state_parts(struct pf_state *s,
1310     struct pf_state_key *skwp, struct pf_state_key *sksp)
1311 {
1312         struct pf_state_key *skw, *sks;
1313         u_int8_t proto, dir;
1314
1315         /* Do our best to fill these, but they're skipped if NULL */
1316         skw = skwp ? skwp : (s ? s->key[PF_SK_WIRE] : NULL);
1317         sks = sksp ? sksp : (s ? s->key[PF_SK_STACK] : NULL);
1318         proto = skw ? skw->proto : (sks ? sks->proto : 0);
1319         dir = s ? s->direction : 0;
1320
1321         switch (proto) {
1322         case IPPROTO_TCP:
1323                 kprintf("TCP ");
1324                 break;
1325         case IPPROTO_UDP:
1326                 kprintf("UDP ");
1327                 break;
1328         case IPPROTO_ICMP:
1329                 kprintf("ICMP ");
1330                 break;
1331         case IPPROTO_ICMPV6:
1332                 kprintf("ICMPV6 ");
1333                 break;
1334         default:
1335                 kprintf("%u ", skw->proto);
1336                 break;
1337         }
1338         switch (dir) {
1339         case PF_IN:
1340                 kprintf(" in");
1341                 break;
1342         case PF_OUT:
1343                 kprintf(" out");
1344                 break;
1345         }
1346         if (skw) {
1347                 kprintf(" wire: ");
1348                 pf_print_host(&skw->addr[0], skw->port[0], skw->af);
1349                 kprintf(" ");
1350                 pf_print_host(&skw->addr[1], skw->port[1], skw->af);
1351         }
1352         if (sks) {
1353                 kprintf(" stack: ");
1354                 if (sks != skw) {
1355                         pf_print_host(&sks->addr[0], sks->port[0], sks->af);
1356                         kprintf(" ");
1357                         pf_print_host(&sks->addr[1], sks->port[1], sks->af);
1358                 } else
1359                         kprintf("-");
1360         }
1361         if (s) {
1362                 if (proto == IPPROTO_TCP) {
1363                         kprintf(" [lo=%u high=%u win=%u modulator=%u",
1364                             s->src.seqlo, s->src.seqhi,
1365                             s->src.max_win, s->src.seqdiff);
1366                         if (s->src.wscale && s->dst.wscale)
1367                                 kprintf(" wscale=%u",
1368                                     s->src.wscale & PF_WSCALE_MASK);
1369                         kprintf("]");
1370                         kprintf(" [lo=%u high=%u win=%u modulator=%u",
1371                             s->dst.seqlo, s->dst.seqhi,
1372                             s->dst.max_win, s->dst.seqdiff);
1373                         if (s->src.wscale && s->dst.wscale)
1374                                 kprintf(" wscale=%u",
1375                                 s->dst.wscale & PF_WSCALE_MASK);
1376                         kprintf("]");
1377                 }
1378                 kprintf(" %u:%u", s->src.state, s->dst.state);
1379         }
1380 }
1381
1382 void
1383 pf_print_flags(u_int8_t f)
1384 {
1385         if (f)
1386                 kprintf(" ");
1387         if (f & TH_FIN)
1388                 kprintf("F");
1389         if (f & TH_SYN)
1390                 kprintf("S");
1391         if (f & TH_RST)
1392                 kprintf("R");
1393         if (f & TH_PUSH)
1394                 kprintf("P");
1395         if (f & TH_ACK)
1396                 kprintf("A");
1397         if (f & TH_URG)
1398                 kprintf("U");
1399         if (f & TH_ECE)
1400                 kprintf("E");
1401         if (f & TH_CWR)
1402                 kprintf("W");
1403 }
1404
1405 #define PF_SET_SKIP_STEPS(i)                                    \
1406         do {                                                    \
1407                 while (head[i] != cur) {                        \
1408                         head[i]->skip[i].ptr = cur;             \
1409                         head[i] = TAILQ_NEXT(head[i], entries); \
1410                 }                                               \
1411         } while (0)
1412
1413 void
1414 pf_calc_skip_steps(struct pf_rulequeue *rules)
1415 {
1416         struct pf_rule *cur, *prev, *head[PF_SKIP_COUNT];
1417         int i;
1418
1419         cur = TAILQ_FIRST(rules);
1420         prev = cur;
1421         for (i = 0; i < PF_SKIP_COUNT; ++i)
1422                 head[i] = cur;
1423         while (cur != NULL) {
1424
1425                 if (cur->kif != prev->kif || cur->ifnot != prev->ifnot)
1426                         PF_SET_SKIP_STEPS(PF_SKIP_IFP);
1427                 if (cur->direction != prev->direction)
1428                         PF_SET_SKIP_STEPS(PF_SKIP_DIR);
1429                 if (cur->af != prev->af)
1430                         PF_SET_SKIP_STEPS(PF_SKIP_AF);
1431                 if (cur->proto != prev->proto)
1432                         PF_SET_SKIP_STEPS(PF_SKIP_PROTO);
1433                 if (cur->src.neg != prev->src.neg ||
1434                     pf_addr_wrap_neq(&cur->src.addr, &prev->src.addr))
1435                         PF_SET_SKIP_STEPS(PF_SKIP_SRC_ADDR);
1436                 if (cur->src.port[0] != prev->src.port[0] ||
1437                     cur->src.port[1] != prev->src.port[1] ||
1438                     cur->src.port_op != prev->src.port_op)
1439                         PF_SET_SKIP_STEPS(PF_SKIP_SRC_PORT);
1440                 if (cur->dst.neg != prev->dst.neg ||
1441                     pf_addr_wrap_neq(&cur->dst.addr, &prev->dst.addr))
1442                         PF_SET_SKIP_STEPS(PF_SKIP_DST_ADDR);
1443                 if (cur->dst.port[0] != prev->dst.port[0] ||
1444                     cur->dst.port[1] != prev->dst.port[1] ||
1445                     cur->dst.port_op != prev->dst.port_op)
1446                         PF_SET_SKIP_STEPS(PF_SKIP_DST_PORT);
1447
1448                 prev = cur;
1449                 cur = TAILQ_NEXT(cur, entries);
1450         }
1451         for (i = 0; i < PF_SKIP_COUNT; ++i)
1452                 PF_SET_SKIP_STEPS(i);
1453 }
1454
1455 int
1456 pf_addr_wrap_neq(struct pf_addr_wrap *aw1, struct pf_addr_wrap *aw2)
1457 {
1458         if (aw1->type != aw2->type)
1459                 return (1);
1460         switch (aw1->type) {
1461         case PF_ADDR_ADDRMASK:
1462         case PF_ADDR_RANGE:
1463                 if (PF_ANEQ(&aw1->v.a.addr, &aw2->v.a.addr, 0))
1464                         return (1);
1465                 if (PF_ANEQ(&aw1->v.a.mask, &aw2->v.a.mask, 0))
1466                         return (1);
1467                 return (0);
1468         case PF_ADDR_DYNIFTL:
1469                 return (aw1->p.dyn->pfid_kt != aw2->p.dyn->pfid_kt);
1470         case PF_ADDR_NOROUTE:
1471         case PF_ADDR_URPFFAILED:
1472                 return (0);
1473         case PF_ADDR_TABLE:
1474                 return (aw1->p.tbl != aw2->p.tbl);
1475         case PF_ADDR_RTLABEL:
1476                 return (aw1->v.rtlabel != aw2->v.rtlabel);
1477         default:
1478                 kprintf("invalid address type: %d\n", aw1->type);
1479                 return (1);
1480         }
1481 }
1482
1483 u_int16_t
1484 pf_cksum_fixup(u_int16_t cksum, u_int16_t old, u_int16_t new, u_int8_t udp)
1485 {
1486         u_int32_t       l;
1487
1488         if (udp && !cksum)
1489                 return (0x0000);
1490         l = cksum + old - new;
1491         l = (l >> 16) + (l & 65535);
1492         l = l & 65535;
1493         if (udp && !l)
1494                 return (0xFFFF);
1495         return (l);
1496 }
1497
1498 void
1499 pf_change_ap(struct pf_addr *a, u_int16_t *p, u_int16_t *ic, u_int16_t *pc,
1500     struct pf_addr *an, u_int16_t pn, u_int8_t u, sa_family_t af)
1501 {
1502         struct pf_addr  ao;
1503         u_int16_t       po = *p;
1504
1505         PF_ACPY(&ao, a, af);
1506         PF_ACPY(a, an, af);
1507
1508         *p = pn;
1509
1510         switch (af) {
1511 #ifdef INET
1512         case AF_INET:
1513                 *ic = pf_cksum_fixup(pf_cksum_fixup(*ic,
1514                     ao.addr16[0], an->addr16[0], 0),
1515                     ao.addr16[1], an->addr16[1], 0);
1516                 *p = pn;
1517                 *pc = pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(*pc,
1518                     ao.addr16[0], an->addr16[0], u),
1519                     ao.addr16[1], an->addr16[1], u),
1520                     po, pn, u);
1521                 break;
1522 #endif /* INET */
1523 #ifdef INET6
1524         case AF_INET6:
1525                 *pc = pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1526                     pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1527                     pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(*pc,
1528                     ao.addr16[0], an->addr16[0], u),
1529                     ao.addr16[1], an->addr16[1], u),
1530                     ao.addr16[2], an->addr16[2], u),
1531                     ao.addr16[3], an->addr16[3], u),
1532                     ao.addr16[4], an->addr16[4], u),
1533                     ao.addr16[5], an->addr16[5], u),
1534                     ao.addr16[6], an->addr16[6], u),
1535                     ao.addr16[7], an->addr16[7], u),
1536                     po, pn, u);
1537                 break;
1538 #endif /* INET6 */
1539         }
1540 }
1541
1542
1543 /* Changes a u_int32_t.  Uses a void * so there are no align restrictions */
1544 void
1545 pf_change_a(void *a, u_int16_t *c, u_int32_t an, u_int8_t u)
1546 {
1547         u_int32_t       ao;
1548
1549         memcpy(&ao, a, sizeof(ao));
1550         memcpy(a, &an, sizeof(u_int32_t));
1551         *c = pf_cksum_fixup(pf_cksum_fixup(*c, ao / 65536, an / 65536, u),
1552             ao % 65536, an % 65536, u);
1553 }
1554
1555 #ifdef INET6
1556 void
1557 pf_change_a6(struct pf_addr *a, u_int16_t *c, struct pf_addr *an, u_int8_t u)
1558 {
1559         struct pf_addr  ao;
1560
1561         PF_ACPY(&ao, a, AF_INET6);
1562         PF_ACPY(a, an, AF_INET6);
1563
1564         *c = pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1565             pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1566             pf_cksum_fixup(pf_cksum_fixup(*c,
1567             ao.addr16[0], an->addr16[0], u),
1568             ao.addr16[1], an->addr16[1], u),
1569             ao.addr16[2], an->addr16[2], u),
1570             ao.addr16[3], an->addr16[3], u),
1571             ao.addr16[4], an->addr16[4], u),
1572             ao.addr16[5], an->addr16[5], u),
1573             ao.addr16[6], an->addr16[6], u),
1574             ao.addr16[7], an->addr16[7], u);
1575 }
1576 #endif /* INET6 */
1577
1578 void
1579 pf_change_icmp(struct pf_addr *ia, u_int16_t *ip, struct pf_addr *oa,
1580     struct pf_addr *na, u_int16_t np, u_int16_t *pc, u_int16_t *h2c,
1581     u_int16_t *ic, u_int16_t *hc, u_int8_t u, sa_family_t af)
1582 {
1583         struct pf_addr  oia, ooa;
1584
1585         PF_ACPY(&oia, ia, af);
1586         if (oa)
1587                 PF_ACPY(&ooa, oa, af);
1588
1589         /* Change inner protocol port, fix inner protocol checksum. */
1590         if (ip != NULL) {
1591                 u_int16_t       oip = *ip;
1592                 u_int32_t       opc = 0;
1593
1594                 if (pc != NULL)
1595                         opc = *pc;
1596                 *ip = np;
1597                 if (pc != NULL)
1598                         *pc = pf_cksum_fixup(*pc, oip, *ip, u);
1599                 *ic = pf_cksum_fixup(*ic, oip, *ip, 0);
1600                 if (pc != NULL)
1601                         *ic = pf_cksum_fixup(*ic, opc, *pc, 0);
1602         }
1603         /* Change inner ip address, fix inner ip and icmp checksums. */
1604         PF_ACPY(ia, na, af);
1605         switch (af) {
1606 #ifdef INET
1607         case AF_INET: {
1608                 u_int32_t        oh2c = *h2c;
1609
1610                 *h2c = pf_cksum_fixup(pf_cksum_fixup(*h2c,
1611                     oia.addr16[0], ia->addr16[0], 0),
1612                     oia.addr16[1], ia->addr16[1], 0);
1613                 *ic = pf_cksum_fixup(pf_cksum_fixup(*ic,
1614                     oia.addr16[0], ia->addr16[0], 0),
1615                     oia.addr16[1], ia->addr16[1], 0);
1616                 *ic = pf_cksum_fixup(*ic, oh2c, *h2c, 0);
1617                 break;
1618         }
1619 #endif /* INET */
1620 #ifdef INET6
1621         case AF_INET6:
1622                 *ic = pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1623                     pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1624                     pf_cksum_fixup(pf_cksum_fixup(*ic,
1625                     oia.addr16[0], ia->addr16[0], u),
1626                     oia.addr16[1], ia->addr16[1], u),
1627                     oia.addr16[2], ia->addr16[2], u),
1628                     oia.addr16[3], ia->addr16[3], u),
1629                     oia.addr16[4], ia->addr16[4], u),
1630                     oia.addr16[5], ia->addr16[5], u),
1631                     oia.addr16[6], ia->addr16[6], u),
1632                     oia.addr16[7], ia->addr16[7], u);
1633                 break;
1634 #endif /* INET6 */
1635         }
1636         /* Outer ip address, fix outer ip or icmpv6 checksum, if necessary. */
1637         if (oa) {
1638                 PF_ACPY(oa, na, af);
1639                 switch (af) {
1640 #ifdef INET
1641                 case AF_INET:
1642                         *hc = pf_cksum_fixup(pf_cksum_fixup(*hc,
1643                             ooa.addr16[0], oa->addr16[0], 0),
1644                             ooa.addr16[1], oa->addr16[1], 0);
1645                         break;
1646 #endif /* INET */
1647 #ifdef INET6
1648                 case AF_INET6:
1649                         *ic = pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1650                             pf_cksum_fixup(pf_cksum_fixup(pf_cksum_fixup(
1651                             pf_cksum_fixup(pf_cksum_fixup(*ic,
1652                             ooa.addr16[0], oa->addr16[0], u),
1653                             ooa.addr16[1], oa->addr16[1], u),
1654                             ooa.addr16[2], oa->addr16[2], u),
1655                             ooa.addr16[3], oa->addr16[3], u),
1656                             ooa.addr16[4], oa->addr16[4], u),
1657                             ooa.addr16[5], oa->addr16[5], u),
1658                             ooa.addr16[6], oa->addr16[6], u),
1659                             ooa.addr16[7], oa->addr16[7], u);
1660                         break;
1661 #endif /* INET6 */
1662                 }
1663         }
1664 }
1665
1666
1667 /*
1668  * Need to modulate the sequence numbers in the TCP SACK option
1669  * (credits to Krzysztof Pfaff for report and patch)
1670  */
1671 int
1672 pf_modulate_sack(struct mbuf *m, int off, struct pf_pdesc *pd,
1673     struct tcphdr *th, struct pf_state_peer *dst)
1674 {
1675         int hlen = (th->th_off << 2) - sizeof(*th), thoptlen = hlen;
1676         u_int8_t opts[TCP_MAXOLEN], *opt = opts;
1677         int copyback = 0, i, olen;
1678         struct raw_sackblock sack;
1679
1680 #define TCPOLEN_SACKLEN (TCPOLEN_SACK + 2)
1681         if (hlen < TCPOLEN_SACKLEN ||
1682             !pf_pull_hdr(m, off + sizeof(*th), opts, hlen, NULL, NULL, pd->af))
1683                 return 0;
1684
1685         while (hlen >= TCPOLEN_SACKLEN) {
1686                 olen = opt[1];
1687                 switch (*opt) {
1688                 case TCPOPT_EOL:        /* FALLTHROUGH */
1689                 case TCPOPT_NOP:
1690                         opt++;
1691                         hlen--;
1692                         break;
1693                 case TCPOPT_SACK:
1694                         if (olen > hlen)
1695                                 olen = hlen;
1696                         if (olen >= TCPOLEN_SACKLEN) {
1697                                 for (i = 2; i + TCPOLEN_SACK <= olen;
1698                                     i += TCPOLEN_SACK) {
1699                                         memcpy(&sack, &opt[i], sizeof(sack));
1700                                         pf_change_a(&sack.rblk_start, &th->th_sum,
1701                                             htonl(ntohl(sack.rblk_start) -
1702                                             dst->seqdiff), 0);
1703                                         pf_change_a(&sack.rblk_end, &th->th_sum,
1704                                             htonl(ntohl(sack.rblk_end) -
1705                                             dst->seqdiff), 0);
1706                                         memcpy(&opt[i], &sack, sizeof(sack));
1707                                 }
1708                                 copyback = 1;
1709                         }
1710                         /* FALLTHROUGH */
1711                 default:
1712                         if (olen < 2)
1713                                 olen = 2;
1714                         hlen -= olen;
1715                         opt += olen;
1716                 }
1717         }
1718
1719         if (copyback)
1720                 m_copyback(m, off + sizeof(*th), thoptlen, opts);
1721         return (copyback);
1722 }
1723
1724 void
1725 pf_send_tcp(const struct pf_rule *r, sa_family_t af,
1726     const struct pf_addr *saddr, const struct pf_addr *daddr,
1727     u_int16_t sport, u_int16_t dport, u_int32_t seq, u_int32_t ack,
1728     u_int8_t flags, u_int16_t win, u_int16_t mss, u_int8_t ttl, int tag,
1729     u_int16_t rtag, struct ether_header *eh, struct ifnet *ifp)
1730 {
1731         struct mbuf     *m;
1732         int              len = 0, tlen;
1733 #ifdef INET
1734         struct ip       *h = NULL;
1735 #endif /* INET */
1736 #ifdef INET6
1737         struct ip6_hdr  *h6 = NULL;
1738 #endif /* INET6 */
1739         struct tcphdr   *th = NULL;
1740         char            *opt;
1741
1742         ASSERT_LWKT_TOKEN_HELD(&pf_token);
1743
1744         /* maximum segment size tcp option */
1745         tlen = sizeof(struct tcphdr);
1746         if (mss)
1747                 tlen += 4;
1748
1749         switch (af) {
1750 #ifdef INET
1751         case AF_INET:
1752                 len = sizeof(struct ip) + tlen;
1753                 break;
1754 #endif /* INET */
1755 #ifdef INET6
1756         case AF_INET6:
1757                 len = sizeof(struct ip6_hdr) + tlen;
1758                 break;
1759 #endif /* INET6 */
1760         }
1761
1762         /*
1763          * Create outgoing mbuf.
1764          *
1765          * DragonFly doesn't zero the auxillary pkghdr fields, only fw_flags,
1766          * so make sure pf.flags is clear.
1767          */
1768         m = m_gethdr(MB_DONTWAIT, MT_HEADER);
1769         if (m == NULL) {
1770                 return;
1771         }
1772         if (tag)
1773                 m->m_pkthdr.fw_flags |= PF_MBUF_TAGGED;
1774         m->m_pkthdr.pf.flags = 0;
1775         m->m_pkthdr.pf.tag = rtag;
1776         /* XXX Recheck when upgrading to > 4.4 */
1777         m->m_pkthdr.pf.statekey = NULL;
1778         if (r != NULL && r->rtableid >= 0)
1779                 m->m_pkthdr.pf.rtableid = r->rtableid;
1780
1781 #ifdef ALTQ
1782         if (r != NULL && r->qid) {
1783                 m->m_pkthdr.fw_flags |= PF_MBUF_STRUCTURE;
1784                 m->m_pkthdr.pf.qid = r->qid;
1785                 m->m_pkthdr.pf.ecn_af = af;
1786                 m->m_pkthdr.pf.hdr = mtod(m, struct ip *);
1787         }
1788 #endif /* ALTQ */
1789         m->m_data += max_linkhdr;
1790         m->m_pkthdr.len = m->m_len = len;
1791         m->m_pkthdr.rcvif = NULL;
1792         bzero(m->m_data, len);
1793         switch (af) {
1794 #ifdef INET
1795         case AF_INET:
1796                 h = mtod(m, struct ip *);
1797
1798                 /* IP header fields included in the TCP checksum */
1799                 h->ip_p = IPPROTO_TCP;
1800                 h->ip_len = tlen;
1801                 h->ip_src.s_addr = saddr->v4.s_addr;
1802                 h->ip_dst.s_addr = daddr->v4.s_addr;
1803
1804                 th = (struct tcphdr *)((caddr_t)h + sizeof(struct ip));
1805                 break;
1806 #endif /* INET */
1807 #ifdef INET6
1808         case AF_INET6:
1809                 h6 = mtod(m, struct ip6_hdr *);
1810
1811                 /* IP header fields included in the TCP checksum */
1812                 h6->ip6_nxt = IPPROTO_TCP;
1813                 h6->ip6_plen = htons(tlen);
1814                 memcpy(&h6->ip6_src, &saddr->v6, sizeof(struct in6_addr));
1815                 memcpy(&h6->ip6_dst, &daddr->v6, sizeof(struct in6_addr));
1816
1817                 th = (struct tcphdr *)((caddr_t)h6 + sizeof(struct ip6_hdr));
1818                 break;
1819 #endif /* INET6 */
1820         }
1821
1822         /* TCP header */
1823         th->th_sport = sport;
1824         th->th_dport = dport;
1825         th->th_seq = htonl(seq);
1826         th->th_ack = htonl(ack);
1827         th->th_off = tlen >> 2;
1828         th->th_flags = flags;
1829         th->th_win = htons(win);
1830
1831         if (mss) {
1832                 opt = (char *)(th + 1);
1833                 opt[0] = TCPOPT_MAXSEG;
1834                 opt[1] = 4;
1835                 mss = htons(mss);
1836                 bcopy((caddr_t)&mss, (caddr_t)(opt + 2), 2);
1837         }
1838
1839         switch (af) {
1840 #ifdef INET
1841         case AF_INET:
1842                 /* TCP checksum */
1843                 th->th_sum = in_cksum(m, len);
1844
1845                 /* Finish the IP header */
1846                 h->ip_v = 4;
1847                 h->ip_hl = sizeof(*h) >> 2;
1848                 h->ip_tos = IPTOS_LOWDELAY;
1849                 h->ip_len = len;
1850                 h->ip_off = path_mtu_discovery ? IP_DF : 0;
1851                 h->ip_ttl = ttl ? ttl : ip_defttl;
1852                 h->ip_sum = 0;
1853                 if (eh == NULL) {
1854                         lwkt_reltoken(&pf_token);
1855                         ip_output(m, NULL, NULL, 0, NULL, NULL);
1856                         lwkt_gettoken(&pf_token);
1857                 } else {
1858                         struct route             ro;
1859                         struct rtentry           rt;
1860                         struct ether_header     *e = (void *)ro.ro_dst.sa_data;
1861
1862                         if (ifp == NULL) {
1863                                 m_freem(m);
1864                                 return;
1865                         }
1866                         rt.rt_ifp = ifp;
1867                         ro.ro_rt = &rt;
1868                         ro.ro_dst.sa_len = sizeof(ro.ro_dst);
1869                         ro.ro_dst.sa_family = pseudo_AF_HDRCMPLT;
1870                         bcopy(eh->ether_dhost, e->ether_shost, ETHER_ADDR_LEN);
1871                         bcopy(eh->ether_shost, e->ether_dhost, ETHER_ADDR_LEN);
1872                         e->ether_type = eh->ether_type;
1873                         /* XXX_IMPORT: later */
1874                         lwkt_reltoken(&pf_token);
1875                         ip_output(m, (void *)NULL, &ro, 0,
1876                             (void *)NULL, (void *)NULL);
1877                         lwkt_gettoken(&pf_token);
1878                 }
1879                 break;
1880 #endif /* INET */
1881 #ifdef INET6
1882         case AF_INET6:
1883                 /* TCP checksum */
1884                 th->th_sum = in6_cksum(m, IPPROTO_TCP,
1885                     sizeof(struct ip6_hdr), tlen);
1886
1887                 h6->ip6_vfc |= IPV6_VERSION;
1888                 h6->ip6_hlim = IPV6_DEFHLIM;
1889
1890                 lwkt_reltoken(&pf_token);
1891                 ip6_output(m, NULL, NULL, 0, NULL, NULL, NULL);
1892                 lwkt_gettoken(&pf_token);
1893                 break;
1894 #endif /* INET6 */
1895         }
1896 }
1897
1898 void
1899 pf_send_icmp(struct mbuf *m, u_int8_t type, u_int8_t code, sa_family_t af,
1900     struct pf_rule *r)
1901 {
1902         struct mbuf     *m0;
1903
1904         /*
1905          * DragonFly doesn't zero the auxillary pkghdr fields, only fw_flags,
1906          * so make sure pf.flags is clear.
1907          */
1908         if ((m0 = m_copy(m, 0, M_COPYALL)) == NULL)
1909                 return;
1910
1911         m0->m_pkthdr.fw_flags |= PF_MBUF_TAGGED;
1912         m0->m_pkthdr.pf.flags = 0;
1913         /* XXX Re-Check when Upgrading to > 4.4 */
1914         m0->m_pkthdr.pf.statekey = NULL;
1915
1916         if (r->rtableid >= 0)
1917                 m0->m_pkthdr.pf.rtableid = r->rtableid;
1918
1919 #ifdef ALTQ
1920         if (r->qid) {
1921                 m->m_pkthdr.fw_flags |= PF_MBUF_STRUCTURE;
1922                 m0->m_pkthdr.pf.qid = r->qid;
1923                 m0->m_pkthdr.pf.ecn_af = af;
1924                 m0->m_pkthdr.pf.hdr = mtod(m0, struct ip *);
1925         }
1926 #endif /* ALTQ */
1927
1928         switch (af) {
1929 #ifdef INET
1930         case AF_INET:
1931                 icmp_error(m0, type, code, 0, 0);
1932                 break;
1933 #endif /* INET */
1934 #ifdef INET6
1935         case AF_INET6:
1936                 icmp6_error(m0, type, code, 0);
1937                 break;
1938 #endif /* INET6 */
1939         }
1940 }
1941
1942 /*
1943  * Return 1 if the addresses a and b match (with mask m), otherwise return 0.
1944  * If n is 0, they match if they are equal. If n is != 0, they match if they
1945  * are different.
1946  */
1947 int
1948 pf_match_addr(u_int8_t n, struct pf_addr *a, struct pf_addr *m,
1949     struct pf_addr *b, sa_family_t af)
1950 {
1951         int     match = 0;
1952
1953         switch (af) {
1954 #ifdef INET
1955         case AF_INET:
1956                 if ((a->addr32[0] & m->addr32[0]) ==
1957                     (b->addr32[0] & m->addr32[0]))
1958                         match++;
1959                 break;
1960 #endif /* INET */
1961 #ifdef INET6
1962         case AF_INET6:
1963                 if (((a->addr32[0] & m->addr32[0]) ==
1964                      (b->addr32[0] & m->addr32[0])) &&
1965                     ((a->addr32[1] & m->addr32[1]) ==
1966                      (b->addr32[1] & m->addr32[1])) &&
1967                     ((a->addr32[2] & m->addr32[2]) ==
1968                      (b->addr32[2] & m->addr32[2])) &&
1969                     ((a->addr32[3] & m->addr32[3]) ==
1970                      (b->addr32[3] & m->addr32[3])))
1971                         match++;
1972                 break;
1973 #endif /* INET6 */
1974         }
1975         if (match) {
1976                 if (n)
1977                         return (0);
1978                 else
1979                         return (1);
1980         } else {
1981                 if (n)
1982                         return (1);
1983                 else
1984                         return (0);
1985         }
1986 }
1987
1988 /*
1989  * Return 1 if b <= a <= e, otherwise return 0.
1990  */
1991 int
1992 pf_match_addr_range(struct pf_addr *b, struct pf_addr *e,
1993     struct pf_addr *a, sa_family_t af)
1994 {
1995         switch (af) {
1996 #ifdef INET
1997         case AF_INET:
1998                 if ((a->addr32[0] < b->addr32[0]) ||
1999                     (a->addr32[0] > e->addr32[0]))
2000                         return (0);
2001                 break;
2002 #endif /* INET */
2003 #ifdef INET6
2004         case AF_INET6: {
2005                 int     i;
2006
2007                 /* check a >= b */
2008                 for (i = 0; i < 4; ++i)
2009                         if (a->addr32[i] > b->addr32[i])
2010                                 break;
2011                         else if (a->addr32[i] < b->addr32[i])
2012                                 return (0);
2013                 /* check a <= e */
2014                 for (i = 0; i < 4; ++i)
2015                         if (a->addr32[i] < e->addr32[i])
2016                                 break;
2017                         else if (a->addr32[i] > e->addr32[i])
2018                                 return (0);
2019                 break;
2020         }
2021 #endif /* INET6 */
2022         }
2023         return (1);
2024 }
2025
2026 int
2027 pf_match(u_int8_t op, u_int32_t a1, u_int32_t a2, u_int32_t p)
2028 {
2029         switch (op) {
2030         case PF_OP_IRG:
2031                 return ((p > a1) && (p < a2));
2032         case PF_OP_XRG:
2033                 return ((p < a1) || (p > a2));
2034         case PF_OP_RRG:
2035                 return ((p >= a1) && (p <= a2));
2036         case PF_OP_EQ:
2037                 return (p == a1);
2038         case PF_OP_NE:
2039                 return (p != a1);
2040         case PF_OP_LT:
2041                 return (p < a1);
2042         case PF_OP_LE:
2043                 return (p <= a1);
2044         case PF_OP_GT:
2045                 return (p > a1);
2046         case PF_OP_GE:
2047                 return (p >= a1);
2048         }
2049         return (0); /* never reached */
2050 }
2051
2052 int
2053 pf_match_port(u_int8_t op, u_int16_t a1, u_int16_t a2, u_int16_t p)
2054 {
2055         a1 = ntohs(a1);
2056         a2 = ntohs(a2);
2057         p = ntohs(p);
2058         return (pf_match(op, a1, a2, p));
2059 }
2060
2061 int
2062 pf_match_uid(u_int8_t op, uid_t a1, uid_t a2, uid_t u)
2063 {
2064         if (u == UID_MAX && op != PF_OP_EQ && op != PF_OP_NE)
2065                 return (0);
2066         return (pf_match(op, a1, a2, u));
2067 }
2068
2069 int
2070 pf_match_gid(u_int8_t op, gid_t a1, gid_t a2, gid_t g)
2071 {
2072         if (g == GID_MAX && op != PF_OP_EQ && op != PF_OP_NE)
2073                 return (0);
2074         return (pf_match(op, a1, a2, g));
2075 }
2076
2077 int
2078 pf_match_tag(struct mbuf *m, struct pf_rule *r, int *tag)
2079 {
2080         if (*tag == -1)
2081                 *tag = m->m_pkthdr.pf.tag;
2082
2083         return ((!r->match_tag_not && r->match_tag == *tag) ||
2084             (r->match_tag_not && r->match_tag != *tag));
2085 }
2086
2087 int
2088 pf_tag_packet(struct mbuf *m, int tag, int rtableid)
2089 {
2090         if (tag <= 0 && rtableid < 0)
2091                 return (0);
2092
2093         if (tag > 0)
2094                 m->m_pkthdr.pf.tag = tag;
2095         if (rtableid >= 0)
2096                 m->m_pkthdr.pf.rtableid = rtableid;
2097
2098         return (0);
2099 }
2100
2101 void
2102 pf_step_into_anchor(int *depth, struct pf_ruleset **rs, int n,
2103     struct pf_rule **r, struct pf_rule **a, int *match)
2104 {
2105         struct pf_anchor_stackframe     *f;
2106
2107         (*r)->anchor->match = 0;
2108         if (match)
2109                 *match = 0;
2110         if (*depth >= sizeof(pf_anchor_stack) /
2111             sizeof(pf_anchor_stack[0])) {
2112                 kprintf("pf_step_into_anchor: stack overflow\n");
2113                 *r = TAILQ_NEXT(*r, entries);
2114                 return;
2115         } else if (*depth == 0 && a != NULL)
2116                 *a = *r;
2117         f = pf_anchor_stack + (*depth)++;
2118         f->rs = *rs;
2119         f->r = *r;
2120         if ((*r)->anchor_wildcard) {
2121                 f->parent = &(*r)->anchor->children;
2122                 if ((f->child = RB_MIN(pf_anchor_node, f->parent)) ==
2123                     NULL) {
2124                         *r = NULL;
2125                         return;
2126                 }
2127                 *rs = &f->child->ruleset;
2128         } else {
2129                 f->parent = NULL;
2130                 f->child = NULL;
2131                 *rs = &(*r)->anchor->ruleset;
2132         }
2133         *r = TAILQ_FIRST((*rs)->rules[n].active.ptr);
2134 }
2135
2136 int
2137 pf_step_out_of_anchor(int *depth, struct pf_ruleset **rs, int n,
2138     struct pf_rule **r, struct pf_rule **a, int *match)
2139 {
2140         struct pf_anchor_stackframe     *f;
2141         int quick = 0;
2142
2143         do {
2144                 if (*depth <= 0)
2145                         break;
2146                 f = pf_anchor_stack + *depth - 1;
2147                 if (f->parent != NULL && f->child != NULL) {
2148                         if (f->child->match ||
2149                             (match != NULL && *match)) {
2150                                 f->r->anchor->match = 1;
2151                                 *match = 0;
2152                         }
2153                         f->child = RB_NEXT(pf_anchor_node, f->parent, f->child);
2154                         if (f->child != NULL) {
2155                                 *rs = &f->child->ruleset;
2156                                 *r = TAILQ_FIRST((*rs)->rules[n].active.ptr);
2157                                 if (*r == NULL)
2158                                         continue;
2159                                 else
2160                                         break;
2161                         }
2162                 }
2163                 (*depth)--;
2164                 if (*depth == 0 && a != NULL)
2165                         *a = NULL;
2166                 *rs = f->rs;
2167                 if (f->r->anchor->match || (match != NULL && *match))
2168                         quick = f->r->quick;
2169                 *r = TAILQ_NEXT(f->r, entries);
2170         } while (*r == NULL);
2171
2172         return (quick);
2173 }
2174
2175 #ifdef INET6
2176 void
2177 pf_poolmask(struct pf_addr *naddr, struct pf_addr *raddr,
2178     struct pf_addr *rmask, struct pf_addr *saddr, sa_family_t af)
2179 {
2180         switch (af) {
2181 #ifdef INET
2182         case AF_INET:
2183                 naddr->addr32[0] = (raddr->addr32[0] & rmask->addr32[0]) |
2184                 ((rmask->addr32[0] ^ 0xffffffff ) & saddr->addr32[0]);
2185                 break;
2186 #endif /* INET */
2187         case AF_INET6:
2188                 naddr->addr32[0] = (raddr->addr32[0] & rmask->addr32[0]) |
2189                 ((rmask->addr32[0] ^ 0xffffffff ) & saddr->addr32[0]);
2190                 naddr->addr32[1] = (raddr->addr32[1] & rmask->addr32[1]) |
2191                 ((rmask->addr32[1] ^ 0xffffffff ) & saddr->addr32[1]);
2192                 naddr->addr32[2] = (raddr->addr32[2] & rmask->addr32[2]) |
2193                 ((rmask->addr32[2] ^ 0xffffffff ) & saddr->addr32[2]);
2194                 naddr->addr32[3] = (raddr->addr32[3] & rmask->addr32[3]) |
2195                 ((rmask->addr32[3] ^ 0xffffffff ) & saddr->addr32[3]);
2196                 break;
2197         }
2198 }
2199
2200 void
2201 pf_addr_inc(struct pf_addr *addr, sa_family_t af)
2202 {
2203         switch (af) {
2204 #ifdef INET
2205         case AF_INET:
2206                 addr->addr32[0] = htonl(ntohl(addr->addr32[0]) + 1);
2207                 break;
2208 #endif /* INET */
2209         case AF_INET6:
2210                 if (addr->addr32[3] == 0xffffffff) {
2211                         addr->addr32[3] = 0;
2212                         if (addr->addr32[2] == 0xffffffff) {
2213                                 addr->addr32[2] = 0;
2214                                 if (addr->addr32[1] == 0xffffffff) {
2215                                         addr->addr32[1] = 0;
2216                                         addr->addr32[0] =
2217                                             htonl(ntohl(addr->addr32[0]) + 1);
2218                                 } else
2219                                         addr->addr32[1] =
2220                                             htonl(ntohl(addr->addr32[1]) + 1);
2221                         } else
2222                                 addr->addr32[2] =
2223                                     htonl(ntohl(addr->addr32[2]) + 1);
2224                 } else
2225                         addr->addr32[3] =
2226                             htonl(ntohl(addr->addr32[3]) + 1);
2227                 break;
2228         }
2229 }
2230 #endif /* INET6 */
2231
2232 #define mix(a,b,c) \
2233         do {                                    \
2234                 a -= b; a -= c; a ^= (c >> 13); \
2235                 b -= c; b -= a; b ^= (a << 8);  \
2236                 c -= a; c -= b; c ^= (b >> 13); \
2237                 a -= b; a -= c; a ^= (c >> 12); \
2238                 b -= c; b -= a; b ^= (a << 16); \
2239                 c -= a; c -= b; c ^= (b >> 5);  \
2240                 a -= b; a -= c; a ^= (c >> 3);  \
2241                 b -= c; b -= a; b ^= (a << 10); \
2242                 c -= a; c -= b; c ^= (b >> 15); \
2243         } while (0)
2244
2245 /*
2246  * hash function based on bridge_hash in if_bridge.c
2247  */
2248 void
2249 pf_hash(struct pf_addr *inaddr, struct pf_addr *hash,
2250     struct pf_poolhashkey *key, sa_family_t af)
2251 {
2252         u_int32_t       a = 0x9e3779b9, b = 0x9e3779b9, c = key->key32[0];
2253
2254         switch (af) {
2255 #ifdef INET
2256         case AF_INET:
2257                 a += inaddr->addr32[0];
2258                 b += key->key32[1];
2259                 mix(a, b, c);
2260                 hash->addr32[0] = c + key->key32[2];
2261                 break;
2262 #endif /* INET */
2263 #ifdef INET6
2264         case AF_INET6:
2265                 a += inaddr->addr32[0];
2266                 b += inaddr->addr32[2];
2267                 mix(a, b, c);
2268                 hash->addr32[0] = c;
2269                 a += inaddr->addr32[1];
2270                 b += inaddr->addr32[3];
2271                 c += key->key32[1];
2272                 mix(a, b, c);
2273                 hash->addr32[1] = c;
2274                 a += inaddr->addr32[2];
2275                 b += inaddr->addr32[1];
2276                 c += key->key32[2];
2277                 mix(a, b, c);
2278                 hash->addr32[2] = c;
2279                 a += inaddr->addr32[3];
2280                 b += inaddr->addr32[0];
2281                 c += key->key32[3];
2282                 mix(a, b, c);
2283                 hash->addr32[3] = c;
2284                 break;
2285 #endif /* INET6 */
2286         }
2287 }
2288
2289 int
2290 pf_map_addr(sa_family_t af, struct pf_rule *r, struct pf_addr *saddr,
2291     struct pf_addr *naddr, struct pf_addr *init_addr, struct pf_src_node **sn)
2292 {
2293         unsigned char            hash[16];
2294         struct pf_pool          *rpool = &r->rpool;
2295         struct pf_addr          *raddr = &rpool->cur->addr.v.a.addr;
2296         struct pf_addr          *rmask = &rpool->cur->addr.v.a.mask;
2297         struct pf_pooladdr      *acur = rpool->cur;
2298         struct pf_src_node       k;
2299
2300         if (*sn == NULL && r->rpool.opts & PF_POOL_STICKYADDR &&
2301             (r->rpool.opts & PF_POOL_TYPEMASK) != PF_POOL_NONE) {
2302                 k.af = af;
2303                 PF_ACPY(&k.addr, saddr, af);
2304                 if (r->rule_flag & PFRULE_RULESRCTRACK ||
2305                     r->rpool.opts & PF_POOL_STICKYADDR)
2306                         k.rule.ptr = r;
2307                 else
2308                         k.rule.ptr = NULL;
2309                 pf_status.scounters[SCNT_SRC_NODE_SEARCH]++;
2310                 *sn = RB_FIND(pf_src_tree, &tree_src_tracking, &k);
2311                 if (*sn != NULL && !PF_AZERO(&(*sn)->raddr, af)) {
2312                         PF_ACPY(naddr, &(*sn)->raddr, af);
2313                         if (pf_status.debug >= PF_DEBUG_MISC) {
2314                                 kprintf("pf_map_addr: src tracking maps ");
2315                                 pf_print_host(&k.addr, 0, af);
2316                                 kprintf(" to ");
2317                                 pf_print_host(naddr, 0, af);
2318                                 kprintf("\n");
2319                         }
2320                         return (0);
2321                 }
2322         }
2323
2324         if (rpool->cur->addr.type == PF_ADDR_NOROUTE)
2325                 return (1);
2326         if (rpool->cur->addr.type == PF_ADDR_DYNIFTL) {
2327                 switch (af) {
2328 #ifdef INET
2329                 case AF_INET:
2330                         if (rpool->cur->addr.p.dyn->pfid_acnt4 < 1 &&
2331                             (rpool->opts & PF_POOL_TYPEMASK) !=
2332                             PF_POOL_ROUNDROBIN)
2333                                 return (1);
2334                          raddr = &rpool->cur->addr.p.dyn->pfid_addr4;
2335                          rmask = &rpool->cur->addr.p.dyn->pfid_mask4;
2336                         break;
2337 #endif /* INET */
2338 #ifdef INET6
2339                 case AF_INET6:
2340                         if (rpool->cur->addr.p.dyn->pfid_acnt6 < 1 &&
2341                             (rpool->opts & PF_POOL_TYPEMASK) !=
2342                             PF_POOL_ROUNDROBIN)
2343                                 return (1);
2344                         raddr = &rpool->cur->addr.p.dyn->pfid_addr6;
2345                         rmask = &rpool->cur->addr.p.dyn->pfid_mask6;
2346                         break;
2347 #endif /* INET6 */
2348                 }
2349         } else if (rpool->cur->addr.type == PF_ADDR_TABLE) {
2350                 if ((rpool->opts & PF_POOL_TYPEMASK) != PF_POOL_ROUNDROBIN)
2351                         return (1); /* unsupported */
2352         } else {
2353                 raddr = &rpool->cur->addr.v.a.addr;
2354                 rmask = &rpool->cur->addr.v.a.mask;
2355         }
2356
2357         switch (rpool->opts & PF_POOL_TYPEMASK) {
2358         case PF_POOL_NONE:
2359                 PF_ACPY(naddr, raddr, af);
2360                 break;
2361         case PF_POOL_BITMASK:
2362                 PF_POOLMASK(naddr, raddr, rmask, saddr, af);
2363                 break;
2364         case PF_POOL_RANDOM:
2365                 if (init_addr != NULL && PF_AZERO(init_addr, af)) {
2366                         switch (af) {
2367 #ifdef INET
2368                         case AF_INET:
2369                                 rpool->counter.addr32[0] = htonl(karc4random());
2370                                 break;
2371 #endif /* INET */
2372 #ifdef INET6
2373                         case AF_INET6:
2374                                 if (rmask->addr32[3] != 0xffffffff)
2375                                         rpool->counter.addr32[3] =
2376                                             htonl(karc4random());
2377                                 else
2378                                         break;
2379                                 if (rmask->addr32[2] != 0xffffffff)
2380                                         rpool->counter.addr32[2] =
2381                                             htonl(karc4random());
2382                                 else
2383                                         break;
2384                                 if (rmask->addr32[1] != 0xffffffff)
2385                                         rpool->counter.addr32[1] =
2386                                             htonl(karc4random());
2387                                 else
2388                                         break;
2389                                 if (rmask->addr32[0] != 0xffffffff)
2390                                         rpool->counter.addr32[0] =
2391                                             htonl(karc4random());
2392                                 break;
2393 #endif /* INET6 */
2394                         }
2395                         PF_POOLMASK(naddr, raddr, rmask, &rpool->counter, af);
2396                         PF_ACPY(init_addr, naddr, af);
2397
2398                 } else {
2399                         PF_AINC(&rpool->counter, af);
2400                         PF_POOLMASK(naddr, raddr, rmask, &rpool->counter, af);
2401                 }
2402                 break;
2403         case PF_POOL_SRCHASH:
2404                 pf_hash(saddr, (struct pf_addr *)&hash, &rpool->key, af);
2405                 PF_POOLMASK(naddr, raddr, rmask, (struct pf_addr *)&hash, af);
2406                 break;
2407         case PF_POOL_ROUNDROBIN:
2408                 if (rpool->cur->addr.type == PF_ADDR_TABLE) {
2409                         if (!pfr_pool_get(rpool->cur->addr.p.tbl,
2410                             &rpool->tblidx, &rpool->counter,
2411                             &raddr, &rmask, af))
2412                                 goto get_addr;
2413                 } else if (rpool->cur->addr.type == PF_ADDR_DYNIFTL) {
2414                         if (!pfr_pool_get(rpool->cur->addr.p.dyn->pfid_kt,
2415                             &rpool->tblidx, &rpool->counter,
2416                             &raddr, &rmask, af))
2417                                 goto get_addr;
2418                 } else if (pf_match_addr(0, raddr, rmask, &rpool->counter, af))
2419                         goto get_addr;
2420
2421         try_next:
2422                 if ((rpool->cur = TAILQ_NEXT(rpool->cur, entries)) == NULL)
2423                         rpool->cur = TAILQ_FIRST(&rpool->list);
2424                 if (rpool->cur->addr.type == PF_ADDR_TABLE) {
2425                         rpool->tblidx = -1;
2426                         if (pfr_pool_get(rpool->cur->addr.p.tbl,
2427                             &rpool->tblidx, &rpool->counter,
2428                             &raddr, &rmask, af)) {
2429                                 /* table contains no address of type 'af' */
2430                                 if (rpool->cur != acur)
2431                                         goto try_next;
2432                                 return (1);
2433                         }
2434                 } else if (rpool->cur->addr.type == PF_ADDR_DYNIFTL) {
2435                         rpool->tblidx = -1;
2436                         if (pfr_pool_get(rpool->cur->addr.p.dyn->pfid_kt,
2437                             &rpool->tblidx, &rpool->counter,
2438                             &raddr, &rmask, af)) {
2439                                 /* table contains no address of type 'af' */
2440                                 if (rpool->cur != acur)
2441                                         goto try_next;
2442                                 return (1);
2443                         }
2444                 } else {
2445                         raddr = &rpool->cur->addr.v.a.addr;
2446                         rmask = &rpool->cur->addr.v.a.mask;
2447                         PF_ACPY(&rpool->counter, raddr, af);
2448                 }
2449
2450         get_addr:
2451                 PF_ACPY(naddr, &rpool->counter, af);
2452                 if (init_addr != NULL && PF_AZERO(init_addr, af))
2453                         PF_ACPY(init_addr, naddr, af);
2454                 PF_AINC(&rpool->counter, af);
2455                 break;
2456         }
2457         if (*sn != NULL)
2458                 PF_ACPY(&(*sn)->raddr, naddr, af);
2459
2460         if (pf_status.debug >= PF_DEBUG_MISC &&
2461             (rpool->opts & PF_POOL_TYPEMASK) != PF_POOL_NONE) {
2462                 kprintf("pf_map_addr: selected address ");
2463                 pf_print_host(naddr, 0, af);
2464                 kprintf("\n");
2465         }
2466
2467         return (0);
2468 }
2469
2470 int
2471 pf_get_sport(sa_family_t af, u_int8_t proto, struct pf_rule *r,
2472     struct pf_addr *saddr, struct pf_addr *daddr, u_int16_t dport,
2473     struct pf_addr *naddr, u_int16_t *nport, u_int16_t low, u_int16_t high,
2474     struct pf_src_node **sn)
2475 {
2476         struct pf_state_key_cmp key;
2477         struct pf_addr          init_addr;
2478         u_int16_t               cut;
2479
2480         bzero(&init_addr, sizeof(init_addr));
2481         if (pf_map_addr(af, r, saddr, naddr, &init_addr, sn))
2482                 return (1);
2483
2484         if (proto == IPPROTO_ICMP) {
2485                 low = 1;
2486                 high = 65535;
2487         }
2488
2489         do {
2490                 key.af = af;
2491                 key.proto = proto;
2492                 PF_ACPY(&key.addr[1], daddr, key.af);
2493                 PF_ACPY(&key.addr[0], naddr, key.af);
2494                 key.port[1] = dport;
2495
2496                 /*
2497                  * port search; start random, step;
2498                  * similar 2 portloop in in_pcbbind
2499                  */
2500                 if (!(proto == IPPROTO_TCP || proto == IPPROTO_UDP ||
2501                     proto == IPPROTO_ICMP)) {
2502                         key.port[0] = dport;
2503                         if (pf_find_state_all(&key, PF_IN, NULL) == NULL)
2504                                 return (0);
2505                 } else if (low == 0 && high == 0) {
2506                         key.port[0] = *nport;
2507                         if (pf_find_state_all(&key, PF_IN, NULL) == NULL)
2508                                 return (0);
2509                 } else if (low == high) {
2510                         key.port[0] = htons(low);
2511                         if (pf_find_state_all(&key, PF_IN, NULL) == NULL) {
2512                                 *nport = htons(low);
2513                                 return (0);
2514                         }
2515                 } else {
2516                         u_int16_t tmp;
2517
2518                         if (low > high) {
2519                                 tmp = low;
2520                                 low = high;
2521                                 high = tmp;
2522                         }
2523                         /* low < high */
2524                         cut = htonl(karc4random()) % (1 + high - low) + low;
2525                         /* low <= cut <= high */
2526                         for (tmp = cut; tmp <= high; ++(tmp)) {
2527                                 key.port[0] = htons(tmp);
2528                                 if (pf_find_state_all(&key, PF_IN, NULL) ==
2529                                     NULL && !in_baddynamic(tmp, proto)) {
2530                                         *nport = htons(tmp);
2531                                         return (0);
2532                                 }
2533                         }
2534                         for (tmp = cut - 1; tmp >= low; --(tmp)) {
2535                                 key.port[0] = htons(tmp);
2536                                 if (pf_find_state_all(&key, PF_IN, NULL) ==
2537                                     NULL && !in_baddynamic(tmp, proto)) {
2538                                         *nport = htons(tmp);
2539                                         return (0);
2540                                 }
2541                         }
2542                 }
2543
2544                 switch (r->rpool.opts & PF_POOL_TYPEMASK) {
2545                 case PF_POOL_RANDOM:
2546                 case PF_POOL_ROUNDROBIN:
2547                         if (pf_map_addr(af, r, saddr, naddr, &init_addr, sn))
2548                                 return (1);
2549                         break;
2550                 case PF_POOL_NONE:
2551                 case PF_POOL_SRCHASH:
2552                 case PF_POOL_BITMASK:
2553                 default:
2554                         return (1);
2555                 }
2556         } while (! PF_AEQ(&init_addr, naddr, af) );
2557         return (1);                                     /* none available */
2558 }
2559
2560 struct pf_rule *
2561 pf_match_translation(struct pf_pdesc *pd, struct mbuf *m, int off,
2562     int direction, struct pfi_kif *kif, struct pf_addr *saddr, u_int16_t sport,
2563     struct pf_addr *daddr, u_int16_t dport, int rs_num)
2564 {
2565         struct pf_rule          *r, *rm = NULL;
2566         struct pf_ruleset       *ruleset = NULL;
2567         int                      tag = -1;
2568         int                      rtableid = -1;
2569         int                      asd = 0;
2570
2571         r = TAILQ_FIRST(pf_main_ruleset.rules[rs_num].active.ptr);
2572         while (r && rm == NULL) {
2573                 struct pf_rule_addr     *src = NULL, *dst = NULL;
2574                 struct pf_addr_wrap     *xdst = NULL;
2575
2576                 if (r->action == PF_BINAT && direction == PF_IN) {
2577                         src = &r->dst;
2578                         if (r->rpool.cur != NULL)
2579                                 xdst = &r->rpool.cur->addr;
2580                 } else {
2581                         src = &r->src;
2582                         dst = &r->dst;
2583                 }
2584
2585                 r->evaluations++;
2586                 if (pfi_kif_match(r->kif, kif) == r->ifnot)
2587                         r = r->skip[PF_SKIP_IFP].ptr;
2588                 else if (r->direction && r->direction != direction)
2589                         r = r->skip[PF_SKIP_DIR].ptr;
2590                 else if (r->af && r->af != pd->af)
2591                         r = r->skip[PF_SKIP_AF].ptr;
2592                 else if (r->proto && r->proto != pd->proto)
2593                         r = r->skip[PF_SKIP_PROTO].ptr;
2594                 else if (PF_MISMATCHAW(&src->addr, saddr, pd->af,
2595                     src->neg, kif))
2596                         r = r->skip[src == &r->src ? PF_SKIP_SRC_ADDR :
2597                             PF_SKIP_DST_ADDR].ptr;
2598                 else if (src->port_op && !pf_match_port(src->port_op,
2599                     src->port[0], src->port[1], sport))
2600                         r = r->skip[src == &r->src ? PF_SKIP_SRC_PORT :
2601                             PF_SKIP_DST_PORT].ptr;
2602                 else if (dst != NULL &&
2603                     PF_MISMATCHAW(&dst->addr, daddr, pd->af, dst->neg, NULL))
2604                         r = r->skip[PF_SKIP_DST_ADDR].ptr;
2605                 else if (xdst != NULL && PF_MISMATCHAW(xdst, daddr, pd->af,
2606                     0, NULL))
2607                         r = TAILQ_NEXT(r, entries);
2608                 else if (dst != NULL && dst->port_op &&
2609                     !pf_match_port(dst->port_op, dst->port[0],
2610                     dst->port[1], dport))
2611                         r = r->skip[PF_SKIP_DST_PORT].ptr;
2612                 else if (r->match_tag && !pf_match_tag(m, r, &tag))
2613                         r = TAILQ_NEXT(r, entries);
2614                 else if (r->os_fingerprint != PF_OSFP_ANY && (pd->proto !=
2615                     IPPROTO_TCP || !pf_osfp_match(pf_osfp_fingerprint(pd, m,
2616                     off, pd->hdr.tcp), r->os_fingerprint)))
2617                         r = TAILQ_NEXT(r, entries);
2618                 else {
2619                         if (r->tag)
2620                                 tag = r->tag;
2621                         if (r->rtableid >= 0)
2622                                 rtableid = r->rtableid;
2623                         if (r->anchor == NULL) {
2624                                 rm = r;
2625                         } else
2626                                 pf_step_into_anchor(&asd, &ruleset, rs_num,
2627                                     &r, NULL, NULL);
2628                 }
2629                 if (r == NULL)
2630                         pf_step_out_of_anchor(&asd, &ruleset, rs_num, &r,
2631                             NULL, NULL);
2632         }
2633         if (pf_tag_packet(m, tag, rtableid))
2634                 return (NULL);
2635         if (rm != NULL && (rm->action == PF_NONAT ||
2636             rm->action == PF_NORDR || rm->action == PF_NOBINAT))
2637                 return (NULL);
2638         return (rm);
2639 }
2640
2641 struct pf_rule *
2642 pf_get_translation(struct pf_pdesc *pd, struct mbuf *m, int off, int direction,
2643     struct pfi_kif *kif, struct pf_src_node **sn,
2644     struct pf_state_key **skw, struct pf_state_key **sks,
2645     struct pf_state_key **skp, struct pf_state_key **nkp,
2646     struct pf_addr *saddr, struct pf_addr *daddr,
2647     u_int16_t sport, u_int16_t dport)
2648 {
2649         struct pf_rule  *r = NULL;
2650
2651
2652         if (direction == PF_OUT) {
2653                 r = pf_match_translation(pd, m, off, direction, kif, saddr,
2654                     sport, daddr, dport, PF_RULESET_BINAT);
2655                 if (r == NULL)
2656                         r = pf_match_translation(pd, m, off, direction, kif,
2657                             saddr, sport, daddr, dport, PF_RULESET_NAT);
2658         } else {
2659                 r = pf_match_translation(pd, m, off, direction, kif, saddr,
2660                     sport, daddr, dport, PF_RULESET_RDR);
2661                 if (r == NULL)
2662                         r = pf_match_translation(pd, m, off, direction, kif,
2663                             saddr, sport, daddr, dport, PF_RULESET_BINAT);
2664         }
2665
2666         if (r != NULL) {
2667                 struct pf_addr  *naddr;
2668                 u_int16_t       *nport;
2669
2670                 if (pf_state_key_setup(pd, r, skw, sks, skp, nkp,
2671                     saddr, daddr, sport, dport))
2672                         return r;
2673
2674                 /* XXX We only modify one side for now. */
2675                 naddr = &(*nkp)->addr[1];
2676                 nport = &(*nkp)->port[1];
2677
2678                 switch (r->action) {
2679                 case PF_NONAT:
2680                 case PF_NOBINAT:
2681                 case PF_NORDR:
2682                         return (NULL);
2683                 case PF_NAT:
2684                         if (pf_get_sport(pd->af, pd->proto, r, saddr,
2685                             daddr, dport, naddr, nport, r->rpool.proxy_port[0],
2686                             r->rpool.proxy_port[1], sn)) {
2687                                 DPFPRINTF(PF_DEBUG_MISC,
2688                                     ("pf: NAT proxy port allocation "
2689                                     "(%u-%u) failed\n",
2690                                     r->rpool.proxy_port[0],
2691                                     r->rpool.proxy_port[1]));
2692                                 return (NULL);
2693                         }
2694                         break;
2695                 case PF_BINAT:
2696                         switch (direction) {
2697                         case PF_OUT:
2698                                 if (r->rpool.cur->addr.type == PF_ADDR_DYNIFTL){
2699                                         switch (pd->af) {
2700 #ifdef INET
2701                                         case AF_INET:
2702                                                 if (r->rpool.cur->addr.p.dyn->
2703                                                     pfid_acnt4 < 1)
2704                                                         return (NULL);
2705                                                 PF_POOLMASK(naddr,
2706                                                     &r->rpool.cur->addr.p.dyn->
2707                                                     pfid_addr4,
2708                                                     &r->rpool.cur->addr.p.dyn->
2709                                                     pfid_mask4,
2710                                                     saddr, AF_INET);
2711                                                 break;
2712 #endif /* INET */
2713 #ifdef INET6
2714                                         case AF_INET6:
2715                                                 if (r->rpool.cur->addr.p.dyn->
2716                                                     pfid_acnt6 < 1)
2717                                                         return (NULL);
2718                                                 PF_POOLMASK(naddr,
2719                                                     &r->rpool.cur->addr.p.dyn->
2720                                                     pfid_addr6,
2721                                                     &r->rpool.cur->addr.p.dyn->
2722                                                     pfid_mask6,
2723                                                     saddr, AF_INET6);
2724                                                 break;
2725 #endif /* INET6 */
2726                                         }
2727                                 } else
2728                                         PF_POOLMASK(naddr,
2729                                             &r->rpool.cur->addr.v.a.addr,
2730                                             &r->rpool.cur->addr.v.a.mask,
2731                                             saddr, pd->af);
2732                                 break;
2733                         case PF_IN:
2734                                 if (r->src.addr.type == PF_ADDR_DYNIFTL) {
2735                                         switch (pd->af) {
2736 #ifdef INET
2737                                         case AF_INET:
2738                                                 if (r->src.addr.p.dyn->
2739                                                     pfid_acnt4 < 1)
2740                                                         return (NULL);
2741                                                 PF_POOLMASK(naddr,
2742                                                     &r->src.addr.p.dyn->
2743                                                     pfid_addr4,
2744                                                     &r->src.addr.p.dyn->
2745                                                     pfid_mask4,
2746                                                     daddr, AF_INET);
2747                                                 break;
2748 #endif /* INET */
2749 #ifdef INET6
2750                                         case AF_INET6:
2751                                                 if (r->src.addr.p.dyn->
2752                                                     pfid_acnt6 < 1)
2753                                                         return (NULL);
2754                                                 PF_POOLMASK(naddr,
2755                                                     &r->src.addr.p.dyn->
2756                                                     pfid_addr6,
2757                                                     &r->src.addr.p.dyn->
2758                                                     pfid_mask6,
2759                                                     daddr, AF_INET6);
2760                                                 break;
2761 #endif /* INET6 */
2762                                         }
2763                                 } else
2764                                         PF_POOLMASK(naddr,
2765                                             &r->src.addr.v.a.addr,
2766                                             &r->src.addr.v.a.mask, daddr,
2767                                             pd->af);
2768                                 break;
2769                         }
2770                         break;
2771                 case PF_RDR: {
2772                         if (pf_map_addr(pd->af, r, saddr, naddr, NULL, sn))
2773                                 return (NULL);
2774                         if ((r->rpool.opts & PF_POOL_TYPEMASK) ==
2775                             PF_POOL_BITMASK)
2776                                 PF_POOLMASK(naddr, naddr,
2777                                     &r->rpool.cur->addr.v.a.mask, daddr,
2778                                     pd->af);
2779
2780                         if (r->rpool.proxy_port[1]) {
2781                                 u_int32_t       tmp_nport;
2782
2783                                 tmp_nport = ((ntohs(dport) -
2784                                     ntohs(r->dst.port[0])) %
2785                                     (r->rpool.proxy_port[1] -
2786                                     r->rpool.proxy_port[0] + 1)) +
2787                                     r->rpool.proxy_port[0];
2788
2789                                 /* wrap around if necessary */
2790                                 if (tmp_nport > 65535)
2791                                         tmp_nport -= 65535;
2792                                 *nport = htons((u_int16_t)tmp_nport);
2793                         } else if (r->rpool.proxy_port[0])
2794                                 *nport = htons(r->rpool.proxy_port[0]);
2795                         break;
2796                 }
2797                 default:
2798                         return (NULL);
2799                 }
2800         }
2801
2802         return (r);
2803 }
2804
2805 #ifdef SMP
2806 struct netmsg_hashlookup {
2807         struct netmsg_base      base;
2808         struct inpcb            **nm_pinp;
2809         struct inpcbinfo        *nm_pcbinfo;
2810         struct pf_addr          *nm_saddr;
2811         struct pf_addr          *nm_daddr;
2812         uint16_t                nm_sport;
2813         uint16_t                nm_dport;
2814         sa_family_t             nm_af;
2815 };
2816
2817 #ifdef PF_SOCKET_LOOKUP_DOMSG
2818 static void
2819 in_pcblookup_hash_handler(netmsg_t msg)
2820 {
2821         struct netmsg_hashlookup *rmsg = (struct netmsg_hashlookup *)msg;
2822
2823         if (rmsg->nm_af == AF_INET)
2824                 *rmsg->nm_pinp = in_pcblookup_hash(rmsg->nm_pcbinfo,
2825                     rmsg->nm_saddr->v4, rmsg->nm_sport, rmsg->nm_daddr->v4,
2826                     rmsg->nm_dport, INPLOOKUP_WILDCARD, NULL);
2827 #ifdef INET6
2828         else
2829                 *rmsg->nm_pinp = in6_pcblookup_hash(rmsg->nm_pcbinfo,
2830                     &rmsg->nm_saddr->v6, rmsg->nm_sport, &rmsg->nm_daddr->v6,
2831                     rmsg->nm_dport, INPLOOKUP_WILDCARD, NULL);
2832 #endif /* INET6 */
2833         lwkt_replymsg(&rmsg->base.lmsg, 0);
2834 }
2835 #endif  /* PF_SOCKET_LOOKUP_DOMSG */
2836
2837 #endif /* SMP */
2838
2839 int
2840 pf_socket_lookup(int direction, struct pf_pdesc *pd)
2841 {
2842         struct pf_addr          *saddr, *daddr;
2843         u_int16_t                sport, dport;
2844         struct inpcbinfo        *pi;
2845         struct inpcb            *inp;
2846 #ifdef SMP
2847         struct netmsg_hashlookup *msg = NULL;
2848 #ifdef PF_SOCKET_LOOKUP_DOMSG
2849         struct netmsg_hashlookup msg0;
2850 #endif
2851 #endif
2852         int                      pi_cpu = 0;
2853
2854         if (pd == NULL)
2855                 return (-1);
2856         pd->lookup.uid = UID_MAX;
2857         pd->lookup.gid = GID_MAX;
2858         pd->lookup.pid = NO_PID;
2859         if (direction == PF_IN) {
2860                 saddr = pd->src;
2861                 daddr = pd->dst;
2862         } else {
2863                 saddr = pd->dst;
2864                 daddr = pd->src;
2865         }
2866         switch (pd->proto) {
2867         case IPPROTO_TCP:
2868                 if (pd->hdr.tcp == NULL)
2869                         return (-1);
2870                 sport = pd->hdr.tcp->th_sport;
2871                 dport = pd->hdr.tcp->th_dport;
2872
2873                 pi_cpu = tcp_addrcpu(saddr->v4.s_addr, sport, daddr->v4.s_addr, dport);
2874                 pi = &tcbinfo[pi_cpu];
2875 #ifdef SMP
2876                 /*
2877                  * Our netstack runs lockless on MP systems
2878                  * (only for TCP connections at the moment).
2879                  * 
2880                  * As we are not allowed to read another CPU's tcbinfo,
2881                  * we have to ask that CPU via remote call to search the
2882                  * table for us.
2883                  * 
2884                  * Prepare a msg iff data belongs to another CPU.
2885                  */
2886                 if (pi_cpu != mycpu->gd_cpuid) {
2887 #ifdef PF_SOCKET_LOOKUP_DOMSG
2888                         /*
2889                          * NOTE:
2890                          *
2891                          * Following lwkt_domsg() is dangerous and could
2892                          * lockup the network system, e.g.
2893                          *
2894                          * On 2 CPU system:
2895                          * netisr0 domsg to netisr1 (due to lookup)
2896                          * netisr1 domsg to netisr0 (due to lookup)
2897                          *
2898                          * We simply return -1 here, since we are probably
2899                          * called before NAT, so the TCP packet should
2900                          * already be on the correct CPU.
2901                          */
2902                         msg = &msg0;
2903                         netmsg_init(&msg->base, NULL, &curthread->td_msgport,
2904                                     0, in_pcblookup_hash_handler);
2905                         msg->nm_pinp = &inp;
2906                         msg->nm_pcbinfo = pi;
2907                         msg->nm_saddr = saddr;
2908                         msg->nm_sport = sport;
2909                         msg->nm_daddr = daddr;
2910                         msg->nm_dport = dport;
2911                         msg->nm_af = pd->af;
2912 #else   /* !PF_SOCKET_LOOKUP_DOMSG */
2913                         kprintf("pf_socket_lookup: tcp packet not on the "
2914                                 "correct cpu %d, cur cpu %d\n",
2915                                 pi_cpu, mycpuid);
2916                         print_backtrace(-1);
2917                         return -1;
2918 #endif  /* PF_SOCKET_LOOKUP_DOMSG */
2919                 }
2920 #endif /* SMP */
2921                 break;
2922         case IPPROTO_UDP:
2923                 if (pd->hdr.udp == NULL)
2924                         return (-1);
2925                 sport = pd->hdr.udp->uh_sport;
2926                 dport = pd->hdr.udp->uh_dport;
2927                 pi = &udbinfo;
2928                 break;
2929         default:
2930                 return (-1);
2931         }
2932         if (direction != PF_IN) {
2933                 u_int16_t       p;
2934
2935                 p = sport;
2936                 sport = dport;
2937                 dport = p;
2938         }
2939         switch (pd->af) {
2940 #ifdef INET6
2941         case AF_INET6:
2942 #ifdef SMP
2943                 /*
2944                  * Query other CPU, second part
2945                  * 
2946                  * msg only gets initialized when:
2947                  * 1) packet is TCP
2948                  * 2) the info belongs to another CPU
2949                  *
2950                  * Use some switch/case magic to avoid code duplication.
2951                  */
2952                 if (msg == NULL)
2953 #endif /* SMP */
2954                 {
2955                         inp = in6_pcblookup_hash(pi, &saddr->v6, sport,
2956                             &daddr->v6, dport, INPLOOKUP_WILDCARD, NULL);
2957
2958                         if (inp == NULL)
2959                                 return (-1);
2960                         break;
2961                 }
2962                 /* FALLTHROUGH if SMP and on other CPU */
2963 #endif /* INET6 */
2964         case AF_INET:
2965 #ifdef SMP
2966                 if (msg != NULL) {
2967                         lwkt_domsg(cpu_portfn(pi_cpu),
2968                                      &msg->base.lmsg, 0);
2969                 } else
2970 #endif /* SMP */
2971                 {
2972                         inp = in_pcblookup_hash(pi, saddr->v4, sport, daddr->v4,
2973                             dport, INPLOOKUP_WILDCARD, NULL);
2974                 }
2975                 if (inp == NULL)
2976                         return (-1);
2977                 break;
2978
2979         default:
2980                 return (-1);
2981         }
2982         pd->lookup.uid = inp->inp_socket->so_cred->cr_uid;
2983         pd->lookup.gid = inp->inp_socket->so_cred->cr_groups[0];
2984         return (1);
2985 }
2986
2987 u_int8_t
2988 pf_get_wscale(struct mbuf *m, int off, u_int16_t th_off, sa_family_t af)
2989 {
2990         int              hlen;
2991         u_int8_t         hdr[60];
2992         u_int8_t        *opt, optlen;
2993         u_int8_t         wscale = 0;
2994
2995         hlen = th_off << 2;             /* hlen <= sizeof(hdr) */
2996         if (hlen <= sizeof(struct tcphdr))
2997                 return (0);
2998         if (!pf_pull_hdr(m, off, hdr, hlen, NULL, NULL, af))
2999                 return (0);
3000         opt = hdr + sizeof(struct tcphdr);
3001         hlen -= sizeof(struct tcphdr);
3002         while (hlen >= 3) {
3003                 switch (*opt) {
3004                 case TCPOPT_EOL:
3005                 case TCPOPT_NOP:
3006                         ++opt;
3007                         --hlen;
3008                         break;
3009                 case TCPOPT_WINDOW:
3010                         wscale = opt[2];
3011                         if (wscale > TCP_MAX_WINSHIFT)
3012                                 wscale = TCP_MAX_WINSHIFT;
3013                         wscale |= PF_WSCALE_FLAG;
3014                         /* FALLTHROUGH */
3015                 default:
3016                         optlen = opt[1];
3017                         if (optlen < 2)
3018                                 optlen = 2;
3019                         hlen -= optlen;
3020                         opt += optlen;
3021                         break;
3022                 }
3023         }
3024         return (wscale);
3025 }
3026
3027 u_int16_t
3028 pf_get_mss(struct mbuf *m, int off, u_int16_t th_off, sa_family_t af)
3029 {
3030         int              hlen;
3031         u_int8_t         hdr[60];
3032         u_int8_t        *opt, optlen;
3033         u_int16_t        mss = tcp_mssdflt;
3034
3035         hlen = th_off << 2;     /* hlen <= sizeof(hdr) */
3036         if (hlen <= sizeof(struct tcphdr))
3037                 return (0);
3038         if (!pf_pull_hdr(m, off, hdr, hlen, NULL, NULL, af))
3039                 return (0);
3040         opt = hdr + sizeof(struct tcphdr);
3041         hlen -= sizeof(struct tcphdr);
3042         while (hlen >= TCPOLEN_MAXSEG) {
3043                 switch (*opt) {
3044                 case TCPOPT_EOL:
3045                 case TCPOPT_NOP:
3046                         ++opt;
3047                         --hlen;
3048                         break;
3049                 case TCPOPT_MAXSEG:
3050                         bcopy((caddr_t)(opt + 2), (caddr_t)&mss, 2);
3051                         /* FALLTHROUGH */
3052                 default:
3053                         optlen = opt[1];
3054                         if (optlen < 2)
3055                                 optlen = 2;
3056                         hlen -= optlen;
3057                         opt += optlen;
3058                         break;
3059                 }
3060         }
3061         return (mss);
3062 }
3063
3064 u_int16_t
3065 pf_calc_mss(struct pf_addr *addr, sa_family_t af, u_int16_t offer)
3066 {
3067 #ifdef INET
3068         struct sockaddr_in      *dst;
3069         struct route             ro;
3070 #endif /* INET */
3071 #ifdef INET6
3072         struct sockaddr_in6     *dst6;
3073         struct route_in6         ro6;
3074 #endif /* INET6 */
3075         struct rtentry          *rt = NULL;
3076         int                      hlen = 0;
3077         u_int16_t                mss = tcp_mssdflt;
3078
3079         switch (af) {
3080 #ifdef INET
3081         case AF_INET:
3082                 hlen = sizeof(struct ip);
3083                 bzero(&ro, sizeof(ro));
3084                 dst = (struct sockaddr_in *)&ro.ro_dst;
3085                 dst->sin_family = AF_INET;
3086                 dst->sin_len = sizeof(*dst);
3087                 dst->sin_addr = addr->v4;
3088                 rtalloc_ign(&ro, (RTF_CLONING | RTF_PRCLONING));
3089                 rt = ro.ro_rt;
3090                 break;
3091 #endif /* INET */
3092 #ifdef INET6
3093         case AF_INET6:
3094                 hlen = sizeof(struct ip6_hdr);
3095                 bzero(&ro6, sizeof(ro6));
3096                 dst6 = (struct sockaddr_in6 *)&ro6.ro_dst;
3097                 dst6->sin6_family = AF_INET6;
3098                 dst6->sin6_len = sizeof(*dst6);
3099                 dst6->sin6_addr = addr->v6;
3100                 rtalloc_ign((struct route *)&ro6, (RTF_CLONING | RTF_PRCLONING));
3101                 rt = ro6.ro_rt;
3102                 break;
3103 #endif /* INET6 */
3104         }
3105
3106         if (rt && rt->rt_ifp) {
3107                 mss = rt->rt_ifp->if_mtu - hlen - sizeof(struct tcphdr);
3108                 mss = max(tcp_mssdflt, mss);
3109                 RTFREE(rt);
3110         }
3111         mss = min(mss, offer);
3112         mss = max(mss, 64);             /* sanity - at least max opt space */
3113         return (mss);
3114 }
3115
3116 void
3117 pf_set_rt_ifp(struct pf_state *s, struct pf_addr *saddr)
3118 {
3119         struct pf_rule *r = s->rule.ptr;
3120
3121         s->rt_kif = NULL;
3122         if (!r->rt || r->rt == PF_FASTROUTE)
3123                 return;
3124         switch (s->key[PF_SK_WIRE]->af) {
3125 #ifdef INET
3126         case AF_INET:
3127                 pf_map_addr(AF_INET, r, saddr, &s->rt_addr, NULL,
3128                     &s->nat_src_node);
3129                 s->rt_kif = r->rpool.cur->kif;
3130                 break;
3131 #endif /* INET */
3132 #ifdef INET6
3133         case AF_INET6:
3134                 pf_map_addr(AF_INET6, r, saddr, &s->rt_addr, NULL,
3135                     &s->nat_src_node);
3136                 s->rt_kif = r->rpool.cur->kif;
3137                 break;
3138 #endif /* INET6 */
3139         }
3140 }
3141
3142 u_int32_t
3143 pf_tcp_iss(struct pf_pdesc *pd)
3144 {
3145         MD5_CTX ctx;
3146         u_int32_t digest[4];
3147
3148         if (pf_tcp_secret_init == 0) {
3149                 karc4rand(pf_tcp_secret, sizeof(pf_tcp_secret));
3150                 MD5Init(&pf_tcp_secret_ctx);
3151                 MD5Update(&pf_tcp_secret_ctx, pf_tcp_secret,
3152                     sizeof(pf_tcp_secret));
3153                 pf_tcp_secret_init = 1;
3154         }
3155         ctx = pf_tcp_secret_ctx;
3156
3157         MD5Update(&ctx, (char *)&pd->hdr.tcp->th_sport, sizeof(u_short));
3158         MD5Update(&ctx, (char *)&pd->hdr.tcp->th_dport, sizeof(u_short));
3159         if (pd->af == AF_INET6) {
3160                 MD5Update(&ctx, (char *)&pd->src->v6, sizeof(struct in6_addr));
3161                 MD5Update(&ctx, (char *)&pd->dst->v6, sizeof(struct in6_addr));
3162         } else {
3163                 MD5Update(&ctx, (char *)&pd->src->v4, sizeof(struct in_addr));
3164                 MD5Update(&ctx, (char *)&pd->dst->v4, sizeof(struct in_addr));
3165         }
3166         MD5Final((u_char *)digest, &ctx);
3167         pf_tcp_iss_off += 4096;
3168         return (digest[0] + pd->hdr.tcp->th_seq + pf_tcp_iss_off);
3169 }
3170
3171 int
3172 pf_test_rule(struct pf_rule **rm, struct pf_state **sm, int direction,
3173     struct pfi_kif *kif, struct mbuf *m, int off, void *h,
3174     struct pf_pdesc *pd, struct pf_rule **am, struct pf_ruleset **rsm,
3175     struct ifqueue *ifq, struct inpcb *inp)
3176 {
3177         struct pf_rule          *nr = NULL;
3178         struct pf_addr          *saddr = pd->src, *daddr = pd->dst;
3179         sa_family_t              af = pd->af;
3180         struct pf_rule          *r, *a = NULL;
3181         struct pf_ruleset       *ruleset = NULL;
3182         struct pf_src_node      *nsn = NULL;
3183         struct tcphdr           *th = pd->hdr.tcp;
3184         struct pf_state_key     *skw = NULL, *sks = NULL;
3185         struct pf_state_key     *sk = NULL, *nk = NULL;
3186         u_short                  reason;
3187         int                      rewrite = 0, hdrlen = 0;
3188         int                      tag = -1, rtableid = -1;
3189         int                      asd = 0;
3190         int                      match = 0;
3191         int                      state_icmp = 0;
3192         u_int16_t                sport = 0, dport = 0;
3193         u_int16_t                nport = 0, bport = 0;
3194         u_int16_t                bproto_sum = 0, bip_sum = 0;
3195         u_int8_t                 icmptype = 0, icmpcode = 0;
3196
3197
3198         if (direction == PF_IN && pf_check_congestion(ifq)) {
3199                 REASON_SET(&reason, PFRES_CONGEST);
3200                 return (PF_DROP);
3201         }
3202
3203         if (inp != NULL)
3204                 pd->lookup.done = pf_socket_lookup(direction, pd);
3205         else if (debug_pfugidhack) { 
3206                 DPFPRINTF(PF_DEBUG_MISC, ("pf: unlocked lookup\n"));
3207                 pd->lookup.done = pf_socket_lookup(direction, pd);
3208         }
3209
3210         switch (pd->proto) {
3211         case IPPROTO_TCP:
3212                 sport = th->th_sport;
3213                 dport = th->th_dport;
3214                 hdrlen = sizeof(*th);
3215                 break;
3216         case IPPROTO_UDP:
3217                 sport = pd->hdr.udp->uh_sport;
3218                 dport = pd->hdr.udp->uh_dport;
3219                 hdrlen = sizeof(*pd->hdr.udp);
3220                 break;
3221 #ifdef INET
3222         case IPPROTO_ICMP:
3223                 if (pd->af != AF_INET)
3224                         break;
3225                 sport = dport = pd->hdr.icmp->icmp_id;
3226                 hdrlen = sizeof(*pd->hdr.icmp);
3227                 icmptype = pd->hdr.icmp->icmp_type;
3228                 icmpcode = pd->hdr.icmp->icmp_code;
3229
3230                 if (icmptype == ICMP_UNREACH ||
3231                     icmptype == ICMP_SOURCEQUENCH ||
3232                     icmptype == ICMP_REDIRECT ||
3233                     icmptype == ICMP_TIMXCEED ||
3234                     icmptype == ICMP_PARAMPROB)
3235                         state_icmp++;
3236                 break;
3237 #endif /* INET */
3238 #ifdef INET6
3239         case IPPROTO_ICMPV6:
3240                 if (af != AF_INET6)
3241                         break;
3242                 sport = dport = pd->hdr.icmp6->icmp6_id;
3243                 hdrlen = sizeof(*pd->hdr.icmp6);
3244                 icmptype = pd->hdr.icmp6->icmp6_type;
3245                 icmpcode = pd->hdr.icmp6->icmp6_code;
3246
3247                 if (icmptype == ICMP6_DST_UNREACH ||
3248                     icmptype == ICMP6_PACKET_TOO_BIG ||
3249                     icmptype == ICMP6_TIME_EXCEEDED ||
3250                     icmptype == ICMP6_PARAM_PROB)
3251                         state_icmp++;
3252                 break;
3253 #endif /* INET6 */
3254         default:
3255                 sport = dport = hdrlen = 0;
3256                 break;
3257         }
3258
3259         r = TAILQ_FIRST(pf_main_ruleset.rules[PF_RULESET_FILTER].active.ptr);
3260
3261         bport = nport = sport;
3262         /* check packet for BINAT/NAT/RDR */
3263         if ((nr = pf_get_translation(pd, m, off, direction, kif, &nsn,
3264             &skw, &sks, &sk, &nk, saddr, daddr, sport, dport)) != NULL) {
3265                 if (nk == NULL || sk == NULL) {
3266                         REASON_SET(&reason, PFRES_MEMORY);
3267                         goto cleanup;
3268                 }
3269
3270                 if (pd->ip_sum)
3271                         bip_sum = *pd->ip_sum;
3272
3273                 switch (pd->proto) {
3274                 case IPPROTO_TCP:
3275                         bproto_sum = th->th_sum;
3276                         pd->proto_sum = &th->th_sum;
3277
3278                         if (PF_ANEQ(saddr, &nk->addr[pd->sidx], af) ||
3279                             nk->port[pd->sidx] != sport) {
3280                                 pf_change_ap(saddr, &th->th_sport, pd->ip_sum,
3281                                     &th->th_sum, &nk->addr[pd->sidx],
3282                                     nk->port[pd->sidx], 0, af);
3283                                 pd->sport = &th->th_sport;
3284                                 sport = th->th_sport;
3285                         }
3286
3287                         if (PF_ANEQ(daddr, &nk->addr[pd->didx], af) ||
3288                             nk->port[pd->didx] != dport) {
3289                                 pf_change_ap(daddr, &th->th_dport, pd->ip_sum,
3290                                     &th->th_sum, &nk->addr[pd->didx],
3291                                     nk->port[pd->didx], 0, af);
3292                                 dport = th->th_dport;
3293                                 pd->dport = &th->th_dport;
3294                         }
3295                         rewrite++;
3296                         break;
3297                 case IPPROTO_UDP:
3298                         bproto_sum = pd->hdr.udp->uh_sum;
3299                         pd->proto_sum = &pd->hdr.udp->uh_sum;
3300
3301                         if (PF_ANEQ(saddr, &nk->addr[pd->sidx], af) ||
3302                             nk->port[pd->sidx] != sport) {
3303                                 pf_change_ap(saddr, &pd->hdr.udp->uh_sport,
3304                                     pd->ip_sum, &pd->hdr.udp->uh_sum,
3305                                     &nk->addr[pd->sidx],
3306                                     nk->port[pd->sidx], 1, af);
3307                                 sport = pd->hdr.udp->uh_sport;
3308                                 pd->sport = &pd->hdr.udp->uh_sport;
3309                         }
3310
3311                         if (PF_ANEQ(daddr, &nk->addr[pd->didx], af) ||
3312                             nk->port[pd->didx] != dport) {
3313                                 pf_change_ap(daddr, &pd->hdr.udp->uh_dport,
3314                                     pd->ip_sum, &pd->hdr.udp->uh_sum,
3315                                     &nk->addr[pd->didx],
3316                                     nk->port[pd->didx], 1, af);
3317                                 dport = pd->hdr.udp->uh_dport;
3318                                 pd->dport = &pd->hdr.udp->uh_dport;
3319                         }
3320                         rewrite++;
3321                         break;
3322 #ifdef INET
3323                 case IPPROTO_ICMP:
3324                         nk->port[0] = nk->port[1];
3325                         if (PF_ANEQ(saddr, &nk->addr[pd->sidx], AF_INET))
3326                                 pf_change_a(&saddr->v4.s_addr, pd->ip_sum,
3327                                     nk->addr[pd->sidx].v4.s_addr, 0);
3328
3329                         if (PF_ANEQ(daddr, &nk->addr[pd->didx], AF_INET))
3330                                 pf_change_a(&daddr->v4.s_addr, pd->ip_sum,
3331                                     nk->addr[pd->didx].v4.s_addr, 0);
3332
3333                         if (nk->port[1] != pd->hdr.icmp->icmp_id) {
3334                                 pd->hdr.icmp->icmp_cksum = pf_cksum_fixup(
3335                                     pd->hdr.icmp->icmp_cksum, sport,
3336                                     nk->port[1], 0);
3337                                 pd->hdr.icmp->icmp_id = nk->port[1];
3338                                 pd->sport = &pd->hdr.icmp->icmp_id;
3339                         }
3340                         m_copyback(m, off, ICMP_MINLEN, (caddr_t)pd->hdr.icmp);
3341                         break;
3342 #endif /* INET */
3343 #ifdef INET6
3344                 case IPPROTO_ICMPV6:
3345                         nk->port[0] = nk->port[1];
3346                         if (PF_ANEQ(saddr, &nk->addr[pd->sidx], AF_INET6))
3347                                 pf_change_a6(saddr, &pd->hdr.icmp6->icmp6_cksum,
3348                                     &nk->addr[pd->sidx], 0);
3349
3350                         if (PF_ANEQ(daddr, &nk->addr[pd->didx], AF_INET6))
3351                                 pf_change_a6(daddr, &pd->hdr.icmp6->icmp6_cksum,
3352                                     &nk->addr[pd->didx], 0);
3353                         rewrite++;
3354                         break;
3355 #endif /* INET */
3356                 default:
3357                         switch (af) {
3358 #ifdef INET
3359                         case AF_INET:
3360                                 if (PF_ANEQ(saddr,
3361                                     &nk->addr[pd->sidx], AF_INET))
3362                                         pf_change_a(&saddr->v4.s_addr,
3363                                             pd->ip_sum,
3364                                             nk->addr[pd->sidx].v4.s_addr, 0);
3365
3366                                 if (PF_ANEQ(daddr,
3367                                     &nk->addr[pd->didx], AF_INET))
3368                                         pf_change_a(&daddr->v4.s_addr,
3369                                             pd->ip_sum,
3370                                             nk->addr[pd->didx].v4.s_addr, 0);
3371                                 break;
3372 #endif /* INET */
3373 #ifdef INET6
3374                         case AF_INET6:
3375                                 if (PF_ANEQ(saddr,
3376                                     &nk->addr[pd->sidx], AF_INET6))
3377                                         PF_ACPY(saddr, &nk->addr[pd->sidx], af);
3378
3379                                 if (PF_ANEQ(daddr,
3380                                     &nk->addr[pd->didx], AF_INET6))
3381                                         PF_ACPY(saddr, &nk->addr[pd->didx], af);
3382                                 break;
3383 #endif /* INET */
3384                         }
3385                         break;
3386                 }
3387                 if (nr->natpass)
3388                         r = NULL;
3389                 pd->nat_rule = nr;
3390         }
3391
3392         while (r != NULL) {
3393                 r->evaluations++;
3394                 if (pfi_kif_match(r->kif, kif) == r->ifnot)
3395                         r = r->skip[PF_SKIP_IFP].ptr;
3396                 else if (r->direction && r->direction != direction)
3397                         r = r->skip[PF_SKIP_DIR].ptr;
3398                 else if (r->af && r->af != af)
3399                         r = r->skip[PF_SKIP_AF].ptr;
3400                 else if (r->proto && r->proto != pd->proto)
3401                         r = r->skip[PF_SKIP_PROTO].ptr;
3402                 else if (PF_MISMATCHAW(&r->src.addr, saddr, af,
3403                     r->src.neg, kif))
3404                         r = r->skip[PF_SKIP_SRC_ADDR].ptr;
3405                 /* tcp/udp only. port_op always 0 in other cases */
3406                 else if (r->src.port_op && !pf_match_port(r->src.port_op,
3407                     r->src.port[0], r->src.port[1], sport))
3408                         r = r->skip[PF_SKIP_SRC_PORT].ptr;
3409                 else if (PF_MISMATCHAW(&r->dst.addr, daddr, af,
3410                     r->dst.neg, NULL))
3411                         r = r->skip[PF_SKIP_DST_ADDR].ptr;
3412                 /* tcp/udp only. port_op always 0 in other cases */
3413                 else if (r->dst.port_op && !pf_match_port(r->dst.port_op,
3414                     r->dst.port[0], r->dst.port[1], dport))
3415                         r = r->skip[PF_SKIP_DST_PORT].ptr;
3416                 /* icmp only. type always 0 in other cases */
3417                 else if (r->type && r->type != icmptype + 1)
3418                         r = TAILQ_NEXT(r, entries);
3419                 /* icmp only. type always 0 in other cases */
3420                 else if (r->code && r->code != icmpcode + 1)
3421                         r = TAILQ_NEXT(r, entries);
3422                 else if (r->tos && !(r->tos == pd->tos))
3423                         r = TAILQ_NEXT(r, entries);
3424                 else if (r->rule_flag & PFRULE_FRAGMENT)
3425                         r = TAILQ_NEXT(r, entries);
3426                 else if (pd->proto == IPPROTO_TCP &&
3427                     (r->flagset & th->th_flags) != r->flags)
3428                         r = TAILQ_NEXT(r, entries);
3429                 /* tcp/udp only. uid.op always 0 in other cases */
3430                 else if (r->uid.op && (pd->lookup.done || (pd->lookup.done =
3431                     pf_socket_lookup(direction, pd), 1)) &&
3432                     !pf_match_uid(r->uid.op, r->uid.uid[0], r->uid.uid[1],
3433                     pd->lookup.uid))
3434                         r = TAILQ_NEXT(r, entries);
3435                 /* tcp/udp only. gid.op always 0 in other cases */
3436                 else if (r->gid.op && (pd->lookup.done || (pd->lookup.done =
3437                     pf_socket_lookup(direction, pd), 1)) &&
3438                     !pf_match_gid(r->gid.op, r->gid.gid[0], r->gid.gid[1],
3439                     pd->lookup.gid))
3440                         r = TAILQ_NEXT(r, entries);
3441                 else if (r->prob &&
3442                   r->prob <= karc4random())
3443                         r = TAILQ_NEXT(r, entries);
3444                 else if (r->match_tag && !pf_match_tag(m, r, &tag))
3445                         r = TAILQ_NEXT(r, entries);
3446                 else if (r->os_fingerprint != PF_OSFP_ANY &&
3447                     (pd->proto != IPPROTO_TCP || !pf_osfp_match(
3448                     pf_osfp_fingerprint(pd, m, off, th),
3449                     r->os_fingerprint)))
3450                         r = TAILQ_NEXT(r, entries);
3451                 else {
3452                         if (r->tag)
3453                                 tag = r->tag;
3454                         if (r->rtableid >= 0)
3455                                 rtableid = r->rtableid;
3456                         if (r->anchor == NULL) {
3457                                 match = 1;
3458                                 *rm = r;
3459                                 *am = a;
3460                                 *rsm = ruleset;
3461                                 if ((*rm)->quick)
3462                                         break;
3463                                 r = TAILQ_NEXT(r, entries);
3464                         } else
3465                                 pf_step_into_anchor(&asd, &ruleset,
3466                                     PF_RULESET_FILTER, &r, &a, &match);
3467                 }
3468                 if (r == NULL && pf_step_out_of_anchor(&asd, &ruleset,
3469                     PF_RULESET_FILTER, &r, &a, &match))
3470                         break;
3471         }
3472         r = *rm;
3473         a = *am;
3474         ruleset = *rsm;
3475
3476         REASON_SET(&reason, PFRES_MATCH);
3477
3478         if (r->log || (nr != NULL && nr->log)) {
3479                 if (rewrite)
3480                         m_copyback(m, off, hdrlen, pd->hdr.any);
3481                 PFLOG_PACKET(kif, h, m, af, direction, reason, r->log ? r : nr,
3482                     a, ruleset, pd);
3483         }
3484
3485         if ((r->action == PF_DROP) &&
3486             ((r->rule_flag & PFRULE_RETURNRST) ||
3487             (r->rule_flag & PFRULE_RETURNICMP) ||
3488             (r->rule_flag & PFRULE_RETURN))) {
3489                 /* undo NAT changes, if they have taken place */
3490                 if (nr != NULL) {
3491                         PF_ACPY(saddr, &sk->addr[pd->sidx], af);
3492                         PF_ACPY(daddr, &sk->addr[pd->didx], af);
3493                         if (pd->sport)
3494                                 *pd->sport = sk->port[pd->sidx];
3495                         if (pd->dport)
3496                                 *pd->dport = sk->port[pd->didx];
3497                         if (pd->proto_sum)
3498                                 *pd->proto_sum = bproto_sum;
3499                         if (pd->ip_sum)
3500                                 *pd->ip_sum = bip_sum;
3501                         m_copyback(m, off, hdrlen, pd->hdr.any);
3502                 }
3503                 if (pd->proto == IPPROTO_TCP &&
3504                     ((r->rule_flag & PFRULE_RETURNRST) ||
3505                     (r->rule_flag & PFRULE_RETURN)) &&
3506                     !(th->th_flags & TH_RST)) {
3507                         u_int32_t        ack = ntohl(th->th_seq) + pd->p_len;
3508                         int              len = 0;
3509                         struct ip       *h4;
3510                         struct ip6_hdr  *h6;
3511
3512                         switch (af) {
3513                         case AF_INET:
3514                                 h4 = mtod(m, struct ip *);
3515                                 len = h4->ip_len - off;
3516                                 break;
3517 #ifdef INET6
3518                         case AF_INET6:
3519                                 h6 = mtod(m, struct ip6_hdr *);
3520                                 len = h6->ip6_plen - (off - sizeof(*h6));
3521                                 break;
3522 #endif
3523                         }
3524
3525                         if (pf_check_proto_cksum(m, off, len, IPPROTO_TCP, af))
3526                                 REASON_SET(&reason, PFRES_PROTCKSUM);
3527                         else {
3528                                 if (th->th_flags & TH_SYN)
3529                                         ack++;
3530                                 if (th->th_flags & TH_FIN)
3531                                         ack++;
3532                                 pf_send_tcp(r, af, pd->dst,
3533                                     pd->src, th->th_dport, th->th_sport,
3534                                     ntohl(th->th_ack), ack, TH_RST|TH_ACK, 0, 0,
3535                                     r->return_ttl, 1, 0, pd->eh, kif->pfik_ifp);
3536                         }
3537                 } else if (pd->proto != IPPROTO_ICMP && af == AF_INET &&
3538                     r->return_icmp)
3539                         pf_send_icmp(m, r->return_icmp >> 8,
3540                             r->return_icmp & 255, af, r);
3541                 else if (pd->proto != IPPROTO_ICMPV6 && af == AF_INET6 &&
3542                     r->return_icmp6)
3543                         pf_send_icmp(m, r->return_icmp6 >> 8,
3544                             r->return_icmp6 & 255, af, r);
3545         }
3546
3547         if (r->action == PF_DROP)
3548                 goto cleanup;
3549
3550         if (pf_tag_packet(m, tag, rtableid)) {
3551                 REASON_SET(&reason, PFRES_MEMORY);
3552                 goto cleanup;
3553         }
3554
3555         if (!state_icmp && (r->keep_state || nr != NULL ||
3556             (pd->flags & PFDESC_TCP_NORM))) {
3557                 int action;
3558                 action = pf_create_state(r, nr, a, pd, nsn, skw, sks, nk, sk, m,
3559                     off, sport, dport, &rewrite, kif, sm, tag, bproto_sum,
3560                     bip_sum, hdrlen);
3561                 if (action != PF_PASS)
3562                         return (action);
3563         }
3564
3565         /* copy back packet headers if we performed NAT operations */
3566         if (rewrite)
3567                 m_copyback(m, off, hdrlen, pd->hdr.any);
3568
3569         return (PF_PASS);
3570
3571 cleanup:
3572         if (sk != NULL)
3573                 pool_put(&pf_state_key_pl, sk);
3574         if (nk != NULL)
3575                 pool_put(&pf_state_key_pl, nk);
3576         return (PF_DROP);
3577 }
3578
3579 static __inline int
3580 pf_create_state(struct pf_rule *r, struct pf_rule *nr, struct pf_rule *a,
3581     struct pf_pdesc *pd, struct pf_src_node *nsn, struct pf_state_key *skw,
3582     struct pf_state_key *sks, struct pf_state_key *nk, struct pf_state_key *sk,
3583     struct mbuf *m, int off, u_int16_t sport, u_int16_t dport, int *rewrite,
3584     struct pfi_kif *kif, struct pf_state **sm, int tag, u_int16_t bproto_sum,
3585     u_int16_t bip_sum, int hdrlen)
3586 {
3587         struct pf_state         *s = NULL;
3588         struct pf_src_node      *sn = NULL;
3589         struct tcphdr           *th = pd->hdr.tcp;
3590         u_int16_t                mss = tcp_mssdflt;
3591         u_short                  reason;
3592
3593         /* check maximums */
3594         if (r->max_states && (r->states_cur >= r->max_states)) {
3595                 pf_status.lcounters[LCNT_STATES]++;
3596                 REASON_SET(&reason, PFRES_MAXSTATES);
3597                 return (PF_DROP);
3598         }
3599         /* src node for filter rule */
3600         if ((r->rule_flag & PFRULE_SRCTRACK ||
3601             r->rpool.opts & PF_POOL_STICKYADDR) &&
3602             pf_insert_src_node(&sn, r, pd->src, pd->af) != 0) {
3603                 REASON_SET(&reason, PFRES_SRCLIMIT);
3604                 goto csfailed;
3605         }
3606         /* src node for translation rule */
3607         if (nr != NULL && (nr->rpool.opts & PF_POOL_STICKYADDR) &&
3608             pf_insert_src_node(&nsn, nr, &sk->addr[pd->sidx], pd->af)) {
3609                 REASON_SET(&reason, PFRES_SRCLIMIT);
3610                 goto csfailed;
3611         }
3612         s = pool_get(&pf_state_pl, PR_NOWAIT | PR_ZERO);
3613         if (s == NULL) {
3614                 REASON_SET(&reason, PFRES_MEMORY);
3615                 goto csfailed;
3616         }
3617         s->id = 0; /* XXX Do we really need that? not in OpenBSD */
3618         s->creatorid = 0;
3619         s->rule.ptr = r;
3620         s->nat_rule.ptr = nr;
3621         s->anchor.ptr = a;
3622         STATE_INC_COUNTERS(s);
3623         if (r->allow_opts)
3624                 s->state_flags |= PFSTATE_ALLOWOPTS;
3625         if (r->rule_flag & PFRULE_STATESLOPPY)
3626                 s->state_flags |= PFSTATE_SLOPPY;
3627         s->log = r->log & PF_LOG_ALL;
3628         if (nr != NULL)
3629                 s->log |= nr->log & PF_LOG_ALL;
3630         switch (pd->proto) {
3631         case IPPROTO_TCP:
3632                 s->src.seqlo = ntohl(th->th_seq);
3633                 s->src.seqhi = s->src.seqlo + pd->p_len + 1;
3634                 if ((th->th_flags & (TH_SYN|TH_ACK)) == TH_SYN &&
3635                     r->keep_state == PF_STATE_MODULATE) {
3636                         /* Generate sequence number modulator */
3637                         if ((s->src.seqdiff = pf_tcp_iss(pd) - s->src.seqlo) ==
3638                             0)
3639                                 s->src.seqdiff = 1;
3640                         pf_change_a(&th->th_seq, &th->th_sum,
3641                             htonl(s->src.seqlo + s->src.seqdiff), 0);
3642                         *rewrite = 1;
3643                 } else
3644                         s->src.seqdiff = 0;
3645                 if (th->th_flags & TH_SYN) {
3646                         s->src.seqhi++;
3647                         s->src.wscale = pf_get_wscale(m, off,
3648                             th->th_off, pd->af);
3649                 }
3650                 s->src.max_win = MAX(ntohs(th->th_win), 1);
3651                 if (s->src.wscale & PF_WSCALE_MASK) {
3652                         /* Remove scale factor from initial window */
3653                         int win = s->src.max_win;
3654                         win += 1 << (s->src.wscale & PF_WSCALE_MASK);
3655                         s->src.max_win = (win - 1) >>
3656                             (s->src.wscale & PF_WSCALE_MASK);
3657                 }
3658                 if (th->th_flags & TH_FIN)
3659                         s->src.seqhi++;
3660                 s->dst.seqhi = 1;
3661                 s->dst.max_win = 1;
3662                 s->src.state = TCPS_SYN_SENT;
3663                 s->dst.state = TCPS_CLOSED;
3664                 s->timeout = PFTM_TCP_FIRST_PACKET;
3665                 break;
3666         case IPPROTO_UDP:
3667                 s->src.state = PFUDPS_SINGLE;
3668                 s->dst.state = PFUDPS_NO_TRAFFIC;
3669                 s->timeout = PFTM_UDP_FIRST_PACKET;
3670                 break;
3671         case IPPROTO_ICMP:
3672 #ifdef INET6
3673         case IPPROTO_ICMPV6:
3674 #endif
3675                 s->timeout = PFTM_ICMP_FIRST_PACKET;
3676                 break;
3677         default:
3678                 s->src.state = PFOTHERS_SINGLE;
3679                 s->dst.state = PFOTHERS_NO_TRAFFIC;
3680                 s->timeout = PFTM_OTHER_FIRST_PACKET;
3681         }
3682
3683         s->creation = time_second;
3684         s->expire = time_second;
3685
3686         if (sn != NULL) {
3687                 s->src_node = sn;
3688                 s->src_node->states++;
3689         }
3690         if (nsn != NULL) {
3691                 /* XXX We only modify one side for now. */
3692                 PF_ACPY(&nsn->raddr, &nk->addr[1], pd->af);
3693                 s->nat_src_node = nsn;
3694                 s->nat_src_node->states++;
3695         }
3696         if (pd->proto == IPPROTO_TCP) {
3697                 if ((pd->flags & PFDESC_TCP_NORM) && pf_normalize_tcp_init(m,
3698                     off, pd, th, &s->src, &s->dst)) {
3699                         REASON_SET(&reason, PFRES_MEMORY);
3700                         pf_src_tree_remove_state(s);
3701                         STATE_DEC_COUNTERS(s);
3702                         pool_put(&pf_state_pl, s);
3703                         return (PF_DROP);
3704                 }
3705                 if ((pd->flags & PFDESC_TCP_NORM) && s->src.scrub &&
3706                     pf_normalize_tcp_stateful(m, off, pd, &reason, th, s,
3707                     &s->src, &s->dst, rewrite)) {
3708                         /* This really shouldn't happen!!! */
3709                         DPFPRINTF(PF_DEBUG_URGENT,
3710                             ("pf_normalize_tcp_stateful failed on first pkt"));
3711                         pf_normalize_tcp_cleanup(s);
3712                         pf_src_tree_remove_state(s);
3713                         STATE_DEC_COUNTERS(s);
3714                         pool_put(&pf_state_pl, s);
3715                         return (PF_DROP);
3716                 }
3717         }
3718         s->direction = pd->dir;
3719
3720         if (sk == NULL && pf_state_key_setup(pd, nr, &skw, &sks, &sk, &nk,
3721             pd->src, pd->dst, sport, dport))
3722                 goto csfailed;
3723
3724         if (pf_state_insert(BOUND_IFACE(r, kif), skw, sks, s)) {
3725                 if (pd->proto == IPPROTO_TCP)
3726                         pf_normalize_tcp_cleanup(s);
3727                 REASON_SET(&reason, PFRES_STATEINS);
3728                 pf_src_tree_remove_state(s);
3729                 STATE_DEC_COUNTERS(s);
3730                 pool_put(&pf_state_pl, s);
3731                 return (PF_DROP);
3732         } else
3733                 *sm = s;
3734
3735         pf_set_rt_ifp(s, pd->src);      /* needs s->state_key set */
3736         if (tag > 0) {
3737                 pf_tag_ref(tag);
3738                 s->tag = tag;
3739         }
3740         if (pd->proto == IPPROTO_TCP && (th->th_flags & (TH_SYN|TH_ACK)) ==
3741             TH_SYN && r->keep_state == PF_STATE_SYNPROXY) {
3742                 s->src.state = PF_TCPS_PROXY_SRC;
3743                 /* undo NAT changes, if they have taken place */
3744                 if (nr != NULL) {
3745                         struct pf_state_key *skt = s->key[PF_SK_WIRE];
3746                         if (pd->dir == PF_OUT)
3747                                 skt = s->key[PF_SK_STACK];
3748                         PF_ACPY(pd->src, &skt->addr[pd->sidx], pd->af);
3749                         PF_ACPY(pd->dst, &skt->addr[pd->didx], pd->af);
3750                         if (pd->sport)
3751                                 *pd->sport = skt->port[pd->sidx];
3752                         if (pd->dport)
3753                                 *pd->dport = skt->port[pd->didx];
3754                         if (pd->proto_sum)
3755                                 *pd->proto_sum = bproto_sum;
3756                         if (pd->ip_sum)
3757                                 *pd->ip_sum = bip_sum;
3758                         m_copyback(m, off, hdrlen, pd->hdr.any);
3759                 }
3760                 s->src.seqhi = htonl(karc4random());
3761                 /* Find mss option */
3762                 mss = pf_get_mss(m, off, th->th_off, pd->af);
3763                 mss = pf_calc_mss(pd->src, pd->af, mss);
3764                 mss = pf_calc_mss(pd->dst, pd->af, mss);
3765                 s->src.mss = mss;
3766                 pf_send_tcp(r, pd->af, pd->dst, pd->src, th->th_dport,
3767                     th->th_sport, s->src.seqhi, ntohl(th->th_seq) + 1,
3768                     TH_SYN|TH_ACK, 0, s->src.mss, 0, 1, 0, NULL, NULL);
3769                 REASON_SET(&reason, PFRES_SYNPROXY);
3770                 return (PF_SYNPROXY_DROP);
3771         }
3772
3773         return (PF_PASS);
3774
3775 csfailed:
3776         if (sk != NULL)
3777                 pool_put(&pf_state_key_pl, sk);
3778         if (nk != NULL)
3779                 pool_put(&pf_state_key_pl, nk);
3780
3781         if (sn != NULL && sn->states == 0 && sn->expire == 0) {
3782                 RB_REMOVE(pf_src_tree, &tree_src_tracking, sn);
3783                 pf_status.scounters[SCNT_SRC_NODE_REMOVALS]++;
3784                 pf_status.src_nodes--;
3785                 pool_put(&pf_src_tree_pl, sn);
3786         }
3787         if (nsn != sn && nsn != NULL && nsn->states == 0 && nsn->expire == 0) {
3788                 RB_REMOVE(pf_src_tree, &tree_src_tracking, nsn);
3789                 pf_status.scounters[SCNT_SRC_NODE_REMOVALS]++;
3790                 pf_status.src_nodes--;
3791                 pool_put(&pf_src_tree_pl, nsn);
3792         }
3793         return (PF_DROP);
3794 }
3795
3796 int
3797 pf_test_fragment(struct pf_rule **rm, int direction, struct pfi_kif *kif,
3798     struct mbuf *m, void *h, struct pf_pdesc *pd, struct pf_rule **am,
3799     struct pf_ruleset **rsm)
3800 {
3801         struct pf_rule          *r, *a = NULL;
3802         struct pf_ruleset       *ruleset = NULL;
3803         sa_family_t              af = pd->af;
3804         u_short                  reason;
3805         int                      tag = -1;
3806         int                      asd = 0;
3807         int                      match = 0;
3808
3809         r = TAILQ_FIRST(pf_main_ruleset.rules[PF_RULESET_FILTER].active.ptr);
3810         while (r != NULL) {
3811                 r->evaluations++;
3812                 if (pfi_kif_match(r->kif, kif) == r->ifnot)
3813                         r = r->skip[PF_SKIP_IFP].ptr;
3814                 else if (r->direction && r->direction != direction)
3815                         r = r->skip[PF_SKIP_DIR].ptr;
3816                 else if (r->af && r->af != af)
3817                         r = r->skip[PF_SKIP_AF].ptr;
3818                 else if (r->proto && r->proto != pd->proto)
3819                         r = r->skip[PF_SKIP_PROTO].ptr;
3820                 else if (PF_MISMATCHAW(&r->src.addr, pd->src, af,
3821                     r->src.neg, kif))
3822                         r = r->skip[PF_SKIP_SRC_ADDR].ptr;
3823                 else if (PF_MISMATCHAW(&r->dst.addr, pd->dst, af,
3824                     r->dst.neg, NULL))
3825                         r = r->skip[PF_SKIP_DST_ADDR].ptr;
3826                 else if (r->tos && !(r->tos == pd->tos))
3827                         r = TAILQ_NEXT(r, entries);
3828                 else if (r->os_fingerprint != PF_OSFP_ANY)
3829                         r = TAILQ_NEXT(r, entries);
3830                 else if (pd->proto == IPPROTO_UDP &&
3831                     (r->src.port_op || r->dst.port_op))
3832                         r = TAILQ_NEXT(r, entries);
3833                 else if (pd->proto == IPPROTO_TCP &&
3834                     (r->src.port_op || r->dst.port_op || r->flagset))
3835                         r = TAILQ_NEXT(r, entries);
3836                 else if ((pd->proto == IPPROTO_ICMP ||
3837                     pd->proto == IPPROTO_ICMPV6) &&
3838                     (r->type || r->code))
3839                         r = TAILQ_NEXT(r, entries);
3840                 else if (r->prob && r->prob <= karc4random())
3841                         r = TAILQ_NEXT(r, entries);
3842                 else if (r->match_tag && !pf_match_tag(m, r, &tag))
3843                         r = TAILQ_NEXT(r, entries);
3844                 else {
3845                         if (r->anchor == NULL) {
3846                                 match = 1;
3847                                 *rm = r;
3848                                 *am = a;
3849                                 *rsm = ruleset;
3850                                 if ((*rm)->quick)
3851                                         break;
3852                                 r = TAILQ_NEXT(r, entries);
3853                         } else
3854                                 pf_step_into_anchor(&asd, &ruleset,
3855                                     PF_RULESET_FILTER, &r, &a, &match);
3856                 }
3857                 if (r == NULL && pf_step_out_of_anchor(&asd, &ruleset,
3858                     PF_RULESET_FILTER, &r, &a, &match))
3859                         break;
3860         }
3861         r = *rm;
3862         a = *am;
3863         ruleset = *rsm;
3864
3865         REASON_SET(&reason, PFRES_MATCH);
3866
3867         if (r->log)
3868                 PFLOG_PACKET(kif, h, m, af, direction, reason, r, a, ruleset,
3869                     pd);
3870
3871         if (r->action != PF_PASS)
3872                 return (PF_DROP);
3873
3874         if (pf_tag_packet(m, tag, -1)) {
3875                 REASON_SET(&reason, PFRES_MEMORY);
3876                 return (PF_DROP);
3877         }
3878
3879         return (PF_PASS);
3880 }
3881
3882 int
3883 pf_tcp_track_full(struct pf_state_peer *src, struct pf_state_peer *dst,
3884         struct pf_state **state, struct pfi_kif *kif, struct mbuf *m, int off,
3885         struct pf_pdesc *pd, u_short *reason, int *copyback)
3886 {
3887         struct tcphdr           *th = pd->hdr.tcp;
3888         u_int16_t                win = ntohs(th->th_win);
3889         u_int32_t                ack, end, seq, orig_seq;
3890         u_int8_t                 sws, dws;
3891         int                      ackskew;
3892
3893         if (src->wscale && dst->wscale && !(th->th_flags & TH_SYN)) {
3894                 sws = src->wscale & PF_WSCALE_MASK;
3895                 dws = dst->wscale & PF_WSCALE_MASK;
3896         } else
3897                 sws = dws = 0;
3898
3899         /*
3900          * Sequence tracking algorithm from Guido van Rooij's paper:
3901          *   http://www.madison-gurkha.com/publications/tcp_filtering/
3902          *      tcp_filtering.ps
3903          */
3904
3905         orig_seq = seq = ntohl(th->th_seq);
3906         if (src->seqlo == 0) {
3907                 /* First packet from this end. Set its state */
3908
3909                 if ((pd->flags & PFDESC_TCP_NORM || dst->scrub) &&
3910                     src->scrub == NULL) {
3911                         if (pf_normalize_tcp_init(m, off, pd, th, src, dst)) {
3912                                 REASON_SET(reason, PFRES_MEMORY);
3913                                 return (PF_DROP);
3914                         }
3915                 }
3916
3917                 /* Deferred generation of sequence number modulator */
3918                 if (dst->seqdiff && !src->seqdiff) {
3919                         /* use random iss for the TCP server */
3920                         while ((src->seqdiff = karc4random() - seq) == 0)
3921                                 ;
3922                         ack = ntohl(th->th_ack) - dst->seqdiff;
3923                         pf_change_a(&th->th_seq, &th->th_sum, htonl(seq +
3924                             src->seqdiff), 0);
3925                         pf_change_a(&th->th_ack, &th->th_sum, htonl(ack), 0);
3926                         *copyback = 1;
3927                 } else {
3928                         ack = ntohl(th->th_ack);
3929                 }
3930
3931                 end = seq + pd->p_len;
3932                 if (th->th_flags & TH_SYN) {
3933                         end++;
3934                         (*state)->sync_flags |= PFSTATE_GOT_SYN2;
3935                         if (dst->wscale & PF_WSCALE_FLAG) {
3936                                 src->wscale = pf_get_wscale(m, off, th->th_off,
3937                                     pd->af);
3938                                 if (src->wscale & PF_WSCALE_FLAG) {
3939                                         /* Remove scale factor from initial
3940                                          * window */
3941                                         sws = src->wscale & PF_WSCALE_MASK;
3942                                         win = ((u_int32_t)win + (1 << sws) - 1)
3943                                             >> sws;
3944                                         dws = dst->wscale & PF_WSCALE_MASK;
3945                                 } else {
3946                                         /* fixup other window */
3947                                         dst->max_win <<= dst->wscale &
3948                                             PF_WSCALE_MASK;
3949                                         /* in case of a retrans SYN|ACK */
3950                                         dst->wscale = 0;
3951                                 }
3952                         }
3953                 }
3954                 if (th->th_flags & TH_FIN)
3955                         end++;
3956
3957                 src->seqlo = seq;
3958                 if (src->state < TCPS_SYN_SENT)
3959                         src->state = TCPS_SYN_SENT;
3960
3961                 /*
3962                  * May need to slide the window (seqhi may have been set by
3963                  * the crappy stack check or if we picked up the connection
3964                  * after establishment)
3965                  */
3966                 if (src->seqhi == 1 ||
3967                     SEQ_GEQ(end + MAX(1, dst->max_win << dws), src->seqhi))
3968                         src->seqhi = end + MAX(1, dst->max_win << dws);
3969                 if (win > src->max_win)
3970                         src->max_win = win;
3971
3972         } else {
3973                 ack = ntohl(th->th_ack) - dst->seqdiff;
3974                 if (src->seqdiff) {
3975                         /* Modulate sequence numbers */
3976                         pf_change_a(&th->th_seq, &th->th_sum, htonl(seq +
3977                             src->seqdiff), 0);
3978                         pf_change_a(&th->th_ack, &th->th_sum, htonl(ack), 0);
3979                         *copyback = 1;
3980                 }
3981                 end = seq + pd->p_len;
3982                 if (th->th_flags & TH_SYN)
3983                         end++;
3984                 if (th->th_flags & TH_FIN)
3985                         end++;
3986         }
3987
3988         if ((th->th_flags & TH_ACK) == 0) {
3989                 /* Let it pass through the ack skew check */
3990                 ack = dst->seqlo;
3991         } else if ((ack == 0 &&
3992             (th->th_flags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) ||
3993             /* broken tcp stacks do not set ack */
3994             (dst->state < TCPS_SYN_SENT)) {
3995                 /*
3996                  * Many stacks (ours included) will set the ACK number in an
3997                  * FIN|ACK if the SYN times out -- no sequence to ACK.
3998                  */
3999                 ack = dst->seqlo;
4000         }
4001
4002         if (seq == end) {
4003                 /* Ease sequencing restrictions on no data packets */
4004                 seq = src->seqlo;
4005                 end = seq;
4006         }
4007
4008         ackskew = dst->seqlo - ack;
4009
4010
4011         /*
4012          * Need to demodulate the sequence numbers in any TCP SACK options
4013          * (Selective ACK). We could optionally validate the SACK values
4014          * against the current ACK window, either forwards or backwards, but
4015          * I'm not confident that SACK has been implemented properly
4016          * everywhere. It wouldn't surprise me if several stacks accidently
4017          * SACK too far backwards of previously ACKed data. There really aren't
4018          * any security implications of bad SACKing unless the target stack
4019          * doesn't validate the option length correctly. Someone trying to
4020          * spoof into a TCP connection won't bother blindly sending SACK
4021          * options anyway.
4022          */
4023         if (dst->seqdiff && (th->th_off << 2) > sizeof(struct tcphdr)) {
4024                 if (pf_modulate_sack(m, off, pd, th, dst))
4025                         *copyback = 1;
4026         }
4027
4028
4029 #define MAXACKWINDOW (0xffff + 1500)    /* 1500 is an arbitrary fudge factor */
4030         if (SEQ_GEQ(src->seqhi, end) &&
4031             /* Last octet inside other's window space */
4032             SEQ_GEQ(seq, src->seqlo - (dst->max_win << dws)) &&
4033             /* Retrans: not more than one window back */
4034             (ackskew >= -MAXACKWINDOW) &&
4035             /* Acking not more than one reassembled fragment backwards */
4036             (ackskew <= (MAXACKWINDOW << sws)) &&
4037             /* Acking not more than one window forward */
4038             ((th->th_flags & TH_RST) == 0 || orig_seq == src->seqlo ||
4039             (orig_seq == src->seqlo + 1) || (orig_seq + 1 == src->seqlo) ||
4040             (pd->flags & PFDESC_IP_REAS) == 0)) {
4041             /* Require an exact/+1 sequence match on resets when possible */
4042
4043                 if (dst->scrub || src->scrub) {
4044                         if (pf_normalize_tcp_stateful(m, off, pd, reason, th,
4045                             *state, src, dst, copyback))
4046                                 return (PF_DROP);
4047                 }
4048
4049                 /* update max window */
4050                 if (src->max_win < win)
4051                         src->max_win = win;
4052                 /* synchronize sequencing */
4053                 if (SEQ_GT(end, src->seqlo))
4054                         src->seqlo = end;
4055                 /* slide the window of what the other end can send */
4056                 if (SEQ_GEQ(ack + (win << sws), dst->seqhi))
4057                         dst->seqhi = ack + MAX((win << sws), 1);
4058
4059
4060                 /* update states */
4061                 if (th->th_flags & TH_SYN)
4062                         if (src->state < TCPS_SYN_SENT)
4063                                 src->state = TCPS_SYN_SENT;
4064                 if (th->th_flags & TH_FIN)
4065                         if (src->state < TCPS_CLOSING)
4066                                 src->state = TCPS_CLOSING;
4067                 if (th->th_flags & TH_ACK) {
4068                         if (dst->state == TCPS_SYN_SENT) {
4069                                 dst->state = TCPS_ESTABLISHED;
4070                                 if (src->state == TCPS_ESTABLISHED &&
4071                                     (*state)->src_node != NULL &&
4072                                     pf_src_connlimit(state)) {
4073                                         REASON_SET(reason, PFRES_SRCLIMIT);
4074                                         return (PF_DROP);
4075                                 }
4076                         } else if (dst->state == TCPS_CLOSING)
4077                                 dst->state = TCPS_FIN_WAIT_2;
4078                 }
4079                 if (th->th_flags & TH_RST)
4080                         src->state = dst->state = TCPS_TIME_WAIT;
4081
4082                 /* update expire time */
4083                 (*state)->expire = time_second;
4084                 if (src->state >= TCPS_FIN_WAIT_2 &&
4085                     dst->state >= TCPS_FIN_WAIT_2)
4086                         (*state)->timeout = PFTM_TCP_CLOSED;
4087                 else if (src->state >= TCPS_CLOSING &&
4088                     dst->state >= TCPS_CLOSING)
4089                         (*state)->timeout = PFTM_TCP_FIN_WAIT;
4090                 else if (src->state < TCPS_ESTABLISHED ||
4091                     dst->state < TCPS_ESTABLISHED)
4092                         (*state)->timeout = PFTM_TCP_OPENING;
4093                 else if (src->state >= TCPS_CLOSING ||
4094                     dst->state >= TCPS_CLOSING)
4095                         (*state)->timeout = PFTM_TCP_CLOSING;
4096                 else
4097                         (*state)->timeout = PFTM_TCP_ESTABLISHED;
4098
4099                 /* Fall through to PASS packet */
4100
4101         } else if ((dst->state < TCPS_SYN_SENT ||
4102                 dst->state >= TCPS_FIN_WAIT_2 ||
4103                 src->state >= TCPS_FIN_WAIT_2) &&
4104             SEQ_GEQ(src->seqhi + MAXACKWINDOW, end) &&
4105             /* Within a window forward of the originating packet */
4106             SEQ_GEQ(seq, src->seqlo - MAXACKWINDOW)) {
4107             /* Within a window backward of the originating packet */
4108
4109                 /*
4110                  * This currently handles three situations:
4111                  *  1) Stupid stacks will shotgun SYNs before their peer
4112                  *     replies.
4113                  *  2) When PF catches an already established stream (the
4114                  *     firewall rebooted, the state table was flushed, routes
4115                  *     changed...)
4116                  *  3) Packets get funky immediately after the connection
4117                  *     closes (this should catch Solaris spurious ACK|FINs
4118                  *     that web servers like to spew after a close)
4119                  *
4120                  * This must be a little more careful than the above code
4121                  * since packet floods will also be caught here. We don't
4122                  * update the TTL here to mitigate the damage of a packet
4123                  * flood and so the same code can handle awkward establishment
4124                  * and a loosened connection close.
4125                  * In the establishment case, a correct peer response will
4126                  * validate the connection, go through the normal state code
4127                  * and keep updating the state TTL.
4128                  */
4129
4130                 if (pf_status.debug >= PF_DEBUG_MISC) {
4131                         kprintf("pf: loose state match: ");
4132                         pf_print_state(*state);
4133                         pf_print_flags(th->th_flags);
4134                         kprintf(" seq=%u (%u) ack=%u len=%u ackskew=%d "
4135                             "pkts=%llu:%llu dir=%s,%s\n", seq, orig_seq, ack, pd->p_len,
4136                             ackskew, (unsigned long long)(*state)->packets[0],
4137                             (unsigned long long)(*state)->packets[1],
4138                             pd->dir == PF_IN ? "in" : "out",
4139                             pd->dir == (*state)->direction ? "fwd" : "rev");
4140                 }
4141
4142                 if (dst->scrub || src->scrub) {
4143                         if (pf_normalize_tcp_stateful(m, off, pd, reason, th,
4144                             *state, src, dst, copyback))
4145                                 return (PF_DROP);
4146                 }
4147
4148                 /* update max window */
4149                 if (src->max_win < win)
4150                         src->max_win = win;
4151                 /* synchronize sequencing */
4152                 if (SEQ_GT(end, src->seqlo))
4153                         src->seqlo = end;
4154                 /* slide the window of what the other end can send */
4155                 if (SEQ_GEQ(ack + (win << sws), dst->seqhi))
4156                         dst->seqhi = ack + MAX((win << sws), 1);
4157
4158                 /*
4159                  * Cannot set dst->seqhi here since this could be a shotgunned
4160                  * SYN and not an already established connection.
4161                  */
4162
4163                 if (th->th_flags & TH_FIN)
4164                         if (src->state < TCPS_CLOSING)
4165                                 src->state = TCPS_CLOSING;
4166                 if (th->th_flags & TH_RST)
4167                         src->state = dst->state = TCPS_TIME_WAIT;
4168
4169                 /* Fall through to PASS packet */
4170
4171         } else if ((*state)->pickup_mode == PF_PICKUPS_HASHONLY ||
4172                     ((*state)->pickup_mode == PF_PICKUPS_ENABLED &&
4173                      ((*state)->sync_flags & PFSTATE_GOT_SYN_MASK) !=
4174                       PFSTATE_GOT_SYN_MASK)) {
4175                 /*
4176                  * If pickup mode is hash only, do not fail on sequence checks.
4177                  *
4178                  * If pickup mode is enabled and we did not see the SYN in
4179                  * both direction, do not fail on sequence checks because
4180                  * we do not have complete information on window scale.
4181                  *
4182                  * Adjust expiration and fall through to PASS packet.
4183                  * XXX Add a FIN check to reduce timeout?
4184                  */
4185                 (*state)->expire = time_second;
4186         } else  {
4187                 /*
4188                  * Failure processing
4189                  */
4190                 if ((*state)->dst.state == TCPS_SYN_SENT &&
4191                     (*state)->src.state == TCPS_SYN_SENT) {
4192                         /* Send RST for state mismatches during handshake */
4193                         if (!(th->th_flags & TH_RST))
4194                                 pf_send_tcp((*state)->rule.ptr, pd->af,
4195                                     pd->dst, pd->src, th->th_dport,
4196                                     th->th_sport, ntohl(th->th_ack), 0,
4197                                     TH_RST, 0, 0,
4198                                     (*state)->rule.ptr->return_ttl, 1, 0,
4199                                     pd->eh, kif->pfik_ifp);
4200                         src->seqlo = 0;
4201                         src->seqhi = 1;
4202                         src->max_win = 1;
4203                 } else if (pf_status.debug >= PF_DEBUG_MISC) {
4204                         kprintf("pf: BAD state: ");
4205                         pf_print_state(*state);
4206                         pf_print_flags(th->th_flags);
4207                         kprintf(" seq=%u (%u) ack=%u len=%u ackskew=%d "
4208                             "pkts=%llu:%llu dir=%s,%s\n",
4209                             seq, orig_seq, ack, pd->p_len, ackskew,
4210                             (unsigned long long)(*state)->packets[0],
4211                                 (unsigned long long)(*state)->packets[1],
4212                             pd->dir == PF_IN ? "in" : "out",
4213                             pd->dir == (*state)->direction ? "fwd" : "rev");
4214                         kprintf("pf: State failure on: %c %c %c %c | %c %c\n",
4215                             SEQ_GEQ(src->seqhi, end) ? ' ' : '1',
4216                             SEQ_GEQ(seq, src->seqlo - (dst->max_win << dws)) ?
4217                             ' ': '2',
4218                             (ackskew >= -MAXACKWINDOW) ? ' ' : '3',
4219                             (ackskew <= (MAXACKWINDOW << sws)) ? ' ' : '4',
4220                             SEQ_GEQ(src->seqhi + MAXACKWINDOW, end) ?' ' :'5',
4221                             SEQ_GEQ(seq, src->seqlo - MAXACKWINDOW) ?' ' :'6');
4222                 }
4223                 REASON_SET(reason, PFRES_BADSTATE);
4224                 return (PF_DROP);
4225         }
4226
4227         return (PF_PASS);
4228 }
4229
4230 int
4231 pf_tcp_track_sloppy(struct pf_state_peer *src, struct pf_state_peer *dst,
4232         struct pf_state **state, struct pf_pdesc *pd, u_short *reason)
4233 {
4234         struct tcphdr           *th = pd->hdr.tcp;
4235
4236         if (th->th_flags & TH_SYN)
4237                 if (src->state < TCPS_SYN_SENT)
4238                         src->state = TCPS_SYN_SENT;
4239         if (th->th_flags & TH_FIN)
4240                 if (src->state < TCPS_CLOSING)
4241                         src->state = TCPS_CLOSING;
4242         if (th->th_flags & TH_ACK) {
4243                 if (dst->state == TCPS_SYN_SENT) {
4244                         dst->state = TCPS_ESTABLISHED;
4245                         if (src->state == TCPS_ESTABLISHED &&
4246                             (*state)->src_node != NULL &&
4247                             pf_src_connlimit(state)) {
4248                                 REASON_SET(reason, PFRES_SRCLIMIT);
4249                                 return (PF_DROP);
4250                         }
4251                 } else if (dst->state == TCPS_CLOSING) {
4252                         dst->state = TCPS_FIN_WAIT_2;
4253                 } else if (src->state == TCPS_SYN_SENT &&
4254                     dst->state < TCPS_SYN_SENT) {
4255                         /*
4256                          * Handle a special sloppy case where we only see one
4257                          * half of the connection. If there is a ACK after
4258                          * the initial SYN without ever seeing a packet from
4259                          * the destination, set the connection to established.
4260                          */
4261                         dst->state = src->state = TCPS_ESTABLISHED;
4262                         if ((*state)->src_node != NULL &&
4263                             pf_src_connlimit(state)) {
4264                                 REASON_SET(reason, PFRES_SRCLIMIT);
4265                                 return (PF_DROP);
4266                         }
4267                 } else if (src->state == TCPS_CLOSING &&
4268                     dst->state == TCPS_ESTABLISHED &&
4269                     dst->seqlo == 0) {
4270                         /*
4271                          * Handle the closing of half connections where we
4272                          * don't see the full bidirectional FIN/ACK+ACK
4273                          * handshake.
4274                          */
4275                         dst->state = TCPS_CLOSING;
4276                 }
4277         }
4278         if (th->th_flags & TH_RST)
4279                 src->state = dst->state = TCPS_TIME_WAIT;
4280
4281         /* update expire time */
4282         (*state)->expire = time_second;
4283         if (src->state >= TCPS_FIN_WAIT_2 &&
4284             dst->state >= TCPS_FIN_WAIT_2)
4285                 (*state)->timeout = PFTM_TCP_CLOSED;
4286         else if (src->state >= TCPS_CLOSING &&
4287             dst->state >= TCPS_CLOSING)
4288                 (*state)->timeout = PFTM_TCP_FIN_WAIT;
4289         else if (src->state < TCPS_ESTABLISHED ||
4290             dst->state < TCPS_ESTABLISHED)
4291                 (*state)->timeout = PFTM_TCP_OPENING;
4292         else if (src->state >= TCPS_CLOSING ||
4293             dst->state >= TCPS_CLOSING)
4294                 (*state)->timeout = PFTM_TCP_CLOSING;
4295         else
4296                 (*state)->timeout = PFTM_TCP_ESTABLISHED;
4297
4298         return (PF_PASS);
4299 }
4300
4301 int
4302 pf_test_state_tcp(struct pf_state **state, int direction, struct pfi_kif *kif,
4303     struct mbuf *m, int off, void *h, struct pf_pdesc *pd,
4304     u_short *reason)
4305 {
4306         struct pf_state_key_cmp  key;
4307         struct tcphdr           *th = pd->hdr.tcp;
4308         int                      copyback = 0;
4309         struct pf_state_peer    *src, *dst;
4310         struct pf_state_key     *sk;
4311
4312         key.af = pd->af;
4313         key.proto = IPPROTO_TCP;
4314         if (direction == PF_IN) {       /* wire side, straight */
4315                 PF_ACPY(&key.addr[0], pd->src, key.af);
4316                 PF_ACPY(&key.addr[1], pd->dst, key.af);
4317                 key.port[0] = th->th_sport;
4318                 key.port[1] = th->th_dport;
4319         } else {                        /* stack side, reverse */
4320                 PF_ACPY(&key.addr[1], pd->src, key.af);
4321                 PF_ACPY(&key.addr[0], pd->dst, key.af);
4322                 key.port[1] = th->th_sport;
4323                 key.port[0] = th->th_dport;
4324         }
4325
4326         STATE_LOOKUP(kif, &key, direction, *state, m);
4327
4328         if (direction == (*state)->direction) {
4329                 src = &(*state)->src;
4330                 dst = &(*state)->dst;
4331         } else {
4332                 src = &(*state)->dst;
4333                 dst = &(*state)->src;
4334         }
4335
4336         sk = (*state)->key[pd->didx];
4337
4338         if ((*state)->src.state == PF_TCPS_PROXY_SRC) {
4339                 if (direction != (*state)->direction) {
4340                         REASON_SET(reason, PFRES_SYNPROXY);
4341                         return (PF_SYNPROXY_DROP);
4342                 }
4343                 if (th->th_flags & TH_SYN) {
4344                         if (ntohl(th->th_seq) != (*state)->src.seqlo) {
4345                                 REASON_SET(reason, PFRES_SYNPROXY);
4346                                 return (PF_DROP);
4347                         }
4348                         pf_send_tcp((*state)->rule.ptr, pd->af, pd->dst,
4349                             pd->src, th->th_dport, th->th_sport,
4350                             (*state)->src.seqhi, ntohl(th->th_seq) + 1,
4351                             TH_SYN|TH_ACK, 0, (*state)->src.mss, 0, 1,
4352                             0, NULL, NULL);
4353                         REASON_SET(reason, PFRES_SYNPROXY);
4354                         return (PF_SYNPROXY_DROP);
4355                 } else if (!(th->th_flags & TH_ACK) ||
4356                     (ntohl(th->th_ack) != (*state)->src.seqhi + 1) ||
4357                     (ntohl(th->th_seq) != (*state)->src.seqlo + 1)) {
4358                         REASON_SET(reason, PFRES_SYNPROXY);
4359                         return (PF_DROP);
4360                 } else if ((*state)->src_node != NULL &&
4361                     pf_src_connlimit(state)) {
4362                         REASON_SET(reason, PFRES_SRCLIMIT);
4363                         return (PF_DROP);
4364                 } else
4365                         (*state)->src.state = PF_TCPS_PROXY_DST;
4366         }
4367         if ((*state)->src.state == PF_TCPS_PROXY_DST) {
4368                 if (direction == (*state)->direction) {
4369                         if (((th->th_flags & (TH_SYN|TH_ACK)) != TH_ACK) ||
4370                             (ntohl(th->th_ack) != (*state)->src.seqhi + 1) ||
4371                             (ntohl(th->th_seq) != (*state)->src.seqlo + 1)) {
4372                                 REASON_SET(reason, PFRES_SYNPROXY);
4373                                 return (PF_DROP);
4374                         }
4375                         (*state)->src.max_win = MAX(ntohs(th->th_win), 1);
4376                         if ((*state)->dst.seqhi == 1)
4377                                 (*state)->dst.seqhi = htonl(karc4random());
4378                         pf_send_tcp((*state)->rule.ptr, pd->af,
4379                             &sk->addr[pd->sidx], &sk->addr[pd->didx],
4380                             sk->port[pd->sidx], sk->port[pd->didx],
4381                             (*state)->dst.seqhi, 0, TH_SYN, 0,
4382                             (*state)->src.mss, 0, 0, (*state)->tag, NULL, NULL);
4383                         REASON_SET(reason, PFRES_SYNPROXY);
4384                         return (PF_SYNPROXY_DROP);
4385                 } else if (((th->th_flags & (TH_SYN|TH_ACK)) !=
4386                     (TH_SYN|TH_ACK)) ||
4387                     (ntohl(th->th_ack) != (*state)->dst.seqhi + 1)) {
4388                         REASON_SET(reason, PFRES_SYNPROXY);
4389                         return (PF_DROP);
4390                 } else {
4391                         (*state)->dst.max_win = MAX(ntohs(th->th_win), 1);
4392                         (*state)->dst.seqlo = ntohl(th->th_seq);
4393                         pf_send_tcp((*state)->rule.ptr, pd->af, pd->dst,
4394                             pd->src, th->th_dport, th->th_sport,
4395                             ntohl(th->th_ack), ntohl(th->th_seq) + 1,
4396                             TH_ACK, (*state)->src.max_win, 0, 0, 0,
4397                             (*state)->tag, NULL, NULL);
4398                         pf_send_tcp((*state)->rule.ptr, pd->af,
4399                             &sk->addr[pd->sidx], &sk->addr[pd->didx],
4400                             sk->port[pd->sidx], sk->port[pd->didx],
4401                             (*state)->src.seqhi + 1, (*state)->src.seqlo + 1,
4402                             TH_ACK, (*state)->dst.max_win, 0, 0, 1,
4403                             0, NULL, NULL);
4404                         (*state)->src.seqdiff = (*state)->dst.seqhi -
4405                             (*state)->src.seqlo;
4406                         (*state)->dst.seqdiff = (*state)->src.seqhi -
4407                             (*state)->dst.seqlo;
4408                         (*state)->src.seqhi = (*state)->src.seqlo +
4409                             (*state)->dst.max_win;
4410                         (*state)->dst.seqhi = (*state)->dst.seqlo +
4411                             (*state)->src.max_win;
4412                         (*state)->src.wscale = (*state)->dst.wscale = 0;
4413                         (*state)->src.state = (*state)->dst.state =
4414                             TCPS_ESTABLISHED;
4415                         REASON_SET(reason, PFRES_SYNPROXY);
4416                         return (PF_SYNPROXY_DROP);
4417                 }
4418         }
4419
4420         if (((th->th_flags & (TH_SYN|TH_ACK)) == TH_SYN) &&
4421             dst->state >= TCPS_FIN_WAIT_2 &&
4422             src->state >= TCPS_FIN_WAIT_2) {
4423                 if (pf_status.debug >= PF_DEBUG_MISC) {
4424                         kprintf("pf: state reuse ");
4425                         pf_print_state(*state);
4426                         pf_print_flags(th->th_flags);
4427                         kprintf("\n");
4428                 }
4429                 /* XXX make sure it's the same direction ?? */
4430                 (*state)->src.state = (*state)->dst.state = TCPS_CLOSED;
4431                 pf_unlink_state(*state);
4432                 *state = NULL;
4433                 return (PF_DROP);
4434         }
4435
4436         if ((*state)->state_flags & PFSTATE_SLOPPY) {
4437                 if (pf_tcp_track_sloppy(src, dst, state, pd, reason) == PF_DROP)
4438                         return (PF_DROP);
4439         } else {
4440                 if (pf_tcp_track_full(src, dst, state, kif, m, off, pd, reason,
4441                     &copyback) == PF_DROP)
4442                         return (PF_DROP);
4443         }
4444
4445         /* translate source/destination address, if necessary */
4446         if ((*state)->key[PF_SK_WIRE] != (*state)->key[PF_SK_STACK]) {
4447                 struct pf_state_key *nk = (*state)->key[pd->didx];
4448
4449                 if (PF_ANEQ(pd->src, &nk->addr[pd->sidx], pd->af) ||
4450                     nk->port[pd->sidx] != th->th_sport) 
4451                         pf_change_ap(pd->src, &th->th_sport, pd->ip_sum,
4452                             &th->th_sum, &nk->addr[pd->sidx],
4453                             nk->port[pd->sidx], 0, pd->af);
4454
4455                 if (PF_ANEQ(pd->dst, &nk->addr[pd->didx], pd->af) ||
4456                     nk->port[pd->didx] != th->th_dport) {
4457                         /*
4458                          * If we don't redispatch the packet will go into
4459                          * the protocol stack on the wrong cpu for the
4460                          * post-translated address.
4461                          */
4462                         m->m_flags &= ~M_HASH;
4463                         pf_change_ap(pd->dst, &th->th_dport, pd->ip_sum,
4464                             &th->th_sum, &nk->addr[pd->didx],
4465                             nk->port[pd->didx], 0, pd->af);
4466                 }
4467                 copyback = 1;
4468         }
4469
4470         /* Copyback sequence modulation or stateful scrub changes if needed */
4471         if (copyback)
4472                 m_copyback(m, off, sizeof(*th), (caddr_t)th);
4473
4474         return (PF_PASS);
4475 }
4476
4477 int
4478 pf_test_state_udp(struct pf_state **state, int direction, struct pfi_kif *kif,
4479     struct mbuf *m, int off, void *h, struct pf_pdesc *pd)
4480 {
4481         struct pf_state_peer    *src, *dst;
4482         struct pf_state_key_cmp  key;
4483         struct udphdr           *uh = pd->hdr.udp;
4484
4485         key.af = pd->af;
4486         key.proto = IPPROTO_UDP;
4487         if (direction == PF_IN) {       /* wire side, straight */
4488                 PF_ACPY(&key.addr[0], pd->src, key.af);
4489                 PF_ACPY(&key.addr[1], pd->dst, key.af);
4490                 key.port[0] = uh->uh_sport;
4491                 key.port[1] = uh->uh_dport;
4492         } else {                        /* stack side, reverse */
4493                 PF_ACPY(&key.addr[1], pd->src, key.af);
4494                 PF_ACPY(&key.addr[0], pd->dst, key.af);
4495                 key.port[1] = uh->uh_sport;
4496                 key.port[0] = uh->uh_dport;
4497         }
4498
4499         STATE_LOOKUP(kif, &key, direction, *state, m);
4500
4501         if (direction == (*state)->direction) {
4502                 src = &(*state)->src;
4503                 dst = &(*state)->dst;
4504         } else {
4505                 src = &(*state)->dst;
4506                 dst = &(*state)->src;
4507         }
4508
4509         /* update states */
4510         if (src->state < PFUDPS_SINGLE)
4511                 src->state = PFUDPS_SINGLE;
4512         if (dst->state == PFUDPS_SINGLE)
4513                 dst->state = PFUDPS_MULTIPLE;
4514
4515         /* update expire time */
4516         (*state)->expire = time_second;
4517         if (src->state == PFUDPS_MULTIPLE && dst->state == PFUDPS_MULTIPLE)
4518                 (*state)->timeout = PFTM_UDP_MULTIPLE;
4519         else
4520                 (*state)->timeout = PFTM_UDP_SINGLE;
4521
4522         /* translate source/destination address, if necessary */
4523         if ((*state)->key[PF_SK_WIRE] != (*state)->key[PF_SK_STACK]) {
4524                 struct pf_state_key *nk = (*state)->key[pd->didx];
4525
4526                 if (PF_ANEQ(pd->src, &nk->addr[pd->sidx], pd->af) ||
4527                     nk->port[pd->sidx] != uh->uh_sport)
4528                         pf_change_ap(pd->src, &uh->uh_sport, pd->ip_sum,
4529                             &uh->uh_sum, &nk->addr[pd->sidx],
4530                             nk->port[pd->sidx], 1, pd->af);
4531
4532                 if (PF_ANEQ(pd->dst, &nk->addr[pd->didx], pd->af) ||
4533                     nk->port[pd->didx] != uh->uh_dport) {
4534                         /*
4535                          * If we don't redispatch the packet will go into
4536                          * the protocol stack on the wrong cpu for the
4537                          * post-translated address.
4538                          */
4539                         m->m_flags &= ~M_HASH;
4540                         pf_change_ap(pd->dst, &uh->uh_dport, pd->ip_sum,
4541                             &uh->uh_sum, &nk->addr[pd->didx],
4542                             nk->port[pd->didx], 1, pd->af);
4543                 }
4544                 m_copyback(m, off, sizeof(*uh), (caddr_t)uh);
4545         }
4546
4547         return (PF_PASS);
4548 }
4549
4550 int
4551 pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
4552     struct mbuf *m, int off, void *h, struct pf_pdesc *pd, u_short *reason)
4553 {
4554         struct pf_addr  *saddr = pd->src, *daddr = pd->dst;
4555         u_int16_t        icmpid = 0, *icmpsum;
4556         u_int8_t         icmptype;
4557         int              state_icmp = 0;
4558         struct pf_state_key_cmp key;
4559
4560         switch (pd->proto) {
4561 #ifdef INET
4562         case IPPROTO_ICMP:
4563                 icmptype = pd->hdr.icmp->icmp_type;
4564                 icmpid = pd->hdr.icmp->icmp_id;
4565                 icmpsum = &pd->hdr.icmp->icmp_cksum;
4566
4567                 if (icmptype == ICMP_UNREACH ||
4568                     icmptype == ICMP_SOURCEQUENCH ||
4569                     icmptype == ICMP_REDIRECT ||
4570                     icmptype == ICMP_TIMXCEED ||
4571                     icmptype == ICMP_PARAMPROB)
4572                         state_icmp++;
4573                 break;
4574 #endif /* INET */
4575 #ifdef INET6
4576         case IPPROTO_ICMPV6:
4577                 icmptype = pd->hdr.icmp6->icmp6_type;
4578                 icmpid = pd->hdr.icmp6->icmp6_id;
4579                 icmpsum = &pd->hdr.icmp6->icmp6_cksum;
4580
4581                 if (icmptype == ICMP6_DST_UNREACH ||
4582                     icmptype == ICMP6_PACKET_TOO_BIG ||
4583                     icmptype == ICMP6_TIME_EXCEEDED ||
4584                     icmptype == ICMP6_PARAM_PROB)
4585                         state_icmp++;
4586                 break;
4587 #endif /* INET6 */
4588         }
4589
4590         if (!state_icmp) {
4591
4592                 /*
4593                  * ICMP query/reply message not related to a TCP/UDP packet.
4594                  * Search for an ICMP state.
4595                  */
4596                 key.af = pd->af;
4597                 key.proto = pd->proto;
4598                 key.port[0] = key.port[1] = icmpid;
4599                 if (direction == PF_IN) {       /* wire side, straight */
4600                         PF_ACPY(&key.addr[0], pd->src, key.af);
4601                         PF_ACPY(&key.addr[1], pd->dst, key.af);
4602                 } else {                        /* stack side, reverse */
4603                         PF_ACPY(&key.addr[1], pd->src, key.af);
4604                         PF_ACPY(&key.addr[0], pd->dst, key.af);
4605                 }
4606
4607                 STATE_LOOKUP(kif, &key, direction, *state, m);
4608
4609                 (*state)->expire = time_second;
4610                 (*state)->timeout = PFTM_ICMP_ERROR_REPLY;
4611
4612                 /* translate source/destination address, if necessary */
4613                 if ((*state)->key[PF_SK_WIRE] != (*state)->key[PF_SK_STACK]) {
4614                         struct pf_state_key *nk = (*state)->key[pd->didx];
4615
4616                         switch (pd->af) {
4617 #ifdef INET
4618                         case AF_INET:
4619                                 if (PF_ANEQ(pd->src,
4620                                     &nk->addr[pd->sidx], AF_INET))
4621                                         pf_change_a(&saddr->v4.s_addr,
4622                                             pd->ip_sum,
4623                                             nk->addr[pd->sidx].v4.s_addr, 0);
4624
4625                                 if (PF_ANEQ(pd->dst, &nk->addr[pd->didx],
4626                                     AF_INET))
4627                                         pf_change_a(&daddr->v4.s_addr,
4628                                             pd->ip_sum,
4629                                             nk->addr[pd->didx].v4.s_addr, 0);
4630
4631                                 if (nk->port[0] !=
4632                                     pd->hdr.icmp->icmp_id) {
4633                                         pd->hdr.icmp->icmp_cksum =
4634                                             pf_cksum_fixup(
4635                                             pd->hdr.icmp->icmp_cksum, icmpid,
4636                                             nk->port[pd->sidx], 0);
4637                                         pd->hdr.icmp->icmp_id =
4638                                             nk->port[pd->sidx];
4639                                 }
4640
4641                                 m_copyback(m, off, ICMP_MINLEN,
4642                                     (caddr_t)pd->hdr.icmp);
4643                                 break;
4644 #endif /* INET */
4645 #ifdef INET6
4646                         case AF_INET6:
4647                                 if (PF_ANEQ(pd->src,
4648                                     &nk->addr[pd->sidx], AF_INET6))
4649                                         pf_change_a6(saddr,
4650                                             &pd->hdr.icmp6->icmp6_cksum,
4651                                             &nk->addr[pd->sidx], 0);
4652
4653                                 if (PF_ANEQ(pd->dst,
4654                                     &nk->addr[pd->didx], AF_INET6))
4655                                         pf_change_a6(daddr,
4656                                             &pd->hdr.icmp6->icmp6_cksum,
4657                                             &nk->addr[pd->didx], 0);
4658
4659                                 m_copyback(m, off,
4660                                         sizeof(struct icmp6_hdr),
4661                                         (caddr_t)pd->hdr.icmp6);
4662                                 break;
4663 #endif /* INET6 */
4664                         }
4665                 }
4666                 return (PF_PASS);
4667
4668         } else {
4669                 /*
4670                  * ICMP error message in response to a TCP/UDP packet.
4671                  * Extract the inner TCP/UDP header and search for that state.
4672                  */
4673
4674                 struct pf_pdesc pd2;
4675 #ifdef INET
4676                 struct ip       h2;
4677 #endif /* INET */
4678 #ifdef INET6
4679                 struct ip6_hdr  h2_6;
4680                 int             terminal = 0;
4681 #endif /* INET6 */
4682                 int             ipoff2;
4683                 int             off2;
4684
4685                 pd2.af = pd->af;
4686                 /* Payload packet is from the opposite direction. */
4687                 pd2.sidx = (direction == PF_IN) ? 1 : 0;
4688                 pd2.didx = (direction == PF_IN) ? 0 : 1;
4689                 switch (pd->af) {
4690 #ifdef INET
4691                 case AF_INET:
4692                         /* offset of h2 in mbuf chain */
4693                         ipoff2 = off + ICMP_MINLEN;
4694
4695                         if (!pf_pull_hdr(m, ipoff2, &h2, sizeof(h2),
4696                             NULL, reason, pd2.af)) {
4697                                 DPFPRINTF(PF_DEBUG_MISC,
4698                                     ("pf: ICMP error message too short "
4699                                     "(ip)\n"));
4700                                 return (PF_DROP);
4701                         }
4702                         /*
4703                          * ICMP error messages don't refer to non-first
4704                          * fragments
4705                          */
4706                         if (h2.ip_off & htons(IP_OFFMASK)) {
4707                                 REASON_SET(reason, PFRES_FRAG);
4708                                 return (PF_DROP);
4709                         }
4710
4711                         /* offset of protocol header that follows h2 */
4712                         off2 = ipoff2 + (h2.ip_hl << 2);
4713
4714                         pd2.proto = h2.ip_p;
4715                         pd2.src = (struct pf_addr *)&h2.ip_src;
4716                         pd2.dst = (struct pf_addr *)&h2.ip_dst;
4717                         pd2.ip_sum = &h2.ip_sum;
4718                         break;
4719 #endif /* INET */
4720 #ifdef INET6
4721                 case AF_INET6:
4722                         ipoff2 = off + sizeof(struct icmp6_hdr);
4723
4724                         if (!pf_pull_hdr(m, ipoff2, &h2_6, sizeof(h2_6),
4725                             NULL, reason, pd2.af)) {
4726                                 DPFPRINTF(PF_DEBUG_MISC,
4727                                     ("pf: ICMP error message too short "
4728                                     "(ip6)\n"));
4729                                 return (PF_DROP);
4730                         }
4731                         pd2.proto = h2_6.ip6_nxt;
4732                         pd2.src = (struct pf_addr *)&h2_6.ip6_src;
4733                         pd2.dst = (struct pf_addr *)&h2_6.ip6_dst;
4734                         pd2.ip_sum = NULL;
4735                         off2 = ipoff2 + sizeof(h2_6);
4736                         do {
4737                                 switch (pd2.proto) {
4738                                 case IPPROTO_FRAGMENT:
4739                                         /*
4740                                          * ICMPv6 error messages for
4741                                          * non-first fragments
4742                                          */
4743                                         REASON_SET(reason, PFRES_FRAG);
4744                                         return (PF_DROP);
4745                                 case IPPROTO_AH:
4746                                 case IPPROTO_HOPOPTS:
4747                                 case IPPROTO_ROUTING:
4748                                 case IPPROTO_DSTOPTS: {
4749                                         /* get next header and header length */
4750                                         struct ip6_ext opt6;
4751
4752                                         if (!pf_pull_hdr(m, off2, &opt6,
4753                                             sizeof(opt6), NULL, reason,
4754                                             pd2.af)) {
4755                                                 DPFPRINTF(PF_DEBUG_MISC,
4756                                                     ("pf: ICMPv6 short opt\n"));
4757                                                 return (PF_DROP);
4758                                         }
4759                                         if (pd2.proto == IPPROTO_AH)
4760                                                 off2 += (opt6.ip6e_len + 2) * 4;
4761                                         else
4762                                                 off2 += (opt6.ip6e_len + 1) * 8;
4763                                         pd2.proto = opt6.ip6e_nxt;
4764                                         /* goto the next header */
4765                                         break;
4766                                 }
4767                                 default:
4768                                         terminal++;
4769                                         break;
4770                                 }
4771                         } while (!terminal);
4772                         break;
4773 #endif /* INET6 */
4774                 default:
4775                         DPFPRINTF(PF_DEBUG_MISC,
4776                             ("pf: ICMP AF %d unknown (ip6)\n", pd->af));
4777                         return (PF_DROP);
4778                         break;
4779                 }
4780
4781                 switch (pd2.proto) {
4782                 case IPPROTO_TCP: {
4783                         struct tcphdr            th;
4784                         u_int32_t                seq;
4785                         struct pf_state_peer    *src, *dst;
4786                         u_int8_t                 dws;
4787                         int                      copyback = 0;
4788
4789                         /*
4790                          * Only the first 8 bytes of the TCP header can be
4791                          * expected. Don't access any TCP header fields after
4792                          * th_seq, an ackskew test is not possible.
4793                          */
4794                         if (!pf_pull_hdr(m, off2, &th, 8, NULL, reason,
4795                             pd2.af)) {
4796                                 DPFPRINTF(PF_DEBUG_MISC,
4797                                     ("pf: ICMP error message too short "
4798                                     "(tcp)\n"));
4799                                 return (PF_DROP);
4800                         }
4801
4802                         key.af = pd2.af;
4803                         key.proto = IPPROTO_TCP;
4804                         PF_ACPY(&key.addr[pd2.sidx], pd2.src, key.af);
4805                         PF_ACPY(&key.addr[pd2.didx], pd2.dst, key.af);
4806                         key.port[pd2.sidx] = th.th_sport;
4807                         key.port[pd2.didx] = th.th_dport;
4808
4809                         STATE_LOOKUP(kif, &key, direction, *state, m);
4810
4811                         if (direction == (*state)->direction) {
4812                                 src = &(*state)->dst;
4813                                 dst = &(*state)->src;
4814                         } else {
4815                                 src = &(*state)->src;
4816                                 dst = &(*state)->dst;
4817                         }
4818
4819                         if (src->wscale && dst->wscale)
4820                                 dws = dst->wscale & PF_WSCALE_MASK;
4821                         else
4822                                 dws = 0;
4823
4824                         /* Demodulate sequence number */
4825                         seq = ntohl(th.th_seq) - src->seqdiff;
4826                         if (src->seqdiff) {
4827                                 pf_change_a(&th.th_seq, icmpsum,
4828                                     htonl(seq), 0);
4829                                 copyback = 1;
4830                         }
4831
4832                         if (!((*state)->state_flags & PFSTATE_SLOPPY) &&
4833                             (!SEQ_GEQ(src->seqhi, seq) ||
4834                             !SEQ_GEQ(seq, src->seqlo - (dst->max_win << dws)))) {
4835                                 if (pf_status.debug >= PF_DEBUG_MISC) {
4836                                         kprintf("pf: BAD ICMP %d:%d ",
4837                                             icmptype, pd->hdr.icmp->icmp_code);
4838                                         pf_print_host(pd->src, 0, pd->af);
4839                                         kprintf(" -> ");
4840                                         pf_print_host(pd->dst, 0, pd->af);
4841                                         kprintf(" state: ");
4842                                         pf_print_state(*state);
4843                                         kprintf(" seq=%u\n", seq);
4844                                 }
4845                                 REASON_SET(reason, PFRES_BADSTATE);
4846                                 return (PF_DROP);
4847                         } else {
4848                                 if (pf_status.debug >= PF_DEBUG_MISC) {
4849                                         kprintf("pf: OK ICMP %d:%d ",
4850                                             icmptype, pd->hdr.icmp->icmp_code);
4851                                         pf_print_host(pd->src, 0, pd->af);
4852                                         kprintf(" -> ");
4853                                         pf_print_host(pd->dst, 0, pd->af);
4854                                         kprintf(" state: ");
4855                                         pf_print_state(*state);
4856                                         kprintf(" seq=%u\n", seq);
4857                                 }
4858                         }
4859
4860                         /* translate source/destination address, if necessary */
4861                         if ((*state)->key[PF_SK_WIRE] !=
4862                             (*state)->key[PF_SK_STACK]) {
4863                                 struct pf_state_key *nk =
4864                                     (*state)->key[pd->didx];
4865
4866                                 if (PF_ANEQ(pd2.src,
4867                                     &nk->addr[pd2.sidx], pd2.af) ||
4868                                     nk->port[pd2.sidx] != th.th_sport)
4869                                         pf_change_icmp(pd2.src, &th.th_sport,
4870                                             daddr, &nk->addr[pd2.sidx],
4871                                             nk->port[pd2.sidx], NULL,
4872                                             pd2.ip_sum, icmpsum,
4873                                             pd->ip_sum, 0, pd2.af);
4874
4875                                 if (PF_ANEQ(pd2.dst,
4876                                     &nk->addr[pd2.didx], pd2.af) ||
4877                                     nk->port[pd2.didx] != th.th_dport)
4878                                         pf_change_icmp(pd2.dst, &th.th_dport,
4879                                             NULL, /* XXX Inbound NAT? */
4880                                             &nk->addr[pd2.didx],
4881                                             nk->port[pd2.didx], NULL,
4882                                             pd2.ip_sum, icmpsum,
4883                                             pd->ip_sum, 0, pd2.af);
4884                                 copyback = 1;
4885                         }
4886
4887                         if (copyback) {
4888                                 switch (pd2.af) {
4889 #ifdef INET
4890                                 case AF_INET:
4891                                         m_copyback(m, off, ICMP_MINLEN,
4892                                             (caddr_t)pd->hdr.icmp);
4893                                         m_copyback(m, ipoff2, sizeof(h2),
4894                                             (caddr_t)&h2);
4895                                         break;
4896 #endif /* INET */
4897 #ifdef INET6
4898                                 case AF_INET6:
4899                                         m_copyback(m, off,
4900                                             sizeof(struct icmp6_hdr),
4901                                             (caddr_t)pd->hdr.icmp6);
4902                                         m_copyback(m, ipoff2, sizeof(h2_6),
4903                                             (caddr_t)&h2_6);
4904                                         break;
4905 #endif /* INET6 */
4906                                 }
4907                                 m_copyback(m, off2, 8, (caddr_t)&th);
4908                         }
4909
4910                         return (PF_PASS);
4911                         break;
4912                 }
4913                 case IPPROTO_UDP: {
4914                         struct udphdr           uh;
4915
4916                         if (!pf_pull_hdr(m, off2, &uh, sizeof(uh),
4917                             NULL, reason, pd2.af)) {
4918                                 DPFPRINTF(PF_DEBUG_MISC,
4919                                     ("pf: ICMP error message too short "
4920                                     "(udp)\n"));
4921                                 return (PF_DROP);
4922                         }
4923
4924                         key.af = pd2.af;
4925                         key.proto = IPPROTO_UDP;
4926                         PF_ACPY(&key.addr[pd2.sidx], pd2.src, key.af);
4927                         PF_ACPY(&key.addr[pd2.didx], pd2.dst, key.af);
4928                         key.port[pd2.sidx] = uh.uh_sport;
4929                         key.port[pd2.didx] = uh.uh_dport;
4930
4931                         STATE_LOOKUP(kif, &key, direction, *state, m);
4932
4933                         /* translate source/destination address, if necessary */
4934                         if ((*state)->key[PF_SK_WIRE] !=
4935                             (*state)->key[PF_SK_STACK]) {
4936                                 struct pf_state_key *nk =
4937                                     (*state)->key[pd->didx];
4938
4939                                 if (PF_ANEQ(pd2.src,
4940                                     &nk->addr[pd2.sidx], pd2.af) ||
4941                                     nk->port[pd2.sidx] != uh.uh_sport)
4942                                         pf_change_icmp(pd2.src, &uh.uh_sport,
4943                                             daddr, &nk->addr[pd2.sidx],
4944                                             nk->port[pd2.sidx], &uh.uh_sum,
4945                                             pd2.ip_sum, icmpsum,
4946                                             pd->ip_sum, 1, pd2.af);
4947
4948                                 if (PF_ANEQ(pd2.dst,
4949                                     &nk->addr[pd2.didx], pd2.af) ||
4950                                     nk->port[pd2.didx] != uh.uh_dport)
4951                                         pf_change_icmp(pd2.dst, &uh.uh_dport,
4952                                             NULL, /* XXX Inbound NAT? */
4953                                             &nk->addr[pd2.didx],
4954                                             nk->port[pd2.didx], &uh.uh_sum,
4955                                             pd2.ip_sum, icmpsum,
4956                                             pd->ip_sum, 1, pd2.af);
4957
4958                                 switch (pd2.af) {
4959 #ifdef INET
4960                                 case AF_INET:
4961                                         m_copyback(m, off, ICMP_MINLEN,
4962                                             (caddr_t)pd->hdr.icmp);
4963                                         m_copyback(m, ipoff2, sizeof(h2), (caddr_t)&h2);
4964                                         break;
4965 #endif /* INET */
4966 #ifdef INET6
4967                                 case AF_INET6:
4968                                         m_copyback(m, off,
4969                                             sizeof(struct icmp6_hdr),
4970                                             (caddr_t)pd->hdr.icmp6);
4971                                         m_copyback(m, ipoff2, sizeof(h2_6),
4972                                             (caddr_t)&h2_6);
4973                                         break;
4974 #endif /* INET6 */
4975                                 }
4976                                 m_copyback(m, off2, sizeof(uh), (caddr_t)&uh);
4977                         }
4978
4979                         return (PF_PASS);
4980                         break;
4981                 }
4982 #ifdef INET
4983                 case IPPROTO_ICMP: {
4984                         struct icmp             iih;
4985
4986                         if (!pf_pull_hdr(m, off2, &iih, ICMP_MINLEN,
4987                             NULL, reason, pd2.af)) {
4988                                 DPFPRINTF(PF_DEBUG_MISC,
4989                                     ("pf: ICMP error message too short i"
4990                                     "(icmp)\n"));
4991                                 return (PF_DROP);
4992                         }
4993
4994                         key.af = pd2.af;
4995                         key.proto = IPPROTO_ICMP;
4996                         PF_ACPY(&key.addr[pd2.sidx], pd2.src, key.af);
4997                         PF_ACPY(&key.addr[pd2.didx], pd2.dst, key.af);
4998                         key.port[0] = key.port[1] = iih.icmp_id;
4999
5000                         STATE_LOOKUP(kif, &key, direction, *state, m);
5001
5002                         /* translate source/destination address, if necessary */
5003                         if ((*state)->key[PF_SK_WIRE] !=
5004                             (*state)->key[PF_SK_STACK]) {
5005                                 struct pf_state_key *nk =
5006                                     (*state)->key[pd->didx];
5007
5008                                 if (PF_ANEQ(pd2.src,
5009                                     &nk->addr[pd2.sidx], pd2.af) ||
5010                                     nk->port[pd2.sidx] != iih.icmp_id)
5011                                         pf_change_icmp(pd2.src, &iih.icmp_id,
5012                                             daddr, &nk->addr[pd2.sidx],
5013                                             nk->port[pd2.sidx], NULL,
5014                                             pd2.ip_sum, icmpsum,
5015                                             pd->ip_sum, 0, AF_INET);
5016
5017                                 if (PF_ANEQ(pd2.dst,
5018                                     &nk->addr[pd2.didx], pd2.af) ||
5019                                     nk->port[pd2.didx] != iih.icmp_id)
5020                                         pf_change_icmp(pd2.dst, &iih.icmp_id,
5021                                             NULL, /* XXX Inbound NAT? */
5022                                             &nk->addr[pd2.didx],
5023                                             nk->port[pd2.didx], NULL,
5024                                             pd2.ip_sum, icmpsum,
5025                                             pd->ip_sum, 0, AF_INET);
5026
5027                                 m_copyback(m, off, ICMP_MINLEN, (caddr_t)pd->hdr.icmp);
5028                                 m_copyback(m, ipoff2, sizeof(h2), (caddr_t)&h2);
5029                                 m_copyback(m, off2, ICMP_MINLEN, (caddr_t)&iih);
5030                         }
5031                         return (PF_PASS);
5032                         break;
5033                 }
5034 #endif /* INET */
5035 #ifdef INET6
5036                 case IPPROTO_ICMPV6: {
5037                         struct icmp6_hdr        iih;
5038
5039                         if (!pf_pull_hdr(m, off2, &iih,
5040                             sizeof(struct icmp6_hdr), NULL, reason, pd2.af)) {
5041                                 DPFPRINTF(PF_DEBUG_MISC,
5042                                     ("pf: ICMP error message too short "
5043                                     "(icmp6)\n"));
5044                                 return (PF_DROP);
5045                         }
5046
5047                         key.af = pd2.af;
5048                         key.proto = IPPROTO_ICMPV6;
5049                         PF_ACPY(&key.addr[pd2.sidx], pd2.src, key.af);
5050                         PF_ACPY(&key.addr[pd2.didx], pd2.dst, key.af);
5051                         key.port[0] = key.port[1] = iih.icmp6_id;
5052
5053                         STATE_LOOKUP(kif, &key, direction, *state, m);
5054
5055                         /* translate source/destination address, if necessary */
5056                         if ((*state)->key[PF_SK_WIRE] !=
5057                             (*state)->key[PF_SK_STACK]) {
5058                                 struct pf_state_key *nk =
5059                                     (*state)->key[pd->didx];
5060
5061                                 if (PF_ANEQ(pd2.src,
5062                                     &nk->addr[pd2.sidx], pd2.af) ||
5063                                     nk->port[pd2.sidx] != iih.icmp6_id)
5064                                         pf_change_icmp(pd2.src, &iih.icmp6_id,
5065                                             daddr, &nk->addr[pd2.sidx],
5066                                             nk->port[pd2.sidx], NULL,
5067                                             pd2.ip_sum, icmpsum,
5068                                             pd->ip_sum, 0, AF_INET6);
5069
5070                                 if (PF_ANEQ(pd2.dst,
5071                                     &nk->addr[pd2.didx], pd2.af) ||
5072                                     nk->port[pd2.didx] != iih.icmp6_id)
5073                                         pf_change_icmp(pd2.dst, &iih.icmp6_id,
5074                                             NULL, /* XXX Inbound NAT? */
5075                                             &nk->addr[pd2.didx],
5076                                             nk->port[pd2.didx], NULL,
5077                                             pd2.ip_sum, icmpsum,
5078                                             pd->ip_sum, 0, AF_INET6);
5079
5080                                 m_copyback(m, off, sizeof(struct icmp6_hdr),
5081                                     (caddr_t)pd->hdr.icmp6);
5082                                 m_copyback(m, ipoff2, sizeof(h2_6), (caddr_t)&h2_6);
5083                                 m_copyback(m, off2, sizeof(struct icmp6_hdr),
5084                                     (caddr_t)&iih);
5085                         }
5086
5087                         return (PF_PASS);
5088                         break;
5089                 }
5090 #endif /* INET6 */
5091                 default: {
5092                         key.af = pd2.af;
5093                         key.proto = pd2.proto;
5094                         PF_ACPY(&key.addr[pd2.sidx], pd2.src, key.af);
5095                         PF_ACPY(&key.addr[pd2.didx], pd2.dst, key.af);
5096                         key.port[0] = key.port[1] = 0;
5097
5098                         STATE_LOOKUP(kif, &key, direction, *state, m);
5099
5100                         /* translate source/destination address, if necessary */
5101                         if ((*state)->key[PF_SK_WIRE] !=
5102                             (*state)->key[PF_SK_STACK]) {
5103                                 struct pf_state_key *nk =
5104                                     (*state)->key[pd->didx];
5105
5106                                 if (PF_ANEQ(pd2.src,
5107                                     &nk->addr[pd2.sidx], pd2.af))
5108                                         pf_change_icmp(pd2.src, NULL, daddr,
5109                                             &nk->addr[pd2.sidx], 0, NULL,
5110                                             pd2.ip_sum, icmpsum,
5111                                             pd->ip_sum, 0, pd2.af);
5112
5113                                 if (PF_ANEQ(pd2.dst,
5114                                     &nk->addr[pd2.didx], pd2.af))
5115                                         pf_change_icmp(pd2.src, NULL,
5116                                             NULL, /* XXX Inbound NAT? */
5117                                             &nk->addr[pd2.didx], 0, NULL,
5118                                             pd2.ip_sum, icmpsum,
5119                                             pd->ip_sum, 0, pd2.af);
5120
5121                                 switch (pd2.af) {
5122 #ifdef INET
5123                                 case AF_INET:
5124                                         m_copyback(m, off, ICMP_MINLEN,
5125                                             (caddr_t)pd->hdr.icmp);
5126                                         m_copyback(m, ipoff2, sizeof(h2), (caddr_t)&h2);
5127                                         break;
5128 #endif /* INET */
5129 #ifdef INET6
5130                                 case AF_INET6:
5131                                         m_copyback(m, off,
5132                                             sizeof(struct icmp6_hdr),
5133                                             (caddr_t)pd->hdr.icmp6);
5134                                         m_copyback(m, ipoff2, sizeof(h2_6),
5135                                             (caddr_t)&h2_6);
5136                                         break;
5137 #endif /* INET6 */
5138                                 }
5139                         }
5140                         return (PF_PASS);
5141                         break;
5142                 }
5143                 }
5144         }
5145 }
5146
5147 int
5148 pf_test_state_other(struct pf_state **state, int direction, struct pfi_kif *kif,
5149     struct mbuf *m, struct pf_pdesc *pd)
5150 {
5151         struct pf_state_peer    *src, *dst;
5152         struct pf_state_key_cmp  key;
5153
5154         key.af = pd->af;
5155         key.proto = pd->proto;
5156         if (direction == PF_IN) {
5157                 PF_ACPY(&key.addr[0], pd->src, key.af);
5158                 PF_ACPY(&key.addr[1], pd->dst, key.af);
5159                 key.port[0] = key.port[1] = 0;
5160         } else {
5161                 PF_ACPY(&key.addr[1], pd->src, key.af);
5162                 PF_ACPY(&key.addr[0], pd->dst, key.af);
5163                 key.port[1] = key.port[0] = 0;
5164         }
5165
5166         STATE_LOOKUP(kif, &key, direction, *state, m);
5167
5168         if (direction == (*state)->direction) {
5169                 src = &(*state)->src;
5170                 dst = &(*state)->dst;
5171         } else {
5172                 src = &(*state)->dst;
5173                 dst = &(*state)->src;
5174         }
5175
5176         /* update states */
5177         if (src->state < PFOTHERS_SINGLE)
5178                 src->state = PFOTHERS_SINGLE;
5179         if (dst->state == PFOTHERS_SINGLE)
5180                 dst->state = PFOTHERS_MULTIPLE;
5181
5182         /* update expire time */
5183         (*state)->expire = time_second;
5184         if (src->state == PFOTHERS_MULTIPLE && dst->state == PFOTHERS_MULTIPLE)
5185                 (*state)->timeout = PFTM_OTHER_MULTIPLE;
5186         else
5187                 (*state)->timeout = PFTM_OTHER_SINGLE;
5188
5189         /* translate source/destination address, if necessary */
5190         if ((*state)->key[PF_SK_WIRE] != (*state)->key[PF_SK_STACK]) {
5191                 struct pf_state_key *nk = (*state)->key[pd->didx];
5192
5193                 KKASSERT(nk);
5194                 KKASSERT(pd);
5195                 KKASSERT(pd->src);
5196                 KKASSERT(pd->dst);
5197                 switch (pd->af) {
5198 #ifdef INET
5199                 case AF_INET:
5200                         if (PF_ANEQ(pd->src, &nk->addr[pd->sidx], AF_INET))
5201                                 pf_change_a(&pd->src->v4.s_addr,
5202                                     pd->ip_sum,
5203                                     nk->addr[pd->sidx].v4.s_addr,
5204                                     0);
5205
5206
5207                         if (PF_ANEQ(pd->dst, &nk->addr[pd->didx], AF_INET))
5208                                 pf_change_a(&pd->dst->v4.s_addr,
5209                                     pd->ip_sum,
5210                                     nk->addr[pd->didx].v4.s_addr,
5211                                     0);
5212
5213                                 break;
5214 #endif /* INET */
5215 #ifdef INET6
5216                 case AF_INET6:
5217                         if (PF_ANEQ(pd->src, &nk->addr[pd->sidx], AF_INET))
5218                                 PF_ACPY(pd->src, &nk->addr[pd->sidx], pd->af);
5219
5220                         if (PF_ANEQ(pd->dst, &nk->addr[pd->didx], AF_INET))
5221                                 PF_ACPY(pd->dst, &nk->addr[pd->didx], pd->af);
5222 #endif /* INET6 */
5223                 }
5224         }
5225         return (PF_PASS);
5226 }
5227
5228 /*
5229  * ipoff and off are measured from the start of the mbuf chain.
5230  * h must be at "ipoff" on the mbuf chain.
5231  */
5232 void *
5233 pf_pull_hdr(struct mbuf *m, int off, void *p, int len,
5234     u_short *actionp, u_short *reasonp, sa_family_t af)
5235 {
5236         switch (af) {
5237 #ifdef INET
5238         case AF_INET: {
5239                 struct ip       *h = mtod(m, struct ip *);
5240                 u_int16_t        fragoff = (h->ip_off & IP_OFFMASK) << 3;
5241
5242                 if (fragoff) {
5243                         if (fragoff >= len)
5244                                 ACTION_SET(actionp, PF_PASS);
5245                         else {
5246                                 ACTION_SET(actionp, PF_DROP);
5247                                 REASON_SET(reasonp, PFRES_FRAG);
5248                         }
5249                         return (NULL);
5250                 }
5251                 if (m->m_pkthdr.len < off + len ||
5252                     h->ip_len < off + len) {
5253                         ACTION_SET(actionp, PF_DROP);
5254                         REASON_SET(reasonp, PFRES_SHORT);
5255                         return (NULL);
5256                 }
5257                 break;
5258         }
5259 #endif /* INET */
5260 #ifdef INET6
5261         case AF_INET6: {
5262                 struct ip6_hdr  *h = mtod(m, struct ip6_hdr *);
5263
5264                 if (m->m_pkthdr.len < off + len ||
5265                     (ntohs(h->ip6_plen) + sizeof(struct ip6_hdr)) <
5266                     (unsigned)(off + len)) {
5267                         ACTION_SET(actionp, PF_DROP);
5268                         REASON_SET(reasonp, PFRES_SHORT);
5269                         return (NULL);
5270                 }
5271                 break;
5272         }
5273 #endif /* INET6 */
5274         }
5275         m_copydata(m, off, len, p);
5276         return (p);
5277 }
5278
5279 int
5280 pf_routable(struct pf_addr *addr, sa_family_t af, struct pfi_kif *kif)
5281 {
5282         struct sockaddr_in      *dst;
5283         int                      ret = 1;
5284         int                      check_mpath;
5285 #ifdef INET6
5286         struct sockaddr_in6     *dst6;
5287         struct route_in6         ro;
5288 #else
5289         struct route             ro;
5290 #endif
5291         struct radix_node       *rn;
5292         struct rtentry          *rt;
5293         struct ifnet            *ifp;
5294
5295         check_mpath = 0;
5296         bzero(&ro, sizeof(ro));
5297         switch (af) {
5298         case AF_INET:
5299                 dst = satosin(&ro.ro_dst);
5300                 dst->sin_family = AF_INET;
5301                 dst->sin_len = sizeof(*dst);
5302                 dst->sin_addr = addr->v4;
5303                 break;
5304 #ifdef INET6
5305         case AF_INET6:
5306                 dst6 = (struct sockaddr_in6 *)&ro.ro_dst;
5307                 dst6->sin6_family = AF_INET6;
5308                 dst6->sin6_len = sizeof(*dst6);
5309                 dst6->sin6_addr = addr->v6;
5310                 break;
5311 #endif /* INET6 */
5312         default:
5313                 return (0);
5314         }
5315
5316         /* Skip checks for ipsec interfaces */
5317         if (kif != NULL && kif->pfik_ifp->if_type == IFT_ENC)
5318                 goto out;
5319
5320         rtalloc_ign((struct route *)&ro, 0);
5321
5322         if (ro.ro_rt != NULL) {
5323                 /* No interface given, this is a no-route check */
5324                 if (kif == NULL)
5325                         goto out;
5326
5327                 if (kif->pfik_ifp == NULL) {
5328                         ret = 0;
5329                         goto out;
5330                 }
5331
5332                 /* Perform uRPF check if passed input interface */
5333                 ret = 0;
5334                 rn = (struct radix_node *)ro.ro_rt;
5335                 do {
5336                         rt = (struct rtentry *)rn;
5337                         ifp = rt->rt_ifp;
5338
5339                         if (kif->pfik_ifp == ifp)
5340                                 ret = 1;
5341                         rn = NULL;
5342                 } while (check_mpath == 1 && rn != NULL && ret == 0);
5343         } else
5344                 ret = 0;
5345 out:
5346         if (ro.ro_rt != NULL)
5347                 RTFREE(ro.ro_rt);
5348         return (ret);
5349 }
5350
5351 int
5352 pf_rtlabel_match(struct pf_addr *addr, sa_family_t af, struct pf_addr_wrap *aw)
5353 {
5354         struct sockaddr_in      *dst;
5355 #ifdef INET6
5356         struct sockaddr_in6     *dst6;
5357         struct route_in6         ro;
5358 #else
5359         struct route             ro;
5360 #endif
5361         int                      ret = 0;
5362
5363         ASSERT_LWKT_TOKEN_HELD(&pf_token);
5364
5365         bzero(&ro, sizeof(ro));
5366         switch (af) {
5367         case AF_INET:
5368                 dst = satosin(&ro.ro_dst);
5369                 dst->sin_family = AF_INET;
5370                 dst->sin_len = sizeof(*dst);
5371                 dst->sin_addr = addr->v4;
5372                 break;
5373 #ifdef INET6
5374         case AF_INET6:
5375                 dst6 = (struct sockaddr_in6 *)&ro.ro_dst;
5376                 dst6->sin6_family = AF_INET6;
5377                 dst6->sin6_len = sizeof(*dst6);
5378                 dst6->sin6_addr = addr->v6;
5379                 break;
5380 #endif /* INET6 */
5381         default:
5382                 return (0);
5383         }
5384
5385 rtalloc_ign((struct route *)&ro, (RTF_CLONING | RTF_PRCLONING));
5386
5387         if (ro.ro_rt != NULL) {
5388                 RTFREE(ro.ro_rt);
5389         }
5390
5391         return (ret);
5392 }
5393
5394 #ifdef INET
5395 void
5396 pf_route(struct mbuf **m, struct pf_rule *r, int dir, struct ifnet *oifp,
5397     struct pf_state *s, struct pf_pdesc *pd)
5398 {
5399         struct mbuf             *m0, *m1;
5400         struct route             iproute;
5401         struct route            *ro = NULL;
5402         struct sockaddr_in      *dst;
5403         struct ip               *ip;
5404         struct ifnet            *ifp = NULL;
5405         struct pf_addr           naddr;
5406         struct pf_src_node      *sn = NULL;
5407         int                      error = 0;
5408         int sw_csum;
5409 #ifdef IPSEC
5410         struct m_tag            *mtag;
5411 #endif /* IPSEC */
5412
5413         ASSERT_LWKT_TOKEN_HELD(&pf_token);
5414
5415         if (m == NULL || *m == NULL || r == NULL ||
5416             (dir != PF_IN && dir != PF_OUT) || oifp == NULL)
5417                 panic("pf_route: invalid parameters");
5418
5419         if (((*m)->m_pkthdr.fw_flags & PF_MBUF_ROUTED) == 0) {
5420                 (*m)->m_pkthdr.fw_flags |= PF_MBUF_ROUTED;
5421                 (*m)->m_pkthdr.pf.routed = 1;
5422         } else {
5423                 if ((*m)->m_pkthdr.pf.routed++ > 3) {
5424                         m0 = *m;
5425                         *m = NULL;
5426                         goto bad;
5427                 }
5428         }
5429
5430         if (r->rt == PF_DUPTO) {
5431                 if ((m0 = m_dup(*m, MB_DONTWAIT)) == NULL) {
5432                         return;
5433                 }
5434         } else {
5435                 if ((r->rt == PF_REPLYTO) == (r->direction == dir)) {
5436                         return;
5437                 }
5438                 m0 = *m;
5439         }
5440
5441         if (m0->m_len < sizeof(struct ip)) {
5442                 DPFPRINTF(PF_DEBUG_URGENT,
5443                     ("pf_route: m0->m_len < sizeof(struct ip)\n"));
5444                 goto bad;
5445         }
5446
5447         ip = mtod(m0, struct ip *);
5448
5449         ro = &iproute;
5450         bzero((caddr_t)ro, sizeof(*ro));
5451         dst = satosin(&ro->ro_dst);
5452         dst->sin_family = AF_INET;
5453         dst->sin_len = sizeof(*dst);
5454         dst->sin_addr = ip->ip_dst;
5455
5456         if (r->rt == PF_FASTROUTE) {
5457                 rtalloc(ro);
5458                 if (ro->ro_rt == 0) {
5459                         ipstat.ips_noroute++;
5460                         goto bad;
5461                 }
5462
5463                 ifp = ro->ro_rt->rt_ifp;
5464                 ro->ro_rt->rt_use++;
5465
5466                 if (ro->ro_rt->rt_flags & RTF_GATEWAY)
5467                         dst = satosin(ro->ro_rt->rt_gateway);
5468         } else {
5469                 if (TAILQ_EMPTY(&r->rpool.list)) {
5470                         DPFPRINTF(PF_DEBUG_URGENT,
5471                             ("pf_route: TAILQ_EMPTY(&r->rpool.list)\n"));
5472                         goto bad;
5473                 }
5474                 if (s == NULL) {
5475                         pf_map_addr(AF_INET, r, (struct pf_addr *)&ip->ip_src,
5476                             &naddr, NULL, &sn);
5477                         if (!PF_AZERO(&naddr, AF_INET))
5478                                 dst->sin_addr.s_addr = naddr.v4.s_addr;
5479                         ifp = r->rpool.cur->kif ?
5480                             r->rpool.cur->kif->pfik_ifp : NULL;
5481                 } else {
5482                         if (!PF_AZERO(&s->rt_addr, AF_INET))
5483                                 dst->sin_addr.s_addr =
5484                                     s->rt_addr.v4.s_addr;
5485                         ifp = s->rt_kif ? s->rt_kif->pfik_ifp : NULL;
5486                 }
5487         }
5488         if (ifp == NULL)
5489                 goto bad;
5490
5491         if (oifp != ifp) {
5492                 if (pf_test(PF_OUT, ifp, &m0, NULL, NULL) != PF_PASS) {
5493                         goto bad;
5494                 } else if (m0 == NULL) {
5495                         goto done;
5496                 }
5497                 if (m0->m_len < sizeof(struct ip)) {
5498                         DPFPRINTF(PF_DEBUG_URGENT,
5499                             ("pf_route: m0->m_len < sizeof(struct ip)\n"));
5500                         goto bad;
5501                 }
5502                 ip = mtod(m0, struct ip *);
5503         }
5504
5505         /* Copied from FreeBSD 5.1-CURRENT ip_output. */
5506         m0->m_pkthdr.csum_flags |= CSUM_IP;
5507         sw_csum = m0->m_pkthdr.csum_flags & ~ifp->if_hwassist;
5508         if (sw_csum & CSUM_DELAY_DATA) {
5509                 in_delayed_cksum(m0);
5510                 sw_csum &= ~CSUM_DELAY_DATA;
5511         }
5512         m0->m_pkthdr.csum_flags &= ifp->if_hwassist;
5513
5514         if (ip->ip_len <= ifp->if_mtu ||
5515             (ifp->if_hwassist & CSUM_FRAGMENT &&
5516                 (ip->ip_off & IP_DF) == 0)) {
5517                 ip->ip_len = htons(ip->ip_len);
5518                 ip->ip_off = htons(ip->ip_off);
5519                 ip->ip_sum = 0;
5520                 if (sw_csum & CSUM_DELAY_IP) {
5521                         /* From KAME */
5522                         if (ip->ip_v == IPVERSION &&
5523                             (ip->ip_hl << 2) == sizeof(*ip)) {
5524                                 ip->ip_sum = in_cksum_hdr(ip);
5525                         } else {
5526                                 ip->ip_sum = in_cksum(m0, ip->ip_hl << 2);
5527                         }
5528                 }
5529                 lwkt_reltoken(&pf_token);
5530                 error = ifp->if_output(ifp, m0, sintosa(dst), ro->ro_rt);
5531                 lwkt_gettoken(&pf_token);
5532                 goto done;
5533         }
5534
5535         /*
5536          * Too large for interface; fragment if possible.
5537          * Must be able to put at least 8 bytes per fragment.
5538          */
5539         if (ip->ip_off & IP_DF) {
5540                 ipstat.ips_cantfrag++;
5541                 if (r->rt != PF_DUPTO) {
5542                         icmp_error(m0, ICMP_UNREACH, ICMP_UNREACH_NEEDFRAG, 0,
5543                             ifp->if_mtu);
5544                         goto done;
5545                 } else
5546                         goto bad;
5547         }
5548
5549         m1 = m0;
5550         error = ip_fragment(ip, &m0, ifp->if_mtu, ifp->if_hwassist, sw_csum);
5551         if (error) {
5552                 goto bad;
5553         }
5554
5555         for (m0 = m1; m0; m0 = m1) {
5556                 m1 = m0->m_nextpkt;
5557                 m0->m_nextpkt = 0;
5558                 if (error == 0) {
5559                         lwkt_reltoken(&pf_token);
5560                         error = (*ifp->if_output)(ifp, m0, sintosa(dst),
5561                                                   NULL);
5562                         lwkt_gettoken(&pf_token);
5563                 } else
5564                         m_freem(m0);
5565         }
5566
5567         if (error == 0)
5568                 ipstat.ips_fragmented++;
5569
5570 done:
5571         if (r->rt != PF_DUPTO)
5572                 *m = NULL;
5573         if (ro == &iproute && ro->ro_rt)
5574                 RTFREE(ro->ro_rt);
5575         return;
5576
5577 bad:
5578         m_freem(m0);
5579         goto done;
5580 }
5581 #endif /* INET */
5582
5583 #ifdef INET6
5584 void
5585 pf_route6(struct mbuf **m, struct pf_rule *r, int dir, struct ifnet *oifp,
5586     struct pf_state *s, struct pf_pdesc *pd)
5587 {
5588         struct mbuf             *m0;
5589         struct route_in6         ip6route;
5590         struct route_in6        *ro;
5591         struct sockaddr_in6     *dst;
5592         struct ip6_hdr          *ip6;
5593         struct ifnet            *ifp = NULL;
5594         struct pf_addr           naddr;
5595         struct pf_src_node      *sn = NULL;
5596         int                      error = 0;
5597
5598         if (m == NULL || *m == NULL || r == NULL ||
5599             (dir != PF_IN && dir != PF_OUT) || oifp == NULL)
5600                 panic("pf_route6: invalid parameters");
5601
5602         if (((*m)->m_pkthdr.fw_flags & PF_MBUF_ROUTED) == 0) {
5603                 (*m)->m_pkthdr.fw_flags |= PF_MBUF_ROUTED;
5604                 (*m)->m_pkthdr.pf.routed = 1;
5605         } else {
5606                 if ((*m)->m_pkthdr.pf.routed++ > 3) {
5607                         m0 = *m;
5608                         *m = NULL;
5609                         goto bad;
5610                 }
5611         }
5612
5613         if (r->rt == PF_DUPTO) {
5614                 if ((m0 = m_dup(*m, MB_DONTWAIT)) == NULL)
5615                         return;
5616         } else {
5617                 if ((r->rt == PF_REPLYTO) == (r->direction == dir))
5618                         return;
5619                 m0 = *m;
5620         }
5621
5622         if (m0->m_len < sizeof(struct ip6_hdr)) {
5623                 DPFPRINTF(PF_DEBUG_URGENT,
5624                     ("pf_route6: m0->m_len < sizeof(struct ip6_hdr)\n"));
5625                 goto bad;
5626         }
5627         ip6 = mtod(m0, struct ip6_hdr *);
5628
5629         ro = &ip6route;
5630         bzero((caddr_t)ro, sizeof(*ro));
5631         dst = (struct sockaddr_in6 *)&ro->ro_dst;
5632         dst->sin6_family = AF_INET6;
5633         dst->sin6_len = sizeof(*dst);
5634         dst->sin6_addr = ip6->ip6_dst;
5635
5636         /*
5637          * DragonFly doesn't zero the auxillary pkghdr fields, only fw_flags,
5638          * so make sure pf.flags is clear.
5639          *
5640          * Cheat. XXX why only in the v6 case???
5641          */
5642         if (r->rt == PF_FASTROUTE) {
5643                 m0->m_pkthdr.fw_flags |= PF_MBUF_TAGGED;
5644                 m0->m_pkthdr.pf.flags = 0;
5645                 /* XXX Re-Check when Upgrading to > 4.4 */
5646                 m0->m_pkthdr.pf.statekey = NULL;
5647                 ip6_output(m0, NULL, NULL, 0, NULL, NULL, NULL);
5648                 return;
5649         }
5650
5651         if (TAILQ_EMPTY(&r->rpool.list)) {
5652                 DPFPRINTF(PF_DEBUG_URGENT,
5653                     ("pf_route6: TAILQ_EMPTY(&r->rpool.list)\n"));
5654                 goto bad;
5655         }
5656         if (s == NULL) {
5657                 pf_map_addr(AF_INET6, r, (struct pf_addr *)&ip6->ip6_src,
5658                     &naddr, NULL, &sn);
5659                 if (!PF_AZERO(&naddr, AF_INET6))
5660                         PF_ACPY((struct pf_addr *)&dst->sin6_addr,
5661                             &naddr, AF_INET6);
5662                 ifp = r->rpool.cur->kif ? r->rpool.cur->kif->pfik_ifp : NULL;
5663         } else {
5664                 if (!PF_AZERO(&s->rt_addr, AF_INET6))
5665                         PF_ACPY((struct pf_addr *)&dst->sin6_addr,
5666                             &s->rt_addr, AF_INET6);
5667                 ifp = s->rt_kif ? s->rt_kif->pfik_ifp : NULL;
5668         }
5669         if (ifp == NULL)
5670                 goto bad;
5671
5672         if (oifp != ifp) {
5673                 if (pf_test6(PF_OUT, ifp, &m0, NULL, NULL) != PF_PASS) {
5674                         goto bad;
5675                 } else if (m0 == NULL) {
5676                         goto done;
5677                 }
5678                 if (m0->m_len < sizeof(struct ip6_hdr)) {
5679                         DPFPRINTF(PF_DEBUG_URGENT,
5680                             ("pf_route6: m0->m_len < sizeof(struct ip6_hdr)\n"));
5681                         goto bad;
5682                 }
5683                 ip6 = mtod(m0, struct ip6_hdr *);
5684         }
5685
5686         /*
5687          * If the packet is too large for the outgoing interface,
5688          * send back an icmp6 error.
5689          */
5690         if (IN6_IS_ADDR_LINKLOCAL(&dst->sin6_addr))
5691                 dst->sin6_addr.s6_addr16[1] = htons(ifp->if_index);
5692         if ((u_long)m0->m_pkthdr.len <= ifp->if_mtu) {
5693                 error = nd6_output(ifp, ifp, m0, dst, NULL);
5694         } else {
5695                 in6_ifstat_inc(ifp, ifs6_in_toobig);
5696                 if (r->rt != PF_DUPTO)
5697                         icmp6_error(m0, ICMP6_PACKET_TOO_BIG, 0, ifp->if_mtu);
5698                 else
5699                         goto bad;
5700         }
5701
5702 done:
5703         if (r->rt != PF_DUPTO)
5704                 *m = NULL;
5705         return;
5706
5707 bad:
5708         m_freem(m0);
5709         goto done;
5710 }
5711 #endif /* INET6 */
5712
5713
5714 /*
5715  * check protocol (tcp/udp/icmp/icmp6) checksum and set mbuf flag
5716  *   off is the offset where the protocol header starts
5717  *   len is the total length of protocol header plus payload
5718  * returns 0 when the checksum is valid, otherwise returns 1.
5719  */
5720 /*
5721  * XXX
5722  * FreeBSD supports cksum offload for the following drivers.
5723  * em(4), gx(4), lge(4), nge(4), ti(4), xl(4)
5724  * If we can make full use of it we would outperform ipfw/ipfilter in
5725  * very heavy traffic. 
5726  * I have not tested 'cause I don't have NICs that supports cksum offload.
5727  * (There might be problems. Typical phenomena would be
5728  *   1. No route message for UDP packet.
5729  *   2. No connection acceptance from external hosts regardless of rule set.)
5730  */
5731 int
5732 pf_check_proto_cksum(struct mbuf *m, int off, int len, u_int8_t p,
5733     sa_family_t af)
5734 {
5735         u_int16_t sum = 0;
5736         int hw_assist = 0;
5737         struct ip *ip;
5738
5739         if (off < sizeof(struct ip) || len < sizeof(struct udphdr))
5740                 return (1);
5741         if (m->m_pkthdr.len < off + len)
5742                 return (1);
5743
5744         switch (p) {
5745         case IPPROTO_TCP:
5746         case IPPROTO_UDP:
5747                 if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) {
5748                         if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR) {
5749                                 sum = m->m_pkthdr.csum_data;
5750                         } else {
5751                                 ip = mtod(m, struct ip *);      
5752                                 sum = in_pseudo(ip->ip_src.s_addr,
5753                                         ip->ip_dst.s_addr, htonl((u_short)len +
5754                                         m->m_pkthdr.csum_data + p));
5755                         }
5756                         sum ^= 0xffff;
5757                         ++hw_assist;
5758                 }
5759                 break;
5760         case IPPROTO_ICMP:
5761 #ifdef INET6
5762         case IPPROTO_ICMPV6:
5763 #endif /* INET6 */
5764                 break;
5765         default:
5766                 return (1);
5767         }
5768
5769         if (!hw_assist) {
5770                 switch (af) {
5771                 case AF_INET:
5772                         if (p == IPPROTO_ICMP) {
5773                                 if (m->m_len < off)
5774                                         return (1);
5775                                 m->m_data += off;
5776                                 m->m_len -= off;
5777                                 sum = in_cksum(m, len);
5778                                 m->m_data -= off;
5779                                 m->m_len += off;
5780                         } else {
5781                                 if (m->m_len < sizeof(struct ip))
5782                                         return (1);
5783                                 sum = in_cksum_range(m, p, off, len);
5784                                 if (sum == 0) {
5785                                         m->m_pkthdr.csum_flags |=
5786                                             (CSUM_DATA_VALID |
5787                                              CSUM_PSEUDO_HDR);
5788                                         m->m_pkthdr.csum_data = 0xffff;
5789                                 }
5790                         }
5791                         break;
5792 #ifdef INET6
5793                 case AF_INET6:
5794                         if (m->m_len < sizeof(struct ip6_hdr))
5795                                 return (1);
5796                         sum = in6_cksum(m, p, off, len);
5797                         /*
5798                          * XXX
5799                          * IPv6 H/W cksum off-load not supported yet!
5800                          *
5801                          * if (sum == 0) {
5802                          *      m->m_pkthdr.csum_flags |=
5803                          *          (CSUM_DATA_VALID|CSUM_PSEUDO_HDR);
5804                          *      m->m_pkthdr.csum_data = 0xffff;
5805                          *}
5806                          */
5807                         break;
5808 #endif /* INET6 */
5809                 default:
5810                         return (1);
5811                 }
5812         }
5813         if (sum) {
5814                 switch (p) {
5815                 case IPPROTO_TCP:
5816                         tcpstat.tcps_rcvbadsum++;
5817                         break;
5818                 case IPPROTO_UDP:
5819                         udpstat.udps_badsum++;
5820                         break;
5821                 case IPPROTO_ICMP:
5822                         icmpstat.icps_checksum++;
5823                         break;
5824 #ifdef INET6
5825                 case IPPROTO_ICMPV6:
5826                         icmp6stat.icp6s_checksum++;
5827                         break;
5828 #endif /* INET6 */
5829                 }
5830                 return (1);
5831         }
5832         return (0);
5833 }
5834
5835 struct pf_divert *
5836 pf_find_divert(struct mbuf *m)
5837 {
5838         struct m_tag    *mtag;
5839
5840         if ((mtag = m_tag_find(m, PACKET_TAG_PF_DIVERT, NULL)) == NULL)
5841                 return (NULL);
5842
5843         return ((struct pf_divert *)(mtag + 1));
5844 }
5845
5846 struct pf_divert *
5847 pf_get_divert(struct mbuf *m)
5848 {
5849         struct m_tag    *mtag;
5850
5851         if ((mtag = m_tag_find(m, PACKET_TAG_PF_DIVERT, NULL)) == NULL) {
5852                 mtag = m_tag_get(PACKET_TAG_PF_DIVERT, sizeof(struct pf_divert),
5853                     M_NOWAIT);
5854                 if (mtag == NULL)
5855                         return (NULL);
5856                 bzero(mtag + 1, sizeof(struct pf_divert));
5857                 m_tag_prepend(m, mtag);
5858         }
5859
5860         return ((struct pf_divert *)(mtag + 1));
5861 }
5862
5863 #ifdef INET
5864 int
5865 pf_test(int dir, struct ifnet *ifp, struct mbuf **m0,
5866     struct ether_header *eh, struct inpcb *inp)
5867 {
5868         struct pfi_kif          *kif;
5869         u_short                  action, reason = 0, log = 0;
5870         struct mbuf             *m = *m0;
5871         struct ip               *h = NULL;
5872         struct pf_rule          *a = NULL, *r = &pf_default_rule, *tr, *nr;
5873         struct pf_state         *s = NULL;
5874         struct pf_ruleset       *ruleset = NULL;
5875         struct pf_pdesc          pd;
5876         int                      off, dirndx, pqid = 0;
5877
5878         if (!pf_status.running)
5879                 return (PF_PASS);
5880
5881         memset(&pd, 0, sizeof(pd));
5882         if (ifp->if_type == IFT_CARP && ifp->if_carpdev)
5883                 kif = (struct pfi_kif *)ifp->if_carpdev->if_pf_kif;
5884         else
5885                 kif = (struct pfi_kif *)ifp->if_pf_kif;
5886
5887         if (kif == NULL) {
5888                 DPFPRINTF(PF_DEBUG_URGENT,
5889                     ("pf_test: kif == NULL, if_xname %s\n", ifp->if_xname));
5890                 return (PF_DROP);
5891         }
5892         if (kif->pfik_flags & PFI_IFLAG_SKIP)
5893                 return (PF_PASS);
5894
5895 #ifdef DIAGNOSTIC
5896         if ((m->m_flags & M_PKTHDR) == 0)
5897                 panic("non-M_PKTHDR is passed to pf_test");
5898 #endif /* DIAGNOSTIC */
5899
5900         if (m->m_pkthdr.len < (int)sizeof(*h)) {
5901                 action = PF_DROP;
5902                 REASON_SET(&reason, PFRES_SHORT);
5903                 log = 1;
5904                 goto done;
5905         }
5906
5907         /*
5908          * DragonFly doesn't zero the auxillary pkghdr fields, only fw_flags,
5909          * so make sure pf.flags is clear.
5910          */
5911         if (m->m_pkthdr.fw_flags & PF_MBUF_TAGGED)
5912                 return (PF_PASS);
5913         m->m_pkthdr.pf.flags = 0;
5914         /* Re-Check when updating to > 4.4 */
5915         m->m_pkthdr.pf.statekey = NULL;
5916
5917         /* We do IP header normalization and packet reassembly here */
5918         if (pf_normalize_ip(m0, dir, kif, &reason, &pd) != PF_PASS) {
5919                 action = PF_DROP;
5920                 goto done;
5921         }
5922         m = *m0;        /* pf_normalize messes with m0 */
5923         h = mtod(m, struct ip *);
5924
5925         off = h->ip_hl << 2;
5926         if (off < (int)sizeof(*h)) {
5927                 action = PF_DROP;
5928                 REASON_SET(&reason, PFRES_SHORT);
5929                 log = 1;
5930                 goto done;
5931         }
5932
5933         pd.src = (struct pf_addr *)&h->ip_src;
5934         pd.dst = (struct pf_addr *)&h->ip_dst;
5935         pd.sport = pd.dport = NULL;
5936         pd.ip_sum = &h->ip_sum;
5937         pd.proto_sum = NULL;
5938         pd.proto = h->ip_p;
5939         pd.dir = dir;
5940         pd.sidx = (dir == PF_IN) ? 0 : 1;
5941         pd.didx = (dir == PF_IN) ? 1 : 0;
5942         pd.af = AF_INET;
5943         pd.tos = h->ip_tos;
5944         pd.tot_len = h->ip_len;
5945         pd.eh = eh;
5946
5947         /* handle fragments that didn't get reassembled by normalization */
5948         if (h->ip_off & (IP_MF | IP_OFFMASK)) {
5949                 action = pf_test_fragment(&r, dir, kif, m, h,
5950                     &pd, &a, &ruleset);
5951                 goto done;
5952         }
5953
5954         switch (h->ip_p) {
5955
5956         case IPPROTO_TCP: {
5957                 struct tcphdr   th;
5958
5959                 pd.hdr.tcp = &th;
5960                 if (!pf_pull_hdr(m, off, &th, sizeof(th),
5961                     &action, &reason, AF_INET)) {
5962                         log = action != PF_PASS;
5963                         goto done;
5964                 }
5965                 pd.p_len = pd.tot_len - off - (th.th_off << 2);
5966                 if ((th.th_flags & TH_ACK) && pd.p_len == 0)
5967                         pqid = 1;
5968                 action = pf_normalize_tcp(dir, kif, m, 0, off, h, &pd);
5969                 if (action == PF_DROP)
5970                         goto done;
5971                 action = pf_test_state_tcp(&s, dir, kif, m, off, h, &pd,
5972                     &reason);
5973                 if (action == PF_PASS) {
5974                         pfsync_update_state(s);
5975                         r = s->rule.ptr;
5976                         a = s->anchor.ptr;
5977                         log = s->log;
5978                 } else if (s == NULL)
5979                         action = pf_test_rule(&r, &s, dir, kif,
5980                             m, off, h, &pd, &a, &ruleset, NULL, inp);
5981                 break;
5982         }
5983
5984         case IPPROTO_UDP: {
5985                 struct udphdr   uh;
5986
5987                 pd.hdr.udp = &uh;
5988                 if (!pf_pull_hdr(m, off, &uh, sizeof(uh),
5989                     &action, &reason, AF_INET)) {
5990                         log = action != PF_PASS;
5991                         goto done;
5992                 }
5993                 if (uh.uh_dport == 0 ||
5994                     ntohs(uh.uh_ulen) > m->m_pkthdr.len - off ||
5995                     ntohs(uh.uh_ulen) < sizeof(struct udphdr)) {
5996                         action = PF_DROP;
5997                         REASON_SET(&reason, PFRES_SHORT);
5998                         goto done;
5999                 }
6000                 action = pf_test_state_udp(&s, dir, kif, m, off, h, &pd);
6001                 if (action == PF_PASS) {
6002                         pfsync_update_state(s);
6003                         r = s->rule.ptr;
6004                         a = s->anchor.ptr;
6005                         log = s->log;
6006                 } else if (s == NULL)
6007                         action = pf_test_rule(&r, &s, dir, kif,
6008                             m, off, h, &pd, &a, &ruleset, NULL, inp);
6009                 break;
6010         }
6011
6012         case IPPROTO_ICMP: {
6013                 struct icmp     ih;
6014
6015                 pd.hdr.icmp = &ih;
6016                 if (!pf_pull_hdr(m, off, &ih, ICMP_MINLEN,
6017                     &action, &reason, AF_INET)) {
6018                         log = action != PF_PASS;
6019                         goto done;
6020                 }
6021                 action = pf_test_state_icmp(&s, dir, kif, m, off, h, &pd,
6022                     &reason);
6023                 if (action == PF_PASS) {
6024                         pfsync_update_state(s);
6025                         r = s->rule.ptr;
6026                         a = s->anchor.ptr;
6027                         log = s->log;
6028                 } else if (s == NULL)
6029                         action = pf_test_rule(&r, &s, dir, kif,
6030                             m, off, h, &pd, &a, &ruleset, NULL, inp);
6031                 break;
6032         }
6033
6034         default:
6035                 action = pf_test_state_other(&s, dir, kif, m, &pd);
6036                 if (action == PF_PASS) {
6037                         pfsync_update_state(s);
6038                         r = s->rule.ptr;
6039                         a = s->anchor.ptr;
6040                         log = s->log;
6041                 } else if (s == NULL)
6042                         action = pf_test_rule(&r, &s, dir, kif, m, off, h,
6043                             &pd, &a, &ruleset, NULL, inp);
6044                 break;
6045         }
6046
6047 done:
6048         if (action == PF_PASS && h->ip_hl > 5 &&
6049             !((s && s->state_flags & PFSTATE_ALLOWOPTS) || r->allow_opts)) {
6050                 action = PF_DROP;
6051                 REASON_SET(&reason, PFRES_IPOPTIONS);
6052                 log = 1;
6053                 DPFPRINTF(PF_DEBUG_MISC,
6054                     ("pf: dropping packet with ip options\n"));
6055         }
6056
6057         if ((s && s->tag) || r->rtableid)
6058                 pf_tag_packet(m, s ? s->tag : 0, r->rtableid);
6059
6060 #if 0
6061         if (dir == PF_IN && s && s->key[PF_SK_STACK])
6062                 m->m_pkthdr.pf.statekey = s->key[PF_SK_STACK];
6063 #endif
6064
6065 #ifdef ALTQ
6066         if (action == PF_PASS && r->qid) {
6067                 m->m_pkthdr.fw_flags |= PF_MBUF_STRUCTURE;
6068                 if (pqid || (pd.tos & IPTOS_LOWDELAY))
6069                         m->m_pkthdr.pf.qid = r->pqid;
6070                 else
6071                         m->m_pkthdr.pf.qid = r->qid;
6072                 m->m_pkthdr.pf.ecn_af = AF_INET;
6073                 m->m_pkthdr.pf.hdr = h;
6074                 /* add connection hash for fairq */
6075                 if (s) {
6076                         /* for fairq */
6077                         m->m_pkthdr.pf.state_hash = s->hash;
6078                         m->m_pkthdr.pf.flags |= PF_TAG_STATE_HASHED;
6079                 }
6080         }
6081 #endif /* ALTQ */
6082
6083         /*
6084          * connections redirected to loopback should not match sockets
6085          * bound specifically to loopback due to security implications,
6086          * see tcp_input() and in_pcblookup_listen().
6087          */
6088         if (dir == PF_IN && action == PF_PASS && (pd.proto == IPPROTO_TCP ||
6089             pd.proto == IPPROTO_UDP) && s != NULL && s->nat_rule.ptr != NULL &&
6090             (s->nat_rule.ptr->action == PF_RDR ||
6091             s->nat_rule.ptr->action == PF_BINAT) &&
6092             (ntohl(pd.dst->v4.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET)
6093                 m->m_pkthdr.pf.flags |= PF_TAG_TRANSLATE_LOCALHOST;
6094
6095         if (dir == PF_IN && action == PF_PASS && r->divert.port) {
6096                 struct pf_divert *divert;
6097
6098                 if ((divert = pf_get_divert(m))) {
6099                         m->m_pkthdr.pf.flags |= PF_TAG_DIVERTED;
6100                         divert->port = r->divert.port;
6101                         divert->addr.ipv4 = r->divert.addr.v4;
6102                 }
6103         }
6104
6105         if (log) {
6106                 struct pf_rule *lr;
6107
6108                 if (s != NULL && s->nat_rule.ptr != NULL &&
6109                     s->nat_rule.ptr->log & PF_LOG_ALL)
6110                         lr = s->nat_rule.ptr;
6111                 else
6112                         lr = r;
6113                 PFLOG_PACKET(kif, h, m, AF_INET, dir, reason, lr, a, ruleset,
6114                     &pd);
6115         }
6116
6117         kif->pfik_bytes[0][dir == PF_OUT][action != PF_PASS] += pd.tot_len;
6118         kif->pfik_packets[0][dir == PF_OUT][action != PF_PASS]++;
6119
6120         if (action == PF_PASS || r->action == PF_DROP) {
6121                 dirndx = (dir == PF_OUT);
6122                 r->packets[dirndx]++;
6123                 r->bytes[dirndx] += pd.tot_len;
6124                 if (a != NULL) {
6125                         a->packets[dirndx]++;
6126                         a->bytes[dirndx] += pd.tot_len;
6127                 }
6128                 if (s != NULL) {
6129                         if (s->nat_rule.ptr != NULL) {
6130                                 s->nat_rule.ptr->packets[dirndx]++;
6131                                 s->nat_rule.ptr->bytes[dirndx] += pd.tot_len;
6132                         }
6133                         if (s->src_node != NULL) {
6134                                 s->src_node->packets[dirndx]++;
6135                                 s->src_node->bytes[dirndx] += pd.tot_len;
6136                         }
6137                         if (s->nat_src_node != NULL) {
6138                                 s->nat_src_node->packets[dirndx]++;
6139                                 s->nat_src_node->bytes[dirndx] += pd.tot_len;
6140                         }
6141                         dirndx = (dir == s->direction) ? 0 : 1;
6142                         s->packets[dirndx]++;
6143                         s->bytes[dirndx] += pd.tot_len;
6144                 }
6145                 tr = r;
6146                 nr = (s != NULL) ? s->nat_rule.ptr : pd.nat_rule;
6147                 if (nr != NULL && r == &pf_default_rule)
6148                         tr = nr;
6149                 if (tr->src.addr.type == PF_ADDR_TABLE)
6150                         pfr_update_stats(tr->src.addr.p.tbl,
6151                             (s == NULL) ? pd.src :
6152                             &s->key[(s->direction == PF_IN)]->
6153                                 addr[(s->direction == PF_OUT)],
6154                             pd.af, pd.tot_len, dir == PF_OUT,
6155                             r->action == PF_PASS, tr->src.neg);
6156                 if (tr->dst.addr.type == PF_ADDR_TABLE)
6157                         pfr_update_stats(tr->dst.addr.p.tbl,
6158                             (s == NULL) ? pd.dst :
6159                             &s->key[(s->direction == PF_IN)]->
6160                                 addr[(s->direction == PF_IN)],
6161                             pd.af, pd.tot_len, dir == PF_OUT,
6162                             r->action == PF_PASS, tr->dst.neg);
6163         }
6164
6165
6166         if (action == PF_SYNPROXY_DROP) {
6167                 m_freem(*m0);
6168                 *m0 = NULL;
6169                 action = PF_PASS;
6170         } else if (r->rt)
6171                 /* pf_route can free the mbuf causing *m0 to become NULL */
6172                 pf_route(m0, r, dir, kif->pfik_ifp, s, &pd);
6173
6174         return (action);
6175 }
6176 #endif /* INET */
6177
6178 #ifdef INET6
6179 int
6180 pf_test6(int dir, struct ifnet *ifp, struct mbuf **m0,
6181     struct ether_header *eh, struct inpcb *inp)
6182 {
6183         struct pfi_kif          *kif;
6184         u_short                  action, reason = 0, log = 0;
6185         struct mbuf             *m = *m0, *n = NULL;
6186         struct ip6_hdr          *h = NULL;
6187         struct pf_rule          *a = NULL, *r = &pf_default_rule, *tr, *nr;
6188         struct pf_state         *s = NULL;
6189         struct pf_ruleset       *ruleset = NULL;
6190         struct pf_pdesc          pd;
6191         int                      off, terminal = 0, dirndx, rh_cnt = 0;
6192
6193         if (!pf_status.running)
6194                 return (PF_PASS);
6195
6196         memset(&pd, 0, sizeof(pd));
6197         if (ifp->if_type == IFT_CARP && ifp->if_carpdev)
6198                 kif = (struct pfi_kif *)ifp->if_carpdev->if_pf_kif;
6199         else
6200                 kif = (struct pfi_kif *)ifp->if_pf_kif;
6201
6202         if (kif == NULL) {
6203                 DPFPRINTF(PF_DEBUG_URGENT,
6204                     ("pf_test6: kif == NULL, if_xname %s\n", ifp->if_xname));
6205                 return (PF_DROP);
6206         }
6207         if (kif->pfik_flags & PFI_IFLAG_SKIP)
6208                 return (PF_PASS);
6209
6210 #ifdef DIAGNOSTIC
6211         if ((m->m_flags & M_PKTHDR) == 0)
6212                 panic("non-M_PKTHDR is passed to pf_test6");
6213 #endif /* DIAGNOSTIC */
6214
6215         if (m->m_pkthdr.len < (int)sizeof(*h)) {
6216                 action = PF_DROP;
6217                 REASON_SET(&reason, PFRES_SHORT);
6218                 log = 1;
6219                 goto done;
6220         }
6221
6222         /*
6223          * DragonFly doesn't zero the auxillary pkghdr fields, only fw_flags,
6224          * so make sure pf.flags is clear.
6225          */
6226         if (m->m_pkthdr.fw_flags & PF_MBUF_TAGGED)
6227                 return (PF_PASS);
6228         m->m_pkthdr.pf.flags = 0;
6229         /* Re-Check when updating to > 4.4 */
6230         m->m_pkthdr.pf.statekey = NULL;
6231
6232         /* We do IP header normalization and packet reassembly here */
6233         if (pf_normalize_ip6(m0, dir, kif, &reason, &pd) != PF_PASS) {
6234                 action = PF_DROP;
6235                 goto done;
6236         }
6237         m = *m0;        /* pf_normalize messes with m0 */
6238         h = mtod(m, struct ip6_hdr *);
6239
6240 #if 1
6241         /*
6242          * we do not support jumbogram yet.  if we keep going, zero ip6_plen
6243          * will do something bad, so drop the packet for now.
6244          */
6245         if (htons(h->ip6_plen) == 0) {
6246                 action = PF_DROP;
6247                 REASON_SET(&reason, PFRES_NORM);        /*XXX*/
6248                 goto done;
6249         }
6250 #endif
6251
6252         pd.src = (struct pf_addr *)&h->ip6_src;
6253         pd.dst = (struct pf_addr *)&h->ip6_dst;
6254         pd.sport = pd.dport = NULL;
6255         pd.ip_sum = NULL;
6256         pd.proto_sum = NULL;
6257         pd.dir = dir;
6258         pd.sidx = (dir == PF_IN) ? 0 : 1;
6259         pd.didx = (dir == PF_IN) ? 1 : 0;
6260         pd.af = AF_INET6;
6261         pd.tos = 0;
6262         pd.tot_len = ntohs(h->ip6_plen) + sizeof(struct ip6_hdr);
6263         pd.eh = eh;
6264
6265         off = ((caddr_t)h - m->m_data) + sizeof(struct ip6_hdr);
6266         pd.proto = h->ip6_nxt;
6267         do {
6268                 switch (pd.proto) {
6269                 case IPPROTO_FRAGMENT:
6270                         action = pf_test_fragment(&r, dir, kif, m, h,
6271                             &pd, &a, &ruleset);
6272                         if (action == PF_DROP)
6273                                 REASON_SET(&reason, PFRES_FRAG);
6274                         goto done;
6275                 case IPPROTO_ROUTING: {
6276                         struct ip6_rthdr rthdr;
6277
6278                         if (rh_cnt++) {
6279                                 DPFPRINTF(PF_DEBUG_MISC,
6280                                     ("pf: IPv6 more than one rthdr\n"));
6281                                 action = PF_DROP;
6282                                 REASON_SET(&reason, PFRES_IPOPTIONS);
6283                                 log = 1;
6284                                 goto done;
6285                         }
6286                         if (!pf_pull_hdr(m, off, &rthdr, sizeof(rthdr), NULL,
6287                             &reason, pd.af)) {
6288                                 DPFPRINTF(PF_DEBUG_MISC,
6289                                     ("pf: IPv6 short rthdr\n"));
6290                                 action = PF_DROP;
6291                                 REASON_SET(&reason, PFRES_SHORT);
6292                                 log = 1;
6293                                 goto done;
6294                         }
6295                         if (rthdr.ip6r_type == IPV6_RTHDR_TYPE_0) {
6296                                 DPFPRINTF(PF_DEBUG_MISC,
6297                                     ("pf: IPv6 rthdr0\n"));
6298                                 action = PF_DROP;
6299                                 REASON_SET(&reason, PFRES_IPOPTIONS);
6300                                 log = 1;
6301                                 goto done;
6302                         }
6303                         /* FALLTHROUGH */
6304                 }
6305                 case IPPROTO_AH:
6306                 case IPPROTO_HOPOPTS:
6307                 case IPPROTO_DSTOPTS: {
6308                         /* get next header and header length */
6309                         struct ip6_ext  opt6;
6310
6311                         if (!pf_pull_hdr(m, off, &opt6, sizeof(opt6),
6312                             NULL, &reason, pd.af)) {
6313                                 DPFPRINTF(PF_DEBUG_MISC,
6314                                     ("pf: IPv6 short opt\n"));
6315                                 action = PF_DROP;
6316                                 log = 1;
6317                                 goto done;
6318                         }
6319                         if (pd.proto == IPPROTO_AH)
6320                                 off += (opt6.ip6e_len + 2) * 4;
6321                         else
6322                                 off += (opt6.ip6e_len + 1) * 8;
6323                         pd.proto = opt6.ip6e_nxt;
6324                         /* goto the next header */
6325                         break;
6326                 }
6327                 default:
6328                         terminal++;
6329                         break;
6330                 }
6331         } while (!terminal);
6332
6333         /* if there's no routing header, use unmodified mbuf for checksumming */
6334         if (!n)
6335                 n = m;
6336
6337         switch (pd.proto) {
6338
6339         case IPPROTO_TCP: {
6340                 struct tcphdr   th;
6341
6342                 pd.hdr.tcp = &th;
6343                 if (!pf_pull_hdr(m, off, &th, sizeof(th),
6344                     &action, &reason, AF_INET6)) {
6345                         log = action != PF_PASS;
6346                         goto done;
6347                 }
6348                 pd.p_len = pd.tot_len - off - (th.th_off << 2);
6349                 action = pf_normalize_tcp(dir, kif, m, 0, off, h, &pd);
6350                 if (action == PF_DROP)
6351                         goto done;
6352                 action = pf_test_state_tcp(&s, dir, kif, m, off, h, &pd,
6353                     &reason);
6354                 if (action == PF_PASS) {
6355                         pfsync_update_state(s);
6356                         r = s->rule.ptr;
6357                         a = s->anchor.ptr;
6358                         log = s->log;
6359                 } else if (s == NULL)
6360                         action = pf_test_rule(&r, &s, dir, kif,
6361                             m, off, h, &pd, &a, &ruleset, NULL, inp);
6362                 break;
6363         }
6364
6365         case IPPROTO_UDP: {
6366                 struct udphdr   uh;
6367
6368                 pd.hdr.udp = &uh;
6369                 if (!pf_pull_hdr(m, off, &uh, sizeof(uh),
6370                     &action, &reason, AF_INET6)) {
6371                         log = action != PF_PASS;
6372                         goto done;
6373                 }
6374                 if (uh.uh_dport == 0 ||
6375                     ntohs(uh.uh_ulen) > m->m_pkthdr.len - off ||
6376                     ntohs(uh.uh_ulen) < sizeof(struct udphdr)) {
6377                         action = PF_DROP;
6378                         REASON_SET(&reason, PFRES_SHORT);
6379                         goto done;
6380                 }
6381                 action = pf_test_state_udp(&s, dir, kif, m, off, h, &pd);
6382                 if (action == PF_PASS) {
6383                         pfsync_update_state(s);
6384                         r = s->rule.ptr;
6385                         a = s->anchor.ptr;
6386                         log = s->log;
6387                 } else if (s == NULL)
6388                         action = pf_test_rule(&r, &s, dir, kif,
6389                             m, off, h, &pd, &a, &ruleset, NULL, inp);
6390                 break;
6391         }
6392
6393         case IPPROTO_ICMPV6: {
6394                 struct icmp6_hdr        ih;
6395
6396                 pd.hdr.icmp6 = &ih;
6397                 if (!pf_pull_hdr(m, off, &ih, sizeof(ih),
6398                     &action, &reason, AF_INET6)) {
6399                         log = action != PF_PASS;
6400                         goto done;
6401                 }
6402                 action = pf_test_state_icmp(&s, dir, kif,
6403                     m, off, h, &pd, &reason);
6404                 if (action == PF_PASS) {
6405                         pfsync_update_state(s);
6406                         r = s->rule.ptr;
6407                         a = s->anchor.ptr;
6408                         log = s->log;
6409                 } else if (s == NULL)
6410                         action = pf_test_rule(&r, &s, dir, kif,
6411                             m, off, h, &pd, &a, &ruleset, NULL, inp);
6412                 break;
6413         }
6414
6415         default:
6416                 action = pf_test_state_other(&s, dir, kif, m, &pd);
6417                 if (action == PF_PASS) {
6418                         pfsync_update_state(s);
6419                         r = s->rule.ptr;
6420                         a = s->anchor.ptr;
6421                         log = s->log;
6422                 } else if (s == NULL)
6423                         action = pf_test_rule(&r, &s, dir, kif, m, off, h,
6424                             &pd, &a, &ruleset, NULL, inp);
6425                 break;
6426         }
6427
6428 done:
6429         if (n != m) {
6430                 m_freem(n);
6431                 n = NULL;
6432         }
6433
6434         /* handle dangerous IPv6 extension headers. */
6435         if (action == PF_PASS && rh_cnt &&
6436             !((s && s->state_flags & PFSTATE_ALLOWOPTS) || r->allow_opts)) {
6437                 action = PF_DROP;
6438                 REASON_SET(&reason, PFRES_IPOPTIONS);
6439                 log = 1;
6440                 DPFPRINTF(PF_DEBUG_MISC,
6441                     ("pf: dropping packet with dangerous v6 headers\n"));
6442         }
6443
6444         if ((s && s->tag) || r->rtableid)
6445                 pf_tag_packet(m, s ? s->tag : 0, r->rtableid);
6446
6447 #if 0
6448         if (dir == PF_IN && s && s->key[PF_SK_STACK])
6449                 m->m_pkthdr.pf.statekey = s->key[PF_SK_STACK];
6450 #endif
6451
6452 #ifdef ALTQ
6453         if (action == PF_PASS && r->qid) {
6454                 m->m_pkthdr.fw_flags |= PF_MBUF_STRUCTURE;
6455                 if (pd.tos & IPTOS_LOWDELAY)
6456                         m->m_pkthdr.pf.qid = r->pqid;
6457                 else
6458                         m->m_pkthdr.pf.qid = r->qid;
6459                 m->m_pkthdr.pf.ecn_af = AF_INET6;
6460                 m->m_pkthdr.pf.hdr = h;
6461                 if (s) {
6462                         /* for fairq */
6463                         m->m_pkthdr.pf.state_hash = s->hash;
6464                         m->m_pkthdr.pf.flags |= PF_TAG_STATE_HASHED;
6465                 }
6466         }
6467 #endif /* ALTQ */
6468
6469         if (dir == PF_IN && action == PF_PASS && (pd.proto == IPPROTO_TCP ||
6470             pd.proto == IPPROTO_UDP) && s != NULL && s->nat_rule.ptr != NULL &&
6471             (s->nat_rule.ptr->action == PF_RDR ||
6472             s->nat_rule.ptr->action == PF_BINAT) &&
6473             IN6_IS_ADDR_LOOPBACK(&pd.dst->v6))
6474                 m->m_pkthdr.pf.flags |= PF_TAG_TRANSLATE_LOCALHOST;
6475
6476         if (dir == PF_IN && action == PF_PASS && r->divert.port) {
6477                 struct pf_divert *divert;
6478
6479                 if ((divert = pf_get_divert(m))) {
6480                         m->m_pkthdr.pf.flags |= PF_TAG_DIVERTED;
6481                         divert->port = r->divert.port;
6482                         divert->addr.ipv6 = r->divert.addr.v6;
6483                 }
6484         }
6485
6486         if (log) {
6487                 struct pf_rule *lr;
6488
6489                 if (s != NULL && s->nat_rule.ptr != NULL &&
6490                     s->nat_rule.ptr->log & PF_LOG_ALL)
6491                         lr = s->nat_rule.ptr;
6492                 else
6493                         lr = r;
6494                 PFLOG_PACKET(kif, h, m, AF_INET6, dir, reason, lr, a, ruleset,
6495                     &pd);
6496         }
6497
6498         kif->pfik_bytes[1][dir == PF_OUT][action != PF_PASS] += pd.tot_len;
6499         kif->pfik_packets[1][dir == PF_OUT][action != PF_PASS]++;
6500
6501         if (action == PF_PASS || r->action == PF_DROP) {
6502                 dirndx = (dir == PF_OUT);
6503                 r->packets[dirndx]++;
6504                 r->bytes[dirndx] += pd.tot_len;
6505                 if (a != NULL) {
6506                         a->packets[dirndx]++;
6507                         a->bytes[dirndx] += pd.tot_len;
6508                 }
6509                 if (s != NULL) {
6510                         if (s->nat_rule.ptr != NULL) {
6511                                 s->nat_rule.ptr->packets[dirndx]++;
6512                                 s->nat_rule.ptr->bytes[dirndx] += pd.tot_len;
6513                         }
6514                         if (s->src_node != NULL) {
6515                                 s->src_node->packets[dirndx]++;
6516                                 s->src_node->bytes[dirndx] += pd.tot_len;
6517                         }
6518                         if (s->nat_src_node != NULL) {
6519                                 s->nat_src_node->packets[dirndx]++;
6520                                 s->nat_src_node->bytes[dirndx] += pd.tot_len;
6521                         }
6522                         dirndx = (dir == s->direction) ? 0 : 1;
6523                         s->packets[dirndx]++;
6524                         s->bytes[dirndx] += pd.tot_len;
6525                 }
6526                 tr = r;
6527                 nr = (s != NULL) ? s->nat_rule.ptr : pd.nat_rule;
6528                 if (nr != NULL && r == &pf_default_rule)
6529                         tr = nr;
6530                 if (tr->src.addr.type == PF_ADDR_TABLE)
6531                         pfr_update_stats(tr->src.addr.p.tbl,
6532                             (s == NULL) ? pd.src :
6533                             &s->key[(s->direction == PF_IN)]->addr[0],
6534                             pd.af, pd.tot_len, dir == PF_OUT,
6535                             r->action == PF_PASS, tr->src.neg);
6536                 if (tr->dst.addr.type == PF_ADDR_TABLE)
6537                         pfr_update_stats(tr->dst.addr.p.tbl,
6538                             (s == NULL) ? pd.dst :
6539                             &s->key[(s->direction == PF_IN)]->addr[1],
6540                             pd.af, pd.tot_len, dir == PF_OUT,
6541                             r->action == PF_PASS, tr->dst.neg);
6542         }
6543
6544
6545         if (action == PF_SYNPROXY_DROP) {
6546                 m_freem(*m0);
6547                 *m0 = NULL;
6548                 action = PF_PASS;
6549         } else if (r->rt)
6550                 /* pf_route6 can free the mbuf causing *m0 to become NULL */
6551                 pf_route6(m0, r, dir, kif->pfik_ifp, s, &pd);
6552
6553         return (action);
6554 }
6555 #endif /* INET6 */
6556
6557 int
6558 pf_check_congestion(struct ifqueue *ifq)
6559 {
6560                 return (0);
6561 }