Merge branch 'vhost' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[linux-2.6-block.git] / net / netfilter / nfnetlink.c
CommitLineData
f9e815b3
HW
1/* Netfilter messages via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
3 *
4 * (C) 2001 by Jay Schulist <jschlst@samba.org>,
5 * (C) 2002-2005 by Harald Welte <laforge@gnumonks.org>
67ca3966 6 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
f9e815b3
HW
7 *
8 * Initial netfilter messages via netlink development funded and
9 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
10 *
11 * Further development of this code funded by Astaro AG (http://www.astaro.com)
12 *
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
15 */
16
f9e815b3
HW
17#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/socket.h>
20#include <linux/kernel.h>
21#include <linux/major.h>
f9e815b3
HW
22#include <linux/timer.h>
23#include <linux/string.h>
24#include <linux/sockios.h>
25#include <linux/net.h>
26#include <linux/fcntl.h>
27#include <linux/skbuff.h>
28#include <asm/uaccess.h>
29#include <asm/system.h>
30#include <net/sock.h>
a3c5029c 31#include <net/netlink.h>
f9e815b3 32#include <linux/init.h>
f9e815b3 33
f9e815b3
HW
34#include <linux/netlink.h>
35#include <linux/netfilter/nfnetlink.h>
36
37MODULE_LICENSE("GPL");
4fdb3bb7
HW
38MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
f9e815b3
HW
40
41static char __initdata nfversion[] = "0.30";
42
7c8d4cb4 43static const struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
a3c5029c 44static DEFINE_MUTEX(nfnl_mutex);
f9e815b3 45
e6a7d3c0 46void nfnl_lock(void)
f9e815b3 47{
a3c5029c 48 mutex_lock(&nfnl_mutex);
f9e815b3 49}
e6a7d3c0 50EXPORT_SYMBOL_GPL(nfnl_lock);
f9e815b3 51
e6a7d3c0 52void nfnl_unlock(void)
a3c5029c
PM
53{
54 mutex_unlock(&nfnl_mutex);
f9e815b3 55}
e6a7d3c0 56EXPORT_SYMBOL_GPL(nfnl_unlock);
f9e815b3 57
7c8d4cb4 58int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
f9e815b3 59{
f9e815b3 60 nfnl_lock();
0ab43f84
HW
61 if (subsys_table[n->subsys_id]) {
62 nfnl_unlock();
63 return -EBUSY;
64 }
f9e815b3
HW
65 subsys_table[n->subsys_id] = n;
66 nfnl_unlock();
67
68 return 0;
69}
f4bc177f 70EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
f9e815b3 71
7c8d4cb4 72int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
f9e815b3 73{
f9e815b3
HW
74 nfnl_lock();
75 subsys_table[n->subsys_id] = NULL;
76 nfnl_unlock();
77
78 return 0;
79}
f4bc177f 80EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
f9e815b3 81
7c8d4cb4 82static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
f9e815b3
HW
83{
84 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
85
ac0f1d98 86 if (subsys_id >= NFNL_SUBSYS_COUNT)
f9e815b3
HW
87 return NULL;
88
89 return subsys_table[subsys_id];
90}
91
7c8d4cb4
PM
92static inline const struct nfnl_callback *
93nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
f9e815b3
HW
94{
95 u_int8_t cb_id = NFNL_MSG_TYPE(type);
601e68e1 96
67ca3966 97 if (cb_id >= ss->cb_count)
f9e815b3 98 return NULL;
f9e815b3
HW
99
100 return &ss->cb[cb_id];
101}
102
cd8c20b6 103int nfnetlink_has_listeners(struct net *net, unsigned int group)
a2427692 104{
cd8c20b6 105 return netlink_has_listeners(net->nfnl, group);
a2427692
PM
106}
107EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
108
cd8c20b6 109int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 pid,
e34d5c1a 110 unsigned group, int echo, gfp_t flags)
f9e815b3 111{
cd8c20b6 112 return nlmsg_notify(net->nfnl, skb, pid, group, echo, flags);
f9e815b3 113}
f4bc177f 114EXPORT_SYMBOL_GPL(nfnetlink_send);
f9e815b3 115
37b7ef72 116int nfnetlink_set_err(struct net *net, u32 pid, u32 group, int error)
dd5b6ce6 117{
37b7ef72 118 return netlink_set_err(net->nfnl, pid, group, error);
dd5b6ce6
PNA
119}
120EXPORT_SYMBOL_GPL(nfnetlink_set_err);
121
cd8c20b6 122int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u_int32_t pid, int flags)
f9e815b3 123{
cd8c20b6 124 return netlink_unicast(net->nfnl, skb, pid, flags);
f9e815b3 125}
f4bc177f 126EXPORT_SYMBOL_GPL(nfnetlink_unicast);
f9e815b3
HW
127
128/* Process one complete nfnetlink message. */
1d00a4eb 129static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
f9e815b3 130{
cd8c20b6 131 struct net *net = sock_net(skb->sk);
7c8d4cb4
PM
132 const struct nfnl_callback *nc;
133 const struct nfnetlink_subsystem *ss;
1d00a4eb 134 int type, err;
f9e815b3 135
1d00a4eb
TG
136 if (security_netlink_recv(skb, CAP_NET_ADMIN))
137 return -EPERM;
37d2e7a2 138
f9e815b3 139 /* All the messages must at least contain nfgenmsg */
f49c857f 140 if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nfgenmsg)))
f9e815b3 141 return 0;
f9e815b3
HW
142
143 type = nlh->nlmsg_type;
e6a7d3c0 144replay:
f9e815b3 145 ss = nfnetlink_get_subsys(type);
0ab43f84 146 if (!ss) {
95a5afca 147#ifdef CONFIG_MODULES
3b71535f 148 nfnl_unlock();
37d2e7a2 149 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
a3c5029c 150 nfnl_lock();
37d2e7a2 151 ss = nfnetlink_get_subsys(type);
0ab43f84
HW
152 if (!ss)
153#endif
1d00a4eb 154 return -EINVAL;
0ab43f84 155 }
f9e815b3
HW
156
157 nc = nfnetlink_find_client(type, ss);
67ca3966 158 if (!nc)
1d00a4eb 159 return -EINVAL;
f9e815b3 160
f9e815b3 161 {
e3730578
PM
162 int min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
163 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
f49c857f
PNA
164 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
165 struct nlattr *attr = (void *)nlh + min_len;
166 int attrlen = nlh->nlmsg_len - min_len;
167
168 err = nla_parse(cda, ss->cb[cb_id].attr_count,
169 attr, attrlen, ss->cb[cb_id].policy);
170 if (err < 0)
171 return err;
601e68e1 172
cd8c20b6 173 err = nc->call(net->nfnl, skb, nlh, (const struct nlattr **)cda);
e6a7d3c0
PNA
174 if (err == -EAGAIN)
175 goto replay;
176 return err;
f9e815b3 177 }
f9e815b3
HW
178}
179
cd40b7d3 180static void nfnetlink_rcv(struct sk_buff *skb)
f9e815b3 181{
cd40b7d3
DL
182 nfnl_lock();
183 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
184 nfnl_unlock();
f9e815b3
HW
185}
186
cd8c20b6 187static int __net_init nfnetlink_net_init(struct net *net)
f9e815b3 188{
cd8c20b6
AD
189 struct sock *nfnl;
190
191 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, NFNLGRP_MAX,
192 nfnetlink_rcv, NULL, THIS_MODULE);
193 if (!nfnl)
194 return -ENOMEM;
195 net->nfnl_stash = nfnl;
196 rcu_assign_pointer(net->nfnl, nfnl);
197 return 0;
f9e815b3
HW
198}
199
cd8c20b6 200static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
f9e815b3 201{
cd8c20b6 202 struct net *net;
f9e815b3 203
cd8c20b6
AD
204 list_for_each_entry(net, net_exit_list, exit_list)
205 rcu_assign_pointer(net->nfnl, NULL);
206 synchronize_net();
207 list_for_each_entry(net, net_exit_list, exit_list)
208 netlink_kernel_release(net->nfnl_stash);
209}
f9e815b3 210
cd8c20b6
AD
211static struct pernet_operations nfnetlink_net_ops = {
212 .init = nfnetlink_net_init,
213 .exit_batch = nfnetlink_net_exit_batch,
214};
215
216static int __init nfnetlink_init(void)
217{
218 printk("Netfilter messages via NETLINK v%s.\n", nfversion);
219 return register_pernet_subsys(&nfnetlink_net_ops);
f9e815b3
HW
220}
221
cd8c20b6
AD
222static void __exit nfnetlink_exit(void)
223{
224 printk("Removing netfilter NETLINK layer.\n");
225 unregister_pernet_subsys(&nfnetlink_net_ops);
226}
f9e815b3
HW
227module_init(nfnetlink_init);
228module_exit(nfnetlink_exit);