source: rtems-libbsd/freebsd/sys/net/bpf_jitter.c @ 09bbedc

55-freebsd-126-freebsd-12
Last change on this file since 09bbedc was 0237319, checked in by Sebastian Huber <sebastian.huber@…>, on 05/23/17 at 11:18:31

Update due to Newlib 2017-06-07 changes

The following files are now provided by Newlib:

  • arpa/inet.h
  • net/if.h
  • netinet/in.h
  • netinet/tcp.h
  • sys/socket.h
  • sys/uio.h
  • sys/un.h

The <sys/param.h> and <sys/cpuset.h> are now compatible enough to be
used directly.

Update #2833.

  • Property mode set to 100644
File size: 3.5 KB
Line 
1#include <machine/rtems-bsd-kernel-space.h>
2
3/*-
4 * Copyright (C) 2002-2003 NetGroup, Politecnico di Torino (Italy)
5 * Copyright (C) 2005-2009 Jung-uk Kim <jkim@FreeBSD.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
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.
20 *
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.
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD$");
36
37#ifdef _KERNEL
38#include <rtems/bsd/local/opt_bpf.h>
39
40#include <sys/param.h>
41#include <sys/kernel.h>
42#include <sys/malloc.h>
43#include <sys/mbuf.h>
44#include <sys/sysctl.h>
45#else
46#include <stdlib.h>
47#include <sys/mman.h>
48#include <sys/param.h>
49#include <sys/types.h>
50#endif
51
52#include <net/bpf.h>
53#include <net/bpf_jitter.h>
54
55bpf_filter_func bpf_jit_compile(struct bpf_insn *, u_int, size_t *);
56
57static u_int    bpf_jit_accept_all(u_char *, u_int, u_int);
58
59#ifdef _KERNEL
60MALLOC_DEFINE(M_BPFJIT, "BPF_JIT", "BPF JIT compiler");
61
62SYSCTL_NODE(_net, OID_AUTO, bpf_jitter, CTLFLAG_RW, 0, "BPF JIT compiler");
63int bpf_jitter_enable = 1;
64SYSCTL_INT(_net_bpf_jitter, OID_AUTO, enable, CTLFLAG_RW,
65    &bpf_jitter_enable, 0, "enable BPF JIT compiler");
66#endif
67
68bpf_jit_filter *
69bpf_jitter(struct bpf_insn *fp, int nins)
70{
71        bpf_jit_filter *filter;
72
73        /* Allocate the filter structure. */
74#ifdef _KERNEL
75        filter = (struct bpf_jit_filter *)malloc(sizeof(*filter),
76            M_BPFJIT, M_NOWAIT);
77#else
78        filter = (struct bpf_jit_filter *)malloc(sizeof(*filter));
79#endif
80        if (filter == NULL)
81                return (NULL);
82
83        /* No filter means accept all. */
84        if (fp == NULL || nins == 0) {
85                filter->func = bpf_jit_accept_all;
86                return (filter);
87        }
88
89        /* Create the binary. */
90        if ((filter->func = bpf_jit_compile(fp, nins, &filter->size)) == NULL) {
91#ifdef _KERNEL
92                free(filter, M_BPFJIT);
93#else
94                free(filter);
95#endif
96                return (NULL);
97        }
98
99        return (filter);
100}
101
102void
103bpf_destroy_jit_filter(bpf_jit_filter *filter)
104{
105
106#ifdef _KERNEL
107        if (filter->func != bpf_jit_accept_all)
108                free(filter->func, M_BPFJIT);
109        free(filter, M_BPFJIT);
110#else
111        if (filter->func != bpf_jit_accept_all)
112                munmap(filter->func, filter->size);
113        free(filter);
114#endif
115}
116
117static u_int
118bpf_jit_accept_all(__unused u_char *p, __unused u_int wirelen,
119    __unused u_int buflen)
120{
121
122        return ((u_int)-1);
123}
Note: See TracBrowser for help on using the repository browser.