blob: 70277b11f742e8f0a2756c2ba54e1565419adc95 [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,
Pablo Neira Ayuso97840cb2014-11-14 18:14:33 +010050 [NFNLGRP_NFTABLES] = NFNL_SUBSYS_NFTABLES,
51 [NFNLGRP_ACCT_QUOTA] = NFNL_SUBSYS_ACCT,
Pablo Neira Ayuso03292742012-06-29 06:15:22 +000052};
53
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010054void nfnl_lock(__u8 subsys_id)
Harald Weltef9e815b2005-08-09 19:30:24 -070055{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010056 mutex_lock(&table[subsys_id].mutex);
Harald Weltef9e815b2005-08-09 19:30:24 -070057}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070058EXPORT_SYMBOL_GPL(nfnl_lock);
Harald Weltef9e815b2005-08-09 19:30:24 -070059
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010060void nfnl_unlock(__u8 subsys_id)
Patrick McHardya3c50292007-03-14 16:39:25 -070061{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010062 mutex_unlock(&table[subsys_id].mutex);
Patrick McHardya3c50292007-03-14 16:39:25 -070063}
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -070064EXPORT_SYMBOL_GPL(nfnl_unlock);
Patrick McHardya3c50292007-03-14 16:39:25 -070065
Patrick McHardy0eb5db72014-02-18 18:06:48 +000066#ifdef CONFIG_PROVE_LOCKING
67int lockdep_nfnl_is_held(u8 subsys_id)
68{
69 return lockdep_is_held(&table[subsys_id].mutex);
70}
71EXPORT_SYMBOL_GPL(lockdep_nfnl_is_held);
72#endif
73
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070074int nfnetlink_subsys_register(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070075{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010076 nfnl_lock(n->subsys_id);
77 if (table[n->subsys_id].subsys) {
78 nfnl_unlock(n->subsys_id);
Harald Welte0ab43f82005-08-09 19:43:44 -070079 return -EBUSY;
80 }
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010081 rcu_assign_pointer(table[n->subsys_id].subsys, n);
82 nfnl_unlock(n->subsys_id);
Harald Weltef9e815b2005-08-09 19:30:24 -070083
84 return 0;
85}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070086EXPORT_SYMBOL_GPL(nfnetlink_subsys_register);
Harald Weltef9e815b2005-08-09 19:30:24 -070087
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070088int nfnetlink_subsys_unregister(const struct nfnetlink_subsystem *n)
Harald Weltef9e815b2005-08-09 19:30:24 -070089{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +010090 nfnl_lock(n->subsys_id);
91 table[n->subsys_id].subsys = NULL;
92 nfnl_unlock(n->subsys_id);
Eric Dumazet6b75e3e2011-07-18 16:08:07 +020093 synchronize_rcu();
Harald Weltef9e815b2005-08-09 19:30:24 -070094 return 0;
95}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -070096EXPORT_SYMBOL_GPL(nfnetlink_subsys_unregister);
Harald Weltef9e815b2005-08-09 19:30:24 -070097
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -070098static inline const struct nfnetlink_subsystem *nfnetlink_get_subsys(u_int16_t type)
Harald Weltef9e815b2005-08-09 19:30:24 -070099{
100 u_int8_t subsys_id = NFNL_SUBSYS_ID(type);
101
Pablo Neira Ayusoac0f1d92007-03-14 16:41:28 -0700102 if (subsys_id >= NFNL_SUBSYS_COUNT)
Harald Weltef9e815b2005-08-09 19:30:24 -0700103 return NULL;
104
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100105 return rcu_dereference(table[subsys_id].subsys);
Harald Weltef9e815b2005-08-09 19:30:24 -0700106}
107
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700108static inline const struct nfnl_callback *
109nfnetlink_find_client(u_int16_t type, const struct nfnetlink_subsystem *ss)
Harald Weltef9e815b2005-08-09 19:30:24 -0700110{
111 u_int8_t cb_id = NFNL_MSG_TYPE(type);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800112
Pablo Neira Ayuso67ca3962007-03-14 16:40:38 -0700113 if (cb_id >= ss->cb_count)
Harald Weltef9e815b2005-08-09 19:30:24 -0700114 return NULL;
Harald Weltef9e815b2005-08-09 19:30:24 -0700115
116 return &ss->cb[cb_id];
117}
118
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100119int nfnetlink_has_listeners(struct net *net, unsigned int group)
Patrick McHardya2427692006-03-20 18:03:59 -0800120{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100121 return netlink_has_listeners(net->nfnl, group);
Patrick McHardya2427692006-03-20 18:03:59 -0800122}
123EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
124
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000125struct sk_buff *nfnetlink_alloc_skb(struct net *net, unsigned int size,
126 u32 dst_portid, gfp_t gfp_mask)
127{
128 return netlink_alloc_skb(net->nfnl, size, dst_portid, gfp_mask);
129}
130EXPORT_SYMBOL_GPL(nfnetlink_alloc_skb);
131
Patrick McHardyec464e52013-04-17 06:47:08 +0000132int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 portid,
Eric Dumazet95c96172012-04-15 05:58:06 +0000133 unsigned int group, int echo, gfp_t flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700134{
Patrick McHardyec464e52013-04-17 06:47:08 +0000135 return nlmsg_notify(net->nfnl, skb, portid, group, echo, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700136}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700137EXPORT_SYMBOL_GPL(nfnetlink_send);
Harald Weltef9e815b2005-08-09 19:30:24 -0700138
Patrick McHardyec464e52013-04-17 06:47:08 +0000139int nfnetlink_set_err(struct net *net, u32 portid, u32 group, int error)
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100140{
Patrick McHardyec464e52013-04-17 06:47:08 +0000141 return netlink_set_err(net->nfnl, portid, group, error);
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +0100142}
143EXPORT_SYMBOL_GPL(nfnetlink_set_err);
144
Patrick McHardyec464e52013-04-17 06:47:08 +0000145int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u32 portid,
146 int flags)
Harald Weltef9e815b2005-08-09 19:30:24 -0700147{
Patrick McHardyec464e52013-04-17 06:47:08 +0000148 return netlink_unicast(net->nfnl, skb, portid, flags);
Harald Weltef9e815b2005-08-09 19:30:24 -0700149}
Pablo Neira Ayusof4bc1772007-03-14 16:42:11 -0700150EXPORT_SYMBOL_GPL(nfnetlink_unicast);
Harald Weltef9e815b2005-08-09 19:30:24 -0700151
152/* Process one complete nfnetlink message. */
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700153static int nfnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Harald Weltef9e815b2005-08-09 19:30:24 -0700154{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100155 struct net *net = sock_net(skb->sk);
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700156 const struct nfnl_callback *nc;
157 const struct nfnetlink_subsystem *ss;
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700158 int type, err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700159
Harald Weltef9e815b2005-08-09 19:30:24 -0700160 /* All the messages must at least contain nfgenmsg */
Hong zhi guo573ce262013-03-27 06:47:04 +0000161 if (nlmsg_len(nlh) < sizeof(struct nfgenmsg))
Harald Weltef9e815b2005-08-09 19:30:24 -0700162 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700163
164 type = nlh->nlmsg_type;
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700165replay:
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200166 rcu_read_lock();
Harald Weltef9e815b2005-08-09 19:30:24 -0700167 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700168 if (!ss) {
Johannes Berg95a5afc2008-10-16 15:24:51 -0700169#ifdef CONFIG_MODULES
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200170 rcu_read_unlock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800171 request_module("nfnetlink-subsys-%d", NFNL_SUBSYS_ID(type));
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200172 rcu_read_lock();
Harald Welte37d2e7a2005-11-14 15:24:59 -0800173 ss = nfnetlink_get_subsys(type);
Harald Welte0ab43f82005-08-09 19:43:44 -0700174 if (!ss)
175#endif
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200176 {
177 rcu_read_unlock();
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700178 return -EINVAL;
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200179 }
Harald Welte0ab43f82005-08-09 19:43:44 -0700180 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700181
182 nc = nfnetlink_find_client(type, ss);
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200183 if (!nc) {
184 rcu_read_unlock();
Thomas Graf1d00a4e2007-03-22 23:30:12 -0700185 return -EINVAL;
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200186 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700187
Harald Weltef9e815b2005-08-09 19:30:24 -0700188 {
Hong zhi guo573ce262013-03-27 06:47:04 +0000189 int min_len = nlmsg_total_size(sizeof(struct nfgenmsg));
Patrick McHardye3730572007-09-28 14:38:52 -0700190 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200191 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
192 struct nlattr *attr = (void *)nlh + min_len;
193 int attrlen = nlh->nlmsg_len - min_len;
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100194 __u8 subsys_id = NFNL_SUBSYS_ID(type);
Harald Weltef9e815b2005-08-09 19:30:24 -0700195
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200196 err = nla_parse(cda, ss->cb[cb_id].attr_count,
197 attr, attrlen, ss->cb[cb_id].policy);
Tomasz Bursztyka4009e182012-06-28 02:57:49 +0000198 if (err < 0) {
199 rcu_read_unlock();
Pablo Neira Ayusof49c8572009-06-02 20:03:33 +0200200 return err;
Tomasz Bursztyka4009e182012-06-28 02:57:49 +0000201 }
Patrick McHardye3730572007-09-28 14:38:52 -0700202
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200203 if (nc->call_rcu) {
204 err = nc->call_rcu(net->nfnl, skb, nlh,
205 (const struct nlattr **)cda);
206 rcu_read_unlock();
207 } else {
208 rcu_read_unlock();
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100209 nfnl_lock(subsys_id);
210 if (rcu_dereference_protected(table[subsys_id].subsys,
Paul Bolle9df9e7832013-03-04 02:45:41 +0000211 lockdep_is_held(&table[subsys_id].mutex)) != ss ||
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200212 nfnetlink_find_client(type, ss) != nc)
213 err = -EAGAIN;
Tomasz Bursztyka59560a32012-06-28 02:57:47 +0000214 else if (nc->call)
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200215 err = nc->call(net->nfnl, skb, nlh,
216 (const struct nlattr **)cda);
Tomasz Bursztyka59560a32012-06-28 02:57:47 +0000217 else
218 err = -EINVAL;
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100219 nfnl_unlock(subsys_id);
Eric Dumazet6b75e3e2011-07-18 16:08:07 +0200220 }
Pablo Neira Ayusoe6a7d3c2008-10-14 11:58:31 -0700221 if (err == -EAGAIN)
222 goto replay;
223 return err;
Harald Weltef9e815b2005-08-09 19:30:24 -0700224 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700225}
226
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200227struct nfnl_err {
228 struct list_head head;
229 struct nlmsghdr *nlh;
230 int err;
231};
232
233static int nfnl_err_add(struct list_head *list, struct nlmsghdr *nlh, int err)
234{
235 struct nfnl_err *nfnl_err;
236
237 nfnl_err = kmalloc(sizeof(struct nfnl_err), GFP_KERNEL);
238 if (nfnl_err == NULL)
239 return -ENOMEM;
240
241 nfnl_err->nlh = nlh;
242 nfnl_err->err = err;
243 list_add_tail(&nfnl_err->head, list);
244
245 return 0;
246}
247
248static void nfnl_err_del(struct nfnl_err *nfnl_err)
249{
250 list_del(&nfnl_err->head);
251 kfree(nfnl_err);
252}
253
254static void nfnl_err_reset(struct list_head *err_list)
255{
256 struct nfnl_err *nfnl_err, *next;
257
258 list_for_each_entry_safe(nfnl_err, next, err_list, head)
259 nfnl_err_del(nfnl_err);
260}
261
262static void nfnl_err_deliver(struct list_head *err_list, struct sk_buff *skb)
263{
264 struct nfnl_err *nfnl_err, *next;
265
266 list_for_each_entry_safe(nfnl_err, next, err_list, head) {
267 netlink_ack(skb, nfnl_err->nlh, nfnl_err->err);
268 nfnl_err_del(nfnl_err);
269 }
270}
271
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200272enum {
273 NFNL_BATCH_FAILURE = (1 << 0),
274 NFNL_BATCH_DONE = (1 << 1),
275 NFNL_BATCH_REPLAY = (1 << 2),
276};
277
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200278static void nfnetlink_rcv_batch(struct sk_buff *skb, struct nlmsghdr *nlh,
279 u_int16_t subsys_id)
280{
Duan Jiong0f816232014-12-10 17:21:59 +0800281 struct sk_buff *oskb = skb;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200282 struct net *net = sock_net(skb->sk);
283 const struct nfnetlink_subsystem *ss;
284 const struct nfnl_callback *nc;
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200285 static LIST_HEAD(err_list);
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200286 u32 status;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200287 int err;
288
289 if (subsys_id >= NFNL_SUBSYS_COUNT)
290 return netlink_ack(skb, nlh, -EINVAL);
291replay:
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200292 status = 0;
293
Duan Jiong0f816232014-12-10 17:21:59 +0800294 skb = netlink_skb_clone(oskb, GFP_KERNEL);
295 if (!skb)
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200296 return netlink_ack(oskb, nlh, -ENOMEM);
297
Duan Jiong0f816232014-12-10 17:21:59 +0800298 skb->sk = oskb->sk;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200299
300 nfnl_lock(subsys_id);
301 ss = rcu_dereference_protected(table[subsys_id].subsys,
302 lockdep_is_held(&table[subsys_id].mutex));
303 if (!ss) {
304#ifdef CONFIG_MODULES
305 nfnl_unlock(subsys_id);
306 request_module("nfnetlink-subsys-%d", subsys_id);
307 nfnl_lock(subsys_id);
308 ss = rcu_dereference_protected(table[subsys_id].subsys,
309 lockdep_is_held(&table[subsys_id].mutex));
310 if (!ss)
311#endif
312 {
313 nfnl_unlock(subsys_id);
Denys Fedoryshchenkoecd15dd2014-05-04 13:35:37 +0200314 netlink_ack(skb, nlh, -EOPNOTSUPP);
Duan Jiong0f816232014-12-10 17:21:59 +0800315 return kfree_skb(skb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200316 }
317 }
318
319 if (!ss->commit || !ss->abort) {
320 nfnl_unlock(subsys_id);
Denys Fedoryshchenkoecd15dd2014-05-04 13:35:37 +0200321 netlink_ack(skb, nlh, -EOPNOTSUPP);
322 return kfree_skb(skb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200323 }
324
325 while (skb->len >= nlmsg_total_size(0)) {
326 int msglen, type;
327
328 nlh = nlmsg_hdr(skb);
329 err = 0;
330
Pablo Neira Ayuso9ea2aa82015-01-04 15:20:29 +0100331 if (nlmsg_len(nlh) < sizeof(struct nfgenmsg) ||
332 skb->len < nlh->nlmsg_len) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200333 err = -EINVAL;
334 goto ack;
335 }
336
337 /* Only requests are handled by the kernel */
338 if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) {
339 err = -EINVAL;
340 goto ack;
341 }
342
343 type = nlh->nlmsg_type;
344 if (type == NFNL_MSG_BATCH_BEGIN) {
345 /* Malformed: Batch begin twice */
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200346 nfnl_err_reset(&err_list);
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200347 status |= NFNL_BATCH_FAILURE;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200348 goto done;
349 } else if (type == NFNL_MSG_BATCH_END) {
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200350 status |= NFNL_BATCH_DONE;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200351 goto done;
352 } else if (type < NLMSG_MIN_TYPE) {
353 err = -EINVAL;
354 goto ack;
355 }
356
357 /* We only accept a batch with messages for the same
358 * subsystem.
359 */
360 if (NFNL_SUBSYS_ID(type) != subsys_id) {
361 err = -EINVAL;
362 goto ack;
363 }
364
365 nc = nfnetlink_find_client(type, ss);
366 if (!nc) {
367 err = -EINVAL;
368 goto ack;
369 }
370
371 {
372 int min_len = nlmsg_total_size(sizeof(struct nfgenmsg));
373 u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
374 struct nlattr *cda[ss->cb[cb_id].attr_count + 1];
375 struct nlattr *attr = (void *)nlh + min_len;
376 int attrlen = nlh->nlmsg_len - min_len;
377
378 err = nla_parse(cda, ss->cb[cb_id].attr_count,
379 attr, attrlen, ss->cb[cb_id].policy);
380 if (err < 0)
381 goto ack;
382
383 if (nc->call_batch) {
384 err = nc->call_batch(net->nfnl, skb, nlh,
385 (const struct nlattr **)cda);
386 }
387
388 /* The lock was released to autoload some module, we
389 * have to abort and start from scratch using the
390 * original skb.
391 */
392 if (err == -EAGAIN) {
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200393 status |= NFNL_BATCH_REPLAY;
394 goto next;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200395 }
396 }
397ack:
398 if (nlh->nlmsg_flags & NLM_F_ACK || err) {
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200399 /* Errors are delivered once the full batch has been
400 * processed, this avoids that the same error is
401 * reported several times when replaying the batch.
402 */
403 if (nfnl_err_add(&err_list, nlh, err) < 0) {
404 /* We failed to enqueue an error, reset the
405 * list of errors and send OOM to userspace
406 * pointing to the batch header.
407 */
408 nfnl_err_reset(&err_list);
409 netlink_ack(skb, nlmsg_hdr(oskb), -ENOMEM);
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200410 status |= NFNL_BATCH_FAILURE;
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200411 goto done;
412 }
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200413 /* We don't stop processing the batch on errors, thus,
414 * userspace gets all the errors that the batch
415 * triggers.
416 */
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200417 if (err)
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200418 status |= NFNL_BATCH_FAILURE;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200419 }
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200420next:
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200421 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
422 if (msglen > skb->len)
423 msglen = skb->len;
424 skb_pull(skb, msglen);
425 }
426done:
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200427 if (status & NFNL_BATCH_REPLAY) {
Pablo Neira Ayusofc047332014-09-11 14:53:17 +0200428 ss->abort(oskb);
Pablo Neira Ayuso6742b9e2015-07-01 16:14:25 +0200429 nfnl_err_reset(&err_list);
430 nfnl_unlock(subsys_id);
431 kfree_skb(skb);
432 goto replay;
433 } else if (status == NFNL_BATCH_DONE) {
434 ss->commit(oskb);
435 } else {
436 ss->abort(oskb);
437 }
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200438
Pablo Neira Ayusocbb81252014-09-02 18:04:53 +0200439 nfnl_err_deliver(&err_list, oskb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200440 nfnl_unlock(subsys_id);
Duan Jiong0f816232014-12-10 17:21:59 +0800441 kfree_skb(skb);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200442}
443
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700444static void nfnetlink_rcv(struct sk_buff *skb)
Harald Weltef9e815b2005-08-09 19:30:24 -0700445{
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200446 struct nlmsghdr *nlh = nlmsg_hdr(skb);
Pablo Neira Ayusoa9de9772015-08-28 21:01:43 +0200447 u_int16_t res_id;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200448 int msglen;
449
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200450 if (nlh->nlmsg_len < NLMSG_HDRLEN ||
451 skb->len < nlh->nlmsg_len)
452 return;
453
Eric W. Biederman90f62cf2014-04-23 14:29:27 -0700454 if (!netlink_net_capable(skb, CAP_NET_ADMIN)) {
Jiri Benccdbe7c22013-11-07 19:59:19 +0100455 netlink_ack(skb, nlh, -EPERM);
456 return;
457 }
458
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200459 if (nlh->nlmsg_type == NFNL_MSG_BATCH_BEGIN) {
460 struct nfgenmsg *nfgenmsg;
461
462 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
463 if (msglen > skb->len)
464 msglen = skb->len;
465
466 if (nlh->nlmsg_len < NLMSG_HDRLEN ||
467 skb->len < NLMSG_HDRLEN + sizeof(struct nfgenmsg))
468 return;
469
470 nfgenmsg = nlmsg_data(nlh);
471 skb_pull(skb, msglen);
Pablo Neira Ayusoa9de9772015-08-28 21:01:43 +0200472 /* Work around old nft using host byte order */
473 if (nfgenmsg->res_id == NFNL_SUBSYS_NFTABLES)
474 res_id = NFNL_SUBSYS_NFTABLES;
475 else
476 res_id = ntohs(nfgenmsg->res_id);
477 nfnetlink_rcv_batch(skb, nlh, res_id);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200478 } else {
479 netlink_rcv_skb(skb, &nfnetlink_rcv_msg);
480 }
Harald Weltef9e815b2005-08-09 19:30:24 -0700481}
482
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000483#ifdef CONFIG_MODULES
Johannes Berg023e2cf2014-12-23 21:00:06 +0100484static int nfnetlink_bind(struct net *net, int group)
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000485{
486 const struct nfnetlink_subsystem *ss;
Pablo Neira Ayuso97840cb2014-11-14 18:14:33 +0100487 int type;
488
489 if (group <= NFNLGRP_NONE || group > NFNLGRP_MAX)
Pablo Neira Ayuso62924af2015-01-04 15:20:41 +0100490 return 0;
Pablo Neira Ayuso97840cb2014-11-14 18:14:33 +0100491
492 type = nfnl_group2type[group];
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000493
494 rcu_read_lock();
495 ss = nfnetlink_get_subsys(type);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000496 rcu_read_unlock();
Richard Guy Briggsbfe4bc72014-04-22 21:31:53 -0400497 if (!ss)
498 request_module("nfnetlink-subsys-%d", type);
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400499 return 0;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000500}
501#endif
502
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100503static int __net_init nfnetlink_net_init(struct net *net)
Harald Weltef9e815b2005-08-09 19:30:24 -0700504{
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100505 struct sock *nfnl;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000506 struct netlink_kernel_cfg cfg = {
507 .groups = NFNLGRP_MAX,
508 .input = nfnetlink_rcv,
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000509#ifdef CONFIG_MODULES
510 .bind = nfnetlink_bind,
511#endif
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000512 };
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100513
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000514 nfnl = netlink_kernel_create(net, NETLINK_NETFILTER, &cfg);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100515 if (!nfnl)
516 return -ENOMEM;
517 net->nfnl_stash = nfnl;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000518 rcu_assign_pointer(net->nfnl, nfnl);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100519 return 0;
Harald Weltef9e815b2005-08-09 19:30:24 -0700520}
521
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100522static void __net_exit nfnetlink_net_exit_batch(struct list_head *net_exit_list)
523{
524 struct net *net;
525
526 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000527 RCU_INIT_POINTER(net->nfnl, NULL);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100528 synchronize_net();
529 list_for_each_entry(net, net_exit_list, exit_list)
530 netlink_kernel_release(net->nfnl_stash);
531}
532
533static struct pernet_operations nfnetlink_net_ops = {
534 .init = nfnetlink_net_init,
535 .exit_batch = nfnetlink_net_exit_batch,
536};
537
Adrian Bunk395dde22005-09-05 18:06:45 -0700538static int __init nfnetlink_init(void)
Harald Weltef9e815b2005-08-09 19:30:24 -0700539{
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100540 int i;
541
Pablo Neira Ayuso97840cb2014-11-14 18:14:33 +0100542 for (i = NFNLGRP_NONE + 1; i <= NFNLGRP_MAX; i++)
543 BUG_ON(nfnl_group2type[i] == NFNL_SUBSYS_NONE);
544
Pablo Neira Ayusoc14b78e2013-02-05 01:50:26 +0100545 for (i=0; i<NFNL_SUBSYS_COUNT; i++)
546 mutex_init(&table[i].mutex);
547
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200548 pr_info("Netfilter messages via NETLINK v%s.\n", nfversion);
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100549 return register_pernet_subsys(&nfnetlink_net_ops);
Harald Weltef9e815b2005-08-09 19:30:24 -0700550}
551
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100552static void __exit nfnetlink_exit(void)
553{
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200554 pr_info("Removing netfilter NETLINK layer.\n");
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100555 unregister_pernet_subsys(&nfnetlink_net_ops);
556}
Harald Weltef9e815b2005-08-09 19:30:24 -0700557module_init(nfnetlink_init);
558module_exit(nfnetlink_exit);