blob: f29b63fad9320f951f5d27a06e686de121490d81 [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
Herbert Xu97127562014-11-13 18:11:18 +0800117#ifdef CONFIG_PROVE_LOCKING
Herbert Xu7b4ce232014-11-13 18:11:22 +0800118static int lockdep_nl_sk_hash_is_held(void *parent)
Thomas Grafe3416942014-08-02 11:47:45 +0200119{
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 Graf78fd1d02014-10-21 22:05:38 +0200122 return 1;
Thomas Grafe3416942014-08-02 11:47:45 +0200123}
Herbert Xu97127562014-11-13 18:11:18 +0800124#endif
Thomas Grafe3416942014-08-02 11:47:45 +0200125
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
Markus Elfringfcd4d352014-11-18 21:03:13 +0100145 __module_get(nt->module);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200146
147 return 0;
148}
149EXPORT_SYMBOL_GPL(netlink_add_tap);
150
stephen hemminger2173f8d2013-12-30 10:49:22 -0800151static int __netlink_remove_tap(struct netlink_tap *nt)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200152{
153 bool found = false;
154 struct netlink_tap *tmp;
155
156 spin_lock(&netlink_tap_lock);
157
158 list_for_each_entry(tmp, &netlink_tap_all, list) {
159 if (nt == tmp) {
160 list_del_rcu(&nt->list);
161 found = true;
162 goto out;
163 }
164 }
165
166 pr_warn("__netlink_remove_tap: %p not found\n", nt);
167out:
168 spin_unlock(&netlink_tap_lock);
169
170 if (found && nt->module)
171 module_put(nt->module);
172
173 return found ? 0 : -ENODEV;
174}
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200175
176int netlink_remove_tap(struct netlink_tap *nt)
177{
178 int ret;
179
180 ret = __netlink_remove_tap(nt);
181 synchronize_net();
182
183 return ret;
184}
185EXPORT_SYMBOL_GPL(netlink_remove_tap);
186
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200187static bool netlink_filter_tap(const struct sk_buff *skb)
188{
189 struct sock *sk = skb->sk;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200190
191 /* We take the more conservative approach and
192 * whitelist socket protocols that may pass.
193 */
194 switch (sk->sk_protocol) {
195 case NETLINK_ROUTE:
196 case NETLINK_USERSOCK:
197 case NETLINK_SOCK_DIAG:
198 case NETLINK_NFLOG:
199 case NETLINK_XFRM:
200 case NETLINK_FIB_LOOKUP:
201 case NETLINK_NETFILTER:
202 case NETLINK_GENERIC:
Varka Bhadram498044b2014-07-16 10:59:47 +0530203 return true;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200204 }
205
Varka Bhadram498044b2014-07-16 10:59:47 +0530206 return false;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200207}
208
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200209static int __netlink_deliver_tap_skb(struct sk_buff *skb,
210 struct net_device *dev)
211{
212 struct sk_buff *nskb;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200213 struct sock *sk = skb->sk;
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200214 int ret = -ENOMEM;
215
216 dev_hold(dev);
217 nskb = skb_clone(skb, GFP_ATOMIC);
218 if (nskb) {
219 nskb->dev = dev;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200220 nskb->protocol = htons((u16) sk->sk_protocol);
Daniel Borkmann604d13c2013-12-23 14:35:56 +0100221 nskb->pkt_type = netlink_is_kernel(sk) ?
222 PACKET_KERNEL : PACKET_USER;
Daniel Borkmann4e48ed82014-08-07 22:22:47 +0200223 skb_reset_network_header(nskb);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200224 ret = dev_queue_xmit(nskb);
225 if (unlikely(ret > 0))
226 ret = net_xmit_errno(ret);
227 }
228
229 dev_put(dev);
230 return ret;
231}
232
233static void __netlink_deliver_tap(struct sk_buff *skb)
234{
235 int ret;
236 struct netlink_tap *tmp;
237
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200238 if (!netlink_filter_tap(skb))
239 return;
240
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200241 list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
242 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
243 if (unlikely(ret))
244 break;
245 }
246}
247
248static void netlink_deliver_tap(struct sk_buff *skb)
249{
250 rcu_read_lock();
251
252 if (unlikely(!list_empty(&netlink_tap_all)))
253 __netlink_deliver_tap(skb);
254
255 rcu_read_unlock();
256}
257
Daniel Borkmann73bfd372013-12-23 14:35:55 +0100258static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src,
259 struct sk_buff *skb)
260{
261 if (!(netlink_is_kernel(dst) && netlink_is_kernel(src)))
262 netlink_deliver_tap(skb);
263}
264
Patrick McHardycd1df522013-04-17 06:47:05 +0000265static void netlink_overrun(struct sock *sk)
266{
267 struct netlink_sock *nlk = nlk_sk(sk);
268
269 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
270 if (!test_and_set_bit(NETLINK_CONGESTED, &nlk_sk(sk)->state)) {
271 sk->sk_err = ENOBUFS;
272 sk->sk_error_report(sk);
273 }
274 }
275 atomic_inc(&sk->sk_drops);
276}
277
278static void netlink_rcv_wake(struct sock *sk)
279{
280 struct netlink_sock *nlk = nlk_sk(sk);
281
282 if (skb_queue_empty(&sk->sk_receive_queue))
283 clear_bit(NETLINK_CONGESTED, &nlk->state);
284 if (!test_bit(NETLINK_CONGESTED, &nlk->state))
285 wake_up_interruptible(&nlk->wait);
286}
287
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000288#ifdef CONFIG_NETLINK_MMAP
Patrick McHardy9652e932013-04-17 06:47:02 +0000289static bool netlink_skb_is_mmaped(const struct sk_buff *skb)
290{
291 return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED;
292}
293
Patrick McHardyf9c22882013-04-17 06:47:04 +0000294static bool netlink_rx_is_mmaped(struct sock *sk)
295{
296 return nlk_sk(sk)->rx_ring.pg_vec != NULL;
297}
298
Patrick McHardy5fd96122013-04-17 06:47:03 +0000299static bool netlink_tx_is_mmaped(struct sock *sk)
300{
301 return nlk_sk(sk)->tx_ring.pg_vec != NULL;
302}
303
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000304static __pure struct page *pgvec_to_page(const void *addr)
305{
306 if (is_vmalloc_addr(addr))
307 return vmalloc_to_page(addr);
308 else
309 return virt_to_page(addr);
310}
311
312static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
313{
314 unsigned int i;
315
316 for (i = 0; i < len; i++) {
317 if (pg_vec[i] != NULL) {
318 if (is_vmalloc_addr(pg_vec[i]))
319 vfree(pg_vec[i]);
320 else
321 free_pages((unsigned long)pg_vec[i], order);
322 }
323 }
324 kfree(pg_vec);
325}
326
327static void *alloc_one_pg_vec_page(unsigned long order)
328{
329 void *buffer;
330 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
331 __GFP_NOWARN | __GFP_NORETRY;
332
333 buffer = (void *)__get_free_pages(gfp_flags, order);
334 if (buffer != NULL)
335 return buffer;
336
337 buffer = vzalloc((1 << order) * PAGE_SIZE);
338 if (buffer != NULL)
339 return buffer;
340
341 gfp_flags &= ~__GFP_NORETRY;
342 return (void *)__get_free_pages(gfp_flags, order);
343}
344
345static void **alloc_pg_vec(struct netlink_sock *nlk,
346 struct nl_mmap_req *req, unsigned int order)
347{
348 unsigned int block_nr = req->nm_block_nr;
349 unsigned int i;
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200350 void **pg_vec;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000351
352 pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
353 if (pg_vec == NULL)
354 return NULL;
355
356 for (i = 0; i < block_nr; i++) {
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200357 pg_vec[i] = alloc_one_pg_vec_page(order);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000358 if (pg_vec[i] == NULL)
359 goto err1;
360 }
361
362 return pg_vec;
363err1:
364 free_pg_vec(pg_vec, order, block_nr);
365 return NULL;
366}
367
368static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
369 bool closing, bool tx_ring)
370{
371 struct netlink_sock *nlk = nlk_sk(sk);
372 struct netlink_ring *ring;
373 struct sk_buff_head *queue;
374 void **pg_vec = NULL;
375 unsigned int order = 0;
376 int err;
377
378 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
379 queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
380
381 if (!closing) {
382 if (atomic_read(&nlk->mapped))
383 return -EBUSY;
384 if (atomic_read(&ring->pending))
385 return -EBUSY;
386 }
387
388 if (req->nm_block_nr) {
389 if (ring->pg_vec != NULL)
390 return -EBUSY;
391
392 if ((int)req->nm_block_size <= 0)
393 return -EINVAL;
Tobias Klauser74e83b22014-07-31 12:17:08 +0200394 if (!PAGE_ALIGNED(req->nm_block_size))
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000395 return -EINVAL;
396 if (req->nm_frame_size < NL_MMAP_HDRLEN)
397 return -EINVAL;
398 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
399 return -EINVAL;
400
401 ring->frames_per_block = req->nm_block_size /
402 req->nm_frame_size;
403 if (ring->frames_per_block == 0)
404 return -EINVAL;
405 if (ring->frames_per_block * req->nm_block_nr !=
406 req->nm_frame_nr)
407 return -EINVAL;
408
409 order = get_order(req->nm_block_size);
410 pg_vec = alloc_pg_vec(nlk, req, order);
411 if (pg_vec == NULL)
412 return -ENOMEM;
413 } else {
414 if (req->nm_frame_nr)
415 return -EINVAL;
416 }
417
418 err = -EBUSY;
419 mutex_lock(&nlk->pg_vec_lock);
420 if (closing || atomic_read(&nlk->mapped) == 0) {
421 err = 0;
422 spin_lock_bh(&queue->lock);
423
424 ring->frame_max = req->nm_frame_nr - 1;
425 ring->head = 0;
426 ring->frame_size = req->nm_frame_size;
427 ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE;
428
429 swap(ring->pg_vec_len, req->nm_block_nr);
430 swap(ring->pg_vec_order, order);
431 swap(ring->pg_vec, pg_vec);
432
433 __skb_queue_purge(queue);
434 spin_unlock_bh(&queue->lock);
435
436 WARN_ON(atomic_read(&nlk->mapped));
437 }
438 mutex_unlock(&nlk->pg_vec_lock);
439
440 if (pg_vec)
441 free_pg_vec(pg_vec, order, req->nm_block_nr);
442 return err;
443}
444
445static void netlink_mm_open(struct vm_area_struct *vma)
446{
447 struct file *file = vma->vm_file;
448 struct socket *sock = file->private_data;
449 struct sock *sk = sock->sk;
450
451 if (sk)
452 atomic_inc(&nlk_sk(sk)->mapped);
453}
454
455static void netlink_mm_close(struct vm_area_struct *vma)
456{
457 struct file *file = vma->vm_file;
458 struct socket *sock = file->private_data;
459 struct sock *sk = sock->sk;
460
461 if (sk)
462 atomic_dec(&nlk_sk(sk)->mapped);
463}
464
465static const struct vm_operations_struct netlink_mmap_ops = {
466 .open = netlink_mm_open,
467 .close = netlink_mm_close,
468};
469
470static int netlink_mmap(struct file *file, struct socket *sock,
471 struct vm_area_struct *vma)
472{
473 struct sock *sk = sock->sk;
474 struct netlink_sock *nlk = nlk_sk(sk);
475 struct netlink_ring *ring;
476 unsigned long start, size, expected;
477 unsigned int i;
478 int err = -EINVAL;
479
480 if (vma->vm_pgoff)
481 return -EINVAL;
482
483 mutex_lock(&nlk->pg_vec_lock);
484
485 expected = 0;
486 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
487 if (ring->pg_vec == NULL)
488 continue;
489 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
490 }
491
492 if (expected == 0)
493 goto out;
494
495 size = vma->vm_end - vma->vm_start;
496 if (size != expected)
497 goto out;
498
499 start = vma->vm_start;
500 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
501 if (ring->pg_vec == NULL)
502 continue;
503
504 for (i = 0; i < ring->pg_vec_len; i++) {
505 struct page *page;
506 void *kaddr = ring->pg_vec[i];
507 unsigned int pg_num;
508
509 for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
510 page = pgvec_to_page(kaddr);
511 err = vm_insert_page(vma, start, page);
512 if (err < 0)
513 goto out;
514 start += PAGE_SIZE;
515 kaddr += PAGE_SIZE;
516 }
517 }
518 }
519
520 atomic_inc(&nlk->mapped);
521 vma->vm_ops = &netlink_mmap_ops;
522 err = 0;
523out:
524 mutex_unlock(&nlk->pg_vec_lock);
Patrick McHardy7cdbac72013-06-11 02:52:47 -0700525 return err;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000526}
Patrick McHardy9652e932013-04-17 06:47:02 +0000527
David Miller4682a032014-12-16 17:58:17 -0500528static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr, unsigned int nm_len)
Patrick McHardy9652e932013-04-17 06:47:02 +0000529{
530#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
531 struct page *p_start, *p_end;
532
533 /* First page is flushed through netlink_{get,set}_status */
534 p_start = pgvec_to_page(hdr + PAGE_SIZE);
David Miller4682a032014-12-16 17:58:17 -0500535 p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + nm_len - 1);
Patrick McHardy9652e932013-04-17 06:47:02 +0000536 while (p_start <= p_end) {
537 flush_dcache_page(p_start);
538 p_start++;
539 }
540#endif
541}
542
543static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
544{
545 smp_rmb();
546 flush_dcache_page(pgvec_to_page(hdr));
547 return hdr->nm_status;
548}
549
550static void netlink_set_status(struct nl_mmap_hdr *hdr,
551 enum nl_mmap_status status)
552{
Thomas Grafa18e6a12014-12-18 10:30:26 +0000553 smp_mb();
Patrick McHardy9652e932013-04-17 06:47:02 +0000554 hdr->nm_status = status;
555 flush_dcache_page(pgvec_to_page(hdr));
Patrick McHardy9652e932013-04-17 06:47:02 +0000556}
557
558static struct nl_mmap_hdr *
559__netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
560{
561 unsigned int pg_vec_pos, frame_off;
562
563 pg_vec_pos = pos / ring->frames_per_block;
564 frame_off = pos % ring->frames_per_block;
565
566 return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
567}
568
569static struct nl_mmap_hdr *
570netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
571 enum nl_mmap_status status)
572{
573 struct nl_mmap_hdr *hdr;
574
575 hdr = __netlink_lookup_frame(ring, pos);
576 if (netlink_get_status(hdr) != status)
577 return NULL;
578
579 return hdr;
580}
581
582static struct nl_mmap_hdr *
583netlink_current_frame(const struct netlink_ring *ring,
584 enum nl_mmap_status status)
585{
586 return netlink_lookup_frame(ring, ring->head, status);
587}
588
589static struct nl_mmap_hdr *
590netlink_previous_frame(const struct netlink_ring *ring,
591 enum nl_mmap_status status)
592{
593 unsigned int prev;
594
595 prev = ring->head ? ring->head - 1 : ring->frame_max;
596 return netlink_lookup_frame(ring, prev, status);
597}
598
599static void netlink_increment_head(struct netlink_ring *ring)
600{
601 ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
602}
603
604static void netlink_forward_ring(struct netlink_ring *ring)
605{
606 unsigned int head = ring->head, pos = head;
607 const struct nl_mmap_hdr *hdr;
608
609 do {
610 hdr = __netlink_lookup_frame(ring, pos);
611 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
612 break;
613 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
614 break;
615 netlink_increment_head(ring);
616 } while (ring->head != head);
617}
618
Patrick McHardycd1df522013-04-17 06:47:05 +0000619static bool netlink_dump_space(struct netlink_sock *nlk)
620{
621 struct netlink_ring *ring = &nlk->rx_ring;
622 struct nl_mmap_hdr *hdr;
623 unsigned int n;
624
625 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
626 if (hdr == NULL)
627 return false;
628
629 n = ring->head + ring->frame_max / 2;
630 if (n > ring->frame_max)
631 n -= ring->frame_max;
632
633 hdr = __netlink_lookup_frame(ring, n);
634
635 return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
636}
637
Patrick McHardy9652e932013-04-17 06:47:02 +0000638static unsigned int netlink_poll(struct file *file, struct socket *sock,
639 poll_table *wait)
640{
641 struct sock *sk = sock->sk;
642 struct netlink_sock *nlk = nlk_sk(sk);
643 unsigned int mask;
Patrick McHardycd1df522013-04-17 06:47:05 +0000644 int err;
Patrick McHardy9652e932013-04-17 06:47:02 +0000645
Patrick McHardycd1df522013-04-17 06:47:05 +0000646 if (nlk->rx_ring.pg_vec != NULL) {
647 /* Memory mapped sockets don't call recvmsg(), so flow control
648 * for dumps is performed here. A dump is allowed to continue
649 * if at least half the ring is unused.
650 */
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700651 while (nlk->cb_running && netlink_dump_space(nlk)) {
Patrick McHardycd1df522013-04-17 06:47:05 +0000652 err = netlink_dump(sk);
653 if (err < 0) {
Ben Pfaffac30ef82014-07-09 10:31:22 -0700654 sk->sk_err = -err;
Patrick McHardycd1df522013-04-17 06:47:05 +0000655 sk->sk_error_report(sk);
656 break;
657 }
658 }
659 netlink_rcv_wake(sk);
660 }
Patrick McHardy5fd96122013-04-17 06:47:03 +0000661
Patrick McHardy9652e932013-04-17 06:47:02 +0000662 mask = datagram_poll(file, sock, wait);
663
664 spin_lock_bh(&sk->sk_receive_queue.lock);
665 if (nlk->rx_ring.pg_vec) {
666 netlink_forward_ring(&nlk->rx_ring);
667 if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED))
668 mask |= POLLIN | POLLRDNORM;
669 }
670 spin_unlock_bh(&sk->sk_receive_queue.lock);
671
672 spin_lock_bh(&sk->sk_write_queue.lock);
673 if (nlk->tx_ring.pg_vec) {
674 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
675 mask |= POLLOUT | POLLWRNORM;
676 }
677 spin_unlock_bh(&sk->sk_write_queue.lock);
678
679 return mask;
680}
681
682static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
683{
684 return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
685}
686
687static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
688 struct netlink_ring *ring,
689 struct nl_mmap_hdr *hdr)
690{
691 unsigned int size;
692 void *data;
693
694 size = ring->frame_size - NL_MMAP_HDRLEN;
695 data = (void *)hdr + NL_MMAP_HDRLEN;
696
697 skb->head = data;
698 skb->data = data;
699 skb_reset_tail_pointer(skb);
700 skb->end = skb->tail + size;
701 skb->len = 0;
702
703 skb->destructor = netlink_skb_destructor;
704 NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
705 NETLINK_CB(skb).sk = sk;
706}
Patrick McHardy5fd96122013-04-17 06:47:03 +0000707
708static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
709 u32 dst_portid, u32 dst_group,
710 struct sock_iocb *siocb)
711{
712 struct netlink_sock *nlk = nlk_sk(sk);
713 struct netlink_ring *ring;
714 struct nl_mmap_hdr *hdr;
715 struct sk_buff *skb;
716 unsigned int maxlen;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000717 int err = 0, len = 0;
718
Patrick McHardy5fd96122013-04-17 06:47:03 +0000719 mutex_lock(&nlk->pg_vec_lock);
720
721 ring = &nlk->tx_ring;
722 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
723
724 do {
David Miller4682a032014-12-16 17:58:17 -0500725 unsigned int nm_len;
726
Patrick McHardy5fd96122013-04-17 06:47:03 +0000727 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
728 if (hdr == NULL) {
729 if (!(msg->msg_flags & MSG_DONTWAIT) &&
730 atomic_read(&nlk->tx_ring.pending))
731 schedule();
732 continue;
733 }
David Miller4682a032014-12-16 17:58:17 -0500734
735 nm_len = ACCESS_ONCE(hdr->nm_len);
736 if (nm_len > maxlen) {
Patrick McHardy5fd96122013-04-17 06:47:03 +0000737 err = -EINVAL;
738 goto out;
739 }
740
David Miller4682a032014-12-16 17:58:17 -0500741 netlink_frame_flush_dcache(hdr, nm_len);
Patrick McHardy5fd96122013-04-17 06:47:03 +0000742
David Miller4682a032014-12-16 17:58:17 -0500743 skb = alloc_skb(nm_len, GFP_KERNEL);
744 if (skb == NULL) {
745 err = -ENOBUFS;
746 goto out;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000747 }
David Miller4682a032014-12-16 17:58:17 -0500748 __skb_put(skb, nm_len);
749 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, nm_len);
750 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
Patrick McHardy5fd96122013-04-17 06:47:03 +0000751
752 netlink_increment_head(ring);
753
754 NETLINK_CB(skb).portid = nlk->portid;
755 NETLINK_CB(skb).dst_group = dst_group;
756 NETLINK_CB(skb).creds = siocb->scm->creds;
757
758 err = security_netlink_send(sk, skb);
759 if (err) {
760 kfree_skb(skb);
761 goto out;
762 }
763
764 if (unlikely(dst_group)) {
765 atomic_inc(&skb->users);
766 netlink_broadcast(sk, skb, dst_portid, dst_group,
767 GFP_KERNEL);
768 }
769 err = netlink_unicast(sk, skb, dst_portid,
770 msg->msg_flags & MSG_DONTWAIT);
771 if (err < 0)
772 goto out;
773 len += err;
774
775 } while (hdr != NULL ||
776 (!(msg->msg_flags & MSG_DONTWAIT) &&
777 atomic_read(&nlk->tx_ring.pending)));
778
779 if (len > 0)
780 err = len;
781out:
782 mutex_unlock(&nlk->pg_vec_lock);
783 return err;
784}
Patrick McHardyf9c22882013-04-17 06:47:04 +0000785
786static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
787{
788 struct nl_mmap_hdr *hdr;
789
790 hdr = netlink_mmap_hdr(skb);
791 hdr->nm_len = skb->len;
792 hdr->nm_group = NETLINK_CB(skb).dst_group;
793 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200794 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
795 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
David Miller4682a032014-12-16 17:58:17 -0500796 netlink_frame_flush_dcache(hdr, hdr->nm_len);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000797 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
798
799 NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
800 kfree_skb(skb);
801}
802
803static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
804{
805 struct netlink_sock *nlk = nlk_sk(sk);
806 struct netlink_ring *ring = &nlk->rx_ring;
807 struct nl_mmap_hdr *hdr;
808
809 spin_lock_bh(&sk->sk_receive_queue.lock);
810 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
811 if (hdr == NULL) {
812 spin_unlock_bh(&sk->sk_receive_queue.lock);
813 kfree_skb(skb);
Patrick McHardycd1df522013-04-17 06:47:05 +0000814 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000815 return;
816 }
817 netlink_increment_head(ring);
818 __skb_queue_tail(&sk->sk_receive_queue, skb);
819 spin_unlock_bh(&sk->sk_receive_queue.lock);
820
821 hdr->nm_len = skb->len;
822 hdr->nm_group = NETLINK_CB(skb).dst_group;
823 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200824 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
825 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000826 netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
827}
828
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000829#else /* CONFIG_NETLINK_MMAP */
Patrick McHardy9652e932013-04-17 06:47:02 +0000830#define netlink_skb_is_mmaped(skb) false
Patrick McHardyf9c22882013-04-17 06:47:04 +0000831#define netlink_rx_is_mmaped(sk) false
Patrick McHardy5fd96122013-04-17 06:47:03 +0000832#define netlink_tx_is_mmaped(sk) false
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000833#define netlink_mmap sock_no_mmap
Patrick McHardy9652e932013-04-17 06:47:02 +0000834#define netlink_poll datagram_poll
Patrick McHardy5fd96122013-04-17 06:47:03 +0000835#define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, siocb) 0
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000836#endif /* CONFIG_NETLINK_MMAP */
837
Patrick McHardycf0a0182013-04-17 06:47:00 +0000838static void netlink_skb_destructor(struct sk_buff *skb)
839{
Patrick McHardy9652e932013-04-17 06:47:02 +0000840#ifdef CONFIG_NETLINK_MMAP
841 struct nl_mmap_hdr *hdr;
842 struct netlink_ring *ring;
843 struct sock *sk;
844
845 /* If a packet from the kernel to userspace was freed because of an
846 * error without being delivered to userspace, the kernel must reset
847 * the status. In the direction userspace to kernel, the status is
848 * always reset here after the packet was processed and freed.
849 */
850 if (netlink_skb_is_mmaped(skb)) {
851 hdr = netlink_mmap_hdr(skb);
852 sk = NETLINK_CB(skb).sk;
853
Patrick McHardy5fd96122013-04-17 06:47:03 +0000854 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
855 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
856 ring = &nlk_sk(sk)->tx_ring;
857 } else {
858 if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
859 hdr->nm_len = 0;
860 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
861 }
862 ring = &nlk_sk(sk)->rx_ring;
Patrick McHardy9652e932013-04-17 06:47:02 +0000863 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000864
865 WARN_ON(atomic_read(&ring->pending) == 0);
866 atomic_dec(&ring->pending);
867 sock_put(sk);
868
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000869 skb->head = NULL;
Patrick McHardy9652e932013-04-17 06:47:02 +0000870 }
871#endif
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000872 if (is_vmalloc_addr(skb->head)) {
Pablo Neira3a365152013-06-28 03:04:23 +0200873 if (!skb->cloned ||
874 !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
875 vfree(skb->head);
876
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000877 skb->head = NULL;
878 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000879 if (skb->sk != NULL)
880 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000881}
882
883static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
884{
885 WARN_ON(skb->sk != NULL);
886 skb->sk = sk;
887 skb->destructor = netlink_skb_destructor;
888 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
889 sk_mem_charge(sk, skb->truesize);
890}
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892static void netlink_sock_destruct(struct sock *sk)
893{
Herbert Xu3f660d62007-05-03 03:17:14 -0700894 struct netlink_sock *nlk = nlk_sk(sk);
895
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700896 if (nlk->cb_running) {
897 if (nlk->cb.done)
898 nlk->cb.done(&nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000899
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700900 module_put(nlk->cb.module);
901 kfree_skb(nlk->cb.skb);
Herbert Xu3f660d62007-05-03 03:17:14 -0700902 }
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000905#ifdef CONFIG_NETLINK_MMAP
906 if (1) {
907 struct nl_mmap_req req;
908
909 memset(&req, 0, sizeof(req));
910 if (nlk->rx_ring.pg_vec)
911 netlink_set_ring(sk, &req, true, false);
912 memset(&req, 0, sizeof(req));
913 if (nlk->tx_ring.pg_vec)
914 netlink_set_ring(sk, &req, true, true);
915 }
916#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800919 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return;
921 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700922
923 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
924 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
925 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800928/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
929 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
931 * this, _but_ remember, it adds useless work on UP machines.
932 */
933
Johannes Bergd136f1b2009-09-12 03:03:15 +0000934void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800935 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000937 might_sleep();
938
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700939 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (atomic_read(&nl_table_users)) {
942 DECLARE_WAITQUEUE(wait, current);
943
944 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800945 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 set_current_state(TASK_UNINTERRUPTIBLE);
947 if (atomic_read(&nl_table_users) == 0)
948 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700949 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700951 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
954 __set_current_state(TASK_RUNNING);
955 remove_wait_queue(&nl_table_wait, &wait);
956 }
957}
958
Johannes Bergd136f1b2009-09-12 03:03:15 +0000959void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800960 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700962 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 wake_up(&nl_table_wait);
964}
965
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800966static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967netlink_lock_table(void)
968{
969 /* read_lock() synchronizes us to netlink_table_grab */
970
971 read_lock(&nl_table_lock);
972 atomic_inc(&nl_table_users);
973 read_unlock(&nl_table_lock);
974}
975
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800976static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977netlink_unlock_table(void)
978{
979 if (atomic_dec_and_test(&nl_table_users))
980 wake_up(&nl_table_wait);
981}
982
Thomas Grafe3416942014-08-02 11:47:45 +0200983struct netlink_compare_arg
Gao fengda12c902013-06-06 14:49:11 +0800984{
Thomas Grafe3416942014-08-02 11:47:45 +0200985 struct net *net;
986 u32 portid;
987};
988
989static bool netlink_compare(void *ptr, void *arg)
990{
991 struct netlink_compare_arg *x = arg;
992 struct sock *sk = ptr;
993
994 return nlk_sk(sk)->portid == x->portid &&
995 net_eq(sock_net(sk), x->net);
996}
997
998static struct sock *__netlink_lookup(struct netlink_table *table, u32 portid,
999 struct net *net)
1000{
1001 struct netlink_compare_arg arg = {
1002 .net = net,
1003 .portid = portid,
1004 };
1005 u32 hash;
1006
1007 hash = rhashtable_hashfn(&table->hash, &portid, sizeof(portid));
1008
1009 return rhashtable_lookup_compare(&table->hash, hash,
1010 &netlink_compare, &arg);
Gao fengda12c902013-06-06 14:49:11 +08001011}
1012
Eric W. Biederman15e47302012-09-07 20:12:54 +00001013static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Gao fengda12c902013-06-06 14:49:11 +08001015 struct netlink_table *table = &nl_table[protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Thomas Graf78fd1d02014-10-21 22:05:38 +02001018 read_lock(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +02001019 rcu_read_lock();
1020 sk = __netlink_lookup(table, portid, net);
1021 if (sk)
1022 sock_hold(sk);
1023 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001024 read_unlock(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +02001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return sk;
1027}
1028
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001029static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Patrick McHardy4277a082006-03-20 18:52:01 -08001031static void
1032netlink_update_listeners(struct sock *sk)
1033{
1034 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -08001035 unsigned long mask;
1036 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001037 struct listeners *listeners;
1038
1039 listeners = nl_deref_protected(tbl->listeners);
1040 if (!listeners)
1041 return;
Patrick McHardy4277a082006-03-20 18:52:01 -08001042
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001043 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001044 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001045 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001046 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
1047 mask |= nlk_sk(sk)->groups[i];
1048 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001049 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -08001050 }
1051 /* this function is only called with the netlink table "grabbed", which
1052 * makes sure updates are visible before bind or setsockopt return. */
1053}
1054
Eric W. Biederman15e47302012-09-07 20:12:54 +00001055static int netlink_insert(struct sock *sk, struct net *net, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Gao fengda12c902013-06-06 14:49:11 +08001057 struct netlink_table *table = &nl_table[sk->sk_protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 int err = -EADDRINUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Thomas Grafe3416942014-08-02 11:47:45 +02001060 mutex_lock(&nl_sk_hash_lock);
1061 if (__netlink_lookup(table, portid, net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 goto err;
1063
1064 err = -EBUSY;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001065 if (nlk_sk(sk)->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 goto err;
1067
1068 err = -ENOMEM;
Thomas Grafe3416942014-08-02 11:47:45 +02001069 if (BITS_PER_LONG > 32 && unlikely(table->hash.nelems >= UINT_MAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 goto err;
1071
Eric W. Biederman15e47302012-09-07 20:12:54 +00001072 nlk_sk(sk)->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +02001073 sock_hold(sk);
Thomas Graf6eba8222014-11-13 13:45:46 +01001074 rhashtable_insert(&table->hash, &nlk_sk(sk)->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076err:
Thomas Grafe3416942014-08-02 11:47:45 +02001077 mutex_unlock(&nl_sk_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return err;
1079}
1080
1081static void netlink_remove(struct sock *sk)
1082{
Thomas Grafe3416942014-08-02 11:47:45 +02001083 struct netlink_table *table;
1084
1085 mutex_lock(&nl_sk_hash_lock);
1086 table = &nl_table[sk->sk_protocol];
Thomas Graf6eba8222014-11-13 13:45:46 +01001087 if (rhashtable_remove(&table->hash, &nlk_sk(sk)->node)) {
Thomas Grafe3416942014-08-02 11:47:45 +02001088 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
1089 __sock_put(sk);
1090 }
1091 mutex_unlock(&nl_sk_hash_lock);
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 netlink_table_grab();
Johannes Bergb10dcb32014-12-22 18:56:37 +01001094 if (nlk_sk(sk)->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 __sk_del_bind_node(sk);
Johannes Bergb10dcb32014-12-22 18:56:37 +01001096 netlink_update_listeners(sk);
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 netlink_table_ungrab();
1099}
1100
1101static struct proto netlink_proto = {
1102 .name = "NETLINK",
1103 .owner = THIS_MODULE,
1104 .obj_size = sizeof(struct netlink_sock),
1105};
1106
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001107static int __netlink_create(struct net *net, struct socket *sock,
1108 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct sock *sk;
1111 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001112
1113 sock->ops = &netlink_ops;
1114
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001115 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -07001116 if (!sk)
1117 return -ENOMEM;
1118
1119 sock_init_data(sock, sk);
1120
1121 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001122 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001123 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001124 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001125 nlk->cb_mutex = &nlk->cb_def_mutex;
1126 mutex_init(nlk->cb_mutex);
1127 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001128 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001129#ifdef CONFIG_NETLINK_MMAP
1130 mutex_init(&nlk->pg_vec_lock);
1131#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001132
1133 sk->sk_destruct = netlink_sock_destruct;
1134 sk->sk_protocol = protocol;
1135 return 0;
1136}
1137
Eric Paris3f378b62009-11-05 22:18:14 -08001138static int netlink_create(struct net *net, struct socket *sock, int protocol,
1139 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001140{
1141 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001142 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001143 struct netlink_sock *nlk;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001144 int (*bind)(int group);
1145 void (*unbind)(int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001146 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 sock->state = SS_UNCONNECTED;
1149
1150 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1151 return -ESOCKTNOSUPPORT;
1152
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001153 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return -EPROTONOSUPPORT;
1155
Patrick McHardy77247bb2005-08-14 19:27:13 -07001156 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001157#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001158 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001159 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001160 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001161 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001162 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001163#endif
1164 if (nl_table[protocol].registered &&
1165 try_module_get(nl_table[protocol].module))
1166 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001167 else
1168 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001169 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001170 bind = nl_table[protocol].bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001171 unbind = nl_table[protocol].unbind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001172 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001173
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001174 if (err < 0)
1175 goto out;
1176
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001177 err = __netlink_create(net, sock, cb_mutex, protocol);
1178 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001179 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
David S. Miller6f756a82008-11-23 17:34:03 -08001181 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001182 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001183 local_bh_enable();
1184
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001185 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001186 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001187 nlk->netlink_bind = bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001188 nlk->netlink_unbind = unbind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001189out:
1190 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Patrick McHardyab33a172005-08-14 19:31:36 -07001192out_module:
1193 module_put(module);
1194 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197static int netlink_release(struct socket *sock)
1198{
1199 struct sock *sk = sock->sk;
1200 struct netlink_sock *nlk;
1201
1202 if (!sk)
1203 return 0;
1204
1205 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001206 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 nlk = nlk_sk(sk);
1208
Herbert Xu3f660d62007-05-03 03:17:14 -07001209 /*
1210 * OK. Socket is unlinked, any packets that arrive now
1211 * will be purged.
1212 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 sock->sk = NULL;
1215 wake_up_interruptible_all(&nlk->wait);
1216
1217 skb_queue_purge(&sk->sk_write_queue);
1218
Eric W. Biederman15e47302012-09-07 20:12:54 +00001219 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001221 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001223 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 };
Alan Sterne041c682006-03-27 01:16:30 -08001225 atomic_notifier_call_chain(&netlink_chain,
1226 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001227 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001228
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001229 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001230
Denis V. Lunevaed81562007-10-10 21:14:32 -07001231 if (netlink_is_kernel(sk)) {
Johannes Bergb10dcb32014-12-22 18:56:37 +01001232 netlink_table_grab();
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001233 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1234 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001235 struct listeners *old;
1236
1237 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1238 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1239 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001240 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001241 nl_table[sk->sk_protocol].bind = NULL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001242 nl_table[sk->sk_protocol].unbind = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001243 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001244 nl_table[sk->sk_protocol].registered = 0;
1245 }
Johannes Bergb10dcb32014-12-22 18:56:37 +01001246 netlink_table_ungrab();
Eric Dumazet658cb352012-04-22 21:30:21 +00001247 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001248
Johannes Berg7d685362014-12-22 18:56:38 +01001249 if (nlk->netlink_unbind) {
1250 int i;
1251
1252 for (i = 0; i < nlk->ngroups; i++)
1253 if (test_bit(i, nlk->groups))
1254 nlk->netlink_unbind(i + 1);
1255 }
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001256 kfree(nlk->groups);
1257 nlk->groups = NULL;
1258
Eric Dumazet37558102008-11-24 14:05:22 -08001259 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001260 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001261 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 sock_put(sk);
1263 return 0;
1264}
1265
1266static int netlink_autobind(struct socket *sock)
1267{
1268 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001269 struct net *net = sock_net(sk);
Gao fengda12c902013-06-06 14:49:11 +08001270 struct netlink_table *table = &nl_table[sk->sk_protocol];
Eric W. Biederman15e47302012-09-07 20:12:54 +00001271 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 int err;
1273 static s32 rover = -4097;
1274
1275retry:
1276 cond_resched();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001277 netlink_table_grab();
Thomas Grafe3416942014-08-02 11:47:45 +02001278 rcu_read_lock();
1279 if (__netlink_lookup(table, portid, net)) {
1280 /* Bind collision, search negative portid values. */
1281 portid = rover--;
1282 if (rover > -4097)
1283 rover = -4097;
1284 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001285 netlink_table_ungrab();
Thomas Grafe3416942014-08-02 11:47:45 +02001286 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
Thomas Grafe3416942014-08-02 11:47:45 +02001288 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02001289 netlink_table_ungrab();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Eric W. Biederman15e47302012-09-07 20:12:54 +00001291 err = netlink_insert(sk, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (err == -EADDRINUSE)
1293 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -07001294
1295 /* If 2 threads race to autobind, that is fine. */
1296 if (err == -EBUSY)
1297 err = 0;
1298
1299 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -07001302/**
1303 * __netlink_ns_capable - General netlink message capability test
1304 * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace.
1305 * @user_ns: The user namespace of the capability to use
1306 * @cap: The capability to use
1307 *
1308 * Test to see if the opener of the socket we received the message
1309 * from had when the netlink socket was created and the sender of the
1310 * message has has the capability @cap in the user namespace @user_ns.
1311 */
1312bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
1313 struct user_namespace *user_ns, int cap)
1314{
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07001315 return ((nsp->flags & NETLINK_SKB_DST) ||
1316 file_ns_capable(nsp->sk->sk_socket->file, user_ns, cap)) &&
1317 ns_capable(user_ns, cap);
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -07001318}
1319EXPORT_SYMBOL(__netlink_ns_capable);
1320
1321/**
1322 * netlink_ns_capable - General netlink message capability test
1323 * @skb: socket buffer holding a netlink command from userspace
1324 * @user_ns: The user namespace of the capability to use
1325 * @cap: The capability to use
1326 *
1327 * Test to see if the opener of the socket we received the message
1328 * from had when the netlink socket was created and the sender of the
1329 * message has has the capability @cap in the user namespace @user_ns.
1330 */
1331bool netlink_ns_capable(const struct sk_buff *skb,
1332 struct user_namespace *user_ns, int cap)
1333{
1334 return __netlink_ns_capable(&NETLINK_CB(skb), user_ns, cap);
1335}
1336EXPORT_SYMBOL(netlink_ns_capable);
1337
1338/**
1339 * netlink_capable - Netlink global message capability test
1340 * @skb: socket buffer holding a netlink command from userspace
1341 * @cap: The capability to use
1342 *
1343 * Test to see if the opener of the socket we received the message
1344 * from had when the netlink socket was created and the sender of the
1345 * message has has the capability @cap in all user namespaces.
1346 */
1347bool netlink_capable(const struct sk_buff *skb, int cap)
1348{
1349 return netlink_ns_capable(skb, &init_user_ns, cap);
1350}
1351EXPORT_SYMBOL(netlink_capable);
1352
1353/**
1354 * netlink_net_capable - Netlink network namespace message capability test
1355 * @skb: socket buffer holding a netlink command from userspace
1356 * @cap: The capability to use
1357 *
1358 * Test to see if the opener of the socket we received the message
1359 * from had when the netlink socket was created and the sender of the
1360 * message has has the capability @cap over the network namespace of
1361 * the socket we received the message from.
1362 */
1363bool netlink_net_capable(const struct sk_buff *skb, int cap)
1364{
1365 return netlink_ns_capable(skb, sock_net(skb->sk)->user_ns, cap);
1366}
1367EXPORT_SYMBOL(netlink_net_capable);
1368
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001369static inline int netlink_allowed(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001370{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001371 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +00001372 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001373}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001375static void
1376netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1377{
1378 struct netlink_sock *nlk = nlk_sk(sk);
1379
1380 if (nlk->subscriptions && !subscriptions)
1381 __sk_del_bind_node(sk);
1382 else if (!nlk->subscriptions && subscriptions)
1383 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1384 nlk->subscriptions = subscriptions;
1385}
1386
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001387static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -07001388{
1389 struct netlink_sock *nlk = nlk_sk(sk);
1390 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001391 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001392 int err = 0;
1393
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001394 netlink_table_grab();
1395
Patrick McHardy513c2502005-09-06 15:43:59 -07001396 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001397 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -07001398 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001399 goto out_unlock;
1400 }
Patrick McHardy513c2502005-09-06 15:43:59 -07001401
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001402 if (nlk->ngroups >= groups)
1403 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -07001404
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001405 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1406 if (new_groups == NULL) {
1407 err = -ENOMEM;
1408 goto out_unlock;
1409 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001410 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001411 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1412
1413 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001414 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001415 out_unlock:
1416 netlink_table_ungrab();
1417 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001418}
1419
Johannes Berg02c81ab2014-12-22 18:56:35 +01001420static void netlink_undo_bind(int group, long unsigned int groups,
1421 struct netlink_sock *nlk)
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001422{
1423 int undo;
1424
1425 if (!nlk->netlink_unbind)
1426 return;
1427
1428 for (undo = 0; undo < group; undo++)
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09001429 if (test_bit(undo, &groups))
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001430 nlk->netlink_unbind(undo);
1431}
1432
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001433static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1434 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001437 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 struct netlink_sock *nlk = nlk_sk(sk);
1439 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1440 int err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001441 long unsigned int groups = nladdr->nl_groups;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001442
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001443 if (addr_len < sizeof(struct sockaddr_nl))
1444 return -EINVAL;
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (nladdr->nl_family != AF_NETLINK)
1447 return -EINVAL;
1448
1449 /* Only superuser is allowed to listen multicasts */
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001450 if (groups) {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001451 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001452 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001453 err = netlink_realloc_groups(sk);
1454 if (err)
1455 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001458 if (nlk->portid)
Eric W. Biederman15e47302012-09-07 20:12:54 +00001459 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return -EINVAL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001461
1462 if (nlk->netlink_bind && groups) {
1463 int group;
1464
1465 for (group = 0; group < nlk->ngroups; group++) {
1466 if (!test_bit(group, &groups))
1467 continue;
1468 err = nlk->netlink_bind(group);
1469 if (!err)
1470 continue;
Johannes Berg02c81ab2014-12-22 18:56:35 +01001471 netlink_undo_bind(group, groups, nlk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001472 return err;
1473 }
1474 }
1475
1476 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001478 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 netlink_autobind(sock);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001480 if (err) {
Johannes Berg02c81ab2014-12-22 18:56:35 +01001481 netlink_undo_bind(nlk->ngroups, groups, nlk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001486 if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return 0;
1488
1489 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001490 netlink_update_subscriptions(sk, nlk->subscriptions +
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001491 hweight32(groups) -
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001492 hweight32(nlk->groups[0]));
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001493 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001494 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 netlink_table_ungrab();
1496
1497 return 0;
1498}
1499
1500static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1501 int alen, int flags)
1502{
1503 int err = 0;
1504 struct sock *sk = sock->sk;
1505 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001506 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Changli Gao6503d962010-03-31 22:58:26 +00001508 if (alen < sizeof(addr->sa_family))
1509 return -EINVAL;
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (addr->sa_family == AF_UNSPEC) {
1512 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001513 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001514 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return 0;
1516 }
1517 if (addr->sa_family != AF_NETLINK)
1518 return -EINVAL;
1519
Mike Pecovnik46833a82014-02-24 21:11:16 +01001520 if ((nladdr->nl_groups || nladdr->nl_pid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001521 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return -EPERM;
1523
Eric W. Biederman15e47302012-09-07 20:12:54 +00001524 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 err = netlink_autobind(sock);
1526
1527 if (err == 0) {
1528 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001529 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001530 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532
1533 return err;
1534}
1535
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001536static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1537 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct sock *sk = sock->sk;
1540 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001541 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 nladdr->nl_family = AF_NETLINK;
1544 nladdr->nl_pad = 0;
1545 *addr_len = sizeof(*nladdr);
1546
1547 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001548 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001549 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001551 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001552 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554 return 0;
1555}
1556
Eric W. Biederman15e47302012-09-07 20:12:54 +00001557static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 struct sock *sock;
1560 struct netlink_sock *nlk;
1561
Eric W. Biederman15e47302012-09-07 20:12:54 +00001562 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (!sock)
1564 return ERR_PTR(-ECONNREFUSED);
1565
1566 /* Don't bother queuing skb if kernel socket has no input function */
1567 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001568 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001569 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 sock_put(sock);
1571 return ERR_PTR(-ECONNREFUSED);
1572 }
1573 return sock;
1574}
1575
1576struct sock *netlink_getsockbyfilp(struct file *filp)
1577{
Al Viro496ad9a2013-01-23 17:07:38 -05001578 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 struct sock *sock;
1580
1581 if (!S_ISSOCK(inode->i_mode))
1582 return ERR_PTR(-ENOTSOCK);
1583
1584 sock = SOCKET_I(inode)->sk;
1585 if (sock->sk_family != AF_NETLINK)
1586 return ERR_PTR(-EINVAL);
1587
1588 sock_hold(sock);
1589 return sock;
1590}
1591
Pablo Neira3a365152013-06-28 03:04:23 +02001592static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1593 int broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001594{
1595 struct sk_buff *skb;
1596 void *data;
1597
Pablo Neira3a365152013-06-28 03:04:23 +02001598 if (size <= NLMSG_GOODSIZE || broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001599 return alloc_skb(size, GFP_KERNEL);
1600
Pablo Neira3a365152013-06-28 03:04:23 +02001601 size = SKB_DATA_ALIGN(size) +
1602 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001603
1604 data = vmalloc(size);
1605 if (data == NULL)
Pablo Neira3a365152013-06-28 03:04:23 +02001606 return NULL;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001607
Pablo Neira3a365152013-06-28 03:04:23 +02001608 skb = build_skb(data, size);
1609 if (skb == NULL)
1610 vfree(data);
1611 else {
1612 skb->head_frag = 0;
1613 skb->destructor = netlink_skb_destructor;
1614 }
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001615
1616 return skb;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001617}
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619/*
1620 * Attach a skb to a netlink socket.
1621 * The caller must hold a reference to the destination socket. On error, the
1622 * reference is dropped. The skb is not send to the destination, just all
1623 * all error checks are performed and memory in the queue is reserved.
1624 * Return values:
1625 * < 0: error. skb freed, reference to sock dropped.
1626 * 0: continue
1627 * 1: repeat lookup - reference dropped while waiting for socket memory.
1628 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001629int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001630 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 struct netlink_sock *nlk;
1633
1634 nlk = nlk_sk(sk);
1635
Patrick McHardy5fd96122013-04-17 06:47:03 +00001636 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1637 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
1638 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001640 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001641 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 netlink_overrun(sk);
1643 sock_put(sk);
1644 kfree_skb(skb);
1645 return -EAGAIN;
1646 }
1647
1648 __set_current_state(TASK_INTERRUPTIBLE);
1649 add_wait_queue(&nlk->wait, &wait);
1650
1651 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Patrick McHardycd967e02013-04-17 06:46:56 +00001652 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001654 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 __set_current_state(TASK_RUNNING);
1657 remove_wait_queue(&nlk->wait, &wait);
1658 sock_put(sk);
1659
1660 if (signal_pending(current)) {
1661 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001662 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664 return 1;
1665 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001666 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return 0;
1668}
1669
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001670static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 int len = skb->len;
1673
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001674 netlink_deliver_tap(skb);
1675
Patrick McHardyf9c22882013-04-17 06:47:04 +00001676#ifdef CONFIG_NETLINK_MMAP
1677 if (netlink_skb_is_mmaped(skb))
1678 netlink_queue_mmaped_skb(sk, skb);
1679 else if (netlink_rx_is_mmaped(sk))
1680 netlink_ring_set_copied(sk, skb);
1681 else
1682#endif /* CONFIG_NETLINK_MMAP */
1683 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -04001684 sk->sk_data_ready(sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001685 return len;
1686}
1687
1688int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1689{
1690 int len = __netlink_sendskb(sk, skb);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 sock_put(sk);
1693 return len;
1694}
1695
1696void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1697{
1698 kfree_skb(skb);
1699 sock_put(sk);
1700}
1701
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001702static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 int delta;
1705
Patrick McHardy1298ca42013-04-17 06:46:59 +00001706 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001707 if (netlink_skb_is_mmaped(skb))
1708 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001710 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001711 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 return skb;
1713
1714 if (skb_shared(skb)) {
1715 struct sk_buff *nskb = skb_clone(skb, allocation);
1716 if (!nskb)
1717 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001718 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 skb = nskb;
1720 }
1721
1722 if (!pskb_expand_head(skb, 0, -delta, allocation))
1723 skb->truesize -= delta;
1724
1725 return skb;
1726}
1727
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001728static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1729 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001730{
1731 int ret;
1732 struct netlink_sock *nlk = nlk_sk(sk);
1733
1734 ret = -ECONNREFUSED;
1735 if (nlk->netlink_rcv != NULL) {
1736 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001737 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001738 NETLINK_CB(skb).sk = ssk;
Daniel Borkmann73bfd372013-12-23 14:35:55 +01001739 netlink_deliver_tap_kernel(sk, ssk, skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001740 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001741 consume_skb(skb);
1742 } else {
1743 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001744 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001745 sock_put(sk);
1746 return ret;
1747}
1748
1749int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001750 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
1752 struct sock *sk;
1753 int err;
1754 long timeo;
1755
1756 skb = netlink_trim(skb, gfp_any());
1757
1758 timeo = sock_sndtimeo(ssk, nonblock);
1759retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001760 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (IS_ERR(sk)) {
1762 kfree_skb(skb);
1763 return PTR_ERR(sk);
1764 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001765 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001766 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001767
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001768 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001769 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001770 kfree_skb(skb);
1771 sock_put(sk);
1772 return err;
1773 }
1774
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001775 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (err == 1)
1777 goto retry;
1778 if (err)
1779 return err;
1780
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001781 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001783EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Patrick McHardyf9c22882013-04-17 06:47:04 +00001785struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1786 u32 dst_portid, gfp_t gfp_mask)
1787{
1788#ifdef CONFIG_NETLINK_MMAP
1789 struct sock *sk = NULL;
1790 struct sk_buff *skb;
1791 struct netlink_ring *ring;
1792 struct nl_mmap_hdr *hdr;
1793 unsigned int maxlen;
1794
1795 sk = netlink_getsockbyportid(ssk, dst_portid);
1796 if (IS_ERR(sk))
1797 goto out;
1798
1799 ring = &nlk_sk(sk)->rx_ring;
1800 /* fast-path without atomic ops for common case: non-mmaped receiver */
1801 if (ring->pg_vec == NULL)
1802 goto out_put;
1803
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001804 if (ring->frame_size - NL_MMAP_HDRLEN < size)
1805 goto out_put;
1806
Patrick McHardyf9c22882013-04-17 06:47:04 +00001807 skb = alloc_skb_head(gfp_mask);
1808 if (skb == NULL)
1809 goto err1;
1810
1811 spin_lock_bh(&sk->sk_receive_queue.lock);
1812 /* check again under lock */
1813 if (ring->pg_vec == NULL)
1814 goto out_free;
1815
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001816 /* check again under lock */
Patrick McHardyf9c22882013-04-17 06:47:04 +00001817 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1818 if (maxlen < size)
1819 goto out_free;
1820
1821 netlink_forward_ring(ring);
1822 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1823 if (hdr == NULL)
1824 goto err2;
1825 netlink_ring_setup_skb(skb, sk, ring, hdr);
1826 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1827 atomic_inc(&ring->pending);
1828 netlink_increment_head(ring);
1829
1830 spin_unlock_bh(&sk->sk_receive_queue.lock);
1831 return skb;
1832
1833err2:
1834 kfree_skb(skb);
1835 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001836 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001837err1:
1838 sock_put(sk);
1839 return NULL;
1840
1841out_free:
1842 kfree_skb(skb);
1843 spin_unlock_bh(&sk->sk_receive_queue.lock);
1844out_put:
1845 sock_put(sk);
1846out:
1847#endif
1848 return alloc_skb(size, gfp_mask);
1849}
1850EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1851
Patrick McHardy4277a082006-03-20 18:52:01 -08001852int netlink_has_listeners(struct sock *sk, unsigned int group)
1853{
1854 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001855 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001856
Denis V. Lunevaed81562007-10-10 21:14:32 -07001857 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001858
1859 rcu_read_lock();
1860 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1861
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001862 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001863 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001864
1865 rcu_read_unlock();
1866
Patrick McHardy4277a082006-03-20 18:52:01 -08001867 return res;
1868}
1869EXPORT_SYMBOL_GPL(netlink_has_listeners);
1870
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001871static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873 struct netlink_sock *nlk = nlk_sk(sk);
1874
1875 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Patrick McHardycd967e02013-04-17 06:46:56 +00001876 !test_bit(NETLINK_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001877 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001878 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001879 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
1881 return -1;
1882}
1883
1884struct netlink_broadcast_data {
1885 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001886 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001887 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 u32 group;
1889 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001890 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 int congested;
1892 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001893 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001895 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1896 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897};
1898
Rami Rosen46c95212014-07-01 21:17:35 +03001899static void do_one_broadcast(struct sock *sk,
1900 struct netlink_broadcast_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
1902 struct netlink_sock *nlk = nlk_sk(sk);
1903 int val;
1904
1905 if (p->exclude_sk == sk)
Rami Rosen46c95212014-07-01 21:17:35 +03001906 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Eric W. Biederman15e47302012-09-07 20:12:54 +00001908 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001909 !test_bit(p->group - 1, nlk->groups))
Rami Rosen46c95212014-07-01 21:17:35 +03001910 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001912 if (!net_eq(sock_net(sk), p->net))
Rami Rosen46c95212014-07-01 21:17:35 +03001913 return;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (p->failure) {
1916 netlink_overrun(sk);
Rami Rosen46c95212014-07-01 21:17:35 +03001917 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919
1920 sock_hold(sk);
1921 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001922 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 p->skb2 = skb_clone(p->skb, p->allocation);
1924 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001925 p->skb2 = skb_get(p->skb);
1926 /*
1927 * skb ownership may have been set when
1928 * delivered to a previous socket.
1929 */
1930 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932 }
1933 if (p->skb2 == NULL) {
1934 netlink_overrun(sk);
1935 /* Clone failed. Notify ALL listeners. */
1936 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001937 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1938 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001939 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1940 kfree_skb(p->skb2);
1941 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001942 } else if (sk_filter(sk, p->skb2)) {
1943 kfree_skb(p->skb2);
1944 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1946 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001947 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1948 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 } else {
1950 p->congested |= val;
1951 p->delivered = 1;
1952 p->skb2 = NULL;
1953 }
1954 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Eric W. Biederman15e47302012-09-07 20:12:54 +00001957int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001958 u32 group, gfp_t allocation,
1959 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1960 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001962 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 struct sock *sk;
1965
1966 skb = netlink_trim(skb, allocation);
1967
1968 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001969 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001970 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 info.group = group;
1972 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001973 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 info.congested = 0;
1975 info.delivered = 0;
1976 info.allocation = allocation;
1977 info.skb = skb;
1978 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001979 info.tx_filter = filter;
1980 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 /* While we sleep in clone, do not allow to change socket list */
1983
1984 netlink_lock_table();
1985
Sasha Levinb67bfe02013-02-27 17:06:00 -08001986 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 do_one_broadcast(sk, &info);
1988
Neil Horman70d4bf62010-07-20 06:45:56 +00001989 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 netlink_unlock_table();
1992
Neil Horman70d4bf62010-07-20 06:45:56 +00001993 if (info.delivery_failure) {
1994 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001995 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001996 }
1997 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 if (info.delivered) {
2000 if (info.congested && (allocation & __GFP_WAIT))
2001 yield();
2002 return 0;
2003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return -ESRCH;
2005}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002006EXPORT_SYMBOL(netlink_broadcast_filtered);
2007
Eric W. Biederman15e47302012-09-07 20:12:54 +00002008int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002009 u32 group, gfp_t allocation)
2010{
Eric W. Biederman15e47302012-09-07 20:12:54 +00002011 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002012 NULL, NULL);
2013}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002014EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016struct netlink_set_err_data {
2017 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002018 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 u32 group;
2020 int code;
2021};
2022
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00002023static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
2025 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002026 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 if (sk == p->exclude_sk)
2029 goto out;
2030
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08002031 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002032 goto out;
2033
Eric W. Biederman15e47302012-09-07 20:12:54 +00002034 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07002035 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 goto out;
2037
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002038 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
2039 ret = 1;
2040 goto out;
2041 }
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 sk->sk_err = p->code;
2044 sk->sk_error_report(sk);
2045out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002046 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
2048
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002049/**
2050 * netlink_set_err - report error to broadcast listeners
2051 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00002052 * @portid: the PORTID of a process that we want to skip (if any)
Johannes Berg840e93f22013-11-19 10:35:40 +01002053 * @group: the broadcast group that will notice the error
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002054 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002055 *
2056 * This function returns the number of broadcast listeners that have set the
2057 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002058 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002059int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
2061 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002063 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002066 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002068 /* sk->sk_err wants a positive error value */
2069 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 read_lock(&nl_table_lock);
2072
Sasha Levinb67bfe02013-02-27 17:06:00 -08002073 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002074 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002077 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01002079EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Johannes Berg84659eb2007-07-18 15:47:05 -07002081/* must be called with netlink table grabbed */
2082static void netlink_update_socket_mc(struct netlink_sock *nlk,
2083 unsigned int group,
2084 int is_new)
2085{
2086 int old, new = !!is_new, subscriptions;
2087
2088 old = test_bit(group - 1, nlk->groups);
2089 subscriptions = nlk->subscriptions - old + new;
2090 if (new)
2091 __set_bit(group - 1, nlk->groups);
2092 else
2093 __clear_bit(group - 1, nlk->groups);
2094 netlink_update_subscriptions(&nlk->sk, subscriptions);
2095 netlink_update_listeners(&nlk->sk);
2096}
2097
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002098static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002099 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002100{
2101 struct sock *sk = sock->sk;
2102 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07002103 unsigned int val = 0;
2104 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002105
2106 if (level != SOL_NETLINK)
2107 return -ENOPROTOOPT;
2108
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002109 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
2110 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07002111 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002112 return -EFAULT;
2113
2114 switch (optname) {
2115 case NETLINK_PKTINFO:
2116 if (val)
2117 nlk->flags |= NETLINK_RECV_PKTINFO;
2118 else
2119 nlk->flags &= ~NETLINK_RECV_PKTINFO;
2120 err = 0;
2121 break;
2122 case NETLINK_ADD_MEMBERSHIP:
2123 case NETLINK_DROP_MEMBERSHIP: {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002124 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002125 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002126 err = netlink_realloc_groups(sk);
2127 if (err)
2128 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002129 if (!val || val - 1 >= nlk->ngroups)
2130 return -EINVAL;
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002131 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
Richard Guy Briggs4f520902014-04-22 21:31:54 -04002132 err = nlk->netlink_bind(val);
2133 if (err)
2134 return err;
2135 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002136 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07002137 netlink_update_socket_mc(nlk, val,
2138 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002139 netlink_table_ungrab();
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002140 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
2141 nlk->netlink_unbind(val);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00002142
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002143 err = 0;
2144 break;
2145 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002146 case NETLINK_BROADCAST_ERROR:
2147 if (val)
2148 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
2149 else
2150 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
2151 err = 0;
2152 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002153 case NETLINK_NO_ENOBUFS:
2154 if (val) {
2155 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
Patrick McHardycd967e02013-04-17 06:46:56 +00002156 clear_bit(NETLINK_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002157 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00002158 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002159 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002160 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002161 err = 0;
2162 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002163#ifdef CONFIG_NETLINK_MMAP
2164 case NETLINK_RX_RING:
2165 case NETLINK_TX_RING: {
2166 struct nl_mmap_req req;
2167
2168 /* Rings might consume more memory than queue limits, require
2169 * CAP_NET_ADMIN.
2170 */
2171 if (!capable(CAP_NET_ADMIN))
2172 return -EPERM;
2173 if (optlen < sizeof(req))
2174 return -EINVAL;
2175 if (copy_from_user(&req, optval, sizeof(req)))
2176 return -EFAULT;
2177 err = netlink_set_ring(sk, &req, false,
2178 optname == NETLINK_TX_RING);
2179 break;
2180 }
2181#endif /* CONFIG_NETLINK_MMAP */
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002182 default:
2183 err = -ENOPROTOOPT;
2184 }
2185 return err;
2186}
2187
2188static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002189 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002190{
2191 struct sock *sk = sock->sk;
2192 struct netlink_sock *nlk = nlk_sk(sk);
2193 int len, val, err;
2194
2195 if (level != SOL_NETLINK)
2196 return -ENOPROTOOPT;
2197
2198 if (get_user(len, optlen))
2199 return -EFAULT;
2200 if (len < 0)
2201 return -EINVAL;
2202
2203 switch (optname) {
2204 case NETLINK_PKTINFO:
2205 if (len < sizeof(int))
2206 return -EINVAL;
2207 len = sizeof(int);
2208 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002209 if (put_user(len, optlen) ||
2210 put_user(val, optval))
2211 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002212 err = 0;
2213 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002214 case NETLINK_BROADCAST_ERROR:
2215 if (len < sizeof(int))
2216 return -EINVAL;
2217 len = sizeof(int);
2218 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
2219 if (put_user(len, optlen) ||
2220 put_user(val, optval))
2221 return -EFAULT;
2222 err = 0;
2223 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002224 case NETLINK_NO_ENOBUFS:
2225 if (len < sizeof(int))
2226 return -EINVAL;
2227 len = sizeof(int);
2228 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
2229 if (put_user(len, optlen) ||
2230 put_user(val, optval))
2231 return -EFAULT;
2232 err = 0;
2233 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002234 default:
2235 err = -ENOPROTOOPT;
2236 }
2237 return err;
2238}
2239
2240static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2241{
2242 struct nl_pktinfo info;
2243
2244 info.group = NETLINK_CB(skb).dst_group;
2245 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2246}
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
2249 struct msghdr *msg, size_t len)
2250{
2251 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2252 struct sock *sk = sock->sk;
2253 struct netlink_sock *nlk = nlk_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002254 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002255 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002256 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 struct sk_buff *skb;
2258 int err;
2259 struct scm_cookie scm;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002260 u32 netlink_skb_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 if (msg->msg_flags&MSG_OOB)
2263 return -EOPNOTSUPP;
2264
Eric Dumazet16e57262011-09-19 05:52:27 +00002265 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00002267
Eric Dumazete0e3cea2012-08-21 06:21:17 +00002268 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (err < 0)
2270 return err;
2271
2272 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002273 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002275 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002276 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002277 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002278 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002279 if ((dst_group || dst_portid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002280 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002281 goto out;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002282 netlink_skb_flags |= NETLINK_SKB_DST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002284 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002285 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287
Eric W. Biederman15e47302012-09-07 20:12:54 +00002288 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 err = netlink_autobind(sock);
2290 if (err)
2291 goto out;
2292 }
2293
Patrick McHardy5fd96122013-04-17 06:47:03 +00002294 if (netlink_tx_is_mmaped(sk) &&
Al Viroc0371da2014-11-24 10:42:55 -05002295 msg->msg_iter.iov->iov_base == NULL) {
Patrick McHardy5fd96122013-04-17 06:47:03 +00002296 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2297 siocb);
2298 goto out;
2299 }
2300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 err = -EMSGSIZE;
2302 if (len > sk->sk_sndbuf - 32)
2303 goto out;
2304 err = -ENOBUFS;
Pablo Neira3a365152013-06-28 03:04:23 +02002305 skb = netlink_alloc_large_skb(len, dst_group);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002306 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 goto out;
2308
Eric W. Biederman15e47302012-09-07 20:12:54 +00002309 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002310 NETLINK_CB(skb).dst_group = dst_group;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00002311 NETLINK_CB(skb).creds = siocb->scm->creds;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002312 NETLINK_CB(skb).flags = netlink_skb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 err = -EFAULT;
Al Viro6ce8e9c2014-04-06 21:25:44 -04002315 if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 kfree_skb(skb);
2317 goto out;
2318 }
2319
2320 err = security_netlink_send(sk, skb);
2321 if (err) {
2322 kfree_skb(skb);
2323 goto out;
2324 }
2325
Patrick McHardyd629b832005-08-14 19:27:50 -07002326 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002328 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002330 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002333 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return err;
2335}
2336
2337static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
2338 struct msghdr *msg, size_t len,
2339 int flags)
2340{
2341 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2342 struct scm_cookie scm;
2343 struct sock *sk = sock->sk;
2344 struct netlink_sock *nlk = nlk_sk(sk);
2345 int noblock = flags&MSG_DONTWAIT;
2346 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002347 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002348 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 if (flags&MSG_OOB)
2351 return -EOPNOTSUPP;
2352
2353 copied = 0;
2354
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002355 skb = skb_recv_datagram(sk, flags, noblock, &err);
2356 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 goto out;
2358
Johannes Berg68d6ac62010-08-15 21:20:44 +00002359 data_skb = skb;
2360
Johannes Berg1dacc762009-07-01 11:26:02 +00002361#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2362 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002363 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002364 * If this skb has a frag_list, then here that means that we
2365 * will have to use the frag_list skb's data for compat tasks
2366 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002367 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002368 * If we need to send the compat skb, assign it to the
2369 * 'data_skb' variable so that it will be used below for data
2370 * copying. We keep 'skb' for everything else, including
2371 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002372 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002373 if (flags & MSG_CMSG_COMPAT)
2374 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002375 }
2376#endif
2377
Eric Dumazet9063e212014-03-07 12:02:33 -08002378 /* Record the max length of recvmsg() calls for future allocations */
2379 nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
2380 nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
2381 16384);
2382
Johannes Berg68d6ac62010-08-15 21:20:44 +00002383 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 if (len < copied) {
2385 msg->msg_flags |= MSG_TRUNC;
2386 copied = len;
2387 }
2388
Johannes Berg68d6ac62010-08-15 21:20:44 +00002389 skb_reset_transport_header(data_skb);
David S. Miller51f3d022014-11-05 16:46:40 -05002390 err = skb_copy_datagram_msg(data_skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002393 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 addr->nl_family = AF_NETLINK;
2395 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002396 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002397 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 msg->msg_namelen = sizeof(*addr);
2399 }
2400
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002401 if (nlk->flags & NETLINK_RECV_PKTINFO)
2402 netlink_cmsg_recv_pktinfo(msg, skb);
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (NULL == siocb->scm) {
2405 memset(&scm, 0, sizeof(scm));
2406 siocb->scm = &scm;
2407 }
2408 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002409 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002410 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 skb_free_datagram(sk, skb);
2413
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002414 if (nlk->cb_running &&
2415 atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
Andrey Vaginb44d2112011-02-21 02:40:47 +00002416 ret = netlink_dump(sk);
2417 if (ret) {
Ben Pfaffac30ef82014-07-09 10:31:22 -07002418 sk->sk_err = -ret;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002419 sk->sk_error_report(sk);
2420 }
2421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424out:
2425 netlink_rcv_wake(sk);
2426 return err ? : copied;
2427}
2428
David S. Miller676d2362014-04-11 16:15:36 -04002429static void netlink_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002431 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
2434/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002435 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 * complete set of kernel non-blocking support for message
2437 * queueing.
2438 */
2439
2440struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002441__netlink_kernel_create(struct net *net, int unit, struct module *module,
2442 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
2444 struct socket *sock;
2445 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002446 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002447 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002448 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2449 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002451 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002453 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return NULL;
2455
2456 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2457 return NULL;
2458
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002459 /*
2460 * We have to just have a reference on the net from sk, but don't
2461 * get_net it. Besides, we cannot get and then put the net here.
2462 * So we create one inside init_net and the move it to net.
2463 */
2464
2465 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
2466 goto out_sock_release_nosk;
2467
2468 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08002469 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002470
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002471 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002472 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002473 else
2474 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002475
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002476 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002477 if (!listeners)
2478 goto out_sock_release;
2479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002481 if (cfg && cfg->input)
2482 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002484 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002485 goto out_sock_release;
2486
2487 nlk = nlk_sk(sk);
2488 nlk->flags |= NETLINK_KERNEL_SOCKET;
2489
2490 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002491 if (!nl_table[unit].registered) {
2492 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002493 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002494 nl_table[unit].cb_mutex = cb_mutex;
2495 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002496 if (cfg) {
2497 nl_table[unit].bind = cfg->bind;
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09002498 nl_table[unit].unbind = cfg->unbind;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002499 nl_table[unit].flags = cfg->flags;
Gao fengda12c902013-06-06 14:49:11 +08002500 if (cfg->compare)
2501 nl_table[unit].compare = cfg->compare;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002502 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002503 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002504 } else {
2505 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002506 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002507 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002508 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002509 return sk;
2510
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002511out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002512 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002513 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002514 return NULL;
2515
2516out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002517 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002518 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002520EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002521
2522void
2523netlink_kernel_release(struct sock *sk)
2524{
Denis V. Lunevedf02082008-02-29 11:18:32 -08002525 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002526}
2527EXPORT_SYMBOL(netlink_kernel_release);
2528
Johannes Bergd136f1b2009-09-12 03:03:15 +00002529int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002530{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002531 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002532 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002533
2534 if (groups < 32)
2535 groups = 32;
2536
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002537 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002538 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2539 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002540 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002541 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002542 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2543 rcu_assign_pointer(tbl->listeners, new);
2544
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002545 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002546 }
2547 tbl->groups = groups;
2548
Johannes Bergd136f1b2009-09-12 03:03:15 +00002549 return 0;
2550}
2551
2552/**
2553 * netlink_change_ngroups - change number of multicast groups
2554 *
2555 * This changes the number of multicast groups that are available
2556 * on a certain netlink family. Note that it is not possible to
2557 * change the number of groups to below 32. Also note that it does
2558 * not implicitly call netlink_clear_multicast_users() when the
2559 * number of groups is reduced.
2560 *
2561 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2562 * @groups: The new number of groups.
2563 */
2564int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2565{
2566 int err;
2567
2568 netlink_table_grab();
2569 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002570 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002571
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002572 return err;
2573}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002574
Johannes Bergb8273572009-09-24 15:44:05 -07002575void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2576{
2577 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002578 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2579
Sasha Levinb67bfe02013-02-27 17:06:00 -08002580 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002581 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2582}
2583
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002584struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002585__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002586{
2587 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002588 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002589
Wang Yufen23b45672014-02-17 16:53:32 +08002590 nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size));
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002591 nlh->nlmsg_type = type;
2592 nlh->nlmsg_len = size;
2593 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002594 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002595 nlh->nlmsg_seq = seq;
2596 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002597 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002598 return nlh;
2599}
2600EXPORT_SYMBOL(__nlmsg_put);
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602/*
2603 * It looks a bit ugly.
2604 * It would be better to create kernel thread.
2605 */
2606
2607static int netlink_dump(struct sock *sk)
2608{
2609 struct netlink_sock *nlk = nlk_sk(sk);
2610 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002611 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002613 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002614 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002616 mutex_lock(nlk->cb_mutex);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002617 if (!nlk->cb_running) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002618 err = -EINVAL;
2619 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
2621
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002622 cb = &nlk->cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002623 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2624
Patrick McHardyf9c22882013-04-17 06:47:04 +00002625 if (!netlink_rx_is_mmaped(sk) &&
2626 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2627 goto errout_skb;
Eric Dumazet9063e212014-03-07 12:02:33 -08002628
2629 /* NLMSG_GOODSIZE is small to avoid high order allocations being
2630 * required, but it makes sense to _attempt_ a 16K bytes allocation
2631 * to reduce number of system calls on dump operations, if user
2632 * ever provided a big enough buffer.
2633 */
2634 if (alloc_size < nlk->max_recvmsg_len) {
2635 skb = netlink_alloc_skb(sk,
2636 nlk->max_recvmsg_len,
2637 nlk->portid,
2638 GFP_KERNEL |
2639 __GFP_NOWARN |
2640 __GFP_NORETRY);
2641 /* available room should be exact amount to avoid MSG_TRUNC */
2642 if (skb)
2643 skb_reserve(skb, skb_tailroom(skb) -
2644 nlk->max_recvmsg_len);
2645 }
2646 if (!skb)
2647 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid,
2648 GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002649 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002650 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002651 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 len = cb->dump(skb, cb);
2654
2655 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002656 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002657
2658 if (sk_filter(sk, skb))
2659 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002660 else
2661 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 return 0;
2663 }
2664
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002665 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2666 if (!nlh)
2667 goto errout_skb;
2668
Johannes Berg670dc282011-06-20 13:40:46 +02002669 nl_dump_check_consistent(cb, nlh);
2670
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002671 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2672
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002673 if (sk_filter(sk, skb))
2674 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002675 else
2676 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Thomas Grafa8f74b22005-11-10 02:25:52 +01002678 if (cb->done)
2679 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002681 nlk->cb_running = false;
2682 mutex_unlock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002683 module_put(cb->module);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002684 consume_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002686
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002687errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002688 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002689 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002690 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691}
2692
Gao feng6dc878a2012-10-04 20:15:48 +00002693int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2694 const struct nlmsghdr *nlh,
2695 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 struct netlink_callback *cb;
2698 struct sock *sk;
2699 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002700 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Patrick McHardyf9c22882013-04-17 06:47:04 +00002702 /* Memory mapped dump requests need to be copied to avoid looping
2703 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2704 * a reference to the skb.
2705 */
2706 if (netlink_skb_is_mmaped(skb)) {
2707 skb = skb_copy(skb, GFP_KERNEL);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002708 if (skb == NULL)
Patrick McHardyf9c22882013-04-17 06:47:04 +00002709 return -ENOBUFS;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002710 } else
2711 atomic_inc(&skb->users);
2712
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002713 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2714 if (sk == NULL) {
2715 ret = -ECONNREFUSED;
2716 goto error_free;
2717 }
2718
2719 nlk = nlk_sk(sk);
2720 mutex_lock(nlk->cb_mutex);
2721 /* A dump is in progress... */
2722 if (nlk->cb_running) {
2723 ret = -EBUSY;
2724 goto error_unlock;
2725 }
2726 /* add reference of module which cb->dump belongs to */
2727 if (!try_module_get(control->module)) {
2728 ret = -EPROTONOSUPPORT;
2729 goto error_unlock;
2730 }
2731
2732 cb = &nlk->cb;
2733 memset(cb, 0, sizeof(*cb));
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002734 cb->dump = control->dump;
2735 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002737 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002738 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002739 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 cb->skb = skb;
2741
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002742 nlk->cb_running = true;
Gao feng6dc878a2012-10-04 20:15:48 +00002743
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002744 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Andrey Vaginb44d2112011-02-21 02:40:47 +00002746 ret = netlink_dump(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002748
Andrey Vaginb44d2112011-02-21 02:40:47 +00002749 if (ret)
2750 return ret;
2751
Denis V. Lunev5c582982007-10-23 20:29:25 -07002752 /* We successfully started a dump, by returning -EINTR we
2753 * signal not to send ACK even if it was requested.
2754 */
2755 return -EINTR;
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002756
2757error_unlock:
2758 sock_put(sk);
2759 mutex_unlock(nlk->cb_mutex);
2760error_free:
2761 kfree_skb(skb);
2762 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763}
Gao feng6dc878a2012-10-04 20:15:48 +00002764EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2767{
2768 struct sk_buff *skb;
2769 struct nlmsghdr *rep;
2770 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002771 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Thomas Graf339bf982006-11-10 14:10:15 -08002773 /* error messages get the original request appened */
2774 if (err)
2775 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Patrick McHardyf9c22882013-04-17 06:47:04 +00002777 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2778 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (!skb) {
2780 struct sock *sk;
2781
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002782 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002783 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002784 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (sk) {
2786 sk->sk_err = ENOBUFS;
2787 sk->sk_error_report(sk);
2788 sock_put(sk);
2789 }
2790 return;
2791 }
2792
Eric W. Biederman15e47302012-09-07 20:12:54 +00002793 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002794 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002795 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002797 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002798 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002800EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002802int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002803 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002804{
Thomas Graf82ace472005-11-10 02:25:53 +01002805 struct nlmsghdr *nlh;
2806 int err;
2807
2808 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002809 int msglen;
2810
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002811 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002812 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002813
Martin Murrayad8e4b72006-01-10 13:02:29 -08002814 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002815 return 0;
2816
Thomas Grafd35b6852007-03-22 23:28:46 -07002817 /* Only requests are handled by the kernel */
2818 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002819 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002820
Thomas Graf45e7ae72007-03-22 23:29:10 -07002821 /* Skip control messages */
2822 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002823 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002824
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002825 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002826 if (err == -EINTR)
2827 goto skip;
2828
2829ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002830 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002831 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002832
Denis V. Lunev5c582982007-10-23 20:29:25 -07002833skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002834 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002835 if (msglen > skb->len)
2836 msglen = skb->len;
2837 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002838 }
2839
2840 return 0;
2841}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002842EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002843
2844/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002845 * nlmsg_notify - send a notification netlink message
2846 * @sk: netlink socket to use
2847 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002848 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002849 * @group: destination multicast group or 0
2850 * @report: 1 to report back, 0 to disable
2851 * @flags: allocation flags
2852 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002853int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002854 unsigned int group, int report, gfp_t flags)
2855{
2856 int err = 0;
2857
2858 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002859 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002860
2861 if (report) {
2862 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002863 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002864 }
2865
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002866 /* errors reported via destination sk->sk_err, but propagate
2867 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002868 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002869 }
2870
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002871 if (report) {
2872 int err2;
2873
Eric W. Biederman15e47302012-09-07 20:12:54 +00002874 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002875 if (!err || err == -ESRCH)
2876 err = err2;
2877 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002878
2879 return err;
2880}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002881EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883#ifdef CONFIG_PROC_FS
2884struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002885 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 int link;
2887 int hash_idx;
2888};
2889
2890static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
2891{
2892 struct nl_seq_iter *iter = seq->private;
2893 int i, j;
Thomas Grafe3416942014-08-02 11:47:45 +02002894 struct netlink_sock *nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 loff_t off = 0;
2897
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002898 for (i = 0; i < MAX_LINKS; i++) {
Thomas Grafe3416942014-08-02 11:47:45 +02002899 struct rhashtable *ht = &nl_table[i].hash;
Eric Dumazet67a24ac2014-08-05 07:50:07 +02002900 const struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Thomas Grafe3416942014-08-02 11:47:45 +02002902 for (j = 0; j < tbl->size; j++) {
2903 rht_for_each_entry_rcu(nlk, tbl->buckets[j], node) {
2904 s = (struct sock *)nlk;
2905
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002906 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002907 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (off == pos) {
2909 iter->link = i;
2910 iter->hash_idx = j;
2911 return s;
2912 }
2913 ++off;
2914 }
2915 }
2916 }
2917 return NULL;
2918}
2919
2920static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Thomas Graf78fd1d02014-10-21 22:05:38 +02002921 __acquires(nl_table_lock) __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
Thomas Graf78fd1d02014-10-21 22:05:38 +02002923 read_lock(&nl_table_lock);
Thomas Grafe3416942014-08-02 11:47:45 +02002924 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2926}
2927
2928static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2929{
Thomas Graf78fd1d02014-10-21 22:05:38 +02002930 struct rhashtable *ht;
Thomas Grafe3416942014-08-02 11:47:45 +02002931 struct netlink_sock *nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 struct nl_seq_iter *iter;
Gao fengda12c902013-06-06 14:49:11 +08002933 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 int i, j;
2935
2936 ++*pos;
2937
2938 if (v == SEQ_START_TOKEN)
2939 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002940
Gao fengda12c902013-06-06 14:49:11 +08002941 net = seq_file_net(seq);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002942 iter = seq->private;
Thomas Grafe3416942014-08-02 11:47:45 +02002943 nlk = v;
2944
Thomas Graf78fd1d02014-10-21 22:05:38 +02002945 i = iter->link;
2946 ht = &nl_table[i].hash;
2947 rht_for_each_entry(nlk, nlk->node.next, ht, node)
Thomas Grafe3416942014-08-02 11:47:45 +02002948 if (net_eq(sock_net((struct sock *)nlk), net))
2949 return nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 j = iter->hash_idx + 1;
2952
2953 do {
Eric Dumazet67a24ac2014-08-05 07:50:07 +02002954 const struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Thomas Grafe3416942014-08-02 11:47:45 +02002956 for (; j < tbl->size; j++) {
Thomas Graf78fd1d02014-10-21 22:05:38 +02002957 rht_for_each_entry(nlk, tbl->buckets[j], ht, node) {
Thomas Grafe3416942014-08-02 11:47:45 +02002958 if (net_eq(sock_net((struct sock *)nlk), net)) {
2959 iter->link = i;
2960 iter->hash_idx = j;
2961 return nlk;
2962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 }
2964 }
2965
2966 j = 0;
2967 } while (++i < MAX_LINKS);
2968
2969 return NULL;
2970}
2971
2972static void netlink_seq_stop(struct seq_file *seq, void *v)
Thomas Graf78fd1d02014-10-21 22:05:38 +02002973 __releases(RCU) __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Thomas Grafe3416942014-08-02 11:47:45 +02002975 rcu_read_unlock();
Thomas Graf78fd1d02014-10-21 22:05:38 +02002976 read_unlock(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977}
2978
2979
2980static int netlink_seq_show(struct seq_file *seq, void *v)
2981{
Eric Dumazet658cb352012-04-22 21:30:21 +00002982 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 seq_puts(seq,
2984 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002985 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002986 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 struct sock *s = v;
2988 struct netlink_sock *nlk = nlk_sk(s);
2989
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002990 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 s,
2992 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002993 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002994 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002995 sk_rmem_alloc_get(s),
2996 sk_wmem_alloc_get(s),
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002997 nlk->cb_running,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002998 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002999 atomic_read(&s->sk_drops),
3000 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 );
3002
3003 }
3004 return 0;
3005}
3006
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003007static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 .start = netlink_seq_start,
3009 .next = netlink_seq_next,
3010 .stop = netlink_seq_stop,
3011 .show = netlink_seq_show,
3012};
3013
3014
3015static int netlink_seq_open(struct inode *inode, struct file *file)
3016{
Denis V. Luneve372c412007-11-19 22:31:54 -08003017 return seq_open_net(inode, file, &netlink_seq_ops,
3018 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003019}
3020
Arjan van de Venda7071d2007-02-12 00:55:36 -08003021static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 .owner = THIS_MODULE,
3023 .open = netlink_seq_open,
3024 .read = seq_read,
3025 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003026 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027};
3028
3029#endif
3030
3031int netlink_register_notifier(struct notifier_block *nb)
3032{
Alan Sterne041c682006-03-27 01:16:30 -08003033 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003035EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037int netlink_unregister_notifier(struct notifier_block *nb)
3038{
Alan Sterne041c682006-03-27 01:16:30 -08003039 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003041EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003042
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003043static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 .family = PF_NETLINK,
3045 .owner = THIS_MODULE,
3046 .release = netlink_release,
3047 .bind = netlink_bind,
3048 .connect = netlink_connect,
3049 .socketpair = sock_no_socketpair,
3050 .accept = sock_no_accept,
3051 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00003052 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 .ioctl = sock_no_ioctl,
3054 .listen = sock_no_listen,
3055 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07003056 .setsockopt = netlink_setsockopt,
3057 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 .sendmsg = netlink_sendmsg,
3059 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00003060 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 .sendpage = sock_no_sendpage,
3062};
3063
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003064static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 .family = PF_NETLINK,
3066 .create = netlink_create,
3067 .owner = THIS_MODULE, /* for consistency 8) */
3068};
3069
Pavel Emelyanov46650792007-10-08 20:38:39 -07003070static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003071{
3072#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003073 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003074 return -ENOMEM;
3075#endif
3076 return 0;
3077}
3078
Pavel Emelyanov46650792007-10-08 20:38:39 -07003079static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003080{
3081#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003082 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003083#endif
3084}
3085
David S. Millerb963ea82010-08-30 19:08:01 -07003086static void __init netlink_add_usersock_entry(void)
3087{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003088 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07003089 int groups = 32;
3090
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003091 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07003092 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003093 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07003094
3095 netlink_table_grab();
3096
3097 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003098 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07003099 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
3100 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00003101 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07003102
3103 netlink_table_ungrab();
3104}
3105
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003106static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003107 .init = netlink_net_init,
3108 .exit = netlink_net_exit,
3109};
3110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111static int __init netlink_proto_init(void)
3112{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 int err = proto_register(&netlink_proto, 0);
Thomas Grafe3416942014-08-02 11:47:45 +02003115 struct rhashtable_params ht_params = {
3116 .head_offset = offsetof(struct netlink_sock, node),
3117 .key_offset = offsetof(struct netlink_sock, portid),
3118 .key_len = sizeof(u32), /* portid */
Daniel Borkmann7f19fc52014-12-10 16:33:10 +01003119 .hashfn = jhash,
Thomas Grafe3416942014-08-02 11:47:45 +02003120 .max_shift = 16, /* 64K */
3121 .grow_decision = rht_grow_above_75,
3122 .shrink_decision = rht_shrink_below_30,
Herbert Xu97127562014-11-13 18:11:18 +08003123#ifdef CONFIG_PROVE_LOCKING
Thomas Grafe3416942014-08-02 11:47:45 +02003124 .mutex_is_held = lockdep_nl_sk_hash_is_held,
Herbert Xu97127562014-11-13 18:11:18 +08003125#endif
Thomas Grafe3416942014-08-02 11:47:45 +02003126 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128 if (err != 0)
3129 goto out;
3130
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00003131 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07003133 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003134 if (!nl_table)
3135 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 for (i = 0; i < MAX_LINKS; i++) {
Thomas Grafe3416942014-08-02 11:47:45 +02003138 if (rhashtable_init(&nl_table[i].hash, &ht_params) < 0) {
3139 while (--i > 0)
3140 rhashtable_destroy(&nl_table[i].hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003142 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 }
3145
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02003146 INIT_LIST_HEAD(&netlink_tap_all);
3147
David S. Millerb963ea82010-08-30 19:08:01 -07003148 netlink_add_usersock_entry();
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003151 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003152 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 rtnetlink_init();
3154out:
3155 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003156panic:
3157 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158}
3159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160core_initcall(netlink_proto_init);