blob: e8138da4c14f70f40449c72ec4dc4d31f2960b8e [file] [log] [blame]
Harald Weltef9e815b2005-08-09 19:30:24 -07001/* 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>
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -07006 * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
Harald Weltef9e815b2005-08-09 19:30:24 -07007 *
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
Harald Weltef9e815b2005-08-09 19:30:24 -070017#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/socket.h>
20#include <linux/kernel.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070021#include <linux/string.h>
22#include <linux/sockios.h>
23#include <linux/net.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070024#include <linux/skbuff.h>
25#include <asm/uaccess.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070026#include <net/sock.h>
27#include <linux/init.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070028
Hong zhi guo573ce262013-03-27 06:47:04 +000029#include <net/netlink.h>
Harald Weltef9e815b2005-08-09 19:30:24 -070030#include <linux/netfilter/nfnetlink.h>
31
32MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -070033MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
34MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
Harald Weltef9e815b2005-08-09 19:30:24 -070035
36static char __initdata nfversion[] = "0.30";
37
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010038static struct {
39 struct mutex mutex;
40 const struct nfnetlink_subsystem __rcu *subsys;
41} table[NFNL_SUBSYS_COUNT];
Harald Weltef9e815b2005-08-09 19:30:24 -070042
Pablo Neira Ayuso03292742012-06-29 06:15:22 +000043static const int nfnl_group2type[NFNLGRP_MAX+1] = {
44 [NFNLGRP_CONNTRACK_NEW] = NFNL_SUBSYS_CTNETLINK,
45 [NFNLGRP_CONNTRACK_UPDATE] = NFNL_SUBSYS_CTNETLINK,
46 [NFNLGRP_CONNTRACK_DESTROY] = NFNL_SUBSYS_CTNETLINK,
47 [NFNLGRP_CONNTRACK_EXP_NEW] = NFNL_SUBSYS_CTNETLINK_EXP,
48 [NFNLGRP_CONNTRACK_EXP_UPDATE] = NFNL_SUBSYS_CTNETLINK_EXP,
49 [NFNLGRP_CONNTRACK_EXP_DESTROY] = NFNL_SUBSYS_CTNETLINK_EXP,
50};
51
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010052void nfnl_lock(__u8 subsys_id)
Harald Weltef9e815b2005-08-09 19:30:24 -070053{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010054 mutex_lock(&table[subsys_id].mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070055}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070056EXPORT_SYMBOL_GPL(nfnl_lock);
Harald Weltef9e815b2005-08-09 19:30:24 -070057
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010058void nfnl_unlock(__u8 subsys_id)
Patrick McHardya3c50292007-03-14 16:39:25 -070059{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010060 mutex_unlock(&table[subsys_id].mutex);
Patrick McHardya3c50292007-03-14 16:39:25 -070061}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070062EXPORT_SYMBOL_GPL(nfnl_unlock);
Patrick McHardya3c50292007-03-14 16:39:25 -070063
Patrick McHardy0eb5db72014-02-18 18:06:48 +000064#ifdef CONFIG_PROVE_LOCKING
65int lockdep_nfnl_is_held(u8 subsys_id)
66{
67 return lockdep_is_held(&table[subsys_id].mutex);
68}
69EXPORT_SYMBOL_GPL(lockdep_nfnl_is_held);
70#endif
71
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070072int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070073{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010074 nfnl_lock(n->subsys_id);
75 if (table[n->subsys_id].subsys) {
76 nfnl_unlock(n->subsys_id);
Harald Welte0ab43f82005-08-09 19:43:44 -070077 return -EBUSY;
78 }
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010079 rcu_assign_pointer(table[n->subsys_id].subsys, n);
80 nfnl_unlock(n->subsys_id);
Harald Weltef9e815b2005-08-09 19:30:24 -070081
82 return 0;
83}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070084EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
Harald Weltef9e815b2005-08-09 19:30:24 -070085
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070086int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070087{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010088 nfnl_lock(n->subsys_id);
89 table[n->subsys_id].subsys = NULL;
90 nfnl_unlock(n->subsys_id);
Eric Dumazet6b75e3e2011-07-18 16:08:07 +020091 synchronize_rcu();
Harald Weltef9e815b2005-08-09 19:30:24 -070092 return 0;
93}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070094EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
Harald Weltef9e815b2005-08-09 19:30:24 -070095
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070096static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
Harald Weltef9e815b2005-08-09 19:30:24 -070097{
98 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
99
Pablo Neira Ayusoac0f1d92007-03-14 16:41:28 -0700100 if (subsys_id >= NFNL_SUBSYS_COUNT)
Harald Weltef9e815b2005-08-09 19:30:24 -0700101 return NULL;
102
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100103 return rcu_dereference(table[subsys_id].subsys);
Harald Weltef9e815b2005-08-09 19:30:24 -0700104}
105
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700106static inline const struct nfnl_callback *
107nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
Harald Weltef9e815b2005-08-09 19:30:24 -0700108{
109 u_int8_t cb_id = NFNL_MSG_TYPE(type);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800110
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -0700111 if (cb_id >= ss->cb_count)
Harald Weltef9e815b2005-08-09 19:30:24 -0700112 return NULL;
Harald Weltef9e815b2005-08-09 19:30:24 -0700113
114 return &ss->cb[cb_id];
115}
116
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100117int nfnetlink_has_listeners(struct net *net, unsigned int group)
Patrick McHardya2427692006-03-20 18:03:59 -0800118{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100119 return netlink_has_listeners(net->nfnl, group);
Patrick McHardya2427692006-03-20 18:03:59 -0800120}
121EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
122
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000123struct sk_buff *nfnetlink_alloc_skb(struct net *net, unsigned int size,
124 u32 dst_portid, gfp_t gfp_mask)
125{
126 return netlink_alloc_skb(net->nfnl, size, dst_portid, gfp_mask);
127}
128EXPORT_SYMBOL_GPL(nfnetlink_alloc_skb);
129
Patrick McHardyec464e52013-04-17 06:47:08 +0000130int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 portid,
Eric Dumazet95c96172012-04-15 05:58:06 +0000131 unsigned int group, int echo, gfp_t flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700132{
Patrick McHardyec464e52013-04-17 06:47:08 +0000133 return nlmsg_notify(net->nfnl, skb, portid, group, echo, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700134}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700135EXPORT_SYMBOL_GPL(nfnetlink_send);
Harald Weltef9e815b2005-08-09 19:30:24 -0700136
Patrick McHardyec464e52013-04-17 06:47:08 +0000137int nfnetlink_set_err(struct net *net, u32 portid, u32 group, int error)
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100138{
Patrick McHardyec464e52013-04-17 06:47:08 +0000139 return netlink_set_err(net->nfnl, portid, group, error);
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100140}
141EXPORT_SYMBOL_GPL(nfnetlink_set_err);
142
Patrick McHardyec464e52013-04-17 06:47:08 +0000143int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u32 portid,
144 int flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700145{
Patrick McHardyec464e52013-04-17 06:47:08 +0000146 return netlink_unicast(net->nfnl, skb, portid, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700147}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700148EXPORT_SYMBOL_GPL(nfnetlink_unicast);
Harald Weltef9e815b2005-08-09 19:30:24 -0700149
150/* Process one complete nfnetlink message. */
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700151static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Harald Weltef9e815b2005-08-09 19:30:24 -0700152{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100153 struct net *net = sock_net(skb->sk);
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700154 const struct nfnl_callback *nc;
155 const struct nfnetlink_subsystem *ss;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700156 int type, err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700157
Harald Weltef9e815b2005-08-09 19:30:24 -0700158 /* All the messages must at least contain nfgenmsg */
Hong zhi guo573ce262013-03-27 06:47:04 +0000159 if (nlmsg_len(nlh) < sizeof(struct nfgenmsg))
Harald Weltef9e815b2005-08-09 19:30:24 -0700160 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700161
162 type = nlh->nlmsg_type;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700163replay:
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200164 rcu_read_lock();
Harald Weltef9e815b2005-08-09 19:30:24 -0700165 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700166 if (!ss) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700167#ifdef CONFIG_MODULES
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200168 rcu_read_unlock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800169 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200170 rcu_read_lock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800171 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700172 if (!ss)
173#endif
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200174 {
175 rcu_read_unlock();
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700176 return -EINVAL;
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200177 }
Harald Welte0ab43f82005-08-09 19:43:44 -0700178 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700179
180 nc = nfnetlink_find_client(type, ss);
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200181 if (!nc) {
182 rcu_read_unlock();
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700183 return -EINVAL;
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200184 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700185
Harald Weltef9e815b2005-08-09 19:30:24 -0700186 {
Hong zhi guo573ce262013-03-27 06:47:04 +0000187 int min_len = nlmsg_total_size(sizeof(struct nfgenmsg));
Patrick McHardye3730572007-09-28 14:38:52 -0700188 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200189 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
190 struct nlattr *attr = (void *)nlh + min_len;
191 int attrlen = nlh->nlmsg_len - min_len;
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100192 __u8 subsys_id = NFNL_SUBSYS_ID(type);
Harald Weltef9e815b2005-08-09 19:30:24 -0700193
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200194 err = nla_parse(cda, ss->cb[cb_id].attr_count,
195 attr, attrlen, ss->cb[cb_id].policy);
Tomasz Bursztyka4009e182012-06-28 02:57:49 +0000196 if (err < 0) {
197 rcu_read_unlock();
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200198 return err;
Tomasz Bursztyka4009e182012-06-28 02:57:49 +0000199 }
Patrick McHardye3730572007-09-28 14:38:52 -0700200
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200201 if (nc->call_rcu) {
202 err = nc->call_rcu(net->nfnl, skb, nlh,
203 (const struct nlattr **)cda);
204 rcu_read_unlock();
205 } else {
206 rcu_read_unlock();
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100207 nfnl_lock(subsys_id);
208 if (rcu_dereference_protected(table[subsys_id].subsys,
Paul Bolle9df9e7832013-03-04 02:45:41 +0000209 lockdep_is_held(&table[subsys_id].mutex)) != ss ||
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200210 nfnetlink_find_client(type, ss) != nc)
211 err = -EAGAIN;
Tomasz Bursztyka59560a32012-06-28 02:57:47 +0000212 else if (nc->call)
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200213 err = nc->call(net->nfnl, skb, nlh,
214 (const struct nlattr **)cda);
Tomasz Bursztyka59560a32012-06-28 02:57:47 +0000215 else
216 err = -EINVAL;
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100217 nfnl_unlock(subsys_id);
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200218 }
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700219 if (err == -EAGAIN)
220 goto replay;
221 return err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700222 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700223}
224
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200225static void nfnetlink_rcv_batch(struct sk_buff *skb, struct nlmsghdr *nlh,
226 u_int16_t subsys_id)
227{
228 struct sk_buff *nskb, *oskb = skb;
229 struct net *net = sock_net(skb->sk);
230 const struct nfnetlink_subsystem *ss;
231 const struct nfnl_callback *nc;
232 bool success = true, done = false;
233 int err;
234
235 if (subsys_id >= NFNL_SUBSYS_COUNT)
236 return netlink_ack(skb, nlh, -EINVAL);
237replay:
238 nskb = netlink_skb_clone(oskb, GFP_KERNEL);
239 if (!nskb)
240 return netlink_ack(oskb, nlh, -ENOMEM);
241
242 nskb->sk = oskb->sk;
243 skb = nskb;
244
245 nfnl_lock(subsys_id);
246 ss = rcu_dereference_protected(table[subsys_id].subsys,
247 lockdep_is_held(&table[subsys_id].mutex));
248 if (!ss) {
249#ifdef CONFIG_MODULES
250 nfnl_unlock(subsys_id);
251 request_module("nfnetlink-subsys-%d", subsys_id);
252 nfnl_lock(subsys_id);
253 ss = rcu_dereference_protected(table[subsys_id].subsys,
254 lockdep_is_held(&table[subsys_id].mutex));
255 if (!ss)
256#endif
257 {
258 nfnl_unlock(subsys_id);
259 kfree_skb(nskb);
260 return netlink_ack(skb, nlh, -EOPNOTSUPP);
261 }
262 }
263
264 if (!ss->commit || !ss->abort) {
265 nfnl_unlock(subsys_id);
266 kfree_skb(nskb);
267 return netlink_ack(skb, nlh, -EOPNOTSUPP);
268 }
269
270 while (skb->len >= nlmsg_total_size(0)) {
271 int msglen, type;
272
273 nlh = nlmsg_hdr(skb);
274 err = 0;
275
276 if (nlh->nlmsg_len < NLMSG_HDRLEN) {
277 err = -EINVAL;
278 goto ack;
279 }
280
281 /* Only requests are handled by the kernel */
282 if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) {
283 err = -EINVAL;
284 goto ack;
285 }
286
287 type = nlh->nlmsg_type;
288 if (type == NFNL_MSG_BATCH_BEGIN) {
289 /* Malformed: Batch begin twice */
290 success = false;
291 goto done;
292 } else if (type == NFNL_MSG_BATCH_END) {
293 done = true;
294 goto done;
295 } else if (type < NLMSG_MIN_TYPE) {
296 err = -EINVAL;
297 goto ack;
298 }
299
300 /* We only accept a batch with messages for the same
301 * subsystem.
302 */
303 if (NFNL_SUBSYS_ID(type) != subsys_id) {
304 err = -EINVAL;
305 goto ack;
306 }
307
308 nc = nfnetlink_find_client(type, ss);
309 if (!nc) {
310 err = -EINVAL;
311 goto ack;
312 }
313
314 {
315 int min_len = nlmsg_total_size(sizeof(struct nfgenmsg));
316 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
317 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
318 struct nlattr *attr = (void *)nlh + min_len;
319 int attrlen = nlh->nlmsg_len - min_len;
320
321 err = nla_parse(cda, ss->cb[cb_id].attr_count,
322 attr, attrlen, ss->cb[cb_id].policy);
323 if (err < 0)
324 goto ack;
325
326 if (nc->call_batch) {
327 err = nc->call_batch(net->nfnl, skb, nlh,
328 (const struct nlattr **)cda);
329 }
330
331 /* The lock was released to autoload some module, we
332 * have to abort and start from scratch using the
333 * original skb.
334 */
335 if (err == -EAGAIN) {
336 ss->abort(skb);
337 nfnl_unlock(subsys_id);
338 kfree_skb(nskb);
339 goto replay;
340 }
341 }
342ack:
343 if (nlh->nlmsg_flags & NLM_F_ACK || err) {
344 /* We don't stop processing the batch on errors, thus,
345 * userspace gets all the errors that the batch
346 * triggers.
347 */
348 netlink_ack(skb, nlh, err);
349 if (err)
350 success = false;
351 }
352
353 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
354 if (msglen > skb->len)
355 msglen = skb->len;
356 skb_pull(skb, msglen);
357 }
358done:
359 if (success && done)
360 ss->commit(skb);
361 else
362 ss->abort(skb);
363
364 nfnl_unlock(subsys_id);
365 kfree_skb(nskb);
366}
367
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700368static void nfnetlink_rcv(struct sk_buff *skb)
Harald Weltef9e815b2005-08-09 19:30:24 -0700369{
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200370 struct nlmsghdr *nlh = nlmsg_hdr(skb);
371 struct net *net = sock_net(skb->sk);
372 int msglen;
373
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200374 if (nlh->nlmsg_len < NLMSG_HDRLEN ||
375 skb->len < nlh->nlmsg_len)
376 return;
377
Jiri Benccdbe7c22013-11-07 19:59:19 +0100378 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) {
379 netlink_ack(skb, nlh, -EPERM);
380 return;
381 }
382
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200383 if (nlh->nlmsg_type == NFNL_MSG_BATCH_BEGIN) {
384 struct nfgenmsg *nfgenmsg;
385
386 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
387 if (msglen > skb->len)
388 msglen = skb->len;
389
390 if (nlh->nlmsg_len < NLMSG_HDRLEN ||
391 skb->len < NLMSG_HDRLEN + sizeof(struct nfgenmsg))
392 return;
393
394 nfgenmsg = nlmsg_data(nlh);
395 skb_pull(skb, msglen);
396 nfnetlink_rcv_batch(skb, nlh, nfgenmsg->res_id);
397 } else {
398 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
399 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700400}
401
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000402#ifdef CONFIG_MODULES
403static void nfnetlink_bind(int group)
404{
405 const struct nfnetlink_subsystem *ss;
406 int type = nfnl_group2type[group];
407
408 rcu_read_lock();
409 ss = nfnetlink_get_subsys(type);
410 if (!ss) {
411 rcu_read_unlock();
412 request_module("nfnetlink-subsys-%d", type);
413 return;
414 }
415 rcu_read_unlock();
416}
417#endif
418
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100419static int __net_init nfnetlink_net_init(struct net *net)
Harald Weltef9e815b2005-08-09 19:30:24 -0700420{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100421 struct sock *nfnl;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000422 struct netlink_kernel_cfg cfg = {
423 .groups = NFNLGRP_MAX,
424 .input = nfnetlink_rcv,
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000425#ifdef CONFIG_MODULES
426 .bind = nfnetlink_bind,
427#endif
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000428 };
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100429
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000430 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, &cfg);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100431 if (!nfnl)
432 return -ENOMEM;
433 net->nfnl_stash = nfnl;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000434 rcu_assign_pointer(net->nfnl, nfnl);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100435 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700436}
437
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100438static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
439{
440 struct net *net;
441
442 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000443 RCU_INIT_POINTER(net->nfnl, NULL);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100444 synchronize_net();
445 list_for_each_entry(net, net_exit_list, exit_list)
446 netlink_kernel_release(net->nfnl_stash);
447}
448
449static struct pernet_operations nfnetlink_net_ops = {
450 .init = nfnetlink_net_init,
451 .exit_batch = nfnetlink_net_exit_batch,
452};
453
Adrian Bunk395dde22005-09-05 18:06:45 -0700454static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700455{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100456 int i;
457
458 for (i=0; i<NFNL_SUBSYS_COUNT; i++)
459 mutex_init(&table[i].mutex);
460
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200461 pr_info("Netfilter messages via NETLINK v%s.\n", nfversion);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100462 return register_pernet_subsys(&nfnetlink_net_ops);
Harald Weltef9e815b2005-08-09 19:30:24 -0700463}
464
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100465static void __exit nfnetlink_exit(void)
466{
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200467 pr_info("Removing netfilter NETLINK layer.\n");
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100468 unregister_pernet_subsys(&nfnetlink_net_ops);
469}
Harald Weltef9e815b2005-08-09 19:30:24 -0700470module_init(nfnetlink_init);
471module_exit(nfnetlink_exit);