1 /*- 2 * Copyright (c) 2001 Daniel Hartmeier 3 * Copyright (c) 2002 - 2008 Henning Brauer 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * - Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * - Redistributions in binary form must reproduce the above 13 * copyright notice, this list of conditions and the following 14 * disclaimer in the documentation and/or other materials provided 15 * with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 21 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 27 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * POSSIBILITY OF SUCH DAMAGE. 29 * 30 * Effort sponsored in part by the Defense Advanced Research Projects 31 * Agency (DARPA) and Air Force Research Laboratory, Air Force 32 * Materiel Command, USAF, under agreement number F30602-01-2-0537. 33 * 34 * $OpenBSD: pf_lb.c,v 1.2 2009/02/12 02:13:15 sthen Exp $ 35 */ 36 37 #include <sys/cdefs.h> 38 __FBSDID("$FreeBSD$"); 39 40 #include "opt_pf.h" 41 #include "opt_inet.h" 42 #include "opt_inet6.h" 43 44 #include <sys/param.h> 45 #include <sys/lock.h> 46 #include <sys/mbuf.h> 47 #include <sys/rwlock.h> 48 #include <sys/socket.h> 49 #include <sys/sysctl.h> 50 51 #include <net/if.h> 52 #include <net/vnet.h> 53 #include <net/pfvar.h> 54 #include <net/if_pflog.h> 55 56 #define DPFPRINTF(n, x) if (V_pf_status.debug >= (n)) printf x 57 58 static void pf_hash(struct pf_addr *, struct pf_addr *, 59 struct pf_poolhashkey *, sa_family_t); 60 static struct pf_rule *pf_match_translation(struct pf_pdesc *, struct mbuf *, 61 int, int, struct pfi_kif *, 62 struct pf_addr *, u_int16_t, struct pf_addr *, 63 uint16_t, int, struct pf_anchor_stackframe *); 64 static int pf_get_sport(sa_family_t, uint8_t, struct pf_rule *, 65 struct pf_addr *, uint16_t, struct pf_addr *, uint16_t, struct pf_addr *, 66 uint16_t *, uint16_t, uint16_t, struct pf_src_node **); 67 68 #define mix(a,b,c) \ 69 do { \ 70 a -= b; a -= c; a ^= (c >> 13); \ 71 b -= c; b -= a; b ^= (a << 8); \ 72 c -= a; c -= b; c ^= (b >> 13); \ 73 a -= b; a -= c; a ^= (c >> 12); \ 74 b -= c; b -= a; b ^= (a << 16); \ 75 c -= a; c -= b; c ^= (b >> 5); \ 76 a -= b; a -= c; a ^= (c >> 3); \ 77 b -= c; b -= a; b ^= (a << 10); \ 78 c -= a; c -= b; c ^= (b >> 15); \ 79 } while (0) 80 81 /* 82 * hash function based on bridge_hash in if_bridge.c 83 */ 84 static void 85 pf_hash(struct pf_addr *inaddr, struct pf_addr *hash, 86 struct pf_poolhashkey *key, sa_family_t af) 87 { 88 u_int32_t a = 0x9e3779b9, b = 0x9e3779b9, c = key->key32[0]; 89 90 switch (af) { 91 #ifdef INET 92 case AF_INET: 93 a += inaddr->addr32[0]; 94 b += key->key32[1]; 95 mix(a, b, c); 96 hash->addr32[0] = c + key->key32[2]; 97 break; 98 #endif /* INET */ 99 #ifdef INET6 100 case AF_INET6: 101 a += inaddr->addr32[0]; 102 b += inaddr->addr32[2]; 103 mix(a, b, c); 104 hash->addr32[0] = c; 105 a += inaddr->addr32[1]; 106 b += inaddr->addr32[3]; 107 c += key->key32[1]; 108 mix(a, b, c); 109 hash->addr32[1] = c; 110 a += inaddr->addr32[2]; 111 b += inaddr->addr32[1]; 112 c += key->key32[2]; 113 mix(a, b, c); 114 hash->addr32[2] = c; 115 a += inaddr->addr32[3]; 116 b += inaddr->addr32[0]; 117 c += key->key32[3]; 118 mix(a, b, c); 119 hash->addr32[3] = c; 120 break; 121 #endif /* INET6 */ 122 } 123 } 124 125 static struct pf_rule * 126 pf_match_translation(struct pf_pdesc *pd, struct mbuf *m, int off, 127 int direction, struct pfi_kif *kif, struct pf_addr *saddr, u_int16_t sport, 128 struct pf_addr *daddr, uint16_t dport, int rs_num, 129 struct pf_anchor_stackframe *anchor_stack) 130 { 131 struct pf_rule *r, *rm = NULL; 132 struct pf_ruleset *ruleset = NULL; 133 int tag = -1; 134 int rtableid = -1; 135 int asd = 0; 136 137 r = TAILQ_FIRST(pf_main_ruleset.rules[rs_num].active.ptr); 138 while (r && rm == NULL) { 139 struct pf_rule_addr *src = NULL, *dst = NULL; 140 struct pf_addr_wrap *xdst = NULL; 141 142 if (r->action == PF_BINAT && direction == PF_IN) { 143 src = &r->dst; 144 if (r->rpool.cur != NULL) 145 xdst = &r->rpool.cur->addr; 146 } else { 147 src = &r->src; 148 dst = &r->dst; 149 } 150 151 r->evaluations++; 152 if (pfi_kif_match(r->kif, kif) == r->ifnot) 153 r = r->skip[PF_SKIP_IFP].ptr; 154 else if (r->direction && r->direction != direction) 155 r = r->skip[PF_SKIP_DIR].ptr; 156 else if (r->af && r->af != pd->af) 157 r = r->skip[PF_SKIP_AF].ptr; 158 else if (r->proto && r->proto != pd->proto) 159 r = r->skip[PF_SKIP_PROTO].ptr; 160 else if (PF_MISMATCHAW(&src->addr, saddr, pd->af, 161 src->neg, kif, M_GETFIB(m))) 162 r = r->skip[src == &r->src ? PF_SKIP_SRC_ADDR : 163 PF_SKIP_DST_ADDR].ptr; 164 else if (src->port_op && !pf_match_port(src->port_op, 165 src->port[0], src->port[1], sport)) 166 r = r->skip[src == &r->src ? PF_SKIP_SRC_PORT : 167 PF_SKIP_DST_PORT].ptr; 168 else if (dst != NULL && 169 PF_MISMATCHAW(&dst->addr, daddr, pd->af, dst->neg, NULL, 170 M_GETFIB(m))) 171 r = r->skip[PF_SKIP_DST_ADDR].ptr; 172 else if (xdst != NULL && PF_MISMATCHAW(xdst, daddr, pd->af, 173 0, NULL, M_GETFIB(m))) 174 r = TAILQ_NEXT(r, entries); 175 else if (dst != NULL && dst->port_op && 176 !pf_match_port(dst->port_op, dst->port[0], 177 dst->port[1], dport)) 178 r = r->skip[PF_SKIP_DST_PORT].ptr; 179 else if (r->match_tag && !pf_match_tag(m, r, &tag, 180 pd->pf_mtag ? pd->pf_mtag->tag : 0)) 181 r = TAILQ_NEXT(r, entries); 182 else if (r->os_fingerprint != PF_OSFP_ANY && (pd->proto != 183 IPPROTO_TCP || !pf_osfp_match(pf_osfp_fingerprint(pd, m, 184 off, pd->hdr.tcp), r->os_fingerprint))) 185 r = TAILQ_NEXT(r, entries); 186 else { 187 if (r->tag) 188 tag = r->tag; 189 if (r->rtableid >= 0) 190 rtableid = r->rtableid; 191 if (r->anchor == NULL) { 192 rm = r; 193 } else 194 pf_step_into_anchor(anchor_stack, &asd, 195 &ruleset, rs_num, &r, NULL, NULL); 196 } 197 if (r == NULL) 198 pf_step_out_of_anchor(anchor_stack, &asd, &ruleset, 199 rs_num, &r, NULL, NULL); 200 } 201 202 if (tag > 0 && pf_tag_packet(m, pd, tag)) 203 return (NULL); 204 if (rtableid >= 0) 205 M_SETFIB(m, rtableid); 206 207 if (rm != NULL && (rm->action == PF_NONAT || 208 rm->action == PF_NORDR || rm->action == PF_NOBINAT)) 209 return (NULL); 210 return (rm); 211 } 212 213 static int 214 pf_get_sport(sa_family_t af, u_int8_t proto, struct pf_rule *r, 215 struct pf_addr *saddr, uint16_t sport, struct pf_addr *daddr, 216 uint16_t dport, struct pf_addr *naddr, uint16_t *nport, uint16_t low, 217 uint16_t high, struct pf_src_node **sn) 218 { 219 struct pf_state_key_cmp key; 220 struct pf_addr init_addr; 221 222 bzero(&init_addr, sizeof(init_addr)); 223 if (pf_map_addr(af, r, saddr, naddr, &init_addr, sn)) 224 return (1); 225 226 if (proto == IPPROTO_ICMP) { 227 low = 1; 228 high = 65535; 229 } 230 231 bzero(&key, sizeof(key)); 232 key.af = af; 233 key.proto = proto; 234 key.port[0] = dport; 235 PF_ACPY(&key.addr[0], daddr, key.af); 236 237 do { 238 PF_ACPY(&key.addr[1], naddr, key.af); 239 240 /* 241 * port search; start random, step; 242 * similar 2 portloop in in_pcbbind 243 */ 244 if (!(proto == IPPROTO_TCP || proto == IPPROTO_UDP || 245 proto == IPPROTO_ICMP) || (low == 0 && high == 0)) { 246 /* 247 * XXX bug: icmp states don't use the id on both sides. 248 * (traceroute -I through nat) 249 */ 250 key.port[1] = sport; 251 if (pf_find_state_all(&key, PF_IN, NULL) == NULL) { 252 *nport = sport; 253 return (0); 254 } 255 } else if (low == high) { 256 key.port[1] = htons(low); 257 if (pf_find_state_all(&key, PF_IN, NULL) == NULL) { 258 *nport = htons(low); 259 return (0); 260 } 261 } else { 262 uint16_t tmp, cut; 263 264 if (low > high) { 265 tmp = low; 266 low = high; 267 high = tmp; 268 } 269 /* low < high */ 270 cut = arc4random() % (1 + high - low) + low; 271 /* low <= cut <= high */ 272 for (tmp = cut; tmp <= high; ++(tmp)) { 273 key.port[1] = htons(tmp); 274 if (pf_find_state_all(&key, PF_IN, NULL) == 275 NULL) { 276 *nport = htons(tmp); 277 return (0); 278 } 279 } 280 for (tmp = cut - 1; tmp >= low; --(tmp)) { 281 key.port[1] = htons(tmp); 282 if (pf_find_state_all(&key, PF_IN, NULL) == 283 NULL) { 284 *nport = htons(tmp); 285 return (0); 286 } 287 } 288 } 289 290 switch (r->rpool.opts & PF_POOL_TYPEMASK) { 291 case PF_POOL_RANDOM: 292 case PF_POOL_ROUNDROBIN: 293 if (pf_map_addr(af, r, saddr, naddr, &init_addr, sn)) 294 return (1); 295 break; 296 case PF_POOL_NONE: 297 case PF_POOL_SRCHASH: 298 case PF_POOL_BITMASK: 299 default: 300 return (1); 301 } 302 } while (! PF_AEQ(&init_addr, naddr, af) ); 303 return (1); /* none available */ 304 } 305 306 int 307 pf_map_addr(sa_family_t af, struct pf_rule *r, struct pf_addr *saddr, 308 struct pf_addr *naddr, struct pf_addr *init_addr, struct pf_src_node **sn) 309 { 310 struct pf_pool *rpool = &r->rpool; 311 struct pf_addr *raddr = NULL, *rmask = NULL; 312 313 if (*sn == NULL && r->rpool.opts & PF_POOL_STICKYADDR && 314 (r->rpool.opts & PF_POOL_TYPEMASK) != PF_POOL_NONE) { 315 *sn = pf_find_src_node(saddr, r, af, 0); 316 if (*sn != NULL && !PF_AZERO(&(*sn)->raddr, af)) { 317 PF_ACPY(naddr, &(*sn)->raddr, af); 318 if (V_pf_status.debug >= PF_DEBUG_MISC) { 319 printf("pf_map_addr: src tracking maps "); 320 pf_print_host(saddr, 0, af); 321 printf(" to "); 322 pf_print_host(naddr, 0, af); 323 printf("\n"); 324 } 325 return (0); 326 } 327 } 328 329 if (rpool->cur->addr.type == PF_ADDR_NOROUTE) 330 return (1); 331 if (rpool->cur->addr.type == PF_ADDR_DYNIFTL) { 332 switch (af) { 333 #ifdef INET 334 case AF_INET: 335 if (rpool->cur->addr.p.dyn->pfid_acnt4 < 1 && 336 (rpool->opts & PF_POOL_TYPEMASK) != 337 PF_POOL_ROUNDROBIN) 338 return (1); 339 raddr = &rpool->cur->addr.p.dyn->pfid_addr4; 340 rmask = &rpool->cur->addr.p.dyn->pfid_mask4; 341 break; 342 #endif /* INET */ 343 #ifdef INET6 344 case AF_INET6: 345 if (rpool->cur->addr.p.dyn->pfid_acnt6 < 1 && 346 (rpool->opts & PF_POOL_TYPEMASK) != 347 PF_POOL_ROUNDROBIN) 348 return (1); 349 raddr = &rpool->cur->addr.p.dyn->pfid_addr6; 350 rmask = &rpool->cur->addr.p.dyn->pfid_mask6; 351 break; 352 #endif /* INET6 */ 353 } 354 } else if (rpool->cur->addr.type == PF_ADDR_TABLE) { 355 if ((rpool->opts & PF_POOL_TYPEMASK) != PF_POOL_ROUNDROBIN) 356 return (1); /* unsupported */ 357 } else { 358 raddr = &rpool->cur->addr.v.a.addr; 359 rmask = &rpool->cur->addr.v.a.mask; 360 } 361 362 switch (rpool->opts & PF_POOL_TYPEMASK) { 363 case PF_POOL_NONE: 364 PF_ACPY(naddr, raddr, af); 365 break; 366 case PF_POOL_BITMASK: 367 PF_POOLMASK(naddr, raddr, rmask, saddr, af); 368 break; 369 case PF_POOL_RANDOM: 370 if (init_addr != NULL && PF_AZERO(init_addr, af)) { 371 switch (af) { 372 #ifdef INET 373 case AF_INET: 374 rpool->counter.addr32[0] = htonl(arc4random()); 375 break; 376 #endif /* INET */ 377 #ifdef INET6 378 case AF_INET6: 379 if (rmask->addr32[3] != 0xffffffff) 380 rpool->counter.addr32[3] = 381 htonl(arc4random()); 382 else 383 break; 384 if (rmask->addr32[2] != 0xffffffff) 385 rpool->counter.addr32[2] = 386 htonl(arc4random()); 387 else 388 break; 389 if (rmask->addr32[1] != 0xffffffff) 390 rpool->counter.addr32[1] = 391 htonl(arc4random()); 392 else 393 break; 394 if (rmask->addr32[0] != 0xffffffff) 395 rpool->counter.addr32[0] = 396 htonl(arc4random()); 397 break; 398 #endif /* INET6 */ 399 } 400 PF_POOLMASK(naddr, raddr, rmask, &rpool->counter, af); 401 PF_ACPY(init_addr, naddr, af); 402 403 } else { 404 PF_AINC(&rpool->counter, af); 405 PF_POOLMASK(naddr, raddr, rmask, &rpool->counter, af); 406 } 407 break; 408 case PF_POOL_SRCHASH: 409 { 410 unsigned char hash[16]; 411 412 pf_hash(saddr, (struct pf_addr *)&hash, &rpool->key, af); 413 PF_POOLMASK(naddr, raddr, rmask, (struct pf_addr *)&hash, af); 414 break; 415 } 416 case PF_POOL_ROUNDROBIN: 417 { 418 struct pf_pooladdr *acur = rpool->cur; 419 420 /* 421 * XXXGL: in the round-robin case we need to store 422 * the round-robin machine state in the rule, thus 423 * forwarding thread needs to modify rule. 424 * 425 * This is done w/o locking, because performance is assumed 426 * more important than round-robin precision. 427 * 428 * In the simpliest case we just update the "rpool->cur" 429 * pointer. However, if pool contains tables or dynamic 430 * addresses, then "tblidx" is also used to store machine 431 * state. Since "tblidx" is int, concurrent access to it can't 432 * lead to inconsistence, only to lost of precision. 433 * 434 * Things get worse, if table contains not hosts, but 435 * prefixes. In this case counter also stores machine state, 436 * and for IPv6 address, counter can't be updated atomically. 437 * Probably, using round-robin on a table containing IPv6 438 * prefixes (or even IPv4) would cause a panic. 439 */ 440 441 if (rpool->cur->addr.type == PF_ADDR_TABLE) { 442 if (!pfr_pool_get(rpool->cur->addr.p.tbl, 443 &rpool->tblidx, &rpool->counter, af)) 444 goto get_addr; 445 } else if (rpool->cur->addr.type == PF_ADDR_DYNIFTL) { 446 if (!pfr_pool_get(rpool->cur->addr.p.dyn->pfid_kt, 447 &rpool->tblidx, &rpool->counter, af)) 448 goto get_addr; 449 } else if (pf_match_addr(0, raddr, rmask, &rpool->counter, af)) 450 goto get_addr; 451 452 try_next: 453 if (TAILQ_NEXT(rpool->cur, entries) == NULL) 454 rpool->cur = TAILQ_FIRST(&rpool->list); 455 else 456 rpool->cur = TAILQ_NEXT(rpool->cur, entries); 457 if (rpool->cur->addr.type == PF_ADDR_TABLE) { 458 rpool->tblidx = -1; 459 if (pfr_pool_get(rpool->cur->addr.p.tbl, 460 &rpool->tblidx, &rpool->counter, af)) { 461 /* table contains no address of type 'af' */ 462 if (rpool->cur != acur) 463 goto try_next; 464 return (1); 465 } 466 } else if (rpool->cur->addr.type == PF_ADDR_DYNIFTL) { 467 rpool->tblidx = -1; 468 if (pfr_pool_get(rpool->cur->addr.p.dyn->pfid_kt, 469 &rpool->tblidx, &rpool->counter, af)) { 470 /* table contains no address of type 'af' */ 471 if (rpool->cur != acur) 472 goto try_next; 473 return (1); 474 } 475 } else { 476 raddr = &rpool->cur->addr.v.a.addr; 477 rmask = &rpool->cur->addr.v.a.mask; 478 PF_ACPY(&rpool->counter, raddr, af); 479 } 480 481 get_addr: 482 PF_ACPY(naddr, &rpool->counter, af); 483 if (init_addr != NULL && PF_AZERO(init_addr, af)) 484 PF_ACPY(init_addr, naddr, af); 485 PF_AINC(&rpool->counter, af); 486 break; 487 } 488 } 489 if (*sn != NULL) 490 PF_ACPY(&(*sn)->raddr, naddr, af); 491 492 if (V_pf_status.debug >= PF_DEBUG_MISC && 493 (rpool->opts & PF_POOL_TYPEMASK) != PF_POOL_NONE) { 494 printf("pf_map_addr: selected address "); 495 pf_print_host(naddr, 0, af); 496 printf("\n"); 497 } 498 499 return (0); 500 } 501 502 struct pf_rule * 503 pf_get_translation(struct pf_pdesc *pd, struct mbuf *m, int off, int direction, 504 struct pfi_kif *kif, struct pf_src_node **sn, 505 struct pf_state_key **skp, struct pf_state_key **nkp, 506 struct pf_addr *saddr, struct pf_addr *daddr, 507 uint16_t sport, uint16_t dport, struct pf_anchor_stackframe *anchor_stack) 508 { 509 struct pf_rule *r = NULL; 510 struct pf_addr *naddr; 511 uint16_t *nport; 512 513 PF_RULES_RASSERT(); 514 KASSERT(*skp == NULL, ("*skp not NULL")); 515 KASSERT(*nkp == NULL, ("*nkp not NULL")); 516 517 if (direction == PF_OUT) { 518 r = pf_match_translation(pd, m, off, direction, kif, saddr, 519 sport, daddr, dport, PF_RULESET_BINAT, anchor_stack); 520 if (r == NULL) 521 r = pf_match_translation(pd, m, off, direction, kif, 522 saddr, sport, daddr, dport, PF_RULESET_NAT, 523 anchor_stack); 524 } else { 525 r = pf_match_translation(pd, m, off, direction, kif, saddr, 526 sport, daddr, dport, PF_RULESET_RDR, anchor_stack); 527 if (r == NULL) 528 r = pf_match_translation(pd, m, off, direction, kif, 529 saddr, sport, daddr, dport, PF_RULESET_BINAT, 530 anchor_stack); 531 } 532 533 if (r == NULL) 534 return (NULL); 535 536 switch (r->action) { 537 case PF_NONAT: 538 case PF_NOBINAT: 539 case PF_NORDR: 540 return (NULL); 541 } 542 543 *skp = pf_state_key_setup(pd, saddr, daddr, sport, dport); 544 if (*skp == NULL) 545 return (NULL); 546 *nkp = pf_state_key_clone(*skp); 547 if (*nkp == NULL) { 548 uma_zfree(V_pf_state_key_z, skp); 549 *skp = NULL; 550 return (NULL); 551 } 552 553 /* XXX We only modify one side for now. */ 554 naddr = &(*nkp)->addr[1]; 555 nport = &(*nkp)->port[1]; 556 557 switch (r->action) { 558 case PF_NAT: 559 if (pf_get_sport(pd->af, pd->proto, r, saddr, sport, daddr, 560 dport, naddr, nport, r->rpool.proxy_port[0], 561 r->rpool.proxy_port[1], sn)) { 562 DPFPRINTF(PF_DEBUG_MISC, 563 ("pf: NAT proxy port allocation (%u-%u) failed\n", 564 r->rpool.proxy_port[0], r->rpool.proxy_port[1])); 565 goto notrans; 566 } 567 break; 568 case PF_BINAT: 569 switch (direction) { 570 case PF_OUT: 571 if (r->rpool.cur->addr.type == PF_ADDR_DYNIFTL){ 572 switch (pd->af) { 573 #ifdef INET 574 case AF_INET: 575 if (r->rpool.cur->addr.p.dyn-> 576 pfid_acnt4 < 1) 577 goto notrans; 578 PF_POOLMASK(naddr, 579 &r->rpool.cur->addr.p.dyn-> 580 pfid_addr4, 581 &r->rpool.cur->addr.p.dyn-> 582 pfid_mask4, saddr, AF_INET); 583 break; 584 #endif /* INET */ 585 #ifdef INET6 586 case AF_INET6: 587 if (r->rpool.cur->addr.p.dyn-> 588 pfid_acnt6 < 1) 589 goto notrans; 590 PF_POOLMASK(naddr, 591 &r->rpool.cur->addr.p.dyn-> 592 pfid_addr6, 593 &r->rpool.cur->addr.p.dyn-> 594 pfid_mask6, saddr, AF_INET6); 595 break; 596 #endif /* INET6 */ 597 } 598 } else 599 PF_POOLMASK(naddr, 600 &r->rpool.cur->addr.v.a.addr, 601 &r->rpool.cur->addr.v.a.mask, saddr, 602 pd->af); 603 break; 604 case PF_IN: 605 if (r->src.addr.type == PF_ADDR_DYNIFTL) { 606 switch (pd->af) { 607 #ifdef INET 608 case AF_INET: 609 if (r->src.addr.p.dyn-> pfid_acnt4 < 1) 610 goto notrans; 611 PF_POOLMASK(naddr, 612 &r->src.addr.p.dyn->pfid_addr4, 613 &r->src.addr.p.dyn->pfid_mask4, 614 daddr, AF_INET); 615 break; 616 #endif /* INET */ 617 #ifdef INET6 618 case AF_INET6: 619 if (r->src.addr.p.dyn->pfid_acnt6 < 1) 620 goto notrans; 621 PF_POOLMASK(naddr, 622 &r->src.addr.p.dyn->pfid_addr6, 623 &r->src.addr.p.dyn->pfid_mask6, 624 daddr, AF_INET6); 625 break; 626 #endif /* INET6 */ 627 } 628 } else 629 PF_POOLMASK(naddr, &r->src.addr.v.a.addr, 630 &r->src.addr.v.a.mask, daddr, pd->af); 631 break; 632 } 633 break; 634 case PF_RDR: { 635 if (pf_map_addr(pd->af, r, saddr, naddr, NULL, sn)) 636 goto notrans; 637 if ((r->rpool.opts & PF_POOL_TYPEMASK) == PF_POOL_BITMASK) 638 PF_POOLMASK(naddr, naddr, &r->rpool.cur->addr.v.a.mask, 639 daddr, pd->af); 640 641 if (r->rpool.proxy_port[1]) { 642 uint32_t tmp_nport; 643 644 tmp_nport = ((ntohs(dport) - ntohs(r->dst.port[0])) % 645 (r->rpool.proxy_port[1] - r->rpool.proxy_port[0] + 646 1)) + r->rpool.proxy_port[0]; 647 648 /* Wrap around if necessary. */ 649 if (tmp_nport > 65535) 650 tmp_nport -= 65535; 651 *nport = htons((uint16_t)tmp_nport); 652 } else if (r->rpool.proxy_port[0]) 653 *nport = htons(r->rpool.proxy_port[0]); 654 break; 655 } 656 default: 657 panic("%s: unknown action %u", __func__, r->action); 658 } 659 660 /* Return success only if translation really happened. */ 661 if (bcmp(*skp, *nkp, sizeof(struct pf_state_key_cmp))) 662 return (r); 663 664 notrans: 665 uma_zfree(V_pf_state_key_z, *nkp); 666 uma_zfree(V_pf_state_key_z, *skp); 667 *skp = *nkp = NULL; 668 *sn = NULL; 669 670 return (NULL); 671 } 672