blob: f1de72de273e20e7422bf6de42ebbca712affacf [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>
Andrew Morton54e0f522005-04-30 07:07:04 +010064
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020065#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <net/sock.h>
67#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010068#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Andrey Vagin0f29c762013-03-21 20:33:47 +040070#include "af_netlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Eric Dumazet5c398dc2010-10-24 04:27:10 +000072struct listeners {
73 struct rcu_head rcu;
74 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000075};
76
Patrick McHardycd967e02013-04-17 06:46:56 +000077/* state bits */
78#define NETLINK_CONGESTED 0x0
79
80/* flags */
Patrick McHardy77247bb2005-08-14 19:27:13 -070081#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070082#define NETLINK_RECV_PKTINFO 0x2
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +000083#define NETLINK_BROADCAST_SEND_ERROR 0x4
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -070084#define NETLINK_RECV_NO_ENOBUFS 0x8
Patrick McHardy77247bb2005-08-14 19:27:13 -070085
David S. Miller035c4c12011-12-23 17:33:03 -050086static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -070087{
88 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
89}
90
Andrey Vagin0f29c762013-03-21 20:33:47 +040091struct netlink_table *nl_table;
92EXPORT_SYMBOL_GPL(nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
95
96static int netlink_dump(struct sock *sk);
Patrick McHardy9652e932013-04-17 06:47:02 +000097static void netlink_skb_destructor(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Thomas Graf78fd1d02014-10-21 22:05:38 +020099/* nl_table locking explained:
100 * Lookup and traversal are protected with nl_sk_hash_lock or nl_table_lock
101 * combined with an RCU read-side lock. Insertion and removal are protected
102 * with nl_sk_hash_lock while using RCU list modification primitives and may
103 * run in parallel to nl_table_lock protected lookups. Destruction of the
104 * Netlink socket may only occur *after* nl_table_lock has been acquired
105 * either during or after the socket has been removed from the list.
106 */
Andrey Vagin0f29c762013-03-21 20:33:47 +0400107DEFINE_RWLOCK(nl_table_lock);
108EXPORT_SYMBOL_GPL(nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static atomic_t nl_table_users = ATOMIC_INIT(0);
110
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000111#define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
112
Thomas Grafe3416942014-08-02 11:47:45 +0200113/* Protects netlink socket hash table mutations */
114DEFINE_MUTEX(nl_sk_hash_lock);
Thomas Graf6c8f7e72014-08-07 00:18:47 +0100115EXPORT_SYMBOL_GPL(nl_sk_hash_lock);
Thomas Grafe3416942014-08-02 11:47:45 +0200116
117static int lockdep_nl_sk_hash_is_held(void)
118{
119#ifdef CONFIG_LOCKDEP
Thomas Graf78fd1d02014-10-21 22:05:38 +0200120 if (debug_locks)
121 return lockdep_is_held(&nl_sk_hash_lock) || lockdep_is_held(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +0200122#endif
Thomas Graf78fd1d02014-10-21 22:05:38 +0200123 return 1;
Thomas Grafe3416942014-08-02 11:47:45 +0200124}
125
Alan Sterne041c682006-03-27 01:16:30 -0800126static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200128static DEFINE_SPINLOCK(netlink_tap_lock);
129static struct list_head netlink_tap_all __read_mostly;
130
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000131static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700132{
133 return group ? 1 << (group - 1) : 0;
134}
135
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200136int netlink_add_tap(struct netlink_tap *nt)
137{
138 if (unlikely(nt->dev->type != ARPHRD_NETLINK))
139 return -EINVAL;
140
141 spin_lock(&netlink_tap_lock);
142 list_add_rcu(&nt->list, &netlink_tap_all);
143 spin_unlock(&netlink_tap_lock);
144
145 if (nt->module)
146 __module_get(nt->module);
147
148 return 0;
149}
150EXPORT_SYMBOL_GPL(netlink_add_tap);
151
stephen hemminger2173f8d2013-12-30 10:49:22 -0800152static int __netlink_remove_tap(struct netlink_tap *nt)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200153{
154 bool found = false;
155 struct netlink_tap *tmp;
156
157 spin_lock(&netlink_tap_lock);
158
159 list_for_each_entry(tmp, &netlink_tap_all, list) {
160 if (nt == tmp) {
161 list_del_rcu(&nt->list);
162 found = true;
163 goto out;
164 }
165 }
166
167 pr_warn("__netlink_remove_tap: %p not found\n", nt);
168out:
169 spin_unlock(&netlink_tap_lock);
170
171 if (found && nt->module)
172 module_put(nt->module);
173
174 return found ? 0 : -ENODEV;
175}
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200176
177int netlink_remove_tap(struct netlink_tap *nt)
178{
179 int ret;
180
181 ret = __netlink_remove_tap(nt);
182 synchronize_net();
183
184 return ret;
185}
186EXPORT_SYMBOL_GPL(netlink_remove_tap);
187
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200188static bool netlink_filter_tap(const struct sk_buff *skb)
189{
190 struct sock *sk = skb->sk;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200191
192 /* We take the more conservative approach and
193 * whitelist socket protocols that may pass.
194 */
195 switch (sk->sk_protocol) {
196 case NETLINK_ROUTE:
197 case NETLINK_USERSOCK:
198 case NETLINK_SOCK_DIAG:
199 case NETLINK_NFLOG:
200 case NETLINK_XFRM:
201 case NETLINK_FIB_LOOKUP:
202 case NETLINK_NETFILTER:
203 case NETLINK_GENERIC:
Varka Bhadram498044b2014-07-16 10:59:47 +0530204 return true;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200205 }
206
Varka Bhadram498044b2014-07-16 10:59:47 +0530207 return false;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200208}
209
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200210static int __netlink_deliver_tap_skb(struct sk_buff *skb,
211 struct net_device *dev)
212{
213 struct sk_buff *nskb;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200214 struct sock *sk = skb->sk;
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200215 int ret = -ENOMEM;
216
217 dev_hold(dev);
218 nskb = skb_clone(skb, GFP_ATOMIC);
219 if (nskb) {
220 nskb->dev = dev;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200221 nskb->protocol = htons((u16) sk->sk_protocol);
Daniel Borkmann604d13c2013-12-23 14:35:56 +0100222 nskb->pkt_type = netlink_is_kernel(sk) ?
223 PACKET_KERNEL : PACKET_USER;
Daniel Borkmann4e48ed82014-08-07 22:22:47 +0200224 skb_reset_network_header(nskb);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200225 ret = dev_queue_xmit(nskb);
226 if (unlikely(ret > 0))
227 ret = net_xmit_errno(ret);
228 }
229
230 dev_put(dev);
231 return ret;
232}
233
234static void __netlink_deliver_tap(struct sk_buff *skb)
235{
236 int ret;
237 struct netlink_tap *tmp;
238
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200239 if (!netlink_filter_tap(skb))
240 return;
241
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200242 list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
243 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
244 if (unlikely(ret))
245 break;
246 }
247}
248
249static void netlink_deliver_tap(struct sk_buff *skb)
250{
251 rcu_read_lock();
252
253 if (unlikely(!list_empty(&netlink_tap_all)))
254 __netlink_deliver_tap(skb);
255
256 rcu_read_unlock();
257}
258
Daniel Borkmann73bfd372013-12-23 14:35:55 +0100259static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src,
260 struct sk_buff *skb)
261{
262 if (!(netlink_is_kernel(dst) && netlink_is_kernel(src)))
263 netlink_deliver_tap(skb);
264}
265
Patrick McHardycd1df522013-04-17 06:47:05 +0000266static void netlink_overrun(struct sock *sk)
267{
268 struct netlink_sock *nlk = nlk_sk(sk);
269
270 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
271 if (!test_and_set_bit(NETLINK_CONGESTED, &nlk_sk(sk)->state)) {
272 sk->sk_err = ENOBUFS;
273 sk->sk_error_report(sk);
274 }
275 }
276 atomic_inc(&sk->sk_drops);
277}
278
279static void netlink_rcv_wake(struct sock *sk)
280{
281 struct netlink_sock *nlk = nlk_sk(sk);
282
283 if (skb_queue_empty(&sk->sk_receive_queue))
284 clear_bit(NETLINK_CONGESTED, &nlk->state);
285 if (!test_bit(NETLINK_CONGESTED, &nlk->state))
286 wake_up_interruptible(&nlk->wait);
287}
288
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000289#ifdef CONFIG_NETLINK_MMAP
Patrick McHardy9652e932013-04-17 06:47:02 +0000290static bool netlink_skb_is_mmaped(const struct sk_buff *skb)
291{
292 return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED;
293}
294
Patrick McHardyf9c22882013-04-17 06:47:04 +0000295static bool netlink_rx_is_mmaped(struct sock *sk)
296{
297 return nlk_sk(sk)->rx_ring.pg_vec != NULL;
298}
299
Patrick McHardy5fd96122013-04-17 06:47:03 +0000300static bool netlink_tx_is_mmaped(struct sock *sk)
301{
302 return nlk_sk(sk)->tx_ring.pg_vec != NULL;
303}
304
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000305static __pure struct page *pgvec_to_page(const void *addr)
306{
307 if (is_vmalloc_addr(addr))
308 return vmalloc_to_page(addr);
309 else
310 return virt_to_page(addr);
311}
312
313static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
314{
315 unsigned int i;
316
317 for (i = 0; i < len; i++) {
318 if (pg_vec[i] != NULL) {
319 if (is_vmalloc_addr(pg_vec[i]))
320 vfree(pg_vec[i]);
321 else
322 free_pages((unsigned long)pg_vec[i], order);
323 }
324 }
325 kfree(pg_vec);
326}
327
328static void *alloc_one_pg_vec_page(unsigned long order)
329{
330 void *buffer;
331 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
332 __GFP_NOWARN | __GFP_NORETRY;
333
334 buffer = (void *)__get_free_pages(gfp_flags, order);
335 if (buffer != NULL)
336 return buffer;
337
338 buffer = vzalloc((1 << order) * PAGE_SIZE);
339 if (buffer != NULL)
340 return buffer;
341
342 gfp_flags &= ~__GFP_NORETRY;
343 return (void *)__get_free_pages(gfp_flags, order);
344}
345
346static void **alloc_pg_vec(struct netlink_sock *nlk,
347 struct nl_mmap_req *req, unsigned int order)
348{
349 unsigned int block_nr = req->nm_block_nr;
350 unsigned int i;
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200351 void **pg_vec;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000352
353 pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
354 if (pg_vec == NULL)
355 return NULL;
356
357 for (i = 0; i < block_nr; i++) {
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200358 pg_vec[i] = alloc_one_pg_vec_page(order);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000359 if (pg_vec[i] == NULL)
360 goto err1;
361 }
362
363 return pg_vec;
364err1:
365 free_pg_vec(pg_vec, order, block_nr);
366 return NULL;
367}
368
369static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
370 bool closing, bool tx_ring)
371{
372 struct netlink_sock *nlk = nlk_sk(sk);
373 struct netlink_ring *ring;
374 struct sk_buff_head *queue;
375 void **pg_vec = NULL;
376 unsigned int order = 0;
377 int err;
378
379 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
380 queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
381
382 if (!closing) {
383 if (atomic_read(&nlk->mapped))
384 return -EBUSY;
385 if (atomic_read(&ring->pending))
386 return -EBUSY;
387 }
388
389 if (req->nm_block_nr) {
390 if (ring->pg_vec != NULL)
391 return -EBUSY;
392
393 if ((int)req->nm_block_size <= 0)
394 return -EINVAL;
Tobias Klauser74e83b22014-07-31 12:17:08 +0200395 if (!PAGE_ALIGNED(req->nm_block_size))
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000396 return -EINVAL;
397 if (req->nm_frame_size < NL_MMAP_HDRLEN)
398 return -EINVAL;
399 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
400 return -EINVAL;
401
402 ring->frames_per_block = req->nm_block_size /
403 req->nm_frame_size;
404 if (ring->frames_per_block == 0)
405 return -EINVAL;
406 if (ring->frames_per_block * req->nm_block_nr !=
407 req->nm_frame_nr)
408 return -EINVAL;
409
410 order = get_order(req->nm_block_size);
411 pg_vec = alloc_pg_vec(nlk, req, order);
412 if (pg_vec == NULL)
413 return -ENOMEM;
414 } else {
415 if (req->nm_frame_nr)
416 return -EINVAL;
417 }
418
419 err = -EBUSY;
420 mutex_lock(&nlk->pg_vec_lock);
421 if (closing || atomic_read(&nlk->mapped) == 0) {
422 err = 0;
423 spin_lock_bh(&queue->lock);
424
425 ring->frame_max = req->nm_frame_nr - 1;
426 ring->head = 0;
427 ring->frame_size = req->nm_frame_size;
428 ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE;
429
430 swap(ring->pg_vec_len, req->nm_block_nr);
431 swap(ring->pg_vec_order, order);
432 swap(ring->pg_vec, pg_vec);
433
434 __skb_queue_purge(queue);
435 spin_unlock_bh(&queue->lock);
436
437 WARN_ON(atomic_read(&nlk->mapped));
438 }
439 mutex_unlock(&nlk->pg_vec_lock);
440
441 if (pg_vec)
442 free_pg_vec(pg_vec, order, req->nm_block_nr);
443 return err;
444}
445
446static void netlink_mm_open(struct vm_area_struct *vma)
447{
448 struct file *file = vma->vm_file;
449 struct socket *sock = file->private_data;
450 struct sock *sk = sock->sk;
451
452 if (sk)
453 atomic_inc(&nlk_sk(sk)->mapped);
454}
455
456static void netlink_mm_close(struct vm_area_struct *vma)
457{
458 struct file *file = vma->vm_file;
459 struct socket *sock = file->private_data;
460 struct sock *sk = sock->sk;
461
462 if (sk)
463 atomic_dec(&nlk_sk(sk)->mapped);
464}
465
466static const struct vm_operations_struct netlink_mmap_ops = {
467 .open = netlink_mm_open,
468 .close = netlink_mm_close,
469};
470
471static int netlink_mmap(struct file *file, struct socket *sock,
472 struct vm_area_struct *vma)
473{
474 struct sock *sk = sock->sk;
475 struct netlink_sock *nlk = nlk_sk(sk);
476 struct netlink_ring *ring;
477 unsigned long start, size, expected;
478 unsigned int i;
479 int err = -EINVAL;
480
481 if (vma->vm_pgoff)
482 return -EINVAL;
483
484 mutex_lock(&nlk->pg_vec_lock);
485
486 expected = 0;
487 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
488 if (ring->pg_vec == NULL)
489 continue;
490 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
491 }
492
493 if (expected == 0)
494 goto out;
495
496 size = vma->vm_end - vma->vm_start;
497 if (size != expected)
498 goto out;
499
500 start = vma->vm_start;
501 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
502 if (ring->pg_vec == NULL)
503 continue;
504
505 for (i = 0; i < ring->pg_vec_len; i++) {
506 struct page *page;
507 void *kaddr = ring->pg_vec[i];
508 unsigned int pg_num;
509
510 for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
511 page = pgvec_to_page(kaddr);
512 err = vm_insert_page(vma, start, page);
513 if (err < 0)
514 goto out;
515 start += PAGE_SIZE;
516 kaddr += PAGE_SIZE;
517 }
518 }
519 }
520
521 atomic_inc(&nlk->mapped);
522 vma->vm_ops = &netlink_mmap_ops;
523 err = 0;
524out:
525 mutex_unlock(&nlk->pg_vec_lock);
Patrick McHardy7cdbac72013-06-11 02:52:47 -0700526 return err;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000527}
Patrick McHardy9652e932013-04-17 06:47:02 +0000528
529static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr)
530{
531#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
532 struct page *p_start, *p_end;
533
534 /* First page is flushed through netlink_{get,set}_status */
535 p_start = pgvec_to_page(hdr + PAGE_SIZE);
Stephen Rothwell1d5085c2013-04-23 17:40:35 +1000536 p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + hdr->nm_len - 1);
Patrick McHardy9652e932013-04-17 06:47:02 +0000537 while (p_start <= p_end) {
538 flush_dcache_page(p_start);
539 p_start++;
540 }
541#endif
542}
543
544static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
545{
546 smp_rmb();
547 flush_dcache_page(pgvec_to_page(hdr));
548 return hdr->nm_status;
549}
550
551static void netlink_set_status(struct nl_mmap_hdr *hdr,
552 enum nl_mmap_status status)
553{
554 hdr->nm_status = status;
555 flush_dcache_page(pgvec_to_page(hdr));
556 smp_wmb();
557}
558
559static struct nl_mmap_hdr *
560__netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
561{
562 unsigned int pg_vec_pos, frame_off;
563
564 pg_vec_pos = pos / ring->frames_per_block;
565 frame_off = pos % ring->frames_per_block;
566
567 return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
568}
569
570static struct nl_mmap_hdr *
571netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
572 enum nl_mmap_status status)
573{
574 struct nl_mmap_hdr *hdr;
575
576 hdr = __netlink_lookup_frame(ring, pos);
577 if (netlink_get_status(hdr) != status)
578 return NULL;
579
580 return hdr;
581}
582
583static struct nl_mmap_hdr *
584netlink_current_frame(const struct netlink_ring *ring,
585 enum nl_mmap_status status)
586{
587 return netlink_lookup_frame(ring, ring->head, status);
588}
589
590static struct nl_mmap_hdr *
591netlink_previous_frame(const struct netlink_ring *ring,
592 enum nl_mmap_status status)
593{
594 unsigned int prev;
595
596 prev = ring->head ? ring->head - 1 : ring->frame_max;
597 return netlink_lookup_frame(ring, prev, status);
598}
599
600static void netlink_increment_head(struct netlink_ring *ring)
601{
602 ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
603}
604
605static void netlink_forward_ring(struct netlink_ring *ring)
606{
607 unsigned int head = ring->head, pos = head;
608 const struct nl_mmap_hdr *hdr;
609
610 do {
611 hdr = __netlink_lookup_frame(ring, pos);
612 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
613 break;
614 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
615 break;
616 netlink_increment_head(ring);
617 } while (ring->head != head);
618}
619
Patrick McHardycd1df522013-04-17 06:47:05 +0000620static bool netlink_dump_space(struct netlink_sock *nlk)
621{
622 struct netlink_ring *ring = &nlk->rx_ring;
623 struct nl_mmap_hdr *hdr;
624 unsigned int n;
625
626 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
627 if (hdr == NULL)
628 return false;
629
630 n = ring->head + ring->frame_max / 2;
631 if (n > ring->frame_max)
632 n -= ring->frame_max;
633
634 hdr = __netlink_lookup_frame(ring, n);
635
636 return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
637}
638
Patrick McHardy9652e932013-04-17 06:47:02 +0000639static unsigned int netlink_poll(struct file *file, struct socket *sock,
640 poll_table *wait)
641{
642 struct sock *sk = sock->sk;
643 struct netlink_sock *nlk = nlk_sk(sk);
644 unsigned int mask;
Patrick McHardycd1df522013-04-17 06:47:05 +0000645 int err;
Patrick McHardy9652e932013-04-17 06:47:02 +0000646
Patrick McHardycd1df522013-04-17 06:47:05 +0000647 if (nlk->rx_ring.pg_vec != NULL) {
648 /* Memory mapped sockets don't call recvmsg(), so flow control
649 * for dumps is performed here. A dump is allowed to continue
650 * if at least half the ring is unused.
651 */
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700652 while (nlk->cb_running && netlink_dump_space(nlk)) {
Patrick McHardycd1df522013-04-17 06:47:05 +0000653 err = netlink_dump(sk);
654 if (err < 0) {
Ben Pfaffac30ef82014-07-09 10:31:22 -0700655 sk->sk_err = -err;
Patrick McHardycd1df522013-04-17 06:47:05 +0000656 sk->sk_error_report(sk);
657 break;
658 }
659 }
660 netlink_rcv_wake(sk);
661 }
Patrick McHardy5fd96122013-04-17 06:47:03 +0000662
Patrick McHardy9652e932013-04-17 06:47:02 +0000663 mask = datagram_poll(file, sock, wait);
664
665 spin_lock_bh(&sk->sk_receive_queue.lock);
666 if (nlk->rx_ring.pg_vec) {
667 netlink_forward_ring(&nlk->rx_ring);
668 if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED))
669 mask |= POLLIN | POLLRDNORM;
670 }
671 spin_unlock_bh(&sk->sk_receive_queue.lock);
672
673 spin_lock_bh(&sk->sk_write_queue.lock);
674 if (nlk->tx_ring.pg_vec) {
675 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
676 mask |= POLLOUT | POLLWRNORM;
677 }
678 spin_unlock_bh(&sk->sk_write_queue.lock);
679
680 return mask;
681}
682
683static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
684{
685 return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
686}
687
688static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
689 struct netlink_ring *ring,
690 struct nl_mmap_hdr *hdr)
691{
692 unsigned int size;
693 void *data;
694
695 size = ring->frame_size - NL_MMAP_HDRLEN;
696 data = (void *)hdr + NL_MMAP_HDRLEN;
697
698 skb->head = data;
699 skb->data = data;
700 skb_reset_tail_pointer(skb);
701 skb->end = skb->tail + size;
702 skb->len = 0;
703
704 skb->destructor = netlink_skb_destructor;
705 NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
706 NETLINK_CB(skb).sk = sk;
707}
Patrick McHardy5fd96122013-04-17 06:47:03 +0000708
709static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
710 u32 dst_portid, u32 dst_group,
711 struct sock_iocb *siocb)
712{
713 struct netlink_sock *nlk = nlk_sk(sk);
714 struct netlink_ring *ring;
715 struct nl_mmap_hdr *hdr;
716 struct sk_buff *skb;
717 unsigned int maxlen;
718 bool excl = true;
719 int err = 0, len = 0;
720
721 /* Netlink messages are validated by the receiver before processing.
722 * In order to avoid userspace changing the contents of the message
723 * after validation, the socket and the ring may only be used by a
724 * single process, otherwise we fall back to copying.
725 */
Al Viro24dff962014-10-08 23:44:00 -0400726 if (atomic_long_read(&sk->sk_socket->file->f_count) > 1 ||
Patrick McHardy5fd96122013-04-17 06:47:03 +0000727 atomic_read(&nlk->mapped) > 1)
728 excl = false;
729
730 mutex_lock(&nlk->pg_vec_lock);
731
732 ring = &nlk->tx_ring;
733 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
734
735 do {
736 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
737 if (hdr == NULL) {
738 if (!(msg->msg_flags & MSG_DONTWAIT) &&
739 atomic_read(&nlk->tx_ring.pending))
740 schedule();
741 continue;
742 }
743 if (hdr->nm_len > maxlen) {
744 err = -EINVAL;
745 goto out;
746 }
747
748 netlink_frame_flush_dcache(hdr);
749
750 if (likely(dst_portid == 0 && dst_group == 0 && excl)) {
751 skb = alloc_skb_head(GFP_KERNEL);
752 if (skb == NULL) {
753 err = -ENOBUFS;
754 goto out;
755 }
756 sock_hold(sk);
757 netlink_ring_setup_skb(skb, sk, ring, hdr);
758 NETLINK_CB(skb).flags |= NETLINK_SKB_TX;
759 __skb_put(skb, hdr->nm_len);
760 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
761 atomic_inc(&ring->pending);
762 } else {
763 skb = alloc_skb(hdr->nm_len, GFP_KERNEL);
764 if (skb == NULL) {
765 err = -ENOBUFS;
766 goto out;
767 }
768 __skb_put(skb, hdr->nm_len);
769 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, hdr->nm_len);
770 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
771 }
772
773 netlink_increment_head(ring);
774
775 NETLINK_CB(skb).portid = nlk->portid;
776 NETLINK_CB(skb).dst_group = dst_group;
777 NETLINK_CB(skb).creds = siocb->scm->creds;
778
779 err = security_netlink_send(sk, skb);
780 if (err) {
781 kfree_skb(skb);
782 goto out;
783 }
784
785 if (unlikely(dst_group)) {
786 atomic_inc(&skb->users);
787 netlink_broadcast(sk, skb, dst_portid, dst_group,
788 GFP_KERNEL);
789 }
790 err = netlink_unicast(sk, skb, dst_portid,
791 msg->msg_flags & MSG_DONTWAIT);
792 if (err < 0)
793 goto out;
794 len += err;
795
796 } while (hdr != NULL ||
797 (!(msg->msg_flags & MSG_DONTWAIT) &&
798 atomic_read(&nlk->tx_ring.pending)));
799
800 if (len > 0)
801 err = len;
802out:
803 mutex_unlock(&nlk->pg_vec_lock);
804 return err;
805}
Patrick McHardyf9c22882013-04-17 06:47:04 +0000806
807static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
808{
809 struct nl_mmap_hdr *hdr;
810
811 hdr = netlink_mmap_hdr(skb);
812 hdr->nm_len = skb->len;
813 hdr->nm_group = NETLINK_CB(skb).dst_group;
814 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200815 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
816 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000817 netlink_frame_flush_dcache(hdr);
818 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
819
820 NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
821 kfree_skb(skb);
822}
823
824static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
825{
826 struct netlink_sock *nlk = nlk_sk(sk);
827 struct netlink_ring *ring = &nlk->rx_ring;
828 struct nl_mmap_hdr *hdr;
829
830 spin_lock_bh(&sk->sk_receive_queue.lock);
831 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
832 if (hdr == NULL) {
833 spin_unlock_bh(&sk->sk_receive_queue.lock);
834 kfree_skb(skb);
Patrick McHardycd1df522013-04-17 06:47:05 +0000835 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000836 return;
837 }
838 netlink_increment_head(ring);
839 __skb_queue_tail(&sk->sk_receive_queue, skb);
840 spin_unlock_bh(&sk->sk_receive_queue.lock);
841
842 hdr->nm_len = skb->len;
843 hdr->nm_group = NETLINK_CB(skb).dst_group;
844 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200845 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
846 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000847 netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
848}
849
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000850#else /* CONFIG_NETLINK_MMAP */
Patrick McHardy9652e932013-04-17 06:47:02 +0000851#define netlink_skb_is_mmaped(skb) false
Patrick McHardyf9c22882013-04-17 06:47:04 +0000852#define netlink_rx_is_mmaped(sk) false
Patrick McHardy5fd96122013-04-17 06:47:03 +0000853#define netlink_tx_is_mmaped(sk) false
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000854#define netlink_mmap sock_no_mmap
Patrick McHardy9652e932013-04-17 06:47:02 +0000855#define netlink_poll datagram_poll
Patrick McHardy5fd96122013-04-17 06:47:03 +0000856#define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, siocb) 0
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000857#endif /* CONFIG_NETLINK_MMAP */
858
Patrick McHardycf0a0182013-04-17 06:47:00 +0000859static void netlink_skb_destructor(struct sk_buff *skb)
860{
Patrick McHardy9652e932013-04-17 06:47:02 +0000861#ifdef CONFIG_NETLINK_MMAP
862 struct nl_mmap_hdr *hdr;
863 struct netlink_ring *ring;
864 struct sock *sk;
865
866 /* If a packet from the kernel to userspace was freed because of an
867 * error without being delivered to userspace, the kernel must reset
868 * the status. In the direction userspace to kernel, the status is
869 * always reset here after the packet was processed and freed.
870 */
871 if (netlink_skb_is_mmaped(skb)) {
872 hdr = netlink_mmap_hdr(skb);
873 sk = NETLINK_CB(skb).sk;
874
Patrick McHardy5fd96122013-04-17 06:47:03 +0000875 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
876 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
877 ring = &nlk_sk(sk)->tx_ring;
878 } else {
879 if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
880 hdr->nm_len = 0;
881 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
882 }
883 ring = &nlk_sk(sk)->rx_ring;
Patrick McHardy9652e932013-04-17 06:47:02 +0000884 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000885
886 WARN_ON(atomic_read(&ring->pending) == 0);
887 atomic_dec(&ring->pending);
888 sock_put(sk);
889
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000890 skb->head = NULL;
Patrick McHardy9652e932013-04-17 06:47:02 +0000891 }
892#endif
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000893 if (is_vmalloc_addr(skb->head)) {
Pablo Neira3a365152013-06-28 03:04:23 +0200894 if (!skb->cloned ||
895 !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
896 vfree(skb->head);
897
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000898 skb->head = NULL;
899 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000900 if (skb->sk != NULL)
901 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000902}
903
904static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
905{
906 WARN_ON(skb->sk != NULL);
907 skb->sk = sk;
908 skb->destructor = netlink_skb_destructor;
909 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
910 sk_mem_charge(sk, skb->truesize);
911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913static void netlink_sock_destruct(struct sock *sk)
914{
Herbert Xu3f660d62007-05-03 03:17:14 -0700915 struct netlink_sock *nlk = nlk_sk(sk);
916
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700917 if (nlk->cb_running) {
918 if (nlk->cb.done)
919 nlk->cb.done(&nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000920
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700921 module_put(nlk->cb.module);
922 kfree_skb(nlk->cb.skb);
Herbert Xu3f660d62007-05-03 03:17:14 -0700923 }
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000926#ifdef CONFIG_NETLINK_MMAP
927 if (1) {
928 struct nl_mmap_req req;
929
930 memset(&req, 0, sizeof(req));
931 if (nlk->rx_ring.pg_vec)
932 netlink_set_ring(sk, &req, true, false);
933 memset(&req, 0, sizeof(req));
934 if (nlk->tx_ring.pg_vec)
935 netlink_set_ring(sk, &req, true, true);
936 }
937#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800940 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return;
942 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700943
944 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
945 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
946 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800949/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
950 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
952 * this, _but_ remember, it adds useless work on UP machines.
953 */
954
Johannes Bergd136f1b2009-09-12 03:03:15 +0000955void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800956 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000958 might_sleep();
959
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700960 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 if (atomic_read(&nl_table_users)) {
963 DECLARE_WAITQUEUE(wait, current);
964
965 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800966 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 set_current_state(TASK_UNINTERRUPTIBLE);
968 if (atomic_read(&nl_table_users) == 0)
969 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700970 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700972 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975 __set_current_state(TASK_RUNNING);
976 remove_wait_queue(&nl_table_wait, &wait);
977 }
978}
979
Johannes Bergd136f1b2009-09-12 03:03:15 +0000980void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800981 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700983 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 wake_up(&nl_table_wait);
985}
986
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800987static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988netlink_lock_table(void)
989{
990 /* read_lock() synchronizes us to netlink_table_grab */
991
992 read_lock(&nl_table_lock);
993 atomic_inc(&nl_table_users);
994 read_unlock(&nl_table_lock);
995}
996
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800997static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998netlink_unlock_table(void)
999{
1000 if (atomic_dec_and_test(&nl_table_users))
1001 wake_up(&nl_table_wait);
1002}
1003
Thomas Grafe3416942014-08-02 11:47:45 +02001004struct netlink_compare_arg
Gao fengda12c902013-06-06 14:49:11 +08001005{
Thomas Grafe3416942014-08-02 11:47:45 +02001006 struct net *net;
1007 u32 portid;
1008};
1009
1010static bool netlink_compare(void *ptr, void *arg)
1011{
1012 struct netlink_compare_arg *x = arg;
1013 struct sock *sk = ptr;
1014
1015 return nlk_sk(sk)->portid == x->portid &&
1016 net_eq(sock_net(sk), x->net);
1017}
1018
1019static struct sock *__netlink_lookup(struct netlink_table *table, u32 portid,
1020 struct net *net)
1021{
1022 struct netlink_compare_arg arg = {
1023 .net = net,
1024 .portid = portid,
1025 };
1026 u32 hash;
1027
1028 hash = rhashtable_hashfn(&table->hash, &portid, sizeof(portid));
1029
1030 return rhashtable_lookup_compare(&table->hash, hash,
1031 &netlink_compare, &arg);
Gao fengda12c902013-06-06 14:49:11 +08001032}
1033
Eric W. Biederman15e47302012-09-07 20:12:54 +00001034static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Gao fengda12c902013-06-06 14:49:11 +08001036 struct netlink_table *table = &nl_table[protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Thomas Graf78fd1d02014-10-21 22:05:38 +02001039 read_lock(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +02001040 rcu_read_lock();
1041 sk = __netlink_lookup(table, portid, net);
1042 if (sk)
1043 sock_hold(sk);
1044 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001045 read_unlock(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +02001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return sk;
1048}
1049
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001050static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Patrick McHardy4277a082006-03-20 18:52:01 -08001052static void
1053netlink_update_listeners(struct sock *sk)
1054{
1055 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -08001056 unsigned long mask;
1057 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001058 struct listeners *listeners;
1059
1060 listeners = nl_deref_protected(tbl->listeners);
1061 if (!listeners)
1062 return;
Patrick McHardy4277a082006-03-20 18:52:01 -08001063
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001064 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001065 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001066 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001067 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
1068 mask |= nlk_sk(sk)->groups[i];
1069 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001070 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -08001071 }
1072 /* this function is only called with the netlink table "grabbed", which
1073 * makes sure updates are visible before bind or setsockopt return. */
1074}
1075
Eric W. Biederman15e47302012-09-07 20:12:54 +00001076static int netlink_insert(struct sock *sk, struct net *net, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Gao fengda12c902013-06-06 14:49:11 +08001078 struct netlink_table *table = &nl_table[sk->sk_protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 int err = -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Thomas Grafe3416942014-08-02 11:47:45 +02001081 mutex_lock(&nl_sk_hash_lock);
1082 if (__netlink_lookup(table, portid, net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 goto err;
1084
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 Grafe3416942014-08-02 11:47:45 +02001090 if (BITS_PER_LONG > 32 && unlikely(table->hash.nelems >= UINT_MAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 goto err;
1092
Eric W. Biederman15e47302012-09-07 20:12:54 +00001093 nlk_sk(sk)->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +02001094 sock_hold(sk);
1095 rhashtable_insert(&table->hash, &nlk_sk(sk)->node, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097err:
Thomas Grafe3416942014-08-02 11:47:45 +02001098 mutex_unlock(&nl_sk_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return err;
1100}
1101
1102static void netlink_remove(struct sock *sk)
1103{
Thomas Grafe3416942014-08-02 11:47:45 +02001104 struct netlink_table *table;
1105
1106 mutex_lock(&nl_sk_hash_lock);
1107 table = &nl_table[sk->sk_protocol];
1108 if (rhashtable_remove(&table->hash, &nlk_sk(sk)->node, GFP_KERNEL)) {
1109 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
1110 __sock_put(sk);
1111 }
1112 mutex_unlock(&nl_sk_hash_lock);
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001115 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 __sk_del_bind_node(sk);
1117 netlink_table_ungrab();
1118}
1119
1120static struct proto netlink_proto = {
1121 .name = "NETLINK",
1122 .owner = THIS_MODULE,
1123 .obj_size = sizeof(struct netlink_sock),
1124};
1125
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001126static int __netlink_create(struct net *net, struct socket *sock,
1127 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 struct sock *sk;
1130 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001131
1132 sock->ops = &netlink_ops;
1133
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001134 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -07001135 if (!sk)
1136 return -ENOMEM;
1137
1138 sock_init_data(sock, sk);
1139
1140 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001141 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001142 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001143 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001144 nlk->cb_mutex = &nlk->cb_def_mutex;
1145 mutex_init(nlk->cb_mutex);
1146 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001147 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001148#ifdef CONFIG_NETLINK_MMAP
1149 mutex_init(&nlk->pg_vec_lock);
1150#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001151
1152 sk->sk_destruct = netlink_sock_destruct;
1153 sk->sk_protocol = protocol;
1154 return 0;
1155}
1156
Eric Paris3f378b62009-11-05 22:18:14 -08001157static int netlink_create(struct net *net, struct socket *sock, int protocol,
1158 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001159{
1160 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001161 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001162 struct netlink_sock *nlk;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001163 int (*bind)(int group);
1164 void (*unbind)(int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001165 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 sock->state = SS_UNCONNECTED;
1168
1169 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1170 return -ESOCKTNOSUPPORT;
1171
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001172 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return -EPROTONOSUPPORT;
1174
Patrick McHardy77247bb2005-08-14 19:27:13 -07001175 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001176#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001177 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001178 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001179 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001180 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001181 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001182#endif
1183 if (nl_table[protocol].registered &&
1184 try_module_get(nl_table[protocol].module))
1185 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001186 else
1187 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001188 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001189 bind = nl_table[protocol].bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001190 unbind = nl_table[protocol].unbind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001191 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001192
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001193 if (err < 0)
1194 goto out;
1195
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001196 err = __netlink_create(net, sock, cb_mutex, protocol);
1197 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001198 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
David S. Miller6f756a82008-11-23 17:34:03 -08001200 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001201 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001202 local_bh_enable();
1203
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001204 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001205 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001206 nlk->netlink_bind = bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001207 nlk->netlink_unbind = unbind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001208out:
1209 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Patrick McHardyab33a172005-08-14 19:31:36 -07001211out_module:
1212 module_put(module);
1213 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
1216static int netlink_release(struct socket *sock)
1217{
1218 struct sock *sk = sock->sk;
1219 struct netlink_sock *nlk;
1220
1221 if (!sk)
1222 return 0;
1223
1224 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001225 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 nlk = nlk_sk(sk);
1227
Herbert Xu3f660d62007-05-03 03:17:14 -07001228 /*
1229 * OK. Socket is unlinked, any packets that arrive now
1230 * will be purged.
1231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 sock->sk = NULL;
1234 wake_up_interruptible_all(&nlk->wait);
1235
1236 skb_queue_purge(&sk->sk_write_queue);
1237
Eric W. Biederman15e47302012-09-07 20:12:54 +00001238 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001240 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001242 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 };
Alan Sterne041c682006-03-27 01:16:30 -08001244 atomic_notifier_call_chain(&netlink_chain,
1245 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001246 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001247
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001248 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001249
Patrick McHardy4277a082006-03-20 18:52:01 -08001250 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -07001251 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001252 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1253 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001254 struct listeners *old;
1255
1256 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1257 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1258 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001259 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001260 nl_table[sk->sk_protocol].bind = NULL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001261 nl_table[sk->sk_protocol].unbind = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001262 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001263 nl_table[sk->sk_protocol].registered = 0;
1264 }
Eric Dumazet658cb352012-04-22 21:30:21 +00001265 } else if (nlk->subscriptions) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001266 netlink_update_listeners(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001267 }
Patrick McHardy4277a082006-03-20 18:52:01 -08001268 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -07001269
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001270 kfree(nlk->groups);
1271 nlk->groups = NULL;
1272
Eric Dumazet37558102008-11-24 14:05:22 -08001273 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001274 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001275 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 sock_put(sk);
1277 return 0;
1278}
1279
1280static int netlink_autobind(struct socket *sock)
1281{
1282 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001283 struct net *net = sock_net(sk);
Gao fengda12c902013-06-06 14:49:11 +08001284 struct netlink_table *table = &nl_table[sk->sk_protocol];
Eric W. Biederman15e47302012-09-07 20:12:54 +00001285 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 int err;
1287 static s32 rover = -4097;
1288
1289retry:
1290 cond_resched();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001291 netlink_table_grab();
Thomas Grafe3416942014-08-02 11:47:45 +02001292 rcu_read_lock();
1293 if (__netlink_lookup(table, portid, net)) {
1294 /* Bind collision, search negative portid values. */
1295 portid = rover--;
1296 if (rover > -4097)
1297 rover = -4097;
1298 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001299 netlink_table_ungrab();
Thomas Grafe3416942014-08-02 11:47:45 +02001300 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
Thomas Grafe3416942014-08-02 11:47:45 +02001302 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001303 netlink_table_ungrab();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Eric W. Biederman15e47302012-09-07 20:12:54 +00001305 err = netlink_insert(sk, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (err == -EADDRINUSE)
1307 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -07001308
1309 /* If 2 threads race to autobind, that is fine. */
1310 if (err == -EBUSY)
1311 err = 0;
1312
1313 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -07001316/**
1317 * __netlink_ns_capable - General netlink message capability test
1318 * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace.
1319 * @user_ns: The user namespace of the capability to use
1320 * @cap: The capability to use
1321 *
1322 * Test to see if the opener of the socket we received the message
1323 * from had when the netlink socket was created and the sender of the
1324 * message has has the capability @cap in the user namespace @user_ns.
1325 */
1326bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
1327 struct user_namespace *user_ns, int cap)
1328{
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07001329 return ((nsp->flags & NETLINK_SKB_DST) ||
1330 file_ns_capable(nsp->sk->sk_socket->file, user_ns, cap)) &&
1331 ns_capable(user_ns, cap);
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -07001332}
1333EXPORT_SYMBOL(__netlink_ns_capable);
1334
1335/**
1336 * netlink_ns_capable - General netlink message capability test
1337 * @skb: socket buffer holding a netlink command from userspace
1338 * @user_ns: The user namespace of the capability to use
1339 * @cap: The capability to use
1340 *
1341 * Test to see if the opener of the socket we received the message
1342 * from had when the netlink socket was created and the sender of the
1343 * message has has the capability @cap in the user namespace @user_ns.
1344 */
1345bool netlink_ns_capable(const struct sk_buff *skb,
1346 struct user_namespace *user_ns, int cap)
1347{
1348 return __netlink_ns_capable(&NETLINK_CB(skb), user_ns, cap);
1349}
1350EXPORT_SYMBOL(netlink_ns_capable);
1351
1352/**
1353 * netlink_capable - Netlink global message capability test
1354 * @skb: socket buffer holding a netlink command from userspace
1355 * @cap: The capability to use
1356 *
1357 * Test to see if the opener of the socket we received the message
1358 * from had when the netlink socket was created and the sender of the
1359 * message has has the capability @cap in all user namespaces.
1360 */
1361bool netlink_capable(const struct sk_buff *skb, int cap)
1362{
1363 return netlink_ns_capable(skb, &init_user_ns, cap);
1364}
1365EXPORT_SYMBOL(netlink_capable);
1366
1367/**
1368 * netlink_net_capable - Netlink network namespace message capability test
1369 * @skb: socket buffer holding a netlink command from userspace
1370 * @cap: The capability to use
1371 *
1372 * Test to see if the opener of the socket we received the message
1373 * from had when the netlink socket was created and the sender of the
1374 * message has has the capability @cap over the network namespace of
1375 * the socket we received the message from.
1376 */
1377bool netlink_net_capable(const struct sk_buff *skb, int cap)
1378{
1379 return netlink_ns_capable(skb, sock_net(skb->sk)->user_ns, cap);
1380}
1381EXPORT_SYMBOL(netlink_net_capable);
1382
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001383static inline int netlink_allowed(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001384{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001385 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +00001386 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001387}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001389static void
1390netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1391{
1392 struct netlink_sock *nlk = nlk_sk(sk);
1393
1394 if (nlk->subscriptions && !subscriptions)
1395 __sk_del_bind_node(sk);
1396 else if (!nlk->subscriptions && subscriptions)
1397 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1398 nlk->subscriptions = subscriptions;
1399}
1400
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001401static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -07001402{
1403 struct netlink_sock *nlk = nlk_sk(sk);
1404 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001405 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001406 int err = 0;
1407
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001408 netlink_table_grab();
1409
Patrick McHardy513c2502005-09-06 15:43:59 -07001410 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001411 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -07001412 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001413 goto out_unlock;
1414 }
Patrick McHardy513c2502005-09-06 15:43:59 -07001415
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001416 if (nlk->ngroups >= groups)
1417 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -07001418
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001419 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1420 if (new_groups == NULL) {
1421 err = -ENOMEM;
1422 goto out_unlock;
1423 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001424 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001425 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1426
1427 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001428 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001429 out_unlock:
1430 netlink_table_ungrab();
1431 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001432}
1433
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001434static void netlink_unbind(int group, long unsigned int groups,
1435 struct netlink_sock *nlk)
1436{
1437 int undo;
1438
1439 if (!nlk->netlink_unbind)
1440 return;
1441
1442 for (undo = 0; undo < group; undo++)
1443 if (test_bit(group, &groups))
1444 nlk->netlink_unbind(undo);
1445}
1446
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001447static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1448 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001451 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 struct netlink_sock *nlk = nlk_sk(sk);
1453 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1454 int err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001455 long unsigned int groups = nladdr->nl_groups;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001456
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001457 if (addr_len < sizeof(struct sockaddr_nl))
1458 return -EINVAL;
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (nladdr->nl_family != AF_NETLINK)
1461 return -EINVAL;
1462
1463 /* Only superuser is allowed to listen multicasts */
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001464 if (groups) {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001465 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001466 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001467 err = netlink_realloc_groups(sk);
1468 if (err)
1469 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001472 if (nlk->portid)
Eric W. Biederman15e47302012-09-07 20:12:54 +00001473 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return -EINVAL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001475
1476 if (nlk->netlink_bind && groups) {
1477 int group;
1478
1479 for (group = 0; group < nlk->ngroups; group++) {
1480 if (!test_bit(group, &groups))
1481 continue;
1482 err = nlk->netlink_bind(group);
1483 if (!err)
1484 continue;
1485 netlink_unbind(group, groups, nlk);
1486 return err;
1487 }
1488 }
1489
1490 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001492 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 netlink_autobind(sock);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001494 if (err) {
1495 netlink_unbind(nlk->ngroups - 1, groups, nlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001500 if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return 0;
1502
1503 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001504 netlink_update_subscriptions(sk, nlk->subscriptions +
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001505 hweight32(groups) -
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001506 hweight32(nlk->groups[0]));
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001507 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001508 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 netlink_table_ungrab();
1510
1511 return 0;
1512}
1513
1514static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1515 int alen, int flags)
1516{
1517 int err = 0;
1518 struct sock *sk = sock->sk;
1519 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001520 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Changli Gao6503d962010-03-31 22:58:26 +00001522 if (alen < sizeof(addr->sa_family))
1523 return -EINVAL;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (addr->sa_family == AF_UNSPEC) {
1526 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001527 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001528 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return 0;
1530 }
1531 if (addr->sa_family != AF_NETLINK)
1532 return -EINVAL;
1533
Mike Pecovnik46833a82014-02-24 21:11:16 +01001534 if ((nladdr->nl_groups || nladdr->nl_pid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001535 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return -EPERM;
1537
Eric W. Biederman15e47302012-09-07 20:12:54 +00001538 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 err = netlink_autobind(sock);
1540
1541 if (err == 0) {
1542 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001543 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001544 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546
1547 return err;
1548}
1549
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001550static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1551 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 struct sock *sk = sock->sk;
1554 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001555 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 nladdr->nl_family = AF_NETLINK;
1558 nladdr->nl_pad = 0;
1559 *addr_len = sizeof(*nladdr);
1560
1561 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001562 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001563 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001565 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001566 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568 return 0;
1569}
1570
Eric W. Biederman15e47302012-09-07 20:12:54 +00001571static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 struct sock *sock;
1574 struct netlink_sock *nlk;
1575
Eric W. Biederman15e47302012-09-07 20:12:54 +00001576 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (!sock)
1578 return ERR_PTR(-ECONNREFUSED);
1579
1580 /* Don't bother queuing skb if kernel socket has no input function */
1581 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001582 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001583 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 sock_put(sock);
1585 return ERR_PTR(-ECONNREFUSED);
1586 }
1587 return sock;
1588}
1589
1590struct sock *netlink_getsockbyfilp(struct file *filp)
1591{
Al Viro496ad9a2013-01-23 17:07:38 -05001592 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 struct sock *sock;
1594
1595 if (!S_ISSOCK(inode->i_mode))
1596 return ERR_PTR(-ENOTSOCK);
1597
1598 sock = SOCKET_I(inode)->sk;
1599 if (sock->sk_family != AF_NETLINK)
1600 return ERR_PTR(-EINVAL);
1601
1602 sock_hold(sock);
1603 return sock;
1604}
1605
Pablo Neira3a365152013-06-28 03:04:23 +02001606static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1607 int broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001608{
1609 struct sk_buff *skb;
1610 void *data;
1611
Pablo Neira3a365152013-06-28 03:04:23 +02001612 if (size <= NLMSG_GOODSIZE || broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001613 return alloc_skb(size, GFP_KERNEL);
1614
Pablo Neira3a365152013-06-28 03:04:23 +02001615 size = SKB_DATA_ALIGN(size) +
1616 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001617
1618 data = vmalloc(size);
1619 if (data == NULL)
Pablo Neira3a365152013-06-28 03:04:23 +02001620 return NULL;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001621
Pablo Neira3a365152013-06-28 03:04:23 +02001622 skb = build_skb(data, size);
1623 if (skb == NULL)
1624 vfree(data);
1625 else {
1626 skb->head_frag = 0;
1627 skb->destructor = netlink_skb_destructor;
1628 }
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001629
1630 return skb;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001631}
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633/*
1634 * Attach a skb to a netlink socket.
1635 * The caller must hold a reference to the destination socket. On error, the
1636 * reference is dropped. The skb is not send to the destination, just all
1637 * all error checks are performed and memory in the queue is reserved.
1638 * Return values:
1639 * < 0: error. skb freed, reference to sock dropped.
1640 * 0: continue
1641 * 1: repeat lookup - reference dropped while waiting for socket memory.
1642 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001643int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001644 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 struct netlink_sock *nlk;
1647
1648 nlk = nlk_sk(sk);
1649
Patrick McHardy5fd96122013-04-17 06:47:03 +00001650 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1651 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
1652 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001654 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001655 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 netlink_overrun(sk);
1657 sock_put(sk);
1658 kfree_skb(skb);
1659 return -EAGAIN;
1660 }
1661
1662 __set_current_state(TASK_INTERRUPTIBLE);
1663 add_wait_queue(&nlk->wait, &wait);
1664
1665 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Patrick McHardycd967e02013-04-17 06:46:56 +00001666 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001668 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 __set_current_state(TASK_RUNNING);
1671 remove_wait_queue(&nlk->wait, &wait);
1672 sock_put(sk);
1673
1674 if (signal_pending(current)) {
1675 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001676 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678 return 1;
1679 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001680 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return 0;
1682}
1683
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001684static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int len = skb->len;
1687
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001688 netlink_deliver_tap(skb);
1689
Patrick McHardyf9c22882013-04-17 06:47:04 +00001690#ifdef CONFIG_NETLINK_MMAP
1691 if (netlink_skb_is_mmaped(skb))
1692 netlink_queue_mmaped_skb(sk, skb);
1693 else if (netlink_rx_is_mmaped(sk))
1694 netlink_ring_set_copied(sk, skb);
1695 else
1696#endif /* CONFIG_NETLINK_MMAP */
1697 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -04001698 sk->sk_data_ready(sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001699 return len;
1700}
1701
1702int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1703{
1704 int len = __netlink_sendskb(sk, skb);
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 sock_put(sk);
1707 return len;
1708}
1709
1710void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1711{
1712 kfree_skb(skb);
1713 sock_put(sk);
1714}
1715
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001716static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 int delta;
1719
Patrick McHardy1298ca42013-04-17 06:46:59 +00001720 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001721 if (netlink_skb_is_mmaped(skb))
1722 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001724 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001725 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return skb;
1727
1728 if (skb_shared(skb)) {
1729 struct sk_buff *nskb = skb_clone(skb, allocation);
1730 if (!nskb)
1731 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001732 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 skb = nskb;
1734 }
1735
1736 if (!pskb_expand_head(skb, 0, -delta, allocation))
1737 skb->truesize -= delta;
1738
1739 return skb;
1740}
1741
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001742static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1743 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001744{
1745 int ret;
1746 struct netlink_sock *nlk = nlk_sk(sk);
1747
1748 ret = -ECONNREFUSED;
1749 if (nlk->netlink_rcv != NULL) {
1750 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001751 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001752 NETLINK_CB(skb).sk = ssk;
Daniel Borkmann73bfd372013-12-23 14:35:55 +01001753 netlink_deliver_tap_kernel(sk, ssk, skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001754 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001755 consume_skb(skb);
1756 } else {
1757 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001758 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001759 sock_put(sk);
1760 return ret;
1761}
1762
1763int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001764 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 struct sock *sk;
1767 int err;
1768 long timeo;
1769
1770 skb = netlink_trim(skb, gfp_any());
1771
1772 timeo = sock_sndtimeo(ssk, nonblock);
1773retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001774 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (IS_ERR(sk)) {
1776 kfree_skb(skb);
1777 return PTR_ERR(sk);
1778 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001779 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001780 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001781
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001782 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001783 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001784 kfree_skb(skb);
1785 sock_put(sk);
1786 return err;
1787 }
1788
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001789 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (err == 1)
1791 goto retry;
1792 if (err)
1793 return err;
1794
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001795 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001797EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Patrick McHardyf9c22882013-04-17 06:47:04 +00001799struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1800 u32 dst_portid, gfp_t gfp_mask)
1801{
1802#ifdef CONFIG_NETLINK_MMAP
1803 struct sock *sk = NULL;
1804 struct sk_buff *skb;
1805 struct netlink_ring *ring;
1806 struct nl_mmap_hdr *hdr;
1807 unsigned int maxlen;
1808
1809 sk = netlink_getsockbyportid(ssk, dst_portid);
1810 if (IS_ERR(sk))
1811 goto out;
1812
1813 ring = &nlk_sk(sk)->rx_ring;
1814 /* fast-path without atomic ops for common case: non-mmaped receiver */
1815 if (ring->pg_vec == NULL)
1816 goto out_put;
1817
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001818 if (ring->frame_size - NL_MMAP_HDRLEN < size)
1819 goto out_put;
1820
Patrick McHardyf9c22882013-04-17 06:47:04 +00001821 skb = alloc_skb_head(gfp_mask);
1822 if (skb == NULL)
1823 goto err1;
1824
1825 spin_lock_bh(&sk->sk_receive_queue.lock);
1826 /* check again under lock */
1827 if (ring->pg_vec == NULL)
1828 goto out_free;
1829
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001830 /* check again under lock */
Patrick McHardyf9c22882013-04-17 06:47:04 +00001831 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1832 if (maxlen < size)
1833 goto out_free;
1834
1835 netlink_forward_ring(ring);
1836 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1837 if (hdr == NULL)
1838 goto err2;
1839 netlink_ring_setup_skb(skb, sk, ring, hdr);
1840 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1841 atomic_inc(&ring->pending);
1842 netlink_increment_head(ring);
1843
1844 spin_unlock_bh(&sk->sk_receive_queue.lock);
1845 return skb;
1846
1847err2:
1848 kfree_skb(skb);
1849 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001850 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001851err1:
1852 sock_put(sk);
1853 return NULL;
1854
1855out_free:
1856 kfree_skb(skb);
1857 spin_unlock_bh(&sk->sk_receive_queue.lock);
1858out_put:
1859 sock_put(sk);
1860out:
1861#endif
1862 return alloc_skb(size, gfp_mask);
1863}
1864EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1865
Patrick McHardy4277a082006-03-20 18:52:01 -08001866int netlink_has_listeners(struct sock *sk, unsigned int group)
1867{
1868 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001869 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001870
Denis V. Lunevaed81562007-10-10 21:14:32 -07001871 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001872
1873 rcu_read_lock();
1874 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1875
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001876 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001877 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001878
1879 rcu_read_unlock();
1880
Patrick McHardy4277a082006-03-20 18:52:01 -08001881 return res;
1882}
1883EXPORT_SYMBOL_GPL(netlink_has_listeners);
1884
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001885static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
1887 struct netlink_sock *nlk = nlk_sk(sk);
1888
1889 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Patrick McHardycd967e02013-04-17 06:46:56 +00001890 !test_bit(NETLINK_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001891 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001892 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001893 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895 return -1;
1896}
1897
1898struct netlink_broadcast_data {
1899 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001900 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001901 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 u32 group;
1903 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001904 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 int congested;
1906 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001907 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001909 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1910 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911};
1912
Rami Rosen46c95212014-07-01 21:17:35 +03001913static void do_one_broadcast(struct sock *sk,
1914 struct netlink_broadcast_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
1916 struct netlink_sock *nlk = nlk_sk(sk);
1917 int val;
1918
1919 if (p->exclude_sk == sk)
Rami Rosen46c95212014-07-01 21:17:35 +03001920 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Eric W. Biederman15e47302012-09-07 20:12:54 +00001922 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001923 !test_bit(p->group - 1, nlk->groups))
Rami Rosen46c95212014-07-01 21:17:35 +03001924 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001926 if (!net_eq(sock_net(sk), p->net))
Rami Rosen46c95212014-07-01 21:17:35 +03001927 return;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 if (p->failure) {
1930 netlink_overrun(sk);
Rami Rosen46c95212014-07-01 21:17:35 +03001931 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933
1934 sock_hold(sk);
1935 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001936 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 p->skb2 = skb_clone(p->skb, p->allocation);
1938 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001939 p->skb2 = skb_get(p->skb);
1940 /*
1941 * skb ownership may have been set when
1942 * delivered to a previous socket.
1943 */
1944 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 }
1946 }
1947 if (p->skb2 == NULL) {
1948 netlink_overrun(sk);
1949 /* Clone failed. Notify ALL listeners. */
1950 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001951 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1952 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001953 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1954 kfree_skb(p->skb2);
1955 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001956 } else if (sk_filter(sk, p->skb2)) {
1957 kfree_skb(p->skb2);
1958 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1960 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001961 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1962 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 } else {
1964 p->congested |= val;
1965 p->delivered = 1;
1966 p->skb2 = NULL;
1967 }
1968 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
1970
Eric W. Biederman15e47302012-09-07 20:12:54 +00001971int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001972 u32 group, gfp_t allocation,
1973 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1974 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001976 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 struct sock *sk;
1979
1980 skb = netlink_trim(skb, allocation);
1981
1982 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001983 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001984 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 info.group = group;
1986 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001987 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 info.congested = 0;
1989 info.delivered = 0;
1990 info.allocation = allocation;
1991 info.skb = skb;
1992 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001993 info.tx_filter = filter;
1994 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 /* While we sleep in clone, do not allow to change socket list */
1997
1998 netlink_lock_table();
1999
Sasha Levinb67bfe02013-02-27 17:06:00 -08002000 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 do_one_broadcast(sk, &info);
2002
Neil Horman70d4bf62010-07-20 06:45:56 +00002003 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 netlink_unlock_table();
2006
Neil Horman70d4bf62010-07-20 06:45:56 +00002007 if (info.delivery_failure) {
2008 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08002009 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002010 }
2011 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (info.delivered) {
2014 if (info.congested && (allocation & __GFP_WAIT))
2015 yield();
2016 return 0;
2017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return -ESRCH;
2019}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002020EXPORT_SYMBOL(netlink_broadcast_filtered);
2021
Eric W. Biederman15e47302012-09-07 20:12:54 +00002022int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002023 u32 group, gfp_t allocation)
2024{
Eric W. Biederman15e47302012-09-07 20:12:54 +00002025 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002026 NULL, NULL);
2027}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002028EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030struct netlink_set_err_data {
2031 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002032 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 u32 group;
2034 int code;
2035};
2036
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00002037static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002040 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 if (sk == p->exclude_sk)
2043 goto out;
2044
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08002045 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002046 goto out;
2047
Eric W. Biederman15e47302012-09-07 20:12:54 +00002048 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07002049 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 goto out;
2051
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002052 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
2053 ret = 1;
2054 goto out;
2055 }
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 sk->sk_err = p->code;
2058 sk->sk_error_report(sk);
2059out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002063/**
2064 * netlink_set_err - report error to broadcast listeners
2065 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00002066 * @portid: the PORTID of a process that we want to skip (if any)
Johannes Berg840e93f22013-11-19 10:35:40 +01002067 * @group: the broadcast group that will notice the error
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002068 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002069 *
2070 * This function returns the number of broadcast listeners that have set the
2071 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002072 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002073int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002077 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002080 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002082 /* sk->sk_err wants a positive error value */
2083 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 read_lock(&nl_table_lock);
2086
Sasha Levinb67bfe02013-02-27 17:06:00 -08002087 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002088 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002091 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01002093EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Johannes Berg84659eb2007-07-18 15:47:05 -07002095/* must be called with netlink table grabbed */
2096static void netlink_update_socket_mc(struct netlink_sock *nlk,
2097 unsigned int group,
2098 int is_new)
2099{
2100 int old, new = !!is_new, subscriptions;
2101
2102 old = test_bit(group - 1, nlk->groups);
2103 subscriptions = nlk->subscriptions - old + new;
2104 if (new)
2105 __set_bit(group - 1, nlk->groups);
2106 else
2107 __clear_bit(group - 1, nlk->groups);
2108 netlink_update_subscriptions(&nlk->sk, subscriptions);
2109 netlink_update_listeners(&nlk->sk);
2110}
2111
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002112static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002113 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002114{
2115 struct sock *sk = sock->sk;
2116 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07002117 unsigned int val = 0;
2118 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002119
2120 if (level != SOL_NETLINK)
2121 return -ENOPROTOOPT;
2122
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002123 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
2124 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07002125 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002126 return -EFAULT;
2127
2128 switch (optname) {
2129 case NETLINK_PKTINFO:
2130 if (val)
2131 nlk->flags |= NETLINK_RECV_PKTINFO;
2132 else
2133 nlk->flags &= ~NETLINK_RECV_PKTINFO;
2134 err = 0;
2135 break;
2136 case NETLINK_ADD_MEMBERSHIP:
2137 case NETLINK_DROP_MEMBERSHIP: {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002138 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002139 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002140 err = netlink_realloc_groups(sk);
2141 if (err)
2142 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002143 if (!val || val - 1 >= nlk->ngroups)
2144 return -EINVAL;
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002145 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
Richard Guy Briggs4f520902014-04-22 21:31:54 -04002146 err = nlk->netlink_bind(val);
2147 if (err)
2148 return err;
2149 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002150 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07002151 netlink_update_socket_mc(nlk, val,
2152 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002153 netlink_table_ungrab();
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002154 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
2155 nlk->netlink_unbind(val);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00002156
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002157 err = 0;
2158 break;
2159 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002160 case NETLINK_BROADCAST_ERROR:
2161 if (val)
2162 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
2163 else
2164 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
2165 err = 0;
2166 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002167 case NETLINK_NO_ENOBUFS:
2168 if (val) {
2169 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
Patrick McHardycd967e02013-04-17 06:46:56 +00002170 clear_bit(NETLINK_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002171 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00002172 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002173 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002174 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002175 err = 0;
2176 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002177#ifdef CONFIG_NETLINK_MMAP
2178 case NETLINK_RX_RING:
2179 case NETLINK_TX_RING: {
2180 struct nl_mmap_req req;
2181
2182 /* Rings might consume more memory than queue limits, require
2183 * CAP_NET_ADMIN.
2184 */
2185 if (!capable(CAP_NET_ADMIN))
2186 return -EPERM;
2187 if (optlen < sizeof(req))
2188 return -EINVAL;
2189 if (copy_from_user(&req, optval, sizeof(req)))
2190 return -EFAULT;
2191 err = netlink_set_ring(sk, &req, false,
2192 optname == NETLINK_TX_RING);
2193 break;
2194 }
2195#endif /* CONFIG_NETLINK_MMAP */
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002196 default:
2197 err = -ENOPROTOOPT;
2198 }
2199 return err;
2200}
2201
2202static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002203 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002204{
2205 struct sock *sk = sock->sk;
2206 struct netlink_sock *nlk = nlk_sk(sk);
2207 int len, val, err;
2208
2209 if (level != SOL_NETLINK)
2210 return -ENOPROTOOPT;
2211
2212 if (get_user(len, optlen))
2213 return -EFAULT;
2214 if (len < 0)
2215 return -EINVAL;
2216
2217 switch (optname) {
2218 case NETLINK_PKTINFO:
2219 if (len < sizeof(int))
2220 return -EINVAL;
2221 len = sizeof(int);
2222 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002223 if (put_user(len, optlen) ||
2224 put_user(val, optval))
2225 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002226 err = 0;
2227 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002228 case NETLINK_BROADCAST_ERROR:
2229 if (len < sizeof(int))
2230 return -EINVAL;
2231 len = sizeof(int);
2232 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
2233 if (put_user(len, optlen) ||
2234 put_user(val, optval))
2235 return -EFAULT;
2236 err = 0;
2237 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002238 case NETLINK_NO_ENOBUFS:
2239 if (len < sizeof(int))
2240 return -EINVAL;
2241 len = sizeof(int);
2242 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
2243 if (put_user(len, optlen) ||
2244 put_user(val, optval))
2245 return -EFAULT;
2246 err = 0;
2247 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002248 default:
2249 err = -ENOPROTOOPT;
2250 }
2251 return err;
2252}
2253
2254static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2255{
2256 struct nl_pktinfo info;
2257
2258 info.group = NETLINK_CB(skb).dst_group;
2259 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2260}
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
2263 struct msghdr *msg, size_t len)
2264{
2265 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2266 struct sock *sk = sock->sk;
2267 struct netlink_sock *nlk = nlk_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002268 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002269 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002270 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 struct sk_buff *skb;
2272 int err;
2273 struct scm_cookie scm;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002274 u32 netlink_skb_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 if (msg->msg_flags&MSG_OOB)
2277 return -EOPNOTSUPP;
2278
Eric Dumazet16e57262011-09-19 05:52:27 +00002279 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00002281
Eric Dumazete0e3cea2012-08-21 06:21:17 +00002282 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (err < 0)
2284 return err;
2285
2286 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002287 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002289 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002290 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002291 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002292 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002293 if ((dst_group || dst_portid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002294 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002295 goto out;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002296 netlink_skb_flags |= NETLINK_SKB_DST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002298 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002299 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301
Eric W. Biederman15e47302012-09-07 20:12:54 +00002302 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 err = netlink_autobind(sock);
2304 if (err)
2305 goto out;
2306 }
2307
Patrick McHardy5fd96122013-04-17 06:47:03 +00002308 if (netlink_tx_is_mmaped(sk) &&
2309 msg->msg_iov->iov_base == NULL) {
2310 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2311 siocb);
2312 goto out;
2313 }
2314
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 err = -EMSGSIZE;
2316 if (len > sk->sk_sndbuf - 32)
2317 goto out;
2318 err = -ENOBUFS;
Pablo Neira3a365152013-06-28 03:04:23 +02002319 skb = netlink_alloc_large_skb(len, dst_group);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002320 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 goto out;
2322
Eric W. Biederman15e47302012-09-07 20:12:54 +00002323 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002324 NETLINK_CB(skb).dst_group = dst_group;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00002325 NETLINK_CB(skb).creds = siocb->scm->creds;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002326 NETLINK_CB(skb).flags = netlink_skb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002329 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 kfree_skb(skb);
2331 goto out;
2332 }
2333
2334 err = security_netlink_send(sk, skb);
2335 if (err) {
2336 kfree_skb(skb);
2337 goto out;
2338 }
2339
Patrick McHardyd629b832005-08-14 19:27:50 -07002340 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002342 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002344 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002347 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return err;
2349}
2350
2351static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
2352 struct msghdr *msg, size_t len,
2353 int flags)
2354{
2355 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2356 struct scm_cookie scm;
2357 struct sock *sk = sock->sk;
2358 struct netlink_sock *nlk = nlk_sk(sk);
2359 int noblock = flags&MSG_DONTWAIT;
2360 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002361 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002362 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 if (flags&MSG_OOB)
2365 return -EOPNOTSUPP;
2366
2367 copied = 0;
2368
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002369 skb = skb_recv_datagram(sk, flags, noblock, &err);
2370 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 goto out;
2372
Johannes Berg68d6ac62010-08-15 21:20:44 +00002373 data_skb = skb;
2374
Johannes Berg1dacc762009-07-01 11:26:02 +00002375#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2376 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002377 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002378 * If this skb has a frag_list, then here that means that we
2379 * will have to use the frag_list skb's data for compat tasks
2380 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002381 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002382 * If we need to send the compat skb, assign it to the
2383 * 'data_skb' variable so that it will be used below for data
2384 * copying. We keep 'skb' for everything else, including
2385 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002386 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002387 if (flags & MSG_CMSG_COMPAT)
2388 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002389 }
2390#endif
2391
Eric Dumazet9063e212014-03-07 12:02:33 -08002392 /* Record the max length of recvmsg() calls for future allocations */
2393 nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
2394 nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
2395 16384);
2396
Johannes Berg68d6ac62010-08-15 21:20:44 +00002397 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 if (len < copied) {
2399 msg->msg_flags |= MSG_TRUNC;
2400 copied = len;
2401 }
2402
Johannes Berg68d6ac62010-08-15 21:20:44 +00002403 skb_reset_transport_header(data_skb);
2404 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002407 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 addr->nl_family = AF_NETLINK;
2409 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002410 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002411 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 msg->msg_namelen = sizeof(*addr);
2413 }
2414
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002415 if (nlk->flags & NETLINK_RECV_PKTINFO)
2416 netlink_cmsg_recv_pktinfo(msg, skb);
2417
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 if (NULL == siocb->scm) {
2419 memset(&scm, 0, sizeof(scm));
2420 siocb->scm = &scm;
2421 }
2422 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002423 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002424 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 skb_free_datagram(sk, skb);
2427
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002428 if (nlk->cb_running &&
2429 atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
Andrey Vaginb44d2112011-02-21 02:40:47 +00002430 ret = netlink_dump(sk);
2431 if (ret) {
Ben Pfaffac30ef82014-07-09 10:31:22 -07002432 sk->sk_err = -ret;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002433 sk->sk_error_report(sk);
2434 }
2435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438out:
2439 netlink_rcv_wake(sk);
2440 return err ? : copied;
2441}
2442
David S. Miller676d2362014-04-11 16:15:36 -04002443static void netlink_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002445 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
2448/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002449 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 * complete set of kernel non-blocking support for message
2451 * queueing.
2452 */
2453
2454struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002455__netlink_kernel_create(struct net *net, int unit, struct module *module,
2456 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457{
2458 struct socket *sock;
2459 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002460 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002461 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002462 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2463 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002465 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002467 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 return NULL;
2469
2470 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2471 return NULL;
2472
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002473 /*
2474 * We have to just have a reference on the net from sk, but don't
2475 * get_net it. Besides, we cannot get and then put the net here.
2476 * So we create one inside init_net and the move it to net.
2477 */
2478
2479 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
2480 goto out_sock_release_nosk;
2481
2482 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08002483 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002484
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002485 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002486 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002487 else
2488 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002489
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002490 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002491 if (!listeners)
2492 goto out_sock_release;
2493
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002495 if (cfg && cfg->input)
2496 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002498 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002499 goto out_sock_release;
2500
2501 nlk = nlk_sk(sk);
2502 nlk->flags |= NETLINK_KERNEL_SOCKET;
2503
2504 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002505 if (!nl_table[unit].registered) {
2506 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002507 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002508 nl_table[unit].cb_mutex = cb_mutex;
2509 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002510 if (cfg) {
2511 nl_table[unit].bind = cfg->bind;
2512 nl_table[unit].flags = cfg->flags;
Gao fengda12c902013-06-06 14:49:11 +08002513 if (cfg->compare)
2514 nl_table[unit].compare = cfg->compare;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002515 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002516 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002517 } else {
2518 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002519 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002520 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002521 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002522 return sk;
2523
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002524out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002525 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002526 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002527 return NULL;
2528
2529out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002530 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002531 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002533EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002534
2535void
2536netlink_kernel_release(struct sock *sk)
2537{
Denis V. Lunevedf02082008-02-29 11:18:32 -08002538 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002539}
2540EXPORT_SYMBOL(netlink_kernel_release);
2541
Johannes Bergd136f1b2009-09-12 03:03:15 +00002542int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002543{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002544 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002545 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002546
2547 if (groups < 32)
2548 groups = 32;
2549
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002550 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002551 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2552 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002553 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002554 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002555 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2556 rcu_assign_pointer(tbl->listeners, new);
2557
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002558 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002559 }
2560 tbl->groups = groups;
2561
Johannes Bergd136f1b2009-09-12 03:03:15 +00002562 return 0;
2563}
2564
2565/**
2566 * netlink_change_ngroups - change number of multicast groups
2567 *
2568 * This changes the number of multicast groups that are available
2569 * on a certain netlink family. Note that it is not possible to
2570 * change the number of groups to below 32. Also note that it does
2571 * not implicitly call netlink_clear_multicast_users() when the
2572 * number of groups is reduced.
2573 *
2574 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2575 * @groups: The new number of groups.
2576 */
2577int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2578{
2579 int err;
2580
2581 netlink_table_grab();
2582 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002583 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002584
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002585 return err;
2586}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002587
Johannes Bergb8273572009-09-24 15:44:05 -07002588void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2589{
2590 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002591 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2592
Sasha Levinb67bfe02013-02-27 17:06:00 -08002593 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002594 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2595}
2596
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002597struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002598__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002599{
2600 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002601 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002602
Wang Yufen23b45672014-02-17 16:53:32 +08002603 nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size));
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002604 nlh->nlmsg_type = type;
2605 nlh->nlmsg_len = size;
2606 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002607 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002608 nlh->nlmsg_seq = seq;
2609 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002610 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002611 return nlh;
2612}
2613EXPORT_SYMBOL(__nlmsg_put);
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615/*
2616 * It looks a bit ugly.
2617 * It would be better to create kernel thread.
2618 */
2619
2620static int netlink_dump(struct sock *sk)
2621{
2622 struct netlink_sock *nlk = nlk_sk(sk);
2623 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002624 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002626 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002627 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002629 mutex_lock(nlk->cb_mutex);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002630 if (!nlk->cb_running) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002631 err = -EINVAL;
2632 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
2634
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002635 cb = &nlk->cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002636 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2637
Patrick McHardyf9c22882013-04-17 06:47:04 +00002638 if (!netlink_rx_is_mmaped(sk) &&
2639 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2640 goto errout_skb;
Eric Dumazet9063e212014-03-07 12:02:33 -08002641
2642 /* NLMSG_GOODSIZE is small to avoid high order allocations being
2643 * required, but it makes sense to _attempt_ a 16K bytes allocation
2644 * to reduce number of system calls on dump operations, if user
2645 * ever provided a big enough buffer.
2646 */
2647 if (alloc_size < nlk->max_recvmsg_len) {
2648 skb = netlink_alloc_skb(sk,
2649 nlk->max_recvmsg_len,
2650 nlk->portid,
2651 GFP_KERNEL |
2652 __GFP_NOWARN |
2653 __GFP_NORETRY);
2654 /* available room should be exact amount to avoid MSG_TRUNC */
2655 if (skb)
2656 skb_reserve(skb, skb_tailroom(skb) -
2657 nlk->max_recvmsg_len);
2658 }
2659 if (!skb)
2660 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid,
2661 GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002662 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002663 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002664 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 len = cb->dump(skb, cb);
2667
2668 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002669 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002670
2671 if (sk_filter(sk, skb))
2672 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002673 else
2674 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 return 0;
2676 }
2677
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002678 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2679 if (!nlh)
2680 goto errout_skb;
2681
Johannes Berg670dc282011-06-20 13:40:46 +02002682 nl_dump_check_consistent(cb, nlh);
2683
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002684 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2685
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002686 if (sk_filter(sk, skb))
2687 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002688 else
2689 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Thomas Grafa8f74b22005-11-10 02:25:52 +01002691 if (cb->done)
2692 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002694 nlk->cb_running = false;
2695 mutex_unlock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002696 module_put(cb->module);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002697 consume_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002699
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002700errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002701 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002702 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002703 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704}
2705
Gao feng6dc878a2012-10-04 20:15:48 +00002706int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2707 const struct nlmsghdr *nlh,
2708 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
2710 struct netlink_callback *cb;
2711 struct sock *sk;
2712 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002713 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Patrick McHardyf9c22882013-04-17 06:47:04 +00002715 /* Memory mapped dump requests need to be copied to avoid looping
2716 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2717 * a reference to the skb.
2718 */
2719 if (netlink_skb_is_mmaped(skb)) {
2720 skb = skb_copy(skb, GFP_KERNEL);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002721 if (skb == NULL)
Patrick McHardyf9c22882013-04-17 06:47:04 +00002722 return -ENOBUFS;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002723 } else
2724 atomic_inc(&skb->users);
2725
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002726 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2727 if (sk == NULL) {
2728 ret = -ECONNREFUSED;
2729 goto error_free;
2730 }
2731
2732 nlk = nlk_sk(sk);
2733 mutex_lock(nlk->cb_mutex);
2734 /* A dump is in progress... */
2735 if (nlk->cb_running) {
2736 ret = -EBUSY;
2737 goto error_unlock;
2738 }
2739 /* add reference of module which cb->dump belongs to */
2740 if (!try_module_get(control->module)) {
2741 ret = -EPROTONOSUPPORT;
2742 goto error_unlock;
2743 }
2744
2745 cb = &nlk->cb;
2746 memset(cb, 0, sizeof(*cb));
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002747 cb->dump = control->dump;
2748 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002750 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002751 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002752 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 cb->skb = skb;
2754
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002755 nlk->cb_running = true;
Gao feng6dc878a2012-10-04 20:15:48 +00002756
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002757 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Andrey Vaginb44d2112011-02-21 02:40:47 +00002759 ret = netlink_dump(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002761
Andrey Vaginb44d2112011-02-21 02:40:47 +00002762 if (ret)
2763 return ret;
2764
Denis V. Lunev5c582982007-10-23 20:29:25 -07002765 /* We successfully started a dump, by returning -EINTR we
2766 * signal not to send ACK even if it was requested.
2767 */
2768 return -EINTR;
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002769
2770error_unlock:
2771 sock_put(sk);
2772 mutex_unlock(nlk->cb_mutex);
2773error_free:
2774 kfree_skb(skb);
2775 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776}
Gao feng6dc878a2012-10-04 20:15:48 +00002777EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
2779void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2780{
2781 struct sk_buff *skb;
2782 struct nlmsghdr *rep;
2783 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002784 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Thomas Graf339bf982006-11-10 14:10:15 -08002786 /* error messages get the original request appened */
2787 if (err)
2788 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Patrick McHardyf9c22882013-04-17 06:47:04 +00002790 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2791 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 if (!skb) {
2793 struct sock *sk;
2794
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002795 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002796 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002797 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 if (sk) {
2799 sk->sk_err = ENOBUFS;
2800 sk->sk_error_report(sk);
2801 sock_put(sk);
2802 }
2803 return;
2804 }
2805
Eric W. Biederman15e47302012-09-07 20:12:54 +00002806 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002807 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002808 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002810 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002811 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002813EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002815int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002816 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002817{
Thomas Graf82ace472005-11-10 02:25:53 +01002818 struct nlmsghdr *nlh;
2819 int err;
2820
2821 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002822 int msglen;
2823
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002824 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002825 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002826
Martin Murrayad8e4b72006-01-10 13:02:29 -08002827 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002828 return 0;
2829
Thomas Grafd35b6852007-03-22 23:28:46 -07002830 /* Only requests are handled by the kernel */
2831 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002832 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002833
Thomas Graf45e7ae72007-03-22 23:29:10 -07002834 /* Skip control messages */
2835 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002836 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002837
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002838 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002839 if (err == -EINTR)
2840 goto skip;
2841
2842ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002843 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002844 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002845
Denis V. Lunev5c582982007-10-23 20:29:25 -07002846skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002847 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002848 if (msglen > skb->len)
2849 msglen = skb->len;
2850 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002851 }
2852
2853 return 0;
2854}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002855EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002856
2857/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002858 * nlmsg_notify - send a notification netlink message
2859 * @sk: netlink socket to use
2860 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002861 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002862 * @group: destination multicast group or 0
2863 * @report: 1 to report back, 0 to disable
2864 * @flags: allocation flags
2865 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002866int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002867 unsigned int group, int report, gfp_t flags)
2868{
2869 int err = 0;
2870
2871 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002872 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002873
2874 if (report) {
2875 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002876 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002877 }
2878
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002879 /* errors reported via destination sk->sk_err, but propagate
2880 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002881 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002882 }
2883
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002884 if (report) {
2885 int err2;
2886
Eric W. Biederman15e47302012-09-07 20:12:54 +00002887 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002888 if (!err || err == -ESRCH)
2889 err = err2;
2890 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002891
2892 return err;
2893}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002894EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896#ifdef CONFIG_PROC_FS
2897struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002898 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 int link;
2900 int hash_idx;
2901};
2902
2903static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
2904{
2905 struct nl_seq_iter *iter = seq->private;
2906 int i, j;
Thomas Grafe3416942014-08-02 11:47:45 +02002907 struct netlink_sock *nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 loff_t off = 0;
2910
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002911 for (i = 0; i < MAX_LINKS; i++) {
Thomas Grafe3416942014-08-02 11:47:45 +02002912 struct rhashtable *ht = &nl_table[i].hash;
Eric Dumazet67a24ac2014-08-05 07:50:07 +02002913 const struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Thomas Grafe3416942014-08-02 11:47:45 +02002915 for (j = 0; j < tbl->size; j++) {
2916 rht_for_each_entry_rcu(nlk, tbl->buckets[j], node) {
2917 s = (struct sock *)nlk;
2918
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002919 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002920 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 if (off == pos) {
2922 iter->link = i;
2923 iter->hash_idx = j;
2924 return s;
2925 }
2926 ++off;
2927 }
2928 }
2929 }
2930 return NULL;
2931}
2932
2933static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Thomas Graf78fd1d02014-10-21 22:05:38 +02002934 __acquires(nl_table_lock) __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935{
Thomas Graf78fd1d02014-10-21 22:05:38 +02002936 read_lock(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +02002937 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2939}
2940
2941static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2942{
Thomas Graf78fd1d02014-10-21 22:05:38 +02002943 struct rhashtable *ht;
Thomas Grafe3416942014-08-02 11:47:45 +02002944 struct netlink_sock *nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 struct nl_seq_iter *iter;
Gao fengda12c902013-06-06 14:49:11 +08002946 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 int i, j;
2948
2949 ++*pos;
2950
2951 if (v == SEQ_START_TOKEN)
2952 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002953
Gao fengda12c902013-06-06 14:49:11 +08002954 net = seq_file_net(seq);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002955 iter = seq->private;
Thomas Grafe3416942014-08-02 11:47:45 +02002956 nlk = v;
2957
Thomas Graf78fd1d02014-10-21 22:05:38 +02002958 i = iter->link;
2959 ht = &nl_table[i].hash;
2960 rht_for_each_entry(nlk, nlk->node.next, ht, node)
Thomas Grafe3416942014-08-02 11:47:45 +02002961 if (net_eq(sock_net((struct sock *)nlk), net))
2962 return nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 j = iter->hash_idx + 1;
2965
2966 do {
Eric Dumazet67a24ac2014-08-05 07:50:07 +02002967 const struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Thomas Grafe3416942014-08-02 11:47:45 +02002969 for (; j < tbl->size; j++) {
Thomas Graf78fd1d02014-10-21 22:05:38 +02002970 rht_for_each_entry(nlk, tbl->buckets[j], ht, node) {
Thomas Grafe3416942014-08-02 11:47:45 +02002971 if (net_eq(sock_net((struct sock *)nlk), net)) {
2972 iter->link = i;
2973 iter->hash_idx = j;
2974 return nlk;
2975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 }
2977 }
2978
2979 j = 0;
2980 } while (++i < MAX_LINKS);
2981
2982 return NULL;
2983}
2984
2985static void netlink_seq_stop(struct seq_file *seq, void *v)
Thomas Graf78fd1d02014-10-21 22:05:38 +02002986 __releases(RCU) __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987{
Thomas Grafe3416942014-08-02 11:47:45 +02002988 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02002989 read_unlock(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
2992
2993static int netlink_seq_show(struct seq_file *seq, void *v)
2994{
Eric Dumazet658cb352012-04-22 21:30:21 +00002995 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 seq_puts(seq,
2997 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002998 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002999 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 struct sock *s = v;
3001 struct netlink_sock *nlk = nlk_sk(s);
3002
Pravin B Shelar16b304f2013-08-15 15:31:06 -07003003 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 s,
3005 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003006 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07003007 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07003008 sk_rmem_alloc_get(s),
3009 sk_wmem_alloc_get(s),
Pravin B Shelar16b304f2013-08-15 15:31:06 -07003010 nlk->cb_running,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07003011 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00003012 atomic_read(&s->sk_drops),
3013 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 );
3015
3016 }
3017 return 0;
3018}
3019
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003020static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 .start = netlink_seq_start,
3022 .next = netlink_seq_next,
3023 .stop = netlink_seq_stop,
3024 .show = netlink_seq_show,
3025};
3026
3027
3028static int netlink_seq_open(struct inode *inode, struct file *file)
3029{
Denis V. Luneve372c412007-11-19 22:31:54 -08003030 return seq_open_net(inode, file, &netlink_seq_ops,
3031 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003032}
3033
Arjan van de Venda7071d2007-02-12 00:55:36 -08003034static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 .owner = THIS_MODULE,
3036 .open = netlink_seq_open,
3037 .read = seq_read,
3038 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003039 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040};
3041
3042#endif
3043
3044int netlink_register_notifier(struct notifier_block *nb)
3045{
Alan Sterne041c682006-03-27 01:16:30 -08003046 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003048EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050int netlink_unregister_notifier(struct notifier_block *nb)
3051{
Alan Sterne041c682006-03-27 01:16:30 -08003052 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003054EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003055
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003056static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 .family = PF_NETLINK,
3058 .owner = THIS_MODULE,
3059 .release = netlink_release,
3060 .bind = netlink_bind,
3061 .connect = netlink_connect,
3062 .socketpair = sock_no_socketpair,
3063 .accept = sock_no_accept,
3064 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00003065 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 .ioctl = sock_no_ioctl,
3067 .listen = sock_no_listen,
3068 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07003069 .setsockopt = netlink_setsockopt,
3070 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 .sendmsg = netlink_sendmsg,
3072 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00003073 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 .sendpage = sock_no_sendpage,
3075};
3076
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003077static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 .family = PF_NETLINK,
3079 .create = netlink_create,
3080 .owner = THIS_MODULE, /* for consistency 8) */
3081};
3082
Pavel Emelyanov46650792007-10-08 20:38:39 -07003083static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003084{
3085#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003086 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003087 return -ENOMEM;
3088#endif
3089 return 0;
3090}
3091
Pavel Emelyanov46650792007-10-08 20:38:39 -07003092static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003093{
3094#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003095 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003096#endif
3097}
3098
David S. Millerb963ea82010-08-30 19:08:01 -07003099static void __init netlink_add_usersock_entry(void)
3100{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003101 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07003102 int groups = 32;
3103
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003104 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07003105 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003106 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07003107
3108 netlink_table_grab();
3109
3110 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003111 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07003112 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
3113 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00003114 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07003115
3116 netlink_table_ungrab();
3117}
3118
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003119static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003120 .init = netlink_net_init,
3121 .exit = netlink_net_exit,
3122};
3123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124static int __init netlink_proto_init(void)
3125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 int err = proto_register(&netlink_proto, 0);
Thomas Grafe3416942014-08-02 11:47:45 +02003128 struct rhashtable_params ht_params = {
3129 .head_offset = offsetof(struct netlink_sock, node),
3130 .key_offset = offsetof(struct netlink_sock, portid),
3131 .key_len = sizeof(u32), /* portid */
3132 .hashfn = arch_fast_hash,
3133 .max_shift = 16, /* 64K */
3134 .grow_decision = rht_grow_above_75,
3135 .shrink_decision = rht_shrink_below_30,
3136 .mutex_is_held = lockdep_nl_sk_hash_is_held,
3137 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 if (err != 0)
3140 goto out;
3141
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00003142 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07003144 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003145 if (!nl_table)
3146 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 for (i = 0; i < MAX_LINKS; i++) {
Thomas Grafe3416942014-08-02 11:47:45 +02003149 if (rhashtable_init(&nl_table[i].hash, &ht_params) < 0) {
3150 while (--i > 0)
3151 rhashtable_destroy(&nl_table[i].hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003153 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 }
3156
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02003157 INIT_LIST_HEAD(&netlink_tap_all);
3158
David S. Millerb963ea82010-08-30 19:08:01 -07003159 netlink_add_usersock_entry();
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003162 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003163 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 rtnetlink_init();
3165out:
3166 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003167panic:
3168 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169}
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171core_initcall(netlink_proto_init);