1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2023 Alexander V. Chernikov <melifaro@FreeBSD.org> 5 * Copyright (c) 2023 Rubicon Communications, LLC (Netgate) 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 */ 29 30 #include <sys/param.h> 31 #include <sys/malloc.h> 32 #include <sys/mbuf.h> 33 #include <sys/priv.h> 34 #include <sys/socket.h> 35 #include <sys/ucred.h> 36 37 #include <net/pfvar.h> 38 39 #include <netlink/netlink.h> 40 #include <netlink/netlink_ctl.h> 41 #include <netlink/netlink_generic.h> 42 #include <netlink/netlink_message_writer.h> 43 44 #include <netpfil/pf/pf_nl.h> 45 46 #define DEBUG_MOD_NAME nl_pf 47 #define DEBUG_MAX_LEVEL LOG_DEBUG3 48 #include <netlink/netlink_debug.h> 49 _DECLARE_DEBUG(LOG_DEBUG); 50 51 struct nl_parsed_state { 52 uint8_t version; 53 uint32_t id; 54 uint32_t creatorid; 55 char ifname[IFNAMSIZ]; 56 uint16_t proto; 57 sa_family_t af; 58 struct pf_addr addr; 59 struct pf_addr mask; 60 }; 61 62 #define _IN(_field) offsetof(struct genlmsghdr, _field) 63 #define _OUT(_field) offsetof(struct nl_parsed_state, _field) 64 static const struct nlattr_parser nla_p_state[] = { 65 { .type = PF_ST_ID, .off = _OUT(id), .cb = nlattr_get_uint32 }, 66 { .type = PF_ST_CREATORID, .off = _OUT(creatorid), .cb = nlattr_get_uint32 }, 67 { .type = PF_ST_IFNAME, .arg = (const void *)IFNAMSIZ, .off = _OUT(ifname), .cb = nlattr_get_chara }, 68 { .type = PF_ST_AF, .off = _OUT(proto), .cb = nlattr_get_uint8 }, 69 { .type = PF_ST_PROTO, .off = _OUT(proto), .cb = nlattr_get_uint16 }, 70 { .type = PF_ST_FILTER_ADDR, .off = _OUT(addr), .cb = nlattr_get_in6_addr }, 71 { .type = PF_ST_FILTER_MASK, .off = _OUT(mask), .cb = nlattr_get_in6_addr }, 72 }; 73 static const struct nlfield_parser nlf_p_generic[] = { 74 { .off_in = _IN(version), .off_out = _OUT(version), .cb = nlf_get_u8 }, 75 }; 76 #undef _IN 77 #undef _OUT 78 NL_DECLARE_PARSER(state_parser, struct genlmsghdr, nlf_p_generic, nla_p_state); 79 80 static void 81 dump_addr(struct nl_writer *nw, int attr, const struct pf_addr *addr, int af) 82 { 83 switch (af) { 84 case AF_INET: 85 nlattr_add(nw, attr, 4, &addr->v4); 86 break; 87 case AF_INET6: 88 nlattr_add(nw, attr, 16, &addr->v6); 89 break; 90 }; 91 } 92 93 static bool 94 dump_state_peer(struct nl_writer *nw, int attr, const struct pf_state_peer *peer) 95 { 96 int off = nlattr_add_nested(nw, attr); 97 if (off == 0) 98 return (false); 99 100 nlattr_add_u32(nw, PF_STP_SEQLO, peer->seqlo); 101 nlattr_add_u32(nw, PF_STP_SEQHI, peer->seqhi); 102 nlattr_add_u32(nw, PF_STP_SEQDIFF, peer->seqdiff); 103 nlattr_add_u16(nw, PF_STP_MAX_WIN, peer->max_win); 104 nlattr_add_u16(nw, PF_STP_MSS, peer->mss); 105 nlattr_add_u8(nw, PF_STP_STATE, peer->state); 106 nlattr_add_u8(nw, PF_STP_WSCALE, peer->wscale); 107 108 if (peer->scrub != NULL) { 109 struct pf_state_scrub *sc = peer->scrub; 110 uint16_t pfss_flags = sc->pfss_flags & PFSS_TIMESTAMP; 111 112 nlattr_add_u16(nw, PF_STP_PFSS_FLAGS, pfss_flags); 113 nlattr_add_u32(nw, PF_STP_PFSS_TS_MOD, sc->pfss_ts_mod); 114 nlattr_add_u8(nw, PF_STP_PFSS_TTL, sc->pfss_ttl); 115 nlattr_add_u8(nw, PF_STP_SCRUB_FLAG, PFSYNC_SCRUB_FLAG_VALID); 116 } 117 nlattr_set_len(nw, off); 118 119 return (true); 120 } 121 122 static bool 123 dump_state_key(struct nl_writer *nw, int attr, const struct pf_state_key *key) 124 { 125 int off = nlattr_add_nested(nw, attr); 126 if (off == 0) 127 return (false); 128 129 dump_addr(nw, PF_STK_ADDR0, &key->addr[0], key->af); 130 dump_addr(nw, PF_STK_ADDR1, &key->addr[1], key->af); 131 nlattr_add_u16(nw, PF_STK_PORT0, key->port[0]); 132 nlattr_add_u16(nw, PF_STK_PORT1, key->port[1]); 133 134 nlattr_set_len(nw, off); 135 136 return (true); 137 } 138 139 static int 140 dump_state(struct nlpcb *nlp, const struct nlmsghdr *hdr, struct pf_kstate *s, 141 struct nl_pstate *npt) 142 { 143 struct nl_writer *nw = npt->nw; 144 int error = 0; 145 int af; 146 struct pf_state_key *key; 147 148 if (!nlmsg_reply(nw, hdr, sizeof(struct genlmsghdr))) 149 goto enomem; 150 151 struct genlmsghdr *ghdr_new = nlmsg_reserve_object(nw, struct genlmsghdr); 152 ghdr_new->cmd = PFNL_CMD_GETSTATES; 153 ghdr_new->version = 0; 154 ghdr_new->reserved = 0; 155 156 nlattr_add_u64(nw, PF_ST_VERSION, PF_STATE_VERSION); 157 158 key = s->key[PF_SK_WIRE]; 159 if (!dump_state_key(nw, PF_ST_KEY_WIRE, key)) 160 goto enomem; 161 key = s->key[PF_SK_STACK]; 162 if (!dump_state_key(nw, PF_ST_KEY_STACK, key)) 163 goto enomem; 164 165 af = s->key[PF_SK_WIRE]->af; 166 nlattr_add_u8(nw, PF_ST_PROTO, s->key[PF_SK_WIRE]->proto); 167 nlattr_add_u8(nw, PF_ST_AF, af); 168 169 nlattr_add_string(nw, PF_ST_IFNAME, s->kif->pfik_name); 170 nlattr_add_string(nw, PF_ST_ORIG_IFNAME, s->orig_kif->pfik_name); 171 dump_addr(nw, PF_ST_RT_ADDR, &s->rt_addr, af); 172 nlattr_add_u32(nw, PF_ST_CREATION, time_uptime - (s->creation / 1000)); 173 uint32_t expire = pf_state_expires(s); 174 if (expire > time_uptime) 175 expire = expire - time_uptime; 176 nlattr_add_u32(nw, PF_ST_EXPIRE, expire); 177 nlattr_add_u8(nw, PF_ST_DIRECTION, s->direction); 178 nlattr_add_u8(nw, PF_ST_LOG, s->act.log); 179 nlattr_add_u8(nw, PF_ST_TIMEOUT, s->timeout); 180 nlattr_add_u16(nw, PF_ST_STATE_FLAGS, s->state_flags); 181 uint8_t sync_flags = 0; 182 if (s->src_node) 183 sync_flags |= PFSYNC_FLAG_SRCNODE; 184 if (s->nat_src_node) 185 sync_flags |= PFSYNC_FLAG_NATSRCNODE; 186 nlattr_add_u8(nw, PF_ST_SYNC_FLAGS, sync_flags); 187 nlattr_add_u64(nw, PF_ST_ID, s->id); 188 nlattr_add_u32(nw, PF_ST_CREATORID, htonl(s->creatorid)); 189 190 nlattr_add_u32(nw, PF_ST_RULE, s->rule.ptr ? s->rule.ptr->nr : -1); 191 nlattr_add_u32(nw, PF_ST_ANCHOR, s->anchor.ptr ? s->anchor.ptr->nr : -1); 192 nlattr_add_u32(nw, PF_ST_NAT_RULE, s->nat_rule.ptr ? s->nat_rule.ptr->nr : -1); 193 194 nlattr_add_u64(nw, PF_ST_PACKETS0, s->packets[0]); 195 nlattr_add_u64(nw, PF_ST_PACKETS1, s->packets[1]); 196 nlattr_add_u64(nw, PF_ST_BYTES0, s->bytes[0]); 197 nlattr_add_u64(nw, PF_ST_BYTES1, s->bytes[1]); 198 nlattr_add_u32(nw, PF_ST_RTABLEID, s->act.rtableid); 199 nlattr_add_u8(nw, PF_ST_MIN_TTL, s->act.min_ttl); 200 nlattr_add_u16(nw, PF_ST_MAX_MSS, s->act.max_mss); 201 nlattr_add_u16(nw, PF_ST_DNPIPE, s->act.dnpipe); 202 nlattr_add_u16(nw, PF_ST_DNRPIPE, s->act.dnrpipe); 203 nlattr_add_u8(nw, PF_ST_RT, s->rt); 204 if (s->rt_kif != NULL) 205 nlattr_add_string(nw, PF_ST_RT_IFNAME, s->rt_kif->pfik_name); 206 207 if (!dump_state_peer(nw, PF_ST_PEER_SRC, &s->src)) 208 goto enomem; 209 if (!dump_state_peer(nw, PF_ST_PEER_DST, &s->dst)) 210 goto enomem; 211 212 if (nlmsg_end(nw)) 213 return (0); 214 215 enomem: 216 error = ENOMEM; 217 nlmsg_abort(nw); 218 return (error); 219 } 220 221 static int 222 handle_dumpstates(struct nlpcb *nlp, struct nl_parsed_state *attrs, 223 struct nlmsghdr *hdr, struct nl_pstate *npt) 224 { 225 int error = 0; 226 227 hdr->nlmsg_flags |= NLM_F_MULTI; 228 229 for (int i = 0; i <= pf_hashmask; i++) { 230 struct pf_idhash *ih = &V_pf_idhash[i]; 231 struct pf_kstate *s; 232 233 if (LIST_EMPTY(&ih->states)) 234 continue; 235 236 PF_HASHROW_LOCK(ih); 237 LIST_FOREACH(s, &ih->states, entry) { 238 sa_family_t af = s->key[PF_SK_WIRE]->af; 239 240 if (s->timeout == PFTM_UNLINKED) 241 continue; 242 243 /* Filter */ 244 if (attrs->creatorid != 0 && s->creatorid != attrs->creatorid) 245 continue; 246 if (attrs->ifname[0] != 0 && 247 strncmp(attrs->ifname, s->kif->pfik_name, IFNAMSIZ) != 0) 248 continue; 249 if (attrs->proto != 0 && s->key[PF_SK_WIRE]->proto != attrs->proto) 250 continue; 251 if (attrs->af != 0 && af != attrs->af) 252 continue; 253 if (pf_match_addr(1, &s->key[PF_SK_WIRE]->addr[0], 254 &attrs->mask, &attrs->addr, af) && 255 pf_match_addr(1, &s->key[PF_SK_WIRE]->addr[1], 256 &attrs->mask, &attrs->addr, af) && 257 pf_match_addr(1, &s->key[PF_SK_STACK]->addr[0], 258 &attrs->mask, &attrs->addr, af) && 259 pf_match_addr(1, &s->key[PF_SK_STACK]->addr[1], 260 &attrs->mask, &attrs->addr, af)) 261 continue; 262 263 error = dump_state(nlp, hdr, s, npt); 264 if (error != 0) 265 break; 266 } 267 PF_HASHROW_UNLOCK(ih); 268 } 269 270 if (!nlmsg_end_dump(npt->nw, error, hdr)) { 271 NL_LOG(LOG_DEBUG, "Unable to finalize the dump"); 272 return (ENOMEM); 273 } 274 275 return (error); 276 } 277 278 static int 279 handle_getstate(struct nlpcb *nlp, struct nl_parsed_state *attrs, 280 struct nlmsghdr *hdr, struct nl_pstate *npt) 281 { 282 struct pf_kstate *s = pf_find_state_byid(attrs->id, attrs->creatorid); 283 if (s == NULL) 284 return (ENOENT); 285 return (dump_state(nlp, hdr, s, npt)); 286 } 287 288 static int 289 dump_creatorid(struct nlpcb *nlp, const struct nlmsghdr *hdr, uint32_t creator, 290 struct nl_pstate *npt) 291 { 292 struct nl_writer *nw = npt->nw; 293 294 if (!nlmsg_reply(nw, hdr, sizeof(struct genlmsghdr))) 295 goto enomem; 296 297 struct genlmsghdr *ghdr_new = nlmsg_reserve_object(nw, struct genlmsghdr); 298 ghdr_new->cmd = PFNL_CMD_GETCREATORS; 299 ghdr_new->version = 0; 300 ghdr_new->reserved = 0; 301 302 nlattr_add_u32(nw, PF_ST_CREATORID, htonl(creator)); 303 304 if (nlmsg_end(nw)) 305 return (0); 306 307 enomem: 308 nlmsg_abort(nw); 309 return (ENOMEM); 310 } 311 312 static int 313 pf_handle_getstates(struct nlmsghdr *hdr, struct nl_pstate *npt) 314 { 315 int error; 316 317 struct nl_parsed_state attrs = {}; 318 error = nl_parse_nlmsg(hdr, &state_parser, npt, &attrs); 319 if (error != 0) 320 return (error); 321 322 if (attrs.id != 0) 323 error = handle_getstate(npt->nlp, &attrs, hdr, npt); 324 else 325 error = handle_dumpstates(npt->nlp, &attrs, hdr, npt); 326 327 return (error); 328 } 329 330 static int 331 pf_handle_getcreators(struct nlmsghdr *hdr, struct nl_pstate *npt) 332 { 333 uint32_t creators[16]; 334 int error = 0; 335 336 bzero(creators, sizeof(creators)); 337 338 for (int i = 0; i < pf_hashmask; i++) { 339 struct pf_idhash *ih = &V_pf_idhash[i]; 340 struct pf_kstate *s; 341 342 if (LIST_EMPTY(&ih->states)) 343 continue; 344 345 PF_HASHROW_LOCK(ih); 346 LIST_FOREACH(s, &ih->states, entry) { 347 int j; 348 if (s->timeout == PFTM_UNLINKED) 349 continue; 350 351 for (j = 0; j < nitems(creators); j++) { 352 if (creators[j] == s->creatorid) 353 break; 354 if (creators[j] == 0) { 355 creators[j] = s->creatorid; 356 break; 357 } 358 } 359 if (j == nitems(creators)) 360 printf("Warning: too many creators!\n"); 361 } 362 PF_HASHROW_UNLOCK(ih); 363 } 364 365 hdr->nlmsg_flags |= NLM_F_MULTI; 366 for (int i = 0; i < nitems(creators); i++) { 367 if (creators[i] == 0) 368 break; 369 error = dump_creatorid(npt->nlp, hdr, creators[i], npt); 370 } 371 372 if (!nlmsg_end_dump(npt->nw, error, hdr)) { 373 NL_LOG(LOG_DEBUG, "Unable to finalize the dump"); 374 return (ENOMEM); 375 } 376 377 return (error); 378 } 379 380 static int 381 pf_handle_start(struct nlmsghdr *hdr __unused, struct nl_pstate *npt __unused) 382 { 383 return (pf_start()); 384 } 385 386 static int 387 pf_handle_stop(struct nlmsghdr *hdr __unused, struct nl_pstate *npt __unused) 388 { 389 return (pf_stop()); 390 } 391 392 #define _OUT(_field) offsetof(struct pf_addr_wrap, _field) 393 static const struct nlattr_parser nla_p_addr_wrap[] = { 394 { .type = PF_AT_ADDR, .off = _OUT(v.a.addr), .cb = nlattr_get_in6_addr }, 395 { .type = PF_AT_MASK, .off = _OUT(v.a.mask), .cb = nlattr_get_in6_addr }, 396 { .type = PF_AT_IFNAME, .off = _OUT(v.ifname), .arg = (void *)IFNAMSIZ,.cb = nlattr_get_chara }, 397 { .type = PF_AT_TABLENAME, .off = _OUT(v.tblname), .arg = (void *)PF_TABLE_NAME_SIZE, .cb = nlattr_get_chara }, 398 { .type = PF_AT_TYPE, .off = _OUT(type), .cb = nlattr_get_uint8 }, 399 { .type = PF_AT_IFLAGS, .off = _OUT(iflags), .cb = nlattr_get_uint8 }, 400 }; 401 NL_DECLARE_ATTR_PARSER(addr_wrap_parser, nla_p_addr_wrap); 402 #undef _OUT 403 404 static bool 405 nlattr_add_addr_wrap(struct nl_writer *nw, int attrtype, struct pf_addr_wrap *a) 406 { 407 int off = nlattr_add_nested(nw, attrtype); 408 int num; 409 410 nlattr_add_in6_addr(nw, PF_AT_ADDR, &a->v.a.addr.v6); 411 nlattr_add_in6_addr(nw, PF_AT_MASK, &a->v.a.mask.v6); 412 nlattr_add_u8(nw, PF_AT_TYPE, a->type); 413 nlattr_add_u8(nw, PF_AT_IFLAGS, a->iflags); 414 415 if (a->type == PF_ADDR_DYNIFTL) { 416 nlattr_add_string(nw, PF_AT_IFNAME, a->v.ifname); 417 num = 0; 418 if (a->p.dyn != NULL) 419 num = a->p.dyn->pfid_acnt4 + a->p.dyn->pfid_acnt6; 420 nlattr_add_u32(nw, PF_AT_DYNCNT, num); 421 } else if (a->type == PF_ADDR_TABLE) { 422 struct pfr_ktable *kt; 423 424 nlattr_add_string(nw, PF_AT_TABLENAME, a->v.tblname); 425 num = -1; 426 kt = a->p.tbl; 427 if ((kt->pfrkt_flags & PFR_TFLAG_ACTIVE) && 428 kt->pfrkt_root != NULL) 429 kt = kt->pfrkt_root; 430 if (kt->pfrkt_flags & PFR_TFLAG_ACTIVE) 431 num = kt->pfrkt_cnt; 432 nlattr_add_u32(nw, PF_AT_TBLCNT, num); 433 } 434 435 nlattr_set_len(nw, off); 436 437 return (true); 438 } 439 440 #define _OUT(_field) offsetof(struct pf_rule_addr, _field) 441 static const struct nlattr_parser nla_p_ruleaddr[] = { 442 { .type = PF_RAT_ADDR, .off = _OUT(addr), .arg = &addr_wrap_parser, .cb = nlattr_get_nested }, 443 { .type = PF_RAT_SRC_PORT, .off = _OUT(port[0]), .cb = nlattr_get_uint16 }, 444 { .type = PF_RAT_DST_PORT, .off = _OUT(port[1]), .cb = nlattr_get_uint16 }, 445 { .type = PF_RAT_NEG, .off = _OUT(neg), .cb = nlattr_get_uint8 }, 446 { .type = PF_RAT_OP, .off = _OUT(port_op), .cb = nlattr_get_uint8 }, 447 }; 448 NL_DECLARE_ATTR_PARSER(rule_addr_parser, nla_p_ruleaddr); 449 #undef _OUT 450 451 static bool 452 nlattr_add_rule_addr(struct nl_writer *nw, int attrtype, struct pf_rule_addr *r) 453 { 454 int off = nlattr_add_nested(nw, attrtype); 455 456 nlattr_add_addr_wrap(nw, PF_RAT_ADDR, &r->addr); 457 nlattr_add_u16(nw, PF_RAT_SRC_PORT, r->port[0]); 458 nlattr_add_u16(nw, PF_RAT_DST_PORT, r->port[1]); 459 nlattr_add_u8(nw, PF_RAT_NEG, r->neg); 460 nlattr_add_u8(nw, PF_RAT_OP, r->port_op); 461 462 nlattr_set_len(nw, off); 463 464 return (true); 465 } 466 467 #define _OUT(_field) offsetof(struct pf_mape_portset, _field) 468 static const struct nlattr_parser nla_p_mape_portset[] = { 469 { .type = PF_MET_OFFSET, .off = _OUT(offset), .cb = nlattr_get_uint8 }, 470 { .type = PF_MET_PSID_LEN, .off = _OUT(psidlen), .cb = nlattr_get_uint8 }, 471 {. type = PF_MET_PSID, .off = _OUT(psid), .cb = nlattr_get_uint16 }, 472 }; 473 NL_DECLARE_ATTR_PARSER(mape_portset_parser, nla_p_mape_portset); 474 #undef _OUT 475 476 static bool 477 nlattr_add_mape_portset(struct nl_writer *nw, int attrtype, const struct pf_mape_portset *m) 478 { 479 int off = nlattr_add_nested(nw, attrtype); 480 481 nlattr_add_u8(nw, PF_MET_OFFSET, m->offset); 482 nlattr_add_u8(nw, PF_MET_PSID_LEN, m->psidlen); 483 nlattr_add_u16(nw, PF_MET_PSID, m->psid); 484 485 nlattr_set_len(nw, off); 486 487 return (true); 488 } 489 490 struct nl_parsed_labels 491 { 492 char labels[PF_RULE_MAX_LABEL_COUNT][PF_RULE_LABEL_SIZE]; 493 uint32_t i; 494 }; 495 496 static int 497 nlattr_get_pf_rule_labels(struct nlattr *nla, struct nl_pstate *npt, 498 const void *arg, void *target) 499 { 500 struct nl_parsed_labels *l = (struct nl_parsed_labels *)target; 501 int ret; 502 503 if (l->i >= PF_RULE_MAX_LABEL_COUNT) 504 return (E2BIG); 505 506 ret = nlattr_get_chara(nla, npt, (void *)PF_RULE_LABEL_SIZE, 507 l->labels[l->i]); 508 if (ret == 0) 509 l->i++; 510 511 return (ret); 512 } 513 514 #define _OUT(_field) offsetof(struct nl_parsed_labels, _field) 515 static const struct nlattr_parser nla_p_labels[] = { 516 { .type = PF_LT_LABEL, .off = 0, .cb = nlattr_get_pf_rule_labels }, 517 }; 518 NL_DECLARE_ATTR_PARSER(rule_labels_parser, nla_p_labels); 519 #undef _OUT 520 521 static int 522 nlattr_get_nested_pf_rule_labels(struct nlattr *nla, struct nl_pstate *npt, const void *arg, void *target) 523 { 524 struct nl_parsed_labels parsed_labels = { }; 525 int error; 526 527 /* Assumes target points to the beginning of the structure */ 528 error = nl_parse_header(NLA_DATA(nla), NLA_DATA_LEN(nla), &rule_labels_parser, npt, &parsed_labels); 529 if (error != 0) 530 return (error); 531 532 memcpy(target, parsed_labels.labels, sizeof(parsed_labels)); 533 534 return (0); 535 } 536 537 static bool 538 nlattr_add_labels(struct nl_writer *nw, int attrtype, const struct pf_krule *r) 539 { 540 int off = nlattr_add_nested(nw, attrtype); 541 int i = 0; 542 543 while (r->label[i][0] != 0 544 && i < PF_RULE_MAX_LABEL_COUNT) { 545 nlattr_add_string(nw, PF_LT_LABEL, r->label[i]); 546 i++; 547 } 548 549 nlattr_set_len(nw, off); 550 551 return (true); 552 } 553 554 #define _OUT(_field) offsetof(struct pf_kpool, _field) 555 static const struct nlattr_parser nla_p_pool[] = { 556 { .type = PF_PT_KEY, .off = _OUT(key), .arg = (void *)sizeof(struct pf_poolhashkey), .cb = nlattr_get_bytes }, 557 { .type = PF_PT_COUNTER, .off = _OUT(counter), .cb = nlattr_get_in6_addr }, 558 { .type = PF_PT_TBLIDX, .off = _OUT(tblidx), .cb = nlattr_get_uint32 }, 559 { .type = PF_PT_PROXY_SRC_PORT, .off = _OUT(proxy_port[0]), .cb = nlattr_get_uint16 }, 560 { .type = PF_PT_PROXY_DST_PORT, .off = _OUT(proxy_port[1]), .cb = nlattr_get_uint16 }, 561 { .type = PF_PT_OPTS, .off = _OUT(opts), .cb = nlattr_get_uint8 }, 562 { .type = PF_PT_MAPE, .off = _OUT(mape), .arg = &mape_portset_parser, .cb = nlattr_get_nested }, 563 }; 564 NL_DECLARE_ATTR_PARSER(pool_parser, nla_p_pool); 565 #undef _OUT 566 567 static bool 568 nlattr_add_pool(struct nl_writer *nw, int attrtype, const struct pf_kpool *pool) 569 { 570 int off = nlattr_add_nested(nw, attrtype); 571 572 nlattr_add(nw, PF_PT_KEY, sizeof(struct pf_poolhashkey), &pool->key); 573 nlattr_add_in6_addr(nw, PF_PT_COUNTER, (const struct in6_addr *)&pool->counter); 574 nlattr_add_u32(nw, PF_PT_TBLIDX, pool->tblidx); 575 nlattr_add_u16(nw, PF_PT_PROXY_SRC_PORT, pool->proxy_port[0]); 576 nlattr_add_u16(nw, PF_PT_PROXY_DST_PORT, pool->proxy_port[1]); 577 nlattr_add_u8(nw, PF_PT_OPTS, pool->opts); 578 nlattr_add_mape_portset(nw, PF_PT_MAPE, &pool->mape); 579 580 nlattr_set_len(nw, off); 581 582 return (true); 583 } 584 585 #define _OUT(_field) offsetof(struct pf_rule_uid, _field) 586 static const struct nlattr_parser nla_p_rule_uid[] = { 587 { .type = PF_RUT_UID_LOW, .off = _OUT(uid[0]), .cb = nlattr_get_uint32 }, 588 { .type = PF_RUT_UID_HIGH, .off = _OUT(uid[1]), .cb = nlattr_get_uint32 }, 589 { .type = PF_RUT_OP, .off = _OUT(op), .cb = nlattr_get_uint8 }, 590 }; 591 NL_DECLARE_ATTR_PARSER(rule_uid_parser, nla_p_rule_uid); 592 #undef _OUT 593 594 static bool 595 nlattr_add_rule_uid(struct nl_writer *nw, int attrtype, const struct pf_rule_uid *u) 596 { 597 int off = nlattr_add_nested(nw, attrtype); 598 599 nlattr_add_u32(nw, PF_RUT_UID_LOW, u->uid[0]); 600 nlattr_add_u32(nw, PF_RUT_UID_HIGH, u->uid[1]); 601 nlattr_add_u8(nw, PF_RUT_OP, u->op); 602 603 nlattr_set_len(nw, off); 604 605 return (true); 606 } 607 608 struct nl_parsed_timeouts 609 { 610 uint32_t timeouts[PFTM_MAX]; 611 uint32_t i; 612 }; 613 614 static int 615 nlattr_get_pf_timeout(struct nlattr *nla, struct nl_pstate *npt, 616 const void *arg, void *target) 617 { 618 struct nl_parsed_timeouts *t = (struct nl_parsed_timeouts *)target; 619 int ret; 620 621 if (t->i >= PFTM_MAX) 622 return (E2BIG); 623 624 ret = nlattr_get_uint32(nla, npt, NULL, &t->timeouts[t->i]); 625 if (ret == 0) 626 t->i++; 627 628 return (ret); 629 } 630 631 #define _OUT(_field) offsetof(struct nl_parsed_timeout, _field) 632 static const struct nlattr_parser nla_p_timeouts[] = { 633 { .type = PF_TT_TIMEOUT, .off = 0, .cb = nlattr_get_pf_timeout }, 634 }; 635 NL_DECLARE_ATTR_PARSER(timeout_parser, nla_p_timeouts); 636 #undef _OUT 637 638 static int 639 nlattr_get_nested_timeouts(struct nlattr *nla, struct nl_pstate *npt, const void *arg, void *target) 640 { 641 struct nl_parsed_timeouts parsed_timeouts = { }; 642 int error; 643 644 /* Assumes target points to the beginning of the structure */ 645 error = nl_parse_header(NLA_DATA(nla), NLA_DATA_LEN(nla), &timeout_parser, npt, &parsed_timeouts); 646 if (error != 0) 647 return (error); 648 649 memcpy(target, parsed_timeouts.timeouts, sizeof(parsed_timeouts.timeouts)); 650 651 return (0); 652 } 653 654 static bool 655 nlattr_add_timeout(struct nl_writer *nw, int attrtype, uint32_t *timeout) 656 { 657 int off = nlattr_add_nested(nw, attrtype); 658 659 for (int i = 0; i < PFTM_MAX; i++) 660 nlattr_add_u32(nw, PF_RT_TIMEOUT, timeout[i]); 661 662 nlattr_set_len(nw, off); 663 664 return (true); 665 } 666 667 #define _OUT(_field) offsetof(struct pf_krule, _field) 668 static const struct nlattr_parser nla_p_rule[] = { 669 { .type = PF_RT_SRC, .off = _OUT(src), .arg = &rule_addr_parser,.cb = nlattr_get_nested }, 670 { .type = PF_RT_DST, .off = _OUT(dst), .arg = &rule_addr_parser,.cb = nlattr_get_nested }, 671 { .type = PF_RT_RIDENTIFIER, .off = _OUT(ridentifier), .cb = nlattr_get_uint32 }, 672 { .type = PF_RT_LABELS, .off = _OUT(label), .arg = &rule_labels_parser,.cb = nlattr_get_nested_pf_rule_labels }, 673 { .type = PF_RT_IFNAME, .off = _OUT(ifname), .arg = (void *)IFNAMSIZ, .cb = nlattr_get_chara }, 674 { .type = PF_RT_QNAME, .off = _OUT(qname), .arg = (void *)PF_QNAME_SIZE, .cb = nlattr_get_chara }, 675 { .type = PF_RT_PQNAME, .off = _OUT(pqname), .arg = (void *)PF_QNAME_SIZE, .cb = nlattr_get_chara }, 676 { .type = PF_RT_TAGNAME, .off = _OUT(tagname), .arg = (void *)PF_TAG_NAME_SIZE, .cb = nlattr_get_chara }, 677 { .type = PF_RT_MATCH_TAGNAME, .off = _OUT(match_tagname), .arg = (void *)PF_TAG_NAME_SIZE, .cb = nlattr_get_chara }, 678 { .type = PF_RT_OVERLOAD_TBLNAME, .off = _OUT(overload_tblname), .arg = (void *)PF_TABLE_NAME_SIZE, .cb = nlattr_get_chara }, 679 { .type = PF_RT_RPOOL, .off = _OUT(rpool), .arg = &pool_parser, .cb = nlattr_get_nested }, 680 { .type = PF_RT_OS_FINGERPRINT, .off = _OUT(os_fingerprint), .cb = nlattr_get_uint32 }, 681 { .type = PF_RT_RTABLEID, .off = _OUT(rtableid), .cb = nlattr_get_uint32 }, 682 { .type = PF_RT_TIMEOUT, .off = _OUT(timeout), .arg = &timeout_parser, .cb = nlattr_get_nested_timeouts }, 683 { .type = PF_RT_MAX_STATES, .off = _OUT(max_states), .cb = nlattr_get_uint32 }, 684 { .type = PF_RT_MAX_SRC_NODES, .off = _OUT(max_src_nodes), .cb = nlattr_get_uint32 }, 685 { .type = PF_RT_MAX_SRC_STATES, .off = _OUT(max_src_states), .cb = nlattr_get_uint32 }, 686 { .type = PF_RT_MAX_SRC_CONN_RATE_LIMIT, .off = _OUT(max_src_conn_rate.limit), .cb = nlattr_get_uint32 }, 687 { .type = PF_RT_MAX_SRC_CONN_RATE_SECS, .off = _OUT(max_src_conn_rate.seconds), .cb = nlattr_get_uint32 }, 688 { .type = PF_RT_DNPIPE, .off = _OUT(dnpipe), .cb = nlattr_get_uint16 }, 689 { .type = PF_RT_DNRPIPE, .off = _OUT(dnrpipe), .cb = nlattr_get_uint16 }, 690 { .type = PF_RT_DNFLAGS, .off = _OUT(free_flags), .cb = nlattr_get_uint32 }, 691 { .type = PF_RT_NR, .off = _OUT(nr), .cb = nlattr_get_uint32 }, 692 { .type = PF_RT_PROB, .off = _OUT(prob), .cb = nlattr_get_uint32 }, 693 { .type = PF_RT_CUID, .off = _OUT(cuid), .cb = nlattr_get_uint32 }, 694 {. type = PF_RT_CPID, .off = _OUT(cpid), .cb = nlattr_get_uint32 }, 695 { .type = PF_RT_RETURN_ICMP, .off = _OUT(return_icmp), .cb = nlattr_get_uint16 }, 696 { .type = PF_RT_RETURN_ICMP6, .off = _OUT(return_icmp6), .cb = nlattr_get_uint16 }, 697 { .type = PF_RT_MAX_MSS, .off = _OUT(max_mss), .cb = nlattr_get_uint16 }, 698 { .type = PF_RT_SCRUB_FLAGS, .off = _OUT(scrub_flags), .cb = nlattr_get_uint16 }, 699 { .type = PF_RT_UID, .off = _OUT(uid), .arg = &rule_uid_parser, .cb = nlattr_get_nested }, 700 { .type = PF_RT_GID, .off = _OUT(gid), .arg = &rule_uid_parser, .cb = nlattr_get_nested }, 701 { .type = PF_RT_RULE_FLAG, .off = _OUT(rule_flag), .cb = nlattr_get_uint32 }, 702 { .type = PF_RT_ACTION, .off = _OUT(action), .cb = nlattr_get_uint8 }, 703 { .type = PF_RT_DIRECTION, .off = _OUT(direction), .cb = nlattr_get_uint8 }, 704 { .type = PF_RT_LOG, .off = _OUT(log), .cb = nlattr_get_uint8 }, 705 { .type = PF_RT_LOGIF, .off = _OUT(logif), .cb = nlattr_get_uint8 }, 706 { .type = PF_RT_QUICK, .off = _OUT(quick), .cb = nlattr_get_uint8 }, 707 { .type = PF_RT_IF_NOT, .off = _OUT(ifnot), .cb = nlattr_get_uint8 }, 708 { .type = PF_RT_MATCH_TAG_NOT, .off = _OUT(match_tag_not), .cb = nlattr_get_uint8 }, 709 { .type = PF_RT_NATPASS, .off = _OUT(natpass), .cb = nlattr_get_uint8 }, 710 { .type = PF_RT_KEEP_STATE, .off = _OUT(keep_state), .cb = nlattr_get_uint8 }, 711 { .type = PF_RT_AF, .off = _OUT(af), .cb = nlattr_get_uint8 }, 712 { .type = PF_RT_PROTO, .off = _OUT(proto), .cb = nlattr_get_uint8 }, 713 { .type = PF_RT_TYPE, .off = _OUT(type), .cb = nlattr_get_uint8 }, 714 { .type = PF_RT_CODE, .off = _OUT(code), .cb = nlattr_get_uint8 }, 715 { .type = PF_RT_FLAGS, .off = _OUT(flags), .cb = nlattr_get_uint8 }, 716 { .type = PF_RT_FLAGSET, .off = _OUT(flagset), .cb = nlattr_get_uint8 }, 717 { .type = PF_RT_MIN_TTL, .off = _OUT(min_ttl), .cb = nlattr_get_uint8 }, 718 { .type = PF_RT_ALLOW_OPTS, .off = _OUT(allow_opts), .cb = nlattr_get_uint8 }, 719 { .type = PF_RT_RT, .off = _OUT(rt), .cb = nlattr_get_uint8 }, 720 { .type = PF_RT_RETURN_TTL, .off = _OUT(return_ttl), .cb = nlattr_get_uint8 }, 721 { .type = PF_RT_TOS, .off = _OUT(tos), .cb = nlattr_get_uint8 }, 722 { .type = PF_RT_SET_TOS, .off = _OUT(set_tos), .cb = nlattr_get_uint8 }, 723 { .type = PF_RT_ANCHOR_RELATIVE, .off = _OUT(anchor_relative), .cb = nlattr_get_uint8 }, 724 { .type = PF_RT_ANCHOR_WILDCARD, .off = _OUT(anchor_wildcard), .cb = nlattr_get_uint8 }, 725 { .type = PF_RT_FLUSH, .off = _OUT(flush), .cb = nlattr_get_uint8 }, 726 { .type = PF_RT_PRIO, .off = _OUT(prio), .cb = nlattr_get_uint8 }, 727 { .type = PF_RT_SET_PRIO, .off = _OUT(set_prio[0]), .cb = nlattr_get_uint8 }, 728 { .type = PF_RT_SET_PRIO_REPLY, .off = _OUT(set_prio[1]), .cb = nlattr_get_uint8 }, 729 { .type = PF_RT_DIVERT_ADDRESS, .off = _OUT(divert.addr), .cb = nlattr_get_in6_addr }, 730 { .type = PF_RT_DIVERT_PORT, .off = _OUT(divert.port), .cb = nlattr_get_uint16 }, 731 }; 732 NL_DECLARE_ATTR_PARSER(rule_parser, nla_p_rule); 733 #undef _OUT 734 struct nl_parsed_addrule { 735 struct pf_krule *rule; 736 uint32_t ticket; 737 uint32_t pool_ticket; 738 char *anchor; 739 char *anchor_call; 740 }; 741 #define _IN(_field) offsetof(struct genlmsghdr, _field) 742 #define _OUT(_field) offsetof(struct nl_parsed_addrule, _field) 743 static const struct nlattr_parser nla_p_addrule[] = { 744 { .type = PF_ART_TICKET, .off = _OUT(ticket), .cb = nlattr_get_uint32 }, 745 { .type = PF_ART_POOL_TICKET, .off = _OUT(pool_ticket), .cb = nlattr_get_uint32 }, 746 { .type = PF_ART_ANCHOR, .off = _OUT(anchor), .cb = nlattr_get_string }, 747 { .type = PF_ART_ANCHOR_CALL, .off = _OUT(anchor_call), .cb = nlattr_get_string }, 748 { .type = PF_ART_RULE, .off = _OUT(rule), .arg = &rule_parser, .cb = nlattr_get_nested_ptr } 749 }; 750 static const struct nlfield_parser nlf_p_addrule[] = { 751 }; 752 #undef _IN 753 #undef _OUT 754 NL_DECLARE_PARSER(addrule_parser, struct genlmsghdr, nlf_p_addrule, nla_p_addrule); 755 756 static int 757 pf_handle_addrule(struct nlmsghdr *hdr, struct nl_pstate *npt) 758 { 759 int error; 760 struct nl_parsed_addrule attrs = {}; 761 762 attrs.rule = pf_krule_alloc(); 763 764 error = nl_parse_nlmsg(hdr, &addrule_parser, npt, &attrs); 765 if (error != 0) { 766 pf_free_rule(attrs.rule); 767 return (error); 768 } 769 770 error = pf_ioctl_addrule(attrs.rule, attrs.ticket, attrs.pool_ticket, 771 attrs.anchor, attrs.anchor_call, nlp_get_cred(npt->nlp)->cr_uid, 772 hdr->nlmsg_pid); 773 774 return (error); 775 } 776 777 #define _IN(_field) offsetof(struct genlmsghdr, _field) 778 #define _OUT(_field) offsetof(struct pfioc_rule, _field) 779 static const struct nlattr_parser nla_p_getrules[] = { 780 { .type = PF_GR_ANCHOR, .off = _OUT(anchor), .arg = (void *)MAXPATHLEN, .cb = nlattr_get_chara }, 781 { .type = PF_GR_ACTION, .off = _OUT(rule.action), .cb = nlattr_get_uint8 }, 782 }; 783 static const struct nlfield_parser nlf_p_getrules[] = { 784 }; 785 #undef _OUT 786 NL_DECLARE_PARSER(getrules_parser, struct genlmsghdr, nlf_p_getrules, nla_p_getrules); 787 788 static int 789 pf_handle_getrules(struct nlmsghdr *hdr, struct nl_pstate *npt) 790 { 791 struct pfioc_rule attrs = {}; 792 int error; 793 struct nl_writer *nw = npt->nw; 794 struct genlmsghdr *ghdr_new; 795 796 error = nl_parse_nlmsg(hdr, &getrules_parser, npt, &attrs); 797 if (error != 0) 798 return (error); 799 800 if (!nlmsg_reply(nw, hdr, sizeof(struct genlmsghdr))) 801 return (ENOMEM); 802 803 ghdr_new = nlmsg_reserve_object(nw, struct genlmsghdr); 804 ghdr_new->cmd = PFNL_CMD_GETRULES; 805 ghdr_new->version = 0; 806 ghdr_new->reserved = 0; 807 808 error = pf_ioctl_getrules(&attrs); 809 if (error != 0) 810 goto out; 811 812 nlattr_add_u32(nw, PF_GR_NR, attrs.nr); 813 nlattr_add_u32(nw, PF_GR_TICKET, attrs.ticket); 814 815 if (!nlmsg_end(nw)) { 816 error = ENOMEM; 817 goto out; 818 } 819 820 return (0); 821 822 out: 823 nlmsg_abort(nw); 824 return (error); 825 } 826 827 struct nl_parsed_get_rule { 828 char anchor[MAXPATHLEN]; 829 uint8_t action; 830 uint32_t nr; 831 uint32_t ticket; 832 uint8_t clear; 833 }; 834 #define _IN(_field) offsetof(struct genlmsghdr, _field) 835 #define _OUT(_field) offsetof(struct nl_parsed_get_rule, _field) 836 static const struct nlattr_parser nla_p_getrule[] = { 837 { .type = PF_GR_ANCHOR, .off = _OUT(anchor), .arg = (void *)MAXPATHLEN, .cb = nlattr_get_chara }, 838 { .type = PF_GR_ACTION, .off = _OUT(action), .cb = nlattr_get_uint8 }, 839 { .type = PF_GR_NR, .off = _OUT(nr), .cb = nlattr_get_uint32 }, 840 { .type = PF_GR_TICKET, .off = _OUT(ticket), .cb = nlattr_get_uint32 }, 841 { .type = PF_GR_CLEAR, .off = _OUT(clear), .cb = nlattr_get_uint8 }, 842 }; 843 static const struct nlfield_parser nlf_p_getrule[] = { 844 }; 845 NL_DECLARE_PARSER(getrule_parser, struct genlmsghdr, nlf_p_getrule, nla_p_getrule); 846 847 static int 848 pf_handle_getrule(struct nlmsghdr *hdr, struct nl_pstate *npt) 849 { 850 char anchor_call[MAXPATHLEN]; 851 struct nl_parsed_get_rule attrs = {}; 852 struct nl_writer *nw = npt->nw; 853 struct genlmsghdr *ghdr_new; 854 struct pf_kruleset *ruleset; 855 struct pf_krule *rule; 856 int rs_num; 857 int error; 858 859 error = nl_parse_nlmsg(hdr, &getrule_parser, npt, &attrs); 860 if (error != 0) 861 return (error); 862 863 if (!nlmsg_reply(nw, hdr, sizeof(struct genlmsghdr))) 864 return (ENOMEM); 865 866 ghdr_new = nlmsg_reserve_object(nw, struct genlmsghdr); 867 ghdr_new->cmd = PFNL_CMD_GETRULE; 868 ghdr_new->version = 0; 869 ghdr_new->reserved = 0; 870 871 PF_RULES_WLOCK(); 872 ruleset = pf_find_kruleset(attrs.anchor); 873 if (ruleset == NULL) { 874 PF_RULES_WUNLOCK(); 875 error = ENOENT; 876 goto out; 877 } 878 879 rs_num = pf_get_ruleset_number(attrs.action); 880 if (rs_num >= PF_RULESET_MAX) { 881 PF_RULES_WUNLOCK(); 882 error = EINVAL; 883 goto out; 884 } 885 886 if (attrs.ticket != ruleset->rules[rs_num].active.ticket) { 887 PF_RULES_WUNLOCK(); 888 error = EBUSY; 889 goto out; 890 } 891 892 rule = TAILQ_FIRST(ruleset->rules[rs_num].active.ptr); 893 while ((rule != NULL) && (rule->nr != attrs.nr)) 894 rule = TAILQ_NEXT(rule, entries); 895 if (rule == NULL) { 896 PF_RULES_WUNLOCK(); 897 error = EBUSY; 898 goto out; 899 } 900 901 nlattr_add_rule_addr(nw, PF_RT_SRC, &rule->src); 902 nlattr_add_rule_addr(nw, PF_RT_DST, &rule->dst); 903 nlattr_add_u32(nw, PF_RT_RIDENTIFIER, rule->ridentifier); 904 nlattr_add_labels(nw, PF_RT_LABELS, rule); 905 nlattr_add_string(nw, PF_RT_IFNAME, rule->ifname); 906 nlattr_add_string(nw, PF_RT_QNAME, rule->qname); 907 nlattr_add_string(nw, PF_RT_PQNAME, rule->pqname); 908 nlattr_add_string(nw, PF_RT_TAGNAME, rule->tagname); 909 nlattr_add_string(nw, PF_RT_MATCH_TAGNAME, rule->match_tagname); 910 nlattr_add_string(nw, PF_RT_OVERLOAD_TBLNAME, rule->overload_tblname); 911 nlattr_add_pool(nw, PF_RT_RPOOL, &rule->rpool); 912 nlattr_add_u32(nw, PF_RT_OS_FINGERPRINT, rule->os_fingerprint); 913 nlattr_add_u32(nw, PF_RT_RTABLEID, rule->rtableid); 914 nlattr_add_timeout(nw, PF_RT_TIMEOUT, rule->timeout); 915 nlattr_add_u32(nw, PF_RT_MAX_STATES, rule->max_states); 916 nlattr_add_u32(nw, PF_RT_MAX_SRC_NODES, rule->max_src_nodes); 917 nlattr_add_u32(nw, PF_RT_MAX_SRC_STATES, rule->max_src_states); 918 nlattr_add_u32(nw, PF_RT_MAX_SRC_CONN_RATE_LIMIT, rule->max_src_conn_rate.limit); 919 nlattr_add_u32(nw, PF_RT_MAX_SRC_CONN_RATE_SECS, rule->max_src_conn_rate.seconds); 920 921 nlattr_add_u16(nw, PF_RT_DNPIPE, rule->dnpipe); 922 nlattr_add_u16(nw, PF_RT_DNRPIPE, rule->dnrpipe); 923 nlattr_add_u32(nw, PF_RT_DNFLAGS, rule->free_flags); 924 925 nlattr_add_u32(nw, PF_RT_NR, rule->nr); 926 nlattr_add_u32(nw, PF_RT_PROB, rule->prob); 927 nlattr_add_u32(nw, PF_RT_CUID, rule->cuid); 928 nlattr_add_u32(nw, PF_RT_CPID, rule->cpid); 929 930 nlattr_add_u16(nw, PF_RT_RETURN_ICMP, rule->return_icmp); 931 nlattr_add_u16(nw, PF_RT_RETURN_ICMP6, rule->return_icmp6); 932 nlattr_add_u16(nw, PF_RT_RETURN_ICMP6, rule->return_icmp6); 933 nlattr_add_u16(nw, PF_RT_MAX_MSS, rule->max_mss); 934 nlattr_add_u16(nw, PF_RT_SCRUB_FLAGS, rule->scrub_flags); 935 936 nlattr_add_rule_uid(nw, PF_RT_UID, &rule->uid); 937 nlattr_add_rule_uid(nw, PF_RT_GID, (const struct pf_rule_uid *)&rule->gid); 938 939 nlattr_add_u32(nw, PF_RT_RULE_FLAG, rule->rule_flag); 940 nlattr_add_u8(nw, PF_RT_ACTION, rule->action); 941 nlattr_add_u8(nw, PF_RT_DIRECTION, rule->direction); 942 nlattr_add_u8(nw, PF_RT_LOG, rule->log); 943 nlattr_add_u8(nw, PF_RT_LOGIF, rule->logif); 944 nlattr_add_u8(nw, PF_RT_QUICK, rule->quick); 945 nlattr_add_u8(nw, PF_RT_IF_NOT, rule->ifnot); 946 nlattr_add_u8(nw, PF_RT_MATCH_TAG_NOT, rule->match_tag_not); 947 nlattr_add_u8(nw, PF_RT_NATPASS, rule->natpass); 948 nlattr_add_u8(nw, PF_RT_KEEP_STATE, rule->keep_state); 949 950 nlattr_add_u8(nw, PF_RT_AF, rule->af); 951 nlattr_add_u8(nw, PF_RT_PROTO, rule->proto); 952 nlattr_add_u8(nw, PF_RT_TYPE, rule->type); 953 nlattr_add_u8(nw, PF_RT_CODE, rule->code); 954 nlattr_add_u8(nw, PF_RT_FLAGS, rule->flags); 955 nlattr_add_u8(nw, PF_RT_FLAGSET, rule->flagset); 956 nlattr_add_u8(nw, PF_RT_MIN_TTL, rule->min_ttl); 957 nlattr_add_u8(nw, PF_RT_ALLOW_OPTS, rule->allow_opts); 958 nlattr_add_u8(nw, PF_RT_RT, rule->rt); 959 nlattr_add_u8(nw, PF_RT_RETURN_TTL, rule->return_ttl); 960 nlattr_add_u8(nw, PF_RT_TOS, rule->tos); 961 nlattr_add_u8(nw, PF_RT_SET_TOS, rule->set_tos); 962 nlattr_add_u8(nw, PF_RT_ANCHOR_RELATIVE, rule->anchor_relative); 963 nlattr_add_u8(nw, PF_RT_ANCHOR_WILDCARD, rule->anchor_wildcard); 964 nlattr_add_u8(nw, PF_RT_FLUSH, rule->flush); 965 nlattr_add_u8(nw, PF_RT_PRIO, rule->prio); 966 nlattr_add_u8(nw, PF_RT_SET_PRIO, rule->set_prio[0]); 967 nlattr_add_u8(nw, PF_RT_SET_PRIO_REPLY, rule->set_prio[1]); 968 969 nlattr_add_in6_addr(nw, PF_RT_DIVERT_ADDRESS, &rule->divert.addr.v6); 970 nlattr_add_u16(nw, PF_RT_DIVERT_PORT, rule->divert.port); 971 972 nlattr_add_u64(nw, PF_RT_PACKETS_IN, pf_counter_u64_fetch(&rule->packets[0])); 973 nlattr_add_u64(nw, PF_RT_PACKETS_OUT, pf_counter_u64_fetch(&rule->packets[1])); 974 nlattr_add_u64(nw, PF_RT_BYTES_IN, pf_counter_u64_fetch(&rule->bytes[0])); 975 nlattr_add_u64(nw, PF_RT_BYTES_OUT, pf_counter_u64_fetch(&rule->bytes[1])); 976 nlattr_add_u64(nw, PF_RT_EVALUATIONS, pf_counter_u64_fetch(&rule->evaluations)); 977 nlattr_add_u64(nw, PF_RT_TIMESTAMP, pf_get_timestamp(rule)); 978 nlattr_add_u64(nw, PF_RT_STATES_CUR, counter_u64_fetch(rule->states_cur)); 979 nlattr_add_u64(nw, PF_RT_STATES_TOTAL, counter_u64_fetch(rule->states_tot)); 980 nlattr_add_u64(nw, PF_RT_SRC_NODES, counter_u64_fetch(rule->src_nodes)); 981 982 error = pf_kanchor_copyout(ruleset, rule, anchor_call); 983 MPASS(error == 0); 984 985 nlattr_add_string(nw, PF_RT_ANCHOR_CALL, anchor_call); 986 987 if (attrs.clear) 988 pf_krule_clear_counters(rule); 989 990 PF_RULES_WUNLOCK(); 991 992 if (!nlmsg_end(nw)) { 993 error = ENOMEM; 994 goto out; 995 } 996 997 return (0); 998 out: 999 nlmsg_abort(nw); 1000 return (error); 1001 } 1002 1003 static const struct nlhdr_parser *all_parsers[] = { 1004 &state_parser, 1005 &addrule_parser, 1006 &getrules_parser 1007 }; 1008 1009 static int family_id; 1010 1011 static const struct genl_cmd pf_cmds[] = { 1012 { 1013 .cmd_num = PFNL_CMD_GETSTATES, 1014 .cmd_name = "GETSTATES", 1015 .cmd_cb = pf_handle_getstates, 1016 .cmd_flags = GENL_CMD_CAP_DO | GENL_CMD_CAP_DUMP | GENL_CMD_CAP_HASPOL, 1017 .cmd_priv = PRIV_NETINET_PF, 1018 }, 1019 { 1020 .cmd_num = PFNL_CMD_GETCREATORS, 1021 .cmd_name = "GETCREATORS", 1022 .cmd_cb = pf_handle_getcreators, 1023 .cmd_flags = GENL_CMD_CAP_DO | GENL_CMD_CAP_DUMP | GENL_CMD_CAP_HASPOL, 1024 .cmd_priv = PRIV_NETINET_PF, 1025 }, 1026 { 1027 .cmd_num = PFNL_CMD_START, 1028 .cmd_name = "START", 1029 .cmd_cb = pf_handle_start, 1030 .cmd_flags = GENL_CMD_CAP_DO | GENL_CMD_CAP_HASPOL, 1031 .cmd_priv = PRIV_NETINET_PF, 1032 }, 1033 { 1034 .cmd_num = PFNL_CMD_STOP, 1035 .cmd_name = "STOP", 1036 .cmd_cb = pf_handle_stop, 1037 .cmd_flags = GENL_CMD_CAP_DO | GENL_CMD_CAP_HASPOL, 1038 .cmd_priv = PRIV_NETINET_PF, 1039 }, 1040 { 1041 .cmd_num = PFNL_CMD_ADDRULE, 1042 .cmd_name = "ADDRULE", 1043 .cmd_cb = pf_handle_addrule, 1044 .cmd_flags = GENL_CMD_CAP_DO | GENL_CMD_CAP_DUMP | GENL_CMD_CAP_HASPOL, 1045 .cmd_priv = PRIV_NETINET_PF, 1046 }, 1047 { 1048 .cmd_num = PFNL_CMD_GETRULES, 1049 .cmd_name = "GETRULES", 1050 .cmd_cb = pf_handle_getrules, 1051 .cmd_flags = GENL_CMD_CAP_DUMP | GENL_CMD_CAP_HASPOL, 1052 .cmd_priv = PRIV_NETINET_PF, 1053 }, 1054 { 1055 .cmd_num = PFNL_CMD_GETRULE, 1056 .cmd_name = "GETRULE", 1057 .cmd_cb = pf_handle_getrule, 1058 .cmd_flags = GENL_CMD_CAP_DUMP | GENL_CMD_CAP_HASPOL, 1059 .cmd_priv = PRIV_NETINET_PF, 1060 }, 1061 }; 1062 1063 void 1064 pf_nl_register(void) 1065 { 1066 NL_VERIFY_PARSERS(all_parsers); 1067 1068 family_id = genl_register_family(PFNL_FAMILY_NAME, 0, 2, PFNL_CMD_MAX); 1069 genl_register_cmds(PFNL_FAMILY_NAME, pf_cmds, NL_ARRAY_LEN(pf_cmds)); 1070 } 1071 1072 void 1073 pf_nl_unregister(void) 1074 { 1075 genl_unregister_family(PFNL_FAMILY_NAME); 1076 } 1077