blob: 6c5a915cfa758bb4d8187dac9dc606201e99b458 [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 Ayusocbb81252014-09-02 18:04:53 +0200225struct nfnl_err {
226 struct list_head head;
227 struct nlmsghdr *nlh;
228 int err;
229};
230
231static int nfnl_err_add(struct list_head *list, struct nlmsghdr *nlh, int err)
232{
233 struct nfnl_err *nfnl_err;
234
235 nfnl_err = kmalloc(sizeof(struct nfnl_err), GFP_KERNEL);
236 if (nfnl_err == NULL)
237 return -ENOMEM;
238
239 nfnl_err->nlh = nlh;
240 nfnl_err->err = err;
241 list_add_tail(&nfnl_err->head, list);
242
243 return 0;
244}
245
246static void nfnl_err_del(struct nfnl_err *nfnl_err)
247{
248 list_del(&nfnl_err->head);
249 kfree(nfnl_err);
250}
251
252static void nfnl_err_reset(struct list_head *err_list)
253{
254 struct nfnl_err *nfnl_err, *next;
255
256 list_for_each_entry_safe(nfnl_err, next, err_list, head)
257 nfnl_err_del(nfnl_err);
258}
259
260static void nfnl_err_deliver(struct list_head *err_list, struct sk_buff *skb)
261{
262 struct nfnl_err *nfnl_err, *next;
263
264 list_for_each_entry_safe(nfnl_err, next, err_list, head) {
265 netlink_ack(skb, nfnl_err->nlh, nfnl_err->err);
266 nfnl_err_del(nfnl_err);
267 }
268}
269
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200270static void nfnetlink_rcv_batch(struct sk_buff *skb, struct nlmsghdr *nlh,
271 u_int16_t subsys_id)
272{
273 struct sk_buff *nskb, *oskb = skb;
274 struct net *net = sock_net(skb->sk);
275 const struct nfnetlink_subsystem *ss;
276 const struct nfnl_callback *nc;
277 bool success = true, done = false;
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200278 static LIST_HEAD(err_list);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200279 int err;
280
281 if (subsys_id >= NFNL_SUBSYS_COUNT)
282 return netlink_ack(skb, nlh, -EINVAL);
283replay:
284 nskb = netlink_skb_clone(oskb, GFP_KERNEL);
285 if (!nskb)
286 return netlink_ack(oskb, nlh, -ENOMEM);
287
288 nskb->sk = oskb->sk;
289 skb = nskb;
290
291 nfnl_lock(subsys_id);
292 ss = rcu_dereference_protected(table[subsys_id].subsys,
293 lockdep_is_held(&table[subsys_id].mutex));
294 if (!ss) {
295#ifdef CONFIG_MODULES
296 nfnl_unlock(subsys_id);
297 request_module("nfnetlink-subsys-%d", subsys_id);
298 nfnl_lock(subsys_id);
299 ss = rcu_dereference_protected(table[subsys_id].subsys,
300 lockdep_is_held(&table[subsys_id].mutex));
301 if (!ss)
302#endif
303 {
304 nfnl_unlock(subsys_id);
Denys Fedoryshchenkoecd15dd2014-05-04 13:35:37 +0200305 netlink_ack(skb, nlh, -EOPNOTSUPP);
306 return kfree_skb(nskb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200307 }
308 }
309
310 if (!ss->commit || !ss->abort) {
311 nfnl_unlock(subsys_id);
Denys Fedoryshchenkoecd15dd2014-05-04 13:35:37 +0200312 netlink_ack(skb, nlh, -EOPNOTSUPP);
313 return kfree_skb(skb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200314 }
315
316 while (skb->len >= nlmsg_total_size(0)) {
317 int msglen, type;
318
319 nlh = nlmsg_hdr(skb);
320 err = 0;
321
322 if (nlh->nlmsg_len < NLMSG_HDRLEN) {
323 err = -EINVAL;
324 goto ack;
325 }
326
327 /* Only requests are handled by the kernel */
328 if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) {
329 err = -EINVAL;
330 goto ack;
331 }
332
333 type = nlh->nlmsg_type;
334 if (type == NFNL_MSG_BATCH_BEGIN) {
335 /* Malformed: Batch begin twice */
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200336 nfnl_err_reset(&err_list);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200337 success = false;
338 goto done;
339 } else if (type == NFNL_MSG_BATCH_END) {
340 done = true;
341 goto done;
342 } else if (type < NLMSG_MIN_TYPE) {
343 err = -EINVAL;
344 goto ack;
345 }
346
347 /* We only accept a batch with messages for the same
348 * subsystem.
349 */
350 if (NFNL_SUBSYS_ID(type) != subsys_id) {
351 err = -EINVAL;
352 goto ack;
353 }
354
355 nc = nfnetlink_find_client(type, ss);
356 if (!nc) {
357 err = -EINVAL;
358 goto ack;
359 }
360
361 {
362 int min_len = nlmsg_total_size(sizeof(struct nfgenmsg));
363 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
364 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
365 struct nlattr *attr = (void *)nlh + min_len;
366 int attrlen = nlh->nlmsg_len - min_len;
367
368 err = nla_parse(cda, ss->cb[cb_id].attr_count,
369 attr, attrlen, ss->cb[cb_id].policy);
370 if (err < 0)
371 goto ack;
372
373 if (nc->call_batch) {
374 err = nc->call_batch(net->nfnl, skb, nlh,
375 (const struct nlattr **)cda);
376 }
377
378 /* The lock was released to autoload some module, we
379 * have to abort and start from scratch using the
380 * original skb.
381 */
382 if (err == -EAGAIN) {
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200383 nfnl_err_reset(&err_list);
Pablo Neira Ayusofc047332014-09-11 14:53:17 +0200384 ss->abort(oskb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200385 nfnl_unlock(subsys_id);
386 kfree_skb(nskb);
387 goto replay;
388 }
389 }
390ack:
391 if (nlh->nlmsg_flags & NLM_F_ACK || err) {
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200392 /* Errors are delivered once the full batch has been
393 * processed, this avoids that the same error is
394 * reported several times when replaying the batch.
395 */
396 if (nfnl_err_add(&err_list, nlh, err) < 0) {
397 /* We failed to enqueue an error, reset the
398 * list of errors and send OOM to userspace
399 * pointing to the batch header.
400 */
401 nfnl_err_reset(&err_list);
402 netlink_ack(skb, nlmsg_hdr(oskb), -ENOMEM);
403 success = false;
404 goto done;
405 }
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200406 /* We don't stop processing the batch on errors, thus,
407 * userspace gets all the errors that the batch
408 * triggers.
409 */
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200410 if (err)
411 success = false;
412 }
413
414 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
415 if (msglen > skb->len)
416 msglen = skb->len;
417 skb_pull(skb, msglen);
418 }
419done:
420 if (success && done)
Pablo Neira Ayusofc047332014-09-11 14:53:17 +0200421 ss->commit(oskb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200422 else
Pablo Neira Ayusofc047332014-09-11 14:53:17 +0200423 ss->abort(oskb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200424
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200425 nfnl_err_deliver(&err_list, oskb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200426 nfnl_unlock(subsys_id);
427 kfree_skb(nskb);
428}
429
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700430static void nfnetlink_rcv(struct sk_buff *skb)
Harald Weltef9e815b2005-08-09 19:30:24 -0700431{
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200432 struct nlmsghdr *nlh = nlmsg_hdr(skb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200433 int msglen;
434
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200435 if (nlh->nlmsg_len < NLMSG_HDRLEN ||
436 skb->len < nlh->nlmsg_len)
437 return;
438
Eric W. Biederman90f62cf2014-04-23 14:29:27 -0700439 if (!netlink_net_capable(skb, CAP_NET_ADMIN)) {
Jiri Benccdbe7c22013-11-07 19:59:19 +0100440 netlink_ack(skb, nlh, -EPERM);
441 return;
442 }
443
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200444 if (nlh->nlmsg_type == NFNL_MSG_BATCH_BEGIN) {
445 struct nfgenmsg *nfgenmsg;
446
447 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
448 if (msglen > skb->len)
449 msglen = skb->len;
450
451 if (nlh->nlmsg_len < NLMSG_HDRLEN ||
452 skb->len < NLMSG_HDRLEN + sizeof(struct nfgenmsg))
453 return;
454
455 nfgenmsg = nlmsg_data(nlh);
456 skb_pull(skb, msglen);
457 nfnetlink_rcv_batch(skb, nlh, nfgenmsg->res_id);
458 } else {
459 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
460 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700461}
462
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000463#ifdef CONFIG_MODULES
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400464static int nfnetlink_bind(int group)
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000465{
466 const struct nfnetlink_subsystem *ss;
467 int type = nfnl_group2type[group];
468
469 rcu_read_lock();
470 ss = nfnetlink_get_subsys(type);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000471 rcu_read_unlock();
Richard Guy Briggsbfe4bc72014-04-22 21:31:53 -0400472 if (!ss)
473 request_module("nfnetlink-subsys-%d", type);
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400474 return 0;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000475}
476#endif
477
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100478static int __net_init nfnetlink_net_init(struct net *net)
Harald Weltef9e815b2005-08-09 19:30:24 -0700479{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100480 struct sock *nfnl;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000481 struct netlink_kernel_cfg cfg = {
482 .groups = NFNLGRP_MAX,
483 .input = nfnetlink_rcv,
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000484#ifdef CONFIG_MODULES
485 .bind = nfnetlink_bind,
486#endif
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000487 };
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100488
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000489 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, &cfg);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100490 if (!nfnl)
491 return -ENOMEM;
492 net->nfnl_stash = nfnl;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000493 rcu_assign_pointer(net->nfnl, nfnl);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100494 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700495}
496
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100497static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
498{
499 struct net *net;
500
501 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000502 RCU_INIT_POINTER(net->nfnl, NULL);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100503 synchronize_net();
504 list_for_each_entry(net, net_exit_list, exit_list)
505 netlink_kernel_release(net->nfnl_stash);
506}
507
508static struct pernet_operations nfnetlink_net_ops = {
509 .init = nfnetlink_net_init,
510 .exit_batch = nfnetlink_net_exit_batch,
511};
512
Adrian Bunk395dde22005-09-05 18:06:45 -0700513static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700514{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100515 int i;
516
517 for (i=0; i<NFNL_SUBSYS_COUNT; i++)
518 mutex_init(&table[i].mutex);
519
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200520 pr_info("Netfilter messages via NETLINK v%s.\n", nfversion);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100521 return register_pernet_subsys(&nfnetlink_net_ops);
Harald Weltef9e815b2005-08-09 19:30:24 -0700522}
523
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100524static void __exit nfnetlink_exit(void)
525{
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200526 pr_info("Removing netfilter NETLINK layer.\n");
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100527 unregister_pernet_subsys(&nfnetlink_net_ops);
528}
Harald Weltef9e815b2005-08-09 19:30:24 -0700529module_init(nfnetlink_init);
530module_exit(nfnetlink_exit);