blob: 67d2104778636c62e7d3fa94c73ce5fb2cd4cb7d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NETLINK Kernel-user communication protocol.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Patrick McHardycd1df522013-04-17 06:47:05 +00006 * Patrick McHardy <kaber@trash.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +090012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
14 * added netlink_proto_exit
15 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
16 * use nlk_sk, as sk->protinfo is on a diet 8)
Harald Welte4fdb3bb2005-08-09 19:40:55 -070017 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
18 * - inc module use count of module that owns
19 * the kernel socket in case userspace opens
20 * socket of same protocol
21 * - remove all module support, since netlink is
22 * mandatory if CONFIG_NET=y these days
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26
Randy Dunlap4fc268d2006-01-11 12:17:47 -080027#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
29#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/signal.h>
31#include <linux/sched.h>
32#include <linux/errno.h>
33#include <linux/string.h>
34#include <linux/stat.h>
35#include <linux/socket.h>
36#include <linux/un.h>
37#include <linux/fcntl.h>
38#include <linux/termios.h>
39#include <linux/sockios.h>
40#include <linux/net.h>
41#include <linux/fs.h>
42#include <linux/slab.h>
43#include <asm/uaccess.h>
44#include <linux/skbuff.h>
45#include <linux/netdevice.h>
46#include <linux/rtnetlink.h>
47#include <linux/proc_fs.h>
48#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/notifier.h>
50#include <linux/security.h>
51#include <linux/jhash.h>
52#include <linux/jiffies.h>
53#include <linux/random.h>
54#include <linux/bitops.h>
55#include <linux/mm.h>
56#include <linux/types.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010057#include <linux/audit.h>
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070058#include <linux/mutex.h>
Patrick McHardyccdfcc32013-04-17 06:47:01 +000059#include <linux/vmalloc.h>
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +020060#include <linux/if_arp.h>
Thomas Grafe3416942014-08-02 11:47:45 +020061#include <linux/rhashtable.h>
Patrick McHardy9652e932013-04-17 06:47:02 +000062#include <asm/cacheflush.h>
Thomas Grafe3416942014-08-02 11:47:45 +020063#include <linux/hash.h>
Johannes Bergee1c24422015-01-16 11:37:14 +010064#include <linux/genetlink.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010065
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020066#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <net/sock.h>
68#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010069#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Andrey Vagin0f29c762013-03-21 20:33:47 +040071#include "af_netlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Eric Dumazet5c398dc2010-10-24 04:27:10 +000073struct listeners {
74 struct rcu_head rcu;
75 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000076};
77
Patrick McHardycd967e02013-04-17 06:46:56 +000078/* state bits */
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +020079#define NETLINK_S_CONGESTED 0x0
Patrick McHardycd967e02013-04-17 06:46:56 +000080
81/* flags */
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +020082#define NETLINK_F_KERNEL_SOCKET 0x1
83#define NETLINK_F_RECV_PKTINFO 0x2
84#define NETLINK_F_BROADCAST_SEND_ERROR 0x4
85#define NETLINK_F_RECV_NO_ENOBUFS 0x8
Nicolas Dichtel59324cf2015-05-07 11:02:53 +020086#define NETLINK_F_LISTEN_ALL_NSID 0x10
Patrick McHardy77247bb2005-08-14 19:27:13 -070087
David S. Miller035c4c12011-12-23 17:33:03 -050088static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -070089{
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +020090 return nlk_sk(sk)->flags & NETLINK_F_KERNEL_SOCKET;
Denis V. Lunevaed81562007-10-10 21:14:32 -070091}
92
Eric Dumazet91dd93f2015-05-12 17:24:50 -070093struct netlink_table *nl_table __read_mostly;
Andrey Vagin0f29c762013-03-21 20:33:47 +040094EXPORT_SYMBOL_GPL(nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
97
98static int netlink_dump(struct sock *sk);
Patrick McHardy9652e932013-04-17 06:47:02 +000099static void netlink_skb_destructor(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Thomas Graf78fd1d02014-10-21 22:05:38 +0200101/* nl_table locking explained:
Thomas Graf21e49022015-01-02 23:00:22 +0100102 * Lookup and traversal are protected with an RCU read-side lock. Insertion
Ying Xuec5adde92015-01-12 14:52:23 +0800103 * and removal are protected with per bucket lock while using RCU list
Thomas Graf21e49022015-01-02 23:00:22 +0100104 * modification primitives and may run in parallel to RCU protected lookups.
105 * Destruction of the Netlink socket may only occur *after* nl_table_lock has
106 * been acquired * either during or after the socket has been removed from
107 * the list and after an RCU grace period.
Thomas Graf78fd1d02014-10-21 22:05:38 +0200108 */
Andrey Vagin0f29c762013-03-21 20:33:47 +0400109DEFINE_RWLOCK(nl_table_lock);
110EXPORT_SYMBOL_GPL(nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static atomic_t nl_table_users = ATOMIC_INIT(0);
112
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000113#define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
114
Alan Sterne041c682006-03-27 01:16:30 -0800115static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200117static DEFINE_SPINLOCK(netlink_tap_lock);
118static struct list_head netlink_tap_all __read_mostly;
119
Herbert Xuc428ecd2015-03-20 21:57:01 +1100120static const struct rhashtable_params netlink_rhashtable_params;
121
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000122static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700123{
124 return group ? 1 << (group - 1) : 0;
125}
126
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200127int netlink_add_tap(struct netlink_tap *nt)
128{
129 if (unlikely(nt->dev->type != ARPHRD_NETLINK))
130 return -EINVAL;
131
132 spin_lock(&netlink_tap_lock);
133 list_add_rcu(&nt->list, &netlink_tap_all);
134 spin_unlock(&netlink_tap_lock);
135
Markus Elfringfcd4d352014-11-18 21:03:13 +0100136 __module_get(nt->module);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200137
138 return 0;
139}
140EXPORT_SYMBOL_GPL(netlink_add_tap);
141
stephen hemminger2173f8d2013-12-30 10:49:22 -0800142static int __netlink_remove_tap(struct netlink_tap *nt)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200143{
144 bool found = false;
145 struct netlink_tap *tmp;
146
147 spin_lock(&netlink_tap_lock);
148
149 list_for_each_entry(tmp, &netlink_tap_all, list) {
150 if (nt == tmp) {
151 list_del_rcu(&nt->list);
152 found = true;
153 goto out;
154 }
155 }
156
157 pr_warn("__netlink_remove_tap: %p not found\n", nt);
158out:
159 spin_unlock(&netlink_tap_lock);
160
Markus Elfring92b80eb2015-07-02 18:38:12 +0200161 if (found)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200162 module_put(nt->module);
163
164 return found ? 0 : -ENODEV;
165}
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200166
167int netlink_remove_tap(struct netlink_tap *nt)
168{
169 int ret;
170
171 ret = __netlink_remove_tap(nt);
172 synchronize_net();
173
174 return ret;
175}
176EXPORT_SYMBOL_GPL(netlink_remove_tap);
177
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200178static bool netlink_filter_tap(const struct sk_buff *skb)
179{
180 struct sock *sk = skb->sk;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200181
182 /* We take the more conservative approach and
183 * whitelist socket protocols that may pass.
184 */
185 switch (sk->sk_protocol) {
186 case NETLINK_ROUTE:
187 case NETLINK_USERSOCK:
188 case NETLINK_SOCK_DIAG:
189 case NETLINK_NFLOG:
190 case NETLINK_XFRM:
191 case NETLINK_FIB_LOOKUP:
192 case NETLINK_NETFILTER:
193 case NETLINK_GENERIC:
Varka Bhadram498044b2014-07-16 10:59:47 +0530194 return true;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200195 }
196
Varka Bhadram498044b2014-07-16 10:59:47 +0530197 return false;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200198}
199
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200200static int __netlink_deliver_tap_skb(struct sk_buff *skb,
201 struct net_device *dev)
202{
203 struct sk_buff *nskb;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200204 struct sock *sk = skb->sk;
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200205 int ret = -ENOMEM;
206
207 dev_hold(dev);
208 nskb = skb_clone(skb, GFP_ATOMIC);
209 if (nskb) {
210 nskb->dev = dev;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200211 nskb->protocol = htons((u16) sk->sk_protocol);
Daniel Borkmann604d13c2013-12-23 14:35:56 +0100212 nskb->pkt_type = netlink_is_kernel(sk) ?
213 PACKET_KERNEL : PACKET_USER;
Daniel Borkmann4e48ed82014-08-07 22:22:47 +0200214 skb_reset_network_header(nskb);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200215 ret = dev_queue_xmit(nskb);
216 if (unlikely(ret > 0))
217 ret = net_xmit_errno(ret);
218 }
219
220 dev_put(dev);
221 return ret;
222}
223
224static void __netlink_deliver_tap(struct sk_buff *skb)
225{
226 int ret;
227 struct netlink_tap *tmp;
228
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200229 if (!netlink_filter_tap(skb))
230 return;
231
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200232 list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
233 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
234 if (unlikely(ret))
235 break;
236 }
237}
238
239static void netlink_deliver_tap(struct sk_buff *skb)
240{
241 rcu_read_lock();
242
243 if (unlikely(!list_empty(&netlink_tap_all)))
244 __netlink_deliver_tap(skb);
245
246 rcu_read_unlock();
247}
248
Daniel Borkmann73bfd372013-12-23 14:35:55 +0100249static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src,
250 struct sk_buff *skb)
251{
252 if (!(netlink_is_kernel(dst) && netlink_is_kernel(src)))
253 netlink_deliver_tap(skb);
254}
255
Patrick McHardycd1df522013-04-17 06:47:05 +0000256static void netlink_overrun(struct sock *sk)
257{
258 struct netlink_sock *nlk = nlk_sk(sk);
259
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +0200260 if (!(nlk->flags & NETLINK_F_RECV_NO_ENOBUFS)) {
261 if (!test_and_set_bit(NETLINK_S_CONGESTED,
262 &nlk_sk(sk)->state)) {
Patrick McHardycd1df522013-04-17 06:47:05 +0000263 sk->sk_err = ENOBUFS;
264 sk->sk_error_report(sk);
265 }
266 }
267 atomic_inc(&sk->sk_drops);
268}
269
270static void netlink_rcv_wake(struct sock *sk)
271{
272 struct netlink_sock *nlk = nlk_sk(sk);
273
274 if (skb_queue_empty(&sk->sk_receive_queue))
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +0200275 clear_bit(NETLINK_S_CONGESTED, &nlk->state);
276 if (!test_bit(NETLINK_S_CONGESTED, &nlk->state))
Patrick McHardycd1df522013-04-17 06:47:05 +0000277 wake_up_interruptible(&nlk->wait);
278}
279
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000280#ifdef CONFIG_NETLINK_MMAP
Patrick McHardy9652e932013-04-17 06:47:02 +0000281static bool netlink_skb_is_mmaped(const struct sk_buff *skb)
282{
283 return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED;
284}
285
Patrick McHardyf9c22882013-04-17 06:47:04 +0000286static bool netlink_rx_is_mmaped(struct sock *sk)
287{
288 return nlk_sk(sk)->rx_ring.pg_vec != NULL;
289}
290
Patrick McHardy5fd96122013-04-17 06:47:03 +0000291static bool netlink_tx_is_mmaped(struct sock *sk)
292{
293 return nlk_sk(sk)->tx_ring.pg_vec != NULL;
294}
295
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000296static __pure struct page *pgvec_to_page(const void *addr)
297{
298 if (is_vmalloc_addr(addr))
299 return vmalloc_to_page(addr);
300 else
301 return virt_to_page(addr);
302}
303
304static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
305{
306 unsigned int i;
307
308 for (i = 0; i < len; i++) {
309 if (pg_vec[i] != NULL) {
310 if (is_vmalloc_addr(pg_vec[i]))
311 vfree(pg_vec[i]);
312 else
313 free_pages((unsigned long)pg_vec[i], order);
314 }
315 }
316 kfree(pg_vec);
317}
318
319static void *alloc_one_pg_vec_page(unsigned long order)
320{
321 void *buffer;
322 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
323 __GFP_NOWARN | __GFP_NORETRY;
324
325 buffer = (void *)__get_free_pages(gfp_flags, order);
326 if (buffer != NULL)
327 return buffer;
328
329 buffer = vzalloc((1 << order) * PAGE_SIZE);
330 if (buffer != NULL)
331 return buffer;
332
333 gfp_flags &= ~__GFP_NORETRY;
334 return (void *)__get_free_pages(gfp_flags, order);
335}
336
337static void **alloc_pg_vec(struct netlink_sock *nlk,
338 struct nl_mmap_req *req, unsigned int order)
339{
340 unsigned int block_nr = req->nm_block_nr;
341 unsigned int i;
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200342 void **pg_vec;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000343
344 pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
345 if (pg_vec == NULL)
346 return NULL;
347
348 for (i = 0; i < block_nr; i++) {
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200349 pg_vec[i] = alloc_one_pg_vec_page(order);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000350 if (pg_vec[i] == NULL)
351 goto err1;
352 }
353
354 return pg_vec;
355err1:
356 free_pg_vec(pg_vec, order, block_nr);
357 return NULL;
358}
359
Florian Westphal0470eb92015-07-21 16:33:50 +0200360
361static void
362__netlink_set_ring(struct sock *sk, struct nl_mmap_req *req, bool tx_ring, void **pg_vec,
363 unsigned int order)
364{
365 struct netlink_sock *nlk = nlk_sk(sk);
366 struct sk_buff_head *queue;
367 struct netlink_ring *ring;
368
369 queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
370 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
371
372 spin_lock_bh(&queue->lock);
373
374 ring->frame_max = req->nm_frame_nr - 1;
375 ring->head = 0;
376 ring->frame_size = req->nm_frame_size;
377 ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE;
378
379 swap(ring->pg_vec_len, req->nm_block_nr);
380 swap(ring->pg_vec_order, order);
381 swap(ring->pg_vec, pg_vec);
382
383 __skb_queue_purge(queue);
384 spin_unlock_bh(&queue->lock);
385
386 WARN_ON(atomic_read(&nlk->mapped));
387
388 if (pg_vec)
389 free_pg_vec(pg_vec, order, req->nm_block_nr);
390}
391
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000392static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
Florian Westphal0470eb92015-07-21 16:33:50 +0200393 bool tx_ring)
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000394{
395 struct netlink_sock *nlk = nlk_sk(sk);
396 struct netlink_ring *ring;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000397 void **pg_vec = NULL;
398 unsigned int order = 0;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000399
400 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000401
Florian Westphal0470eb92015-07-21 16:33:50 +0200402 if (atomic_read(&nlk->mapped))
403 return -EBUSY;
404 if (atomic_read(&ring->pending))
405 return -EBUSY;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000406
407 if (req->nm_block_nr) {
408 if (ring->pg_vec != NULL)
409 return -EBUSY;
410
411 if ((int)req->nm_block_size <= 0)
412 return -EINVAL;
Tobias Klauser74e83b22014-07-31 12:17:08 +0200413 if (!PAGE_ALIGNED(req->nm_block_size))
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000414 return -EINVAL;
415 if (req->nm_frame_size < NL_MMAP_HDRLEN)
416 return -EINVAL;
417 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
418 return -EINVAL;
419
420 ring->frames_per_block = req->nm_block_size /
421 req->nm_frame_size;
422 if (ring->frames_per_block == 0)
423 return -EINVAL;
424 if (ring->frames_per_block * req->nm_block_nr !=
425 req->nm_frame_nr)
426 return -EINVAL;
427
428 order = get_order(req->nm_block_size);
429 pg_vec = alloc_pg_vec(nlk, req, order);
430 if (pg_vec == NULL)
431 return -ENOMEM;
432 } else {
433 if (req->nm_frame_nr)
434 return -EINVAL;
435 }
436
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000437 mutex_lock(&nlk->pg_vec_lock);
Florian Westphal0470eb92015-07-21 16:33:50 +0200438 if (atomic_read(&nlk->mapped) == 0) {
439 __netlink_set_ring(sk, req, tx_ring, pg_vec, order);
440 mutex_unlock(&nlk->pg_vec_lock);
441 return 0;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000442 }
Florian Westphal0470eb92015-07-21 16:33:50 +0200443
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000444 mutex_unlock(&nlk->pg_vec_lock);
445
446 if (pg_vec)
447 free_pg_vec(pg_vec, order, req->nm_block_nr);
Florian Westphal0470eb92015-07-21 16:33:50 +0200448
449 return -EBUSY;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000450}
451
452static void netlink_mm_open(struct vm_area_struct *vma)
453{
454 struct file *file = vma->vm_file;
455 struct socket *sock = file->private_data;
456 struct sock *sk = sock->sk;
457
458 if (sk)
459 atomic_inc(&nlk_sk(sk)->mapped);
460}
461
462static void netlink_mm_close(struct vm_area_struct *vma)
463{
464 struct file *file = vma->vm_file;
465 struct socket *sock = file->private_data;
466 struct sock *sk = sock->sk;
467
468 if (sk)
469 atomic_dec(&nlk_sk(sk)->mapped);
470}
471
472static const struct vm_operations_struct netlink_mmap_ops = {
473 .open = netlink_mm_open,
474 .close = netlink_mm_close,
475};
476
477static int netlink_mmap(struct file *file, struct socket *sock,
478 struct vm_area_struct *vma)
479{
480 struct sock *sk = sock->sk;
481 struct netlink_sock *nlk = nlk_sk(sk);
482 struct netlink_ring *ring;
483 unsigned long start, size, expected;
484 unsigned int i;
485 int err = -EINVAL;
486
487 if (vma->vm_pgoff)
488 return -EINVAL;
489
490 mutex_lock(&nlk->pg_vec_lock);
491
492 expected = 0;
493 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
494 if (ring->pg_vec == NULL)
495 continue;
496 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
497 }
498
499 if (expected == 0)
500 goto out;
501
502 size = vma->vm_end - vma->vm_start;
503 if (size != expected)
504 goto out;
505
506 start = vma->vm_start;
507 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
508 if (ring->pg_vec == NULL)
509 continue;
510
511 for (i = 0; i < ring->pg_vec_len; i++) {
512 struct page *page;
513 void *kaddr = ring->pg_vec[i];
514 unsigned int pg_num;
515
516 for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
517 page = pgvec_to_page(kaddr);
518 err = vm_insert_page(vma, start, page);
519 if (err < 0)
520 goto out;
521 start += PAGE_SIZE;
522 kaddr += PAGE_SIZE;
523 }
524 }
525 }
526
527 atomic_inc(&nlk->mapped);
528 vma->vm_ops = &netlink_mmap_ops;
529 err = 0;
530out:
531 mutex_unlock(&nlk->pg_vec_lock);
Patrick McHardy7cdbac72013-06-11 02:52:47 -0700532 return err;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000533}
Patrick McHardy9652e932013-04-17 06:47:02 +0000534
David Miller4682a032014-12-16 17:58:17 -0500535static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr, unsigned int nm_len)
Patrick McHardy9652e932013-04-17 06:47:02 +0000536{
537#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
538 struct page *p_start, *p_end;
539
540 /* First page is flushed through netlink_{get,set}_status */
541 p_start = pgvec_to_page(hdr + PAGE_SIZE);
David Miller4682a032014-12-16 17:58:17 -0500542 p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + nm_len - 1);
Patrick McHardy9652e932013-04-17 06:47:02 +0000543 while (p_start <= p_end) {
544 flush_dcache_page(p_start);
545 p_start++;
546 }
547#endif
548}
549
550static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
551{
552 smp_rmb();
553 flush_dcache_page(pgvec_to_page(hdr));
554 return hdr->nm_status;
555}
556
557static void netlink_set_status(struct nl_mmap_hdr *hdr,
558 enum nl_mmap_status status)
559{
Thomas Grafa18e6a12014-12-18 10:30:26 +0000560 smp_mb();
Patrick McHardy9652e932013-04-17 06:47:02 +0000561 hdr->nm_status = status;
562 flush_dcache_page(pgvec_to_page(hdr));
Patrick McHardy9652e932013-04-17 06:47:02 +0000563}
564
565static struct nl_mmap_hdr *
566__netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
567{
568 unsigned int pg_vec_pos, frame_off;
569
570 pg_vec_pos = pos / ring->frames_per_block;
571 frame_off = pos % ring->frames_per_block;
572
573 return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
574}
575
576static struct nl_mmap_hdr *
577netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
578 enum nl_mmap_status status)
579{
580 struct nl_mmap_hdr *hdr;
581
582 hdr = __netlink_lookup_frame(ring, pos);
583 if (netlink_get_status(hdr) != status)
584 return NULL;
585
586 return hdr;
587}
588
589static struct nl_mmap_hdr *
590netlink_current_frame(const struct netlink_ring *ring,
591 enum nl_mmap_status status)
592{
593 return netlink_lookup_frame(ring, ring->head, status);
594}
595
596static struct nl_mmap_hdr *
597netlink_previous_frame(const struct netlink_ring *ring,
598 enum nl_mmap_status status)
599{
600 unsigned int prev;
601
602 prev = ring->head ? ring->head - 1 : ring->frame_max;
603 return netlink_lookup_frame(ring, prev, status);
604}
605
606static void netlink_increment_head(struct netlink_ring *ring)
607{
608 ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
609}
610
611static void netlink_forward_ring(struct netlink_ring *ring)
612{
613 unsigned int head = ring->head, pos = head;
614 const struct nl_mmap_hdr *hdr;
615
616 do {
617 hdr = __netlink_lookup_frame(ring, pos);
618 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
619 break;
620 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
621 break;
622 netlink_increment_head(ring);
623 } while (ring->head != head);
624}
625
Patrick McHardycd1df522013-04-17 06:47:05 +0000626static bool netlink_dump_space(struct netlink_sock *nlk)
627{
628 struct netlink_ring *ring = &nlk->rx_ring;
629 struct nl_mmap_hdr *hdr;
630 unsigned int n;
631
632 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
633 if (hdr == NULL)
634 return false;
635
636 n = ring->head + ring->frame_max / 2;
637 if (n > ring->frame_max)
638 n -= ring->frame_max;
639
640 hdr = __netlink_lookup_frame(ring, n);
641
642 return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
643}
644
Patrick McHardy9652e932013-04-17 06:47:02 +0000645static unsigned int netlink_poll(struct file *file, struct socket *sock,
646 poll_table *wait)
647{
648 struct sock *sk = sock->sk;
649 struct netlink_sock *nlk = nlk_sk(sk);
650 unsigned int mask;
Patrick McHardycd1df522013-04-17 06:47:05 +0000651 int err;
Patrick McHardy9652e932013-04-17 06:47:02 +0000652
Patrick McHardycd1df522013-04-17 06:47:05 +0000653 if (nlk->rx_ring.pg_vec != NULL) {
654 /* Memory mapped sockets don't call recvmsg(), so flow control
655 * for dumps is performed here. A dump is allowed to continue
656 * if at least half the ring is unused.
657 */
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700658 while (nlk->cb_running && netlink_dump_space(nlk)) {
Patrick McHardycd1df522013-04-17 06:47:05 +0000659 err = netlink_dump(sk);
660 if (err < 0) {
Ben Pfaffac30ef82014-07-09 10:31:22 -0700661 sk->sk_err = -err;
Patrick McHardycd1df522013-04-17 06:47:05 +0000662 sk->sk_error_report(sk);
663 break;
664 }
665 }
666 netlink_rcv_wake(sk);
667 }
Patrick McHardy5fd96122013-04-17 06:47:03 +0000668
Patrick McHardy9652e932013-04-17 06:47:02 +0000669 mask = datagram_poll(file, sock, wait);
670
671 spin_lock_bh(&sk->sk_receive_queue.lock);
672 if (nlk->rx_ring.pg_vec) {
673 netlink_forward_ring(&nlk->rx_ring);
674 if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED))
675 mask |= POLLIN | POLLRDNORM;
676 }
677 spin_unlock_bh(&sk->sk_receive_queue.lock);
678
679 spin_lock_bh(&sk->sk_write_queue.lock);
680 if (nlk->tx_ring.pg_vec) {
681 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
682 mask |= POLLOUT | POLLWRNORM;
683 }
684 spin_unlock_bh(&sk->sk_write_queue.lock);
685
686 return mask;
687}
688
689static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
690{
691 return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
692}
693
694static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
695 struct netlink_ring *ring,
696 struct nl_mmap_hdr *hdr)
697{
698 unsigned int size;
699 void *data;
700
701 size = ring->frame_size - NL_MMAP_HDRLEN;
702 data = (void *)hdr + NL_MMAP_HDRLEN;
703
704 skb->head = data;
705 skb->data = data;
706 skb_reset_tail_pointer(skb);
707 skb->end = skb->tail + size;
708 skb->len = 0;
709
710 skb->destructor = netlink_skb_destructor;
711 NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
712 NETLINK_CB(skb).sk = sk;
713}
Patrick McHardy5fd96122013-04-17 06:47:03 +0000714
715static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
716 u32 dst_portid, u32 dst_group,
Christoph Hellwig7cc05662015-01-28 18:04:53 +0100717 struct scm_cookie *scm)
Patrick McHardy5fd96122013-04-17 06:47:03 +0000718{
719 struct netlink_sock *nlk = nlk_sk(sk);
720 struct netlink_ring *ring;
721 struct nl_mmap_hdr *hdr;
722 struct sk_buff *skb;
723 unsigned int maxlen;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000724 int err = 0, len = 0;
725
Patrick McHardy5fd96122013-04-17 06:47:03 +0000726 mutex_lock(&nlk->pg_vec_lock);
727
728 ring = &nlk->tx_ring;
729 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
730
731 do {
David Miller4682a032014-12-16 17:58:17 -0500732 unsigned int nm_len;
733
Patrick McHardy5fd96122013-04-17 06:47:03 +0000734 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
735 if (hdr == NULL) {
736 if (!(msg->msg_flags & MSG_DONTWAIT) &&
737 atomic_read(&nlk->tx_ring.pending))
738 schedule();
739 continue;
740 }
David Miller4682a032014-12-16 17:58:17 -0500741
742 nm_len = ACCESS_ONCE(hdr->nm_len);
743 if (nm_len > maxlen) {
Patrick McHardy5fd96122013-04-17 06:47:03 +0000744 err = -EINVAL;
745 goto out;
746 }
747
David Miller4682a032014-12-16 17:58:17 -0500748 netlink_frame_flush_dcache(hdr, nm_len);
Patrick McHardy5fd96122013-04-17 06:47:03 +0000749
David Miller4682a032014-12-16 17:58:17 -0500750 skb = alloc_skb(nm_len, GFP_KERNEL);
751 if (skb == NULL) {
752 err = -ENOBUFS;
753 goto out;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000754 }
David Miller4682a032014-12-16 17:58:17 -0500755 __skb_put(skb, nm_len);
756 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, nm_len);
757 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
Patrick McHardy5fd96122013-04-17 06:47:03 +0000758
759 netlink_increment_head(ring);
760
761 NETLINK_CB(skb).portid = nlk->portid;
762 NETLINK_CB(skb).dst_group = dst_group;
Christoph Hellwig7cc05662015-01-28 18:04:53 +0100763 NETLINK_CB(skb).creds = scm->creds;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000764
765 err = security_netlink_send(sk, skb);
766 if (err) {
767 kfree_skb(skb);
768 goto out;
769 }
770
771 if (unlikely(dst_group)) {
772 atomic_inc(&skb->users);
773 netlink_broadcast(sk, skb, dst_portid, dst_group,
774 GFP_KERNEL);
775 }
776 err = netlink_unicast(sk, skb, dst_portid,
777 msg->msg_flags & MSG_DONTWAIT);
778 if (err < 0)
779 goto out;
780 len += err;
781
782 } while (hdr != NULL ||
783 (!(msg->msg_flags & MSG_DONTWAIT) &&
784 atomic_read(&nlk->tx_ring.pending)));
785
786 if (len > 0)
787 err = len;
788out:
789 mutex_unlock(&nlk->pg_vec_lock);
790 return err;
791}
Patrick McHardyf9c22882013-04-17 06:47:04 +0000792
793static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
794{
795 struct nl_mmap_hdr *hdr;
796
797 hdr = netlink_mmap_hdr(skb);
798 hdr->nm_len = skb->len;
799 hdr->nm_group = NETLINK_CB(skb).dst_group;
800 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200801 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
802 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
David Miller4682a032014-12-16 17:58:17 -0500803 netlink_frame_flush_dcache(hdr, hdr->nm_len);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000804 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
805
806 NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
807 kfree_skb(skb);
808}
809
810static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
811{
812 struct netlink_sock *nlk = nlk_sk(sk);
813 struct netlink_ring *ring = &nlk->rx_ring;
814 struct nl_mmap_hdr *hdr;
815
816 spin_lock_bh(&sk->sk_receive_queue.lock);
817 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
818 if (hdr == NULL) {
819 spin_unlock_bh(&sk->sk_receive_queue.lock);
820 kfree_skb(skb);
Patrick McHardycd1df522013-04-17 06:47:05 +0000821 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000822 return;
823 }
824 netlink_increment_head(ring);
825 __skb_queue_tail(&sk->sk_receive_queue, skb);
826 spin_unlock_bh(&sk->sk_receive_queue.lock);
827
828 hdr->nm_len = skb->len;
829 hdr->nm_group = NETLINK_CB(skb).dst_group;
830 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200831 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
832 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000833 netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
834}
835
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000836#else /* CONFIG_NETLINK_MMAP */
Patrick McHardy9652e932013-04-17 06:47:02 +0000837#define netlink_skb_is_mmaped(skb) false
Patrick McHardyf9c22882013-04-17 06:47:04 +0000838#define netlink_rx_is_mmaped(sk) false
Patrick McHardy5fd96122013-04-17 06:47:03 +0000839#define netlink_tx_is_mmaped(sk) false
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000840#define netlink_mmap sock_no_mmap
Patrick McHardy9652e932013-04-17 06:47:02 +0000841#define netlink_poll datagram_poll
Christoph Hellwig7cc05662015-01-28 18:04:53 +0100842#define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, scm) 0
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000843#endif /* CONFIG_NETLINK_MMAP */
844
Patrick McHardycf0a0182013-04-17 06:47:00 +0000845static void netlink_skb_destructor(struct sk_buff *skb)
846{
Patrick McHardy9652e932013-04-17 06:47:02 +0000847#ifdef CONFIG_NETLINK_MMAP
848 struct nl_mmap_hdr *hdr;
849 struct netlink_ring *ring;
850 struct sock *sk;
851
852 /* If a packet from the kernel to userspace was freed because of an
853 * error without being delivered to userspace, the kernel must reset
854 * the status. In the direction userspace to kernel, the status is
855 * always reset here after the packet was processed and freed.
856 */
857 if (netlink_skb_is_mmaped(skb)) {
858 hdr = netlink_mmap_hdr(skb);
859 sk = NETLINK_CB(skb).sk;
860
Patrick McHardy5fd96122013-04-17 06:47:03 +0000861 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
862 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
863 ring = &nlk_sk(sk)->tx_ring;
864 } else {
865 if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
866 hdr->nm_len = 0;
867 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
868 }
869 ring = &nlk_sk(sk)->rx_ring;
Patrick McHardy9652e932013-04-17 06:47:02 +0000870 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000871
872 WARN_ON(atomic_read(&ring->pending) == 0);
873 atomic_dec(&ring->pending);
874 sock_put(sk);
875
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000876 skb->head = NULL;
Patrick McHardy9652e932013-04-17 06:47:02 +0000877 }
878#endif
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000879 if (is_vmalloc_addr(skb->head)) {
Pablo Neira3a365152013-06-28 03:04:23 +0200880 if (!skb->cloned ||
881 !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
882 vfree(skb->head);
883
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000884 skb->head = NULL;
885 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000886 if (skb->sk != NULL)
887 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000888}
889
890static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
891{
892 WARN_ON(skb->sk != NULL);
893 skb->sk = sk;
894 skb->destructor = netlink_skb_destructor;
895 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
896 sk_mem_charge(sk, skb->truesize);
897}
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899static void netlink_sock_destruct(struct sock *sk)
900{
Herbert Xu3f660d62007-05-03 03:17:14 -0700901 struct netlink_sock *nlk = nlk_sk(sk);
902
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700903 if (nlk->cb_running) {
904 if (nlk->cb.done)
905 nlk->cb.done(&nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000906
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700907 module_put(nlk->cb.module);
908 kfree_skb(nlk->cb.skb);
Herbert Xu3f660d62007-05-03 03:17:14 -0700909 }
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000912#ifdef CONFIG_NETLINK_MMAP
913 if (1) {
914 struct nl_mmap_req req;
915
916 memset(&req, 0, sizeof(req));
917 if (nlk->rx_ring.pg_vec)
Florian Westphal0470eb92015-07-21 16:33:50 +0200918 __netlink_set_ring(sk, &req, false, NULL, 0);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000919 memset(&req, 0, sizeof(req));
920 if (nlk->tx_ring.pg_vec)
Florian Westphal0470eb92015-07-21 16:33:50 +0200921 __netlink_set_ring(sk, &req, true, NULL, 0);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000922 }
923#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800926 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return;
928 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700929
930 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
931 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
932 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800935/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
936 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
938 * this, _but_ remember, it adds useless work on UP machines.
939 */
940
Johannes Bergd136f1b2009-09-12 03:03:15 +0000941void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800942 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000944 might_sleep();
945
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700946 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (atomic_read(&nl_table_users)) {
949 DECLARE_WAITQUEUE(wait, current);
950
951 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800952 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 set_current_state(TASK_UNINTERRUPTIBLE);
954 if (atomic_read(&nl_table_users) == 0)
955 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700956 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700958 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
961 __set_current_state(TASK_RUNNING);
962 remove_wait_queue(&nl_table_wait, &wait);
963 }
964}
965
Johannes Bergd136f1b2009-09-12 03:03:15 +0000966void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800967 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700969 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 wake_up(&nl_table_wait);
971}
972
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800973static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974netlink_lock_table(void)
975{
976 /* read_lock() synchronizes us to netlink_table_grab */
977
978 read_lock(&nl_table_lock);
979 atomic_inc(&nl_table_users);
980 read_unlock(&nl_table_lock);
981}
982
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800983static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984netlink_unlock_table(void)
985{
986 if (atomic_dec_and_test(&nl_table_users))
987 wake_up(&nl_table_wait);
988}
989
Thomas Grafe3416942014-08-02 11:47:45 +0200990struct netlink_compare_arg
Gao fengda12c902013-06-06 14:49:11 +0800991{
Herbert Xuc428ecd2015-03-20 21:57:01 +1100992 possible_net_t pnet;
Thomas Grafe3416942014-08-02 11:47:45 +0200993 u32 portid;
994};
995
Herbert Xu8f2ddaa2015-03-21 14:14:03 +1100996/* Doing sizeof directly may yield 4 extra bytes on 64-bit. */
997#define netlink_compare_arg_len \
998 (offsetof(struct netlink_compare_arg, portid) + sizeof(u32))
Thomas Grafe3416942014-08-02 11:47:45 +0200999
Herbert Xuc428ecd2015-03-20 21:57:01 +11001000static inline int netlink_compare(struct rhashtable_compare_arg *arg,
1001 const void *ptr)
1002{
1003 const struct netlink_compare_arg *x = arg->key;
1004 const struct netlink_sock *nlk = ptr;
1005
1006 return nlk->portid != x->portid ||
1007 !net_eq(sock_net(&nlk->sk), read_pnet(&x->pnet));
1008}
1009
1010static void netlink_compare_arg_init(struct netlink_compare_arg *arg,
1011 struct net *net, u32 portid)
1012{
1013 memset(arg, 0, sizeof(*arg));
1014 write_pnet(&arg->pnet, net);
1015 arg->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +02001016}
1017
1018static struct sock *__netlink_lookup(struct netlink_table *table, u32 portid,
1019 struct net *net)
1020{
Herbert Xuc428ecd2015-03-20 21:57:01 +11001021 struct netlink_compare_arg arg;
Thomas Grafe3416942014-08-02 11:47:45 +02001022
Herbert Xuc428ecd2015-03-20 21:57:01 +11001023 netlink_compare_arg_init(&arg, net, portid);
1024 return rhashtable_lookup_fast(&table->hash, &arg,
1025 netlink_rhashtable_params);
Gao fengda12c902013-06-06 14:49:11 +08001026}
1027
Herbert Xuc428ecd2015-03-20 21:57:01 +11001028static int __netlink_insert(struct netlink_table *table, struct sock *sk)
Ying Xuec5adde92015-01-12 14:52:23 +08001029{
Herbert Xuc428ecd2015-03-20 21:57:01 +11001030 struct netlink_compare_arg arg;
Ying Xuec5adde92015-01-12 14:52:23 +08001031
Herbert Xuc428ecd2015-03-20 21:57:01 +11001032 netlink_compare_arg_init(&arg, sock_net(sk), nlk_sk(sk)->portid);
1033 return rhashtable_lookup_insert_key(&table->hash, &arg,
1034 &nlk_sk(sk)->node,
1035 netlink_rhashtable_params);
Ying Xuec5adde92015-01-12 14:52:23 +08001036}
1037
Eric W. Biederman15e47302012-09-07 20:12:54 +00001038static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Gao fengda12c902013-06-06 14:49:11 +08001040 struct netlink_table *table = &nl_table[protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Thomas Grafe3416942014-08-02 11:47:45 +02001043 rcu_read_lock();
1044 sk = __netlink_lookup(table, portid, net);
1045 if (sk)
1046 sock_hold(sk);
1047 rcu_read_unlock();
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return sk;
1050}
1051
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001052static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Patrick McHardy4277a082006-03-20 18:52:01 -08001054static void
1055netlink_update_listeners(struct sock *sk)
1056{
1057 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -08001058 unsigned long mask;
1059 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001060 struct listeners *listeners;
1061
1062 listeners = nl_deref_protected(tbl->listeners);
1063 if (!listeners)
1064 return;
Patrick McHardy4277a082006-03-20 18:52:01 -08001065
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001066 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001067 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001068 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001069 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
1070 mask |= nlk_sk(sk)->groups[i];
1071 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001072 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -08001073 }
1074 /* this function is only called with the netlink table "grabbed", which
1075 * makes sure updates are visible before bind or setsockopt return. */
1076}
1077
Herbert Xu8ea65f42015-01-26 14:02:56 +11001078static int netlink_insert(struct sock *sk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Gao fengda12c902013-06-06 14:49:11 +08001080 struct netlink_table *table = &nl_table[sk->sk_protocol];
Herbert Xu919d9db2015-01-16 17:23:48 +11001081 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Ying Xuec5adde92015-01-12 14:52:23 +08001083 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 err = -EBUSY;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001086 if (nlk_sk(sk)->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 goto err;
1088
1089 err = -ENOMEM;
Thomas Graf97defe12015-01-02 23:00:20 +01001090 if (BITS_PER_LONG > 32 &&
1091 unlikely(atomic_read(&table->hash.nelems) >= UINT_MAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 goto err;
1093
Eric W. Biederman15e47302012-09-07 20:12:54 +00001094 nlk_sk(sk)->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +02001095 sock_hold(sk);
Herbert Xu919d9db2015-01-16 17:23:48 +11001096
Herbert Xuc428ecd2015-03-20 21:57:01 +11001097 err = __netlink_insert(table, sk);
1098 if (err) {
Daniel Borkmann4e7c1332015-08-07 00:26:41 +02001099 /* In case the hashtable backend returns with -EBUSY
1100 * from here, it must not escape to the caller.
1101 */
1102 if (unlikely(err == -EBUSY))
1103 err = -EOVERFLOW;
Herbert Xuc428ecd2015-03-20 21:57:01 +11001104 if (err == -EEXIST)
1105 err = -EADDRINUSE;
Herbert Xuc0bb07d2015-05-16 21:50:28 +08001106 nlk_sk(sk)->portid = 0;
Ying Xuec5adde92015-01-12 14:52:23 +08001107 sock_put(sk);
Herbert Xu919d9db2015-01-16 17:23:48 +11001108 }
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110err:
Ying Xuec5adde92015-01-12 14:52:23 +08001111 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return err;
1113}
1114
1115static void netlink_remove(struct sock *sk)
1116{
Thomas Grafe3416942014-08-02 11:47:45 +02001117 struct netlink_table *table;
1118
Thomas Grafe3416942014-08-02 11:47:45 +02001119 table = &nl_table[sk->sk_protocol];
Herbert Xuc428ecd2015-03-20 21:57:01 +11001120 if (!rhashtable_remove_fast(&table->hash, &nlk_sk(sk)->node,
1121 netlink_rhashtable_params)) {
Thomas Grafe3416942014-08-02 11:47:45 +02001122 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
1123 __sock_put(sk);
1124 }
Thomas Grafe3416942014-08-02 11:47:45 +02001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 netlink_table_grab();
Johannes Bergb10dcb32014-12-22 18:56:37 +01001127 if (nlk_sk(sk)->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 __sk_del_bind_node(sk);
Johannes Bergb10dcb32014-12-22 18:56:37 +01001129 netlink_update_listeners(sk);
1130 }
Johannes Bergee1c24422015-01-16 11:37:14 +01001131 if (sk->sk_protocol == NETLINK_GENERIC)
1132 atomic_inc(&genl_sk_destructing_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 netlink_table_ungrab();
1134}
1135
1136static struct proto netlink_proto = {
1137 .name = "NETLINK",
1138 .owner = THIS_MODULE,
1139 .obj_size = sizeof(struct netlink_sock),
1140};
1141
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001142static int __netlink_create(struct net *net, struct socket *sock,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05001143 struct mutex *cb_mutex, int protocol,
1144 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
1146 struct sock *sk;
1147 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001148
1149 sock->ops = &netlink_ops;
1150
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05001151 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto, kern);
Patrick McHardyab33a172005-08-14 19:31:36 -07001152 if (!sk)
1153 return -ENOMEM;
1154
1155 sock_init_data(sock, sk);
1156
1157 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001158 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001159 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001160 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001161 nlk->cb_mutex = &nlk->cb_def_mutex;
1162 mutex_init(nlk->cb_mutex);
1163 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001164 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001165#ifdef CONFIG_NETLINK_MMAP
1166 mutex_init(&nlk->pg_vec_lock);
1167#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001168
1169 sk->sk_destruct = netlink_sock_destruct;
1170 sk->sk_protocol = protocol;
1171 return 0;
1172}
1173
Eric Paris3f378b62009-11-05 22:18:14 -08001174static int netlink_create(struct net *net, struct socket *sock, int protocol,
1175 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001176{
1177 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001178 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001179 struct netlink_sock *nlk;
Johannes Berg023e2cf2014-12-23 21:00:06 +01001180 int (*bind)(struct net *net, int group);
1181 void (*unbind)(struct net *net, int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001182 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 sock->state = SS_UNCONNECTED;
1185
1186 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1187 return -ESOCKTNOSUPPORT;
1188
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001189 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return -EPROTONOSUPPORT;
1191
Patrick McHardy77247bb2005-08-14 19:27:13 -07001192 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001193#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001194 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001195 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001196 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001197 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001198 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001199#endif
1200 if (nl_table[protocol].registered &&
1201 try_module_get(nl_table[protocol].module))
1202 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001203 else
1204 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001205 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001206 bind = nl_table[protocol].bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001207 unbind = nl_table[protocol].unbind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001208 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001209
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001210 if (err < 0)
1211 goto out;
1212
Eric W. Biederman11aa9c22015-05-08 21:09:13 -05001213 err = __netlink_create(net, sock, cb_mutex, protocol, kern);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001214 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001215 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
David S. Miller6f756a82008-11-23 17:34:03 -08001217 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001218 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001219 local_bh_enable();
1220
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001221 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001222 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001223 nlk->netlink_bind = bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001224 nlk->netlink_unbind = unbind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001225out:
1226 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Patrick McHardyab33a172005-08-14 19:31:36 -07001228out_module:
1229 module_put(module);
1230 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Thomas Graf21e49022015-01-02 23:00:22 +01001233static void deferred_put_nlk_sk(struct rcu_head *head)
1234{
1235 struct netlink_sock *nlk = container_of(head, struct netlink_sock, rcu);
1236
1237 sock_put(&nlk->sk);
1238}
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240static int netlink_release(struct socket *sock)
1241{
1242 struct sock *sk = sock->sk;
1243 struct netlink_sock *nlk;
1244
1245 if (!sk)
1246 return 0;
1247
1248 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001249 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 nlk = nlk_sk(sk);
1251
Herbert Xu3f660d62007-05-03 03:17:14 -07001252 /*
1253 * OK. Socket is unlinked, any packets that arrive now
1254 * will be purged.
1255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Johannes Bergee1c24422015-01-16 11:37:14 +01001257 /* must not acquire netlink_table_lock in any way again before unbind
1258 * and notifying genetlink is done as otherwise it might deadlock
1259 */
1260 if (nlk->netlink_unbind) {
1261 int i;
1262
1263 for (i = 0; i < nlk->ngroups; i++)
1264 if (test_bit(i, nlk->groups))
1265 nlk->netlink_unbind(sock_net(sk), i + 1);
1266 }
1267 if (sk->sk_protocol == NETLINK_GENERIC &&
1268 atomic_dec_return(&genl_sk_destructing_cnt) == 0)
1269 wake_up(&genl_sk_destructing_waitq);
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 sock->sk = NULL;
1272 wake_up_interruptible_all(&nlk->wait);
1273
1274 skb_queue_purge(&sk->sk_write_queue);
1275
Eric W. Biederman15e47302012-09-07 20:12:54 +00001276 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001278 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001280 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 };
Alan Sterne041c682006-03-27 01:16:30 -08001282 atomic_notifier_call_chain(&netlink_chain,
1283 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001284 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001285
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001286 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001287
Denis V. Lunevaed81562007-10-10 21:14:32 -07001288 if (netlink_is_kernel(sk)) {
Johannes Bergb10dcb32014-12-22 18:56:37 +01001289 netlink_table_grab();
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001290 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1291 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001292 struct listeners *old;
1293
1294 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1295 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1296 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001297 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001298 nl_table[sk->sk_protocol].bind = NULL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001299 nl_table[sk->sk_protocol].unbind = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001300 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001301 nl_table[sk->sk_protocol].registered = 0;
1302 }
Johannes Bergb10dcb32014-12-22 18:56:37 +01001303 netlink_table_ungrab();
Eric Dumazet658cb352012-04-22 21:30:21 +00001304 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001305
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001306 kfree(nlk->groups);
1307 nlk->groups = NULL;
1308
Eric Dumazet37558102008-11-24 14:05:22 -08001309 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001310 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001311 local_bh_enable();
Thomas Graf21e49022015-01-02 23:00:22 +01001312 call_rcu(&nlk->rcu, deferred_put_nlk_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return 0;
1314}
1315
1316static int netlink_autobind(struct socket *sock)
1317{
1318 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001319 struct net *net = sock_net(sk);
Gao fengda12c902013-06-06 14:49:11 +08001320 struct netlink_table *table = &nl_table[sk->sk_protocol];
Eric W. Biederman15e47302012-09-07 20:12:54 +00001321 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 int err;
Herbert Xub9fbe702015-05-17 10:45:34 +08001323 s32 rover = -4096;
1324 bool ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326retry:
1327 cond_resched();
Thomas Grafe3416942014-08-02 11:47:45 +02001328 rcu_read_lock();
Herbert Xub9fbe702015-05-17 10:45:34 +08001329 ok = !__netlink_lookup(table, portid, net);
1330 rcu_read_unlock();
1331 if (!ok) {
Thomas Grafe3416942014-08-02 11:47:45 +02001332 /* Bind collision, search negative portid values. */
Herbert Xub9fbe702015-05-17 10:45:34 +08001333 if (rover == -4096)
1334 /* rover will be in range [S32_MIN, -4097] */
1335 rover = S32_MIN + prandom_u32_max(-4096 - S32_MIN);
1336 else if (rover >= -4096)
Thomas Grafe3416942014-08-02 11:47:45 +02001337 rover = -4097;
Herbert Xub9fbe702015-05-17 10:45:34 +08001338 portid = rover--;
Thomas Grafe3416942014-08-02 11:47:45 +02001339 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Herbert Xu8ea65f42015-01-26 14:02:56 +11001342 err = netlink_insert(sk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (err == -EADDRINUSE)
1344 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -07001345
1346 /* If 2 threads race to autobind, that is fine. */
1347 if (err == -EBUSY)
1348 err = 0;
1349
1350 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -07001353/**
1354 * __netlink_ns_capable - General netlink message capability test
1355 * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace.
1356 * @user_ns: The user namespace of the capability to use
1357 * @cap: The capability to use
1358 *
1359 * Test to see if the opener of the socket we received the message
1360 * from had when the netlink socket was created and the sender of the
1361 * message has has the capability @cap in the user namespace @user_ns.
1362 */
1363bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
1364 struct user_namespace *user_ns, int cap)
1365{
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07001366 return ((nsp->flags & NETLINK_SKB_DST) ||
1367 file_ns_capable(nsp->sk->sk_socket->file, user_ns, cap)) &&
1368 ns_capable(user_ns, cap);
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -07001369}
1370EXPORT_SYMBOL(__netlink_ns_capable);
1371
1372/**
1373 * netlink_ns_capable - General netlink message capability test
1374 * @skb: socket buffer holding a netlink command from userspace
1375 * @user_ns: The user namespace of the capability to use
1376 * @cap: The capability to use
1377 *
1378 * Test to see if the opener of the socket we received the message
1379 * from had when the netlink socket was created and the sender of the
1380 * message has has the capability @cap in the user namespace @user_ns.
1381 */
1382bool netlink_ns_capable(const struct sk_buff *skb,
1383 struct user_namespace *user_ns, int cap)
1384{
1385 return __netlink_ns_capable(&NETLINK_CB(skb), user_ns, cap);
1386}
1387EXPORT_SYMBOL(netlink_ns_capable);
1388
1389/**
1390 * netlink_capable - Netlink global message capability test
1391 * @skb: socket buffer holding a netlink command from userspace
1392 * @cap: The capability to use
1393 *
1394 * Test to see if the opener of the socket we received the message
1395 * from had when the netlink socket was created and the sender of the
1396 * message has has the capability @cap in all user namespaces.
1397 */
1398bool netlink_capable(const struct sk_buff *skb, int cap)
1399{
1400 return netlink_ns_capable(skb, &init_user_ns, cap);
1401}
1402EXPORT_SYMBOL(netlink_capable);
1403
1404/**
1405 * netlink_net_capable - Netlink network namespace message capability test
1406 * @skb: socket buffer holding a netlink command from userspace
1407 * @cap: The capability to use
1408 *
1409 * Test to see if the opener of the socket we received the message
1410 * from had when the netlink socket was created and the sender of the
1411 * message has has the capability @cap over the network namespace of
1412 * the socket we received the message from.
1413 */
1414bool netlink_net_capable(const struct sk_buff *skb, int cap)
1415{
1416 return netlink_ns_capable(skb, sock_net(skb->sk)->user_ns, cap);
1417}
1418EXPORT_SYMBOL(netlink_net_capable);
1419
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001420static inline int netlink_allowed(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001421{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001422 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +00001423 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001424}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001426static void
1427netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1428{
1429 struct netlink_sock *nlk = nlk_sk(sk);
1430
1431 if (nlk->subscriptions && !subscriptions)
1432 __sk_del_bind_node(sk);
1433 else if (!nlk->subscriptions && subscriptions)
1434 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1435 nlk->subscriptions = subscriptions;
1436}
1437
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001438static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -07001439{
1440 struct netlink_sock *nlk = nlk_sk(sk);
1441 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001442 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001443 int err = 0;
1444
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001445 netlink_table_grab();
1446
Patrick McHardy513c2502005-09-06 15:43:59 -07001447 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001448 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -07001449 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001450 goto out_unlock;
1451 }
Patrick McHardy513c2502005-09-06 15:43:59 -07001452
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001453 if (nlk->ngroups >= groups)
1454 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -07001455
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001456 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1457 if (new_groups == NULL) {
1458 err = -ENOMEM;
1459 goto out_unlock;
1460 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001461 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001462 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1463
1464 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001465 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001466 out_unlock:
1467 netlink_table_ungrab();
1468 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001469}
1470
Johannes Berg02c81ab2014-12-22 18:56:35 +01001471static void netlink_undo_bind(int group, long unsigned int groups,
Johannes Berg023e2cf2014-12-23 21:00:06 +01001472 struct sock *sk)
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001473{
Johannes Berg023e2cf2014-12-23 21:00:06 +01001474 struct netlink_sock *nlk = nlk_sk(sk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001475 int undo;
1476
1477 if (!nlk->netlink_unbind)
1478 return;
1479
1480 for (undo = 0; undo < group; undo++)
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09001481 if (test_bit(undo, &groups))
Pablo Neira8b7c36d2015-01-29 10:51:53 +01001482 nlk->netlink_unbind(sock_net(sk), undo + 1);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001483}
1484
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001485static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1486 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001489 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 struct netlink_sock *nlk = nlk_sk(sk);
1491 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1492 int err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001493 long unsigned int groups = nladdr->nl_groups;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001494
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001495 if (addr_len < sizeof(struct sockaddr_nl))
1496 return -EINVAL;
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (nladdr->nl_family != AF_NETLINK)
1499 return -EINVAL;
1500
1501 /* Only superuser is allowed to listen multicasts */
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001502 if (groups) {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001503 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001504 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001505 err = netlink_realloc_groups(sk);
1506 if (err)
1507 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001510 if (nlk->portid)
Eric W. Biederman15e47302012-09-07 20:12:54 +00001511 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return -EINVAL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001513
1514 if (nlk->netlink_bind && groups) {
1515 int group;
1516
1517 for (group = 0; group < nlk->ngroups; group++) {
1518 if (!test_bit(group, &groups))
1519 continue;
Pablo Neira8b7c36d2015-01-29 10:51:53 +01001520 err = nlk->netlink_bind(net, group + 1);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001521 if (!err)
1522 continue;
Johannes Berg023e2cf2014-12-23 21:00:06 +01001523 netlink_undo_bind(group, groups, sk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001524 return err;
1525 }
1526 }
1527
1528 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 err = nladdr->nl_pid ?
Herbert Xu8ea65f42015-01-26 14:02:56 +11001530 netlink_insert(sk, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 netlink_autobind(sock);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001532 if (err) {
Johannes Berg023e2cf2014-12-23 21:00:06 +01001533 netlink_undo_bind(nlk->ngroups, groups, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001538 if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540
1541 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001542 netlink_update_subscriptions(sk, nlk->subscriptions +
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001543 hweight32(groups) -
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001544 hweight32(nlk->groups[0]));
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001545 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001546 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 netlink_table_ungrab();
1548
1549 return 0;
1550}
1551
1552static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1553 int alen, int flags)
1554{
1555 int err = 0;
1556 struct sock *sk = sock->sk;
1557 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001558 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Changli Gao6503d962010-03-31 22:58:26 +00001560 if (alen < sizeof(addr->sa_family))
1561 return -EINVAL;
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (addr->sa_family == AF_UNSPEC) {
1564 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001565 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001566 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return 0;
1568 }
1569 if (addr->sa_family != AF_NETLINK)
1570 return -EINVAL;
1571
Mike Pecovnik46833a82014-02-24 21:11:16 +01001572 if ((nladdr->nl_groups || nladdr->nl_pid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001573 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return -EPERM;
1575
Eric W. Biederman15e47302012-09-07 20:12:54 +00001576 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 err = netlink_autobind(sock);
1578
1579 if (err == 0) {
1580 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001581 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001582 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
1584
1585 return err;
1586}
1587
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001588static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1589 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 struct sock *sk = sock->sk;
1592 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001593 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 nladdr->nl_family = AF_NETLINK;
1596 nladdr->nl_pad = 0;
1597 *addr_len = sizeof(*nladdr);
1598
1599 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001600 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001601 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001603 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001604 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
1606 return 0;
1607}
1608
Eric W. Biederman15e47302012-09-07 20:12:54 +00001609static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 struct sock *sock;
1612 struct netlink_sock *nlk;
1613
Eric W. Biederman15e47302012-09-07 20:12:54 +00001614 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (!sock)
1616 return ERR_PTR(-ECONNREFUSED);
1617
1618 /* Don't bother queuing skb if kernel socket has no input function */
1619 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001620 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001621 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 sock_put(sock);
1623 return ERR_PTR(-ECONNREFUSED);
1624 }
1625 return sock;
1626}
1627
1628struct sock *netlink_getsockbyfilp(struct file *filp)
1629{
Al Viro496ad9a2013-01-23 17:07:38 -05001630 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 struct sock *sock;
1632
1633 if (!S_ISSOCK(inode->i_mode))
1634 return ERR_PTR(-ENOTSOCK);
1635
1636 sock = SOCKET_I(inode)->sk;
1637 if (sock->sk_family != AF_NETLINK)
1638 return ERR_PTR(-EINVAL);
1639
1640 sock_hold(sock);
1641 return sock;
1642}
1643
Pablo Neira3a365152013-06-28 03:04:23 +02001644static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1645 int broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001646{
1647 struct sk_buff *skb;
1648 void *data;
1649
Pablo Neira3a365152013-06-28 03:04:23 +02001650 if (size <= NLMSG_GOODSIZE || broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001651 return alloc_skb(size, GFP_KERNEL);
1652
Pablo Neira3a365152013-06-28 03:04:23 +02001653 size = SKB_DATA_ALIGN(size) +
1654 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001655
1656 data = vmalloc(size);
1657 if (data == NULL)
Pablo Neira3a365152013-06-28 03:04:23 +02001658 return NULL;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001659
Eric Dumazet2ea2f622015-04-24 16:05:01 -07001660 skb = __build_skb(data, size);
Pablo Neira3a365152013-06-28 03:04:23 +02001661 if (skb == NULL)
1662 vfree(data);
Eric Dumazet2ea2f622015-04-24 16:05:01 -07001663 else
Pablo Neira3a365152013-06-28 03:04:23 +02001664 skb->destructor = netlink_skb_destructor;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001665
1666 return skb;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001667}
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669/*
1670 * Attach a skb to a netlink socket.
1671 * The caller must hold a reference to the destination socket. On error, the
1672 * reference is dropped. The skb is not send to the destination, just all
1673 * all error checks are performed and memory in the queue is reserved.
1674 * Return values:
1675 * < 0: error. skb freed, reference to sock dropped.
1676 * 0: continue
1677 * 1: repeat lookup - reference dropped while waiting for socket memory.
1678 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001679int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001680 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct netlink_sock *nlk;
1683
1684 nlk = nlk_sk(sk);
1685
Patrick McHardy5fd96122013-04-17 06:47:03 +00001686 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001687 test_bit(NETLINK_S_CONGESTED, &nlk->state)) &&
Patrick McHardy5fd96122013-04-17 06:47:03 +00001688 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001690 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001691 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 netlink_overrun(sk);
1693 sock_put(sk);
1694 kfree_skb(skb);
1695 return -EAGAIN;
1696 }
1697
1698 __set_current_state(TASK_INTERRUPTIBLE);
1699 add_wait_queue(&nlk->wait, &wait);
1700
1701 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001702 test_bit(NETLINK_S_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001704 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 __set_current_state(TASK_RUNNING);
1707 remove_wait_queue(&nlk->wait, &wait);
1708 sock_put(sk);
1709
1710 if (signal_pending(current)) {
1711 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001712 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
1714 return 1;
1715 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001716 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 0;
1718}
1719
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001720static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 int len = skb->len;
1723
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001724 netlink_deliver_tap(skb);
1725
Patrick McHardyf9c22882013-04-17 06:47:04 +00001726#ifdef CONFIG_NETLINK_MMAP
1727 if (netlink_skb_is_mmaped(skb))
1728 netlink_queue_mmaped_skb(sk, skb);
1729 else if (netlink_rx_is_mmaped(sk))
1730 netlink_ring_set_copied(sk, skb);
1731 else
1732#endif /* CONFIG_NETLINK_MMAP */
1733 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -04001734 sk->sk_data_ready(sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001735 return len;
1736}
1737
1738int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1739{
1740 int len = __netlink_sendskb(sk, skb);
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 sock_put(sk);
1743 return len;
1744}
1745
1746void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1747{
1748 kfree_skb(skb);
1749 sock_put(sk);
1750}
1751
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001752static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 int delta;
1755
Patrick McHardy1298ca42013-04-17 06:46:59 +00001756 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001757 if (netlink_skb_is_mmaped(skb))
1758 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001760 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001761 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return skb;
1763
1764 if (skb_shared(skb)) {
1765 struct sk_buff *nskb = skb_clone(skb, allocation);
1766 if (!nskb)
1767 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001768 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 skb = nskb;
1770 }
1771
1772 if (!pskb_expand_head(skb, 0, -delta, allocation))
1773 skb->truesize -= delta;
1774
1775 return skb;
1776}
1777
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001778static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1779 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001780{
1781 int ret;
1782 struct netlink_sock *nlk = nlk_sk(sk);
1783
1784 ret = -ECONNREFUSED;
1785 if (nlk->netlink_rcv != NULL) {
1786 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001787 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001788 NETLINK_CB(skb).sk = ssk;
Daniel Borkmann73bfd372013-12-23 14:35:55 +01001789 netlink_deliver_tap_kernel(sk, ssk, skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001790 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001791 consume_skb(skb);
1792 } else {
1793 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001794 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001795 sock_put(sk);
1796 return ret;
1797}
1798
1799int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001800 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 struct sock *sk;
1803 int err;
1804 long timeo;
1805
1806 skb = netlink_trim(skb, gfp_any());
1807
1808 timeo = sock_sndtimeo(ssk, nonblock);
1809retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001810 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (IS_ERR(sk)) {
1812 kfree_skb(skb);
1813 return PTR_ERR(sk);
1814 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001815 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001816 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001817
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001818 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001819 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001820 kfree_skb(skb);
1821 sock_put(sk);
1822 return err;
1823 }
1824
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001825 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (err == 1)
1827 goto retry;
1828 if (err)
1829 return err;
1830
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001831 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001833EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Patrick McHardyf9c22882013-04-17 06:47:04 +00001835struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1836 u32 dst_portid, gfp_t gfp_mask)
1837{
1838#ifdef CONFIG_NETLINK_MMAP
1839 struct sock *sk = NULL;
1840 struct sk_buff *skb;
1841 struct netlink_ring *ring;
1842 struct nl_mmap_hdr *hdr;
1843 unsigned int maxlen;
1844
1845 sk = netlink_getsockbyportid(ssk, dst_portid);
1846 if (IS_ERR(sk))
1847 goto out;
1848
1849 ring = &nlk_sk(sk)->rx_ring;
1850 /* fast-path without atomic ops for common case: non-mmaped receiver */
1851 if (ring->pg_vec == NULL)
1852 goto out_put;
1853
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001854 if (ring->frame_size - NL_MMAP_HDRLEN < size)
1855 goto out_put;
1856
Patrick McHardyf9c22882013-04-17 06:47:04 +00001857 skb = alloc_skb_head(gfp_mask);
1858 if (skb == NULL)
1859 goto err1;
1860
1861 spin_lock_bh(&sk->sk_receive_queue.lock);
1862 /* check again under lock */
1863 if (ring->pg_vec == NULL)
1864 goto out_free;
1865
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001866 /* check again under lock */
Patrick McHardyf9c22882013-04-17 06:47:04 +00001867 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1868 if (maxlen < size)
1869 goto out_free;
1870
1871 netlink_forward_ring(ring);
1872 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1873 if (hdr == NULL)
1874 goto err2;
1875 netlink_ring_setup_skb(skb, sk, ring, hdr);
1876 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1877 atomic_inc(&ring->pending);
1878 netlink_increment_head(ring);
1879
1880 spin_unlock_bh(&sk->sk_receive_queue.lock);
1881 return skb;
1882
1883err2:
1884 kfree_skb(skb);
1885 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001886 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001887err1:
1888 sock_put(sk);
1889 return NULL;
1890
1891out_free:
1892 kfree_skb(skb);
1893 spin_unlock_bh(&sk->sk_receive_queue.lock);
1894out_put:
1895 sock_put(sk);
1896out:
1897#endif
1898 return alloc_skb(size, gfp_mask);
1899}
1900EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1901
Patrick McHardy4277a082006-03-20 18:52:01 -08001902int netlink_has_listeners(struct sock *sk, unsigned int group)
1903{
1904 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001905 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001906
Denis V. Lunevaed81562007-10-10 21:14:32 -07001907 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001908
1909 rcu_read_lock();
1910 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1911
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001912 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001913 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001914
1915 rcu_read_unlock();
1916
Patrick McHardy4277a082006-03-20 18:52:01 -08001917 return res;
1918}
1919EXPORT_SYMBOL_GPL(netlink_has_listeners);
1920
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001921static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 struct netlink_sock *nlk = nlk_sk(sk);
1924
1925 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001926 !test_bit(NETLINK_S_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001927 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001928 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001929 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931 return -1;
1932}
1933
1934struct netlink_broadcast_data {
1935 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001936 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001937 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 u32 group;
1939 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001940 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 int congested;
1942 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001943 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001945 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1946 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947};
1948
Rami Rosen46c95212014-07-01 21:17:35 +03001949static void do_one_broadcast(struct sock *sk,
1950 struct netlink_broadcast_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 struct netlink_sock *nlk = nlk_sk(sk);
1953 int val;
1954
1955 if (p->exclude_sk == sk)
Rami Rosen46c95212014-07-01 21:17:35 +03001956 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Eric W. Biederman15e47302012-09-07 20:12:54 +00001958 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001959 !test_bit(p->group - 1, nlk->groups))
Rami Rosen46c95212014-07-01 21:17:35 +03001960 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001962 if (!net_eq(sock_net(sk), p->net)) {
1963 if (!(nlk->flags & NETLINK_F_LISTEN_ALL_NSID))
1964 return;
1965
1966 if (!peernet_has_id(sock_net(sk), p->net))
1967 return;
1968
1969 if (!file_ns_capable(sk->sk_socket->file, p->net->user_ns,
1970 CAP_NET_BROADCAST))
1971 return;
1972 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (p->failure) {
1975 netlink_overrun(sk);
Rami Rosen46c95212014-07-01 21:17:35 +03001976 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978
1979 sock_hold(sk);
1980 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001981 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 p->skb2 = skb_clone(p->skb, p->allocation);
1983 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001984 p->skb2 = skb_get(p->skb);
1985 /*
1986 * skb ownership may have been set when
1987 * delivered to a previous socket.
1988 */
1989 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
1991 }
1992 if (p->skb2 == NULL) {
1993 netlink_overrun(sk);
1994 /* Clone failed. Notify ALL listeners. */
1995 p->failure = 1;
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001996 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001997 p->delivery_failure = 1;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001998 goto out;
1999 }
2000 if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002001 kfree_skb(p->skb2);
2002 p->skb2 = NULL;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02002003 goto out;
2004 }
2005 if (sk_filter(sk, p->skb2)) {
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002006 kfree_skb(p->skb2);
2007 p->skb2 = NULL;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02002008 goto out;
2009 }
2010 NETLINK_CB(p->skb2).nsid = peernet2id(sock_net(sk), p->net);
2011 NETLINK_CB(p->skb2).nsid_is_set = true;
2012 val = netlink_broadcast_deliver(sk, p->skb2);
2013 if (val < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 netlink_overrun(sk);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002015 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002016 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 } else {
2018 p->congested |= val;
2019 p->delivered = 1;
2020 p->skb2 = NULL;
2021 }
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02002022out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Eric W. Biederman15e47302012-09-07 20:12:54 +00002026int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002027 u32 group, gfp_t allocation,
2028 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
2029 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002031 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 struct sock *sk;
2034
2035 skb = netlink_trim(skb, allocation);
2036
2037 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002038 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002039 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 info.group = group;
2041 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08002042 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 info.congested = 0;
2044 info.delivered = 0;
2045 info.allocation = allocation;
2046 info.skb = skb;
2047 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002048 info.tx_filter = filter;
2049 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 /* While we sleep in clone, do not allow to change socket list */
2052
2053 netlink_lock_table();
2054
Sasha Levinb67bfe02013-02-27 17:06:00 -08002055 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 do_one_broadcast(sk, &info);
2057
Neil Horman70d4bf62010-07-20 06:45:56 +00002058 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 netlink_unlock_table();
2061
Neil Horman70d4bf62010-07-20 06:45:56 +00002062 if (info.delivery_failure) {
2063 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08002064 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002065 }
2066 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (info.delivered) {
2069 if (info.congested && (allocation & __GFP_WAIT))
2070 yield();
2071 return 0;
2072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return -ESRCH;
2074}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002075EXPORT_SYMBOL(netlink_broadcast_filtered);
2076
Eric W. Biederman15e47302012-09-07 20:12:54 +00002077int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002078 u32 group, gfp_t allocation)
2079{
Eric W. Biederman15e47302012-09-07 20:12:54 +00002080 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002081 NULL, NULL);
2082}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002083EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085struct netlink_set_err_data {
2086 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002087 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 u32 group;
2089 int code;
2090};
2091
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00002092static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002095 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 if (sk == p->exclude_sk)
2098 goto out;
2099
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08002100 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002101 goto out;
2102
Eric W. Biederman15e47302012-09-07 20:12:54 +00002103 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07002104 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 goto out;
2106
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002107 if (p->code == ENOBUFS && nlk->flags & NETLINK_F_RECV_NO_ENOBUFS) {
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002108 ret = 1;
2109 goto out;
2110 }
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 sk->sk_err = p->code;
2113 sk->sk_error_report(sk);
2114out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002115 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002118/**
2119 * netlink_set_err - report error to broadcast listeners
2120 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00002121 * @portid: the PORTID of a process that we want to skip (if any)
Johannes Berg840e93f22013-11-19 10:35:40 +01002122 * @group: the broadcast group that will notice the error
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002123 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002124 *
2125 * This function returns the number of broadcast listeners that have set the
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002126 * NETLINK_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002127 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002128int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002132 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002135 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002137 /* sk->sk_err wants a positive error value */
2138 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 read_lock(&nl_table_lock);
2141
Sasha Levinb67bfe02013-02-27 17:06:00 -08002142 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002143 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002146 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01002148EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Johannes Berg84659eb2007-07-18 15:47:05 -07002150/* must be called with netlink table grabbed */
2151static void netlink_update_socket_mc(struct netlink_sock *nlk,
2152 unsigned int group,
2153 int is_new)
2154{
2155 int old, new = !!is_new, subscriptions;
2156
2157 old = test_bit(group - 1, nlk->groups);
2158 subscriptions = nlk->subscriptions - old + new;
2159 if (new)
2160 __set_bit(group - 1, nlk->groups);
2161 else
2162 __clear_bit(group - 1, nlk->groups);
2163 netlink_update_subscriptions(&nlk->sk, subscriptions);
2164 netlink_update_listeners(&nlk->sk);
2165}
2166
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002167static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002168 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002169{
2170 struct sock *sk = sock->sk;
2171 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07002172 unsigned int val = 0;
2173 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002174
2175 if (level != SOL_NETLINK)
2176 return -ENOPROTOOPT;
2177
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002178 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
2179 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07002180 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002181 return -EFAULT;
2182
2183 switch (optname) {
2184 case NETLINK_PKTINFO:
2185 if (val)
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002186 nlk->flags |= NETLINK_F_RECV_PKTINFO;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002187 else
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002188 nlk->flags &= ~NETLINK_F_RECV_PKTINFO;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002189 err = 0;
2190 break;
2191 case NETLINK_ADD_MEMBERSHIP:
2192 case NETLINK_DROP_MEMBERSHIP: {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002193 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002194 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002195 err = netlink_realloc_groups(sk);
2196 if (err)
2197 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002198 if (!val || val - 1 >= nlk->ngroups)
2199 return -EINVAL;
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002200 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
Johannes Berg023e2cf2014-12-23 21:00:06 +01002201 err = nlk->netlink_bind(sock_net(sk), val);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04002202 if (err)
2203 return err;
2204 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002205 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07002206 netlink_update_socket_mc(nlk, val,
2207 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002208 netlink_table_ungrab();
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002209 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
Johannes Berg023e2cf2014-12-23 21:00:06 +01002210 nlk->netlink_unbind(sock_net(sk), val);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00002211
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002212 err = 0;
2213 break;
2214 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002215 case NETLINK_BROADCAST_ERROR:
2216 if (val)
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002217 nlk->flags |= NETLINK_F_BROADCAST_SEND_ERROR;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002218 else
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002219 nlk->flags &= ~NETLINK_F_BROADCAST_SEND_ERROR;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002220 err = 0;
2221 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002222 case NETLINK_NO_ENOBUFS:
2223 if (val) {
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002224 nlk->flags |= NETLINK_F_RECV_NO_ENOBUFS;
2225 clear_bit(NETLINK_S_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002226 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00002227 } else {
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002228 nlk->flags &= ~NETLINK_F_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002229 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002230 err = 0;
2231 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002232#ifdef CONFIG_NETLINK_MMAP
2233 case NETLINK_RX_RING:
2234 case NETLINK_TX_RING: {
2235 struct nl_mmap_req req;
2236
2237 /* Rings might consume more memory than queue limits, require
2238 * CAP_NET_ADMIN.
2239 */
2240 if (!capable(CAP_NET_ADMIN))
2241 return -EPERM;
2242 if (optlen < sizeof(req))
2243 return -EINVAL;
2244 if (copy_from_user(&req, optval, sizeof(req)))
2245 return -EFAULT;
Florian Westphal0470eb92015-07-21 16:33:50 +02002246 err = netlink_set_ring(sk, &req,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002247 optname == NETLINK_TX_RING);
2248 break;
2249 }
2250#endif /* CONFIG_NETLINK_MMAP */
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02002251 case NETLINK_LISTEN_ALL_NSID:
2252 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_BROADCAST))
2253 return -EPERM;
2254
2255 if (val)
2256 nlk->flags |= NETLINK_F_LISTEN_ALL_NSID;
2257 else
2258 nlk->flags &= ~NETLINK_F_LISTEN_ALL_NSID;
2259 err = 0;
2260 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002261 default:
2262 err = -ENOPROTOOPT;
2263 }
2264 return err;
2265}
2266
2267static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002268 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002269{
2270 struct sock *sk = sock->sk;
2271 struct netlink_sock *nlk = nlk_sk(sk);
2272 int len, val, err;
2273
2274 if (level != SOL_NETLINK)
2275 return -ENOPROTOOPT;
2276
2277 if (get_user(len, optlen))
2278 return -EFAULT;
2279 if (len < 0)
2280 return -EINVAL;
2281
2282 switch (optname) {
2283 case NETLINK_PKTINFO:
2284 if (len < sizeof(int))
2285 return -EINVAL;
2286 len = sizeof(int);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002287 val = nlk->flags & NETLINK_F_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002288 if (put_user(len, optlen) ||
2289 put_user(val, optval))
2290 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002291 err = 0;
2292 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002293 case NETLINK_BROADCAST_ERROR:
2294 if (len < sizeof(int))
2295 return -EINVAL;
2296 len = sizeof(int);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002297 val = nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR ? 1 : 0;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002298 if (put_user(len, optlen) ||
2299 put_user(val, optval))
2300 return -EFAULT;
2301 err = 0;
2302 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002303 case NETLINK_NO_ENOBUFS:
2304 if (len < sizeof(int))
2305 return -EINVAL;
2306 len = sizeof(int);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002307 val = nlk->flags & NETLINK_F_RECV_NO_ENOBUFS ? 1 : 0;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002308 if (put_user(len, optlen) ||
2309 put_user(val, optval))
2310 return -EFAULT;
2311 err = 0;
2312 break;
David Herrmannb42be382015-06-17 17:14:33 +02002313 case NETLINK_LIST_MEMBERSHIPS: {
2314 int pos, idx, shift;
2315
2316 err = 0;
2317 netlink_table_grab();
2318 for (pos = 0; pos * 8 < nlk->ngroups; pos += sizeof(u32)) {
2319 if (len - pos < sizeof(u32))
2320 break;
2321
2322 idx = pos / sizeof(unsigned long);
2323 shift = (pos % sizeof(unsigned long)) * 8;
2324 if (put_user((u32)(nlk->groups[idx] >> shift),
2325 (u32 __user *)(optval + pos))) {
2326 err = -EFAULT;
2327 break;
2328 }
2329 }
2330 if (put_user(ALIGN(nlk->ngroups / 8, sizeof(u32)), optlen))
2331 err = -EFAULT;
2332 netlink_table_ungrab();
2333 break;
2334 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002335 default:
2336 err = -ENOPROTOOPT;
2337 }
2338 return err;
2339}
2340
2341static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2342{
2343 struct nl_pktinfo info;
2344
2345 info.group = NETLINK_CB(skb).dst_group;
2346 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2347}
2348
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02002349static void netlink_cmsg_listen_all_nsid(struct sock *sk, struct msghdr *msg,
2350 struct sk_buff *skb)
2351{
2352 if (!NETLINK_CB(skb).nsid_is_set)
2353 return;
2354
2355 put_cmsg(msg, SOL_NETLINK, NETLINK_LISTEN_ALL_NSID, sizeof(int),
2356 &NETLINK_CB(skb).nsid);
2357}
2358
Ying Xue1b784142015-03-02 15:37:48 +08002359static int netlink_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 struct sock *sk = sock->sk;
2362 struct netlink_sock *nlk = nlk_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002363 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002364 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002365 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 struct sk_buff *skb;
2367 int err;
2368 struct scm_cookie scm;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002369 u32 netlink_skb_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
2371 if (msg->msg_flags&MSG_OOB)
2372 return -EOPNOTSUPP;
2373
Christoph Hellwig7cc05662015-01-28 18:04:53 +01002374 err = scm_send(sock, msg, &scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (err < 0)
2376 return err;
2377
2378 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002379 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002381 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002382 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002383 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002384 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002385 if ((dst_group || dst_portid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002386 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002387 goto out;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002388 netlink_skb_flags |= NETLINK_SKB_DST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002390 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002391 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
2393
Eric W. Biederman15e47302012-09-07 20:12:54 +00002394 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 err = netlink_autobind(sock);
2396 if (err)
2397 goto out;
2398 }
2399
Al Viroa8866ff2014-12-12 23:02:36 -05002400 /* It's a really convoluted way for userland to ask for mmaped
2401 * sendmsg(), but that's what we've got...
2402 */
Patrick McHardy5fd96122013-04-17 06:47:03 +00002403 if (netlink_tx_is_mmaped(sk) &&
Al Viroa8866ff2014-12-12 23:02:36 -05002404 msg->msg_iter.type == ITER_IOVEC &&
2405 msg->msg_iter.nr_segs == 1 &&
Al Viroc0371da2014-11-24 10:42:55 -05002406 msg->msg_iter.iov->iov_base == NULL) {
Patrick McHardy5fd96122013-04-17 06:47:03 +00002407 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
Christoph Hellwig7cc05662015-01-28 18:04:53 +01002408 &scm);
Patrick McHardy5fd96122013-04-17 06:47:03 +00002409 goto out;
2410 }
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 err = -EMSGSIZE;
2413 if (len > sk->sk_sndbuf - 32)
2414 goto out;
2415 err = -ENOBUFS;
Pablo Neira3a365152013-06-28 03:04:23 +02002416 skb = netlink_alloc_large_skb(len, dst_group);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002417 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 goto out;
2419
Eric W. Biederman15e47302012-09-07 20:12:54 +00002420 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002421 NETLINK_CB(skb).dst_group = dst_group;
Christoph Hellwig7cc05662015-01-28 18:04:53 +01002422 NETLINK_CB(skb).creds = scm.creds;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002423 NETLINK_CB(skb).flags = netlink_skb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 err = -EFAULT;
Al Viro6ce8e9c2014-04-06 21:25:44 -04002426 if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 kfree_skb(skb);
2428 goto out;
2429 }
2430
2431 err = security_netlink_send(sk, skb);
2432 if (err) {
2433 kfree_skb(skb);
2434 goto out;
2435 }
2436
Patrick McHardyd629b832005-08-14 19:27:50 -07002437 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002439 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002441 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443out:
Christoph Hellwig7cc05662015-01-28 18:04:53 +01002444 scm_destroy(&scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return err;
2446}
2447
Ying Xue1b784142015-03-02 15:37:48 +08002448static int netlink_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 int flags)
2450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 struct scm_cookie scm;
2452 struct sock *sk = sock->sk;
2453 struct netlink_sock *nlk = nlk_sk(sk);
2454 int noblock = flags&MSG_DONTWAIT;
2455 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002456 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002457 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 if (flags&MSG_OOB)
2460 return -EOPNOTSUPP;
2461
2462 copied = 0;
2463
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002464 skb = skb_recv_datagram(sk, flags, noblock, &err);
2465 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 goto out;
2467
Johannes Berg68d6ac62010-08-15 21:20:44 +00002468 data_skb = skb;
2469
Johannes Berg1dacc762009-07-01 11:26:02 +00002470#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2471 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002472 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002473 * If this skb has a frag_list, then here that means that we
2474 * will have to use the frag_list skb's data for compat tasks
2475 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002476 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002477 * If we need to send the compat skb, assign it to the
2478 * 'data_skb' variable so that it will be used below for data
2479 * copying. We keep 'skb' for everything else, including
2480 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002481 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002482 if (flags & MSG_CMSG_COMPAT)
2483 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002484 }
2485#endif
2486
Eric Dumazet9063e212014-03-07 12:02:33 -08002487 /* Record the max length of recvmsg() calls for future allocations */
2488 nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
2489 nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
2490 16384);
2491
Johannes Berg68d6ac62010-08-15 21:20:44 +00002492 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 if (len < copied) {
2494 msg->msg_flags |= MSG_TRUNC;
2495 copied = len;
2496 }
2497
Johannes Berg68d6ac62010-08-15 21:20:44 +00002498 skb_reset_transport_header(data_skb);
David S. Miller51f3d022014-11-05 16:46:40 -05002499 err = skb_copy_datagram_msg(data_skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002502 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 addr->nl_family = AF_NETLINK;
2504 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002505 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002506 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 msg->msg_namelen = sizeof(*addr);
2508 }
2509
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002510 if (nlk->flags & NETLINK_F_RECV_PKTINFO)
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002511 netlink_cmsg_recv_pktinfo(msg, skb);
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02002512 if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID)
2513 netlink_cmsg_listen_all_nsid(sk, msg, skb);
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002514
Christoph Hellwig7cc05662015-01-28 18:04:53 +01002515 memset(&scm, 0, sizeof(scm));
2516 scm.creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002517 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002518 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 skb_free_datagram(sk, skb);
2521
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002522 if (nlk->cb_running &&
2523 atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
Andrey Vaginb44d2112011-02-21 02:40:47 +00002524 ret = netlink_dump(sk);
2525 if (ret) {
Ben Pfaffac30ef82014-07-09 10:31:22 -07002526 sk->sk_err = -ret;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002527 sk->sk_error_report(sk);
2528 }
2529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Christoph Hellwig7cc05662015-01-28 18:04:53 +01002531 scm_recv(sock, msg, &scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532out:
2533 netlink_rcv_wake(sk);
2534 return err ? : copied;
2535}
2536
David S. Miller676d2362014-04-11 16:15:36 -04002537static void netlink_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002539 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540}
2541
2542/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002543 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 * complete set of kernel non-blocking support for message
2545 * queueing.
2546 */
2547
2548struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002549__netlink_kernel_create(struct net *net, int unit, struct module *module,
2550 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
2552 struct socket *sock;
2553 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002554 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002555 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002556 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2557 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002559 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002561 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 return NULL;
2563
2564 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2565 return NULL;
Eric W. Biederman13d30782015-05-08 21:11:33 -05002566
2567 if (__netlink_create(net, sock, cb_mutex, unit, 1) < 0)
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002568 goto out_sock_release_nosk;
2569
2570 sk = sock->sk;
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002571
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002572 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002573 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002574 else
2575 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002576
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002577 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002578 if (!listeners)
2579 goto out_sock_release;
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002582 if (cfg && cfg->input)
2583 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Herbert Xu8ea65f42015-01-26 14:02:56 +11002585 if (netlink_insert(sk, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002586 goto out_sock_release;
2587
2588 nlk = nlk_sk(sk);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02002589 nlk->flags |= NETLINK_F_KERNEL_SOCKET;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002590
2591 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002592 if (!nl_table[unit].registered) {
2593 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002594 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002595 nl_table[unit].cb_mutex = cb_mutex;
2596 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002597 if (cfg) {
2598 nl_table[unit].bind = cfg->bind;
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09002599 nl_table[unit].unbind = cfg->unbind;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002600 nl_table[unit].flags = cfg->flags;
Gao fengda12c902013-06-06 14:49:11 +08002601 if (cfg->compare)
2602 nl_table[unit].compare = cfg->compare;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002603 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002604 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002605 } else {
2606 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002607 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002608 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002609 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002610 return sk;
2611
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002612out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002613 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002614 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002615 return NULL;
2616
2617out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002618 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002619 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002621EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002622
2623void
2624netlink_kernel_release(struct sock *sk)
2625{
Eric W. Biederman13d30782015-05-08 21:11:33 -05002626 if (sk == NULL || sk->sk_socket == NULL)
2627 return;
2628
2629 sock_release(sk->sk_socket);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002630}
2631EXPORT_SYMBOL(netlink_kernel_release);
2632
Johannes Bergd136f1b2009-09-12 03:03:15 +00002633int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002634{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002635 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002636 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002637
2638 if (groups < 32)
2639 groups = 32;
2640
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002641 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002642 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2643 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002644 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002645 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002646 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2647 rcu_assign_pointer(tbl->listeners, new);
2648
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002649 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002650 }
2651 tbl->groups = groups;
2652
Johannes Bergd136f1b2009-09-12 03:03:15 +00002653 return 0;
2654}
2655
2656/**
2657 * netlink_change_ngroups - change number of multicast groups
2658 *
2659 * This changes the number of multicast groups that are available
2660 * on a certain netlink family. Note that it is not possible to
2661 * change the number of groups to below 32. Also note that it does
2662 * not implicitly call netlink_clear_multicast_users() when the
2663 * number of groups is reduced.
2664 *
2665 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2666 * @groups: The new number of groups.
2667 */
2668int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2669{
2670 int err;
2671
2672 netlink_table_grab();
2673 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002674 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002675
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002676 return err;
2677}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002678
Johannes Bergb8273572009-09-24 15:44:05 -07002679void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2680{
2681 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002682 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2683
Sasha Levinb67bfe02013-02-27 17:06:00 -08002684 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002685 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2686}
2687
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002688struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002689__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002690{
2691 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002692 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002693
Wang Yufen23b45672014-02-17 16:53:32 +08002694 nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size));
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002695 nlh->nlmsg_type = type;
2696 nlh->nlmsg_len = size;
2697 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002698 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002699 nlh->nlmsg_seq = seq;
2700 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002701 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002702 return nlh;
2703}
2704EXPORT_SYMBOL(__nlmsg_put);
2705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706/*
2707 * It looks a bit ugly.
2708 * It would be better to create kernel thread.
2709 */
2710
2711static int netlink_dump(struct sock *sk)
2712{
2713 struct netlink_sock *nlk = nlk_sk(sk);
2714 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002715 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002717 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002718 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002720 mutex_lock(nlk->cb_mutex);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002721 if (!nlk->cb_running) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002722 err = -EINVAL;
2723 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 }
2725
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002726 cb = &nlk->cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002727 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2728
Patrick McHardyf9c22882013-04-17 06:47:04 +00002729 if (!netlink_rx_is_mmaped(sk) &&
2730 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2731 goto errout_skb;
Eric Dumazet9063e212014-03-07 12:02:33 -08002732
2733 /* NLMSG_GOODSIZE is small to avoid high order allocations being
2734 * required, but it makes sense to _attempt_ a 16K bytes allocation
2735 * to reduce number of system calls on dump operations, if user
2736 * ever provided a big enough buffer.
2737 */
2738 if (alloc_size < nlk->max_recvmsg_len) {
2739 skb = netlink_alloc_skb(sk,
2740 nlk->max_recvmsg_len,
2741 nlk->portid,
2742 GFP_KERNEL |
2743 __GFP_NOWARN |
2744 __GFP_NORETRY);
2745 /* available room should be exact amount to avoid MSG_TRUNC */
2746 if (skb)
2747 skb_reserve(skb, skb_tailroom(skb) -
2748 nlk->max_recvmsg_len);
2749 }
2750 if (!skb)
2751 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid,
2752 GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002753 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002754 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002755 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 len = cb->dump(skb, cb);
2758
2759 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002760 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002761
2762 if (sk_filter(sk, skb))
2763 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002764 else
2765 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return 0;
2767 }
2768
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002769 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2770 if (!nlh)
2771 goto errout_skb;
2772
Johannes Berg670dc282011-06-20 13:40:46 +02002773 nl_dump_check_consistent(cb, nlh);
2774
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002775 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2776
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002777 if (sk_filter(sk, skb))
2778 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002779 else
2780 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
Thomas Grafa8f74b22005-11-10 02:25:52 +01002782 if (cb->done)
2783 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002785 nlk->cb_running = false;
2786 mutex_unlock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002787 module_put(cb->module);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002788 consume_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002790
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002791errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002792 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002793 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002794 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
Gao feng6dc878a2012-10-04 20:15:48 +00002797int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2798 const struct nlmsghdr *nlh,
2799 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
2801 struct netlink_callback *cb;
2802 struct sock *sk;
2803 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002804 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Patrick McHardyf9c22882013-04-17 06:47:04 +00002806 /* Memory mapped dump requests need to be copied to avoid looping
2807 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2808 * a reference to the skb.
2809 */
2810 if (netlink_skb_is_mmaped(skb)) {
2811 skb = skb_copy(skb, GFP_KERNEL);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002812 if (skb == NULL)
Patrick McHardyf9c22882013-04-17 06:47:04 +00002813 return -ENOBUFS;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002814 } else
2815 atomic_inc(&skb->users);
2816
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002817 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2818 if (sk == NULL) {
2819 ret = -ECONNREFUSED;
2820 goto error_free;
2821 }
2822
2823 nlk = nlk_sk(sk);
2824 mutex_lock(nlk->cb_mutex);
2825 /* A dump is in progress... */
2826 if (nlk->cb_running) {
2827 ret = -EBUSY;
2828 goto error_unlock;
2829 }
2830 /* add reference of module which cb->dump belongs to */
2831 if (!try_module_get(control->module)) {
2832 ret = -EPROTONOSUPPORT;
2833 goto error_unlock;
2834 }
2835
2836 cb = &nlk->cb;
2837 memset(cb, 0, sizeof(*cb));
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002838 cb->dump = control->dump;
2839 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002841 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002842 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002843 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 cb->skb = skb;
2845
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002846 nlk->cb_running = true;
Gao feng6dc878a2012-10-04 20:15:48 +00002847
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002848 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Andrey Vaginb44d2112011-02-21 02:40:47 +00002850 ret = netlink_dump(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002852
Andrey Vaginb44d2112011-02-21 02:40:47 +00002853 if (ret)
2854 return ret;
2855
Denis V. Lunev5c582982007-10-23 20:29:25 -07002856 /* We successfully started a dump, by returning -EINTR we
2857 * signal not to send ACK even if it was requested.
2858 */
2859 return -EINTR;
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002860
2861error_unlock:
2862 sock_put(sk);
2863 mutex_unlock(nlk->cb_mutex);
2864error_free:
2865 kfree_skb(skb);
2866 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867}
Gao feng6dc878a2012-10-04 20:15:48 +00002868EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
2870void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2871{
2872 struct sk_buff *skb;
2873 struct nlmsghdr *rep;
2874 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002875 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Thomas Graf339bf982006-11-10 14:10:15 -08002877 /* error messages get the original request appened */
2878 if (err)
2879 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Patrick McHardyf9c22882013-04-17 06:47:04 +00002881 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2882 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 if (!skb) {
2884 struct sock *sk;
2885
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002886 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002887 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002888 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 if (sk) {
2890 sk->sk_err = ENOBUFS;
2891 sk->sk_error_report(sk);
2892 sock_put(sk);
2893 }
2894 return;
2895 }
2896
Eric W. Biederman15e47302012-09-07 20:12:54 +00002897 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002898 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002899 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002901 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002902 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002904EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002906int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002907 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002908{
Thomas Graf82ace472005-11-10 02:25:53 +01002909 struct nlmsghdr *nlh;
2910 int err;
2911
2912 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002913 int msglen;
2914
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002915 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002916 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002917
Martin Murrayad8e4b72006-01-10 13:02:29 -08002918 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002919 return 0;
2920
Thomas Grafd35b6852007-03-22 23:28:46 -07002921 /* Only requests are handled by the kernel */
2922 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002923 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002924
Thomas Graf45e7ae72007-03-22 23:29:10 -07002925 /* Skip control messages */
2926 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002927 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002928
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002929 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002930 if (err == -EINTR)
2931 goto skip;
2932
2933ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002934 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002935 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002936
Denis V. Lunev5c582982007-10-23 20:29:25 -07002937skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002938 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002939 if (msglen > skb->len)
2940 msglen = skb->len;
2941 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002942 }
2943
2944 return 0;
2945}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002946EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002947
2948/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002949 * nlmsg_notify - send a notification netlink message
2950 * @sk: netlink socket to use
2951 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002952 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002953 * @group: destination multicast group or 0
2954 * @report: 1 to report back, 0 to disable
2955 * @flags: allocation flags
2956 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002957int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002958 unsigned int group, int report, gfp_t flags)
2959{
2960 int err = 0;
2961
2962 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002963 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002964
2965 if (report) {
2966 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002967 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002968 }
2969
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002970 /* errors reported via destination sk->sk_err, but propagate
2971 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002972 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002973 }
2974
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002975 if (report) {
2976 int err2;
2977
Eric W. Biederman15e47302012-09-07 20:12:54 +00002978 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002979 if (!err || err == -ESRCH)
2980 err = err2;
2981 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002982
2983 return err;
2984}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002985EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987#ifdef CONFIG_PROC_FS
2988struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002989 struct seq_net_private p;
Herbert Xu56d28b12015-02-04 07:33:24 +11002990 struct rhashtable_iter hti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992};
2993
Herbert Xu56d28b12015-02-04 07:33:24 +11002994static int netlink_walk_start(struct nl_seq_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Herbert Xu56d28b12015-02-04 07:33:24 +11002996 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Herbert Xu56d28b12015-02-04 07:33:24 +11002998 err = rhashtable_walk_init(&nl_table[iter->link].hash, &iter->hti);
2999 if (err) {
3000 iter->link = MAX_LINKS;
3001 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 }
Herbert Xu56d28b12015-02-04 07:33:24 +11003003
3004 err = rhashtable_walk_start(&iter->hti);
3005 return err == -EAGAIN ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
Herbert Xu56d28b12015-02-04 07:33:24 +11003008static void netlink_walk_stop(struct nl_seq_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Herbert Xu56d28b12015-02-04 07:33:24 +11003010 rhashtable_walk_stop(&iter->hti);
3011 rhashtable_walk_exit(&iter->hti);
3012}
3013
3014static void *__netlink_seq_next(struct seq_file *seq)
3015{
3016 struct nl_seq_iter *iter = seq->private;
3017 struct netlink_sock *nlk;
3018
3019 do {
3020 for (;;) {
3021 int err;
3022
3023 nlk = rhashtable_walk_next(&iter->hti);
3024
3025 if (IS_ERR(nlk)) {
3026 if (PTR_ERR(nlk) == -EAGAIN)
3027 continue;
3028
3029 return nlk;
3030 }
3031
3032 if (nlk)
3033 break;
3034
3035 netlink_walk_stop(iter);
3036 if (++iter->link >= MAX_LINKS)
3037 return NULL;
3038
3039 err = netlink_walk_start(iter);
3040 if (err)
3041 return ERR_PTR(err);
3042 }
3043 } while (sock_net(&nlk->sk) != seq_file_net(seq));
3044
3045 return nlk;
3046}
3047
3048static void *netlink_seq_start(struct seq_file *seq, loff_t *posp)
3049{
3050 struct nl_seq_iter *iter = seq->private;
3051 void *obj = SEQ_START_TOKEN;
3052 loff_t pos;
3053 int err;
3054
3055 iter->link = 0;
3056
3057 err = netlink_walk_start(iter);
3058 if (err)
3059 return ERR_PTR(err);
3060
3061 for (pos = *posp; pos && obj && !IS_ERR(obj); pos--)
3062 obj = __netlink_seq_next(seq);
3063
3064 return obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
3067static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3068{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 ++*pos;
Herbert Xu56d28b12015-02-04 07:33:24 +11003070 return __netlink_seq_next(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
3072
3073static void netlink_seq_stop(struct seq_file *seq, void *v)
3074{
Herbert Xu56d28b12015-02-04 07:33:24 +11003075 struct nl_seq_iter *iter = seq->private;
3076
3077 if (iter->link >= MAX_LINKS)
3078 return;
3079
3080 netlink_walk_stop(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
3082
3083
3084static int netlink_seq_show(struct seq_file *seq, void *v)
3085{
Eric Dumazet658cb352012-04-22 21:30:21 +00003086 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 seq_puts(seq,
3088 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00003089 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00003090 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 struct sock *s = v;
3092 struct netlink_sock *nlk = nlk_sk(s);
3093
Pravin B Shelar16b304f2013-08-15 15:31:06 -07003094 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 s,
3096 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003097 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07003098 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07003099 sk_rmem_alloc_get(s),
3100 sk_wmem_alloc_get(s),
Pravin B Shelar16b304f2013-08-15 15:31:06 -07003101 nlk->cb_running,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07003102 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00003103 atomic_read(&s->sk_drops),
3104 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 );
3106
3107 }
3108 return 0;
3109}
3110
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003111static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 .start = netlink_seq_start,
3113 .next = netlink_seq_next,
3114 .stop = netlink_seq_stop,
3115 .show = netlink_seq_show,
3116};
3117
3118
3119static int netlink_seq_open(struct inode *inode, struct file *file)
3120{
Denis V. Luneve372c412007-11-19 22:31:54 -08003121 return seq_open_net(inode, file, &netlink_seq_ops,
3122 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003123}
3124
Arjan van de Venda7071d2007-02-12 00:55:36 -08003125static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 .owner = THIS_MODULE,
3127 .open = netlink_seq_open,
3128 .read = seq_read,
3129 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003130 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131};
3132
3133#endif
3134
3135int netlink_register_notifier(struct notifier_block *nb)
3136{
Alan Sterne041c682006-03-27 01:16:30 -08003137 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003139EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
3141int netlink_unregister_notifier(struct notifier_block *nb)
3142{
Alan Sterne041c682006-03-27 01:16:30 -08003143 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003145EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003146
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003147static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 .family = PF_NETLINK,
3149 .owner = THIS_MODULE,
3150 .release = netlink_release,
3151 .bind = netlink_bind,
3152 .connect = netlink_connect,
3153 .socketpair = sock_no_socketpair,
3154 .accept = sock_no_accept,
3155 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00003156 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 .ioctl = sock_no_ioctl,
3158 .listen = sock_no_listen,
3159 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07003160 .setsockopt = netlink_setsockopt,
3161 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 .sendmsg = netlink_sendmsg,
3163 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00003164 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 .sendpage = sock_no_sendpage,
3166};
3167
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003168static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 .family = PF_NETLINK,
3170 .create = netlink_create,
3171 .owner = THIS_MODULE, /* for consistency 8) */
3172};
3173
Pavel Emelyanov46650792007-10-08 20:38:39 -07003174static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003175{
3176#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003177 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003178 return -ENOMEM;
3179#endif
3180 return 0;
3181}
3182
Pavel Emelyanov46650792007-10-08 20:38:39 -07003183static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003184{
3185#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003186 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003187#endif
3188}
3189
David S. Millerb963ea82010-08-30 19:08:01 -07003190static void __init netlink_add_usersock_entry(void)
3191{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003192 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07003193 int groups = 32;
3194
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003195 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07003196 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003197 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07003198
3199 netlink_table_grab();
3200
3201 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003202 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07003203 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
3204 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00003205 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07003206
3207 netlink_table_ungrab();
3208}
3209
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003210static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003211 .init = netlink_net_init,
3212 .exit = netlink_net_exit,
3213};
3214
Patrick McHardy49f7b332015-03-25 13:07:45 +00003215static inline u32 netlink_hash(const void *data, u32 len, u32 seed)
Herbert Xuc428ecd2015-03-20 21:57:01 +11003216{
3217 const struct netlink_sock *nlk = data;
3218 struct netlink_compare_arg arg;
3219
3220 netlink_compare_arg_init(&arg, sock_net(&nlk->sk), nlk->portid);
Herbert Xu11b58ba2015-03-24 00:50:22 +11003221 return jhash2((u32 *)&arg, netlink_compare_arg_len / sizeof(u32), seed);
Herbert Xuc428ecd2015-03-20 21:57:01 +11003222}
3223
3224static const struct rhashtable_params netlink_rhashtable_params = {
3225 .head_offset = offsetof(struct netlink_sock, node),
3226 .key_len = netlink_compare_arg_len,
Herbert Xuc428ecd2015-03-20 21:57:01 +11003227 .obj_hashfn = netlink_hash,
3228 .obj_cmpfn = netlink_compare,
Thomas Grafb5e2c152015-03-24 20:42:19 +00003229 .automatic_shrinking = true,
Herbert Xuc428ecd2015-03-20 21:57:01 +11003230};
3231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232static int __init netlink_proto_init(void)
3233{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 int err = proto_register(&netlink_proto, 0);
3236
3237 if (err != 0)
3238 goto out;
3239
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00003240 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07003242 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003243 if (!nl_table)
3244 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 for (i = 0; i < MAX_LINKS; i++) {
Herbert Xuc428ecd2015-03-20 21:57:01 +11003247 if (rhashtable_init(&nl_table[i].hash,
3248 &netlink_rhashtable_params) < 0) {
Thomas Grafe3416942014-08-02 11:47:45 +02003249 while (--i > 0)
3250 rhashtable_destroy(&nl_table[i].hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003252 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 }
3255
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02003256 INIT_LIST_HEAD(&netlink_tap_all);
3257
David S. Millerb963ea82010-08-30 19:08:01 -07003258 netlink_add_usersock_entry();
3259
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003261 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003262 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 rtnetlink_init();
3264out:
3265 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003266panic:
3267 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268}
3269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270core_initcall(netlink_proto_init);