2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (C) 2002-2003 NetGroup, Politecnico di Torino (Italy)
5 * Copyright (C) 2005-2017 Jung-uk Kim <jkim@FreeBSD.org>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Politecnico di Torino nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/cdefs.h>
38 #include <sys/param.h>
39 #include <sys/kernel.h>
40 #include <sys/malloc.h>
42 #include <sys/sysctl.h>
46 #include <sys/param.h>
47 #include <sys/types.h>
51 #include <net/bpf_jitter.h>
53 static u_int
bpf_jit_accept_all(u_char
*, u_int
, u_int
);
56 MALLOC_DEFINE(M_BPFJIT
, "BPF_JIT", "BPF JIT compiler");
58 SYSCTL_NODE(_net
, OID_AUTO
, bpf_jitter
, CTLFLAG_RW
| CTLFLAG_MPSAFE
, 0,
60 int bpf_jitter_enable
= 1;
61 SYSCTL_INT(_net_bpf_jitter
, OID_AUTO
, enable
, CTLFLAG_RW
,
62 &bpf_jitter_enable
, 0, "enable BPF JIT compiler");
66 bpf_jitter(struct bpf_insn
*fp
, int nins
)
68 bpf_jit_filter
*filter
;
70 /* Allocate the filter structure. */
72 filter
= (struct bpf_jit_filter
*)malloc(sizeof(*filter
),
75 filter
= (struct bpf_jit_filter
*)malloc(sizeof(*filter
));
80 /* No filter means accept all. */
81 if (fp
== NULL
|| nins
== 0) {
82 filter
->func
= bpf_jit_accept_all
;
86 /* Create the binary. */
87 if ((filter
->func
= bpf_jit_compile(fp
, nins
, &filter
->size
)) == NULL
) {
89 free(filter
, M_BPFJIT
);
100 bpf_destroy_jit_filter(bpf_jit_filter
*filter
)
104 if (filter
->func
!= bpf_jit_accept_all
)
105 free(filter
->func
, M_BPFJIT
);
106 free(filter
, M_BPFJIT
);
108 if (filter
->func
!= bpf_jit_accept_all
)
109 munmap(filter
->func
, filter
->size
);
115 bpf_jit_accept_all(__unused u_char
*p
, __unused u_int wirelen
,
116 __unused u_int buflen
)