1 /*- 2 * SPDX-License-Identifier: (BSD-2-Clause-FreeBSD AND ISC) 3 * 4 * Copyright (c) 2002 Michael Shalayeff 5 * Copyright (c) 2012 Gleb Smirnoff <glebius@FreeBSD.org> 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT, 21 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 23 * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 26 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 27 * THE POSSIBILITY OF SUCH DAMAGE. 28 */ 29 30 /*- 31 * Copyright (c) 2009 David Gwynne <dlg@openbsd.org> 32 * 33 * Permission to use, copy, modify, and distribute this software for any 34 * purpose with or without fee is hereby granted, provided that the above 35 * copyright notice and this permission notice appear in all copies. 36 * 37 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 38 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 39 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 40 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 41 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 42 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 43 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 44 */ 45 46 /* 47 * $OpenBSD: if_pfsync.c,v 1.110 2009/02/24 05:39:19 dlg Exp $ 48 * 49 * Revisions picked from OpenBSD after revision 1.110 import: 50 * 1.119 - don't m_copydata() beyond the len of mbuf in pfsync_input() 51 * 1.118, 1.124, 1.148, 1.149, 1.151, 1.171 - fixes to bulk updates 52 * 1.120, 1.175 - use monotonic time_uptime 53 * 1.122 - reduce number of updates for non-TCP sessions 54 * 1.125, 1.127 - rewrite merge or stale processing 55 * 1.128 - cleanups 56 * 1.146 - bzero() mbuf before sparsely filling it with data 57 * 1.170 - SIOCSIFMTU checks 58 * 1.126, 1.142 - deferred packets processing 59 * 1.173 - correct expire time processing 60 */ 61 62 #include <sys/cdefs.h> 63 __FBSDID("$FreeBSD$"); 64 65 #include "opt_inet.h" 66 #include "opt_inet6.h" 67 #include "opt_pf.h" 68 69 #include <sys/param.h> 70 #include <sys/bus.h> 71 #include <sys/endian.h> 72 #include <sys/interrupt.h> 73 #include <sys/kernel.h> 74 #include <sys/lock.h> 75 #include <sys/mbuf.h> 76 #include <sys/module.h> 77 #include <sys/mutex.h> 78 #include <sys/nv.h> 79 #include <sys/priv.h> 80 #include <sys/smp.h> 81 #include <sys/socket.h> 82 #include <sys/sockio.h> 83 #include <sys/sysctl.h> 84 #include <sys/syslog.h> 85 86 #include <net/bpf.h> 87 #include <net/if.h> 88 #include <net/if_var.h> 89 #include <net/if_clone.h> 90 #include <net/if_private.h> 91 #include <net/if_types.h> 92 #include <net/vnet.h> 93 #include <net/pfvar.h> 94 #include <net/if_pfsync.h> 95 96 #include <netinet/if_ether.h> 97 #include <netinet/in.h> 98 #include <netinet/in_var.h> 99 #include <netinet/ip.h> 100 #include <netinet/ip_carp.h> 101 #include <netinet/ip_var.h> 102 #include <netinet/tcp.h> 103 #include <netinet/tcp_fsm.h> 104 #include <netinet/tcp_seq.h> 105 106 #include <netinet/ip6.h> 107 #include <netinet6/ip6_var.h> 108 109 #include <netpfil/pf/pfsync_nv.h> 110 111 struct pfsync_bucket; 112 struct pfsync_softc; 113 114 union inet_template { 115 struct ip ipv4; 116 }; 117 118 #define PFSYNC_MINPKT ( \ 119 sizeof(union inet_template) + \ 120 sizeof(struct pfsync_header) + \ 121 sizeof(struct pfsync_subheader) ) 122 123 static int pfsync_upd_tcp(struct pf_kstate *, struct pfsync_state_peer *, 124 struct pfsync_state_peer *); 125 static int pfsync_in_clr(struct mbuf *, int, int, int); 126 static int pfsync_in_ins(struct mbuf *, int, int, int); 127 static int pfsync_in_iack(struct mbuf *, int, int, int); 128 static int pfsync_in_upd(struct mbuf *, int, int, int); 129 static int pfsync_in_upd_c(struct mbuf *, int, int, int); 130 static int pfsync_in_ureq(struct mbuf *, int, int, int); 131 static int pfsync_in_del(struct mbuf *, int, int, int); 132 static int pfsync_in_del_c(struct mbuf *, int, int, int); 133 static int pfsync_in_bus(struct mbuf *, int, int, int); 134 static int pfsync_in_tdb(struct mbuf *, int, int, int); 135 static int pfsync_in_eof(struct mbuf *, int, int, int); 136 static int pfsync_in_error(struct mbuf *, int, int, int); 137 138 static int (*pfsync_acts[])(struct mbuf *, int, int, int) = { 139 pfsync_in_clr, /* PFSYNC_ACT_CLR */ 140 pfsync_in_ins, /* PFSYNC_ACT_INS */ 141 pfsync_in_iack, /* PFSYNC_ACT_INS_ACK */ 142 pfsync_in_upd, /* PFSYNC_ACT_UPD */ 143 pfsync_in_upd_c, /* PFSYNC_ACT_UPD_C */ 144 pfsync_in_ureq, /* PFSYNC_ACT_UPD_REQ */ 145 pfsync_in_del, /* PFSYNC_ACT_DEL */ 146 pfsync_in_del_c, /* PFSYNC_ACT_DEL_C */ 147 pfsync_in_error, /* PFSYNC_ACT_INS_F */ 148 pfsync_in_error, /* PFSYNC_ACT_DEL_F */ 149 pfsync_in_bus, /* PFSYNC_ACT_BUS */ 150 pfsync_in_tdb, /* PFSYNC_ACT_TDB */ 151 pfsync_in_eof /* PFSYNC_ACT_EOF */ 152 }; 153 154 struct pfsync_q { 155 void (*write)(struct pf_kstate *, void *); 156 size_t len; 157 u_int8_t action; 158 }; 159 160 /* we have one of these for every PFSYNC_S_ */ 161 static void pfsync_out_state(struct pf_kstate *, void *); 162 static void pfsync_out_iack(struct pf_kstate *, void *); 163 static void pfsync_out_upd_c(struct pf_kstate *, void *); 164 static void pfsync_out_del(struct pf_kstate *, void *); 165 166 static struct pfsync_q pfsync_qs[] = { 167 { pfsync_out_state, sizeof(struct pfsync_state), PFSYNC_ACT_INS }, 168 { pfsync_out_iack, sizeof(struct pfsync_ins_ack), PFSYNC_ACT_INS_ACK }, 169 { pfsync_out_state, sizeof(struct pfsync_state), PFSYNC_ACT_UPD }, 170 { pfsync_out_upd_c, sizeof(struct pfsync_upd_c), PFSYNC_ACT_UPD_C }, 171 { pfsync_out_del, sizeof(struct pfsync_del_c), PFSYNC_ACT_DEL_C } 172 }; 173 174 static void pfsync_q_ins(struct pf_kstate *, int, bool); 175 static void pfsync_q_del(struct pf_kstate *, bool, struct pfsync_bucket *); 176 177 static void pfsync_update_state(struct pf_kstate *); 178 static void pfsync_tx(struct pfsync_softc *, struct mbuf *); 179 180 struct pfsync_upd_req_item { 181 TAILQ_ENTRY(pfsync_upd_req_item) ur_entry; 182 struct pfsync_upd_req ur_msg; 183 }; 184 185 struct pfsync_deferral { 186 struct pfsync_softc *pd_sc; 187 TAILQ_ENTRY(pfsync_deferral) pd_entry; 188 struct callout pd_tmo; 189 190 struct pf_kstate *pd_st; 191 struct mbuf *pd_m; 192 }; 193 194 struct pfsync_bucket 195 { 196 int b_id; 197 struct pfsync_softc *b_sc; 198 struct mtx b_mtx; 199 struct callout b_tmo; 200 int b_flags; 201 #define PFSYNCF_BUCKET_PUSH 0x00000001 202 203 size_t b_len; 204 TAILQ_HEAD(, pf_kstate) b_qs[PFSYNC_S_COUNT]; 205 TAILQ_HEAD(, pfsync_upd_req_item) b_upd_req_list; 206 TAILQ_HEAD(, pfsync_deferral) b_deferrals; 207 u_int b_deferred; 208 void *b_plus; 209 size_t b_pluslen; 210 211 struct ifaltq b_snd; 212 }; 213 214 struct pfsync_softc { 215 /* Configuration */ 216 struct ifnet *sc_ifp; 217 struct ifnet *sc_sync_if; 218 struct ip_moptions sc_imo; 219 struct sockaddr_storage sc_sync_peer; 220 uint32_t sc_flags; 221 uint8_t sc_maxupdates; 222 union inet_template sc_template; 223 struct mtx sc_mtx; 224 225 /* Queued data */ 226 struct pfsync_bucket *sc_buckets; 227 228 /* Bulk update info */ 229 struct mtx sc_bulk_mtx; 230 uint32_t sc_ureq_sent; 231 int sc_bulk_tries; 232 uint32_t sc_ureq_received; 233 int sc_bulk_hashid; 234 uint64_t sc_bulk_stateid; 235 uint32_t sc_bulk_creatorid; 236 struct callout sc_bulk_tmo; 237 struct callout sc_bulkfail_tmo; 238 }; 239 240 #define PFSYNC_LOCK(sc) mtx_lock(&(sc)->sc_mtx) 241 #define PFSYNC_UNLOCK(sc) mtx_unlock(&(sc)->sc_mtx) 242 #define PFSYNC_LOCK_ASSERT(sc) mtx_assert(&(sc)->sc_mtx, MA_OWNED) 243 244 #define PFSYNC_BUCKET_LOCK(b) mtx_lock(&(b)->b_mtx) 245 #define PFSYNC_BUCKET_UNLOCK(b) mtx_unlock(&(b)->b_mtx) 246 #define PFSYNC_BUCKET_LOCK_ASSERT(b) mtx_assert(&(b)->b_mtx, MA_OWNED) 247 248 #define PFSYNC_BLOCK(sc) mtx_lock(&(sc)->sc_bulk_mtx) 249 #define PFSYNC_BUNLOCK(sc) mtx_unlock(&(sc)->sc_bulk_mtx) 250 #define PFSYNC_BLOCK_ASSERT(sc) mtx_assert(&(sc)->sc_bulk_mtx, MA_OWNED) 251 252 static const char pfsyncname[] = "pfsync"; 253 static MALLOC_DEFINE(M_PFSYNC, pfsyncname, "pfsync(4) data"); 254 VNET_DEFINE_STATIC(struct pfsync_softc *, pfsyncif) = NULL; 255 #define V_pfsyncif VNET(pfsyncif) 256 VNET_DEFINE_STATIC(void *, pfsync_swi_cookie) = NULL; 257 #define V_pfsync_swi_cookie VNET(pfsync_swi_cookie) 258 VNET_DEFINE_STATIC(struct intr_event *, pfsync_swi_ie); 259 #define V_pfsync_swi_ie VNET(pfsync_swi_ie) 260 VNET_DEFINE_STATIC(struct pfsyncstats, pfsyncstats); 261 #define V_pfsyncstats VNET(pfsyncstats) 262 VNET_DEFINE_STATIC(int, pfsync_carp_adj) = CARP_MAXSKEW; 263 #define V_pfsync_carp_adj VNET(pfsync_carp_adj) 264 265 static void pfsync_timeout(void *); 266 static void pfsync_push(struct pfsync_bucket *); 267 static void pfsync_push_all(struct pfsync_softc *); 268 static void pfsyncintr(void *); 269 static int pfsync_multicast_setup(struct pfsync_softc *, struct ifnet *, 270 struct in_mfilter *imf); 271 static void pfsync_multicast_cleanup(struct pfsync_softc *); 272 static void pfsync_pointers_init(void); 273 static void pfsync_pointers_uninit(void); 274 static int pfsync_init(void); 275 static void pfsync_uninit(void); 276 277 static unsigned long pfsync_buckets; 278 279 SYSCTL_NODE(_net, OID_AUTO, pfsync, CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 280 "PFSYNC"); 281 SYSCTL_STRUCT(_net_pfsync, OID_AUTO, stats, CTLFLAG_VNET | CTLFLAG_RW, 282 &VNET_NAME(pfsyncstats), pfsyncstats, 283 "PFSYNC statistics (struct pfsyncstats, net/if_pfsync.h)"); 284 SYSCTL_INT(_net_pfsync, OID_AUTO, carp_demotion_factor, CTLFLAG_VNET | CTLFLAG_RW, 285 &VNET_NAME(pfsync_carp_adj), 0, "pfsync's CARP demotion factor adjustment"); 286 SYSCTL_ULONG(_net_pfsync, OID_AUTO, pfsync_buckets, CTLFLAG_RDTUN, 287 &pfsync_buckets, 0, "Number of pfsync hash buckets"); 288 289 static int pfsync_clone_create(struct if_clone *, int, caddr_t); 290 static void pfsync_clone_destroy(struct ifnet *); 291 static int pfsync_alloc_scrub_memory(struct pfsync_state_peer *, 292 struct pf_state_peer *); 293 static int pfsyncoutput(struct ifnet *, struct mbuf *, 294 const struct sockaddr *, struct route *); 295 static int pfsyncioctl(struct ifnet *, u_long, caddr_t); 296 297 static int pfsync_defer(struct pf_kstate *, struct mbuf *); 298 static void pfsync_undefer(struct pfsync_deferral *, int); 299 static void pfsync_undefer_state_locked(struct pf_kstate *, int); 300 static void pfsync_undefer_state(struct pf_kstate *, int); 301 static void pfsync_defer_tmo(void *); 302 303 static void pfsync_request_update(u_int32_t, u_int64_t); 304 static bool pfsync_update_state_req(struct pf_kstate *); 305 306 static void pfsync_drop(struct pfsync_softc *); 307 static void pfsync_sendout(int, int); 308 static void pfsync_send_plus(void *, size_t); 309 310 static void pfsync_bulk_start(void); 311 static void pfsync_bulk_status(u_int8_t); 312 static void pfsync_bulk_update(void *); 313 static void pfsync_bulk_fail(void *); 314 315 static void pfsync_detach_ifnet(struct ifnet *); 316 317 static int pfsync_pfsyncreq_to_kstatus(struct pfsyncreq *, 318 struct pfsync_kstatus *); 319 static int pfsync_kstatus_to_softc(struct pfsync_kstatus *, 320 struct pfsync_softc *); 321 322 #ifdef IPSEC 323 static void pfsync_update_net_tdb(struct pfsync_tdb *); 324 #endif 325 static struct pfsync_bucket *pfsync_get_bucket(struct pfsync_softc *, 326 struct pf_kstate *); 327 328 #define PFSYNC_MAX_BULKTRIES 12 329 #define PFSYNC_DEFER_TIMEOUT ((20 * hz) / 1000) 330 331 VNET_DEFINE(struct if_clone *, pfsync_cloner); 332 #define V_pfsync_cloner VNET(pfsync_cloner) 333 334 static int 335 pfsync_clone_create(struct if_clone *ifc, int unit, caddr_t param) 336 { 337 struct pfsync_softc *sc; 338 struct ifnet *ifp; 339 struct pfsync_bucket *b; 340 int c, q; 341 342 if (unit != 0) 343 return (EINVAL); 344 345 if (! pfsync_buckets) 346 pfsync_buckets = mp_ncpus * 2; 347 348 sc = malloc(sizeof(struct pfsync_softc), M_PFSYNC, M_WAITOK | M_ZERO); 349 sc->sc_flags |= PFSYNCF_OK; 350 sc->sc_maxupdates = 128; 351 352 ifp = sc->sc_ifp = if_alloc(IFT_PFSYNC); 353 if (ifp == NULL) { 354 free(sc, M_PFSYNC); 355 return (ENOSPC); 356 } 357 if_initname(ifp, pfsyncname, unit); 358 ifp->if_softc = sc; 359 ifp->if_ioctl = pfsyncioctl; 360 ifp->if_output = pfsyncoutput; 361 ifp->if_type = IFT_PFSYNC; 362 ifp->if_hdrlen = sizeof(struct pfsync_header); 363 ifp->if_mtu = ETHERMTU; 364 mtx_init(&sc->sc_mtx, pfsyncname, NULL, MTX_DEF); 365 mtx_init(&sc->sc_bulk_mtx, "pfsync bulk", NULL, MTX_DEF); 366 callout_init_mtx(&sc->sc_bulk_tmo, &sc->sc_bulk_mtx, 0); 367 callout_init_mtx(&sc->sc_bulkfail_tmo, &sc->sc_bulk_mtx, 0); 368 369 if_attach(ifp); 370 371 bpfattach(ifp, DLT_PFSYNC, PFSYNC_HDRLEN); 372 373 sc->sc_buckets = mallocarray(pfsync_buckets, sizeof(*sc->sc_buckets), 374 M_PFSYNC, M_ZERO | M_WAITOK); 375 for (c = 0; c < pfsync_buckets; c++) { 376 b = &sc->sc_buckets[c]; 377 mtx_init(&b->b_mtx, "pfsync bucket", NULL, MTX_DEF); 378 379 b->b_id = c; 380 b->b_sc = sc; 381 b->b_len = PFSYNC_MINPKT; 382 383 for (q = 0; q < PFSYNC_S_COUNT; q++) 384 TAILQ_INIT(&b->b_qs[q]); 385 386 TAILQ_INIT(&b->b_upd_req_list); 387 TAILQ_INIT(&b->b_deferrals); 388 389 callout_init(&b->b_tmo, 1); 390 391 b->b_snd.ifq_maxlen = ifqmaxlen; 392 } 393 394 V_pfsyncif = sc; 395 396 return (0); 397 } 398 399 static void 400 pfsync_clone_destroy(struct ifnet *ifp) 401 { 402 struct pfsync_softc *sc = ifp->if_softc; 403 struct pfsync_bucket *b; 404 int c, ret; 405 406 for (c = 0; c < pfsync_buckets; c++) { 407 b = &sc->sc_buckets[c]; 408 /* 409 * At this stage, everything should have already been 410 * cleared by pfsync_uninit(), and we have only to 411 * drain callouts. 412 */ 413 PFSYNC_BUCKET_LOCK(b); 414 while (b->b_deferred > 0) { 415 struct pfsync_deferral *pd = 416 TAILQ_FIRST(&b->b_deferrals); 417 418 ret = callout_stop(&pd->pd_tmo); 419 PFSYNC_BUCKET_UNLOCK(b); 420 if (ret > 0) { 421 pfsync_undefer(pd, 1); 422 } else { 423 callout_drain(&pd->pd_tmo); 424 } 425 PFSYNC_BUCKET_LOCK(b); 426 } 427 MPASS(b->b_deferred == 0); 428 MPASS(TAILQ_EMPTY(&b->b_deferrals)); 429 PFSYNC_BUCKET_UNLOCK(b); 430 431 callout_drain(&b->b_tmo); 432 } 433 434 callout_drain(&sc->sc_bulkfail_tmo); 435 callout_drain(&sc->sc_bulk_tmo); 436 437 if (!(sc->sc_flags & PFSYNCF_OK) && carp_demote_adj_p) 438 (*carp_demote_adj_p)(-V_pfsync_carp_adj, "pfsync destroy"); 439 bpfdetach(ifp); 440 if_detach(ifp); 441 442 pfsync_drop(sc); 443 444 if_free(ifp); 445 pfsync_multicast_cleanup(sc); 446 mtx_destroy(&sc->sc_mtx); 447 mtx_destroy(&sc->sc_bulk_mtx); 448 449 free(sc->sc_buckets, M_PFSYNC); 450 free(sc, M_PFSYNC); 451 452 V_pfsyncif = NULL; 453 } 454 455 static int 456 pfsync_alloc_scrub_memory(struct pfsync_state_peer *s, 457 struct pf_state_peer *d) 458 { 459 if (s->scrub.scrub_flag && d->scrub == NULL) { 460 d->scrub = uma_zalloc(V_pf_state_scrub_z, M_NOWAIT | M_ZERO); 461 if (d->scrub == NULL) 462 return (ENOMEM); 463 } 464 465 return (0); 466 } 467 468 static int 469 pfsync_state_import(struct pfsync_state *sp, int flags) 470 { 471 struct pfsync_softc *sc = V_pfsyncif; 472 #ifndef __NO_STRICT_ALIGNMENT 473 struct pfsync_state_key key[2]; 474 #endif 475 struct pfsync_state_key *kw, *ks; 476 struct pf_kstate *st = NULL; 477 struct pf_state_key *skw = NULL, *sks = NULL; 478 struct pf_krule *r = NULL; 479 struct pfi_kkif *kif; 480 int error; 481 482 PF_RULES_RASSERT(); 483 484 if (sp->creatorid == 0) { 485 if (V_pf_status.debug >= PF_DEBUG_MISC) 486 printf("%s: invalid creator id: %08x\n", __func__, 487 ntohl(sp->creatorid)); 488 return (EINVAL); 489 } 490 491 if ((kif = pfi_kkif_find(sp->ifname)) == NULL) { 492 if (V_pf_status.debug >= PF_DEBUG_MISC) 493 printf("%s: unknown interface: %s\n", __func__, 494 sp->ifname); 495 if (flags & PFSYNC_SI_IOCTL) 496 return (EINVAL); 497 return (0); /* skip this state */ 498 } 499 500 /* 501 * If the ruleset checksums match or the state is coming from the ioctl, 502 * it's safe to associate the state with the rule of that number. 503 */ 504 if (sp->rule != htonl(-1) && sp->anchor == htonl(-1) && 505 (flags & (PFSYNC_SI_IOCTL | PFSYNC_SI_CKSUM)) && ntohl(sp->rule) < 506 pf_main_ruleset.rules[PF_RULESET_FILTER].active.rcount) 507 r = pf_main_ruleset.rules[ 508 PF_RULESET_FILTER].active.ptr_array[ntohl(sp->rule)]; 509 else 510 r = &V_pf_default_rule; 511 512 if ((r->max_states && 513 counter_u64_fetch(r->states_cur) >= r->max_states)) 514 goto cleanup; 515 516 /* 517 * XXXGL: consider M_WAITOK in ioctl path after. 518 */ 519 st = pf_alloc_state(M_NOWAIT); 520 if (__predict_false(st == NULL)) 521 goto cleanup; 522 523 if ((skw = uma_zalloc(V_pf_state_key_z, M_NOWAIT)) == NULL) 524 goto cleanup; 525 526 #ifndef __NO_STRICT_ALIGNMENT 527 bcopy(&sp->key, key, sizeof(struct pfsync_state_key) * 2); 528 kw = &key[PF_SK_WIRE]; 529 ks = &key[PF_SK_STACK]; 530 #else 531 kw = &sp->key[PF_SK_WIRE]; 532 ks = &sp->key[PF_SK_STACK]; 533 #endif 534 535 if (PF_ANEQ(&kw->addr[0], &ks->addr[0], sp->af) || 536 PF_ANEQ(&kw->addr[1], &ks->addr[1], sp->af) || 537 kw->port[0] != ks->port[0] || 538 kw->port[1] != ks->port[1]) { 539 sks = uma_zalloc(V_pf_state_key_z, M_NOWAIT); 540 if (sks == NULL) 541 goto cleanup; 542 } else 543 sks = skw; 544 545 /* allocate memory for scrub info */ 546 if (pfsync_alloc_scrub_memory(&sp->src, &st->src) || 547 pfsync_alloc_scrub_memory(&sp->dst, &st->dst)) 548 goto cleanup; 549 550 /* Copy to state key(s). */ 551 skw->addr[0] = kw->addr[0]; 552 skw->addr[1] = kw->addr[1]; 553 skw->port[0] = kw->port[0]; 554 skw->port[1] = kw->port[1]; 555 skw->proto = sp->proto; 556 skw->af = sp->af; 557 if (sks != skw) { 558 sks->addr[0] = ks->addr[0]; 559 sks->addr[1] = ks->addr[1]; 560 sks->port[0] = ks->port[0]; 561 sks->port[1] = ks->port[1]; 562 sks->proto = sp->proto; 563 sks->af = sp->af; 564 } 565 566 /* copy to state */ 567 bcopy(&sp->rt_addr, &st->rt_addr, sizeof(st->rt_addr)); 568 st->creation = time_uptime - ntohl(sp->creation); 569 st->expire = time_uptime; 570 if (sp->expire) { 571 uint32_t timeout; 572 573 timeout = r->timeout[sp->timeout]; 574 if (!timeout) 575 timeout = V_pf_default_rule.timeout[sp->timeout]; 576 577 /* sp->expire may have been adaptively scaled by export. */ 578 st->expire -= timeout - ntohl(sp->expire); 579 } 580 581 st->direction = sp->direction; 582 st->log = sp->log; 583 st->timeout = sp->timeout; 584 st->state_flags = sp->state_flags; 585 586 st->id = sp->id; 587 st->creatorid = sp->creatorid; 588 pf_state_peer_ntoh(&sp->src, &st->src); 589 pf_state_peer_ntoh(&sp->dst, &st->dst); 590 591 st->rule.ptr = r; 592 st->nat_rule.ptr = NULL; 593 st->anchor.ptr = NULL; 594 st->rt_kif = NULL; 595 596 st->pfsync_time = time_uptime; 597 st->sync_state = PFSYNC_S_NONE; 598 599 if (!(flags & PFSYNC_SI_IOCTL)) 600 st->state_flags |= PFSTATE_NOSYNC; 601 602 if ((error = pf_state_insert(kif, kif, skw, sks, st)) != 0) 603 goto cleanup_state; 604 605 /* XXX when we have nat_rule/anchors, use STATE_INC_COUNTERS */ 606 counter_u64_add(r->states_cur, 1); 607 counter_u64_add(r->states_tot, 1); 608 609 if (!(flags & PFSYNC_SI_IOCTL)) { 610 st->state_flags &= ~PFSTATE_NOSYNC; 611 if (st->state_flags & PFSTATE_ACK) { 612 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 613 PFSYNC_BUCKET_LOCK(b); 614 pfsync_q_ins(st, PFSYNC_S_IACK, true); 615 PFSYNC_BUCKET_UNLOCK(b); 616 617 pfsync_push_all(sc); 618 } 619 } 620 st->state_flags &= ~PFSTATE_ACK; 621 PF_STATE_UNLOCK(st); 622 623 return (0); 624 625 cleanup: 626 error = ENOMEM; 627 if (skw == sks) 628 sks = NULL; 629 if (skw != NULL) 630 uma_zfree(V_pf_state_key_z, skw); 631 if (sks != NULL) 632 uma_zfree(V_pf_state_key_z, sks); 633 634 cleanup_state: /* pf_state_insert() frees the state keys. */ 635 if (st) { 636 st->timeout = PFTM_UNLINKED; /* appease an assert */ 637 pf_free_state(st); 638 } 639 return (error); 640 } 641 642 #ifdef INET 643 static int 644 pfsync_input(struct mbuf **mp, int *offp __unused, int proto __unused) 645 { 646 struct pfsync_softc *sc = V_pfsyncif; 647 struct mbuf *m = *mp; 648 struct ip *ip = mtod(m, struct ip *); 649 struct pfsync_header *ph; 650 struct pfsync_subheader subh; 651 652 int offset, len, flags = 0; 653 int rv; 654 uint16_t count; 655 656 PF_RULES_RLOCK_TRACKER; 657 658 *mp = NULL; 659 V_pfsyncstats.pfsyncs_ipackets++; 660 661 /* Verify that we have a sync interface configured. */ 662 if (!sc || !sc->sc_sync_if || !V_pf_status.running || 663 (sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) 664 goto done; 665 666 /* verify that the packet came in on the right interface */ 667 if (sc->sc_sync_if != m->m_pkthdr.rcvif) { 668 V_pfsyncstats.pfsyncs_badif++; 669 goto done; 670 } 671 672 if_inc_counter(sc->sc_ifp, IFCOUNTER_IPACKETS, 1); 673 if_inc_counter(sc->sc_ifp, IFCOUNTER_IBYTES, m->m_pkthdr.len); 674 /* verify that the IP TTL is 255. */ 675 if (ip->ip_ttl != PFSYNC_DFLTTL) { 676 V_pfsyncstats.pfsyncs_badttl++; 677 goto done; 678 } 679 680 offset = ip->ip_hl << 2; 681 if (m->m_pkthdr.len < offset + sizeof(*ph)) { 682 V_pfsyncstats.pfsyncs_hdrops++; 683 goto done; 684 } 685 686 if (offset + sizeof(*ph) > m->m_len) { 687 if (m_pullup(m, offset + sizeof(*ph)) == NULL) { 688 V_pfsyncstats.pfsyncs_hdrops++; 689 return (IPPROTO_DONE); 690 } 691 ip = mtod(m, struct ip *); 692 } 693 ph = (struct pfsync_header *)((char *)ip + offset); 694 695 /* verify the version */ 696 if (ph->version != PFSYNC_VERSION) { 697 V_pfsyncstats.pfsyncs_badver++; 698 goto done; 699 } 700 701 len = ntohs(ph->len) + offset; 702 if (m->m_pkthdr.len < len) { 703 V_pfsyncstats.pfsyncs_badlen++; 704 goto done; 705 } 706 707 /* 708 * Trusting pf_chksum during packet processing, as well as seeking 709 * in interface name tree, require holding PF_RULES_RLOCK(). 710 */ 711 PF_RULES_RLOCK(); 712 if (!bcmp(&ph->pfcksum, &V_pf_status.pf_chksum, PF_MD5_DIGEST_LENGTH)) 713 flags = PFSYNC_SI_CKSUM; 714 715 offset += sizeof(*ph); 716 while (offset <= len - sizeof(subh)) { 717 m_copydata(m, offset, sizeof(subh), (caddr_t)&subh); 718 offset += sizeof(subh); 719 720 if (subh.action >= PFSYNC_ACT_MAX) { 721 V_pfsyncstats.pfsyncs_badact++; 722 PF_RULES_RUNLOCK(); 723 goto done; 724 } 725 726 count = ntohs(subh.count); 727 V_pfsyncstats.pfsyncs_iacts[subh.action] += count; 728 rv = (*pfsync_acts[subh.action])(m, offset, count, flags); 729 if (rv == -1) { 730 PF_RULES_RUNLOCK(); 731 return (IPPROTO_DONE); 732 } 733 734 offset += rv; 735 } 736 PF_RULES_RUNLOCK(); 737 738 done: 739 m_freem(m); 740 return (IPPROTO_DONE); 741 } 742 #endif 743 744 static int 745 pfsync_in_clr(struct mbuf *m, int offset, int count, int flags) 746 { 747 struct pfsync_clr *clr; 748 struct mbuf *mp; 749 int len = sizeof(*clr) * count; 750 int i, offp; 751 u_int32_t creatorid; 752 753 mp = m_pulldown(m, offset, len, &offp); 754 if (mp == NULL) { 755 V_pfsyncstats.pfsyncs_badlen++; 756 return (-1); 757 } 758 clr = (struct pfsync_clr *)(mp->m_data + offp); 759 760 for (i = 0; i < count; i++) { 761 creatorid = clr[i].creatorid; 762 763 if (clr[i].ifname[0] != '\0' && 764 pfi_kkif_find(clr[i].ifname) == NULL) 765 continue; 766 767 for (int i = 0; i <= pf_hashmask; i++) { 768 struct pf_idhash *ih = &V_pf_idhash[i]; 769 struct pf_kstate *s; 770 relock: 771 PF_HASHROW_LOCK(ih); 772 LIST_FOREACH(s, &ih->states, entry) { 773 if (s->creatorid == creatorid) { 774 s->state_flags |= PFSTATE_NOSYNC; 775 pf_unlink_state(s); 776 goto relock; 777 } 778 } 779 PF_HASHROW_UNLOCK(ih); 780 } 781 } 782 783 return (len); 784 } 785 786 static int 787 pfsync_in_ins(struct mbuf *m, int offset, int count, int flags) 788 { 789 struct mbuf *mp; 790 struct pfsync_state *sa, *sp; 791 int len = sizeof(*sp) * count; 792 int i, offp; 793 794 mp = m_pulldown(m, offset, len, &offp); 795 if (mp == NULL) { 796 V_pfsyncstats.pfsyncs_badlen++; 797 return (-1); 798 } 799 sa = (struct pfsync_state *)(mp->m_data + offp); 800 801 for (i = 0; i < count; i++) { 802 sp = &sa[i]; 803 804 /* Check for invalid values. */ 805 if (sp->timeout >= PFTM_MAX || 806 sp->src.state > PF_TCPS_PROXY_DST || 807 sp->dst.state > PF_TCPS_PROXY_DST || 808 sp->direction > PF_OUT || 809 (sp->af != AF_INET && sp->af != AF_INET6)) { 810 if (V_pf_status.debug >= PF_DEBUG_MISC) 811 printf("%s: invalid value\n", __func__); 812 V_pfsyncstats.pfsyncs_badval++; 813 continue; 814 } 815 816 if (pfsync_state_import(sp, flags) == ENOMEM) 817 /* Drop out, but process the rest of the actions. */ 818 break; 819 } 820 821 return (len); 822 } 823 824 static int 825 pfsync_in_iack(struct mbuf *m, int offset, int count, int flags) 826 { 827 struct pfsync_ins_ack *ia, *iaa; 828 struct pf_kstate *st; 829 830 struct mbuf *mp; 831 int len = count * sizeof(*ia); 832 int offp, i; 833 834 mp = m_pulldown(m, offset, len, &offp); 835 if (mp == NULL) { 836 V_pfsyncstats.pfsyncs_badlen++; 837 return (-1); 838 } 839 iaa = (struct pfsync_ins_ack *)(mp->m_data + offp); 840 841 for (i = 0; i < count; i++) { 842 ia = &iaa[i]; 843 844 st = pf_find_state_byid(ia->id, ia->creatorid); 845 if (st == NULL) 846 continue; 847 848 if (st->state_flags & PFSTATE_ACK) { 849 pfsync_undefer_state(st, 0); 850 } 851 PF_STATE_UNLOCK(st); 852 } 853 /* 854 * XXX this is not yet implemented, but we know the size of the 855 * message so we can skip it. 856 */ 857 858 return (count * sizeof(struct pfsync_ins_ack)); 859 } 860 861 static int 862 pfsync_upd_tcp(struct pf_kstate *st, struct pfsync_state_peer *src, 863 struct pfsync_state_peer *dst) 864 { 865 int sync = 0; 866 867 PF_STATE_LOCK_ASSERT(st); 868 869 /* 870 * The state should never go backwards except 871 * for syn-proxy states. Neither should the 872 * sequence window slide backwards. 873 */ 874 if ((st->src.state > src->state && 875 (st->src.state < PF_TCPS_PROXY_SRC || 876 src->state >= PF_TCPS_PROXY_SRC)) || 877 878 (st->src.state == src->state && 879 SEQ_GT(st->src.seqlo, ntohl(src->seqlo)))) 880 sync++; 881 else 882 pf_state_peer_ntoh(src, &st->src); 883 884 if ((st->dst.state > dst->state) || 885 886 (st->dst.state >= TCPS_SYN_SENT && 887 SEQ_GT(st->dst.seqlo, ntohl(dst->seqlo)))) 888 sync++; 889 else 890 pf_state_peer_ntoh(dst, &st->dst); 891 892 return (sync); 893 } 894 895 static int 896 pfsync_in_upd(struct mbuf *m, int offset, int count, int flags) 897 { 898 struct pfsync_softc *sc = V_pfsyncif; 899 struct pfsync_state *sa, *sp; 900 struct pf_kstate *st; 901 int sync; 902 903 struct mbuf *mp; 904 int len = count * sizeof(*sp); 905 int offp, i; 906 907 mp = m_pulldown(m, offset, len, &offp); 908 if (mp == NULL) { 909 V_pfsyncstats.pfsyncs_badlen++; 910 return (-1); 911 } 912 sa = (struct pfsync_state *)(mp->m_data + offp); 913 914 for (i = 0; i < count; i++) { 915 sp = &sa[i]; 916 917 /* check for invalid values */ 918 if (sp->timeout >= PFTM_MAX || 919 sp->src.state > PF_TCPS_PROXY_DST || 920 sp->dst.state > PF_TCPS_PROXY_DST) { 921 if (V_pf_status.debug >= PF_DEBUG_MISC) { 922 printf("pfsync_input: PFSYNC_ACT_UPD: " 923 "invalid value\n"); 924 } 925 V_pfsyncstats.pfsyncs_badval++; 926 continue; 927 } 928 929 st = pf_find_state_byid(sp->id, sp->creatorid); 930 if (st == NULL) { 931 /* insert the update */ 932 if (pfsync_state_import(sp, flags)) 933 V_pfsyncstats.pfsyncs_badstate++; 934 continue; 935 } 936 937 if (st->state_flags & PFSTATE_ACK) { 938 pfsync_undefer_state(st, 1); 939 } 940 941 if (st->key[PF_SK_WIRE]->proto == IPPROTO_TCP) 942 sync = pfsync_upd_tcp(st, &sp->src, &sp->dst); 943 else { 944 sync = 0; 945 946 /* 947 * Non-TCP protocol state machine always go 948 * forwards 949 */ 950 if (st->src.state > sp->src.state) 951 sync++; 952 else 953 pf_state_peer_ntoh(&sp->src, &st->src); 954 if (st->dst.state > sp->dst.state) 955 sync++; 956 else 957 pf_state_peer_ntoh(&sp->dst, &st->dst); 958 } 959 if (sync < 2) { 960 pfsync_alloc_scrub_memory(&sp->dst, &st->dst); 961 pf_state_peer_ntoh(&sp->dst, &st->dst); 962 st->expire = time_uptime; 963 st->timeout = sp->timeout; 964 } 965 st->pfsync_time = time_uptime; 966 967 if (sync) { 968 V_pfsyncstats.pfsyncs_stale++; 969 970 pfsync_update_state(st); 971 PF_STATE_UNLOCK(st); 972 pfsync_push_all(sc); 973 continue; 974 } 975 PF_STATE_UNLOCK(st); 976 } 977 978 return (len); 979 } 980 981 static int 982 pfsync_in_upd_c(struct mbuf *m, int offset, int count, int flags) 983 { 984 struct pfsync_softc *sc = V_pfsyncif; 985 struct pfsync_upd_c *ua, *up; 986 struct pf_kstate *st; 987 int len = count * sizeof(*up); 988 int sync; 989 struct mbuf *mp; 990 int offp, i; 991 992 mp = m_pulldown(m, offset, len, &offp); 993 if (mp == NULL) { 994 V_pfsyncstats.pfsyncs_badlen++; 995 return (-1); 996 } 997 ua = (struct pfsync_upd_c *)(mp->m_data + offp); 998 999 for (i = 0; i < count; i++) { 1000 up = &ua[i]; 1001 1002 /* check for invalid values */ 1003 if (up->timeout >= PFTM_MAX || 1004 up->src.state > PF_TCPS_PROXY_DST || 1005 up->dst.state > PF_TCPS_PROXY_DST) { 1006 if (V_pf_status.debug >= PF_DEBUG_MISC) { 1007 printf("pfsync_input: " 1008 "PFSYNC_ACT_UPD_C: " 1009 "invalid value\n"); 1010 } 1011 V_pfsyncstats.pfsyncs_badval++; 1012 continue; 1013 } 1014 1015 st = pf_find_state_byid(up->id, up->creatorid); 1016 if (st == NULL) { 1017 /* We don't have this state. Ask for it. */ 1018 PFSYNC_BUCKET_LOCK(&sc->sc_buckets[0]); 1019 pfsync_request_update(up->creatorid, up->id); 1020 PFSYNC_BUCKET_UNLOCK(&sc->sc_buckets[0]); 1021 continue; 1022 } 1023 1024 if (st->state_flags & PFSTATE_ACK) { 1025 pfsync_undefer_state(st, 1); 1026 } 1027 1028 if (st->key[PF_SK_WIRE]->proto == IPPROTO_TCP) 1029 sync = pfsync_upd_tcp(st, &up->src, &up->dst); 1030 else { 1031 sync = 0; 1032 1033 /* 1034 * Non-TCP protocol state machine always go 1035 * forwards 1036 */ 1037 if (st->src.state > up->src.state) 1038 sync++; 1039 else 1040 pf_state_peer_ntoh(&up->src, &st->src); 1041 if (st->dst.state > up->dst.state) 1042 sync++; 1043 else 1044 pf_state_peer_ntoh(&up->dst, &st->dst); 1045 } 1046 if (sync < 2) { 1047 pfsync_alloc_scrub_memory(&up->dst, &st->dst); 1048 pf_state_peer_ntoh(&up->dst, &st->dst); 1049 st->expire = time_uptime; 1050 st->timeout = up->timeout; 1051 } 1052 st->pfsync_time = time_uptime; 1053 1054 if (sync) { 1055 V_pfsyncstats.pfsyncs_stale++; 1056 1057 pfsync_update_state(st); 1058 PF_STATE_UNLOCK(st); 1059 pfsync_push_all(sc); 1060 continue; 1061 } 1062 PF_STATE_UNLOCK(st); 1063 } 1064 1065 return (len); 1066 } 1067 1068 static int 1069 pfsync_in_ureq(struct mbuf *m, int offset, int count, int flags) 1070 { 1071 struct pfsync_upd_req *ur, *ura; 1072 struct mbuf *mp; 1073 int len = count * sizeof(*ur); 1074 int i, offp; 1075 1076 struct pf_kstate *st; 1077 1078 mp = m_pulldown(m, offset, len, &offp); 1079 if (mp == NULL) { 1080 V_pfsyncstats.pfsyncs_badlen++; 1081 return (-1); 1082 } 1083 ura = (struct pfsync_upd_req *)(mp->m_data + offp); 1084 1085 for (i = 0; i < count; i++) { 1086 ur = &ura[i]; 1087 1088 if (ur->id == 0 && ur->creatorid == 0) 1089 pfsync_bulk_start(); 1090 else { 1091 st = pf_find_state_byid(ur->id, ur->creatorid); 1092 if (st == NULL) { 1093 V_pfsyncstats.pfsyncs_badstate++; 1094 continue; 1095 } 1096 if (st->state_flags & PFSTATE_NOSYNC) { 1097 PF_STATE_UNLOCK(st); 1098 continue; 1099 } 1100 1101 pfsync_update_state_req(st); 1102 PF_STATE_UNLOCK(st); 1103 } 1104 } 1105 1106 return (len); 1107 } 1108 1109 static int 1110 pfsync_in_del(struct mbuf *m, int offset, int count, int flags) 1111 { 1112 struct mbuf *mp; 1113 struct pfsync_state *sa, *sp; 1114 struct pf_kstate *st; 1115 int len = count * sizeof(*sp); 1116 int offp, i; 1117 1118 mp = m_pulldown(m, offset, len, &offp); 1119 if (mp == NULL) { 1120 V_pfsyncstats.pfsyncs_badlen++; 1121 return (-1); 1122 } 1123 sa = (struct pfsync_state *)(mp->m_data + offp); 1124 1125 for (i = 0; i < count; i++) { 1126 sp = &sa[i]; 1127 1128 st = pf_find_state_byid(sp->id, sp->creatorid); 1129 if (st == NULL) { 1130 V_pfsyncstats.pfsyncs_badstate++; 1131 continue; 1132 } 1133 st->state_flags |= PFSTATE_NOSYNC; 1134 pf_unlink_state(st); 1135 } 1136 1137 return (len); 1138 } 1139 1140 static int 1141 pfsync_in_del_c(struct mbuf *m, int offset, int count, int flags) 1142 { 1143 struct mbuf *mp; 1144 struct pfsync_del_c *sa, *sp; 1145 struct pf_kstate *st; 1146 int len = count * sizeof(*sp); 1147 int offp, i; 1148 1149 mp = m_pulldown(m, offset, len, &offp); 1150 if (mp == NULL) { 1151 V_pfsyncstats.pfsyncs_badlen++; 1152 return (-1); 1153 } 1154 sa = (struct pfsync_del_c *)(mp->m_data + offp); 1155 1156 for (i = 0; i < count; i++) { 1157 sp = &sa[i]; 1158 1159 st = pf_find_state_byid(sp->id, sp->creatorid); 1160 if (st == NULL) { 1161 V_pfsyncstats.pfsyncs_badstate++; 1162 continue; 1163 } 1164 1165 st->state_flags |= PFSTATE_NOSYNC; 1166 pf_unlink_state(st); 1167 } 1168 1169 return (len); 1170 } 1171 1172 static int 1173 pfsync_in_bus(struct mbuf *m, int offset, int count, int flags) 1174 { 1175 struct pfsync_softc *sc = V_pfsyncif; 1176 struct pfsync_bus *bus; 1177 struct mbuf *mp; 1178 int len = count * sizeof(*bus); 1179 int offp; 1180 1181 PFSYNC_BLOCK(sc); 1182 1183 /* If we're not waiting for a bulk update, who cares. */ 1184 if (sc->sc_ureq_sent == 0) { 1185 PFSYNC_BUNLOCK(sc); 1186 return (len); 1187 } 1188 1189 mp = m_pulldown(m, offset, len, &offp); 1190 if (mp == NULL) { 1191 PFSYNC_BUNLOCK(sc); 1192 V_pfsyncstats.pfsyncs_badlen++; 1193 return (-1); 1194 } 1195 bus = (struct pfsync_bus *)(mp->m_data + offp); 1196 1197 switch (bus->status) { 1198 case PFSYNC_BUS_START: 1199 callout_reset(&sc->sc_bulkfail_tmo, 4 * hz + 1200 V_pf_limits[PF_LIMIT_STATES].limit / 1201 ((sc->sc_ifp->if_mtu - PFSYNC_MINPKT) / 1202 sizeof(struct pfsync_state)), 1203 pfsync_bulk_fail, sc); 1204 if (V_pf_status.debug >= PF_DEBUG_MISC) 1205 printf("pfsync: received bulk update start\n"); 1206 break; 1207 1208 case PFSYNC_BUS_END: 1209 if (time_uptime - ntohl(bus->endtime) >= 1210 sc->sc_ureq_sent) { 1211 /* that's it, we're happy */ 1212 sc->sc_ureq_sent = 0; 1213 sc->sc_bulk_tries = 0; 1214 callout_stop(&sc->sc_bulkfail_tmo); 1215 if (!(sc->sc_flags & PFSYNCF_OK) && carp_demote_adj_p) 1216 (*carp_demote_adj_p)(-V_pfsync_carp_adj, 1217 "pfsync bulk done"); 1218 sc->sc_flags |= PFSYNCF_OK; 1219 if (V_pf_status.debug >= PF_DEBUG_MISC) 1220 printf("pfsync: received valid " 1221 "bulk update end\n"); 1222 } else { 1223 if (V_pf_status.debug >= PF_DEBUG_MISC) 1224 printf("pfsync: received invalid " 1225 "bulk update end: bad timestamp\n"); 1226 } 1227 break; 1228 } 1229 PFSYNC_BUNLOCK(sc); 1230 1231 return (len); 1232 } 1233 1234 static int 1235 pfsync_in_tdb(struct mbuf *m, int offset, int count, int flags) 1236 { 1237 int len = count * sizeof(struct pfsync_tdb); 1238 1239 #if defined(IPSEC) 1240 struct pfsync_tdb *tp; 1241 struct mbuf *mp; 1242 int offp; 1243 int i; 1244 int s; 1245 1246 mp = m_pulldown(m, offset, len, &offp); 1247 if (mp == NULL) { 1248 V_pfsyncstats.pfsyncs_badlen++; 1249 return (-1); 1250 } 1251 tp = (struct pfsync_tdb *)(mp->m_data + offp); 1252 1253 for (i = 0; i < count; i++) 1254 pfsync_update_net_tdb(&tp[i]); 1255 #endif 1256 1257 return (len); 1258 } 1259 1260 #if defined(IPSEC) 1261 /* Update an in-kernel tdb. Silently fail if no tdb is found. */ 1262 static void 1263 pfsync_update_net_tdb(struct pfsync_tdb *pt) 1264 { 1265 struct tdb *tdb; 1266 int s; 1267 1268 /* check for invalid values */ 1269 if (ntohl(pt->spi) <= SPI_RESERVED_MAX || 1270 (pt->dst.sa.sa_family != AF_INET && 1271 pt->dst.sa.sa_family != AF_INET6)) 1272 goto bad; 1273 1274 tdb = gettdb(pt->spi, &pt->dst, pt->sproto); 1275 if (tdb) { 1276 pt->rpl = ntohl(pt->rpl); 1277 pt->cur_bytes = (unsigned long long)be64toh(pt->cur_bytes); 1278 1279 /* Neither replay nor byte counter should ever decrease. */ 1280 if (pt->rpl < tdb->tdb_rpl || 1281 pt->cur_bytes < tdb->tdb_cur_bytes) { 1282 goto bad; 1283 } 1284 1285 tdb->tdb_rpl = pt->rpl; 1286 tdb->tdb_cur_bytes = pt->cur_bytes; 1287 } 1288 return; 1289 1290 bad: 1291 if (V_pf_status.debug >= PF_DEBUG_MISC) 1292 printf("pfsync_insert: PFSYNC_ACT_TDB_UPD: " 1293 "invalid value\n"); 1294 V_pfsyncstats.pfsyncs_badstate++; 1295 return; 1296 } 1297 #endif 1298 1299 static int 1300 pfsync_in_eof(struct mbuf *m, int offset, int count, int flags) 1301 { 1302 /* check if we are at the right place in the packet */ 1303 if (offset != m->m_pkthdr.len) 1304 V_pfsyncstats.pfsyncs_badlen++; 1305 1306 /* we're done. free and let the caller return */ 1307 m_freem(m); 1308 return (-1); 1309 } 1310 1311 static int 1312 pfsync_in_error(struct mbuf *m, int offset, int count, int flags) 1313 { 1314 V_pfsyncstats.pfsyncs_badact++; 1315 1316 m_freem(m); 1317 return (-1); 1318 } 1319 1320 static int 1321 pfsyncoutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst, 1322 struct route *rt) 1323 { 1324 m_freem(m); 1325 return (0); 1326 } 1327 1328 /* ARGSUSED */ 1329 static int 1330 pfsyncioctl(struct ifnet *ifp, u_long cmd, caddr_t data) 1331 { 1332 struct pfsync_softc *sc = ifp->if_softc; 1333 struct ifreq *ifr = (struct ifreq *)data; 1334 struct pfsyncreq pfsyncr; 1335 size_t nvbuflen; 1336 int error; 1337 int c; 1338 1339 switch (cmd) { 1340 case SIOCSIFFLAGS: 1341 PFSYNC_LOCK(sc); 1342 if (ifp->if_flags & IFF_UP) { 1343 ifp->if_drv_flags |= IFF_DRV_RUNNING; 1344 PFSYNC_UNLOCK(sc); 1345 pfsync_pointers_init(); 1346 } else { 1347 ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 1348 PFSYNC_UNLOCK(sc); 1349 pfsync_pointers_uninit(); 1350 } 1351 break; 1352 case SIOCSIFMTU: 1353 if (!sc->sc_sync_if || 1354 ifr->ifr_mtu <= PFSYNC_MINPKT || 1355 ifr->ifr_mtu > sc->sc_sync_if->if_mtu) 1356 return (EINVAL); 1357 if (ifr->ifr_mtu < ifp->if_mtu) { 1358 for (c = 0; c < pfsync_buckets; c++) { 1359 PFSYNC_BUCKET_LOCK(&sc->sc_buckets[c]); 1360 if (sc->sc_buckets[c].b_len > PFSYNC_MINPKT) 1361 pfsync_sendout(1, c); 1362 PFSYNC_BUCKET_UNLOCK(&sc->sc_buckets[c]); 1363 } 1364 } 1365 ifp->if_mtu = ifr->ifr_mtu; 1366 break; 1367 case SIOCGETPFSYNC: 1368 bzero(&pfsyncr, sizeof(pfsyncr)); 1369 PFSYNC_LOCK(sc); 1370 if (sc->sc_sync_if) { 1371 strlcpy(pfsyncr.pfsyncr_syncdev, 1372 sc->sc_sync_if->if_xname, IFNAMSIZ); 1373 } 1374 pfsyncr.pfsyncr_syncpeer = ((struct sockaddr_in *)&sc->sc_sync_peer)->sin_addr; 1375 pfsyncr.pfsyncr_maxupdates = sc->sc_maxupdates; 1376 pfsyncr.pfsyncr_defer = sc->sc_flags; 1377 PFSYNC_UNLOCK(sc); 1378 return (copyout(&pfsyncr, ifr_data_get_ptr(ifr), 1379 sizeof(pfsyncr))); 1380 1381 case SIOCGETPFSYNCNV: 1382 { 1383 nvlist_t *nvl_syncpeer; 1384 nvlist_t *nvl = nvlist_create(0); 1385 1386 if (nvl == NULL) 1387 return (ENOMEM); 1388 1389 if (sc->sc_sync_if) 1390 nvlist_add_string(nvl, "syncdev", sc->sc_sync_if->if_xname); 1391 nvlist_add_number(nvl, "maxupdates", sc->sc_maxupdates); 1392 nvlist_add_number(nvl, "flags", sc->sc_flags); 1393 if ((nvl_syncpeer = pfsync_sockaddr_to_syncpeer_nvlist(&sc->sc_sync_peer)) != NULL) 1394 nvlist_add_nvlist(nvl, "syncpeer", nvl_syncpeer); 1395 1396 void *packed = NULL; 1397 packed = nvlist_pack(nvl, &nvbuflen); 1398 if (packed == NULL) { 1399 free(packed, M_NVLIST); 1400 nvlist_destroy(nvl); 1401 return (ENOMEM); 1402 } 1403 1404 if (nvbuflen > ifr->ifr_cap_nv.buf_length) { 1405 ifr->ifr_cap_nv.length = nvbuflen; 1406 ifr->ifr_cap_nv.buffer = NULL; 1407 free(packed, M_NVLIST); 1408 nvlist_destroy(nvl); 1409 return (EFBIG); 1410 } 1411 1412 ifr->ifr_cap_nv.length = nvbuflen; 1413 error = copyout(packed, ifr->ifr_cap_nv.buffer, nvbuflen); 1414 1415 nvlist_destroy(nvl); 1416 nvlist_destroy(nvl_syncpeer); 1417 free(packed, M_NVLIST); 1418 break; 1419 } 1420 1421 case SIOCSETPFSYNC: 1422 { 1423 struct pfsync_kstatus status; 1424 1425 if ((error = priv_check(curthread, PRIV_NETINET_PF)) != 0) 1426 return (error); 1427 if ((error = copyin(ifr_data_get_ptr(ifr), &pfsyncr, 1428 sizeof(pfsyncr)))) 1429 return (error); 1430 1431 memset((char *)&status, 0, sizeof(struct pfsync_kstatus)); 1432 pfsync_pfsyncreq_to_kstatus(&pfsyncr, &status); 1433 1434 error = pfsync_kstatus_to_softc(&status, sc); 1435 return (error); 1436 } 1437 case SIOCSETPFSYNCNV: 1438 { 1439 struct pfsync_kstatus status; 1440 void *data; 1441 nvlist_t *nvl; 1442 1443 if ((error = priv_check(curthread, PRIV_NETINET_PF)) != 0) 1444 return (error); 1445 if (ifr->ifr_cap_nv.length > IFR_CAP_NV_MAXBUFSIZE) 1446 return (EINVAL); 1447 1448 data = malloc(ifr->ifr_cap_nv.length, M_TEMP, M_WAITOK); 1449 1450 if ((error = copyin(ifr->ifr_cap_nv.buffer, data, 1451 ifr->ifr_cap_nv.length)) != 0) { 1452 free(data, M_TEMP); 1453 return (error); 1454 } 1455 1456 if ((nvl = nvlist_unpack(data, ifr->ifr_cap_nv.length, 0)) == NULL) { 1457 free(data, M_TEMP); 1458 return (EINVAL); 1459 } 1460 1461 memset((char *)&status, 0, sizeof(struct pfsync_kstatus)); 1462 pfsync_nvstatus_to_kstatus(nvl, &status); 1463 1464 nvlist_destroy(nvl); 1465 free(data, M_TEMP); 1466 1467 error = pfsync_kstatus_to_softc(&status, sc); 1468 return (error); 1469 } 1470 default: 1471 return (ENOTTY); 1472 } 1473 1474 return (0); 1475 } 1476 1477 static void 1478 pfsync_out_state(struct pf_kstate *st, void *buf) 1479 { 1480 struct pfsync_state *sp = buf; 1481 1482 pfsync_state_export(sp, st); 1483 } 1484 1485 static void 1486 pfsync_out_iack(struct pf_kstate *st, void *buf) 1487 { 1488 struct pfsync_ins_ack *iack = buf; 1489 1490 iack->id = st->id; 1491 iack->creatorid = st->creatorid; 1492 } 1493 1494 static void 1495 pfsync_out_upd_c(struct pf_kstate *st, void *buf) 1496 { 1497 struct pfsync_upd_c *up = buf; 1498 1499 bzero(up, sizeof(*up)); 1500 up->id = st->id; 1501 pf_state_peer_hton(&st->src, &up->src); 1502 pf_state_peer_hton(&st->dst, &up->dst); 1503 up->creatorid = st->creatorid; 1504 up->timeout = st->timeout; 1505 } 1506 1507 static void 1508 pfsync_out_del(struct pf_kstate *st, void *buf) 1509 { 1510 struct pfsync_del_c *dp = buf; 1511 1512 dp->id = st->id; 1513 dp->creatorid = st->creatorid; 1514 st->state_flags |= PFSTATE_NOSYNC; 1515 } 1516 1517 static void 1518 pfsync_drop(struct pfsync_softc *sc) 1519 { 1520 struct pf_kstate *st, *next; 1521 struct pfsync_upd_req_item *ur; 1522 struct pfsync_bucket *b; 1523 int c, q; 1524 1525 for (c = 0; c < pfsync_buckets; c++) { 1526 b = &sc->sc_buckets[c]; 1527 for (q = 0; q < PFSYNC_S_COUNT; q++) { 1528 if (TAILQ_EMPTY(&b->b_qs[q])) 1529 continue; 1530 1531 TAILQ_FOREACH_SAFE(st, &b->b_qs[q], sync_list, next) { 1532 KASSERT(st->sync_state == q, 1533 ("%s: st->sync_state == q", 1534 __func__)); 1535 st->sync_state = PFSYNC_S_NONE; 1536 pf_release_state(st); 1537 } 1538 TAILQ_INIT(&b->b_qs[q]); 1539 } 1540 1541 while ((ur = TAILQ_FIRST(&b->b_upd_req_list)) != NULL) { 1542 TAILQ_REMOVE(&b->b_upd_req_list, ur, ur_entry); 1543 free(ur, M_PFSYNC); 1544 } 1545 1546 b->b_len = PFSYNC_MINPKT; 1547 b->b_plus = NULL; 1548 } 1549 } 1550 1551 static void 1552 pfsync_sendout(int schedswi, int c) 1553 { 1554 struct pfsync_softc *sc = V_pfsyncif; 1555 struct ifnet *ifp = sc->sc_ifp; 1556 struct mbuf *m; 1557 struct pfsync_header *ph; 1558 struct pfsync_subheader *subh; 1559 struct pf_kstate *st, *st_next; 1560 struct pfsync_upd_req_item *ur; 1561 struct pfsync_bucket *b = &sc->sc_buckets[c]; 1562 int aflen, offset; 1563 int q, count = 0; 1564 1565 KASSERT(sc != NULL, ("%s: null sc", __func__)); 1566 KASSERT(b->b_len > PFSYNC_MINPKT, 1567 ("%s: sc_len %zu", __func__, b->b_len)); 1568 PFSYNC_BUCKET_LOCK_ASSERT(b); 1569 1570 if (ifp->if_bpf == NULL && sc->sc_sync_if == NULL) { 1571 pfsync_drop(sc); 1572 return; 1573 } 1574 1575 m = m_get2(max_linkhdr + b->b_len, M_NOWAIT, MT_DATA, M_PKTHDR); 1576 if (m == NULL) { 1577 if_inc_counter(sc->sc_ifp, IFCOUNTER_OERRORS, 1); 1578 V_pfsyncstats.pfsyncs_onomem++; 1579 return; 1580 } 1581 m->m_data += max_linkhdr; 1582 m->m_len = m->m_pkthdr.len = b->b_len; 1583 1584 /* build the ip header */ 1585 switch (sc->sc_sync_peer.ss_family) { 1586 #ifdef INET 1587 case AF_INET: 1588 { 1589 struct ip *ip; 1590 1591 ip = mtod(m, struct ip *); 1592 bcopy(&sc->sc_template.ipv4, ip, sizeof(*ip)); 1593 aflen = offset = sizeof(*ip); 1594 1595 ip->ip_len = htons(m->m_pkthdr.len); 1596 ip_fillid(ip); 1597 break; 1598 } 1599 #endif 1600 default: 1601 m_freem(m); 1602 return; 1603 } 1604 1605 1606 /* build the pfsync header */ 1607 ph = (struct pfsync_header *)(m->m_data + offset); 1608 bzero(ph, sizeof(*ph)); 1609 offset += sizeof(*ph); 1610 1611 ph->version = PFSYNC_VERSION; 1612 ph->len = htons(b->b_len - aflen); 1613 bcopy(V_pf_status.pf_chksum, ph->pfcksum, PF_MD5_DIGEST_LENGTH); 1614 1615 /* walk the queues */ 1616 for (q = 0; q < PFSYNC_S_COUNT; q++) { 1617 if (TAILQ_EMPTY(&b->b_qs[q])) 1618 continue; 1619 1620 subh = (struct pfsync_subheader *)(m->m_data + offset); 1621 offset += sizeof(*subh); 1622 1623 count = 0; 1624 TAILQ_FOREACH_SAFE(st, &b->b_qs[q], sync_list, st_next) { 1625 KASSERT(st->sync_state == q, 1626 ("%s: st->sync_state == q", 1627 __func__)); 1628 /* 1629 * XXXGL: some of write methods do unlocked reads 1630 * of state data :( 1631 */ 1632 pfsync_qs[q].write(st, m->m_data + offset); 1633 offset += pfsync_qs[q].len; 1634 st->sync_state = PFSYNC_S_NONE; 1635 pf_release_state(st); 1636 count++; 1637 } 1638 TAILQ_INIT(&b->b_qs[q]); 1639 1640 bzero(subh, sizeof(*subh)); 1641 subh->action = pfsync_qs[q].action; 1642 subh->count = htons(count); 1643 V_pfsyncstats.pfsyncs_oacts[pfsync_qs[q].action] += count; 1644 } 1645 1646 if (!TAILQ_EMPTY(&b->b_upd_req_list)) { 1647 subh = (struct pfsync_subheader *)(m->m_data + offset); 1648 offset += sizeof(*subh); 1649 1650 count = 0; 1651 while ((ur = TAILQ_FIRST(&b->b_upd_req_list)) != NULL) { 1652 TAILQ_REMOVE(&b->b_upd_req_list, ur, ur_entry); 1653 1654 bcopy(&ur->ur_msg, m->m_data + offset, 1655 sizeof(ur->ur_msg)); 1656 offset += sizeof(ur->ur_msg); 1657 free(ur, M_PFSYNC); 1658 count++; 1659 } 1660 1661 bzero(subh, sizeof(*subh)); 1662 subh->action = PFSYNC_ACT_UPD_REQ; 1663 subh->count = htons(count); 1664 V_pfsyncstats.pfsyncs_oacts[PFSYNC_ACT_UPD_REQ] += count; 1665 } 1666 1667 /* has someone built a custom region for us to add? */ 1668 if (b->b_plus != NULL) { 1669 bcopy(b->b_plus, m->m_data + offset, b->b_pluslen); 1670 offset += b->b_pluslen; 1671 1672 b->b_plus = NULL; 1673 } 1674 1675 subh = (struct pfsync_subheader *)(m->m_data + offset); 1676 offset += sizeof(*subh); 1677 1678 bzero(subh, sizeof(*subh)); 1679 subh->action = PFSYNC_ACT_EOF; 1680 subh->count = htons(1); 1681 V_pfsyncstats.pfsyncs_oacts[PFSYNC_ACT_EOF]++; 1682 1683 /* we're done, let's put it on the wire */ 1684 if (ifp->if_bpf) { 1685 m->m_data += aflen; 1686 m->m_len = m->m_pkthdr.len = b->b_len - aflen; 1687 BPF_MTAP(ifp, m); 1688 m->m_data -= aflen; 1689 m->m_len = m->m_pkthdr.len = b->b_len; 1690 } 1691 1692 if (sc->sc_sync_if == NULL) { 1693 b->b_len = PFSYNC_MINPKT; 1694 m_freem(m); 1695 return; 1696 } 1697 1698 if_inc_counter(sc->sc_ifp, IFCOUNTER_OPACKETS, 1); 1699 if_inc_counter(sc->sc_ifp, IFCOUNTER_OBYTES, m->m_pkthdr.len); 1700 b->b_len = PFSYNC_MINPKT; 1701 1702 if (!_IF_QFULL(&b->b_snd)) 1703 _IF_ENQUEUE(&b->b_snd, m); 1704 else { 1705 m_freem(m); 1706 if_inc_counter(sc->sc_ifp, IFCOUNTER_OQDROPS, 1); 1707 } 1708 if (schedswi) 1709 swi_sched(V_pfsync_swi_cookie, 0); 1710 } 1711 1712 static void 1713 pfsync_insert_state(struct pf_kstate *st) 1714 { 1715 struct pfsync_softc *sc = V_pfsyncif; 1716 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1717 1718 if (st->state_flags & PFSTATE_NOSYNC) 1719 return; 1720 1721 if ((st->rule.ptr->rule_flag & PFRULE_NOSYNC) || 1722 st->key[PF_SK_WIRE]->proto == IPPROTO_PFSYNC) { 1723 st->state_flags |= PFSTATE_NOSYNC; 1724 return; 1725 } 1726 1727 KASSERT(st->sync_state == PFSYNC_S_NONE, 1728 ("%s: st->sync_state %u", __func__, st->sync_state)); 1729 1730 PFSYNC_BUCKET_LOCK(b); 1731 if (b->b_len == PFSYNC_MINPKT) 1732 callout_reset(&b->b_tmo, 1 * hz, pfsync_timeout, b); 1733 1734 pfsync_q_ins(st, PFSYNC_S_INS, true); 1735 PFSYNC_BUCKET_UNLOCK(b); 1736 1737 st->sync_updates = 0; 1738 } 1739 1740 static int 1741 pfsync_defer(struct pf_kstate *st, struct mbuf *m) 1742 { 1743 struct pfsync_softc *sc = V_pfsyncif; 1744 struct pfsync_deferral *pd; 1745 struct pfsync_bucket *b; 1746 1747 if (m->m_flags & (M_BCAST|M_MCAST)) 1748 return (0); 1749 1750 if (sc == NULL) 1751 return (0); 1752 1753 b = pfsync_get_bucket(sc, st); 1754 1755 PFSYNC_LOCK(sc); 1756 1757 if (!(sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING) || 1758 !(sc->sc_flags & PFSYNCF_DEFER)) { 1759 PFSYNC_UNLOCK(sc); 1760 return (0); 1761 } 1762 1763 PFSYNC_BUCKET_LOCK(b); 1764 PFSYNC_UNLOCK(sc); 1765 1766 if (b->b_deferred >= 128) 1767 pfsync_undefer(TAILQ_FIRST(&b->b_deferrals), 0); 1768 1769 pd = malloc(sizeof(*pd), M_PFSYNC, M_NOWAIT); 1770 if (pd == NULL) { 1771 PFSYNC_BUCKET_UNLOCK(b); 1772 return (0); 1773 } 1774 b->b_deferred++; 1775 1776 m->m_flags |= M_SKIP_FIREWALL; 1777 st->state_flags |= PFSTATE_ACK; 1778 1779 pd->pd_sc = sc; 1780 pd->pd_st = st; 1781 pf_ref_state(st); 1782 pd->pd_m = m; 1783 1784 TAILQ_INSERT_TAIL(&b->b_deferrals, pd, pd_entry); 1785 callout_init_mtx(&pd->pd_tmo, &b->b_mtx, CALLOUT_RETURNUNLOCKED); 1786 callout_reset(&pd->pd_tmo, PFSYNC_DEFER_TIMEOUT, pfsync_defer_tmo, pd); 1787 1788 pfsync_push(b); 1789 PFSYNC_BUCKET_UNLOCK(b); 1790 1791 return (1); 1792 } 1793 1794 static void 1795 pfsync_undefer(struct pfsync_deferral *pd, int drop) 1796 { 1797 struct pfsync_softc *sc = pd->pd_sc; 1798 struct mbuf *m = pd->pd_m; 1799 struct pf_kstate *st = pd->pd_st; 1800 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1801 1802 PFSYNC_BUCKET_LOCK_ASSERT(b); 1803 1804 TAILQ_REMOVE(&b->b_deferrals, pd, pd_entry); 1805 b->b_deferred--; 1806 pd->pd_st->state_flags &= ~PFSTATE_ACK; /* XXX: locking! */ 1807 free(pd, M_PFSYNC); 1808 pf_release_state(st); 1809 1810 if (drop) 1811 m_freem(m); 1812 else { 1813 _IF_ENQUEUE(&b->b_snd, m); 1814 pfsync_push(b); 1815 } 1816 } 1817 1818 static void 1819 pfsync_defer_tmo(void *arg) 1820 { 1821 struct epoch_tracker et; 1822 struct pfsync_deferral *pd = arg; 1823 struct pfsync_softc *sc = pd->pd_sc; 1824 struct mbuf *m = pd->pd_m; 1825 struct pf_kstate *st = pd->pd_st; 1826 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1827 1828 PFSYNC_BUCKET_LOCK_ASSERT(b); 1829 1830 TAILQ_REMOVE(&b->b_deferrals, pd, pd_entry); 1831 b->b_deferred--; 1832 pd->pd_st->state_flags &= ~PFSTATE_ACK; /* XXX: locking! */ 1833 PFSYNC_BUCKET_UNLOCK(b); 1834 free(pd, M_PFSYNC); 1835 1836 if (sc->sc_sync_if == NULL) { 1837 pf_release_state(st); 1838 m_freem(m); 1839 return; 1840 } 1841 1842 NET_EPOCH_ENTER(et); 1843 CURVNET_SET(sc->sc_sync_if->if_vnet); 1844 1845 pfsync_tx(sc, m); 1846 1847 pf_release_state(st); 1848 1849 CURVNET_RESTORE(); 1850 NET_EPOCH_EXIT(et); 1851 } 1852 1853 static void 1854 pfsync_undefer_state_locked(struct pf_kstate *st, int drop) 1855 { 1856 struct pfsync_softc *sc = V_pfsyncif; 1857 struct pfsync_deferral *pd; 1858 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1859 1860 PFSYNC_BUCKET_LOCK_ASSERT(b); 1861 1862 TAILQ_FOREACH(pd, &b->b_deferrals, pd_entry) { 1863 if (pd->pd_st == st) { 1864 if (callout_stop(&pd->pd_tmo) > 0) 1865 pfsync_undefer(pd, drop); 1866 1867 return; 1868 } 1869 } 1870 1871 panic("%s: unable to find deferred state", __func__); 1872 } 1873 1874 static void 1875 pfsync_undefer_state(struct pf_kstate *st, int drop) 1876 { 1877 struct pfsync_softc *sc = V_pfsyncif; 1878 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1879 1880 PFSYNC_BUCKET_LOCK(b); 1881 pfsync_undefer_state_locked(st, drop); 1882 PFSYNC_BUCKET_UNLOCK(b); 1883 } 1884 1885 static struct pfsync_bucket* 1886 pfsync_get_bucket(struct pfsync_softc *sc, struct pf_kstate *st) 1887 { 1888 int c = PF_IDHASH(st) % pfsync_buckets; 1889 return &sc->sc_buckets[c]; 1890 } 1891 1892 static void 1893 pfsync_update_state(struct pf_kstate *st) 1894 { 1895 struct pfsync_softc *sc = V_pfsyncif; 1896 bool sync = false, ref = true; 1897 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1898 1899 PF_STATE_LOCK_ASSERT(st); 1900 PFSYNC_BUCKET_LOCK(b); 1901 1902 if (st->state_flags & PFSTATE_ACK) 1903 pfsync_undefer_state_locked(st, 0); 1904 if (st->state_flags & PFSTATE_NOSYNC) { 1905 if (st->sync_state != PFSYNC_S_NONE) 1906 pfsync_q_del(st, true, b); 1907 PFSYNC_BUCKET_UNLOCK(b); 1908 return; 1909 } 1910 1911 if (b->b_len == PFSYNC_MINPKT) 1912 callout_reset(&b->b_tmo, 1 * hz, pfsync_timeout, b); 1913 1914 switch (st->sync_state) { 1915 case PFSYNC_S_UPD_C: 1916 case PFSYNC_S_UPD: 1917 case PFSYNC_S_INS: 1918 /* we're already handling it */ 1919 1920 if (st->key[PF_SK_WIRE]->proto == IPPROTO_TCP) { 1921 st->sync_updates++; 1922 if (st->sync_updates >= sc->sc_maxupdates) 1923 sync = true; 1924 } 1925 break; 1926 1927 case PFSYNC_S_IACK: 1928 pfsync_q_del(st, false, b); 1929 ref = false; 1930 /* FALLTHROUGH */ 1931 1932 case PFSYNC_S_NONE: 1933 pfsync_q_ins(st, PFSYNC_S_UPD_C, ref); 1934 st->sync_updates = 0; 1935 break; 1936 1937 default: 1938 panic("%s: unexpected sync state %d", __func__, st->sync_state); 1939 } 1940 1941 if (sync || (time_uptime - st->pfsync_time) < 2) 1942 pfsync_push(b); 1943 1944 PFSYNC_BUCKET_UNLOCK(b); 1945 } 1946 1947 static void 1948 pfsync_request_update(u_int32_t creatorid, u_int64_t id) 1949 { 1950 struct pfsync_softc *sc = V_pfsyncif; 1951 struct pfsync_bucket *b = &sc->sc_buckets[0]; 1952 struct pfsync_upd_req_item *item; 1953 size_t nlen = sizeof(struct pfsync_upd_req); 1954 1955 PFSYNC_BUCKET_LOCK_ASSERT(b); 1956 1957 /* 1958 * This code does a bit to prevent multiple update requests for the 1959 * same state being generated. It searches current subheader queue, 1960 * but it doesn't lookup into queue of already packed datagrams. 1961 */ 1962 TAILQ_FOREACH(item, &b->b_upd_req_list, ur_entry) 1963 if (item->ur_msg.id == id && 1964 item->ur_msg.creatorid == creatorid) 1965 return; 1966 1967 item = malloc(sizeof(*item), M_PFSYNC, M_NOWAIT); 1968 if (item == NULL) 1969 return; /* XXX stats */ 1970 1971 item->ur_msg.id = id; 1972 item->ur_msg.creatorid = creatorid; 1973 1974 if (TAILQ_EMPTY(&b->b_upd_req_list)) 1975 nlen += sizeof(struct pfsync_subheader); 1976 1977 if (b->b_len + nlen > sc->sc_ifp->if_mtu) { 1978 pfsync_sendout(0, 0); 1979 1980 nlen = sizeof(struct pfsync_subheader) + 1981 sizeof(struct pfsync_upd_req); 1982 } 1983 1984 TAILQ_INSERT_TAIL(&b->b_upd_req_list, item, ur_entry); 1985 b->b_len += nlen; 1986 1987 pfsync_push(b); 1988 } 1989 1990 static bool 1991 pfsync_update_state_req(struct pf_kstate *st) 1992 { 1993 struct pfsync_softc *sc = V_pfsyncif; 1994 bool ref = true, full = false; 1995 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 1996 1997 PF_STATE_LOCK_ASSERT(st); 1998 PFSYNC_BUCKET_LOCK(b); 1999 2000 if (st->state_flags & PFSTATE_NOSYNC) { 2001 if (st->sync_state != PFSYNC_S_NONE) 2002 pfsync_q_del(st, true, b); 2003 PFSYNC_BUCKET_UNLOCK(b); 2004 return (full); 2005 } 2006 2007 switch (st->sync_state) { 2008 case PFSYNC_S_UPD_C: 2009 case PFSYNC_S_IACK: 2010 pfsync_q_del(st, false, b); 2011 ref = false; 2012 /* FALLTHROUGH */ 2013 2014 case PFSYNC_S_NONE: 2015 pfsync_q_ins(st, PFSYNC_S_UPD, ref); 2016 pfsync_push(b); 2017 break; 2018 2019 case PFSYNC_S_INS: 2020 case PFSYNC_S_UPD: 2021 case PFSYNC_S_DEL: 2022 /* we're already handling it */ 2023 break; 2024 2025 default: 2026 panic("%s: unexpected sync state %d", __func__, st->sync_state); 2027 } 2028 2029 if ((sc->sc_ifp->if_mtu - b->b_len) < sizeof(struct pfsync_state)) 2030 full = true; 2031 2032 PFSYNC_BUCKET_UNLOCK(b); 2033 2034 return (full); 2035 } 2036 2037 static void 2038 pfsync_delete_state(struct pf_kstate *st) 2039 { 2040 struct pfsync_softc *sc = V_pfsyncif; 2041 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 2042 bool ref = true; 2043 2044 PFSYNC_BUCKET_LOCK(b); 2045 if (st->state_flags & PFSTATE_ACK) 2046 pfsync_undefer_state_locked(st, 1); 2047 if (st->state_flags & PFSTATE_NOSYNC) { 2048 if (st->sync_state != PFSYNC_S_NONE) 2049 pfsync_q_del(st, true, b); 2050 PFSYNC_BUCKET_UNLOCK(b); 2051 return; 2052 } 2053 2054 if (b->b_len == PFSYNC_MINPKT) 2055 callout_reset(&b->b_tmo, 1 * hz, pfsync_timeout, b); 2056 2057 switch (st->sync_state) { 2058 case PFSYNC_S_INS: 2059 /* We never got to tell the world so just forget about it. */ 2060 pfsync_q_del(st, true, b); 2061 break; 2062 2063 case PFSYNC_S_UPD_C: 2064 case PFSYNC_S_UPD: 2065 case PFSYNC_S_IACK: 2066 pfsync_q_del(st, false, b); 2067 ref = false; 2068 /* FALLTHROUGH */ 2069 2070 case PFSYNC_S_NONE: 2071 pfsync_q_ins(st, PFSYNC_S_DEL, ref); 2072 break; 2073 2074 default: 2075 panic("%s: unexpected sync state %d", __func__, st->sync_state); 2076 } 2077 2078 PFSYNC_BUCKET_UNLOCK(b); 2079 } 2080 2081 static void 2082 pfsync_clear_states(u_int32_t creatorid, const char *ifname) 2083 { 2084 struct { 2085 struct pfsync_subheader subh; 2086 struct pfsync_clr clr; 2087 } __packed r; 2088 2089 bzero(&r, sizeof(r)); 2090 2091 r.subh.action = PFSYNC_ACT_CLR; 2092 r.subh.count = htons(1); 2093 V_pfsyncstats.pfsyncs_oacts[PFSYNC_ACT_CLR]++; 2094 2095 strlcpy(r.clr.ifname, ifname, sizeof(r.clr.ifname)); 2096 r.clr.creatorid = creatorid; 2097 2098 pfsync_send_plus(&r, sizeof(r)); 2099 } 2100 2101 static void 2102 pfsync_q_ins(struct pf_kstate *st, int q, bool ref) 2103 { 2104 struct pfsync_softc *sc = V_pfsyncif; 2105 size_t nlen = pfsync_qs[q].len; 2106 struct pfsync_bucket *b = pfsync_get_bucket(sc, st); 2107 2108 PFSYNC_BUCKET_LOCK_ASSERT(b); 2109 2110 KASSERT(st->sync_state == PFSYNC_S_NONE, 2111 ("%s: st->sync_state %u", __func__, st->sync_state)); 2112 KASSERT(b->b_len >= PFSYNC_MINPKT, ("pfsync pkt len is too low %zu", 2113 b->b_len)); 2114 2115 if (TAILQ_EMPTY(&b->b_qs[q])) 2116 nlen += sizeof(struct pfsync_subheader); 2117 2118 if (b->b_len + nlen > sc->sc_ifp->if_mtu) { 2119 pfsync_sendout(1, b->b_id); 2120 2121 nlen = sizeof(struct pfsync_subheader) + pfsync_qs[q].len; 2122 } 2123 2124 b->b_len += nlen; 2125 TAILQ_INSERT_TAIL(&b->b_qs[q], st, sync_list); 2126 st->sync_state = q; 2127 if (ref) 2128 pf_ref_state(st); 2129 } 2130 2131 static void 2132 pfsync_q_del(struct pf_kstate *st, bool unref, struct pfsync_bucket *b) 2133 { 2134 int q = st->sync_state; 2135 2136 PFSYNC_BUCKET_LOCK_ASSERT(b); 2137 KASSERT(st->sync_state != PFSYNC_S_NONE, 2138 ("%s: st->sync_state != PFSYNC_S_NONE", __func__)); 2139 2140 b->b_len -= pfsync_qs[q].len; 2141 TAILQ_REMOVE(&b->b_qs[q], st, sync_list); 2142 st->sync_state = PFSYNC_S_NONE; 2143 if (unref) 2144 pf_release_state(st); 2145 2146 if (TAILQ_EMPTY(&b->b_qs[q])) 2147 b->b_len -= sizeof(struct pfsync_subheader); 2148 } 2149 2150 static void 2151 pfsync_bulk_start(void) 2152 { 2153 struct pfsync_softc *sc = V_pfsyncif; 2154 2155 if (V_pf_status.debug >= PF_DEBUG_MISC) 2156 printf("pfsync: received bulk update request\n"); 2157 2158 PFSYNC_BLOCK(sc); 2159 2160 sc->sc_ureq_received = time_uptime; 2161 sc->sc_bulk_hashid = 0; 2162 sc->sc_bulk_stateid = 0; 2163 pfsync_bulk_status(PFSYNC_BUS_START); 2164 callout_reset(&sc->sc_bulk_tmo, 1, pfsync_bulk_update, sc); 2165 PFSYNC_BUNLOCK(sc); 2166 } 2167 2168 static void 2169 pfsync_bulk_update(void *arg) 2170 { 2171 struct pfsync_softc *sc = arg; 2172 struct pf_kstate *s; 2173 int i; 2174 2175 PFSYNC_BLOCK_ASSERT(sc); 2176 CURVNET_SET(sc->sc_ifp->if_vnet); 2177 2178 /* 2179 * Start with last state from previous invocation. 2180 * It may had gone, in this case start from the 2181 * hash slot. 2182 */ 2183 s = pf_find_state_byid(sc->sc_bulk_stateid, sc->sc_bulk_creatorid); 2184 2185 if (s != NULL) 2186 i = PF_IDHASH(s); 2187 else 2188 i = sc->sc_bulk_hashid; 2189 2190 for (; i <= pf_hashmask; i++) { 2191 struct pf_idhash *ih = &V_pf_idhash[i]; 2192 2193 if (s != NULL) 2194 PF_HASHROW_ASSERT(ih); 2195 else { 2196 PF_HASHROW_LOCK(ih); 2197 s = LIST_FIRST(&ih->states); 2198 } 2199 2200 for (; s; s = LIST_NEXT(s, entry)) { 2201 if (s->sync_state == PFSYNC_S_NONE && 2202 s->timeout < PFTM_MAX && 2203 s->pfsync_time <= sc->sc_ureq_received) { 2204 if (pfsync_update_state_req(s)) { 2205 /* We've filled a packet. */ 2206 sc->sc_bulk_hashid = i; 2207 sc->sc_bulk_stateid = s->id; 2208 sc->sc_bulk_creatorid = s->creatorid; 2209 PF_HASHROW_UNLOCK(ih); 2210 callout_reset(&sc->sc_bulk_tmo, 1, 2211 pfsync_bulk_update, sc); 2212 goto full; 2213 } 2214 } 2215 } 2216 PF_HASHROW_UNLOCK(ih); 2217 } 2218 2219 /* We're done. */ 2220 pfsync_bulk_status(PFSYNC_BUS_END); 2221 full: 2222 CURVNET_RESTORE(); 2223 } 2224 2225 static void 2226 pfsync_bulk_status(u_int8_t status) 2227 { 2228 struct { 2229 struct pfsync_subheader subh; 2230 struct pfsync_bus bus; 2231 } __packed r; 2232 2233 struct pfsync_softc *sc = V_pfsyncif; 2234 2235 bzero(&r, sizeof(r)); 2236 2237 r.subh.action = PFSYNC_ACT_BUS; 2238 r.subh.count = htons(1); 2239 V_pfsyncstats.pfsyncs_oacts[PFSYNC_ACT_BUS]++; 2240 2241 r.bus.creatorid = V_pf_status.hostid; 2242 r.bus.endtime = htonl(time_uptime - sc->sc_ureq_received); 2243 r.bus.status = status; 2244 2245 pfsync_send_plus(&r, sizeof(r)); 2246 } 2247 2248 static void 2249 pfsync_bulk_fail(void *arg) 2250 { 2251 struct pfsync_softc *sc = arg; 2252 struct pfsync_bucket *b = &sc->sc_buckets[0]; 2253 2254 CURVNET_SET(sc->sc_ifp->if_vnet); 2255 2256 PFSYNC_BLOCK_ASSERT(sc); 2257 2258 if (sc->sc_bulk_tries++ < PFSYNC_MAX_BULKTRIES) { 2259 /* Try again */ 2260 callout_reset(&sc->sc_bulkfail_tmo, 5 * hz, 2261 pfsync_bulk_fail, V_pfsyncif); 2262 PFSYNC_BUCKET_LOCK(b); 2263 pfsync_request_update(0, 0); 2264 PFSYNC_BUCKET_UNLOCK(b); 2265 } else { 2266 /* Pretend like the transfer was ok. */ 2267 sc->sc_ureq_sent = 0; 2268 sc->sc_bulk_tries = 0; 2269 PFSYNC_LOCK(sc); 2270 if (!(sc->sc_flags & PFSYNCF_OK) && carp_demote_adj_p) 2271 (*carp_demote_adj_p)(-V_pfsync_carp_adj, 2272 "pfsync bulk fail"); 2273 sc->sc_flags |= PFSYNCF_OK; 2274 PFSYNC_UNLOCK(sc); 2275 if (V_pf_status.debug >= PF_DEBUG_MISC) 2276 printf("pfsync: failed to receive bulk update\n"); 2277 } 2278 2279 CURVNET_RESTORE(); 2280 } 2281 2282 static void 2283 pfsync_send_plus(void *plus, size_t pluslen) 2284 { 2285 struct pfsync_softc *sc = V_pfsyncif; 2286 struct pfsync_bucket *b = &sc->sc_buckets[0]; 2287 2288 PFSYNC_BUCKET_LOCK(b); 2289 2290 if (b->b_len + pluslen > sc->sc_ifp->if_mtu) 2291 pfsync_sendout(1, b->b_id); 2292 2293 b->b_plus = plus; 2294 b->b_len += (b->b_pluslen = pluslen); 2295 2296 pfsync_sendout(1, b->b_id); 2297 PFSYNC_BUCKET_UNLOCK(b); 2298 } 2299 2300 static void 2301 pfsync_timeout(void *arg) 2302 { 2303 struct pfsync_bucket *b = arg; 2304 2305 CURVNET_SET(b->b_sc->sc_ifp->if_vnet); 2306 PFSYNC_BUCKET_LOCK(b); 2307 pfsync_push(b); 2308 PFSYNC_BUCKET_UNLOCK(b); 2309 CURVNET_RESTORE(); 2310 } 2311 2312 static void 2313 pfsync_push(struct pfsync_bucket *b) 2314 { 2315 2316 PFSYNC_BUCKET_LOCK_ASSERT(b); 2317 2318 b->b_flags |= PFSYNCF_BUCKET_PUSH; 2319 swi_sched(V_pfsync_swi_cookie, 0); 2320 } 2321 2322 static void 2323 pfsync_push_all(struct pfsync_softc *sc) 2324 { 2325 int c; 2326 struct pfsync_bucket *b; 2327 2328 for (c = 0; c < pfsync_buckets; c++) { 2329 b = &sc->sc_buckets[c]; 2330 2331 PFSYNC_BUCKET_LOCK(b); 2332 pfsync_push(b); 2333 PFSYNC_BUCKET_UNLOCK(b); 2334 } 2335 } 2336 2337 static void 2338 pfsync_tx(struct pfsync_softc *sc, struct mbuf *m) 2339 { 2340 struct ip *ip; 2341 int af, error = 0; 2342 2343 ip = mtod(m, struct ip *); 2344 MPASS(ip->ip_v == IPVERSION || ip->ip_v == (IPV6_VERSION >> 4)); 2345 2346 af = ip->ip_v == IPVERSION ? AF_INET : AF_INET6; 2347 2348 /* 2349 * We distinguish between a deferral packet and our 2350 * own pfsync packet based on M_SKIP_FIREWALL 2351 * flag. This is XXX. 2352 */ 2353 switch (af) { 2354 #ifdef INET 2355 case AF_INET: 2356 if (m->m_flags & M_SKIP_FIREWALL) { 2357 error = ip_output(m, NULL, NULL, 0, 2358 NULL, NULL); 2359 } else { 2360 error = ip_output(m, NULL, NULL, 2361 IP_RAWOUTPUT, &sc->sc_imo, NULL); 2362 } 2363 break; 2364 #endif 2365 #ifdef INET6 2366 case AF_INET6: 2367 if (m->m_flags & M_SKIP_FIREWALL) { 2368 error = ip6_output(m, NULL, NULL, 0, 2369 NULL, NULL, NULL); 2370 } else { 2371 MPASS(false); 2372 /* We don't support pfsync over IPv6. */ 2373 /*error = ip6_output(m, NULL, NULL, 2374 IP_RAWOUTPUT, &sc->sc_imo6, NULL);*/ 2375 } 2376 break; 2377 #endif 2378 } 2379 2380 if (error == 0) 2381 V_pfsyncstats.pfsyncs_opackets++; 2382 else 2383 V_pfsyncstats.pfsyncs_oerrors++; 2384 2385 } 2386 2387 static void 2388 pfsyncintr(void *arg) 2389 { 2390 struct epoch_tracker et; 2391 struct pfsync_softc *sc = arg; 2392 struct pfsync_bucket *b; 2393 struct mbuf *m, *n; 2394 int c; 2395 2396 NET_EPOCH_ENTER(et); 2397 CURVNET_SET(sc->sc_ifp->if_vnet); 2398 2399 for (c = 0; c < pfsync_buckets; c++) { 2400 b = &sc->sc_buckets[c]; 2401 2402 PFSYNC_BUCKET_LOCK(b); 2403 if ((b->b_flags & PFSYNCF_BUCKET_PUSH) && b->b_len > PFSYNC_MINPKT) { 2404 pfsync_sendout(0, b->b_id); 2405 b->b_flags &= ~PFSYNCF_BUCKET_PUSH; 2406 } 2407 _IF_DEQUEUE_ALL(&b->b_snd, m); 2408 PFSYNC_BUCKET_UNLOCK(b); 2409 2410 for (; m != NULL; m = n) { 2411 n = m->m_nextpkt; 2412 m->m_nextpkt = NULL; 2413 2414 pfsync_tx(sc, m); 2415 } 2416 } 2417 CURVNET_RESTORE(); 2418 NET_EPOCH_EXIT(et); 2419 } 2420 2421 static int 2422 pfsync_multicast_setup(struct pfsync_softc *sc, struct ifnet *ifp, 2423 struct in_mfilter *imf) 2424 { 2425 struct ip_moptions *imo = &sc->sc_imo; 2426 int error; 2427 2428 if (!(ifp->if_flags & IFF_MULTICAST)) 2429 return (EADDRNOTAVAIL); 2430 2431 switch (sc->sc_sync_peer.ss_family) { 2432 #ifdef INET 2433 case AF_INET: 2434 { 2435 ip_mfilter_init(&imo->imo_head); 2436 imo->imo_multicast_vif = -1; 2437 if ((error = in_joingroup(ifp, &((struct sockaddr_in *)&sc->sc_sync_peer)->sin_addr, NULL, 2438 &imf->imf_inm)) != 0) 2439 return (error); 2440 2441 ip_mfilter_insert(&imo->imo_head, imf); 2442 imo->imo_multicast_ifp = ifp; 2443 imo->imo_multicast_ttl = PFSYNC_DFLTTL; 2444 imo->imo_multicast_loop = 0; 2445 break; 2446 } 2447 #endif 2448 } 2449 2450 return (0); 2451 } 2452 2453 static void 2454 pfsync_multicast_cleanup(struct pfsync_softc *sc) 2455 { 2456 struct ip_moptions *imo = &sc->sc_imo; 2457 struct in_mfilter *imf; 2458 2459 while ((imf = ip_mfilter_first(&imo->imo_head)) != NULL) { 2460 ip_mfilter_remove(&imo->imo_head, imf); 2461 in_leavegroup(imf->imf_inm, NULL); 2462 ip_mfilter_free(imf); 2463 } 2464 imo->imo_multicast_ifp = NULL; 2465 } 2466 2467 void 2468 pfsync_detach_ifnet(struct ifnet *ifp) 2469 { 2470 struct pfsync_softc *sc = V_pfsyncif; 2471 2472 if (sc == NULL) 2473 return; 2474 2475 PFSYNC_LOCK(sc); 2476 2477 if (sc->sc_sync_if == ifp) { 2478 /* We don't need mutlicast cleanup here, because the interface 2479 * is going away. We do need to ensure we don't try to do 2480 * cleanup later. 2481 */ 2482 ip_mfilter_init(&sc->sc_imo.imo_head); 2483 sc->sc_imo.imo_multicast_ifp = NULL; 2484 sc->sc_sync_if = NULL; 2485 } 2486 2487 PFSYNC_UNLOCK(sc); 2488 } 2489 2490 static int 2491 pfsync_pfsyncreq_to_kstatus(struct pfsyncreq *pfsyncr, struct pfsync_kstatus *status) 2492 { 2493 struct sockaddr_storage sa; 2494 status->maxupdates = pfsyncr->pfsyncr_maxupdates; 2495 status->flags = pfsyncr->pfsyncr_defer; 2496 2497 strlcpy(status->syncdev, pfsyncr->pfsyncr_syncdev, IFNAMSIZ); 2498 2499 memset(&sa, 0, sizeof(sa)); 2500 if (pfsyncr->pfsyncr_syncpeer.s_addr != 0) { 2501 struct sockaddr_in *in = (struct sockaddr_in *)&sa; 2502 in->sin_family = AF_INET; 2503 in->sin_len = sizeof(*in); 2504 in->sin_addr.s_addr = pfsyncr->pfsyncr_syncpeer.s_addr; 2505 } 2506 status->syncpeer = sa; 2507 2508 return 0; 2509 } 2510 2511 static int 2512 pfsync_kstatus_to_softc(struct pfsync_kstatus *status, struct pfsync_softc *sc) 2513 { 2514 struct in_mfilter *imf = NULL; 2515 struct ifnet *sifp; 2516 struct ip *ip; 2517 int error; 2518 int c; 2519 2520 if ((status->maxupdates < 0) || (status->maxupdates > 255)) 2521 return (EINVAL); 2522 2523 if (status->syncdev[0] == '\0') 2524 sifp = NULL; 2525 else if ((sifp = ifunit_ref(status->syncdev)) == NULL) 2526 return (EINVAL); 2527 2528 struct sockaddr_in *status_sin = 2529 (struct sockaddr_in *)&(status->syncpeer); 2530 if (sifp != NULL && (status_sin->sin_addr.s_addr == 0 || 2531 status_sin->sin_addr.s_addr == 2532 htonl(INADDR_PFSYNC_GROUP))) 2533 imf = ip_mfilter_alloc(M_WAITOK, 0, 0); 2534 2535 PFSYNC_LOCK(sc); 2536 struct sockaddr_in *sc_sin = (struct sockaddr_in *)&sc->sc_sync_peer; 2537 sc_sin->sin_family = AF_INET; 2538 sc_sin->sin_len = sizeof(*sc_sin); 2539 if (status_sin->sin_addr.s_addr == 0) { 2540 sc_sin->sin_addr.s_addr = htonl(INADDR_PFSYNC_GROUP); 2541 } else { 2542 sc_sin->sin_addr.s_addr = status_sin->sin_addr.s_addr; 2543 } 2544 2545 sc->sc_maxupdates = status->maxupdates; 2546 if (status->flags & PFSYNCF_DEFER) { 2547 sc->sc_flags |= PFSYNCF_DEFER; 2548 V_pfsync_defer_ptr = pfsync_defer; 2549 } else { 2550 sc->sc_flags &= ~PFSYNCF_DEFER; 2551 V_pfsync_defer_ptr = NULL; 2552 } 2553 2554 if (sifp == NULL) { 2555 if (sc->sc_sync_if) 2556 if_rele(sc->sc_sync_if); 2557 sc->sc_sync_if = NULL; 2558 pfsync_multicast_cleanup(sc); 2559 PFSYNC_UNLOCK(sc); 2560 return (0); 2561 } 2562 2563 for (c = 0; c < pfsync_buckets; c++) { 2564 PFSYNC_BUCKET_LOCK(&sc->sc_buckets[c]); 2565 if (sc->sc_buckets[c].b_len > PFSYNC_MINPKT && 2566 (sifp->if_mtu < sc->sc_ifp->if_mtu || 2567 (sc->sc_sync_if != NULL && 2568 sifp->if_mtu < sc->sc_sync_if->if_mtu) || 2569 sifp->if_mtu < MCLBYTES - sizeof(struct ip))) 2570 pfsync_sendout(1, c); 2571 PFSYNC_BUCKET_UNLOCK(&sc->sc_buckets[c]); 2572 } 2573 2574 pfsync_multicast_cleanup(sc); 2575 2576 if (sc_sin->sin_addr.s_addr == htonl(INADDR_PFSYNC_GROUP)) { 2577 error = pfsync_multicast_setup(sc, sifp, imf); 2578 if (error) { 2579 if_rele(sifp); 2580 ip_mfilter_free(imf); 2581 PFSYNC_UNLOCK(sc); 2582 return (error); 2583 } 2584 } 2585 if (sc->sc_sync_if) 2586 if_rele(sc->sc_sync_if); 2587 sc->sc_sync_if = sifp; 2588 2589 ip = &sc->sc_template.ipv4; 2590 bzero(ip, sizeof(*ip)); 2591 ip->ip_v = IPVERSION; 2592 ip->ip_hl = sizeof(sc->sc_template.ipv4) >> 2; 2593 ip->ip_tos = IPTOS_LOWDELAY; 2594 /* len and id are set later. */ 2595 ip->ip_off = htons(IP_DF); 2596 ip->ip_ttl = PFSYNC_DFLTTL; 2597 ip->ip_p = IPPROTO_PFSYNC; 2598 ip->ip_src.s_addr = INADDR_ANY; 2599 ip->ip_dst.s_addr = sc_sin->sin_addr.s_addr; 2600 2601 /* Request a full state table update. */ 2602 if ((sc->sc_flags & PFSYNCF_OK) && carp_demote_adj_p) 2603 (*carp_demote_adj_p)(V_pfsync_carp_adj, 2604 "pfsync bulk start"); 2605 sc->sc_flags &= ~PFSYNCF_OK; 2606 if (V_pf_status.debug >= PF_DEBUG_MISC) 2607 printf("pfsync: requesting bulk update\n"); 2608 PFSYNC_UNLOCK(sc); 2609 PFSYNC_BUCKET_LOCK(&sc->sc_buckets[0]); 2610 pfsync_request_update(0, 0); 2611 PFSYNC_BUCKET_UNLOCK(&sc->sc_buckets[0]); 2612 PFSYNC_BLOCK(sc); 2613 sc->sc_ureq_sent = time_uptime; 2614 callout_reset(&sc->sc_bulkfail_tmo, 5 * hz, pfsync_bulk_fail, sc); 2615 PFSYNC_BUNLOCK(sc); 2616 return (0); 2617 } 2618 2619 static void 2620 pfsync_pointers_init(void) 2621 { 2622 2623 PF_RULES_WLOCK(); 2624 V_pfsync_state_import_ptr = pfsync_state_import; 2625 V_pfsync_insert_state_ptr = pfsync_insert_state; 2626 V_pfsync_update_state_ptr = pfsync_update_state; 2627 V_pfsync_delete_state_ptr = pfsync_delete_state; 2628 V_pfsync_clear_states_ptr = pfsync_clear_states; 2629 V_pfsync_defer_ptr = pfsync_defer; 2630 PF_RULES_WUNLOCK(); 2631 } 2632 2633 static void 2634 pfsync_pointers_uninit(void) 2635 { 2636 2637 PF_RULES_WLOCK(); 2638 V_pfsync_state_import_ptr = NULL; 2639 V_pfsync_insert_state_ptr = NULL; 2640 V_pfsync_update_state_ptr = NULL; 2641 V_pfsync_delete_state_ptr = NULL; 2642 V_pfsync_clear_states_ptr = NULL; 2643 V_pfsync_defer_ptr = NULL; 2644 PF_RULES_WUNLOCK(); 2645 } 2646 2647 static void 2648 vnet_pfsync_init(const void *unused __unused) 2649 { 2650 int error; 2651 2652 V_pfsync_cloner = if_clone_simple(pfsyncname, 2653 pfsync_clone_create, pfsync_clone_destroy, 1); 2654 error = swi_add(&V_pfsync_swi_ie, pfsyncname, pfsyncintr, V_pfsyncif, 2655 SWI_NET, INTR_MPSAFE, &V_pfsync_swi_cookie); 2656 if (error) { 2657 if_clone_detach(V_pfsync_cloner); 2658 log(LOG_INFO, "swi_add() failed in %s\n", __func__); 2659 } 2660 2661 pfsync_pointers_init(); 2662 } 2663 VNET_SYSINIT(vnet_pfsync_init, SI_SUB_PROTO_FIREWALL, SI_ORDER_ANY, 2664 vnet_pfsync_init, NULL); 2665 2666 static void 2667 vnet_pfsync_uninit(const void *unused __unused) 2668 { 2669 int ret __diagused; 2670 2671 pfsync_pointers_uninit(); 2672 2673 if_clone_detach(V_pfsync_cloner); 2674 ret = swi_remove(V_pfsync_swi_cookie); 2675 MPASS(ret == 0); 2676 ret = intr_event_destroy(V_pfsync_swi_ie); 2677 MPASS(ret == 0); 2678 } 2679 2680 VNET_SYSUNINIT(vnet_pfsync_uninit, SI_SUB_PROTO_FIREWALL, SI_ORDER_FOURTH, 2681 vnet_pfsync_uninit, NULL); 2682 2683 static int 2684 pfsync_init(void) 2685 { 2686 #ifdef INET 2687 int error; 2688 2689 pfsync_detach_ifnet_ptr = pfsync_detach_ifnet; 2690 2691 error = ipproto_register(IPPROTO_PFSYNC, pfsync_input, NULL); 2692 if (error) 2693 return (error); 2694 #endif 2695 2696 return (0); 2697 } 2698 2699 static void 2700 pfsync_uninit(void) 2701 { 2702 pfsync_detach_ifnet_ptr = NULL; 2703 2704 #ifdef INET 2705 ipproto_unregister(IPPROTO_PFSYNC); 2706 #endif 2707 } 2708 2709 static int 2710 pfsync_modevent(module_t mod, int type, void *data) 2711 { 2712 int error = 0; 2713 2714 switch (type) { 2715 case MOD_LOAD: 2716 error = pfsync_init(); 2717 break; 2718 case MOD_UNLOAD: 2719 pfsync_uninit(); 2720 break; 2721 default: 2722 error = EINVAL; 2723 break; 2724 } 2725 2726 return (error); 2727 } 2728 2729 static moduledata_t pfsync_mod = { 2730 pfsyncname, 2731 pfsync_modevent, 2732 0 2733 }; 2734 2735 #define PFSYNC_MODVER 1 2736 2737 /* Stay on FIREWALL as we depend on pf being initialized and on inetdomain. */ 2738 DECLARE_MODULE(pfsync, pfsync_mod, SI_SUB_PROTO_FIREWALL, SI_ORDER_ANY); 2739 MODULE_VERSION(pfsync, PFSYNC_MODVER); 2740 MODULE_DEPEND(pfsync, pf, PF_MODVER, PF_MODVER, PF_MODVER); 2741