blob: ff226596e4b5e3d504d88700ccb5651c1be0799d [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
Florian Westphalb9e69e12016-02-25 10:08:36 +010031static int __net_init iptable_security_table_init(struct net *net);
32
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020033static const struct xt_table security_table = {
James Morris560ee652008-06-09 15:57:24 -070034 .name = "security",
35 .valid_hooks = SECURITY_VALID_HOOKS,
James Morris560ee652008-06-09 15:57:24 -070036 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020037 .af = NFPROTO_IPV4,
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020038 .priority = NF_IP_PRI_SECURITY,
Florian Westphalb9e69e12016-02-25 10:08:36 +010039 .table_init = iptable_security_table_init,
James Morris560ee652008-06-09 15:57:24 -070040};
41
42static unsigned int
Eric W. Biederman06198b32015-09-18 14:33:06 -050043iptable_security_hook(void *priv, struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -040044 const struct nf_hook_state *state)
James Morris560ee652008-06-09 15:57:24 -070045{
Eric W. Biederman6cb8ff3f12015-09-18 14:32:55 -050046 if (state->hook == NF_INET_LOCAL_OUT &&
Jan Engelhardt2b21e052009-06-13 06:57:10 +020047 (skb->len < sizeof(struct iphdr) ||
48 ip_hdrlen(skb) < sizeof(struct iphdr)))
49 /* Somebody is playing with raw sockets. */
50 return NF_ACCEPT;
Jan Engelhardt737535c2009-06-13 06:46:36 +020051
Eric W. Biederman6cb8ff3f12015-09-18 14:32:55 -050052 return ipt_do_table(skb, state, state->net->ipv4.iptable_security);
James Morris560ee652008-06-09 15:57:24 -070053}
54
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020055static struct nf_hook_ops *sectbl_ops __read_mostly;
James Morris560ee652008-06-09 15:57:24 -070056
Florian Westphalb9e69e12016-02-25 10:08:36 +010057static int __net_init iptable_security_table_init(struct net *net)
James Morris560ee652008-06-09 15:57:24 -070058{
Jan Engelhardte3eaa992009-06-17 22:14:54 +020059 struct ipt_replace *repl;
Florian Westphala67dd262016-02-25 10:08:35 +010060 int ret;
James Morris560ee652008-06-09 15:57:24 -070061
Florian Westphalb9e69e12016-02-25 10:08:36 +010062 if (net->ipv4.iptable_security)
63 return 0;
64
Jan Engelhardte3eaa992009-06-17 22:14:54 +020065 repl = ipt_alloc_initial_table(&security_table);
66 if (repl == NULL)
67 return -ENOMEM;
Florian Westphala67dd262016-02-25 10:08:35 +010068 ret = ipt_register_table(net, &security_table, repl, sectbl_ops,
69 &net->ipv4.iptable_security);
Jan Engelhardte3eaa992009-06-17 22:14:54 +020070 kfree(repl);
Florian Westphala67dd262016-02-25 10:08:35 +010071 return ret;
James Morris560ee652008-06-09 15:57:24 -070072}
73
74static void __net_exit iptable_security_net_exit(struct net *net)
75{
Florian Westphalb9e69e12016-02-25 10:08:36 +010076 if (!net->ipv4.iptable_security)
77 return;
78
Florian Westphala67dd262016-02-25 10:08:35 +010079 ipt_unregister_table(net, net->ipv4.iptable_security, sectbl_ops);
Florian Westphalb9e69e12016-02-25 10:08:36 +010080 net->ipv4.iptable_security = NULL;
James Morris560ee652008-06-09 15:57:24 -070081}
82
83static struct pernet_operations iptable_security_net_ops = {
James Morris560ee652008-06-09 15:57:24 -070084 .exit = iptable_security_net_exit,
85};
86
87static int __init iptable_security_init(void)
88{
89 int ret;
90
Florian Westphalb9e69e12016-02-25 10:08:36 +010091 sectbl_ops = xt_hook_ops_alloc(&security_table, iptable_security_hook);
92 if (IS_ERR(sectbl_ops))
93 return PTR_ERR(sectbl_ops);
James Morris560ee652008-06-09 15:57:24 -070094
Florian Westphalb9e69e12016-02-25 10:08:36 +010095 ret = register_pernet_subsys(&iptable_security_net_ops);
96 if (ret < 0) {
97 kfree(sectbl_ops);
98 return ret;
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020099 }
James Morris560ee652008-06-09 15:57:24 -0700100
Florian Westphalb9e69e12016-02-25 10:08:36 +0100101 ret = iptable_security_table_init(&init_net);
102 if (ret) {
103 unregister_pernet_subsys(&iptable_security_net_ops);
104 kfree(sectbl_ops);
105 }
James Morris560ee652008-06-09 15:57:24 -0700106
James Morris560ee652008-06-09 15:57:24 -0700107 return ret;
108}
109
110static void __exit iptable_security_fini(void)
111{
James Morris560ee652008-06-09 15:57:24 -0700112 unregister_pernet_subsys(&iptable_security_net_ops);
Florian Westphalb9e69e12016-02-25 10:08:36 +0100113 kfree(sectbl_ops);
James Morris560ee652008-06-09 15:57:24 -0700114}
115
116module_init(iptable_security_init);
117module_exit(iptable_security_fini);