Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108568424
D47545.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D47545.diff
View Options
diff --git a/sys/netpfil/pf/pflow.c b/sys/netpfil/pf/pflow.c
--- a/sys/netpfil/pf/pflow.c
+++ b/sys/netpfil/pf/pflow.c
@@ -26,6 +26,7 @@
#include <sys/callout.h>
#include <sys/endian.h>
#include <sys/interrupt.h>
+#include <sys/jail.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/module.h>
@@ -184,15 +185,28 @@
VNET_SYSINIT(vnet_pflowattach, SI_SUB_PROTO_FIREWALL, SI_ORDER_ANY,
vnet_pflowattach, NULL);
-static void
-vnet_pflowdetach(void)
+static int
+pflow_jail_remove(void *obj, void *data __unused)
{
+#ifdef VIMAGE
+ const struct prison *pr = obj;
+#endif
struct pflow_softc *sc;
+ CURVNET_SET(pr->pr_vnet);
CK_LIST_FOREACH(sc, &V_pflowif_list, sc_next) {
pflow_destroy(sc->sc_id, false);
}
+ CURVNET_RESTORE();
+
+ return (0);
+}
+static void
+vnet_pflowdetach(void)
+{
+
+ /* Should have been done by pflow_jail_remove() */
MPASS(CK_LIST_EMPTY(&V_pflowif_list));
delete_unrhdr(V_pflow_unr);
mtx_destroy(&V_pflowif_list_mtx);
@@ -1776,6 +1790,8 @@
&set_parser,
};
+static unsigned pflow_do_osd_jail_slot;
+
static int
pflow_init(void)
{
@@ -1784,6 +1800,11 @@
NL_VERIFY_PARSERS(all_parsers);
+ static osd_method_t methods[PR_MAXMETHOD] = {
+ [PR_METHOD_REMOVE] = pflow_jail_remove,
+ };
+ pflow_do_osd_jail_slot = osd_jail_register(NULL, methods);
+
family_id = genl_register_family(PFLOWNL_FAMILY_NAME, 0, 2, PFLOWNL_CMD_MAX);
MPASS(family_id != 0);
ret = genl_register_cmds(PFLOWNL_FAMILY_NAME, pflow_cmds, NL_ARRAY_LEN(pflow_cmds));
@@ -1794,6 +1815,7 @@
static void
pflow_uninit(void)
{
+ osd_jail_deregister(pflow_do_osd_jail_slot);
genl_unregister_family(PFLOWNL_FAMILY_NAME);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Jan 27, 10:59 AM (1 h, 28 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14633406
Default Alt Text
D47545.diff (1 KB)
Attached To
Mode
D47545: pf: clean up pflow sockets on jail removal
Attached
Detach File
Event Timeline
Log In to Comment