1 /* $OpenBSD: pfctl.c,v 1.278 2008/08/31 20:18:17 jmc Exp $ */ 2 3 /*- 4 * SPDX-License-Identifier: BSD-2-Clause 5 * 6 * Copyright (c) 2001 Daniel Hartmeier 7 * Copyright (c) 2002,2003 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 */ 35 36 #include <sys/cdefs.h> 37 __FBSDID("$FreeBSD$"); 38 39 #define PFIOC_USE_LATEST 40 41 #include <sys/types.h> 42 #include <sys/ioctl.h> 43 #include <sys/nv.h> 44 #include <sys/socket.h> 45 #include <sys/stat.h> 46 #include <sys/endian.h> 47 48 #include <net/if.h> 49 #include <netinet/in.h> 50 #include <net/pfvar.h> 51 #include <arpa/inet.h> 52 #include <net/altq/altq.h> 53 #include <sys/sysctl.h> 54 55 #include <err.h> 56 #include <errno.h> 57 #include <fcntl.h> 58 #include <libpfctl.h> 59 #include <limits.h> 60 #include <netdb.h> 61 #include <stdint.h> 62 #include <stdio.h> 63 #include <stdlib.h> 64 #include <string.h> 65 #include <unistd.h> 66 67 #include "pfctl_parser.h" 68 #include "pfctl.h" 69 70 void usage(void); 71 int pfctl_enable(int, int); 72 int pfctl_disable(int, int); 73 int pfctl_clear_stats(int, int); 74 int pfctl_get_skip_ifaces(void); 75 int pfctl_check_skip_ifaces(char *); 76 int pfctl_adjust_skip_ifaces(struct pfctl *); 77 int pfctl_clear_interface_flags(int, int); 78 int pfctl_flush_eth_rules(int, int, char *); 79 int pfctl_flush_rules(int, int, char *); 80 int pfctl_flush_nat(int, int, char *); 81 int pfctl_clear_altq(int, int); 82 int pfctl_clear_src_nodes(int, int); 83 int pfctl_clear_iface_states(int, const char *, int); 84 void pfctl_addrprefix(char *, struct pf_addr *); 85 int pfctl_kill_src_nodes(int, const char *, int); 86 int pfctl_net_kill_states(int, const char *, int); 87 int pfctl_gateway_kill_states(int, const char *, int); 88 int pfctl_label_kill_states(int, const char *, int); 89 int pfctl_id_kill_states(int, const char *, int); 90 void pfctl_init_options(struct pfctl *); 91 int pfctl_load_options(struct pfctl *); 92 int pfctl_load_limit(struct pfctl *, unsigned int, unsigned int); 93 int pfctl_load_timeout(struct pfctl *, unsigned int, unsigned int); 94 int pfctl_load_debug(struct pfctl *, unsigned int); 95 int pfctl_load_logif(struct pfctl *, char *); 96 int pfctl_load_hostid(struct pfctl *, u_int32_t); 97 int pfctl_load_syncookies(struct pfctl *, u_int8_t); 98 int pfctl_get_pool(int, struct pfctl_pool *, u_int32_t, u_int32_t, int, 99 char *); 100 void pfctl_print_eth_rule_counters(struct pfctl_eth_rule *, int); 101 void pfctl_print_rule_counters(struct pfctl_rule *, int); 102 int pfctl_show_eth_rules(int, char *, int, enum pfctl_show, char *, int); 103 int pfctl_show_rules(int, char *, int, enum pfctl_show, char *, int); 104 int pfctl_show_nat(int, char *, int, char *, int); 105 int pfctl_show_src_nodes(int, int); 106 int pfctl_show_states(int, const char *, int); 107 int pfctl_show_status(int, int); 108 int pfctl_show_running(int); 109 int pfctl_show_timeouts(int, int); 110 int pfctl_show_limits(int, int); 111 void pfctl_debug(int, u_int32_t, int); 112 int pfctl_test_altqsupport(int, int); 113 int pfctl_show_anchors(int, int, char *); 114 int pfctl_show_eth_anchors(int, int, char *); 115 int pfctl_ruleset_trans(struct pfctl *, char *, struct pfctl_anchor *, bool); 116 int pfctl_eth_ruleset_trans(struct pfctl *, char *, 117 struct pfctl_eth_anchor *); 118 int pfctl_load_eth_ruleset(struct pfctl *, char *, 119 struct pfctl_eth_ruleset *, int); 120 int pfctl_load_eth_rule(struct pfctl *, char *, struct pfctl_eth_rule *, 121 int); 122 int pfctl_load_ruleset(struct pfctl *, char *, 123 struct pfctl_ruleset *, int, int); 124 int pfctl_load_rule(struct pfctl *, char *, struct pfctl_rule *, int); 125 const char *pfctl_lookup_option(char *, const char * const *); 126 127 static struct pfctl_anchor_global pf_anchors; 128 struct pfctl_anchor pf_main_anchor; 129 struct pfctl_eth_anchor pf_eth_main_anchor; 130 static struct pfr_buffer skip_b; 131 132 static const char *clearopt; 133 static char *rulesopt; 134 static const char *showopt; 135 static const char *debugopt; 136 static char *anchoropt; 137 static const char *optiopt = NULL; 138 static const char *pf_device = "/dev/pf"; 139 static char *ifaceopt; 140 static char *tableopt; 141 static const char *tblcmdopt; 142 static int src_node_killers; 143 static char *src_node_kill[2]; 144 static int state_killers; 145 static char *state_kill[2]; 146 int loadopt; 147 int altqsupport; 148 149 int dev = -1; 150 static int first_title = 1; 151 static int labels = 0; 152 153 #define INDENT(d, o) do { \ 154 if (o) { \ 155 int i; \ 156 for (i=0; i < d; i++) \ 157 printf(" "); \ 158 } \ 159 } while (0); \ 160 161 162 static const struct { 163 const char *name; 164 int index; 165 } pf_limits[] = { 166 { "states", PF_LIMIT_STATES }, 167 { "src-nodes", PF_LIMIT_SRC_NODES }, 168 { "frags", PF_LIMIT_FRAGS }, 169 { "table-entries", PF_LIMIT_TABLE_ENTRIES }, 170 { NULL, 0 } 171 }; 172 173 struct pf_hint { 174 const char *name; 175 int timeout; 176 }; 177 static const struct pf_hint pf_hint_normal[] = { 178 { "tcp.first", 2 * 60 }, 179 { "tcp.opening", 30 }, 180 { "tcp.established", 24 * 60 * 60 }, 181 { "tcp.closing", 15 * 60 }, 182 { "tcp.finwait", 45 }, 183 { "tcp.closed", 90 }, 184 { "tcp.tsdiff", 30 }, 185 { NULL, 0 } 186 }; 187 static const struct pf_hint pf_hint_satellite[] = { 188 { "tcp.first", 3 * 60 }, 189 { "tcp.opening", 30 + 5 }, 190 { "tcp.established", 24 * 60 * 60 }, 191 { "tcp.closing", 15 * 60 + 5 }, 192 { "tcp.finwait", 45 + 5 }, 193 { "tcp.closed", 90 + 5 }, 194 { "tcp.tsdiff", 60 }, 195 { NULL, 0 } 196 }; 197 static const struct pf_hint pf_hint_conservative[] = { 198 { "tcp.first", 60 * 60 }, 199 { "tcp.opening", 15 * 60 }, 200 { "tcp.established", 5 * 24 * 60 * 60 }, 201 { "tcp.closing", 60 * 60 }, 202 { "tcp.finwait", 10 * 60 }, 203 { "tcp.closed", 3 * 60 }, 204 { "tcp.tsdiff", 60 }, 205 { NULL, 0 } 206 }; 207 static const struct pf_hint pf_hint_aggressive[] = { 208 { "tcp.first", 30 }, 209 { "tcp.opening", 5 }, 210 { "tcp.established", 5 * 60 * 60 }, 211 { "tcp.closing", 60 }, 212 { "tcp.finwait", 30 }, 213 { "tcp.closed", 30 }, 214 { "tcp.tsdiff", 10 }, 215 { NULL, 0 } 216 }; 217 218 static const struct { 219 const char *name; 220 const struct pf_hint *hint; 221 } pf_hints[] = { 222 { "normal", pf_hint_normal }, 223 { "satellite", pf_hint_satellite }, 224 { "high-latency", pf_hint_satellite }, 225 { "conservative", pf_hint_conservative }, 226 { "aggressive", pf_hint_aggressive }, 227 { NULL, NULL } 228 }; 229 230 static const char * const clearopt_list[] = { 231 "nat", "queue", "rules", "Sources", 232 "states", "info", "Tables", "osfp", "all", 233 "ethernet", NULL 234 }; 235 236 static const char * const showopt_list[] = { 237 "ether", "nat", "queue", "rules", "Anchors", "Sources", "states", 238 "info", "Interfaces", "labels", "timeouts", "memory", "Tables", 239 "osfp", "Running", "all", NULL 240 }; 241 242 static const char * const tblcmdopt_list[] = { 243 "kill", "flush", "add", "delete", "load", "replace", "show", 244 "test", "zero", "expire", NULL 245 }; 246 247 static const char * const debugopt_list[] = { 248 "none", "urgent", "misc", "loud", NULL 249 }; 250 251 static const char * const optiopt_list[] = { 252 "none", "basic", "profile", NULL 253 }; 254 255 void 256 usage(void) 257 { 258 extern char *__progname; 259 260 fprintf(stderr, 261 "usage: %s [-AdeghMmNnOPqRrvz] [-a anchor] [-D macro=value] [-F modifier]\n" 262 "\t[-f file] [-i interface] [-K host | network]\n" 263 "\t[-k host | network | gateway | label | id] [-o level] [-p device]\n" 264 "\t[-s modifier] [-t table -T command [address ...]] [-x level]\n", 265 __progname); 266 267 exit(1); 268 } 269 270 /* 271 * Cache protocol number to name translations. 272 * 273 * Translation is performed a lot e.g., when dumping states and 274 * getprotobynumber is incredibly expensive. 275 * 276 * Note from the getprotobynumber(3) manpage: 277 * <quote> 278 * These functions use a thread-specific data space; if the data is needed 279 * for future use, it should be copied before any subsequent calls overwrite 280 * it. Only the Internet protocols are currently understood. 281 * </quote> 282 * 283 * Consequently we only cache the name and strdup it for safety. 284 * 285 * At the time of writing this comment the last entry in /etc/protocols is: 286 * divert 258 DIVERT # Divert pseudo-protocol [non IANA] 287 */ 288 const char * 289 pfctl_proto2name(int proto) 290 { 291 static const char *pfctl_proto_cache[259]; 292 struct protoent *p; 293 294 if (proto >= nitems(pfctl_proto_cache)) { 295 p = getprotobynumber(proto); 296 if (p == NULL) { 297 return (NULL); 298 } 299 return (p->p_name); 300 } 301 302 if (pfctl_proto_cache[proto] == NULL) { 303 p = getprotobynumber(proto); 304 if (p == NULL) { 305 return (NULL); 306 } 307 pfctl_proto_cache[proto] = strdup(p->p_name); 308 } 309 310 return (pfctl_proto_cache[proto]); 311 } 312 313 int 314 pfctl_enable(int dev, int opts) 315 { 316 if (ioctl(dev, DIOCSTART)) { 317 if (errno == EEXIST) 318 errx(1, "pf already enabled"); 319 else if (errno == ESRCH) 320 errx(1, "pfil registeration failed"); 321 else 322 err(1, "DIOCSTART"); 323 } 324 if ((opts & PF_OPT_QUIET) == 0) 325 fprintf(stderr, "pf enabled\n"); 326 327 if (altqsupport && ioctl(dev, DIOCSTARTALTQ)) 328 if (errno != EEXIST) 329 err(1, "DIOCSTARTALTQ"); 330 331 return (0); 332 } 333 334 int 335 pfctl_disable(int dev, int opts) 336 { 337 if (ioctl(dev, DIOCSTOP)) { 338 if (errno == ENOENT) 339 errx(1, "pf not enabled"); 340 else 341 err(1, "DIOCSTOP"); 342 } 343 if ((opts & PF_OPT_QUIET) == 0) 344 fprintf(stderr, "pf disabled\n"); 345 346 if (altqsupport && ioctl(dev, DIOCSTOPALTQ)) 347 if (errno != ENOENT) 348 err(1, "DIOCSTOPALTQ"); 349 350 return (0); 351 } 352 353 int 354 pfctl_clear_stats(int dev, int opts) 355 { 356 if (ioctl(dev, DIOCCLRSTATUS)) 357 err(1, "DIOCCLRSTATUS"); 358 if ((opts & PF_OPT_QUIET) == 0) 359 fprintf(stderr, "pf: statistics cleared\n"); 360 return (0); 361 } 362 363 int 364 pfctl_get_skip_ifaces(void) 365 { 366 bzero(&skip_b, sizeof(skip_b)); 367 skip_b.pfrb_type = PFRB_IFACES; 368 for (;;) { 369 pfr_buf_grow(&skip_b, skip_b.pfrb_size); 370 skip_b.pfrb_size = skip_b.pfrb_msize; 371 if (pfi_get_ifaces(NULL, skip_b.pfrb_caddr, &skip_b.pfrb_size)) 372 err(1, "pfi_get_ifaces"); 373 if (skip_b.pfrb_size <= skip_b.pfrb_msize) 374 break; 375 } 376 return (0); 377 } 378 379 int 380 pfctl_check_skip_ifaces(char *ifname) 381 { 382 struct pfi_kif *p; 383 struct node_host *h = NULL, *n = NULL; 384 385 PFRB_FOREACH(p, &skip_b) { 386 if (!strcmp(ifname, p->pfik_name) && 387 (p->pfik_flags & PFI_IFLAG_SKIP)) 388 p->pfik_flags &= ~PFI_IFLAG_SKIP; 389 if (!strcmp(ifname, p->pfik_name) && p->pfik_group != NULL) { 390 if ((h = ifa_grouplookup(p->pfik_name, 0)) == NULL) 391 continue; 392 393 for (n = h; n != NULL; n = n->next) { 394 if (p->pfik_ifp == NULL) 395 continue; 396 if (strncmp(p->pfik_name, ifname, IFNAMSIZ)) 397 continue; 398 399 p->pfik_flags &= ~PFI_IFLAG_SKIP; 400 } 401 } 402 } 403 return (0); 404 } 405 406 int 407 pfctl_adjust_skip_ifaces(struct pfctl *pf) 408 { 409 struct pfi_kif *p, *pp; 410 struct node_host *h = NULL, *n = NULL; 411 412 PFRB_FOREACH(p, &skip_b) { 413 if (p->pfik_group == NULL || !(p->pfik_flags & PFI_IFLAG_SKIP)) 414 continue; 415 416 pfctl_set_interface_flags(pf, p->pfik_name, PFI_IFLAG_SKIP, 0); 417 if ((h = ifa_grouplookup(p->pfik_name, 0)) == NULL) 418 continue; 419 420 for (n = h; n != NULL; n = n->next) 421 PFRB_FOREACH(pp, &skip_b) { 422 if (pp->pfik_ifp == NULL) 423 continue; 424 425 if (strncmp(pp->pfik_name, n->ifname, IFNAMSIZ)) 426 continue; 427 428 if (!(pp->pfik_flags & PFI_IFLAG_SKIP)) 429 pfctl_set_interface_flags(pf, 430 pp->pfik_name, PFI_IFLAG_SKIP, 1); 431 if (pp->pfik_flags & PFI_IFLAG_SKIP) 432 pp->pfik_flags &= ~PFI_IFLAG_SKIP; 433 } 434 } 435 436 PFRB_FOREACH(p, &skip_b) { 437 if (p->pfik_ifp == NULL || ! (p->pfik_flags & PFI_IFLAG_SKIP)) 438 continue; 439 440 pfctl_set_interface_flags(pf, p->pfik_name, PFI_IFLAG_SKIP, 0); 441 } 442 443 return (0); 444 } 445 446 int 447 pfctl_clear_interface_flags(int dev, int opts) 448 { 449 struct pfioc_iface pi; 450 451 if ((opts & PF_OPT_NOACTION) == 0) { 452 bzero(&pi, sizeof(pi)); 453 pi.pfiio_flags = PFI_IFLAG_SKIP; 454 455 if (ioctl(dev, DIOCCLRIFFLAG, &pi)) 456 err(1, "DIOCCLRIFFLAG"); 457 if ((opts & PF_OPT_QUIET) == 0) 458 fprintf(stderr, "pf: interface flags reset\n"); 459 } 460 return (0); 461 } 462 463 int 464 pfctl_flush_eth_rules(int dev, int opts, char *anchorname) 465 { 466 int ret; 467 468 ret = pfctl_clear_eth_rules(dev, anchorname); 469 if (ret != 0) 470 err(1, "pfctl_clear_eth_rules"); 471 472 if ((opts & PF_OPT_QUIET) == 0) 473 fprintf(stderr, "Ethernet rules cleared\n"); 474 475 return (ret); 476 } 477 478 int 479 pfctl_flush_rules(int dev, int opts, char *anchorname) 480 { 481 int ret; 482 483 ret = pfctl_clear_rules(dev, anchorname); 484 if (ret != 0) 485 err(1, "pfctl_clear_rules"); 486 if ((opts & PF_OPT_QUIET) == 0) 487 fprintf(stderr, "rules cleared\n"); 488 return (0); 489 } 490 491 int 492 pfctl_flush_nat(int dev, int opts, char *anchorname) 493 { 494 int ret; 495 496 ret = pfctl_clear_nat(dev, anchorname); 497 if (ret != 0) 498 err(1, "pfctl_clear_nat"); 499 if ((opts & PF_OPT_QUIET) == 0) 500 fprintf(stderr, "nat cleared\n"); 501 return (0); 502 } 503 504 int 505 pfctl_clear_altq(int dev, int opts) 506 { 507 struct pfr_buffer t; 508 509 if (!altqsupport) 510 return (-1); 511 memset(&t, 0, sizeof(t)); 512 t.pfrb_type = PFRB_TRANS; 513 if (pfctl_add_trans(&t, PF_RULESET_ALTQ, "") || 514 pfctl_trans(dev, &t, DIOCXBEGIN, 0) || 515 pfctl_trans(dev, &t, DIOCXCOMMIT, 0)) 516 err(1, "pfctl_clear_altq"); 517 if ((opts & PF_OPT_QUIET) == 0) 518 fprintf(stderr, "altq cleared\n"); 519 return (0); 520 } 521 522 int 523 pfctl_clear_src_nodes(int dev, int opts) 524 { 525 if (ioctl(dev, DIOCCLRSRCNODES)) 526 err(1, "DIOCCLRSRCNODES"); 527 if ((opts & PF_OPT_QUIET) == 0) 528 fprintf(stderr, "source tracking entries cleared\n"); 529 return (0); 530 } 531 532 int 533 pfctl_clear_iface_states(int dev, const char *iface, int opts) 534 { 535 struct pfctl_kill kill; 536 unsigned int killed; 537 538 memset(&kill, 0, sizeof(kill)); 539 if (iface != NULL && strlcpy(kill.ifname, iface, 540 sizeof(kill.ifname)) >= sizeof(kill.ifname)) 541 errx(1, "invalid interface: %s", iface); 542 543 if (opts & PF_OPT_KILLMATCH) 544 kill.kill_match = true; 545 546 if (pfctl_clear_states(dev, &kill, &killed)) 547 err(1, "DIOCCLRSTATES"); 548 if ((opts & PF_OPT_QUIET) == 0) 549 fprintf(stderr, "%d states cleared\n", killed); 550 return (0); 551 } 552 553 void 554 pfctl_addrprefix(char *addr, struct pf_addr *mask) 555 { 556 char *p; 557 const char *errstr; 558 int prefix, ret_ga, q, r; 559 struct addrinfo hints, *res; 560 561 if ((p = strchr(addr, '/')) == NULL) 562 return; 563 564 *p++ = '\0'; 565 prefix = strtonum(p, 0, 128, &errstr); 566 if (errstr) 567 errx(1, "prefix is %s: %s", errstr, p); 568 569 bzero(&hints, sizeof(hints)); 570 /* prefix only with numeric addresses */ 571 hints.ai_flags |= AI_NUMERICHOST; 572 573 if ((ret_ga = getaddrinfo(addr, NULL, &hints, &res))) { 574 errx(1, "getaddrinfo: %s", gai_strerror(ret_ga)); 575 /* NOTREACHED */ 576 } 577 578 if (res->ai_family == AF_INET && prefix > 32) 579 errx(1, "prefix too long for AF_INET"); 580 else if (res->ai_family == AF_INET6 && prefix > 128) 581 errx(1, "prefix too long for AF_INET6"); 582 583 q = prefix >> 3; 584 r = prefix & 7; 585 switch (res->ai_family) { 586 case AF_INET: 587 bzero(&mask->v4, sizeof(mask->v4)); 588 mask->v4.s_addr = htonl((u_int32_t) 589 (0xffffffffffULL << (32 - prefix))); 590 break; 591 case AF_INET6: 592 bzero(&mask->v6, sizeof(mask->v6)); 593 if (q > 0) 594 memset((void *)&mask->v6, 0xff, q); 595 if (r > 0) 596 *((u_char *)&mask->v6 + q) = 597 (0xff00 >> r) & 0xff; 598 break; 599 } 600 freeaddrinfo(res); 601 } 602 603 int 604 pfctl_kill_src_nodes(int dev, const char *iface, int opts) 605 { 606 struct pfioc_src_node_kill psnk; 607 struct addrinfo *res[2], *resp[2]; 608 struct sockaddr last_src, last_dst; 609 int killed, sources, dests; 610 int ret_ga; 611 612 killed = sources = dests = 0; 613 614 memset(&psnk, 0, sizeof(psnk)); 615 memset(&psnk.psnk_src.addr.v.a.mask, 0xff, 616 sizeof(psnk.psnk_src.addr.v.a.mask)); 617 memset(&last_src, 0xff, sizeof(last_src)); 618 memset(&last_dst, 0xff, sizeof(last_dst)); 619 620 pfctl_addrprefix(src_node_kill[0], &psnk.psnk_src.addr.v.a.mask); 621 622 if ((ret_ga = getaddrinfo(src_node_kill[0], NULL, NULL, &res[0]))) { 623 errx(1, "getaddrinfo: %s", gai_strerror(ret_ga)); 624 /* NOTREACHED */ 625 } 626 for (resp[0] = res[0]; resp[0]; resp[0] = resp[0]->ai_next) { 627 if (resp[0]->ai_addr == NULL) 628 continue; 629 /* We get lots of duplicates. Catch the easy ones */ 630 if (memcmp(&last_src, resp[0]->ai_addr, sizeof(last_src)) == 0) 631 continue; 632 last_src = *(struct sockaddr *)resp[0]->ai_addr; 633 634 psnk.psnk_af = resp[0]->ai_family; 635 sources++; 636 637 if (psnk.psnk_af == AF_INET) 638 psnk.psnk_src.addr.v.a.addr.v4 = 639 ((struct sockaddr_in *)resp[0]->ai_addr)->sin_addr; 640 else if (psnk.psnk_af == AF_INET6) 641 psnk.psnk_src.addr.v.a.addr.v6 = 642 ((struct sockaddr_in6 *)resp[0]->ai_addr)-> 643 sin6_addr; 644 else 645 errx(1, "Unknown address family %d", psnk.psnk_af); 646 647 if (src_node_killers > 1) { 648 dests = 0; 649 memset(&psnk.psnk_dst.addr.v.a.mask, 0xff, 650 sizeof(psnk.psnk_dst.addr.v.a.mask)); 651 memset(&last_dst, 0xff, sizeof(last_dst)); 652 pfctl_addrprefix(src_node_kill[1], 653 &psnk.psnk_dst.addr.v.a.mask); 654 if ((ret_ga = getaddrinfo(src_node_kill[1], NULL, NULL, 655 &res[1]))) { 656 errx(1, "getaddrinfo: %s", 657 gai_strerror(ret_ga)); 658 /* NOTREACHED */ 659 } 660 for (resp[1] = res[1]; resp[1]; 661 resp[1] = resp[1]->ai_next) { 662 if (resp[1]->ai_addr == NULL) 663 continue; 664 if (psnk.psnk_af != resp[1]->ai_family) 665 continue; 666 667 if (memcmp(&last_dst, resp[1]->ai_addr, 668 sizeof(last_dst)) == 0) 669 continue; 670 last_dst = *(struct sockaddr *)resp[1]->ai_addr; 671 672 dests++; 673 674 if (psnk.psnk_af == AF_INET) 675 psnk.psnk_dst.addr.v.a.addr.v4 = 676 ((struct sockaddr_in *)resp[1]-> 677 ai_addr)->sin_addr; 678 else if (psnk.psnk_af == AF_INET6) 679 psnk.psnk_dst.addr.v.a.addr.v6 = 680 ((struct sockaddr_in6 *)resp[1]-> 681 ai_addr)->sin6_addr; 682 else 683 errx(1, "Unknown address family %d", 684 psnk.psnk_af); 685 686 if (ioctl(dev, DIOCKILLSRCNODES, &psnk)) 687 err(1, "DIOCKILLSRCNODES"); 688 killed += psnk.psnk_killed; 689 } 690 freeaddrinfo(res[1]); 691 } else { 692 if (ioctl(dev, DIOCKILLSRCNODES, &psnk)) 693 err(1, "DIOCKILLSRCNODES"); 694 killed += psnk.psnk_killed; 695 } 696 } 697 698 freeaddrinfo(res[0]); 699 700 if ((opts & PF_OPT_QUIET) == 0) 701 fprintf(stderr, "killed %d src nodes from %d sources and %d " 702 "destinations\n", killed, sources, dests); 703 return (0); 704 } 705 706 int 707 pfctl_net_kill_states(int dev, const char *iface, int opts) 708 { 709 struct pfctl_kill kill; 710 struct addrinfo *res[2], *resp[2]; 711 struct sockaddr last_src, last_dst; 712 unsigned int newkilled; 713 int killed, sources, dests; 714 int ret_ga; 715 716 killed = sources = dests = 0; 717 718 memset(&kill, 0, sizeof(kill)); 719 memset(&kill.src.addr.v.a.mask, 0xff, 720 sizeof(kill.src.addr.v.a.mask)); 721 memset(&last_src, 0xff, sizeof(last_src)); 722 memset(&last_dst, 0xff, sizeof(last_dst)); 723 if (iface != NULL && strlcpy(kill.ifname, iface, 724 sizeof(kill.ifname)) >= sizeof(kill.ifname)) 725 errx(1, "invalid interface: %s", iface); 726 727 pfctl_addrprefix(state_kill[0], &kill.src.addr.v.a.mask); 728 729 if (opts & PF_OPT_KILLMATCH) 730 kill.kill_match = true; 731 732 if ((ret_ga = getaddrinfo(state_kill[0], NULL, NULL, &res[0]))) { 733 errx(1, "getaddrinfo: %s", gai_strerror(ret_ga)); 734 /* NOTREACHED */ 735 } 736 for (resp[0] = res[0]; resp[0]; resp[0] = resp[0]->ai_next) { 737 if (resp[0]->ai_addr == NULL) 738 continue; 739 /* We get lots of duplicates. Catch the easy ones */ 740 if (memcmp(&last_src, resp[0]->ai_addr, sizeof(last_src)) == 0) 741 continue; 742 last_src = *(struct sockaddr *)resp[0]->ai_addr; 743 744 kill.af = resp[0]->ai_family; 745 sources++; 746 747 if (kill.af == AF_INET) 748 kill.src.addr.v.a.addr.v4 = 749 ((struct sockaddr_in *)resp[0]->ai_addr)->sin_addr; 750 else if (kill.af == AF_INET6) 751 kill.src.addr.v.a.addr.v6 = 752 ((struct sockaddr_in6 *)resp[0]->ai_addr)-> 753 sin6_addr; 754 else 755 errx(1, "Unknown address family %d", kill.af); 756 757 if (state_killers > 1) { 758 dests = 0; 759 memset(&kill.dst.addr.v.a.mask, 0xff, 760 sizeof(kill.dst.addr.v.a.mask)); 761 memset(&last_dst, 0xff, sizeof(last_dst)); 762 pfctl_addrprefix(state_kill[1], 763 &kill.dst.addr.v.a.mask); 764 if ((ret_ga = getaddrinfo(state_kill[1], NULL, NULL, 765 &res[1]))) { 766 errx(1, "getaddrinfo: %s", 767 gai_strerror(ret_ga)); 768 /* NOTREACHED */ 769 } 770 for (resp[1] = res[1]; resp[1]; 771 resp[1] = resp[1]->ai_next) { 772 if (resp[1]->ai_addr == NULL) 773 continue; 774 if (kill.af != resp[1]->ai_family) 775 continue; 776 777 if (memcmp(&last_dst, resp[1]->ai_addr, 778 sizeof(last_dst)) == 0) 779 continue; 780 last_dst = *(struct sockaddr *)resp[1]->ai_addr; 781 782 dests++; 783 784 if (kill.af == AF_INET) 785 kill.dst.addr.v.a.addr.v4 = 786 ((struct sockaddr_in *)resp[1]-> 787 ai_addr)->sin_addr; 788 else if (kill.af == AF_INET6) 789 kill.dst.addr.v.a.addr.v6 = 790 ((struct sockaddr_in6 *)resp[1]-> 791 ai_addr)->sin6_addr; 792 else 793 errx(1, "Unknown address family %d", 794 kill.af); 795 796 if (pfctl_kill_states(dev, &kill, &newkilled)) 797 err(1, "DIOCKILLSTATES"); 798 killed += newkilled; 799 } 800 freeaddrinfo(res[1]); 801 } else { 802 if (pfctl_kill_states(dev, &kill, &newkilled)) 803 err(1, "DIOCKILLSTATES"); 804 killed += newkilled; 805 } 806 } 807 808 freeaddrinfo(res[0]); 809 810 if ((opts & PF_OPT_QUIET) == 0) 811 fprintf(stderr, "killed %d states from %d sources and %d " 812 "destinations\n", killed, sources, dests); 813 return (0); 814 } 815 816 int 817 pfctl_gateway_kill_states(int dev, const char *iface, int opts) 818 { 819 struct pfctl_kill kill; 820 struct addrinfo *res, *resp; 821 struct sockaddr last_src; 822 unsigned int newkilled; 823 int killed = 0; 824 int ret_ga; 825 826 if (state_killers != 2 || (strlen(state_kill[1]) == 0)) { 827 warnx("no gateway specified"); 828 usage(); 829 } 830 831 memset(&kill, 0, sizeof(kill)); 832 memset(&kill.rt_addr.addr.v.a.mask, 0xff, 833 sizeof(kill.rt_addr.addr.v.a.mask)); 834 memset(&last_src, 0xff, sizeof(last_src)); 835 if (iface != NULL && strlcpy(kill.ifname, iface, 836 sizeof(kill.ifname)) >= sizeof(kill.ifname)) 837 errx(1, "invalid interface: %s", iface); 838 839 if (opts & PF_OPT_KILLMATCH) 840 kill.kill_match = true; 841 842 pfctl_addrprefix(state_kill[1], &kill.rt_addr.addr.v.a.mask); 843 844 if ((ret_ga = getaddrinfo(state_kill[1], NULL, NULL, &res))) { 845 errx(1, "getaddrinfo: %s", gai_strerror(ret_ga)); 846 /* NOTREACHED */ 847 } 848 for (resp = res; resp; resp = resp->ai_next) { 849 if (resp->ai_addr == NULL) 850 continue; 851 /* We get lots of duplicates. Catch the easy ones */ 852 if (memcmp(&last_src, resp->ai_addr, sizeof(last_src)) == 0) 853 continue; 854 last_src = *(struct sockaddr *)resp->ai_addr; 855 856 kill.af = resp->ai_family; 857 858 if (kill.af == AF_INET) 859 kill.rt_addr.addr.v.a.addr.v4 = 860 ((struct sockaddr_in *)resp->ai_addr)->sin_addr; 861 else if (kill.af == AF_INET6) 862 kill.rt_addr.addr.v.a.addr.v6 = 863 ((struct sockaddr_in6 *)resp->ai_addr)-> 864 sin6_addr; 865 else 866 errx(1, "Unknown address family %d", kill.af); 867 868 if (pfctl_kill_states(dev, &kill, &newkilled)) 869 err(1, "DIOCKILLSTATES"); 870 killed += newkilled; 871 } 872 873 freeaddrinfo(res); 874 875 if ((opts & PF_OPT_QUIET) == 0) 876 fprintf(stderr, "killed %d states\n", killed); 877 return (0); 878 } 879 880 int 881 pfctl_label_kill_states(int dev, const char *iface, int opts) 882 { 883 struct pfctl_kill kill; 884 unsigned int killed; 885 886 if (state_killers != 2 || (strlen(state_kill[1]) == 0)) { 887 warnx("no label specified"); 888 usage(); 889 } 890 memset(&kill, 0, sizeof(kill)); 891 if (iface != NULL && strlcpy(kill.ifname, iface, 892 sizeof(kill.ifname)) >= sizeof(kill.ifname)) 893 errx(1, "invalid interface: %s", iface); 894 895 if (opts & PF_OPT_KILLMATCH) 896 kill.kill_match = true; 897 898 if (strlcpy(kill.label, state_kill[1], sizeof(kill.label)) >= 899 sizeof(kill.label)) 900 errx(1, "label too long: %s", state_kill[1]); 901 902 if (pfctl_kill_states(dev, &kill, &killed)) 903 err(1, "DIOCKILLSTATES"); 904 905 if ((opts & PF_OPT_QUIET) == 0) 906 fprintf(stderr, "killed %d states\n", killed); 907 908 return (0); 909 } 910 911 int 912 pfctl_id_kill_states(int dev, const char *iface, int opts) 913 { 914 struct pfctl_kill kill; 915 unsigned int killed; 916 917 if (state_killers != 2 || (strlen(state_kill[1]) == 0)) { 918 warnx("no id specified"); 919 usage(); 920 } 921 922 memset(&kill, 0, sizeof(kill)); 923 924 if (opts & PF_OPT_KILLMATCH) 925 kill.kill_match = true; 926 927 if ((sscanf(state_kill[1], "%jx/%x", 928 &kill.cmp.id, &kill.cmp.creatorid)) == 2) { 929 } 930 else if ((sscanf(state_kill[1], "%jx", &kill.cmp.id)) == 1) { 931 kill.cmp.creatorid = 0; 932 } else { 933 warnx("wrong id format specified"); 934 usage(); 935 } 936 if (kill.cmp.id == 0) { 937 warnx("cannot kill id 0"); 938 usage(); 939 } 940 941 if (pfctl_kill_states(dev, &kill, &killed)) 942 err(1, "DIOCKILLSTATES"); 943 944 if ((opts & PF_OPT_QUIET) == 0) 945 fprintf(stderr, "killed %d states\n", killed); 946 947 return (0); 948 } 949 950 int 951 pfctl_get_pool(int dev, struct pfctl_pool *pool, u_int32_t nr, 952 u_int32_t ticket, int r_action, char *anchorname) 953 { 954 struct pfioc_pooladdr pp; 955 struct pf_pooladdr *pa; 956 u_int32_t pnr, mpnr; 957 958 memset(&pp, 0, sizeof(pp)); 959 memcpy(pp.anchor, anchorname, sizeof(pp.anchor)); 960 pp.r_action = r_action; 961 pp.r_num = nr; 962 pp.ticket = ticket; 963 if (ioctl(dev, DIOCGETADDRS, &pp)) { 964 warn("DIOCGETADDRS"); 965 return (-1); 966 } 967 mpnr = pp.nr; 968 TAILQ_INIT(&pool->list); 969 for (pnr = 0; pnr < mpnr; ++pnr) { 970 pp.nr = pnr; 971 if (ioctl(dev, DIOCGETADDR, &pp)) { 972 warn("DIOCGETADDR"); 973 return (-1); 974 } 975 pa = calloc(1, sizeof(struct pf_pooladdr)); 976 if (pa == NULL) 977 err(1, "calloc"); 978 bcopy(&pp.addr, pa, sizeof(struct pf_pooladdr)); 979 TAILQ_INSERT_TAIL(&pool->list, pa, entries); 980 } 981 982 return (0); 983 } 984 985 void 986 pfctl_move_pool(struct pfctl_pool *src, struct pfctl_pool *dst) 987 { 988 struct pf_pooladdr *pa; 989 990 while ((pa = TAILQ_FIRST(&src->list)) != NULL) { 991 TAILQ_REMOVE(&src->list, pa, entries); 992 TAILQ_INSERT_TAIL(&dst->list, pa, entries); 993 } 994 } 995 996 void 997 pfctl_clear_pool(struct pfctl_pool *pool) 998 { 999 struct pf_pooladdr *pa; 1000 1001 while ((pa = TAILQ_FIRST(&pool->list)) != NULL) { 1002 TAILQ_REMOVE(&pool->list, pa, entries); 1003 free(pa); 1004 } 1005 } 1006 1007 void 1008 pfctl_print_eth_rule_counters(struct pfctl_eth_rule *rule, int opts) 1009 { 1010 if (opts & PF_OPT_VERBOSE) { 1011 printf(" [ Evaluations: %-8llu Packets: %-8llu " 1012 "Bytes: %-10llu]\n", 1013 (unsigned long long)rule->evaluations, 1014 (unsigned long long)(rule->packets[0] + 1015 rule->packets[1]), 1016 (unsigned long long)(rule->bytes[0] + 1017 rule->bytes[1])); 1018 } 1019 } 1020 1021 void 1022 pfctl_print_rule_counters(struct pfctl_rule *rule, int opts) 1023 { 1024 if (opts & PF_OPT_DEBUG) { 1025 const char *t[PF_SKIP_COUNT] = { "i", "d", "f", 1026 "p", "sa", "sp", "da", "dp" }; 1027 int i; 1028 1029 printf(" [ Skip steps: "); 1030 for (i = 0; i < PF_SKIP_COUNT; ++i) { 1031 if (rule->skip[i].nr == rule->nr + 1) 1032 continue; 1033 printf("%s=", t[i]); 1034 if (rule->skip[i].nr == -1) 1035 printf("end "); 1036 else 1037 printf("%u ", rule->skip[i].nr); 1038 } 1039 printf("]\n"); 1040 1041 printf(" [ queue: qname=%s qid=%u pqname=%s pqid=%u ]\n", 1042 rule->qname, rule->qid, rule->pqname, rule->pqid); 1043 } 1044 if (opts & PF_OPT_VERBOSE) { 1045 printf(" [ Evaluations: %-8llu Packets: %-8llu " 1046 "Bytes: %-10llu States: %-6ju]\n", 1047 (unsigned long long)rule->evaluations, 1048 (unsigned long long)(rule->packets[0] + 1049 rule->packets[1]), 1050 (unsigned long long)(rule->bytes[0] + 1051 rule->bytes[1]), (uintmax_t)rule->states_cur); 1052 if (!(opts & PF_OPT_DEBUG)) 1053 printf(" [ Inserted: uid %u pid %u " 1054 "State Creations: %-6ju]\n", 1055 (unsigned)rule->cuid, (unsigned)rule->cpid, 1056 (uintmax_t)rule->states_tot); 1057 } 1058 } 1059 1060 void 1061 pfctl_print_title(char *title) 1062 { 1063 if (!first_title) 1064 printf("\n"); 1065 first_title = 0; 1066 printf("%s\n", title); 1067 } 1068 1069 int 1070 pfctl_show_eth_rules(int dev, char *path, int opts, enum pfctl_show format, 1071 char *anchorname, int depth) 1072 { 1073 char anchor_call[MAXPATHLEN]; 1074 struct pfctl_eth_rules_info info; 1075 struct pfctl_eth_rule rule; 1076 int dotitle = opts & PF_OPT_SHOWALL; 1077 int len = strlen(path); 1078 int brace; 1079 char *p; 1080 1081 if (path[0]) 1082 snprintf(&path[len], MAXPATHLEN - len, "/%s", anchorname); 1083 else 1084 snprintf(&path[len], MAXPATHLEN - len, "%s", anchorname); 1085 1086 if (pfctl_get_eth_rules_info(dev, &info, path)) { 1087 warn("DIOCGETETHRULES"); 1088 return (-1); 1089 } 1090 for (int nr = 0; nr < info.nr; nr++) { 1091 brace = 0; 1092 INDENT(depth, !(opts & PF_OPT_VERBOSE)); 1093 if (pfctl_get_eth_rule(dev, nr, info.ticket, path, &rule, 1094 opts & PF_OPT_CLRRULECTRS, anchor_call) != 0) { 1095 warn("DIOCGETETHRULE"); 1096 return (-1); 1097 } 1098 if (anchor_call[0] && 1099 ((((p = strrchr(anchor_call, '_')) != NULL) && 1100 (p == anchor_call || 1101 *(--p) == '/')) || (opts & PF_OPT_RECURSE))) { 1102 brace++; 1103 if ((p = strrchr(anchor_call, '/')) != 1104 NULL) 1105 p++; 1106 else 1107 p = &anchor_call[0]; 1108 } else 1109 p = &anchor_call[0]; 1110 if (dotitle) { 1111 pfctl_print_title("ETH RULES:"); 1112 dotitle = 0; 1113 } 1114 print_eth_rule(&rule, anchor_call, 1115 opts & (PF_OPT_VERBOSE2 | PF_OPT_DEBUG)); 1116 if (brace) 1117 printf(" {\n"); 1118 else 1119 printf("\n"); 1120 pfctl_print_eth_rule_counters(&rule, opts); 1121 if (brace) { 1122 pfctl_show_eth_rules(dev, path, opts, format, 1123 p, depth + 1); 1124 INDENT(depth, !(opts & PF_OPT_VERBOSE)); 1125 printf("}\n"); 1126 } 1127 } 1128 1129 path[len] = '\0'; 1130 return (0); 1131 } 1132 1133 int 1134 pfctl_show_rules(int dev, char *path, int opts, enum pfctl_show format, 1135 char *anchorname, int depth) 1136 { 1137 struct pfctl_rules_info ri; 1138 struct pfctl_rule rule; 1139 char anchor_call[MAXPATHLEN]; 1140 u_int32_t nr, header = 0; 1141 int rule_numbers = opts & (PF_OPT_VERBOSE2 | PF_OPT_DEBUG); 1142 int numeric = opts & PF_OPT_NUMERIC; 1143 int len = strlen(path); 1144 int brace; 1145 int ret; 1146 char *p; 1147 1148 if (path[0]) 1149 snprintf(&path[len], MAXPATHLEN - len, "/%s", anchorname); 1150 else 1151 snprintf(&path[len], MAXPATHLEN - len, "%s", anchorname); 1152 1153 if (opts & PF_OPT_SHOWALL) { 1154 ret = pfctl_get_rules_info(dev, &ri, PF_PASS, path); 1155 if (ret != 0) { 1156 warn("DIOCGETRULES"); 1157 goto error; 1158 } 1159 header++; 1160 } 1161 ret = pfctl_get_rules_info(dev, &ri, PF_SCRUB, path); 1162 if (ret != 0) { 1163 warn("DIOCGETRULES"); 1164 goto error; 1165 } 1166 if (opts & PF_OPT_SHOWALL) { 1167 if (format == PFCTL_SHOW_RULES && (ri.nr > 0 || header)) 1168 pfctl_print_title("FILTER RULES:"); 1169 else if (format == PFCTL_SHOW_LABELS && labels) 1170 pfctl_print_title("LABEL COUNTERS:"); 1171 } 1172 1173 for (nr = 0; nr < ri.nr; ++nr) { 1174 if (pfctl_get_clear_rule(dev, nr, ri.ticket, path, PF_SCRUB, 1175 &rule, anchor_call, opts & PF_OPT_CLRRULECTRS)) { 1176 warn("DIOCGETRULENV"); 1177 goto error; 1178 } 1179 1180 if (pfctl_get_pool(dev, &rule.rpool, 1181 nr, ri.ticket, PF_SCRUB, path) != 0) 1182 goto error; 1183 1184 switch (format) { 1185 case PFCTL_SHOW_LABELS: 1186 break; 1187 case PFCTL_SHOW_RULES: 1188 if (rule.label[0] && (opts & PF_OPT_SHOWALL)) 1189 labels = 1; 1190 print_rule(&rule, anchor_call, rule_numbers, numeric); 1191 printf("\n"); 1192 pfctl_print_rule_counters(&rule, opts); 1193 break; 1194 case PFCTL_SHOW_NOTHING: 1195 break; 1196 } 1197 pfctl_clear_pool(&rule.rpool); 1198 } 1199 ret = pfctl_get_rules_info(dev, &ri, PF_PASS, path); 1200 if (ret != 0) { 1201 warn("DIOCGETRULES"); 1202 goto error; 1203 } 1204 for (nr = 0; nr < ri.nr; ++nr) { 1205 if (pfctl_get_clear_rule(dev, nr, ri.ticket, path, PF_PASS, 1206 &rule, anchor_call, opts & PF_OPT_CLRRULECTRS)) { 1207 warn("DIOCGETRULE"); 1208 goto error; 1209 } 1210 1211 if (pfctl_get_pool(dev, &rule.rpool, 1212 nr, ri.ticket, PF_PASS, path) != 0) 1213 goto error; 1214 1215 switch (format) { 1216 case PFCTL_SHOW_LABELS: { 1217 bool show = false; 1218 int i = 0; 1219 1220 while (rule.label[i][0]) { 1221 printf("%s ", rule.label[i++]); 1222 show = true; 1223 } 1224 1225 if (show) { 1226 printf("%llu %llu %llu %llu" 1227 " %llu %llu %llu %ju\n", 1228 (unsigned long long)rule.evaluations, 1229 (unsigned long long)(rule.packets[0] + 1230 rule.packets[1]), 1231 (unsigned long long)(rule.bytes[0] + 1232 rule.bytes[1]), 1233 (unsigned long long)rule.packets[0], 1234 (unsigned long long)rule.bytes[0], 1235 (unsigned long long)rule.packets[1], 1236 (unsigned long long)rule.bytes[1], 1237 (uintmax_t)rule.states_tot); 1238 } 1239 break; 1240 } 1241 case PFCTL_SHOW_RULES: 1242 brace = 0; 1243 if (rule.label[0] && (opts & PF_OPT_SHOWALL)) 1244 labels = 1; 1245 INDENT(depth, !(opts & PF_OPT_VERBOSE)); 1246 if (anchor_call[0] && 1247 ((((p = strrchr(anchor_call, '_')) != NULL) && 1248 ((void *)p == (void *)anchor_call || 1249 *(--p) == '/')) || (opts & PF_OPT_RECURSE))) { 1250 brace++; 1251 if ((p = strrchr(anchor_call, '/')) != 1252 NULL) 1253 p++; 1254 else 1255 p = &anchor_call[0]; 1256 } else 1257 p = &anchor_call[0]; 1258 1259 print_rule(&rule, p, rule_numbers, numeric); 1260 if (brace) 1261 printf(" {\n"); 1262 else 1263 printf("\n"); 1264 pfctl_print_rule_counters(&rule, opts); 1265 if (brace) { 1266 pfctl_show_rules(dev, path, opts, format, 1267 p, depth + 1); 1268 INDENT(depth, !(opts & PF_OPT_VERBOSE)); 1269 printf("}\n"); 1270 } 1271 break; 1272 case PFCTL_SHOW_NOTHING: 1273 break; 1274 } 1275 pfctl_clear_pool(&rule.rpool); 1276 } 1277 path[len] = '\0'; 1278 return (0); 1279 1280 error: 1281 path[len] = '\0'; 1282 return (-1); 1283 } 1284 1285 int 1286 pfctl_show_nat(int dev, char *path, int opts, char *anchorname, int depth) 1287 { 1288 struct pfctl_rules_info ri; 1289 struct pfctl_rule rule; 1290 char anchor_call[MAXPATHLEN]; 1291 u_int32_t nr; 1292 static int nattype[3] = { PF_NAT, PF_RDR, PF_BINAT }; 1293 int i, dotitle = opts & PF_OPT_SHOWALL; 1294 int brace, ret; 1295 int len = strlen(path); 1296 char *p; 1297 1298 if (path[0]) 1299 snprintf(&path[len], MAXPATHLEN - len, "/%s", anchorname); 1300 else 1301 snprintf(&path[len], MAXPATHLEN - len, "%s", anchorname); 1302 1303 for (i = 0; i < 3; i++) { 1304 ret = pfctl_get_rules_info(dev, &ri, nattype[i], path); 1305 if (ret != 0) { 1306 warn("DIOCGETRULES"); 1307 return (-1); 1308 } 1309 for (nr = 0; nr < ri.nr; ++nr) { 1310 brace = 0; 1311 INDENT(depth, !(opts & PF_OPT_VERBOSE)); 1312 1313 if (pfctl_get_rule(dev, nr, ri.ticket, path, 1314 nattype[i], &rule, anchor_call)) { 1315 warn("DIOCGETRULE"); 1316 return (-1); 1317 } 1318 if (pfctl_get_pool(dev, &rule.rpool, nr, 1319 ri.ticket, nattype[i], path) != 0) 1320 return (-1); 1321 1322 if (anchor_call[0] && 1323 ((((p = strrchr(anchor_call, '_')) != NULL) && 1324 (p == anchor_call || 1325 *(--p) == '/')) || (opts & PF_OPT_RECURSE))) { 1326 brace++; 1327 if ((p = strrchr(anchor_call, '/')) != 1328 NULL) 1329 p++; 1330 else 1331 p = &anchor_call[0]; 1332 } else 1333 p = &anchor_call[0]; 1334 1335 if (dotitle) { 1336 pfctl_print_title("TRANSLATION RULES:"); 1337 dotitle = 0; 1338 } 1339 print_rule(&rule, anchor_call, 1340 opts & PF_OPT_VERBOSE2, opts & PF_OPT_NUMERIC); 1341 if (brace) 1342 printf(" {\n"); 1343 else 1344 printf("\n"); 1345 pfctl_print_rule_counters(&rule, opts); 1346 pfctl_clear_pool(&rule.rpool); 1347 if (brace) { 1348 pfctl_show_nat(dev, path, opts, p, depth + 1); 1349 INDENT(depth, !(opts & PF_OPT_VERBOSE)); 1350 printf("}\n"); 1351 } 1352 } 1353 } 1354 return (0); 1355 } 1356 1357 int 1358 pfctl_show_src_nodes(int dev, int opts) 1359 { 1360 struct pfioc_src_nodes psn; 1361 struct pf_src_node *p; 1362 char *inbuf = NULL, *newinbuf = NULL; 1363 unsigned int len = 0; 1364 int i; 1365 1366 memset(&psn, 0, sizeof(psn)); 1367 for (;;) { 1368 psn.psn_len = len; 1369 if (len) { 1370 newinbuf = realloc(inbuf, len); 1371 if (newinbuf == NULL) 1372 err(1, "realloc"); 1373 psn.psn_buf = inbuf = newinbuf; 1374 } 1375 if (ioctl(dev, DIOCGETSRCNODES, &psn) < 0) { 1376 warn("DIOCGETSRCNODES"); 1377 free(inbuf); 1378 return (-1); 1379 } 1380 if (psn.psn_len + sizeof(struct pfioc_src_nodes) < len) 1381 break; 1382 if (len == 0 && psn.psn_len == 0) 1383 goto done; 1384 if (len == 0 && psn.psn_len != 0) 1385 len = psn.psn_len; 1386 if (psn.psn_len == 0) 1387 goto done; /* no src_nodes */ 1388 len *= 2; 1389 } 1390 p = psn.psn_src_nodes; 1391 if (psn.psn_len > 0 && (opts & PF_OPT_SHOWALL)) 1392 pfctl_print_title("SOURCE TRACKING NODES:"); 1393 for (i = 0; i < psn.psn_len; i += sizeof(*p)) { 1394 print_src_node(p, opts); 1395 p++; 1396 } 1397 done: 1398 free(inbuf); 1399 return (0); 1400 } 1401 1402 int 1403 pfctl_show_states(int dev, const char *iface, int opts) 1404 { 1405 struct pfctl_states states; 1406 struct pfctl_state *s; 1407 int dotitle = (opts & PF_OPT_SHOWALL); 1408 1409 memset(&states, 0, sizeof(states)); 1410 1411 if (pfctl_get_states(dev, &states)) 1412 return (-1); 1413 1414 TAILQ_FOREACH(s, &states.states, entry) { 1415 if (iface != NULL && strcmp(s->ifname, iface)) 1416 continue; 1417 if (dotitle) { 1418 pfctl_print_title("STATES:"); 1419 dotitle = 0; 1420 } 1421 print_state(s, opts); 1422 } 1423 1424 pfctl_free_states(&states); 1425 1426 return (0); 1427 } 1428 1429 int 1430 pfctl_show_status(int dev, int opts) 1431 { 1432 struct pfctl_status *status; 1433 struct pfctl_syncookies cookies; 1434 1435 if ((status = pfctl_get_status(dev)) == NULL) { 1436 warn("DIOCGETSTATUS"); 1437 return (-1); 1438 } 1439 if (pfctl_get_syncookies(dev, &cookies)) { 1440 pfctl_free_status(status); 1441 warn("DIOCGETSYNCOOKIES"); 1442 return (-1); 1443 } 1444 if (opts & PF_OPT_SHOWALL) 1445 pfctl_print_title("INFO:"); 1446 print_status(status, &cookies, opts); 1447 pfctl_free_status(status); 1448 return (0); 1449 } 1450 1451 int 1452 pfctl_show_running(int dev) 1453 { 1454 struct pfctl_status *status; 1455 int running; 1456 1457 if ((status = pfctl_get_status(dev)) == NULL) { 1458 warn("DIOCGETSTATUS"); 1459 return (-1); 1460 } 1461 1462 running = status->running; 1463 1464 print_running(status); 1465 pfctl_free_status(status); 1466 return (!running); 1467 } 1468 1469 int 1470 pfctl_show_timeouts(int dev, int opts) 1471 { 1472 struct pfioc_tm pt; 1473 int i; 1474 1475 if (opts & PF_OPT_SHOWALL) 1476 pfctl_print_title("TIMEOUTS:"); 1477 memset(&pt, 0, sizeof(pt)); 1478 for (i = 0; pf_timeouts[i].name; i++) { 1479 pt.timeout = pf_timeouts[i].timeout; 1480 if (ioctl(dev, DIOCGETTIMEOUT, &pt)) 1481 err(1, "DIOCGETTIMEOUT"); 1482 printf("%-20s %10d", pf_timeouts[i].name, pt.seconds); 1483 if (pf_timeouts[i].timeout >= PFTM_ADAPTIVE_START && 1484 pf_timeouts[i].timeout <= PFTM_ADAPTIVE_END) 1485 printf(" states"); 1486 else 1487 printf("s"); 1488 printf("\n"); 1489 } 1490 return (0); 1491 1492 } 1493 1494 int 1495 pfctl_show_limits(int dev, int opts) 1496 { 1497 struct pfioc_limit pl; 1498 int i; 1499 1500 if (opts & PF_OPT_SHOWALL) 1501 pfctl_print_title("LIMITS:"); 1502 memset(&pl, 0, sizeof(pl)); 1503 for (i = 0; pf_limits[i].name; i++) { 1504 pl.index = pf_limits[i].index; 1505 if (ioctl(dev, DIOCGETLIMIT, &pl)) 1506 err(1, "DIOCGETLIMIT"); 1507 printf("%-13s ", pf_limits[i].name); 1508 if (pl.limit == UINT_MAX) 1509 printf("unlimited\n"); 1510 else 1511 printf("hard limit %8u\n", pl.limit); 1512 } 1513 return (0); 1514 } 1515 1516 /* callbacks for rule/nat/rdr/addr */ 1517 int 1518 pfctl_add_pool(struct pfctl *pf, struct pfctl_pool *p, sa_family_t af) 1519 { 1520 struct pf_pooladdr *pa; 1521 1522 if ((pf->opts & PF_OPT_NOACTION) == 0) { 1523 if (ioctl(pf->dev, DIOCBEGINADDRS, &pf->paddr)) 1524 err(1, "DIOCBEGINADDRS"); 1525 } 1526 1527 pf->paddr.af = af; 1528 TAILQ_FOREACH(pa, &p->list, entries) { 1529 memcpy(&pf->paddr.addr, pa, sizeof(struct pf_pooladdr)); 1530 if ((pf->opts & PF_OPT_NOACTION) == 0) { 1531 if (ioctl(pf->dev, DIOCADDADDR, &pf->paddr)) 1532 err(1, "DIOCADDADDR"); 1533 } 1534 } 1535 return (0); 1536 } 1537 1538 int 1539 pfctl_append_rule(struct pfctl *pf, struct pfctl_rule *r, 1540 const char *anchor_call) 1541 { 1542 u_int8_t rs_num; 1543 struct pfctl_rule *rule; 1544 struct pfctl_ruleset *rs; 1545 char *p; 1546 1547 rs_num = pf_get_ruleset_number(r->action); 1548 if (rs_num == PF_RULESET_MAX) 1549 errx(1, "Invalid rule type %d", r->action); 1550 1551 rs = &pf->anchor->ruleset; 1552 1553 if (anchor_call[0] && r->anchor == NULL) { 1554 /* 1555 * Don't make non-brace anchors part of the main anchor pool. 1556 */ 1557 if ((r->anchor = calloc(1, sizeof(*r->anchor))) == NULL) 1558 err(1, "pfctl_append_rule: calloc"); 1559 1560 pf_init_ruleset(&r->anchor->ruleset); 1561 r->anchor->ruleset.anchor = r->anchor; 1562 if (strlcpy(r->anchor->path, anchor_call, 1563 sizeof(rule->anchor->path)) >= sizeof(rule->anchor->path)) 1564 errx(1, "pfctl_append_rule: strlcpy"); 1565 if ((p = strrchr(anchor_call, '/')) != NULL) { 1566 if (!strlen(p)) 1567 err(1, "pfctl_append_rule: bad anchor name %s", 1568 anchor_call); 1569 } else 1570 p = (char *)anchor_call; 1571 if (strlcpy(r->anchor->name, p, 1572 sizeof(rule->anchor->name)) >= sizeof(rule->anchor->name)) 1573 errx(1, "pfctl_append_rule: strlcpy"); 1574 } 1575 1576 if ((rule = calloc(1, sizeof(*rule))) == NULL) 1577 err(1, "calloc"); 1578 bcopy(r, rule, sizeof(*rule)); 1579 TAILQ_INIT(&rule->rpool.list); 1580 pfctl_move_pool(&r->rpool, &rule->rpool); 1581 1582 TAILQ_INSERT_TAIL(rs->rules[rs_num].active.ptr, rule, entries); 1583 return (0); 1584 } 1585 1586 int 1587 pfctl_append_eth_rule(struct pfctl *pf, struct pfctl_eth_rule *r, 1588 const char *anchor_call) 1589 { 1590 struct pfctl_eth_rule *rule; 1591 struct pfctl_eth_ruleset *rs; 1592 char *p; 1593 1594 rs = &pf->eanchor->ruleset; 1595 1596 if (anchor_call[0] && r->anchor == NULL) { 1597 /* 1598 * Don't make non-brace anchors part of the main anchor pool. 1599 */ 1600 if ((r->anchor = calloc(1, sizeof(*r->anchor))) == NULL) 1601 err(1, "pfctl_append_rule: calloc"); 1602 1603 pf_init_eth_ruleset(&r->anchor->ruleset); 1604 r->anchor->ruleset.anchor = r->anchor; 1605 if (strlcpy(r->anchor->path, anchor_call, 1606 sizeof(rule->anchor->path)) >= sizeof(rule->anchor->path)) 1607 errx(1, "pfctl_append_rule: strlcpy"); 1608 if ((p = strrchr(anchor_call, '/')) != NULL) { 1609 if (!strlen(p)) 1610 err(1, "pfctl_append_eth_rule: bad anchor name %s", 1611 anchor_call); 1612 } else 1613 p = (char *)anchor_call; 1614 if (strlcpy(r->anchor->name, p, 1615 sizeof(rule->anchor->name)) >= sizeof(rule->anchor->name)) 1616 errx(1, "pfctl_append_eth_rule: strlcpy"); 1617 } 1618 1619 if ((rule = calloc(1, sizeof(*rule))) == NULL) 1620 err(1, "calloc"); 1621 bcopy(r, rule, sizeof(*rule)); 1622 1623 TAILQ_INSERT_TAIL(&rs->rules, rule, entries); 1624 return (0); 1625 } 1626 1627 int 1628 pfctl_eth_ruleset_trans(struct pfctl *pf, char *path, 1629 struct pfctl_eth_anchor *a) 1630 { 1631 int osize = pf->trans->pfrb_size; 1632 1633 if ((pf->loadopt & PFCTL_FLAG_ETH) != 0) { 1634 if (pfctl_add_trans(pf->trans, PF_RULESET_ETH, path)) 1635 return (1); 1636 } 1637 if (pfctl_trans(pf->dev, pf->trans, DIOCXBEGIN, osize)) 1638 return (5); 1639 1640 return (0); 1641 } 1642 1643 int 1644 pfctl_ruleset_trans(struct pfctl *pf, char *path, struct pfctl_anchor *a, bool do_eth) 1645 { 1646 int osize = pf->trans->pfrb_size; 1647 1648 if ((pf->loadopt & PFCTL_FLAG_ETH) != 0 && do_eth) { 1649 if (pfctl_add_trans(pf->trans, PF_RULESET_ETH, path)) 1650 return (1); 1651 } 1652 if ((pf->loadopt & PFCTL_FLAG_NAT) != 0) { 1653 if (pfctl_add_trans(pf->trans, PF_RULESET_NAT, path) || 1654 pfctl_add_trans(pf->trans, PF_RULESET_BINAT, path) || 1655 pfctl_add_trans(pf->trans, PF_RULESET_RDR, path)) 1656 return (1); 1657 } 1658 if (a == pf->astack[0] && ((altqsupport && 1659 (pf->loadopt & PFCTL_FLAG_ALTQ) != 0))) { 1660 if (pfctl_add_trans(pf->trans, PF_RULESET_ALTQ, path)) 1661 return (2); 1662 } 1663 if ((pf->loadopt & PFCTL_FLAG_FILTER) != 0) { 1664 if (pfctl_add_trans(pf->trans, PF_RULESET_SCRUB, path) || 1665 pfctl_add_trans(pf->trans, PF_RULESET_FILTER, path)) 1666 return (3); 1667 } 1668 if (pf->loadopt & PFCTL_FLAG_TABLE) 1669 if (pfctl_add_trans(pf->trans, PF_RULESET_TABLE, path)) 1670 return (4); 1671 if (pfctl_trans(pf->dev, pf->trans, DIOCXBEGIN, osize)) 1672 return (5); 1673 1674 return (0); 1675 } 1676 1677 int 1678 pfctl_load_eth_ruleset(struct pfctl *pf, char *path, 1679 struct pfctl_eth_ruleset *rs, int depth) 1680 { 1681 struct pfctl_eth_rule *r; 1682 int error, len = strlen(path); 1683 int brace = 0; 1684 1685 pf->eanchor = rs->anchor; 1686 if (path[0]) 1687 snprintf(&path[len], MAXPATHLEN - len, "/%s", pf->eanchor->name); 1688 else 1689 snprintf(&path[len], MAXPATHLEN - len, "%s", pf->eanchor->name); 1690 1691 if (depth) { 1692 if (TAILQ_FIRST(&rs->rules) != NULL) { 1693 brace++; 1694 if (pf->opts & PF_OPT_VERBOSE) 1695 printf(" {\n"); 1696 if ((pf->opts & PF_OPT_NOACTION) == 0 && 1697 (error = pfctl_eth_ruleset_trans(pf, 1698 path, rs->anchor))) { 1699 printf("pfctl_load_eth_rulesets: " 1700 "pfctl_eth_ruleset_trans %d\n", error); 1701 goto error; 1702 } 1703 } else if (pf->opts & PF_OPT_VERBOSE) 1704 printf("\n"); 1705 } 1706 1707 while ((r = TAILQ_FIRST(&rs->rules)) != NULL) { 1708 TAILQ_REMOVE(&rs->rules, r, entries); 1709 1710 error = pfctl_load_eth_rule(pf, path, r, depth); 1711 if (error) 1712 return (error); 1713 1714 if (r->anchor) { 1715 if ((error = pfctl_load_eth_ruleset(pf, path, 1716 &r->anchor->ruleset, depth + 1))) 1717 return (error); 1718 } else if (pf->opts & PF_OPT_VERBOSE) 1719 printf("\n"); 1720 free(r); 1721 } 1722 if (brace && pf->opts & PF_OPT_VERBOSE) { 1723 INDENT(depth - 1, (pf->opts & PF_OPT_VERBOSE)); 1724 printf("}\n"); 1725 } 1726 path[len] = '\0'; 1727 1728 return (0); 1729 error: 1730 path[len] = '\0'; 1731 return (error); 1732 } 1733 1734 int 1735 pfctl_load_eth_rule(struct pfctl *pf, char *path, struct pfctl_eth_rule *r, 1736 int depth) 1737 { 1738 char *name; 1739 char anchor[PF_ANCHOR_NAME_SIZE]; 1740 int len = strlen(path); 1741 1742 if (strlcpy(anchor, path, sizeof(anchor)) >= sizeof(anchor)) 1743 errx(1, "pfctl_load_eth_rule: strlcpy"); 1744 1745 if (r->anchor) { 1746 if (r->anchor->match) { 1747 if (path[0]) 1748 snprintf(&path[len], MAXPATHLEN - len, 1749 "/%s", r->anchor->name); 1750 else 1751 snprintf(&path[len], MAXPATHLEN - len, 1752 "%s", r->anchor->name); 1753 name = r->anchor->name; 1754 } else 1755 name = r->anchor->path; 1756 } else 1757 name = ""; 1758 1759 if ((pf->opts & PF_OPT_NOACTION) == 0) 1760 if (pfctl_add_eth_rule(pf->dev, r, anchor, name, 1761 pf->eth_ticket)) 1762 err(1, "DIOCADDETHRULENV"); 1763 1764 if (pf->opts & PF_OPT_VERBOSE) { 1765 INDENT(depth, !(pf->opts & PF_OPT_VERBOSE2)); 1766 print_eth_rule(r, r->anchor ? r->anchor->name : "", 1767 pf->opts & (PF_OPT_VERBOSE2 | PF_OPT_DEBUG)); 1768 } 1769 1770 path[len] = '\0'; 1771 1772 return (0); 1773 } 1774 1775 int 1776 pfctl_load_ruleset(struct pfctl *pf, char *path, struct pfctl_ruleset *rs, 1777 int rs_num, int depth) 1778 { 1779 struct pfctl_rule *r; 1780 int error, len = strlen(path); 1781 int brace = 0; 1782 1783 pf->anchor = rs->anchor; 1784 1785 if (path[0]) 1786 snprintf(&path[len], MAXPATHLEN - len, "/%s", pf->anchor->name); 1787 else 1788 snprintf(&path[len], MAXPATHLEN - len, "%s", pf->anchor->name); 1789 1790 if (depth) { 1791 if (TAILQ_FIRST(rs->rules[rs_num].active.ptr) != NULL) { 1792 brace++; 1793 if (pf->opts & PF_OPT_VERBOSE) 1794 printf(" {\n"); 1795 if ((pf->opts & PF_OPT_NOACTION) == 0 && 1796 (error = pfctl_ruleset_trans(pf, 1797 path, rs->anchor, false))) { 1798 printf("pfctl_load_rulesets: " 1799 "pfctl_ruleset_trans %d\n", error); 1800 goto error; 1801 } 1802 } else if (pf->opts & PF_OPT_VERBOSE) 1803 printf("\n"); 1804 1805 } 1806 1807 if (pf->optimize && rs_num == PF_RULESET_FILTER) 1808 pfctl_optimize_ruleset(pf, rs); 1809 1810 while ((r = TAILQ_FIRST(rs->rules[rs_num].active.ptr)) != NULL) { 1811 TAILQ_REMOVE(rs->rules[rs_num].active.ptr, r, entries); 1812 1813 for (int i = 0; i < PF_RULE_MAX_LABEL_COUNT; i++) 1814 expand_label(r->label[i], PF_RULE_LABEL_SIZE, r); 1815 expand_label(r->tagname, PF_TAG_NAME_SIZE, r); 1816 expand_label(r->match_tagname, PF_TAG_NAME_SIZE, r); 1817 1818 if ((error = pfctl_load_rule(pf, path, r, depth))) 1819 goto error; 1820 if (r->anchor) { 1821 if ((error = pfctl_load_ruleset(pf, path, 1822 &r->anchor->ruleset, rs_num, depth + 1))) 1823 goto error; 1824 } else if (pf->opts & PF_OPT_VERBOSE) 1825 printf("\n"); 1826 free(r); 1827 } 1828 if (brace && pf->opts & PF_OPT_VERBOSE) { 1829 INDENT(depth - 1, (pf->opts & PF_OPT_VERBOSE)); 1830 printf("}\n"); 1831 } 1832 path[len] = '\0'; 1833 return (0); 1834 1835 error: 1836 path[len] = '\0'; 1837 return (error); 1838 1839 } 1840 1841 int 1842 pfctl_load_rule(struct pfctl *pf, char *path, struct pfctl_rule *r, int depth) 1843 { 1844 u_int8_t rs_num = pf_get_ruleset_number(r->action); 1845 char *name; 1846 u_int32_t ticket; 1847 char anchor[PF_ANCHOR_NAME_SIZE]; 1848 int len = strlen(path); 1849 1850 /* set up anchor before adding to path for anchor_call */ 1851 if ((pf->opts & PF_OPT_NOACTION) == 0) 1852 ticket = pfctl_get_ticket(pf->trans, rs_num, path); 1853 if (strlcpy(anchor, path, sizeof(anchor)) >= sizeof(anchor)) 1854 errx(1, "pfctl_load_rule: strlcpy"); 1855 1856 if (r->anchor) { 1857 if (r->anchor->match) { 1858 if (path[0]) 1859 snprintf(&path[len], MAXPATHLEN - len, 1860 "/%s", r->anchor->name); 1861 else 1862 snprintf(&path[len], MAXPATHLEN - len, 1863 "%s", r->anchor->name); 1864 name = r->anchor->name; 1865 } else 1866 name = r->anchor->path; 1867 } else 1868 name = ""; 1869 1870 if ((pf->opts & PF_OPT_NOACTION) == 0) { 1871 if (pfctl_add_pool(pf, &r->rpool, r->af)) 1872 return (1); 1873 if (pfctl_add_rule(pf->dev, r, anchor, name, ticket, 1874 pf->paddr.ticket)) 1875 err(1, "DIOCADDRULENV"); 1876 } 1877 1878 if (pf->opts & PF_OPT_VERBOSE) { 1879 INDENT(depth, !(pf->opts & PF_OPT_VERBOSE2)); 1880 print_rule(r, r->anchor ? r->anchor->name : "", 1881 pf->opts & PF_OPT_VERBOSE2, 1882 pf->opts & PF_OPT_NUMERIC); 1883 } 1884 path[len] = '\0'; 1885 pfctl_clear_pool(&r->rpool); 1886 return (0); 1887 } 1888 1889 int 1890 pfctl_add_altq(struct pfctl *pf, struct pf_altq *a) 1891 { 1892 if (altqsupport && 1893 (loadopt & PFCTL_FLAG_ALTQ) != 0) { 1894 memcpy(&pf->paltq->altq, a, sizeof(struct pf_altq)); 1895 if ((pf->opts & PF_OPT_NOACTION) == 0) { 1896 if (ioctl(pf->dev, DIOCADDALTQ, pf->paltq)) { 1897 if (errno == ENXIO) 1898 errx(1, "qtype not configured"); 1899 else if (errno == ENODEV) 1900 errx(1, "%s: driver does not support " 1901 "altq", a->ifname); 1902 else 1903 err(1, "DIOCADDALTQ"); 1904 } 1905 } 1906 pfaltq_store(&pf->paltq->altq); 1907 } 1908 return (0); 1909 } 1910 1911 int 1912 pfctl_rules(int dev, char *filename, int opts, int optimize, 1913 char *anchorname, struct pfr_buffer *trans) 1914 { 1915 #define ERR(x) do { warn(x); goto _error; } while(0) 1916 #define ERRX(x) do { warnx(x); goto _error; } while(0) 1917 1918 struct pfr_buffer *t, buf; 1919 struct pfioc_altq pa; 1920 struct pfctl pf; 1921 struct pfctl_ruleset *rs; 1922 struct pfctl_eth_ruleset *ethrs; 1923 struct pfr_table trs; 1924 char *path; 1925 int osize; 1926 1927 RB_INIT(&pf_anchors); 1928 memset(&pf_main_anchor, 0, sizeof(pf_main_anchor)); 1929 pf_init_ruleset(&pf_main_anchor.ruleset); 1930 pf_main_anchor.ruleset.anchor = &pf_main_anchor; 1931 1932 memset(&pf_eth_main_anchor, 0, sizeof(pf_eth_main_anchor)); 1933 pf_init_eth_ruleset(&pf_eth_main_anchor.ruleset); 1934 pf_eth_main_anchor.ruleset.anchor = &pf_eth_main_anchor; 1935 1936 if (trans == NULL) { 1937 bzero(&buf, sizeof(buf)); 1938 buf.pfrb_type = PFRB_TRANS; 1939 t = &buf; 1940 osize = 0; 1941 } else { 1942 t = trans; 1943 osize = t->pfrb_size; 1944 } 1945 1946 memset(&pa, 0, sizeof(pa)); 1947 pa.version = PFIOC_ALTQ_VERSION; 1948 memset(&pf, 0, sizeof(pf)); 1949 memset(&trs, 0, sizeof(trs)); 1950 if ((path = calloc(1, MAXPATHLEN)) == NULL) 1951 ERRX("pfctl_rules: calloc"); 1952 if (strlcpy(trs.pfrt_anchor, anchorname, 1953 sizeof(trs.pfrt_anchor)) >= sizeof(trs.pfrt_anchor)) 1954 ERRX("pfctl_rules: strlcpy"); 1955 pf.dev = dev; 1956 pf.opts = opts; 1957 pf.optimize = optimize; 1958 pf.loadopt = loadopt; 1959 1960 /* non-brace anchor, create without resolving the path */ 1961 if ((pf.anchor = calloc(1, sizeof(*pf.anchor))) == NULL) 1962 ERRX("pfctl_rules: calloc"); 1963 rs = &pf.anchor->ruleset; 1964 pf_init_ruleset(rs); 1965 rs->anchor = pf.anchor; 1966 if (strlcpy(pf.anchor->path, anchorname, 1967 sizeof(pf.anchor->path)) >= sizeof(pf.anchor->path)) 1968 errx(1, "pfctl_rules: strlcpy"); 1969 if (strlcpy(pf.anchor->name, anchorname, 1970 sizeof(pf.anchor->name)) >= sizeof(pf.anchor->name)) 1971 errx(1, "pfctl_rules: strlcpy"); 1972 1973 1974 pf.astack[0] = pf.anchor; 1975 pf.asd = 0; 1976 if (anchorname[0]) 1977 pf.loadopt &= ~PFCTL_FLAG_ALTQ; 1978 pf.paltq = &pa; 1979 pf.trans = t; 1980 pfctl_init_options(&pf); 1981 1982 /* Set up ethernet anchor */ 1983 if ((pf.eanchor = calloc(1, sizeof(*pf.eanchor))) == NULL) 1984 ERRX("pfctl_rules: calloc"); 1985 1986 if (strlcpy(pf.eanchor->path, anchorname, 1987 sizeof(pf.eanchor->path)) >= sizeof(pf.eanchor->path)) 1988 errx(1, "pfctl_rules: strlcpy"); 1989 if (strlcpy(pf.eanchor->name, anchorname, 1990 sizeof(pf.eanchor->name)) >= sizeof(pf.eanchor->name)) 1991 errx(1, "pfctl_rules: strlcpy"); 1992 1993 ethrs = &pf.eanchor->ruleset; 1994 pf_init_eth_ruleset(ethrs); 1995 ethrs->anchor = pf.eanchor; 1996 pf.eastack[0] = pf.eanchor; 1997 1998 if ((opts & PF_OPT_NOACTION) == 0) { 1999 /* 2000 * XXX For the time being we need to open transactions for 2001 * the main ruleset before parsing, because tables are still 2002 * loaded at parse time. 2003 */ 2004 if (pfctl_ruleset_trans(&pf, anchorname, pf.anchor, true)) 2005 ERRX("pfctl_rules"); 2006 if (pf.loadopt & PFCTL_FLAG_ETH) 2007 pf.eth_ticket = pfctl_get_ticket(t, PF_RULESET_ETH, anchorname); 2008 if (altqsupport && (pf.loadopt & PFCTL_FLAG_ALTQ)) 2009 pa.ticket = 2010 pfctl_get_ticket(t, PF_RULESET_ALTQ, anchorname); 2011 if (pf.loadopt & PFCTL_FLAG_TABLE) 2012 pf.astack[0]->ruleset.tticket = 2013 pfctl_get_ticket(t, PF_RULESET_TABLE, anchorname); 2014 } 2015 2016 if (parse_config(filename, &pf) < 0) { 2017 if ((opts & PF_OPT_NOACTION) == 0) 2018 ERRX("Syntax error in config file: " 2019 "pf rules not loaded"); 2020 else 2021 goto _error; 2022 } 2023 if (loadopt & PFCTL_FLAG_OPTION) 2024 pfctl_adjust_skip_ifaces(&pf); 2025 2026 if ((pf.loadopt & PFCTL_FLAG_FILTER && 2027 (pfctl_load_ruleset(&pf, path, rs, PF_RULESET_SCRUB, 0))) || 2028 (pf.loadopt & PFCTL_FLAG_ETH && 2029 (pfctl_load_eth_ruleset(&pf, path, ethrs, 0))) || 2030 (pf.loadopt & PFCTL_FLAG_NAT && 2031 (pfctl_load_ruleset(&pf, path, rs, PF_RULESET_NAT, 0) || 2032 pfctl_load_ruleset(&pf, path, rs, PF_RULESET_RDR, 0) || 2033 pfctl_load_ruleset(&pf, path, rs, PF_RULESET_BINAT, 0))) || 2034 (pf.loadopt & PFCTL_FLAG_FILTER && 2035 pfctl_load_ruleset(&pf, path, rs, PF_RULESET_FILTER, 0))) { 2036 if ((opts & PF_OPT_NOACTION) == 0) 2037 ERRX("Unable to load rules into kernel"); 2038 else 2039 goto _error; 2040 } 2041 2042 if ((altqsupport && (pf.loadopt & PFCTL_FLAG_ALTQ) != 0)) 2043 if (check_commit_altq(dev, opts) != 0) 2044 ERRX("errors in altq config"); 2045 2046 /* process "load anchor" directives */ 2047 if (!anchorname[0]) 2048 if (pfctl_load_anchors(dev, &pf, t) == -1) 2049 ERRX("load anchors"); 2050 2051 if (trans == NULL && (opts & PF_OPT_NOACTION) == 0) { 2052 if (!anchorname[0]) 2053 if (pfctl_load_options(&pf)) 2054 goto _error; 2055 if (pfctl_trans(dev, t, DIOCXCOMMIT, osize)) 2056 ERR("DIOCXCOMMIT"); 2057 } 2058 free(path); 2059 return (0); 2060 2061 _error: 2062 if (trans == NULL) { /* main ruleset */ 2063 if ((opts & PF_OPT_NOACTION) == 0) 2064 if (pfctl_trans(dev, t, DIOCXROLLBACK, osize)) 2065 err(1, "DIOCXROLLBACK"); 2066 exit(1); 2067 } else { /* sub ruleset */ 2068 free(path); 2069 return (-1); 2070 } 2071 2072 #undef ERR 2073 #undef ERRX 2074 } 2075 2076 FILE * 2077 pfctl_fopen(const char *name, const char *mode) 2078 { 2079 struct stat st; 2080 FILE *fp; 2081 2082 fp = fopen(name, mode); 2083 if (fp == NULL) 2084 return (NULL); 2085 if (fstat(fileno(fp), &st)) { 2086 fclose(fp); 2087 return (NULL); 2088 } 2089 if (S_ISDIR(st.st_mode)) { 2090 fclose(fp); 2091 errno = EISDIR; 2092 return (NULL); 2093 } 2094 return (fp); 2095 } 2096 2097 void 2098 pfctl_init_options(struct pfctl *pf) 2099 { 2100 2101 pf->timeout[PFTM_TCP_FIRST_PACKET] = PFTM_TCP_FIRST_PACKET_VAL; 2102 pf->timeout[PFTM_TCP_OPENING] = PFTM_TCP_OPENING_VAL; 2103 pf->timeout[PFTM_TCP_ESTABLISHED] = PFTM_TCP_ESTABLISHED_VAL; 2104 pf->timeout[PFTM_TCP_CLOSING] = PFTM_TCP_CLOSING_VAL; 2105 pf->timeout[PFTM_TCP_FIN_WAIT] = PFTM_TCP_FIN_WAIT_VAL; 2106 pf->timeout[PFTM_TCP_CLOSED] = PFTM_TCP_CLOSED_VAL; 2107 pf->timeout[PFTM_UDP_FIRST_PACKET] = PFTM_UDP_FIRST_PACKET_VAL; 2108 pf->timeout[PFTM_UDP_SINGLE] = PFTM_UDP_SINGLE_VAL; 2109 pf->timeout[PFTM_UDP_MULTIPLE] = PFTM_UDP_MULTIPLE_VAL; 2110 pf->timeout[PFTM_ICMP_FIRST_PACKET] = PFTM_ICMP_FIRST_PACKET_VAL; 2111 pf->timeout[PFTM_ICMP_ERROR_REPLY] = PFTM_ICMP_ERROR_REPLY_VAL; 2112 pf->timeout[PFTM_OTHER_FIRST_PACKET] = PFTM_OTHER_FIRST_PACKET_VAL; 2113 pf->timeout[PFTM_OTHER_SINGLE] = PFTM_OTHER_SINGLE_VAL; 2114 pf->timeout[PFTM_OTHER_MULTIPLE] = PFTM_OTHER_MULTIPLE_VAL; 2115 pf->timeout[PFTM_FRAG] = PFTM_FRAG_VAL; 2116 pf->timeout[PFTM_INTERVAL] = PFTM_INTERVAL_VAL; 2117 pf->timeout[PFTM_SRC_NODE] = PFTM_SRC_NODE_VAL; 2118 pf->timeout[PFTM_TS_DIFF] = PFTM_TS_DIFF_VAL; 2119 pf->timeout[PFTM_ADAPTIVE_START] = PFSTATE_ADAPT_START; 2120 pf->timeout[PFTM_ADAPTIVE_END] = PFSTATE_ADAPT_END; 2121 2122 pf->limit[PF_LIMIT_STATES] = PFSTATE_HIWAT; 2123 pf->limit[PF_LIMIT_FRAGS] = PFFRAG_FRENT_HIWAT; 2124 pf->limit[PF_LIMIT_SRC_NODES] = PFSNODE_HIWAT; 2125 pf->limit[PF_LIMIT_TABLE_ENTRIES] = PFR_KENTRY_HIWAT; 2126 2127 pf->debug = PF_DEBUG_URGENT; 2128 2129 pf->syncookies = false; 2130 pf->syncookieswat[0] = PF_SYNCOOKIES_LOWATPCT; 2131 pf->syncookieswat[1] = PF_SYNCOOKIES_HIWATPCT; 2132 } 2133 2134 int 2135 pfctl_load_options(struct pfctl *pf) 2136 { 2137 int i, error = 0; 2138 2139 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2140 return (0); 2141 2142 /* load limits */ 2143 for (i = 0; i < PF_LIMIT_MAX; i++) { 2144 if ((pf->opts & PF_OPT_MERGE) && !pf->limit_set[i]) 2145 continue; 2146 if (pfctl_load_limit(pf, i, pf->limit[i])) 2147 error = 1; 2148 } 2149 2150 /* 2151 * If we've set the limit, but haven't explicitly set adaptive 2152 * timeouts, do it now with a start of 60% and end of 120%. 2153 */ 2154 if (pf->limit_set[PF_LIMIT_STATES] && 2155 !pf->timeout_set[PFTM_ADAPTIVE_START] && 2156 !pf->timeout_set[PFTM_ADAPTIVE_END]) { 2157 pf->timeout[PFTM_ADAPTIVE_START] = 2158 (pf->limit[PF_LIMIT_STATES] / 10) * 6; 2159 pf->timeout_set[PFTM_ADAPTIVE_START] = 1; 2160 pf->timeout[PFTM_ADAPTIVE_END] = 2161 (pf->limit[PF_LIMIT_STATES] / 10) * 12; 2162 pf->timeout_set[PFTM_ADAPTIVE_END] = 1; 2163 } 2164 2165 /* load timeouts */ 2166 for (i = 0; i < PFTM_MAX; i++) { 2167 if ((pf->opts & PF_OPT_MERGE) && !pf->timeout_set[i]) 2168 continue; 2169 if (pfctl_load_timeout(pf, i, pf->timeout[i])) 2170 error = 1; 2171 } 2172 2173 /* load debug */ 2174 if (!(pf->opts & PF_OPT_MERGE) || pf->debug_set) 2175 if (pfctl_load_debug(pf, pf->debug)) 2176 error = 1; 2177 2178 /* load logif */ 2179 if (!(pf->opts & PF_OPT_MERGE) || pf->ifname_set) 2180 if (pfctl_load_logif(pf, pf->ifname)) 2181 error = 1; 2182 2183 /* load hostid */ 2184 if (!(pf->opts & PF_OPT_MERGE) || pf->hostid_set) 2185 if (pfctl_load_hostid(pf, pf->hostid)) 2186 error = 1; 2187 2188 /* load keepcounters */ 2189 if (pfctl_set_keepcounters(pf->dev, pf->keep_counters)) 2190 error = 1; 2191 2192 /* load syncookies settings */ 2193 if (pfctl_load_syncookies(pf, pf->syncookies)) 2194 error = 1; 2195 2196 return (error); 2197 } 2198 2199 int 2200 pfctl_set_limit(struct pfctl *pf, const char *opt, unsigned int limit) 2201 { 2202 int i; 2203 2204 2205 for (i = 0; pf_limits[i].name; i++) { 2206 if (strcasecmp(opt, pf_limits[i].name) == 0) { 2207 pf->limit[pf_limits[i].index] = limit; 2208 pf->limit_set[pf_limits[i].index] = 1; 2209 break; 2210 } 2211 } 2212 if (pf_limits[i].name == NULL) { 2213 warnx("Bad pool name."); 2214 return (1); 2215 } 2216 2217 if (pf->opts & PF_OPT_VERBOSE) 2218 printf("set limit %s %d\n", opt, limit); 2219 2220 return (0); 2221 } 2222 2223 int 2224 pfctl_load_limit(struct pfctl *pf, unsigned int index, unsigned int limit) 2225 { 2226 struct pfioc_limit pl; 2227 2228 memset(&pl, 0, sizeof(pl)); 2229 pl.index = index; 2230 pl.limit = limit; 2231 if (ioctl(pf->dev, DIOCSETLIMIT, &pl)) { 2232 if (errno == EBUSY) 2233 warnx("Current pool size exceeds requested hard limit"); 2234 else 2235 warnx("DIOCSETLIMIT"); 2236 return (1); 2237 } 2238 return (0); 2239 } 2240 2241 int 2242 pfctl_set_timeout(struct pfctl *pf, const char *opt, int seconds, int quiet) 2243 { 2244 int i; 2245 2246 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2247 return (0); 2248 2249 for (i = 0; pf_timeouts[i].name; i++) { 2250 if (strcasecmp(opt, pf_timeouts[i].name) == 0) { 2251 pf->timeout[pf_timeouts[i].timeout] = seconds; 2252 pf->timeout_set[pf_timeouts[i].timeout] = 1; 2253 break; 2254 } 2255 } 2256 2257 if (pf_timeouts[i].name == NULL) { 2258 warnx("Bad timeout name."); 2259 return (1); 2260 } 2261 2262 2263 if (pf->opts & PF_OPT_VERBOSE && ! quiet) 2264 printf("set timeout %s %d\n", opt, seconds); 2265 2266 return (0); 2267 } 2268 2269 int 2270 pfctl_load_timeout(struct pfctl *pf, unsigned int timeout, unsigned int seconds) 2271 { 2272 struct pfioc_tm pt; 2273 2274 memset(&pt, 0, sizeof(pt)); 2275 pt.timeout = timeout; 2276 pt.seconds = seconds; 2277 if (ioctl(pf->dev, DIOCSETTIMEOUT, &pt)) { 2278 warnx("DIOCSETTIMEOUT"); 2279 return (1); 2280 } 2281 return (0); 2282 } 2283 2284 int 2285 pfctl_set_optimization(struct pfctl *pf, const char *opt) 2286 { 2287 const struct pf_hint *hint; 2288 int i, r; 2289 2290 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2291 return (0); 2292 2293 for (i = 0; pf_hints[i].name; i++) 2294 if (strcasecmp(opt, pf_hints[i].name) == 0) 2295 break; 2296 2297 hint = pf_hints[i].hint; 2298 if (hint == NULL) { 2299 warnx("invalid state timeouts optimization"); 2300 return (1); 2301 } 2302 2303 for (i = 0; hint[i].name; i++) 2304 if ((r = pfctl_set_timeout(pf, hint[i].name, 2305 hint[i].timeout, 1))) 2306 return (r); 2307 2308 if (pf->opts & PF_OPT_VERBOSE) 2309 printf("set optimization %s\n", opt); 2310 2311 return (0); 2312 } 2313 2314 int 2315 pfctl_set_logif(struct pfctl *pf, char *ifname) 2316 { 2317 2318 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2319 return (0); 2320 2321 if (!strcmp(ifname, "none")) { 2322 free(pf->ifname); 2323 pf->ifname = NULL; 2324 } else { 2325 pf->ifname = strdup(ifname); 2326 if (!pf->ifname) 2327 errx(1, "pfctl_set_logif: strdup"); 2328 } 2329 pf->ifname_set = 1; 2330 2331 if (pf->opts & PF_OPT_VERBOSE) 2332 printf("set loginterface %s\n", ifname); 2333 2334 return (0); 2335 } 2336 2337 int 2338 pfctl_load_logif(struct pfctl *pf, char *ifname) 2339 { 2340 struct pfioc_if pi; 2341 2342 memset(&pi, 0, sizeof(pi)); 2343 if (ifname && strlcpy(pi.ifname, ifname, 2344 sizeof(pi.ifname)) >= sizeof(pi.ifname)) { 2345 warnx("pfctl_load_logif: strlcpy"); 2346 return (1); 2347 } 2348 if (ioctl(pf->dev, DIOCSETSTATUSIF, &pi)) { 2349 warnx("DIOCSETSTATUSIF"); 2350 return (1); 2351 } 2352 return (0); 2353 } 2354 2355 int 2356 pfctl_set_hostid(struct pfctl *pf, u_int32_t hostid) 2357 { 2358 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2359 return (0); 2360 2361 HTONL(hostid); 2362 2363 pf->hostid = hostid; 2364 pf->hostid_set = 1; 2365 2366 if (pf->opts & PF_OPT_VERBOSE) 2367 printf("set hostid 0x%08x\n", ntohl(hostid)); 2368 2369 return (0); 2370 } 2371 2372 int 2373 pfctl_load_hostid(struct pfctl *pf, u_int32_t hostid) 2374 { 2375 if (ioctl(dev, DIOCSETHOSTID, &hostid)) { 2376 warnx("DIOCSETHOSTID"); 2377 return (1); 2378 } 2379 return (0); 2380 } 2381 2382 int 2383 pfctl_load_syncookies(struct pfctl *pf, u_int8_t val) 2384 { 2385 struct pfctl_syncookies cookies; 2386 2387 bzero(&cookies, sizeof(cookies)); 2388 2389 cookies.mode = val; 2390 cookies.lowwater = pf->syncookieswat[0]; 2391 cookies.highwater = pf->syncookieswat[1]; 2392 2393 if (pfctl_set_syncookies(dev, &cookies)) { 2394 warnx("DIOCSETSYNCOOKIES"); 2395 return (1); 2396 } 2397 return (0); 2398 } 2399 2400 int 2401 pfctl_cfg_syncookies(struct pfctl *pf, uint8_t val, struct pfctl_watermarks *w) 2402 { 2403 if (val != PF_SYNCOOKIES_ADAPTIVE && w != NULL) { 2404 warnx("syncookies start/end only apply to adaptive"); 2405 return (1); 2406 } 2407 if (val == PF_SYNCOOKIES_ADAPTIVE && w != NULL) { 2408 if (!w->hi) 2409 w->hi = PF_SYNCOOKIES_HIWATPCT; 2410 if (!w->lo) 2411 w->lo = w->hi / 2; 2412 if (w->lo >= w->hi) { 2413 warnx("start must be higher than end"); 2414 return (1); 2415 } 2416 pf->syncookieswat[0] = w->lo; 2417 pf->syncookieswat[1] = w->hi; 2418 pf->syncookieswat_set = 1; 2419 } 2420 2421 if (pf->opts & PF_OPT_VERBOSE) { 2422 if (val == PF_SYNCOOKIES_NEVER) 2423 printf("set syncookies never\n"); 2424 else if (val == PF_SYNCOOKIES_ALWAYS) 2425 printf("set syncookies always\n"); 2426 else if (val == PF_SYNCOOKIES_ADAPTIVE) { 2427 if (pf->syncookieswat_set) 2428 printf("set syncookies adaptive (start %u%%, " 2429 "end %u%%)\n", pf->syncookieswat[1], 2430 pf->syncookieswat[0]); 2431 else 2432 printf("set syncookies adaptive\n"); 2433 } else { /* cannot happen */ 2434 warnx("king bula ate all syncookies"); 2435 return (1); 2436 } 2437 } 2438 2439 pf->syncookies = val; 2440 return (0); 2441 } 2442 2443 int 2444 pfctl_set_debug(struct pfctl *pf, char *d) 2445 { 2446 u_int32_t level; 2447 2448 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2449 return (0); 2450 2451 if (!strcmp(d, "none")) 2452 pf->debug = PF_DEBUG_NONE; 2453 else if (!strcmp(d, "urgent")) 2454 pf->debug = PF_DEBUG_URGENT; 2455 else if (!strcmp(d, "misc")) 2456 pf->debug = PF_DEBUG_MISC; 2457 else if (!strcmp(d, "loud")) 2458 pf->debug = PF_DEBUG_NOISY; 2459 else { 2460 warnx("unknown debug level \"%s\"", d); 2461 return (-1); 2462 } 2463 2464 pf->debug_set = 1; 2465 level = pf->debug; 2466 2467 if ((pf->opts & PF_OPT_NOACTION) == 0) 2468 if (ioctl(dev, DIOCSETDEBUG, &level)) 2469 err(1, "DIOCSETDEBUG"); 2470 2471 if (pf->opts & PF_OPT_VERBOSE) 2472 printf("set debug %s\n", d); 2473 2474 return (0); 2475 } 2476 2477 int 2478 pfctl_load_debug(struct pfctl *pf, unsigned int level) 2479 { 2480 if (ioctl(pf->dev, DIOCSETDEBUG, &level)) { 2481 warnx("DIOCSETDEBUG"); 2482 return (1); 2483 } 2484 return (0); 2485 } 2486 2487 int 2488 pfctl_set_interface_flags(struct pfctl *pf, char *ifname, int flags, int how) 2489 { 2490 struct pfioc_iface pi; 2491 struct node_host *h = NULL, *n = NULL; 2492 2493 if ((loadopt & PFCTL_FLAG_OPTION) == 0) 2494 return (0); 2495 2496 bzero(&pi, sizeof(pi)); 2497 2498 pi.pfiio_flags = flags; 2499 2500 /* Make sure our cache matches the kernel. If we set or clear the flag 2501 * for a group this applies to all members. */ 2502 h = ifa_grouplookup(ifname, 0); 2503 for (n = h; n != NULL; n = n->next) 2504 pfctl_set_interface_flags(pf, n->ifname, flags, how); 2505 2506 if (strlcpy(pi.pfiio_name, ifname, sizeof(pi.pfiio_name)) >= 2507 sizeof(pi.pfiio_name)) 2508 errx(1, "pfctl_set_interface_flags: strlcpy"); 2509 2510 if ((pf->opts & PF_OPT_NOACTION) == 0) { 2511 if (how == 0) { 2512 if (ioctl(pf->dev, DIOCCLRIFFLAG, &pi)) 2513 err(1, "DIOCCLRIFFLAG"); 2514 } else { 2515 if (ioctl(pf->dev, DIOCSETIFFLAG, &pi)) 2516 err(1, "DIOCSETIFFLAG"); 2517 pfctl_check_skip_ifaces(ifname); 2518 } 2519 } 2520 return (0); 2521 } 2522 2523 void 2524 pfctl_debug(int dev, u_int32_t level, int opts) 2525 { 2526 if (ioctl(dev, DIOCSETDEBUG, &level)) 2527 err(1, "DIOCSETDEBUG"); 2528 if ((opts & PF_OPT_QUIET) == 0) { 2529 fprintf(stderr, "debug level set to '"); 2530 switch (level) { 2531 case PF_DEBUG_NONE: 2532 fprintf(stderr, "none"); 2533 break; 2534 case PF_DEBUG_URGENT: 2535 fprintf(stderr, "urgent"); 2536 break; 2537 case PF_DEBUG_MISC: 2538 fprintf(stderr, "misc"); 2539 break; 2540 case PF_DEBUG_NOISY: 2541 fprintf(stderr, "loud"); 2542 break; 2543 default: 2544 fprintf(stderr, "<invalid>"); 2545 break; 2546 } 2547 fprintf(stderr, "'\n"); 2548 } 2549 } 2550 2551 int 2552 pfctl_test_altqsupport(int dev, int opts) 2553 { 2554 struct pfioc_altq pa; 2555 2556 pa.version = PFIOC_ALTQ_VERSION; 2557 if (ioctl(dev, DIOCGETALTQS, &pa)) { 2558 if (errno == ENODEV) { 2559 if (opts & PF_OPT_VERBOSE) 2560 fprintf(stderr, "No ALTQ support in kernel\n" 2561 "ALTQ related functions disabled\n"); 2562 return (0); 2563 } else 2564 err(1, "DIOCGETALTQS"); 2565 } 2566 return (1); 2567 } 2568 2569 int 2570 pfctl_show_anchors(int dev, int opts, char *anchorname) 2571 { 2572 struct pfioc_ruleset pr; 2573 u_int32_t mnr, nr; 2574 2575 memset(&pr, 0, sizeof(pr)); 2576 memcpy(pr.path, anchorname, sizeof(pr.path)); 2577 if (ioctl(dev, DIOCGETRULESETS, &pr)) { 2578 if (errno == EINVAL) 2579 fprintf(stderr, "Anchor '%s' not found.\n", 2580 anchorname); 2581 else 2582 err(1, "DIOCGETRULESETS"); 2583 return (-1); 2584 } 2585 mnr = pr.nr; 2586 for (nr = 0; nr < mnr; ++nr) { 2587 char sub[MAXPATHLEN]; 2588 2589 pr.nr = nr; 2590 if (ioctl(dev, DIOCGETRULESET, &pr)) 2591 err(1, "DIOCGETRULESET"); 2592 if (!strcmp(pr.name, PF_RESERVED_ANCHOR)) 2593 continue; 2594 sub[0] = 0; 2595 if (pr.path[0]) { 2596 strlcat(sub, pr.path, sizeof(sub)); 2597 strlcat(sub, "/", sizeof(sub)); 2598 } 2599 strlcat(sub, pr.name, sizeof(sub)); 2600 if (sub[0] != '_' || (opts & PF_OPT_VERBOSE)) 2601 printf(" %s\n", sub); 2602 if ((opts & PF_OPT_VERBOSE) && pfctl_show_anchors(dev, opts, sub)) 2603 return (-1); 2604 } 2605 return (0); 2606 } 2607 2608 int 2609 pfctl_show_eth_anchors(int dev, int opts, char *anchorname) 2610 { 2611 struct pfctl_eth_rulesets_info ri; 2612 struct pfctl_eth_ruleset_info rs; 2613 int ret; 2614 2615 if ((ret = pfctl_get_eth_rulesets_info(dev, &ri, anchorname)) != 0) { 2616 if (ret == ENOENT) 2617 fprintf(stderr, "Anchor '%s' not found.\n", 2618 anchorname); 2619 else 2620 err(1, "DIOCGETETHRULESETS"); 2621 return (-1); 2622 } 2623 2624 for (int nr = 0; nr < ri.nr; nr++) { 2625 char sub[MAXPATHLEN]; 2626 2627 if (pfctl_get_eth_ruleset(dev, anchorname, nr, &rs) != 0) 2628 err(1, "DIOCGETETHRULESET"); 2629 2630 if (!strcmp(rs.name, PF_RESERVED_ANCHOR)) 2631 continue; 2632 sub[0] = 0; 2633 if (rs.path[0]) { 2634 strlcat(sub, rs.path, sizeof(sub)); 2635 strlcat(sub, "/", sizeof(sub)); 2636 } 2637 strlcat(sub, rs.name, sizeof(sub)); 2638 if (sub[0] != '_' || (opts & PF_OPT_VERBOSE)) 2639 printf(" %s\n", sub); 2640 if ((opts & PF_OPT_VERBOSE) && pfctl_show_eth_anchors(dev, opts, sub)) 2641 return (-1); 2642 } 2643 return (0); 2644 } 2645 2646 const char * 2647 pfctl_lookup_option(char *cmd, const char * const *list) 2648 { 2649 if (cmd != NULL && *cmd) 2650 for (; *list; list++) 2651 if (!strncmp(cmd, *list, strlen(cmd))) 2652 return (*list); 2653 return (NULL); 2654 } 2655 2656 int 2657 main(int argc, char *argv[]) 2658 { 2659 int error = 0; 2660 int ch; 2661 int mode = O_RDONLY; 2662 int opts = 0; 2663 int optimize = PF_OPTIMIZE_BASIC; 2664 char anchorname[MAXPATHLEN]; 2665 char *path; 2666 2667 if (argc < 2) 2668 usage(); 2669 2670 while ((ch = getopt(argc, argv, 2671 "a:AdD:eqf:F:ghi:k:K:mMnNOo:Pp:rRs:t:T:vx:z")) != -1) { 2672 switch (ch) { 2673 case 'a': 2674 anchoropt = optarg; 2675 break; 2676 case 'd': 2677 opts |= PF_OPT_DISABLE; 2678 mode = O_RDWR; 2679 break; 2680 case 'D': 2681 if (pfctl_cmdline_symset(optarg) < 0) 2682 warnx("could not parse macro definition %s", 2683 optarg); 2684 break; 2685 case 'e': 2686 opts |= PF_OPT_ENABLE; 2687 mode = O_RDWR; 2688 break; 2689 case 'q': 2690 opts |= PF_OPT_QUIET; 2691 break; 2692 case 'F': 2693 clearopt = pfctl_lookup_option(optarg, clearopt_list); 2694 if (clearopt == NULL) { 2695 warnx("Unknown flush modifier '%s'", optarg); 2696 usage(); 2697 } 2698 mode = O_RDWR; 2699 break; 2700 case 'i': 2701 ifaceopt = optarg; 2702 break; 2703 case 'k': 2704 if (state_killers >= 2) { 2705 warnx("can only specify -k twice"); 2706 usage(); 2707 /* NOTREACHED */ 2708 } 2709 state_kill[state_killers++] = optarg; 2710 mode = O_RDWR; 2711 break; 2712 case 'K': 2713 if (src_node_killers >= 2) { 2714 warnx("can only specify -K twice"); 2715 usage(); 2716 /* NOTREACHED */ 2717 } 2718 src_node_kill[src_node_killers++] = optarg; 2719 mode = O_RDWR; 2720 break; 2721 case 'm': 2722 opts |= PF_OPT_MERGE; 2723 break; 2724 case 'M': 2725 opts |= PF_OPT_KILLMATCH; 2726 break; 2727 case 'n': 2728 opts |= PF_OPT_NOACTION; 2729 break; 2730 case 'N': 2731 loadopt |= PFCTL_FLAG_NAT; 2732 break; 2733 case 'r': 2734 opts |= PF_OPT_USEDNS; 2735 break; 2736 case 'f': 2737 rulesopt = optarg; 2738 mode = O_RDWR; 2739 break; 2740 case 'g': 2741 opts |= PF_OPT_DEBUG; 2742 break; 2743 case 'A': 2744 loadopt |= PFCTL_FLAG_ALTQ; 2745 break; 2746 case 'R': 2747 loadopt |= PFCTL_FLAG_FILTER; 2748 break; 2749 case 'o': 2750 optiopt = pfctl_lookup_option(optarg, optiopt_list); 2751 if (optiopt == NULL) { 2752 warnx("Unknown optimization '%s'", optarg); 2753 usage(); 2754 } 2755 opts |= PF_OPT_OPTIMIZE; 2756 break; 2757 case 'O': 2758 loadopt |= PFCTL_FLAG_OPTION; 2759 break; 2760 case 'p': 2761 pf_device = optarg; 2762 break; 2763 case 'P': 2764 opts |= PF_OPT_NUMERIC; 2765 break; 2766 case 's': 2767 showopt = pfctl_lookup_option(optarg, showopt_list); 2768 if (showopt == NULL) { 2769 warnx("Unknown show modifier '%s'", optarg); 2770 usage(); 2771 } 2772 break; 2773 case 't': 2774 tableopt = optarg; 2775 break; 2776 case 'T': 2777 tblcmdopt = pfctl_lookup_option(optarg, tblcmdopt_list); 2778 if (tblcmdopt == NULL) { 2779 warnx("Unknown table command '%s'", optarg); 2780 usage(); 2781 } 2782 break; 2783 case 'v': 2784 if (opts & PF_OPT_VERBOSE) 2785 opts |= PF_OPT_VERBOSE2; 2786 opts |= PF_OPT_VERBOSE; 2787 break; 2788 case 'x': 2789 debugopt = pfctl_lookup_option(optarg, debugopt_list); 2790 if (debugopt == NULL) { 2791 warnx("Unknown debug level '%s'", optarg); 2792 usage(); 2793 } 2794 mode = O_RDWR; 2795 break; 2796 case 'z': 2797 opts |= PF_OPT_CLRRULECTRS; 2798 mode = O_RDWR; 2799 break; 2800 case 'h': 2801 /* FALLTHROUGH */ 2802 default: 2803 usage(); 2804 /* NOTREACHED */ 2805 } 2806 } 2807 2808 if (tblcmdopt != NULL) { 2809 argc -= optind; 2810 argv += optind; 2811 ch = *tblcmdopt; 2812 if (ch == 'l') { 2813 loadopt |= PFCTL_FLAG_TABLE; 2814 tblcmdopt = NULL; 2815 } else 2816 mode = strchr("acdefkrz", ch) ? O_RDWR : O_RDONLY; 2817 } else if (argc != optind) { 2818 warnx("unknown command line argument: %s ...", argv[optind]); 2819 usage(); 2820 /* NOTREACHED */ 2821 } 2822 if (loadopt == 0) 2823 loadopt = ~0; 2824 2825 if ((path = calloc(1, MAXPATHLEN)) == NULL) 2826 errx(1, "pfctl: calloc"); 2827 memset(anchorname, 0, sizeof(anchorname)); 2828 if (anchoropt != NULL) { 2829 int len = strlen(anchoropt); 2830 2831 if (anchoropt[len - 1] == '*') { 2832 if (len >= 2 && anchoropt[len - 2] == '/') 2833 anchoropt[len - 2] = '\0'; 2834 else 2835 anchoropt[len - 1] = '\0'; 2836 opts |= PF_OPT_RECURSE; 2837 } 2838 if (strlcpy(anchorname, anchoropt, 2839 sizeof(anchorname)) >= sizeof(anchorname)) 2840 errx(1, "anchor name '%s' too long", 2841 anchoropt); 2842 loadopt &= PFCTL_FLAG_FILTER|PFCTL_FLAG_NAT|PFCTL_FLAG_TABLE|PFCTL_FLAG_ETH; 2843 } 2844 2845 if ((opts & PF_OPT_NOACTION) == 0) { 2846 dev = open(pf_device, mode); 2847 if (dev == -1) 2848 err(1, "%s", pf_device); 2849 altqsupport = pfctl_test_altqsupport(dev, opts); 2850 } else { 2851 dev = open(pf_device, O_RDONLY); 2852 if (dev >= 0) 2853 opts |= PF_OPT_DUMMYACTION; 2854 /* turn off options */ 2855 opts &= ~ (PF_OPT_DISABLE | PF_OPT_ENABLE); 2856 clearopt = showopt = debugopt = NULL; 2857 #if !defined(ENABLE_ALTQ) 2858 altqsupport = 0; 2859 #else 2860 altqsupport = 1; 2861 #endif 2862 } 2863 2864 if (opts & PF_OPT_DISABLE) 2865 if (pfctl_disable(dev, opts)) 2866 error = 1; 2867 2868 if (showopt != NULL) { 2869 switch (*showopt) { 2870 case 'A': 2871 pfctl_show_anchors(dev, opts, anchorname); 2872 pfctl_show_eth_anchors(dev, opts, anchorname); 2873 break; 2874 case 'r': 2875 pfctl_load_fingerprints(dev, opts); 2876 pfctl_show_rules(dev, path, opts, PFCTL_SHOW_RULES, 2877 anchorname, 0); 2878 break; 2879 case 'l': 2880 pfctl_load_fingerprints(dev, opts); 2881 pfctl_show_rules(dev, path, opts, PFCTL_SHOW_LABELS, 2882 anchorname, 0); 2883 break; 2884 case 'n': 2885 pfctl_load_fingerprints(dev, opts); 2886 pfctl_show_nat(dev, path, opts, anchorname, 0); 2887 break; 2888 case 'q': 2889 pfctl_show_altq(dev, ifaceopt, opts, 2890 opts & PF_OPT_VERBOSE2); 2891 break; 2892 case 's': 2893 pfctl_show_states(dev, ifaceopt, opts); 2894 break; 2895 case 'S': 2896 pfctl_show_src_nodes(dev, opts); 2897 break; 2898 case 'i': 2899 pfctl_show_status(dev, opts); 2900 break; 2901 case 'R': 2902 error = pfctl_show_running(dev); 2903 break; 2904 case 't': 2905 pfctl_show_timeouts(dev, opts); 2906 break; 2907 case 'm': 2908 pfctl_show_limits(dev, opts); 2909 break; 2910 case 'e': 2911 pfctl_show_eth_rules(dev, path, opts, 0, anchorname, 0); 2912 break; 2913 case 'a': 2914 opts |= PF_OPT_SHOWALL; 2915 pfctl_load_fingerprints(dev, opts); 2916 2917 pfctl_show_eth_rules(dev, path, opts, 0, anchorname, 0); 2918 2919 pfctl_show_nat(dev, path, opts, anchorname, 0); 2920 pfctl_show_rules(dev, path, opts, 0, anchorname, 0); 2921 pfctl_show_altq(dev, ifaceopt, opts, 0); 2922 pfctl_show_states(dev, ifaceopt, opts); 2923 pfctl_show_src_nodes(dev, opts); 2924 pfctl_show_status(dev, opts); 2925 pfctl_show_rules(dev, path, opts, 1, anchorname, 0); 2926 pfctl_show_timeouts(dev, opts); 2927 pfctl_show_limits(dev, opts); 2928 pfctl_show_tables(anchorname, opts); 2929 pfctl_show_fingerprints(opts); 2930 break; 2931 case 'T': 2932 pfctl_show_tables(anchorname, opts); 2933 break; 2934 case 'o': 2935 pfctl_load_fingerprints(dev, opts); 2936 pfctl_show_fingerprints(opts); 2937 break; 2938 case 'I': 2939 pfctl_show_ifaces(ifaceopt, opts); 2940 break; 2941 } 2942 } 2943 2944 if ((opts & PF_OPT_CLRRULECTRS) && showopt == NULL) { 2945 pfctl_show_eth_rules(dev, path, opts, PFCTL_SHOW_NOTHING, 2946 anchorname, 0); 2947 pfctl_show_rules(dev, path, opts, PFCTL_SHOW_NOTHING, 2948 anchorname, 0); 2949 } 2950 2951 if (clearopt != NULL) { 2952 if (anchorname[0] == '_' || strstr(anchorname, "/_") != NULL) 2953 errx(1, "anchor names beginning with '_' cannot " 2954 "be modified from the command line"); 2955 2956 switch (*clearopt) { 2957 case 'e': 2958 pfctl_flush_eth_rules(dev, opts, anchorname); 2959 break; 2960 case 'r': 2961 pfctl_flush_rules(dev, opts, anchorname); 2962 break; 2963 case 'n': 2964 pfctl_flush_nat(dev, opts, anchorname); 2965 break; 2966 case 'q': 2967 pfctl_clear_altq(dev, opts); 2968 break; 2969 case 's': 2970 pfctl_clear_iface_states(dev, ifaceopt, opts); 2971 break; 2972 case 'S': 2973 pfctl_clear_src_nodes(dev, opts); 2974 break; 2975 case 'i': 2976 pfctl_clear_stats(dev, opts); 2977 break; 2978 case 'a': 2979 pfctl_flush_eth_rules(dev, opts, anchorname); 2980 pfctl_flush_rules(dev, opts, anchorname); 2981 pfctl_flush_nat(dev, opts, anchorname); 2982 pfctl_clear_tables(anchorname, opts); 2983 if (!*anchorname) { 2984 pfctl_clear_altq(dev, opts); 2985 pfctl_clear_iface_states(dev, ifaceopt, opts); 2986 pfctl_clear_src_nodes(dev, opts); 2987 pfctl_clear_stats(dev, opts); 2988 pfctl_clear_fingerprints(dev, opts); 2989 pfctl_clear_interface_flags(dev, opts); 2990 } 2991 break; 2992 case 'o': 2993 pfctl_clear_fingerprints(dev, opts); 2994 break; 2995 case 'T': 2996 pfctl_clear_tables(anchorname, opts); 2997 break; 2998 } 2999 } 3000 if (state_killers) { 3001 if (!strcmp(state_kill[0], "label")) 3002 pfctl_label_kill_states(dev, ifaceopt, opts); 3003 else if (!strcmp(state_kill[0], "id")) 3004 pfctl_id_kill_states(dev, ifaceopt, opts); 3005 else if (!strcmp(state_kill[0], "gateway")) 3006 pfctl_gateway_kill_states(dev, ifaceopt, opts); 3007 else 3008 pfctl_net_kill_states(dev, ifaceopt, opts); 3009 } 3010 3011 if (src_node_killers) 3012 pfctl_kill_src_nodes(dev, ifaceopt, opts); 3013 3014 if (tblcmdopt != NULL) { 3015 error = pfctl_command_tables(argc, argv, tableopt, 3016 tblcmdopt, rulesopt, anchorname, opts); 3017 rulesopt = NULL; 3018 } 3019 if (optiopt != NULL) { 3020 switch (*optiopt) { 3021 case 'n': 3022 optimize = 0; 3023 break; 3024 case 'b': 3025 optimize |= PF_OPTIMIZE_BASIC; 3026 break; 3027 case 'o': 3028 case 'p': 3029 optimize |= PF_OPTIMIZE_PROFILE; 3030 break; 3031 } 3032 } 3033 3034 if ((rulesopt != NULL) && (loadopt & PFCTL_FLAG_OPTION) && 3035 !anchorname[0] && !(opts & PF_OPT_NOACTION)) 3036 if (pfctl_get_skip_ifaces()) 3037 error = 1; 3038 3039 if (rulesopt != NULL && !(opts & (PF_OPT_MERGE|PF_OPT_NOACTION)) && 3040 !anchorname[0] && (loadopt & PFCTL_FLAG_OPTION)) 3041 if (pfctl_file_fingerprints(dev, opts, PF_OSFP_FILE)) 3042 error = 1; 3043 3044 if (rulesopt != NULL) { 3045 if (anchorname[0] == '_' || strstr(anchorname, "/_") != NULL) 3046 errx(1, "anchor names beginning with '_' cannot " 3047 "be modified from the command line"); 3048 if (pfctl_rules(dev, rulesopt, opts, optimize, 3049 anchorname, NULL)) 3050 error = 1; 3051 else if (!(opts & PF_OPT_NOACTION) && 3052 (loadopt & PFCTL_FLAG_TABLE)) 3053 warn_namespace_collision(NULL); 3054 } 3055 3056 if (opts & PF_OPT_ENABLE) 3057 if (pfctl_enable(dev, opts)) 3058 error = 1; 3059 3060 if (debugopt != NULL) { 3061 switch (*debugopt) { 3062 case 'n': 3063 pfctl_debug(dev, PF_DEBUG_NONE, opts); 3064 break; 3065 case 'u': 3066 pfctl_debug(dev, PF_DEBUG_URGENT, opts); 3067 break; 3068 case 'm': 3069 pfctl_debug(dev, PF_DEBUG_MISC, opts); 3070 break; 3071 case 'l': 3072 pfctl_debug(dev, PF_DEBUG_NOISY, opts); 3073 break; 3074 } 3075 } 3076 3077 exit(error); 3078 } 3079