xref: /freebsd/sys/netgraph/ng_ipfw.c (revision becd0079c052cb87e7649b78733b99abae8861ee)
1670742a1SGleb Smirnoff /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3fe267a55SPedro F. Giffuni  *
4670742a1SGleb Smirnoff  * Copyright 2005, Gleb Smirnoff <glebius@FreeBSD.org>
5670742a1SGleb Smirnoff  * All rights reserved.
6670742a1SGleb Smirnoff  *
7670742a1SGleb Smirnoff  * Redistribution and use in source and binary forms, with or without
8670742a1SGleb Smirnoff  * modification, are permitted provided that the following conditions
9670742a1SGleb Smirnoff  * are met:
10670742a1SGleb Smirnoff  * 1. Redistributions of source code must retain the above copyright
11670742a1SGleb Smirnoff  *    notice, this list of conditions and the following disclaimer.
12670742a1SGleb Smirnoff  * 2. Redistributions in binary form must reproduce the above copyright
13670742a1SGleb Smirnoff  *    notice, this list of conditions and the following disclaimer in the
14670742a1SGleb Smirnoff  *    documentation and/or other materials provided with the distribution.
15670742a1SGleb Smirnoff  *
16670742a1SGleb Smirnoff  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17670742a1SGleb Smirnoff  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18670742a1SGleb Smirnoff  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19670742a1SGleb Smirnoff  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20670742a1SGleb Smirnoff  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21670742a1SGleb Smirnoff  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22670742a1SGleb Smirnoff  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23670742a1SGleb Smirnoff  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24670742a1SGleb Smirnoff  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25670742a1SGleb Smirnoff  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26670742a1SGleb Smirnoff  * SUCH DAMAGE.
27670742a1SGleb Smirnoff  */
28670742a1SGleb Smirnoff 
29f2a66f8eSAndrey V. Elsukov #include "opt_inet.h"
30f2a66f8eSAndrey V. Elsukov #include "opt_inet6.h"
31f2a66f8eSAndrey V. Elsukov 
32670742a1SGleb Smirnoff #include <sys/param.h>
33670742a1SGleb Smirnoff #include <sys/systm.h>
34670742a1SGleb Smirnoff #include <sys/kernel.h>
35385195c0SMarko Zec #include <sys/lock.h>
36670742a1SGleb Smirnoff #include <sys/mbuf.h>
37670742a1SGleb Smirnoff #include <sys/malloc.h>
38670742a1SGleb Smirnoff #include <sys/ctype.h>
39670742a1SGleb Smirnoff #include <sys/errno.h>
40385195c0SMarko Zec #include <sys/rwlock.h>
41670742a1SGleb Smirnoff #include <sys/socket.h>
42670742a1SGleb Smirnoff #include <sys/syslog.h>
43670742a1SGleb Smirnoff 
44670742a1SGleb Smirnoff #include <net/if.h>
4576039bc8SGleb Smirnoff #include <net/if_var.h>
46670742a1SGleb Smirnoff 
47670742a1SGleb Smirnoff #include <netinet/in.h>
48670742a1SGleb Smirnoff #include <netinet/in_systm.h>
49670742a1SGleb Smirnoff #include <netinet/in_var.h>
501aa00918SLuigi Rizzo #include <netinet/ip_var.h>
51670742a1SGleb Smirnoff #include <netinet/ip_fw.h>
52670742a1SGleb Smirnoff #include <netinet/ip.h>
53f2a66f8eSAndrey V. Elsukov #include <netinet/ip6.h>
54f2a66f8eSAndrey V. Elsukov #include <netinet6/ip6_var.h>
55670742a1SGleb Smirnoff 
563b3a8eb9SGleb Smirnoff #include <netpfil/ipfw/ip_fw_private.h>
573b3a8eb9SGleb Smirnoff 
58670742a1SGleb Smirnoff #include <netgraph/ng_message.h>
59670742a1SGleb Smirnoff #include <netgraph/ng_parse.h>
60670742a1SGleb Smirnoff #include <netgraph/ng_ipfw.h>
61670742a1SGleb Smirnoff #include <netgraph/netgraph.h>
62670742a1SGleb Smirnoff 
63670742a1SGleb Smirnoff static int		ng_ipfw_mod_event(module_t mod, int event, void *data);
64670742a1SGleb Smirnoff static ng_constructor_t	ng_ipfw_constructor;
65670742a1SGleb Smirnoff static ng_shutdown_t	ng_ipfw_shutdown;
66670742a1SGleb Smirnoff static ng_newhook_t	ng_ipfw_newhook;
67670742a1SGleb Smirnoff static ng_connect_t	ng_ipfw_connect;
68670742a1SGleb Smirnoff static ng_findhook_t	ng_ipfw_findhook;
69670742a1SGleb Smirnoff static ng_rcvdata_t	ng_ipfw_rcvdata;
70670742a1SGleb Smirnoff static ng_disconnect_t	ng_ipfw_disconnect;
71670742a1SGleb Smirnoff 
7220e1f207SEugene Grosbein static hook_p		ng_ipfw_findhook1(node_p, uint32_t );
73cef9f220SGleb Smirnoff static int	ng_ipfw_input(struct mbuf **, struct ip_fw_args *, bool);
74670742a1SGleb Smirnoff 
75670742a1SGleb Smirnoff /* We have only one node */
76670742a1SGleb Smirnoff static node_p	fw_node;
77670742a1SGleb Smirnoff 
78670742a1SGleb Smirnoff /* Netgraph node type descriptor */
79670742a1SGleb Smirnoff static struct ng_type ng_ipfw_typestruct = {
80670742a1SGleb Smirnoff 	.version =	NG_ABI_VERSION,
81670742a1SGleb Smirnoff 	.name =		NG_IPFW_NODE_TYPE,
82670742a1SGleb Smirnoff 	.mod_event =	ng_ipfw_mod_event,
83670742a1SGleb Smirnoff 	.constructor =	ng_ipfw_constructor,
84670742a1SGleb Smirnoff 	.shutdown =	ng_ipfw_shutdown,
85670742a1SGleb Smirnoff 	.newhook =	ng_ipfw_newhook,
86670742a1SGleb Smirnoff 	.connect =	ng_ipfw_connect,
87670742a1SGleb Smirnoff 	.findhook =	ng_ipfw_findhook,
88670742a1SGleb Smirnoff 	.rcvdata =	ng_ipfw_rcvdata,
89670742a1SGleb Smirnoff 	.disconnect =	ng_ipfw_disconnect,
90670742a1SGleb Smirnoff };
91670742a1SGleb Smirnoff NETGRAPH_INIT(ipfw, &ng_ipfw_typestruct);
92f9ab623bSAlexander V. Chernikov MODULE_DEPEND(ng_ipfw, ipfw, 3, 3, 3);
93670742a1SGleb Smirnoff 
94670742a1SGleb Smirnoff /* Information we store for each hook */
95670742a1SGleb Smirnoff struct ng_ipfw_hook_priv {
96670742a1SGleb Smirnoff         hook_p		hook;
9720e1f207SEugene Grosbein 	uint32_t	cookie;
98670742a1SGleb Smirnoff };
99670742a1SGleb Smirnoff typedef struct ng_ipfw_hook_priv *hpriv_p;
100670742a1SGleb Smirnoff 
101670742a1SGleb Smirnoff static int
ng_ipfw_mod_event(module_t mod,int event,void * data)102670742a1SGleb Smirnoff ng_ipfw_mod_event(module_t mod, int event, void *data)
103670742a1SGleb Smirnoff {
104670742a1SGleb Smirnoff 	int error = 0;
105670742a1SGleb Smirnoff 
106670742a1SGleb Smirnoff 	switch (event) {
107670742a1SGleb Smirnoff 	case MOD_LOAD:
108670742a1SGleb Smirnoff 
109670742a1SGleb Smirnoff 		if (ng_ipfw_input_p != NULL) {
110670742a1SGleb Smirnoff 			error = EEXIST;
111670742a1SGleb Smirnoff 			break;
112670742a1SGleb Smirnoff 		}
113670742a1SGleb Smirnoff 
114670742a1SGleb Smirnoff 		/* Setup node without any private data */
115670742a1SGleb Smirnoff 		if ((error = ng_make_node_common(&ng_ipfw_typestruct, &fw_node))
116670742a1SGleb Smirnoff 		    != 0) {
117670742a1SGleb Smirnoff 			log(LOG_ERR, "%s: can't create ng_ipfw node", __func__);
118670742a1SGleb Smirnoff                 	break;
11974b8d63dSPedro F. Giffuni 		}
120670742a1SGleb Smirnoff 
121670742a1SGleb Smirnoff 		/* Try to name node */
122670742a1SGleb Smirnoff 		if (ng_name_node(fw_node, "ipfw") != 0)
123670742a1SGleb Smirnoff 			log(LOG_WARNING, "%s: failed to name node \"ipfw\"",
124670742a1SGleb Smirnoff 			    __func__);
125670742a1SGleb Smirnoff 
126670742a1SGleb Smirnoff 		/* Register hook */
127670742a1SGleb Smirnoff 		ng_ipfw_input_p = ng_ipfw_input;
128670742a1SGleb Smirnoff 		break;
129670742a1SGleb Smirnoff 
130670742a1SGleb Smirnoff 	case MOD_UNLOAD:
131670742a1SGleb Smirnoff 		 /*
132670742a1SGleb Smirnoff 		  * This won't happen if a node exists.
133670742a1SGleb Smirnoff 		  * ng_ipfw_input_p is already cleared.
134670742a1SGleb Smirnoff 		  */
135670742a1SGleb Smirnoff 		break;
136670742a1SGleb Smirnoff 
137670742a1SGleb Smirnoff 	default:
138670742a1SGleb Smirnoff 		error = EOPNOTSUPP;
139670742a1SGleb Smirnoff 		break;
140670742a1SGleb Smirnoff 	}
141670742a1SGleb Smirnoff 
142670742a1SGleb Smirnoff 	return (error);
143670742a1SGleb Smirnoff }
144670742a1SGleb Smirnoff 
145670742a1SGleb Smirnoff static int
ng_ipfw_constructor(node_p node)146670742a1SGleb Smirnoff ng_ipfw_constructor(node_p node)
147670742a1SGleb Smirnoff {
148670742a1SGleb Smirnoff 	return (EINVAL);	/* Only one node */
149670742a1SGleb Smirnoff }
150670742a1SGleb Smirnoff 
151670742a1SGleb Smirnoff static int
ng_ipfw_newhook(node_p node,hook_p hook,const char * name)152670742a1SGleb Smirnoff ng_ipfw_newhook(node_p node, hook_p hook, const char *name)
153670742a1SGleb Smirnoff {
154670742a1SGleb Smirnoff 	hpriv_p	hpriv;
15520e1f207SEugene Grosbein 	uint32_t cookie;
156670742a1SGleb Smirnoff 	const char *cp;
157ad1376ccSGleb Smirnoff 	char *endptr;
158670742a1SGleb Smirnoff 
159bbc8878eSGleb Smirnoff 	/* Protect from leading zero */
160bbc8878eSGleb Smirnoff 	if (name[0] == '0' && name[1] != '\0')
161bbc8878eSGleb Smirnoff 		return (EINVAL);
162bbc8878eSGleb Smirnoff 
163670742a1SGleb Smirnoff 	/* Check that name contains only digits */
164ad1376ccSGleb Smirnoff 	for (cp = name; *cp != '\0'; cp++)
165bbc8878eSGleb Smirnoff 		if (!isdigit(*cp))
166670742a1SGleb Smirnoff 			return (EINVAL);
167670742a1SGleb Smirnoff 
168670742a1SGleb Smirnoff 	/* Convert it to integer */
16920e1f207SEugene Grosbein 	cookie = (uint32_t)strtoul(name, &endptr, 10);
170ad1376ccSGleb Smirnoff 	if (*endptr != '\0')
171670742a1SGleb Smirnoff 		return (EINVAL);
172670742a1SGleb Smirnoff 
173670742a1SGleb Smirnoff 	/* Allocate memory for this hook's private data */
1741ede983cSDag-Erling Smørgrav 	hpriv = malloc(sizeof(*hpriv), M_NETGRAPH, M_NOWAIT | M_ZERO);
175670742a1SGleb Smirnoff 	if (hpriv== NULL)
176670742a1SGleb Smirnoff 		return (ENOMEM);
177670742a1SGleb Smirnoff 
178670742a1SGleb Smirnoff 	hpriv->hook = hook;
17920e1f207SEugene Grosbein 	hpriv->cookie = cookie;
180670742a1SGleb Smirnoff 
181670742a1SGleb Smirnoff 	NG_HOOK_SET_PRIVATE(hook, hpriv);
182670742a1SGleb Smirnoff 
183670742a1SGleb Smirnoff 	return(0);
184670742a1SGleb Smirnoff }
185670742a1SGleb Smirnoff 
186670742a1SGleb Smirnoff /*
187670742a1SGleb Smirnoff  * Set hooks into queueing mode, to avoid recursion between
188670742a1SGleb Smirnoff  * netgraph layer and ip_{input,output}.
189670742a1SGleb Smirnoff  */
190670742a1SGleb Smirnoff static int
ng_ipfw_connect(hook_p hook)191670742a1SGleb Smirnoff ng_ipfw_connect(hook_p hook)
192670742a1SGleb Smirnoff {
193670742a1SGleb Smirnoff 	NG_HOOK_FORCE_QUEUE(hook);
194670742a1SGleb Smirnoff 	return (0);
195670742a1SGleb Smirnoff }
196670742a1SGleb Smirnoff 
197670742a1SGleb Smirnoff /* Look up hook by name */
198fe4ead27SGleb Smirnoff static hook_p
ng_ipfw_findhook(node_p node,const char * name)199670742a1SGleb Smirnoff ng_ipfw_findhook(node_p node, const char *name)
200670742a1SGleb Smirnoff {
20120e1f207SEugene Grosbein 	uint32_t n;	/* numeric representation of hook */
202ad1376ccSGleb Smirnoff 	char *endptr;
203670742a1SGleb Smirnoff 
20420e1f207SEugene Grosbein 	n = (uint32_t)strtoul(name, &endptr, 10);
205ad1376ccSGleb Smirnoff 	if (*endptr != '\0')
206670742a1SGleb Smirnoff 		return NULL;
207670742a1SGleb Smirnoff 	return ng_ipfw_findhook1(node, n);
208670742a1SGleb Smirnoff }
209670742a1SGleb Smirnoff 
210670742a1SGleb Smirnoff /* Look up hook by rule number */
211670742a1SGleb Smirnoff static hook_p
ng_ipfw_findhook1(node_p node,uint32_t cookie)21220e1f207SEugene Grosbein ng_ipfw_findhook1(node_p node, uint32_t cookie)
213670742a1SGleb Smirnoff {
214670742a1SGleb Smirnoff 	hook_p	hook;
215670742a1SGleb Smirnoff 	hpriv_p	hpriv;
216670742a1SGleb Smirnoff 
217670742a1SGleb Smirnoff 	LIST_FOREACH(hook, &node->nd_hooks, hk_hooks) {
218670742a1SGleb Smirnoff 		hpriv = NG_HOOK_PRIVATE(hook);
21920e1f207SEugene Grosbein 		if (NG_HOOK_IS_VALID(hook) && (hpriv->cookie == cookie))
220670742a1SGleb Smirnoff                         return (hook);
221670742a1SGleb Smirnoff 	}
222670742a1SGleb Smirnoff 
223670742a1SGleb Smirnoff 	return (NULL);
224670742a1SGleb Smirnoff }
225670742a1SGleb Smirnoff 
226670742a1SGleb Smirnoff static int
ng_ipfw_rcvdata(hook_p hook,item_p item)227670742a1SGleb Smirnoff ng_ipfw_rcvdata(hook_p hook, item_p item)
228670742a1SGleb Smirnoff {
229956000b8SGleb Smirnoff 	struct m_tag *tag;
230956000b8SGleb Smirnoff 	struct ipfw_rule_ref *r;
231670742a1SGleb Smirnoff 	struct mbuf *m;
232f2a66f8eSAndrey V. Elsukov 	struct ip *ip;
233670742a1SGleb Smirnoff 
234670742a1SGleb Smirnoff 	NGI_GET_M(item, m);
235670742a1SGleb Smirnoff 	NG_FREE_ITEM(item);
236670742a1SGleb Smirnoff 
237956000b8SGleb Smirnoff 	tag = m_tag_locate(m, MTAG_IPFW_RULE, 0, NULL);
2387173b6e5SLuigi Rizzo 	if (tag == NULL) {
239670742a1SGleb Smirnoff 		NG_FREE_M(m);
240670742a1SGleb Smirnoff 		return (EINVAL);	/* XXX: find smth better */
24174b8d63dSPedro F. Giffuni 	}
242670742a1SGleb Smirnoff 
2430a1a279eSGleb Smirnoff 	if (m->m_len < sizeof(struct ip) &&
2440a1a279eSGleb Smirnoff 	    (m = m_pullup(m, sizeof(struct ip))) == NULL)
2457aabe9d9SAlexander V. Chernikov 		return (ENOBUFS);
2460a1a279eSGleb Smirnoff 
2470a1a279eSGleb Smirnoff 	ip = mtod(m, struct ip *);
248670742a1SGleb Smirnoff 
249f2a66f8eSAndrey V. Elsukov 	r = (struct ipfw_rule_ref *)(tag + 1);
250f2a66f8eSAndrey V. Elsukov 	if (r->info & IPFW_INFO_IN) {
251f2a66f8eSAndrey V. Elsukov 		switch (ip->ip_v) {
252f2a66f8eSAndrey V. Elsukov #ifdef INET
253f2a66f8eSAndrey V. Elsukov 		case IPVERSION:
254f2a66f8eSAndrey V. Elsukov 			ip_input(m);
2557aabe9d9SAlexander V. Chernikov 			return (0);
256f2a66f8eSAndrey V. Elsukov #endif
257f2a66f8eSAndrey V. Elsukov #ifdef INET6
258f2a66f8eSAndrey V. Elsukov 		case IPV6_VERSION >> 4:
259f2a66f8eSAndrey V. Elsukov 			ip6_input(m);
260f2a66f8eSAndrey V. Elsukov 			return (0);
2617aabe9d9SAlexander V. Chernikov #endif
2627aabe9d9SAlexander V. Chernikov 		}
263f2a66f8eSAndrey V. Elsukov 	} else {
264f2a66f8eSAndrey V. Elsukov 		switch (ip->ip_v) {
265f2a66f8eSAndrey V. Elsukov #ifdef INET
266f2a66f8eSAndrey V. Elsukov 		case IPVERSION:
267f2a66f8eSAndrey V. Elsukov 			return (ip_output(m, NULL, NULL, IP_FORWARDING,
268f2a66f8eSAndrey V. Elsukov 			    NULL, NULL));
269f2a66f8eSAndrey V. Elsukov #endif
270f2a66f8eSAndrey V. Elsukov #ifdef INET6
271f2a66f8eSAndrey V. Elsukov 		case IPV6_VERSION >> 4:
272f2a66f8eSAndrey V. Elsukov 			return (ip6_output(m, NULL, NULL, 0, NULL,
273f2a66f8eSAndrey V. Elsukov 			    NULL, NULL));
274f2a66f8eSAndrey V. Elsukov #endif
275f2a66f8eSAndrey V. Elsukov 		}
276670742a1SGleb Smirnoff 	}
2777aabe9d9SAlexander V. Chernikov 
2787aabe9d9SAlexander V. Chernikov 	/* unknown IP protocol version */
2797aabe9d9SAlexander V. Chernikov 	NG_FREE_M(m);
2807aabe9d9SAlexander V. Chernikov 	return (EPROTONOSUPPORT);
281670742a1SGleb Smirnoff }
282670742a1SGleb Smirnoff 
283670742a1SGleb Smirnoff static int
ng_ipfw_input(struct mbuf ** m0,struct ip_fw_args * fwa,bool tee)284cef9f220SGleb Smirnoff ng_ipfw_input(struct mbuf **m0, struct ip_fw_args *fwa, bool tee)
285670742a1SGleb Smirnoff {
286670742a1SGleb Smirnoff 	struct mbuf *m;
287670742a1SGleb Smirnoff 	hook_p	hook;
288670742a1SGleb Smirnoff 	int error = 0;
289670742a1SGleb Smirnoff 
290670742a1SGleb Smirnoff 	/*
291670742a1SGleb Smirnoff 	 * Node must be loaded and corresponding hook must be present.
292670742a1SGleb Smirnoff 	 */
293670742a1SGleb Smirnoff 	if (fw_node == NULL ||
294*becd0079SEugene Grosbein 	   (hook = ng_ipfw_findhook1(fw_node, fwa->rule.info & IPFW_INFO_MASK)) == NULL)
295670742a1SGleb Smirnoff 		return (ESRCH);		/* no hook associated with this rule */
296670742a1SGleb Smirnoff 
297670742a1SGleb Smirnoff 	/*
298670742a1SGleb Smirnoff 	 * We have two modes: in normal mode we add a tag to packet, which is
299670742a1SGleb Smirnoff 	 * important to return packet back to IP stack. In tee mode we make
300670742a1SGleb Smirnoff 	 * a copy of a packet and forward it into netgraph without a tag.
301670742a1SGleb Smirnoff 	 */
302cef9f220SGleb Smirnoff 	if (tee == false) {
3037173b6e5SLuigi Rizzo 		struct m_tag *tag;
3047173b6e5SLuigi Rizzo 		struct ipfw_rule_ref *r;
305670742a1SGleb Smirnoff 		m = *m0;
306670742a1SGleb Smirnoff 		*m0 = NULL;	/* it belongs now to netgraph */
307670742a1SGleb Smirnoff 
3087173b6e5SLuigi Rizzo 		tag = m_tag_alloc(MTAG_IPFW_RULE, 0, sizeof(*r),
3097173b6e5SLuigi Rizzo 			M_NOWAIT|M_ZERO);
3107173b6e5SLuigi Rizzo 		if (tag == NULL) {
311670742a1SGleb Smirnoff 			m_freem(m);
312670742a1SGleb Smirnoff 			return (ENOMEM);
313670742a1SGleb Smirnoff 		}
3147173b6e5SLuigi Rizzo 		r = (struct ipfw_rule_ref *)(tag + 1);
3157173b6e5SLuigi Rizzo 		*r = fwa->rule;
316b9bff254SGleb Smirnoff 		r->info &= IPFW_ONEPASS;  /* keep this info */
317cef9f220SGleb Smirnoff 		r->info |= (fwa->flags & IPFW_ARGS_IN) ?
318cef9f220SGleb Smirnoff 		    IPFW_INFO_IN : IPFW_INFO_OUT;
3197173b6e5SLuigi Rizzo 		m_tag_prepend(m, tag);
320670742a1SGleb Smirnoff 
321670742a1SGleb Smirnoff 	} else
322eb1b1807SGleb Smirnoff 		if ((m = m_dup(*m0, M_NOWAIT)) == NULL)
323670742a1SGleb Smirnoff 			return (ENOMEM);	/* which is ignored */
324670742a1SGleb Smirnoff 
3258c6f9629SGleb Smirnoff 	if (m->m_len < sizeof(struct ip) &&
3268c6f9629SGleb Smirnoff 	    (m = m_pullup(m, sizeof(struct ip))) == NULL)
3278c6f9629SGleb Smirnoff 		return (EINVAL);
3288c6f9629SGleb Smirnoff 
329670742a1SGleb Smirnoff 	NG_SEND_DATA_ONLY(error, hook, m);
330670742a1SGleb Smirnoff 
331670742a1SGleb Smirnoff 	return (error);
332670742a1SGleb Smirnoff }
333670742a1SGleb Smirnoff 
334670742a1SGleb Smirnoff static int
ng_ipfw_shutdown(node_p node)335670742a1SGleb Smirnoff ng_ipfw_shutdown(node_p node)
336670742a1SGleb Smirnoff {
337670742a1SGleb Smirnoff 
338670742a1SGleb Smirnoff 	/*
339670742a1SGleb Smirnoff 	 * After our single node has been removed,
340670742a1SGleb Smirnoff 	 * the only thing that can be done is
341670742a1SGleb Smirnoff 	 * 'kldunload ng_ipfw.ko'
342670742a1SGleb Smirnoff 	 */
343670742a1SGleb Smirnoff 	ng_ipfw_input_p = NULL;
344670742a1SGleb Smirnoff 	NG_NODE_UNREF(node);
345670742a1SGleb Smirnoff 	return (0);
346670742a1SGleb Smirnoff }
347670742a1SGleb Smirnoff 
348670742a1SGleb Smirnoff static int
ng_ipfw_disconnect(hook_p hook)349670742a1SGleb Smirnoff ng_ipfw_disconnect(hook_p hook)
350670742a1SGleb Smirnoff {
351670742a1SGleb Smirnoff 	const hpriv_p hpriv = NG_HOOK_PRIVATE(hook);
352670742a1SGleb Smirnoff 
3531ede983cSDag-Erling Smørgrav 	free(hpriv, M_NETGRAPH);
354670742a1SGleb Smirnoff 	NG_HOOK_SET_PRIVATE(hook, NULL);
355670742a1SGleb Smirnoff 
356670742a1SGleb Smirnoff 	return (0);
357670742a1SGleb Smirnoff }
358