xref: /dragonfly/sys/netgraph7/bpf/ng_bpf.c (revision 783d47c4)
1 /*
2  * ng_bpf.c
3  */
4 
5 /*-
6  * Copyright (c) 1999 Whistle Communications, Inc.
7  * All rights reserved.
8  *
9  * Subject to the following obligations and disclaimer of warranty, use and
10  * redistribution of this software, in source or object code forms, with or
11  * without modifications are expressly permitted by Whistle Communications;
12  * provided, however, that:
13  * 1. Any and all reproductions of the source or object code must include the
14  *    copyright notice above and the following disclaimer of warranties; and
15  * 2. No rights are granted, in any manner or form, to use Whistle
16  *    Communications, Inc. trademarks, including the mark "WHISTLE
17  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
18  *    such appears in the above copyright notice or in the software.
19  *
20  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
21  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
22  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
23  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
25  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
26  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
27  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
28  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
29  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
30  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
31  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
32  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
36  * OF SUCH DAMAGE.
37  *
38  * Author: Archie Cobbs <archie@freebsd.org>
39  *
40  * $FreeBSD: src/sys/netgraph/ng_bpf.c,v 1.24 2008/02/04 19:26:53 mav Exp $
41  * $DragonFly: src/sys/netgraph7/ng_bpf.c,v 1.2 2008/06/26 23:05:35 dillon Exp $
42  * $Whistle: ng_bpf.c,v 1.3 1999/12/03 20:30:23 archie Exp $
43  */
44 
45 /*
46  * BPF NETGRAPH NODE TYPE
47  *
48  * This node type accepts any number of hook connections.  With each hook
49  * is associated a bpf(4) filter program, and two hook names (each possibly
50  * the empty string).  Incoming packets are compared against the filter;
51  * matching packets are delivered out the first named hook (or dropped if
52  * the empty string), and non-matching packets are delivered out the second
53  * named hook (or dropped if the empty string).
54  *
55  * Each hook also keeps statistics about how many packets have matched, etc.
56  */
57 
58 #include <sys/param.h>
59 #include <sys/systm.h>
60 #include <sys/errno.h>
61 #include <sys/kernel.h>
62 #include <sys/malloc.h>
63 #include <sys/mbuf.h>
64 
65 #include <net/bpf.h>
66 #ifdef BPF_JITTER
67 #include <net/bpf_jitter.h>
68 #endif
69 
70 #include <netgraph7/ng_message.h>
71 #include <netgraph7/netgraph.h>
72 #include <netgraph7/ng_parse.h>
73 #include "ng_bpf.h"
74 
75 #ifdef NG_SEPARATE_MALLOC
76 MALLOC_DEFINE(M_NETGRAPH_BPF, "netgraph_bpf", "netgraph bpf node ");
77 #else
78 #define M_NETGRAPH_BPF M_NETGRAPH
79 #endif
80 
81 #define OFFSETOF(s, e) ((char *)&((s *)0)->e - (char *)((s *)0))
82 
83 #define ERROUT(x)	do { error = (x); goto done; } while (0)
84 
85 /* Per hook private info */
86 struct ng_bpf_hookinfo {
87 	hook_p			hook;
88 	hook_p			match;
89 	hook_p			nomatch;
90 	struct ng_bpf_hookprog	*prog;
91 #ifdef BPF_JITTER
92 	bpf_jit_filter		*jit_prog;
93 #endif
94 	struct ng_bpf_hookstat	stats;
95 };
96 typedef struct ng_bpf_hookinfo *hinfo_p;
97 
98 /* Netgraph methods */
99 static ng_constructor_t	ng_bpf_constructor;
100 static ng_rcvmsg_t	ng_bpf_rcvmsg;
101 static ng_shutdown_t	ng_bpf_shutdown;
102 static ng_newhook_t	ng_bpf_newhook;
103 static ng_rcvdata_t	ng_bpf_rcvdata;
104 static ng_disconnect_t	ng_bpf_disconnect;
105 
106 /* Internal helper functions */
107 static int	ng_bpf_setprog(hook_p hook, const struct ng_bpf_hookprog *hp);
108 
109 /* Parse type for one struct bfp_insn */
110 static const struct ng_parse_struct_field ng_bpf_insn_type_fields[] = {
111 	{ "code",	&ng_parse_hint16_type	},
112 	{ "jt",		&ng_parse_uint8_type	},
113 	{ "jf",		&ng_parse_uint8_type	},
114 	{ "k",		&ng_parse_uint32_type	},
115 	{ NULL }
116 };
117 static const struct ng_parse_type ng_bpf_insn_type = {
118 	&ng_parse_struct_type,
119 	&ng_bpf_insn_type_fields
120 };
121 
122 /* Parse type for the field 'bpf_prog' in struct ng_bpf_hookprog */
123 static int
124 ng_bpf_hookprogary_getLength(const struct ng_parse_type *type,
125 	const u_char *start, const u_char *buf)
126 {
127 	const struct ng_bpf_hookprog *hp;
128 
129 	hp = (const struct ng_bpf_hookprog *)
130 	    (buf - OFFSETOF(struct ng_bpf_hookprog, bpf_prog));
131 	return hp->bpf_prog_len;
132 }
133 
134 static const struct ng_parse_array_info ng_bpf_hookprogary_info = {
135 	&ng_bpf_insn_type,
136 	&ng_bpf_hookprogary_getLength,
137 	NULL
138 };
139 static const struct ng_parse_type ng_bpf_hookprogary_type = {
140 	&ng_parse_array_type,
141 	&ng_bpf_hookprogary_info
142 };
143 
144 /* Parse type for struct ng_bpf_hookprog */
145 static const struct ng_parse_struct_field ng_bpf_hookprog_type_fields[]
146 	= NG_BPF_HOOKPROG_TYPE_INFO(&ng_bpf_hookprogary_type);
147 static const struct ng_parse_type ng_bpf_hookprog_type = {
148 	&ng_parse_struct_type,
149 	&ng_bpf_hookprog_type_fields
150 };
151 
152 /* Parse type for struct ng_bpf_hookstat */
153 static const struct ng_parse_struct_field ng_bpf_hookstat_type_fields[]
154 	= NG_BPF_HOOKSTAT_TYPE_INFO;
155 static const struct ng_parse_type ng_bpf_hookstat_type = {
156 	&ng_parse_struct_type,
157 	&ng_bpf_hookstat_type_fields
158 };
159 
160 /* List of commands and how to convert arguments to/from ASCII */
161 static const struct ng_cmdlist ng_bpf_cmdlist[] = {
162 	{
163 	  NGM_BPF_COOKIE,
164 	  NGM_BPF_SET_PROGRAM,
165 	  "setprogram",
166 	  &ng_bpf_hookprog_type,
167 	  NULL
168 	},
169 	{
170 	  NGM_BPF_COOKIE,
171 	  NGM_BPF_GET_PROGRAM,
172 	  "getprogram",
173 	  &ng_parse_hookbuf_type,
174 	  &ng_bpf_hookprog_type
175 	},
176 	{
177 	  NGM_BPF_COOKIE,
178 	  NGM_BPF_GET_STATS,
179 	  "getstats",
180 	  &ng_parse_hookbuf_type,
181 	  &ng_bpf_hookstat_type
182 	},
183 	{
184 	  NGM_BPF_COOKIE,
185 	  NGM_BPF_CLR_STATS,
186 	  "clrstats",
187 	  &ng_parse_hookbuf_type,
188 	  NULL
189 	},
190 	{
191 	  NGM_BPF_COOKIE,
192 	  NGM_BPF_GETCLR_STATS,
193 	  "getclrstats",
194 	  &ng_parse_hookbuf_type,
195 	  &ng_bpf_hookstat_type
196 	},
197 	{ 0 }
198 };
199 
200 /* Netgraph type descriptor */
201 static struct ng_type typestruct = {
202 	.version =	NG_ABI_VERSION,
203 	.name =		NG_BPF_NODE_TYPE,
204 	.constructor =	ng_bpf_constructor,
205 	.rcvmsg =	ng_bpf_rcvmsg,
206 	.shutdown =	ng_bpf_shutdown,
207 	.newhook =	ng_bpf_newhook,
208 	.rcvdata =	ng_bpf_rcvdata,
209 	.disconnect =	ng_bpf_disconnect,
210 	.cmdlist =	ng_bpf_cmdlist,
211 };
212 NETGRAPH_INIT(bpf, &typestruct);
213 
214 /* Default BPF program for a hook that matches nothing */
215 static const struct ng_bpf_hookprog ng_bpf_default_prog = {
216 	{ '\0' },		/* to be filled in at hook creation time */
217 	{ '\0' },
218 	{ '\0' },
219 	1,
220 	{ BPF_STMT(BPF_RET+BPF_K, 0) }
221 };
222 
223 /*
224  * Node constructor
225  *
226  * We don't keep any per-node private data
227  * We go via the hooks.
228  */
229 static int
230 ng_bpf_constructor(node_p node)
231 {
232 	NG_NODE_SET_PRIVATE(node, NULL);
233 	return (0);
234 }
235 
236 /*
237  * Callback functions to be used by NG_NODE_FOREACH_HOOK() macro.
238  */
239 static int
240 ng_bpf_addrefs(hook_p hook, void* arg)
241 {
242 	hinfo_p hip = NG_HOOK_PRIVATE(hook);
243 	hook_p h = (hook_p)arg;
244 
245 	if (strcmp(hip->prog->ifMatch, NG_HOOK_NAME(h)) == 0)
246 	    hip->match = h;
247 	if (strcmp(hip->prog->ifNotMatch, NG_HOOK_NAME(h)) == 0)
248 	    hip->nomatch = h;
249 	return (1);
250 }
251 
252 static int
253 ng_bpf_remrefs(hook_p hook, void* arg)
254 {
255 	hinfo_p hip = NG_HOOK_PRIVATE(hook);
256 	hook_p h = (hook_p)arg;
257 
258 	if (hip->match == h)
259 	    hip->match = NULL;
260 	if (hip->nomatch == h)
261 	    hip->nomatch = NULL;
262 	return (1);
263 }
264 
265 /*
266  * Add a hook
267  */
268 static int
269 ng_bpf_newhook(node_p node, hook_p hook, const char *name)
270 {
271 	hinfo_p hip;
272 	hook_p tmp;
273 	int error;
274 
275 	/* Create hook private structure */
276 	hip = kmalloc(sizeof(*hip), M_NETGRAPH_BPF,
277 		      M_WAITOK | M_NULLOK | M_ZERO);
278 	if (hip == NULL)
279 		return (ENOMEM);
280 	hip->hook = hook;
281 	NG_HOOK_SET_PRIVATE(hook, hip);
282 
283 	/* Add our reference into other hooks data. */
284 	NG_NODE_FOREACH_HOOK(node, ng_bpf_addrefs, hook, tmp);
285 
286 	/* Attach the default BPF program */
287 	if ((error = ng_bpf_setprog(hook, &ng_bpf_default_prog)) != 0) {
288 		kfree(hip, M_NETGRAPH_BPF);
289 		NG_HOOK_SET_PRIVATE(hook, NULL);
290 		return (error);
291 	}
292 
293 	/* Set hook name */
294 	strlcpy(hip->prog->thisHook, name, sizeof(hip->prog->thisHook));
295 	return (0);
296 }
297 
298 /*
299  * Receive a control message
300  */
301 static int
302 ng_bpf_rcvmsg(node_p node, item_p item, hook_p lasthook)
303 {
304 	struct ng_mesg *msg;
305 	struct ng_mesg *resp = NULL;
306 	int error = 0;
307 
308 	NGI_GET_MSG(item, msg);
309 	switch (msg->header.typecookie) {
310 	case NGM_BPF_COOKIE:
311 		switch (msg->header.cmd) {
312 		case NGM_BPF_SET_PROGRAM:
313 		    {
314 			struct ng_bpf_hookprog *const
315 			    hp = (struct ng_bpf_hookprog *)msg->data;
316 			hook_p hook;
317 
318 			/* Sanity check */
319 			if (msg->header.arglen < sizeof(*hp)
320 			    || msg->header.arglen
321 			      != NG_BPF_HOOKPROG_SIZE(hp->bpf_prog_len))
322 				ERROUT(EINVAL);
323 
324 			/* Find hook */
325 			if ((hook = ng_findhook(node, hp->thisHook)) == NULL)
326 				ERROUT(ENOENT);
327 
328 			/* Set new program */
329 			if ((error = ng_bpf_setprog(hook, hp)) != 0)
330 				ERROUT(error);
331 			break;
332 		    }
333 
334 		case NGM_BPF_GET_PROGRAM:
335 		    {
336 			struct ng_bpf_hookprog *hp;
337 			hook_p hook;
338 
339 			/* Sanity check */
340 			if (msg->header.arglen == 0)
341 				ERROUT(EINVAL);
342 			msg->data[msg->header.arglen - 1] = '\0';
343 
344 			/* Find hook */
345 			if ((hook = ng_findhook(node, msg->data)) == NULL)
346 				ERROUT(ENOENT);
347 
348 			/* Build response */
349 			hp = ((hinfo_p)NG_HOOK_PRIVATE(hook))->prog;
350 			NG_MKRESPONSE(resp, msg,
351 			    NG_BPF_HOOKPROG_SIZE(hp->bpf_prog_len), M_WAITOK | M_NULLOK);
352 			if (resp == NULL)
353 				ERROUT(ENOMEM);
354 			bcopy(hp, resp->data,
355 			   NG_BPF_HOOKPROG_SIZE(hp->bpf_prog_len));
356 			break;
357 		    }
358 
359 		case NGM_BPF_GET_STATS:
360 		case NGM_BPF_CLR_STATS:
361 		case NGM_BPF_GETCLR_STATS:
362 		    {
363 			struct ng_bpf_hookstat *stats;
364 			hook_p hook;
365 
366 			/* Sanity check */
367 			if (msg->header.arglen == 0)
368 				ERROUT(EINVAL);
369 			msg->data[msg->header.arglen - 1] = '\0';
370 
371 			/* Find hook */
372 			if ((hook = ng_findhook(node, msg->data)) == NULL)
373 				ERROUT(ENOENT);
374 			stats = &((hinfo_p)NG_HOOK_PRIVATE(hook))->stats;
375 
376 			/* Build response (if desired) */
377 			if (msg->header.cmd != NGM_BPF_CLR_STATS) {
378 				NG_MKRESPONSE(resp,
379 				    msg, sizeof(*stats), M_WAITOK | M_NULLOK);
380 				if (resp == NULL)
381 					ERROUT(ENOMEM);
382 				bcopy(stats, resp->data, sizeof(*stats));
383 			}
384 
385 			/* Clear stats (if desired) */
386 			if (msg->header.cmd != NGM_BPF_GET_STATS)
387 				bzero(stats, sizeof(*stats));
388 			break;
389 		    }
390 
391 		default:
392 			error = EINVAL;
393 			break;
394 		}
395 		break;
396 	default:
397 		error = EINVAL;
398 		break;
399 	}
400 done:
401 	NG_RESPOND_MSG(error, node, item, resp);
402 	NG_FREE_MSG(msg);
403 	return (error);
404 }
405 
406 /*
407  * Receive data on a hook
408  *
409  * Apply the filter, and then drop or forward packet as appropriate.
410  */
411 static int
412 ng_bpf_rcvdata(hook_p hook, item_p item)
413 {
414 	const hinfo_p hip = NG_HOOK_PRIVATE(hook);
415 	int totlen;
416 	int needfree = 0, error = 0, usejit = 0;
417 	u_char *data = NULL;
418 	hinfo_p dhip;
419 	hook_p dest;
420 	u_int len;
421 	struct mbuf *m;
422 
423 	m = NGI_M(item);	/* 'item' still owns it.. we are peeking */
424 	totlen = m->m_pkthdr.len;
425 	/* Update stats on incoming hook. XXX Can we do 64 bits atomically? */
426 	/* atomic_add_int64(&hip->stats.recvFrames, 1); */
427 	/* atomic_add_int64(&hip->stats.recvOctets, totlen); */
428 	hip->stats.recvFrames++;
429 	hip->stats.recvOctets += totlen;
430 
431 	/* Don't call bpf_filter() with totlen == 0! */
432 	if (totlen == 0) {
433 		len = 0;
434 		goto ready;
435 	}
436 
437 #ifdef BPF_JITTER
438 	if (bpf_jitter_enable != 0 && hip->jit_prog != NULL)
439 		usejit = 1;
440 #endif
441 
442 	/* Need to put packet in contiguous memory for bpf */
443 	if (m->m_next != NULL && totlen > MHLEN) {
444 		if (usejit) {
445 			data = kmalloc(totlen, M_NETGRAPH_BPF, M_NOWAIT);
446 			if (data == NULL) {
447 				NG_FREE_ITEM(item);
448 				return (ENOMEM);
449 			}
450 			needfree = 1;
451 			m_copydata(m, 0, totlen, (caddr_t)data);
452 		}
453 	} else {
454 		if (m->m_next != NULL) {
455 			NGI_M(item) = m = m_pullup(m, totlen);
456 			if (m == NULL) {
457 				NG_FREE_ITEM(item);
458 				return (ENOBUFS);
459 			}
460 		}
461 		data = mtod(m, u_char *);
462 	}
463 
464 	/* Run packet through filter */
465 #ifdef BPF_JITTER
466 	if (usejit)
467 		len = (*(hip->jit_prog->func))(data, totlen, totlen);
468 	else
469 #endif
470 	if (data)
471 		len = bpf_filter(hip->prog->bpf_prog, data, totlen, totlen);
472 	else
473 		len = bpf_filter(hip->prog->bpf_prog, (u_char *)m, totlen, 0);
474 	if (needfree)
475 		kfree(data, M_NETGRAPH_BPF);
476 ready:
477 	/* See if we got a match and find destination hook */
478 	if (len > 0) {
479 
480 		/* Update stats */
481 		/* XXX atomically? */
482 		hip->stats.recvMatchFrames++;
483 		hip->stats.recvMatchOctets += totlen;
484 
485 		/* Truncate packet length if required by the filter */
486 		/* Assume this never changes m */
487 		if (len < totlen) {
488 			m_adj(m, -(totlen - len));
489 			totlen = len;
490 		}
491 		dest = hip->match;
492 	} else
493 		dest = hip->nomatch;
494 	if (dest == NULL) {
495 		NG_FREE_ITEM(item);
496 		return (0);
497 	}
498 
499 	/* Deliver frame out destination hook */
500 	dhip = NG_HOOK_PRIVATE(dest);
501 	dhip->stats.xmitOctets += totlen;
502 	dhip->stats.xmitFrames++;
503 	NG_FWD_ITEM_HOOK(error, item, dest);
504 	return (error);
505 }
506 
507 /*
508  * Shutdown processing
509  */
510 static int
511 ng_bpf_shutdown(node_p node)
512 {
513 	NG_NODE_UNREF(node);
514 	return (0);
515 }
516 
517 /*
518  * Hook disconnection
519  */
520 static int
521 ng_bpf_disconnect(hook_p hook)
522 {
523 	const node_p node = NG_HOOK_NODE(hook);
524 	const hinfo_p hip = NG_HOOK_PRIVATE(hook);
525 	hook_p tmp;
526 
527 	KASSERT(hip != NULL, ("%s: null info", __func__));
528 
529 	/* Remove our reference from other hooks data. */
530 	NG_NODE_FOREACH_HOOK(node, ng_bpf_remrefs, hook, tmp);
531 
532 	kfree(hip->prog, M_NETGRAPH_BPF);
533 #ifdef BPF_JITTER
534 	if (hip->jit_prog != NULL)
535 		bpf_destroy_jit_filter(hip->jit_prog);
536 #endif
537 	kfree(hip, M_NETGRAPH_BPF);
538 	if ((NG_NODE_NUMHOOKS(node) == 0) &&
539 	    (NG_NODE_IS_VALID(node))) {
540 		ng_rmnode_self(node);
541 	}
542 	return (0);
543 }
544 
545 /************************************************************************
546 			HELPER STUFF
547  ************************************************************************/
548 
549 /*
550  * Set the BPF program associated with a hook
551  */
552 static int
553 ng_bpf_setprog(hook_p hook, const struct ng_bpf_hookprog *hp0)
554 {
555 	const hinfo_p hip = NG_HOOK_PRIVATE(hook);
556 	struct ng_bpf_hookprog *hp;
557 #ifdef BPF_JITTER
558 	bpf_jit_filter *jit_prog;
559 #endif
560 	int size;
561 
562 	/* Check program for validity */
563 	if (!bpf_validate(hp0->bpf_prog, hp0->bpf_prog_len))
564 		return (EINVAL);
565 
566 	/* Make a copy of the program */
567 	size = NG_BPF_HOOKPROG_SIZE(hp0->bpf_prog_len);
568 	hp = kmalloc(size, M_NETGRAPH_BPF, M_NOWAIT);
569 	if (hp == NULL)
570 		return (ENOMEM);
571 	bcopy(hp0, hp, size);
572 #ifdef BPF_JITTER
573 	jit_prog = bpf_jitter(hp->bpf_prog, hp->bpf_prog_len);
574 #endif
575 
576 	/* Free previous program, if any, and assign new one */
577 	if (hip->prog != NULL)
578 		kfree(hip->prog, M_NETGRAPH_BPF);
579 	hip->prog = hp;
580 #ifdef BPF_JITTER
581 	if (hip->jit_prog != NULL)
582 		bpf_destroy_jit_filter(hip->jit_prog);
583 	hip->jit_prog = jit_prog;
584 #endif
585 
586 	/* Prepare direct references on target hooks. */
587 	hip->match = ng_findhook(NG_HOOK_NODE(hook), hip->prog->ifMatch);
588 	hip->nomatch = ng_findhook(NG_HOOK_NODE(hook), hip->prog->ifNotMatch);
589 	return (0);
590 }
591