cregit-Linux how code gets into the kernel

Release 4.8 net/netfilter/xt_bpf.c

Directory: net/netfilter
/* Xtables module to match packets using a BPF filter.
 * Copyright 2013 Google Inc.
 * Written by Willem de Bruijn <willemb@google.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/filter.h>

#include <linux/netfilter/xt_bpf.h>
#include <linux/netfilter/x_tables.h>

MODULE_AUTHOR("Willem de Bruijn <willemb@google.com>");
MODULE_DESCRIPTION("Xtables: BPF filter match");
MODULE_LICENSE("GPL");
MODULE_ALIAS("ipt_bpf");
MODULE_ALIAS("ip6t_bpf");


static int bpf_mt_check(const struct xt_mtchk_param *par) { struct xt_bpf_info *info = par->matchinfo; struct sock_fprog_kern program; program.len = info->bpf_program_num_elem; program.filter = info->bpf_program; if (bpf_prog_create(&info->filter, &program)) { pr_info("bpf: check failed: parse error\n"); return -EINVAL; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn6697.06%133.33%
alexei starovoitovalexei starovoitov11.47%133.33%
daniel borkmanndaniel borkmann11.47%133.33%
Total68100.00%3100.00%


static bool bpf_mt(const struct sk_buff *skb, struct xt_action_param *par) { const struct xt_bpf_info *info = par->matchinfo; return BPF_PROG_RUN(info->filter, skb); }

Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn3697.30%150.00%
alexei starovoitovalexei starovoitov12.70%150.00%
Total37100.00%2100.00%


static void bpf_mt_destroy(const struct xt_mtdtor_param *par) { const struct xt_bpf_info *info = par->matchinfo; bpf_prog_destroy(info->filter); }

Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn2896.55%150.00%
alexei starovoitovalexei starovoitov13.45%150.00%
Total29100.00%2100.00%

static struct xt_match bpf_mt_reg __read_mostly = { .name = "bpf", .revision = 0, .family = NFPROTO_UNSPEC, .checkentry = bpf_mt_check, .match = bpf_mt, .destroy = bpf_mt_destroy, .matchsize = sizeof(struct xt_bpf_info), .me = THIS_MODULE, };
static int __init bpf_mt_init(void) { return xt_register_match(&bpf_mt_reg); }

Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn16100.00%1100.00%
Total16100.00%1100.00%


static void __exit bpf_mt_exit(void) { xt_unregister_match(&bpf_mt_reg); }

Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn15100.00%1100.00%
Total15100.00%1100.00%

module_init(bpf_mt_init); module_exit(bpf_mt_exit);

Overall Contributors

PersonTokensPropCommitsCommitProp
willem de bruijnwillem de bruijn26498.51%133.33%
alexei starovoitovalexei starovoitov31.12%133.33%
daniel borkmanndaniel borkmann10.37%133.33%
Total268100.00%3100.00%
Directory: net/netfilter
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.