diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:39:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:39:49 +0000 |
commit | a0aa2307322cd47bbf416810ac0292925e03be87 (patch) | |
tree | 37076262a026c4b48c8a0e84f44ff9187556ca35 /src/util-bpf.c | |
parent | Initial commit. (diff) | |
download | suricata-a0aa2307322cd47bbf416810ac0292925e03be87.tar.xz suricata-a0aa2307322cd47bbf416810ac0292925e03be87.zip |
Adding upstream version 1:7.0.3.upstream/1%7.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/util-bpf.c')
-rw-r--r-- | src/util-bpf.c | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/src/util-bpf.c b/src/util-bpf.c new file mode 100644 index 0000000..dda910d --- /dev/null +++ b/src/util-bpf.c @@ -0,0 +1,96 @@ +/* Copyright (C) 2018 Open Information Security Foundation + * + * You can copy, redistribute or modify this Program under the terms of + * the GNU General Public License version 2 as published by the Free + * Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * version 2 along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA. + */ + +/** + * \file + * + * \author Eric Leblond <eric@regit.org> + */ + +#include "suricata-common.h" +#include "util-bpf.h" +#include "threads.h" +#include "conf.h" +#include "util-debug.h" + +void ConfSetBPFFilter( + ConfNode *if_root, ConfNode *if_default, const char *iface, const char **bpf_filter) +{ + if (*bpf_filter != NULL) { + SCLogInfo("BPF filter already configured"); + return; + } + + /* command line value has precedence */ + if (ConfGet("bpf-filter", bpf_filter) == 1) { + if (strlen(*bpf_filter) > 0) { + SCLogConfig("%s: using command-line provided bpf filter '%s'", iface, *bpf_filter); + } + } else if (ConfGetChildValueWithDefault(if_root, if_default, "bpf-filter", bpf_filter) == + 1) { // reading from a file + if (strlen(*bpf_filter) > 0) { + SCLogConfig("%s: using file provided bpf filter %s", iface, *bpf_filter); + } + } else { + SCLogDebug("No BPF filter found, skipping"); + } +} + +/** protect bpf filter build, as it is not thread safe */ +static SCMutex bpf_set_filter_lock = SCMUTEX_INITIALIZER; + +void SCBPFFree(struct bpf_program *program) +{ + if (program) + pcap_freecode(program); +} + +int SCBPFCompile(int snaplen_arg, int linktype_arg, struct bpf_program *program, + const char *buf, + int optimize, uint32_t mask, + char *errbuf, size_t errbuf_len) +{ + pcap_t *p; + int ret; + + p = pcap_open_dead(linktype_arg, snaplen_arg); + if (p == NULL) + return (-1); + + SCMutexLock(&bpf_set_filter_lock); + ret = pcap_compile(p, program, buf, optimize, mask); + if (ret == -1) { + if (errbuf) { + snprintf(errbuf, errbuf_len, "%s", pcap_geterr(p)); + } + pcap_close(p); + SCMutexUnlock(&bpf_set_filter_lock); + return (-1); + } + pcap_close(p); + SCMutexUnlock(&bpf_set_filter_lock); + + if (program->bf_insns == NULL) { + if (errbuf) { + snprintf(errbuf, errbuf_len, "Filter badly setup"); + } + SCBPFFree(program); + return (-1); + } + + return (ret); +} |