xref: /freebsd/sys/net/bpf_jitter.c (revision 685dc743dc3b5645e34836464128e1c0558b404b)
1ae275efcSJung-uk Kim /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
43bfea868SJung-uk Kim  * Copyright (C) 2002-2003 NetGroup, Politecnico di Torino (Italy)
5af197328SJung-uk Kim  * Copyright (C) 2005-2017 Jung-uk Kim <jkim@FreeBSD.org>
6ae275efcSJung-uk Kim  * All rights reserved.
7ae275efcSJung-uk Kim  *
8ae275efcSJung-uk Kim  * Redistribution and use in source and binary forms, with or without
9ae275efcSJung-uk Kim  * modification, are permitted provided that the following conditions
10ae275efcSJung-uk Kim  * are met:
11ae275efcSJung-uk Kim  *
12ae275efcSJung-uk Kim  * 1. Redistributions of source code must retain the above copyright
13ae275efcSJung-uk Kim  * notice, this list of conditions and the following disclaimer.
14ae275efcSJung-uk Kim  * 2. Redistributions in binary form must reproduce the above copyright
15ae275efcSJung-uk Kim  * notice, this list of conditions and the following disclaimer in the
16ae275efcSJung-uk Kim  * documentation and/or other materials provided with the distribution.
17ae275efcSJung-uk Kim  * 3. Neither the name of the Politecnico di Torino nor the names of its
18ae275efcSJung-uk Kim  * contributors may be used to endorse or promote products derived from
19ae275efcSJung-uk Kim  * this software without specific prior written permission.
20ae275efcSJung-uk Kim  *
21ae275efcSJung-uk Kim  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22ae275efcSJung-uk Kim  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23ae275efcSJung-uk Kim  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24ae275efcSJung-uk Kim  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25ae275efcSJung-uk Kim  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26ae275efcSJung-uk Kim  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27ae275efcSJung-uk Kim  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28f471e569SJung-uk Kim  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29ae275efcSJung-uk Kim  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30ae275efcSJung-uk Kim  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31ae275efcSJung-uk Kim  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32ae275efcSJung-uk Kim  */
33ae275efcSJung-uk Kim 
34ae275efcSJung-uk Kim #include <sys/cdefs.h>
353bfea868SJung-uk Kim #ifdef _KERNEL
36ae275efcSJung-uk Kim #include "opt_bpf.h"
37ae275efcSJung-uk Kim 
38ae275efcSJung-uk Kim #include <sys/param.h>
39ae275efcSJung-uk Kim #include <sys/kernel.h>
40ae275efcSJung-uk Kim #include <sys/malloc.h>
41ae275efcSJung-uk Kim #include <sys/mbuf.h>
42848c454cSJung-uk Kim #include <sys/sysctl.h>
433bfea868SJung-uk Kim #else
443bfea868SJung-uk Kim #include <stdlib.h>
45366652f9SJung-uk Kim #include <sys/mman.h>
46366652f9SJung-uk Kim #include <sys/param.h>
473bfea868SJung-uk Kim #include <sys/types.h>
483bfea868SJung-uk Kim #endif
49ae275efcSJung-uk Kim 
50ae275efcSJung-uk Kim #include <net/bpf.h>
51ae275efcSJung-uk Kim #include <net/bpf_jitter.h>
52ae275efcSJung-uk Kim 
53a2b12e3bSJung-uk Kim static u_int	bpf_jit_accept_all(u_char *, u_int, u_int);
54a2b12e3bSJung-uk Kim 
553bfea868SJung-uk Kim #ifdef _KERNEL
563bfea868SJung-uk Kim MALLOC_DEFINE(M_BPFJIT, "BPF_JIT", "BPF JIT compiler");
573bfea868SJung-uk Kim 
58*7029da5cSPawel Biernacki SYSCTL_NODE(_net, OID_AUTO, bpf_jitter, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
59*7029da5cSPawel Biernacki     "BPF JIT compiler");
60848c454cSJung-uk Kim int bpf_jitter_enable = 1;
61848c454cSJung-uk Kim SYSCTL_INT(_net_bpf_jitter, OID_AUTO, enable, CTLFLAG_RW,
62848c454cSJung-uk Kim     &bpf_jitter_enable, 0, "enable BPF JIT compiler");
63c12b965fSJung-uk Kim #endif
64848c454cSJung-uk Kim 
65ae275efcSJung-uk Kim bpf_jit_filter *
bpf_jitter(struct bpf_insn * fp,int nins)66ae275efcSJung-uk Kim bpf_jitter(struct bpf_insn *fp, int nins)
67ae275efcSJung-uk Kim {
68ae275efcSJung-uk Kim 	bpf_jit_filter *filter;
69ae275efcSJung-uk Kim 
70c12b965fSJung-uk Kim 	/* Allocate the filter structure. */
71c12b965fSJung-uk Kim #ifdef _KERNEL
723bfea868SJung-uk Kim 	filter = (struct bpf_jit_filter *)malloc(sizeof(*filter),
735ecf7736SJung-uk Kim 	    M_BPFJIT, M_NOWAIT);
74c12b965fSJung-uk Kim #else
75c12b965fSJung-uk Kim 	filter = (struct bpf_jit_filter *)malloc(sizeof(*filter));
76c12b965fSJung-uk Kim #endif
77ae275efcSJung-uk Kim 	if (filter == NULL)
783bfea868SJung-uk Kim 		return (NULL);
79ae275efcSJung-uk Kim 
80c12b965fSJung-uk Kim 	/* No filter means accept all. */
81a2b12e3bSJung-uk Kim 	if (fp == NULL || nins == 0) {
82a2b12e3bSJung-uk Kim 		filter->func = bpf_jit_accept_all;
83a2b12e3bSJung-uk Kim 		return (filter);
84a2b12e3bSJung-uk Kim 	}
85a2b12e3bSJung-uk Kim 
86c12b965fSJung-uk Kim 	/* Create the binary. */
875ecf7736SJung-uk Kim 	if ((filter->func = bpf_jit_compile(fp, nins, &filter->size)) == NULL) {
88c12b965fSJung-uk Kim #ifdef _KERNEL
89ae275efcSJung-uk Kim 		free(filter, M_BPFJIT);
90c12b965fSJung-uk Kim #else
91c12b965fSJung-uk Kim 		free(filter);
92c12b965fSJung-uk Kim #endif
933bfea868SJung-uk Kim 		return (NULL);
94ae275efcSJung-uk Kim 	}
95ae275efcSJung-uk Kim 
963bfea868SJung-uk Kim 	return (filter);
97ae275efcSJung-uk Kim }
98ae275efcSJung-uk Kim 
99ae275efcSJung-uk Kim void
bpf_destroy_jit_filter(bpf_jit_filter * filter)100ae275efcSJung-uk Kim bpf_destroy_jit_filter(bpf_jit_filter *filter)
101ae275efcSJung-uk Kim {
102ae275efcSJung-uk Kim 
103af197328SJung-uk Kim #ifdef _KERNEL
1040766f278SJonathan T. Looney 	if (filter->func != bpf_jit_accept_all)
1050766f278SJonathan T. Looney 		free(filter->func, M_BPFJIT);
106ae275efcSJung-uk Kim 	free(filter, M_BPFJIT);
1073bfea868SJung-uk Kim #else
1080766f278SJonathan T. Looney 	if (filter->func != bpf_jit_accept_all)
1090766f278SJonathan T. Looney 		munmap(filter->func, filter->size);
1103bfea868SJung-uk Kim 	free(filter);
1113bfea868SJung-uk Kim #endif
112c12b965fSJung-uk Kim }
113a2b12e3bSJung-uk Kim 
114a2b12e3bSJung-uk Kim static u_int
bpf_jit_accept_all(__unused u_char * p,__unused u_int wirelen,__unused u_int buflen)115a2b12e3bSJung-uk Kim bpf_jit_accept_all(__unused u_char *p, __unused u_int wirelen,
116a2b12e3bSJung-uk Kim     __unused u_int buflen)
117a2b12e3bSJung-uk Kim {
118a2b12e3bSJung-uk Kim 
119a2b12e3bSJung-uk Kim 	return ((u_int)-1);
120a2b12e3bSJung-uk Kim }
121