netfilter: Make nf_hookfn use nf_hook_state.
[deliverable/linux.git] / net / ipv6 / netfilter / ip6table_security.c
CommitLineData
17e6e59f
JM
1/*
2 * "security" table for IPv6
3 *
4 * This is for use by Mandatory Access Control (MAC) security models,
5 * which need to be able to manage security policy in separate context
6 * to DAC.
7 *
8 * Based on iptable_mangle.c
9 *
10 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
11 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam <at> netfilter.org>
12 * Copyright (C) 2008 Red Hat, Inc., James Morris <jmorris <at> redhat.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18#include <linux/module.h>
19#include <linux/netfilter_ipv6/ip6_tables.h>
5a0e3ad6 20#include <linux/slab.h>
17e6e59f
JM
21
22MODULE_LICENSE("GPL");
23MODULE_AUTHOR("James Morris <jmorris <at> redhat.com>");
24MODULE_DESCRIPTION("ip6tables security table, for MAC rules");
25
26#define SECURITY_VALID_HOOKS (1 << NF_INET_LOCAL_IN) | \
27 (1 << NF_INET_FORWARD) | \
28 (1 << NF_INET_LOCAL_OUT)
29
35aad0ff 30static const struct xt_table security_table = {
17e6e59f
JM
31 .name = "security",
32 .valid_hooks = SECURITY_VALID_HOOKS,
17e6e59f 33 .me = THIS_MODULE,
f88e6a8a 34 .af = NFPROTO_IPV6,
2b95efe7 35 .priority = NF_IP6_PRI_SECURITY,
17e6e59f
JM
36};
37
38static unsigned int
795aa6ef 39ip6table_security_hook(const struct nf_hook_ops *ops, struct sk_buff *skb,
238e54c9 40 const struct nf_hook_state *state)
17e6e59f 41{
238e54c9 42 const struct net *net = dev_net(state->in ? state->in : state->out);
17e6e59f 43
238e54c9 44 return ip6t_do_table(skb, ops->hooknum, state->in, state->out,
795aa6ef 45 net->ipv6.ip6table_security);
17e6e59f
JM
46}
47
2b95efe7 48static struct nf_hook_ops *sectbl_ops __read_mostly;
17e6e59f
JM
49
50static int __net_init ip6table_security_net_init(struct net *net)
51{
e3eaa991 52 struct ip6t_replace *repl;
17e6e59f 53
e3eaa991
JE
54 repl = ip6t_alloc_initial_table(&security_table);
55 if (repl == NULL)
56 return -ENOMEM;
57 net->ipv6.ip6table_security =
58 ip6t_register_table(net, &security_table, repl);
59 kfree(repl);
8c6ffba0 60 return PTR_ERR_OR_ZERO(net->ipv6.ip6table_security);
17e6e59f
JM
61}
62
63static void __net_exit ip6table_security_net_exit(struct net *net)
64{
f54e9367 65 ip6t_unregister_table(net, net->ipv6.ip6table_security);
17e6e59f
JM
66}
67
68static struct pernet_operations ip6table_security_net_ops = {
69 .init = ip6table_security_net_init,
70 .exit = ip6table_security_net_exit,
71};
72
73static int __init ip6table_security_init(void)
74{
75 int ret;
76
77 ret = register_pernet_subsys(&ip6table_security_net_ops);
78 if (ret < 0)
79 return ret;
80
2b95efe7
JE
81 sectbl_ops = xt_hook_link(&security_table, ip6table_security_hook);
82 if (IS_ERR(sectbl_ops)) {
83 ret = PTR_ERR(sectbl_ops);
17e6e59f 84 goto cleanup_table;
2b95efe7 85 }
17e6e59f
JM
86
87 return ret;
88
89cleanup_table:
90 unregister_pernet_subsys(&ip6table_security_net_ops);
91 return ret;
92}
93
94static void __exit ip6table_security_fini(void)
95{
2b95efe7 96 xt_hook_unlink(&security_table, sectbl_ops);
17e6e59f
JM
97 unregister_pernet_subsys(&ip6table_security_net_ops);
98}
99
100module_init(ip6table_security_init);
101module_exit(ip6table_security_fini);
This page took 0.478473 seconds and 5 git commands to generate.