1 /* Xtables module to match packets using a BPF filter.
2 * Copyright 2013 Google Inc.
3 * Written by Willem de Bruijn <willemb@google.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
12 #include <linux/filter.h>
14 #include <linux/netfilter/xt_bpf.h>
15 #include <linux/netfilter/x_tables.h>
17 MODULE_AUTHOR("Willem de Bruijn <willemb@google.com>");
18 MODULE_DESCRIPTION("Xtables: BPF filter match");
19 MODULE_LICENSE("GPL");
20 MODULE_ALIAS("ipt_bpf");
21 MODULE_ALIAS("ip6t_bpf");
23 static int bpf_mt_check(const struct xt_mtchk_param
*par
)
25 struct xt_bpf_info
*info
= par
->matchinfo
;
26 struct sock_fprog program
;
28 program
.len
= info
->bpf_program_num_elem
;
29 program
.filter
= (struct sock_filter __user
*) info
->bpf_program
;
30 if (sk_unattached_filter_create(&info
->filter
, &program
)) {
31 pr_info("bpf: check failed: parse error\n");
38 static bool bpf_mt(const struct sk_buff
*skb
, struct xt_action_param
*par
)
40 const struct xt_bpf_info
*info
= par
->matchinfo
;
42 return SK_RUN_FILTER(info
->filter
, skb
);
45 static void bpf_mt_destroy(const struct xt_mtdtor_param
*par
)
47 const struct xt_bpf_info
*info
= par
->matchinfo
;
48 sk_unattached_filter_destroy(info
->filter
);
51 static struct xt_match bpf_mt_reg __read_mostly
= {
54 .family
= NFPROTO_UNSPEC
,
55 .checkentry
= bpf_mt_check
,
57 .destroy
= bpf_mt_destroy
,
58 .matchsize
= sizeof(struct xt_bpf_info
),
62 static int __init
bpf_mt_init(void)
64 return xt_register_match(&bpf_mt_reg
);
67 static void __exit
bpf_mt_exit(void)
69 xt_unregister_match(&bpf_mt_reg
);
72 module_init(bpf_mt_init
);
73 module_exit(bpf_mt_exit
);