blob: 324505aaaa731a88c059e1bea5e84aaaa491fb0a [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>
20#include <net/ip.h>
21
22MODULE_LICENSE("GPL");
23MODULE_AUTHOR("James Morris <jmorris <at> redhat.com>");
24MODULE_DESCRIPTION("iptables 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
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020030static const struct
James Morris560ee652008-06-09 15:57:24 -070031{
32 struct ipt_replace repl;
33 struct ipt_standard entries[3];
34 struct ipt_error term;
Alexey Dobriyanf858b482008-07-26 17:48:38 -070035} initial_table __net_initdata = {
James Morris560ee652008-06-09 15:57:24 -070036 .repl = {
37 .name = "security",
38 .valid_hooks = SECURITY_VALID_HOOKS,
39 .num_entries = 4,
40 .size = sizeof(struct ipt_standard) * 3 + sizeof(struct ipt_error),
41 .hook_entry = {
42 [NF_INET_LOCAL_IN] = 0,
43 [NF_INET_FORWARD] = sizeof(struct ipt_standard),
44 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 2,
45 },
46 .underflow = {
47 [NF_INET_LOCAL_IN] = 0,
48 [NF_INET_FORWARD] = sizeof(struct ipt_standard),
49 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 2,
50 },
51 },
52 .entries = {
53 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_IN */
54 IPT_STANDARD_INIT(NF_ACCEPT), /* FORWARD */
55 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
56 },
57 .term = IPT_ERROR_INIT, /* ERROR */
58};
59
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020060static const struct xt_table security_table = {
James Morris560ee652008-06-09 15:57:24 -070061 .name = "security",
62 .valid_hooks = SECURITY_VALID_HOOKS,
James Morris560ee652008-06-09 15:57:24 -070063 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020064 .af = NFPROTO_IPV4,
James Morris560ee652008-06-09 15:57:24 -070065};
66
67static unsigned int
Jan Engelhardt737535c2009-06-13 06:46:36 +020068iptable_security_hook(unsigned int hook, struct sk_buff *skb,
69 const struct net_device *in,
70 const struct net_device *out,
71 int (*okfn)(struct sk_buff *))
James Morris560ee652008-06-09 15:57:24 -070072{
Jan Engelhardt2b21e052009-06-13 06:57:10 +020073 const struct net *net;
Jan Engelhardt737535c2009-06-13 06:46:36 +020074
Jan Engelhardt2b21e052009-06-13 06:57:10 +020075 if (hook == NF_INET_LOCAL_OUT &&
76 (skb->len < sizeof(struct iphdr) ||
77 ip_hdrlen(skb) < sizeof(struct iphdr)))
78 /* Somebody is playing with raw sockets. */
79 return NF_ACCEPT;
Jan Engelhardt737535c2009-06-13 06:46:36 +020080
Jan Engelhardt2b21e052009-06-13 06:57:10 +020081 net = dev_net((in != NULL) ? in : out);
82 return ipt_do_table(skb, hook, in, out, net->ipv4.iptable_security);
James Morris560ee652008-06-09 15:57:24 -070083}
84
James Morris560ee652008-06-09 15:57:24 -070085static struct nf_hook_ops ipt_ops[] __read_mostly = {
86 {
Jan Engelhardt737535c2009-06-13 06:46:36 +020087 .hook = iptable_security_hook,
James Morris560ee652008-06-09 15:57:24 -070088 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +020089 .pf = NFPROTO_IPV4,
James Morris560ee652008-06-09 15:57:24 -070090 .hooknum = NF_INET_LOCAL_IN,
91 .priority = NF_IP_PRI_SECURITY,
92 },
93 {
Jan Engelhardt737535c2009-06-13 06:46:36 +020094 .hook = iptable_security_hook,
James Morris560ee652008-06-09 15:57:24 -070095 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +020096 .pf = NFPROTO_IPV4,
James Morris560ee652008-06-09 15:57:24 -070097 .hooknum = NF_INET_FORWARD,
98 .priority = NF_IP_PRI_SECURITY,
99 },
100 {
Jan Engelhardt737535c2009-06-13 06:46:36 +0200101 .hook = iptable_security_hook,
James Morris560ee652008-06-09 15:57:24 -0700102 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +0200103 .pf = NFPROTO_IPV4,
James Morris560ee652008-06-09 15:57:24 -0700104 .hooknum = NF_INET_LOCAL_OUT,
105 .priority = NF_IP_PRI_SECURITY,
106 },
107};
108
109static int __net_init iptable_security_net_init(struct net *net)
110{
111 net->ipv4.iptable_security =
112 ipt_register_table(net, &security_table, &initial_table.repl);
113
114 if (IS_ERR(net->ipv4.iptable_security))
115 return PTR_ERR(net->ipv4.iptable_security);
116
117 return 0;
118}
119
120static void __net_exit iptable_security_net_exit(struct net *net)
121{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100122 ipt_unregister_table(net, net->ipv4.iptable_security);
James Morris560ee652008-06-09 15:57:24 -0700123}
124
125static struct pernet_operations iptable_security_net_ops = {
126 .init = iptable_security_net_init,
127 .exit = iptable_security_net_exit,
128};
129
130static int __init iptable_security_init(void)
131{
132 int ret;
133
134 ret = register_pernet_subsys(&iptable_security_net_ops);
135 if (ret < 0)
136 return ret;
137
138 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
139 if (ret < 0)
140 goto cleanup_table;
141
142 return ret;
143
144cleanup_table:
145 unregister_pernet_subsys(&iptable_security_net_ops);
146 return ret;
147}
148
149static void __exit iptable_security_fini(void)
150{
151 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
152 unregister_pernet_subsys(&iptable_security_net_ops);
153}
154
155module_init(iptable_security_init);
156module_exit(iptable_security_fini);