2 * (C) 2013 Astaro GmbH & Co KG
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <net/netfilter/nf_conntrack.h>
12 #include <net/netfilter/nf_conntrack_labels.h>
13 #include <linux/netfilter/x_tables.h>
15 MODULE_LICENSE("GPL");
16 MODULE_AUTHOR("Florian Westphal <fw@strlen.de>");
17 MODULE_DESCRIPTION("Xtables: add/match connection trackling labels");
18 MODULE_ALIAS("ipt_connlabel");
19 MODULE_ALIAS("ip6t_connlabel");
22 connlabel_mt(const struct sk_buff
*skb
, struct xt_action_param
*par
)
24 const struct xt_connlabel_mtinfo
*info
= par
->matchinfo
;
25 enum ip_conntrack_info ctinfo
;
27 bool invert
= info
->options
& XT_CONNLABEL_OP_INVERT
;
29 ct
= nf_ct_get(skb
, &ctinfo
);
30 if (ct
== NULL
|| nf_ct_is_untracked(ct
))
33 if (info
->options
& XT_CONNLABEL_OP_SET
)
34 return (nf_connlabel_set(ct
, info
->bit
) == 0) ^ invert
;
36 return nf_connlabel_match(ct
, info
->bit
) ^ invert
;
39 static int connlabel_mt_check(const struct xt_mtchk_param
*par
)
41 const int options
= XT_CONNLABEL_OP_INVERT
|
43 struct xt_connlabel_mtinfo
*info
= par
->matchinfo
;
46 if (info
->options
& ~options
) {
47 pr_err("Unknown options in mask %x\n", info
->options
);
51 ret
= nf_ct_l3proto_try_module_get(par
->family
);
53 pr_info("cannot load conntrack support for proto=%u\n",
58 ret
= nf_connlabels_get(par
->net
, info
->bit
+ 1);
60 nf_ct_l3proto_module_put(par
->family
);
64 static void connlabel_mt_destroy(const struct xt_mtdtor_param
*par
)
66 nf_connlabels_put(par
->net
);
67 nf_ct_l3proto_module_put(par
->family
);
70 static struct xt_match connlabels_mt_reg __read_mostly
= {
72 .family
= NFPROTO_UNSPEC
,
73 .checkentry
= connlabel_mt_check
,
74 .match
= connlabel_mt
,
75 .matchsize
= sizeof(struct xt_connlabel_mtinfo
),
76 .destroy
= connlabel_mt_destroy
,
80 static int __init
connlabel_mt_init(void)
82 return xt_register_match(&connlabels_mt_reg
);
85 static void __exit
connlabel_mt_exit(void)
87 xt_unregister_match(&connlabels_mt_reg
);
90 module_init(connlabel_mt_init
);
91 module_exit(connlabel_mt_exit
);