blob: c86647ed2078f660cf0e9f8b69957a6f4c79b1f6 [file] [log] [blame]
James Morris560ee652008-06-09 15:57:24 -07001/*
2 * "security" table
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_ipv4/ip_tables.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
James Morris560ee652008-06-09 15:57:24 -070021#include <net/ip.h>
22
23MODULE_LICENSE("GPL");
24MODULE_AUTHOR("James Morris <jmorris <at> redhat.com>");
25MODULE_DESCRIPTION("iptables security table, for MAC rules");
26
27#define SECURITY_VALID_HOOKS (1 << NF_INET_LOCAL_IN) | \
28 (1 << NF_INET_FORWARD) | \
29 (1 << NF_INET_LOCAL_OUT)
30
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020031static const struct xt_table security_table = {
James Morris560ee652008-06-09 15:57:24 -070032 .name = "security",
33 .valid_hooks = SECURITY_VALID_HOOKS,
James Morris560ee652008-06-09 15:57:24 -070034 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020035 .af = NFPROTO_IPV4,
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020036 .priority = NF_IP_PRI_SECURITY,
James Morris560ee652008-06-09 15:57:24 -070037};
38
39static unsigned int
Patrick McHardy795aa6e2013-10-10 09:21:55 +020040iptable_security_hook(const struct nf_hook_ops *ops, struct sk_buff *skb,
Jan Engelhardt737535c2009-06-13 06:46:36 +020041 const struct net_device *in,
42 const struct net_device *out,
43 int (*okfn)(struct sk_buff *))
James Morris560ee652008-06-09 15:57:24 -070044{
Jan Engelhardt2b21e052009-06-13 06:57:10 +020045 const struct net *net;
Jan Engelhardt737535c2009-06-13 06:46:36 +020046
Patrick McHardy795aa6e2013-10-10 09:21:55 +020047 if (ops->hooknum == NF_INET_LOCAL_OUT &&
Jan Engelhardt2b21e052009-06-13 06:57:10 +020048 (skb->len < sizeof(struct iphdr) ||
49 ip_hdrlen(skb) < sizeof(struct iphdr)))
50 /* Somebody is playing with raw sockets. */
51 return NF_ACCEPT;
Jan Engelhardt737535c2009-06-13 06:46:36 +020052
Jan Engelhardt2b21e052009-06-13 06:57:10 +020053 net = dev_net((in != NULL) ? in : out);
Patrick McHardy795aa6e2013-10-10 09:21:55 +020054 return ipt_do_table(skb, ops->hooknum, in, out,
55 net->ipv4.iptable_security);
James Morris560ee652008-06-09 15:57:24 -070056}
57
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020058static struct nf_hook_ops *sectbl_ops __read_mostly;
James Morris560ee652008-06-09 15:57:24 -070059
60static int __net_init iptable_security_net_init(struct net *net)
61{
Jan Engelhardte3eaa992009-06-17 22:14:54 +020062 struct ipt_replace *repl;
James Morris560ee652008-06-09 15:57:24 -070063
Jan Engelhardte3eaa992009-06-17 22:14:54 +020064 repl = ipt_alloc_initial_table(&security_table);
65 if (repl == NULL)
66 return -ENOMEM;
67 net->ipv4.iptable_security =
68 ipt_register_table(net, &security_table, repl);
69 kfree(repl);
Rusty Russell8c6ffba2013-07-15 11:20:32 +093070 return PTR_ERR_OR_ZERO(net->ipv4.iptable_security);
James Morris560ee652008-06-09 15:57:24 -070071}
72
73static void __net_exit iptable_security_net_exit(struct net *net)
74{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +010075 ipt_unregister_table(net, net->ipv4.iptable_security);
James Morris560ee652008-06-09 15:57:24 -070076}
77
78static struct pernet_operations iptable_security_net_ops = {
79 .init = iptable_security_net_init,
80 .exit = iptable_security_net_exit,
81};
82
83static int __init iptable_security_init(void)
84{
85 int ret;
86
87 ret = register_pernet_subsys(&iptable_security_net_ops);
88 if (ret < 0)
89 return ret;
90
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020091 sectbl_ops = xt_hook_link(&security_table, iptable_security_hook);
92 if (IS_ERR(sectbl_ops)) {
93 ret = PTR_ERR(sectbl_ops);
James Morris560ee652008-06-09 15:57:24 -070094 goto cleanup_table;
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020095 }
James Morris560ee652008-06-09 15:57:24 -070096
97 return ret;
98
99cleanup_table:
100 unregister_pernet_subsys(&iptable_security_net_ops);
101 return ret;
102}
103
104static void __exit iptable_security_fini(void)
105{
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200106 xt_hook_unlink(&security_table, sectbl_ops);
James Morris560ee652008-06-09 15:57:24 -0700107 unregister_pernet_subsys(&iptable_security_net_ops);
108}
109
110module_init(iptable_security_init);
111module_exit(iptable_security_fini);