Proerply virtualize pfsync for bringup after pf is initialized and
teardown of VNETs once pf(4) has been shut down. Properly split resources into VNET_SYS(UN)INITs and one time module loading. While here cover the INET parts in the uninit callpath with proper #ifdefs. Approved by: re (gjb) Obtained from: projects/vnet MFC after: 2 weeks Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
7d7751a071
commit
66c00e9efb
@ -78,6 +78,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/socket.h>
|
||||
#include <sys/sockio.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/syslog.h>
|
||||
|
||||
#include <net/bpf.h>
|
||||
#include <net/if.h>
|
||||
@ -2315,71 +2316,67 @@ pfsync_pointers_uninit()
|
||||
PF_RULES_WUNLOCK();
|
||||
}
|
||||
|
||||
static void
|
||||
vnet_pfsync_init(const void *unused __unused)
|
||||
{
|
||||
int error;
|
||||
|
||||
V_pfsync_cloner = if_clone_simple(pfsyncname,
|
||||
pfsync_clone_create, pfsync_clone_destroy, 1);
|
||||
error = swi_add(NULL, pfsyncname, pfsyncintr, V_pfsyncif,
|
||||
SWI_NET, INTR_MPSAFE, &V_pfsync_swi_cookie);
|
||||
if (error) {
|
||||
if_clone_detach(V_pfsync_cloner);
|
||||
log(LOG_INFO, "swi_add() failed in %s\n", __func__);
|
||||
}
|
||||
}
|
||||
VNET_SYSINIT(vnet_pfsync_init, SI_SUB_PROTO_FIREWALL, SI_ORDER_ANY,
|
||||
vnet_pfsync_init, NULL);
|
||||
|
||||
static void
|
||||
vnet_pfsync_uninit(const void *unused __unused)
|
||||
{
|
||||
|
||||
if_clone_detach(V_pfsync_cloner);
|
||||
swi_remove(V_pfsync_swi_cookie);
|
||||
}
|
||||
/*
|
||||
* Detach after pf is gone; otherwise we might touch pfsync memory
|
||||
* from within pf after freeing pfsync.
|
||||
*/
|
||||
VNET_SYSUNINIT(vnet_pfsync_uninit, SI_SUB_INIT_IF, SI_ORDER_SECOND,
|
||||
vnet_pfsync_uninit, NULL);
|
||||
|
||||
static int
|
||||
pfsync_init()
|
||||
{
|
||||
VNET_ITERATOR_DECL(vnet_iter);
|
||||
int error = 0;
|
||||
|
||||
VNET_LIST_RLOCK();
|
||||
VNET_FOREACH(vnet_iter) {
|
||||
CURVNET_SET(vnet_iter);
|
||||
V_pfsync_cloner = if_clone_simple(pfsyncname,
|
||||
pfsync_clone_create, pfsync_clone_destroy, 1);
|
||||
error = swi_add(NULL, pfsyncname, pfsyncintr, V_pfsyncif,
|
||||
SWI_NET, INTR_MPSAFE, &V_pfsync_swi_cookie);
|
||||
CURVNET_RESTORE();
|
||||
if (error)
|
||||
goto fail_locked;
|
||||
}
|
||||
VNET_LIST_RUNLOCK();
|
||||
#ifdef INET
|
||||
int error;
|
||||
|
||||
error = pf_proto_register(PF_INET, &in_pfsync_protosw);
|
||||
if (error)
|
||||
goto fail;
|
||||
return (error);
|
||||
error = ipproto_register(IPPROTO_PFSYNC);
|
||||
if (error) {
|
||||
pf_proto_unregister(PF_INET, IPPROTO_PFSYNC, SOCK_RAW);
|
||||
goto fail;
|
||||
return (error);
|
||||
}
|
||||
#endif
|
||||
pfsync_pointers_init();
|
||||
|
||||
return (0);
|
||||
|
||||
fail:
|
||||
VNET_LIST_RLOCK();
|
||||
fail_locked:
|
||||
VNET_FOREACH(vnet_iter) {
|
||||
CURVNET_SET(vnet_iter);
|
||||
if (V_pfsync_swi_cookie) {
|
||||
swi_remove(V_pfsync_swi_cookie);
|
||||
if_clone_detach(V_pfsync_cloner);
|
||||
}
|
||||
CURVNET_RESTORE();
|
||||
}
|
||||
VNET_LIST_RUNLOCK();
|
||||
|
||||
return (error);
|
||||
}
|
||||
|
||||
static void
|
||||
pfsync_uninit()
|
||||
{
|
||||
VNET_ITERATOR_DECL(vnet_iter);
|
||||
|
||||
pfsync_pointers_uninit();
|
||||
|
||||
#ifdef INET
|
||||
ipproto_unregister(IPPROTO_PFSYNC);
|
||||
pf_proto_unregister(PF_INET, IPPROTO_PFSYNC, SOCK_RAW);
|
||||
VNET_LIST_RLOCK();
|
||||
VNET_FOREACH(vnet_iter) {
|
||||
CURVNET_SET(vnet_iter);
|
||||
if_clone_detach(V_pfsync_cloner);
|
||||
swi_remove(V_pfsync_swi_cookie);
|
||||
CURVNET_RESTORE();
|
||||
}
|
||||
VNET_LIST_RUNLOCK();
|
||||
#endif
|
||||
}
|
||||
|
||||
static int
|
||||
@ -2416,6 +2413,7 @@ static moduledata_t pfsync_mod = {
|
||||
|
||||
#define PFSYNC_MODVER 1
|
||||
|
||||
DECLARE_MODULE(pfsync, pfsync_mod, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY);
|
||||
/* Stay on FIREWALL as we depend on pf being initialized and on inetdomain. */
|
||||
DECLARE_MODULE(pfsync, pfsync_mod, SI_SUB_PROTO_FIREWALL, SI_ORDER_ANY);
|
||||
MODULE_VERSION(pfsync, PFSYNC_MODVER);
|
||||
MODULE_DEPEND(pfsync, pf, PF_MODVER, PF_MODVER, PF_MODVER);
|
||||
|
Loading…
x
Reference in New Issue
Block a user