blob: d77b3467b1d426b6ead18aac1fb133ad43b01cec [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:
Thomas Graf21e49022015-01-02 23:00:22 +0100100 * Lookup and traversal are protected with an RCU read-side lock. Insertion
Ying Xuec5adde92015-01-12 14:52:23 +0800101 * and removal are protected with per bucket lock while using RCU list
Thomas Graf21e49022015-01-02 23:00:22 +0100102 * modification primitives and may run in parallel to RCU protected lookups.
103 * Destruction of the Netlink socket may only occur *after* nl_table_lock has
104 * been acquired * either during or after the socket has been removed from
105 * the list and after an RCU grace period.
Thomas Graf78fd1d02014-10-21 22:05:38 +0200106 */
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
Alan Sterne041c682006-03-27 01:16:30 -0800113static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200115static DEFINE_SPINLOCK(netlink_tap_lock);
116static struct list_head netlink_tap_all __read_mostly;
117
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000118static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700119{
120 return group ? 1 << (group - 1) : 0;
121}
122
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200123int netlink_add_tap(struct netlink_tap *nt)
124{
125 if (unlikely(nt->dev->type != ARPHRD_NETLINK))
126 return -EINVAL;
127
128 spin_lock(&netlink_tap_lock);
129 list_add_rcu(&nt->list, &netlink_tap_all);
130 spin_unlock(&netlink_tap_lock);
131
Markus Elfringfcd4d352014-11-18 21:03:13 +0100132 __module_get(nt->module);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200133
134 return 0;
135}
136EXPORT_SYMBOL_GPL(netlink_add_tap);
137
stephen hemminger2173f8d2013-12-30 10:49:22 -0800138static int __netlink_remove_tap(struct netlink_tap *nt)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200139{
140 bool found = false;
141 struct netlink_tap *tmp;
142
143 spin_lock(&netlink_tap_lock);
144
145 list_for_each_entry(tmp, &netlink_tap_all, list) {
146 if (nt == tmp) {
147 list_del_rcu(&nt->list);
148 found = true;
149 goto out;
150 }
151 }
152
153 pr_warn("__netlink_remove_tap: %p not found\n", nt);
154out:
155 spin_unlock(&netlink_tap_lock);
156
157 if (found && nt->module)
158 module_put(nt->module);
159
160 return found ? 0 : -ENODEV;
161}
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200162
163int netlink_remove_tap(struct netlink_tap *nt)
164{
165 int ret;
166
167 ret = __netlink_remove_tap(nt);
168 synchronize_net();
169
170 return ret;
171}
172EXPORT_SYMBOL_GPL(netlink_remove_tap);
173
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200174static bool netlink_filter_tap(const struct sk_buff *skb)
175{
176 struct sock *sk = skb->sk;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200177
178 /* We take the more conservative approach and
179 * whitelist socket protocols that may pass.
180 */
181 switch (sk->sk_protocol) {
182 case NETLINK_ROUTE:
183 case NETLINK_USERSOCK:
184 case NETLINK_SOCK_DIAG:
185 case NETLINK_NFLOG:
186 case NETLINK_XFRM:
187 case NETLINK_FIB_LOOKUP:
188 case NETLINK_NETFILTER:
189 case NETLINK_GENERIC:
Varka Bhadram498044b2014-07-16 10:59:47 +0530190 return true;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200191 }
192
Varka Bhadram498044b2014-07-16 10:59:47 +0530193 return false;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200194}
195
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200196static int __netlink_deliver_tap_skb(struct sk_buff *skb,
197 struct net_device *dev)
198{
199 struct sk_buff *nskb;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200200 struct sock *sk = skb->sk;
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200201 int ret = -ENOMEM;
202
203 dev_hold(dev);
204 nskb = skb_clone(skb, GFP_ATOMIC);
205 if (nskb) {
206 nskb->dev = dev;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200207 nskb->protocol = htons((u16) sk->sk_protocol);
Daniel Borkmann604d13c2013-12-23 14:35:56 +0100208 nskb->pkt_type = netlink_is_kernel(sk) ?
209 PACKET_KERNEL : PACKET_USER;
Daniel Borkmann4e48ed82014-08-07 22:22:47 +0200210 skb_reset_network_header(nskb);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200211 ret = dev_queue_xmit(nskb);
212 if (unlikely(ret > 0))
213 ret = net_xmit_errno(ret);
214 }
215
216 dev_put(dev);
217 return ret;
218}
219
220static void __netlink_deliver_tap(struct sk_buff *skb)
221{
222 int ret;
223 struct netlink_tap *tmp;
224
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200225 if (!netlink_filter_tap(skb))
226 return;
227
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200228 list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
229 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
230 if (unlikely(ret))
231 break;
232 }
233}
234
235static void netlink_deliver_tap(struct sk_buff *skb)
236{
237 rcu_read_lock();
238
239 if (unlikely(!list_empty(&netlink_tap_all)))
240 __netlink_deliver_tap(skb);
241
242 rcu_read_unlock();
243}
244
Daniel Borkmann73bfd372013-12-23 14:35:55 +0100245static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src,
246 struct sk_buff *skb)
247{
248 if (!(netlink_is_kernel(dst) && netlink_is_kernel(src)))
249 netlink_deliver_tap(skb);
250}
251
Patrick McHardycd1df522013-04-17 06:47:05 +0000252static void netlink_overrun(struct sock *sk)
253{
254 struct netlink_sock *nlk = nlk_sk(sk);
255
256 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
257 if (!test_and_set_bit(NETLINK_CONGESTED, &nlk_sk(sk)->state)) {
258 sk->sk_err = ENOBUFS;
259 sk->sk_error_report(sk);
260 }
261 }
262 atomic_inc(&sk->sk_drops);
263}
264
265static void netlink_rcv_wake(struct sock *sk)
266{
267 struct netlink_sock *nlk = nlk_sk(sk);
268
269 if (skb_queue_empty(&sk->sk_receive_queue))
270 clear_bit(NETLINK_CONGESTED, &nlk->state);
271 if (!test_bit(NETLINK_CONGESTED, &nlk->state))
272 wake_up_interruptible(&nlk->wait);
273}
274
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000275#ifdef CONFIG_NETLINK_MMAP
Patrick McHardy9652e932013-04-17 06:47:02 +0000276static bool netlink_skb_is_mmaped(const struct sk_buff *skb)
277{
278 return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED;
279}
280
Patrick McHardyf9c22882013-04-17 06:47:04 +0000281static bool netlink_rx_is_mmaped(struct sock *sk)
282{
283 return nlk_sk(sk)->rx_ring.pg_vec != NULL;
284}
285
Patrick McHardy5fd96122013-04-17 06:47:03 +0000286static bool netlink_tx_is_mmaped(struct sock *sk)
287{
288 return nlk_sk(sk)->tx_ring.pg_vec != NULL;
289}
290
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000291static __pure struct page *pgvec_to_page(const void *addr)
292{
293 if (is_vmalloc_addr(addr))
294 return vmalloc_to_page(addr);
295 else
296 return virt_to_page(addr);
297}
298
299static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
300{
301 unsigned int i;
302
303 for (i = 0; i < len; i++) {
304 if (pg_vec[i] != NULL) {
305 if (is_vmalloc_addr(pg_vec[i]))
306 vfree(pg_vec[i]);
307 else
308 free_pages((unsigned long)pg_vec[i], order);
309 }
310 }
311 kfree(pg_vec);
312}
313
314static void *alloc_one_pg_vec_page(unsigned long order)
315{
316 void *buffer;
317 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
318 __GFP_NOWARN | __GFP_NORETRY;
319
320 buffer = (void *)__get_free_pages(gfp_flags, order);
321 if (buffer != NULL)
322 return buffer;
323
324 buffer = vzalloc((1 << order) * PAGE_SIZE);
325 if (buffer != NULL)
326 return buffer;
327
328 gfp_flags &= ~__GFP_NORETRY;
329 return (void *)__get_free_pages(gfp_flags, order);
330}
331
332static void **alloc_pg_vec(struct netlink_sock *nlk,
333 struct nl_mmap_req *req, unsigned int order)
334{
335 unsigned int block_nr = req->nm_block_nr;
336 unsigned int i;
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200337 void **pg_vec;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000338
339 pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
340 if (pg_vec == NULL)
341 return NULL;
342
343 for (i = 0; i < block_nr; i++) {
Daniel Borkmann8a849bb2013-08-02 17:32:39 +0200344 pg_vec[i] = alloc_one_pg_vec_page(order);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000345 if (pg_vec[i] == NULL)
346 goto err1;
347 }
348
349 return pg_vec;
350err1:
351 free_pg_vec(pg_vec, order, block_nr);
352 return NULL;
353}
354
355static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
356 bool closing, bool tx_ring)
357{
358 struct netlink_sock *nlk = nlk_sk(sk);
359 struct netlink_ring *ring;
360 struct sk_buff_head *queue;
361 void **pg_vec = NULL;
362 unsigned int order = 0;
363 int err;
364
365 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
366 queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
367
368 if (!closing) {
369 if (atomic_read(&nlk->mapped))
370 return -EBUSY;
371 if (atomic_read(&ring->pending))
372 return -EBUSY;
373 }
374
375 if (req->nm_block_nr) {
376 if (ring->pg_vec != NULL)
377 return -EBUSY;
378
379 if ((int)req->nm_block_size <= 0)
380 return -EINVAL;
Tobias Klauser74e83b22014-07-31 12:17:08 +0200381 if (!PAGE_ALIGNED(req->nm_block_size))
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000382 return -EINVAL;
383 if (req->nm_frame_size < NL_MMAP_HDRLEN)
384 return -EINVAL;
385 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
386 return -EINVAL;
387
388 ring->frames_per_block = req->nm_block_size /
389 req->nm_frame_size;
390 if (ring->frames_per_block == 0)
391 return -EINVAL;
392 if (ring->frames_per_block * req->nm_block_nr !=
393 req->nm_frame_nr)
394 return -EINVAL;
395
396 order = get_order(req->nm_block_size);
397 pg_vec = alloc_pg_vec(nlk, req, order);
398 if (pg_vec == NULL)
399 return -ENOMEM;
400 } else {
401 if (req->nm_frame_nr)
402 return -EINVAL;
403 }
404
405 err = -EBUSY;
406 mutex_lock(&nlk->pg_vec_lock);
407 if (closing || atomic_read(&nlk->mapped) == 0) {
408 err = 0;
409 spin_lock_bh(&queue->lock);
410
411 ring->frame_max = req->nm_frame_nr - 1;
412 ring->head = 0;
413 ring->frame_size = req->nm_frame_size;
414 ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE;
415
416 swap(ring->pg_vec_len, req->nm_block_nr);
417 swap(ring->pg_vec_order, order);
418 swap(ring->pg_vec, pg_vec);
419
420 __skb_queue_purge(queue);
421 spin_unlock_bh(&queue->lock);
422
423 WARN_ON(atomic_read(&nlk->mapped));
424 }
425 mutex_unlock(&nlk->pg_vec_lock);
426
427 if (pg_vec)
428 free_pg_vec(pg_vec, order, req->nm_block_nr);
429 return err;
430}
431
432static void netlink_mm_open(struct vm_area_struct *vma)
433{
434 struct file *file = vma->vm_file;
435 struct socket *sock = file->private_data;
436 struct sock *sk = sock->sk;
437
438 if (sk)
439 atomic_inc(&nlk_sk(sk)->mapped);
440}
441
442static void netlink_mm_close(struct vm_area_struct *vma)
443{
444 struct file *file = vma->vm_file;
445 struct socket *sock = file->private_data;
446 struct sock *sk = sock->sk;
447
448 if (sk)
449 atomic_dec(&nlk_sk(sk)->mapped);
450}
451
452static const struct vm_operations_struct netlink_mmap_ops = {
453 .open = netlink_mm_open,
454 .close = netlink_mm_close,
455};
456
457static int netlink_mmap(struct file *file, struct socket *sock,
458 struct vm_area_struct *vma)
459{
460 struct sock *sk = sock->sk;
461 struct netlink_sock *nlk = nlk_sk(sk);
462 struct netlink_ring *ring;
463 unsigned long start, size, expected;
464 unsigned int i;
465 int err = -EINVAL;
466
467 if (vma->vm_pgoff)
468 return -EINVAL;
469
470 mutex_lock(&nlk->pg_vec_lock);
471
472 expected = 0;
473 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
474 if (ring->pg_vec == NULL)
475 continue;
476 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
477 }
478
479 if (expected == 0)
480 goto out;
481
482 size = vma->vm_end - vma->vm_start;
483 if (size != expected)
484 goto out;
485
486 start = vma->vm_start;
487 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
488 if (ring->pg_vec == NULL)
489 continue;
490
491 for (i = 0; i < ring->pg_vec_len; i++) {
492 struct page *page;
493 void *kaddr = ring->pg_vec[i];
494 unsigned int pg_num;
495
496 for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
497 page = pgvec_to_page(kaddr);
498 err = vm_insert_page(vma, start, page);
499 if (err < 0)
500 goto out;
501 start += PAGE_SIZE;
502 kaddr += PAGE_SIZE;
503 }
504 }
505 }
506
507 atomic_inc(&nlk->mapped);
508 vma->vm_ops = &netlink_mmap_ops;
509 err = 0;
510out:
511 mutex_unlock(&nlk->pg_vec_lock);
Patrick McHardy7cdbac72013-06-11 02:52:47 -0700512 return err;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000513}
Patrick McHardy9652e932013-04-17 06:47:02 +0000514
David Miller4682a032014-12-16 17:58:17 -0500515static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr, unsigned int nm_len)
Patrick McHardy9652e932013-04-17 06:47:02 +0000516{
517#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
518 struct page *p_start, *p_end;
519
520 /* First page is flushed through netlink_{get,set}_status */
521 p_start = pgvec_to_page(hdr + PAGE_SIZE);
David Miller4682a032014-12-16 17:58:17 -0500522 p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + nm_len - 1);
Patrick McHardy9652e932013-04-17 06:47:02 +0000523 while (p_start <= p_end) {
524 flush_dcache_page(p_start);
525 p_start++;
526 }
527#endif
528}
529
530static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
531{
532 smp_rmb();
533 flush_dcache_page(pgvec_to_page(hdr));
534 return hdr->nm_status;
535}
536
537static void netlink_set_status(struct nl_mmap_hdr *hdr,
538 enum nl_mmap_status status)
539{
Thomas Grafa18e6a12014-12-18 10:30:26 +0000540 smp_mb();
Patrick McHardy9652e932013-04-17 06:47:02 +0000541 hdr->nm_status = status;
542 flush_dcache_page(pgvec_to_page(hdr));
Patrick McHardy9652e932013-04-17 06:47:02 +0000543}
544
545static struct nl_mmap_hdr *
546__netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
547{
548 unsigned int pg_vec_pos, frame_off;
549
550 pg_vec_pos = pos / ring->frames_per_block;
551 frame_off = pos % ring->frames_per_block;
552
553 return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
554}
555
556static struct nl_mmap_hdr *
557netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
558 enum nl_mmap_status status)
559{
560 struct nl_mmap_hdr *hdr;
561
562 hdr = __netlink_lookup_frame(ring, pos);
563 if (netlink_get_status(hdr) != status)
564 return NULL;
565
566 return hdr;
567}
568
569static struct nl_mmap_hdr *
570netlink_current_frame(const struct netlink_ring *ring,
571 enum nl_mmap_status status)
572{
573 return netlink_lookup_frame(ring, ring->head, status);
574}
575
576static struct nl_mmap_hdr *
577netlink_previous_frame(const struct netlink_ring *ring,
578 enum nl_mmap_status status)
579{
580 unsigned int prev;
581
582 prev = ring->head ? ring->head - 1 : ring->frame_max;
583 return netlink_lookup_frame(ring, prev, status);
584}
585
586static void netlink_increment_head(struct netlink_ring *ring)
587{
588 ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
589}
590
591static void netlink_forward_ring(struct netlink_ring *ring)
592{
593 unsigned int head = ring->head, pos = head;
594 const struct nl_mmap_hdr *hdr;
595
596 do {
597 hdr = __netlink_lookup_frame(ring, pos);
598 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
599 break;
600 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
601 break;
602 netlink_increment_head(ring);
603 } while (ring->head != head);
604}
605
Patrick McHardycd1df522013-04-17 06:47:05 +0000606static bool netlink_dump_space(struct netlink_sock *nlk)
607{
608 struct netlink_ring *ring = &nlk->rx_ring;
609 struct nl_mmap_hdr *hdr;
610 unsigned int n;
611
612 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
613 if (hdr == NULL)
614 return false;
615
616 n = ring->head + ring->frame_max / 2;
617 if (n > ring->frame_max)
618 n -= ring->frame_max;
619
620 hdr = __netlink_lookup_frame(ring, n);
621
622 return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
623}
624
Patrick McHardy9652e932013-04-17 06:47:02 +0000625static unsigned int netlink_poll(struct file *file, struct socket *sock,
626 poll_table *wait)
627{
628 struct sock *sk = sock->sk;
629 struct netlink_sock *nlk = nlk_sk(sk);
630 unsigned int mask;
Patrick McHardycd1df522013-04-17 06:47:05 +0000631 int err;
Patrick McHardy9652e932013-04-17 06:47:02 +0000632
Patrick McHardycd1df522013-04-17 06:47:05 +0000633 if (nlk->rx_ring.pg_vec != NULL) {
634 /* Memory mapped sockets don't call recvmsg(), so flow control
635 * for dumps is performed here. A dump is allowed to continue
636 * if at least half the ring is unused.
637 */
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700638 while (nlk->cb_running && netlink_dump_space(nlk)) {
Patrick McHardycd1df522013-04-17 06:47:05 +0000639 err = netlink_dump(sk);
640 if (err < 0) {
Ben Pfaffac30ef82014-07-09 10:31:22 -0700641 sk->sk_err = -err;
Patrick McHardycd1df522013-04-17 06:47:05 +0000642 sk->sk_error_report(sk);
643 break;
644 }
645 }
646 netlink_rcv_wake(sk);
647 }
Patrick McHardy5fd96122013-04-17 06:47:03 +0000648
Patrick McHardy9652e932013-04-17 06:47:02 +0000649 mask = datagram_poll(file, sock, wait);
650
651 spin_lock_bh(&sk->sk_receive_queue.lock);
652 if (nlk->rx_ring.pg_vec) {
653 netlink_forward_ring(&nlk->rx_ring);
654 if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED))
655 mask |= POLLIN | POLLRDNORM;
656 }
657 spin_unlock_bh(&sk->sk_receive_queue.lock);
658
659 spin_lock_bh(&sk->sk_write_queue.lock);
660 if (nlk->tx_ring.pg_vec) {
661 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
662 mask |= POLLOUT | POLLWRNORM;
663 }
664 spin_unlock_bh(&sk->sk_write_queue.lock);
665
666 return mask;
667}
668
669static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
670{
671 return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
672}
673
674static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
675 struct netlink_ring *ring,
676 struct nl_mmap_hdr *hdr)
677{
678 unsigned int size;
679 void *data;
680
681 size = ring->frame_size - NL_MMAP_HDRLEN;
682 data = (void *)hdr + NL_MMAP_HDRLEN;
683
684 skb->head = data;
685 skb->data = data;
686 skb_reset_tail_pointer(skb);
687 skb->end = skb->tail + size;
688 skb->len = 0;
689
690 skb->destructor = netlink_skb_destructor;
691 NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
692 NETLINK_CB(skb).sk = sk;
693}
Patrick McHardy5fd96122013-04-17 06:47:03 +0000694
695static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
696 u32 dst_portid, u32 dst_group,
697 struct sock_iocb *siocb)
698{
699 struct netlink_sock *nlk = nlk_sk(sk);
700 struct netlink_ring *ring;
701 struct nl_mmap_hdr *hdr;
702 struct sk_buff *skb;
703 unsigned int maxlen;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000704 int err = 0, len = 0;
705
Patrick McHardy5fd96122013-04-17 06:47:03 +0000706 mutex_lock(&nlk->pg_vec_lock);
707
708 ring = &nlk->tx_ring;
709 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
710
711 do {
David Miller4682a032014-12-16 17:58:17 -0500712 unsigned int nm_len;
713
Patrick McHardy5fd96122013-04-17 06:47:03 +0000714 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
715 if (hdr == NULL) {
716 if (!(msg->msg_flags & MSG_DONTWAIT) &&
717 atomic_read(&nlk->tx_ring.pending))
718 schedule();
719 continue;
720 }
David Miller4682a032014-12-16 17:58:17 -0500721
722 nm_len = ACCESS_ONCE(hdr->nm_len);
723 if (nm_len > maxlen) {
Patrick McHardy5fd96122013-04-17 06:47:03 +0000724 err = -EINVAL;
725 goto out;
726 }
727
David Miller4682a032014-12-16 17:58:17 -0500728 netlink_frame_flush_dcache(hdr, nm_len);
Patrick McHardy5fd96122013-04-17 06:47:03 +0000729
David Miller4682a032014-12-16 17:58:17 -0500730 skb = alloc_skb(nm_len, GFP_KERNEL);
731 if (skb == NULL) {
732 err = -ENOBUFS;
733 goto out;
Patrick McHardy5fd96122013-04-17 06:47:03 +0000734 }
David Miller4682a032014-12-16 17:58:17 -0500735 __skb_put(skb, nm_len);
736 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, nm_len);
737 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
Patrick McHardy5fd96122013-04-17 06:47:03 +0000738
739 netlink_increment_head(ring);
740
741 NETLINK_CB(skb).portid = nlk->portid;
742 NETLINK_CB(skb).dst_group = dst_group;
743 NETLINK_CB(skb).creds = siocb->scm->creds;
744
745 err = security_netlink_send(sk, skb);
746 if (err) {
747 kfree_skb(skb);
748 goto out;
749 }
750
751 if (unlikely(dst_group)) {
752 atomic_inc(&skb->users);
753 netlink_broadcast(sk, skb, dst_portid, dst_group,
754 GFP_KERNEL);
755 }
756 err = netlink_unicast(sk, skb, dst_portid,
757 msg->msg_flags & MSG_DONTWAIT);
758 if (err < 0)
759 goto out;
760 len += err;
761
762 } while (hdr != NULL ||
763 (!(msg->msg_flags & MSG_DONTWAIT) &&
764 atomic_read(&nlk->tx_ring.pending)));
765
766 if (len > 0)
767 err = len;
768out:
769 mutex_unlock(&nlk->pg_vec_lock);
770 return err;
771}
Patrick McHardyf9c22882013-04-17 06:47:04 +0000772
773static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
774{
775 struct nl_mmap_hdr *hdr;
776
777 hdr = netlink_mmap_hdr(skb);
778 hdr->nm_len = skb->len;
779 hdr->nm_group = NETLINK_CB(skb).dst_group;
780 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200781 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
782 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
David Miller4682a032014-12-16 17:58:17 -0500783 netlink_frame_flush_dcache(hdr, hdr->nm_len);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000784 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
785
786 NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
787 kfree_skb(skb);
788}
789
790static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
791{
792 struct netlink_sock *nlk = nlk_sk(sk);
793 struct netlink_ring *ring = &nlk->rx_ring;
794 struct nl_mmap_hdr *hdr;
795
796 spin_lock_bh(&sk->sk_receive_queue.lock);
797 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
798 if (hdr == NULL) {
799 spin_unlock_bh(&sk->sk_receive_queue.lock);
800 kfree_skb(skb);
Patrick McHardycd1df522013-04-17 06:47:05 +0000801 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000802 return;
803 }
804 netlink_increment_head(ring);
805 __skb_queue_tail(&sk->sk_receive_queue, skb);
806 spin_unlock_bh(&sk->sk_receive_queue.lock);
807
808 hdr->nm_len = skb->len;
809 hdr->nm_group = NETLINK_CB(skb).dst_group;
810 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200811 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
812 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000813 netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
814}
815
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000816#else /* CONFIG_NETLINK_MMAP */
Patrick McHardy9652e932013-04-17 06:47:02 +0000817#define netlink_skb_is_mmaped(skb) false
Patrick McHardyf9c22882013-04-17 06:47:04 +0000818#define netlink_rx_is_mmaped(sk) false
Patrick McHardy5fd96122013-04-17 06:47:03 +0000819#define netlink_tx_is_mmaped(sk) false
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000820#define netlink_mmap sock_no_mmap
Patrick McHardy9652e932013-04-17 06:47:02 +0000821#define netlink_poll datagram_poll
Patrick McHardy5fd96122013-04-17 06:47:03 +0000822#define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, siocb) 0
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000823#endif /* CONFIG_NETLINK_MMAP */
824
Patrick McHardycf0a0182013-04-17 06:47:00 +0000825static void netlink_skb_destructor(struct sk_buff *skb)
826{
Patrick McHardy9652e932013-04-17 06:47:02 +0000827#ifdef CONFIG_NETLINK_MMAP
828 struct nl_mmap_hdr *hdr;
829 struct netlink_ring *ring;
830 struct sock *sk;
831
832 /* If a packet from the kernel to userspace was freed because of an
833 * error without being delivered to userspace, the kernel must reset
834 * the status. In the direction userspace to kernel, the status is
835 * always reset here after the packet was processed and freed.
836 */
837 if (netlink_skb_is_mmaped(skb)) {
838 hdr = netlink_mmap_hdr(skb);
839 sk = NETLINK_CB(skb).sk;
840
Patrick McHardy5fd96122013-04-17 06:47:03 +0000841 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
842 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
843 ring = &nlk_sk(sk)->tx_ring;
844 } else {
845 if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
846 hdr->nm_len = 0;
847 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
848 }
849 ring = &nlk_sk(sk)->rx_ring;
Patrick McHardy9652e932013-04-17 06:47:02 +0000850 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000851
852 WARN_ON(atomic_read(&ring->pending) == 0);
853 atomic_dec(&ring->pending);
854 sock_put(sk);
855
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000856 skb->head = NULL;
Patrick McHardy9652e932013-04-17 06:47:02 +0000857 }
858#endif
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000859 if (is_vmalloc_addr(skb->head)) {
Pablo Neira3a365152013-06-28 03:04:23 +0200860 if (!skb->cloned ||
861 !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
862 vfree(skb->head);
863
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000864 skb->head = NULL;
865 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000866 if (skb->sk != NULL)
867 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000868}
869
870static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
871{
872 WARN_ON(skb->sk != NULL);
873 skb->sk = sk;
874 skb->destructor = netlink_skb_destructor;
875 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
876 sk_mem_charge(sk, skb->truesize);
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879static void netlink_sock_destruct(struct sock *sk)
880{
Herbert Xu3f660d62007-05-03 03:17:14 -0700881 struct netlink_sock *nlk = nlk_sk(sk);
882
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700883 if (nlk->cb_running) {
884 if (nlk->cb.done)
885 nlk->cb.done(&nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000886
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700887 module_put(nlk->cb.module);
888 kfree_skb(nlk->cb.skb);
Herbert Xu3f660d62007-05-03 03:17:14 -0700889 }
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000892#ifdef CONFIG_NETLINK_MMAP
893 if (1) {
894 struct nl_mmap_req req;
895
896 memset(&req, 0, sizeof(req));
897 if (nlk->rx_ring.pg_vec)
898 netlink_set_ring(sk, &req, true, false);
899 memset(&req, 0, sizeof(req));
900 if (nlk->tx_ring.pg_vec)
901 netlink_set_ring(sk, &req, true, true);
902 }
903#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800906 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return;
908 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700909
910 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
911 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
912 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800915/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
916 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
918 * this, _but_ remember, it adds useless work on UP machines.
919 */
920
Johannes Bergd136f1b2009-09-12 03:03:15 +0000921void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800922 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000924 might_sleep();
925
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700926 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (atomic_read(&nl_table_users)) {
929 DECLARE_WAITQUEUE(wait, current);
930
931 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800932 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 set_current_state(TASK_UNINTERRUPTIBLE);
934 if (atomic_read(&nl_table_users) == 0)
935 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700936 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700938 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
941 __set_current_state(TASK_RUNNING);
942 remove_wait_queue(&nl_table_wait, &wait);
943 }
944}
945
Johannes Bergd136f1b2009-09-12 03:03:15 +0000946void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800947 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700949 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 wake_up(&nl_table_wait);
951}
952
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800953static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954netlink_lock_table(void)
955{
956 /* read_lock() synchronizes us to netlink_table_grab */
957
958 read_lock(&nl_table_lock);
959 atomic_inc(&nl_table_users);
960 read_unlock(&nl_table_lock);
961}
962
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800963static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964netlink_unlock_table(void)
965{
966 if (atomic_dec_and_test(&nl_table_users))
967 wake_up(&nl_table_wait);
968}
969
Thomas Grafe3416942014-08-02 11:47:45 +0200970struct netlink_compare_arg
Gao fengda12c902013-06-06 14:49:11 +0800971{
Thomas Grafe3416942014-08-02 11:47:45 +0200972 struct net *net;
973 u32 portid;
974};
975
976static bool netlink_compare(void *ptr, void *arg)
977{
978 struct netlink_compare_arg *x = arg;
979 struct sock *sk = ptr;
980
981 return nlk_sk(sk)->portid == x->portid &&
982 net_eq(sock_net(sk), x->net);
983}
984
985static struct sock *__netlink_lookup(struct netlink_table *table, u32 portid,
986 struct net *net)
987{
988 struct netlink_compare_arg arg = {
989 .net = net,
990 .portid = portid,
991 };
Thomas Grafe3416942014-08-02 11:47:45 +0200992
Thomas Graf8d24c0b2015-01-02 23:00:14 +0100993 return rhashtable_lookup_compare(&table->hash, &portid,
Thomas Grafe3416942014-08-02 11:47:45 +0200994 &netlink_compare, &arg);
Gao fengda12c902013-06-06 14:49:11 +0800995}
996
Herbert Xu8ea65f42015-01-26 14:02:56 +1100997static bool __netlink_insert(struct netlink_table *table, struct sock *sk)
Ying Xuec5adde92015-01-12 14:52:23 +0800998{
999 struct netlink_compare_arg arg = {
Herbert Xu8ea65f42015-01-26 14:02:56 +11001000 .net = sock_net(sk),
Ying Xuec5adde92015-01-12 14:52:23 +08001001 .portid = nlk_sk(sk)->portid,
1002 };
1003
1004 return rhashtable_lookup_compare_insert(&table->hash,
1005 &nlk_sk(sk)->node,
1006 &netlink_compare, &arg);
1007}
1008
Eric W. Biederman15e47302012-09-07 20:12:54 +00001009static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Gao fengda12c902013-06-06 14:49:11 +08001011 struct netlink_table *table = &nl_table[protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Thomas Grafe3416942014-08-02 11:47:45 +02001014 rcu_read_lock();
1015 sk = __netlink_lookup(table, portid, net);
1016 if (sk)
1017 sock_hold(sk);
1018 rcu_read_unlock();
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return sk;
1021}
1022
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001023static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Patrick McHardy4277a082006-03-20 18:52:01 -08001025static void
1026netlink_update_listeners(struct sock *sk)
1027{
1028 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -08001029 unsigned long mask;
1030 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001031 struct listeners *listeners;
1032
1033 listeners = nl_deref_protected(tbl->listeners);
1034 if (!listeners)
1035 return;
Patrick McHardy4277a082006-03-20 18:52:01 -08001036
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001037 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001038 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001039 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001040 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
1041 mask |= nlk_sk(sk)->groups[i];
1042 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001043 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -08001044 }
1045 /* this function is only called with the netlink table "grabbed", which
1046 * makes sure updates are visible before bind or setsockopt return. */
1047}
1048
Herbert Xu8ea65f42015-01-26 14:02:56 +11001049static int netlink_insert(struct sock *sk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Gao fengda12c902013-06-06 14:49:11 +08001051 struct netlink_table *table = &nl_table[sk->sk_protocol];
Herbert Xu919d9db2015-01-16 17:23:48 +11001052 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Ying Xuec5adde92015-01-12 14:52:23 +08001054 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 err = -EBUSY;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001057 if (nlk_sk(sk)->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 goto err;
1059
1060 err = -ENOMEM;
Thomas Graf97defe12015-01-02 23:00:20 +01001061 if (BITS_PER_LONG > 32 &&
1062 unlikely(atomic_read(&table->hash.nelems) >= UINT_MAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 goto err;
1064
Eric W. Biederman15e47302012-09-07 20:12:54 +00001065 nlk_sk(sk)->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +02001066 sock_hold(sk);
Herbert Xu919d9db2015-01-16 17:23:48 +11001067
1068 err = 0;
Herbert Xu8ea65f42015-01-26 14:02:56 +11001069 if (!__netlink_insert(table, sk)) {
Herbert Xu919d9db2015-01-16 17:23:48 +11001070 err = -EADDRINUSE;
Ying Xuec5adde92015-01-12 14:52:23 +08001071 sock_put(sk);
Herbert Xu919d9db2015-01-16 17:23:48 +11001072 }
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074err:
Ying Xuec5adde92015-01-12 14:52:23 +08001075 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return err;
1077}
1078
1079static void netlink_remove(struct sock *sk)
1080{
Thomas Grafe3416942014-08-02 11:47:45 +02001081 struct netlink_table *table;
1082
Thomas Grafe3416942014-08-02 11:47:45 +02001083 table = &nl_table[sk->sk_protocol];
Thomas Graf6eba8222014-11-13 13:45:46 +01001084 if (rhashtable_remove(&table->hash, &nlk_sk(sk)->node)) {
Thomas Grafe3416942014-08-02 11:47:45 +02001085 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
1086 __sock_put(sk);
1087 }
Thomas Grafe3416942014-08-02 11:47:45 +02001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 netlink_table_grab();
Johannes Bergb10dcb32014-12-22 18:56:37 +01001090 if (nlk_sk(sk)->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 __sk_del_bind_node(sk);
Johannes Bergb10dcb32014-12-22 18:56:37 +01001092 netlink_update_listeners(sk);
1093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 netlink_table_ungrab();
1095}
1096
1097static struct proto netlink_proto = {
1098 .name = "NETLINK",
1099 .owner = THIS_MODULE,
1100 .obj_size = sizeof(struct netlink_sock),
1101};
1102
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001103static int __netlink_create(struct net *net, struct socket *sock,
1104 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
1106 struct sock *sk;
1107 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001108
1109 sock->ops = &netlink_ops;
1110
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001111 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -07001112 if (!sk)
1113 return -ENOMEM;
1114
1115 sock_init_data(sock, sk);
1116
1117 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001118 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001119 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001120 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001121 nlk->cb_mutex = &nlk->cb_def_mutex;
1122 mutex_init(nlk->cb_mutex);
1123 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001124 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001125#ifdef CONFIG_NETLINK_MMAP
1126 mutex_init(&nlk->pg_vec_lock);
1127#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001128
1129 sk->sk_destruct = netlink_sock_destruct;
1130 sk->sk_protocol = protocol;
1131 return 0;
1132}
1133
Eric Paris3f378b62009-11-05 22:18:14 -08001134static int netlink_create(struct net *net, struct socket *sock, int protocol,
1135 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001136{
1137 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001138 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001139 struct netlink_sock *nlk;
Johannes Berg023e2cf2014-12-23 21:00:06 +01001140 int (*bind)(struct net *net, int group);
1141 void (*unbind)(struct net *net, int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001142 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 sock->state = SS_UNCONNECTED;
1145
1146 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1147 return -ESOCKTNOSUPPORT;
1148
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001149 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return -EPROTONOSUPPORT;
1151
Patrick McHardy77247bb2005-08-14 19:27:13 -07001152 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001153#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001154 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001155 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001156 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001157 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001158 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001159#endif
1160 if (nl_table[protocol].registered &&
1161 try_module_get(nl_table[protocol].module))
1162 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001163 else
1164 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001165 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001166 bind = nl_table[protocol].bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001167 unbind = nl_table[protocol].unbind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001168 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001169
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001170 if (err < 0)
1171 goto out;
1172
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001173 err = __netlink_create(net, sock, cb_mutex, protocol);
1174 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001175 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
David S. Miller6f756a82008-11-23 17:34:03 -08001177 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001178 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001179 local_bh_enable();
1180
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001181 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001182 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001183 nlk->netlink_bind = bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001184 nlk->netlink_unbind = unbind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001185out:
1186 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Patrick McHardyab33a172005-08-14 19:31:36 -07001188out_module:
1189 module_put(module);
1190 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
Thomas Graf21e49022015-01-02 23:00:22 +01001193static void deferred_put_nlk_sk(struct rcu_head *head)
1194{
1195 struct netlink_sock *nlk = container_of(head, struct netlink_sock, rcu);
1196
1197 sock_put(&nlk->sk);
1198}
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200static int netlink_release(struct socket *sock)
1201{
1202 struct sock *sk = sock->sk;
1203 struct netlink_sock *nlk;
1204
1205 if (!sk)
1206 return 0;
1207
1208 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001209 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 nlk = nlk_sk(sk);
1211
Herbert Xu3f660d62007-05-03 03:17:14 -07001212 /*
1213 * OK. Socket is unlinked, any packets that arrive now
1214 * will be purged.
1215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 sock->sk = NULL;
1218 wake_up_interruptible_all(&nlk->wait);
1219
1220 skb_queue_purge(&sk->sk_write_queue);
1221
Eric W. Biederman15e47302012-09-07 20:12:54 +00001222 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001224 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001226 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 };
Alan Sterne041c682006-03-27 01:16:30 -08001228 atomic_notifier_call_chain(&netlink_chain,
1229 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001230 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001231
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001232 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001233
Denis V. Lunevaed81562007-10-10 21:14:32 -07001234 if (netlink_is_kernel(sk)) {
Johannes Bergb10dcb32014-12-22 18:56:37 +01001235 netlink_table_grab();
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001236 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1237 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001238 struct listeners *old;
1239
1240 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1241 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1242 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001243 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001244 nl_table[sk->sk_protocol].bind = NULL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001245 nl_table[sk->sk_protocol].unbind = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001246 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001247 nl_table[sk->sk_protocol].registered = 0;
1248 }
Johannes Bergb10dcb32014-12-22 18:56:37 +01001249 netlink_table_ungrab();
Eric Dumazet658cb352012-04-22 21:30:21 +00001250 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001251
Johannes Berg7d685362014-12-22 18:56:38 +01001252 if (nlk->netlink_unbind) {
1253 int i;
1254
1255 for (i = 0; i < nlk->ngroups; i++)
1256 if (test_bit(i, nlk->groups))
Johannes Berg023e2cf2014-12-23 21:00:06 +01001257 nlk->netlink_unbind(sock_net(sk), i + 1);
Johannes Berg7d685362014-12-22 18:56:38 +01001258 }
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001259 kfree(nlk->groups);
1260 nlk->groups = NULL;
1261
Eric Dumazet37558102008-11-24 14:05:22 -08001262 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001263 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001264 local_bh_enable();
Thomas Graf21e49022015-01-02 23:00:22 +01001265 call_rcu(&nlk->rcu, deferred_put_nlk_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return 0;
1267}
1268
1269static int netlink_autobind(struct socket *sock)
1270{
1271 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001272 struct net *net = sock_net(sk);
Gao fengda12c902013-06-06 14:49:11 +08001273 struct netlink_table *table = &nl_table[sk->sk_protocol];
Eric W. Biederman15e47302012-09-07 20:12:54 +00001274 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 int err;
1276 static s32 rover = -4097;
1277
1278retry:
1279 cond_resched();
Thomas Grafe3416942014-08-02 11:47:45 +02001280 rcu_read_lock();
1281 if (__netlink_lookup(table, portid, net)) {
1282 /* Bind collision, search negative portid values. */
1283 portid = rover--;
1284 if (rover > -4097)
1285 rover = -4097;
1286 rcu_read_unlock();
1287 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Thomas Grafe3416942014-08-02 11:47:45 +02001289 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Herbert Xu8ea65f42015-01-26 14:02:56 +11001291 err = netlink_insert(sk, 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,
Johannes Berg023e2cf2014-12-23 21:00:06 +01001421 struct sock *sk)
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001422{
Johannes Berg023e2cf2014-12-23 21:00:06 +01001423 struct netlink_sock *nlk = nlk_sk(sk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001424 int undo;
1425
1426 if (!nlk->netlink_unbind)
1427 return;
1428
1429 for (undo = 0; undo < group; undo++)
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09001430 if (test_bit(undo, &groups))
Johannes Berg023e2cf2014-12-23 21:00:06 +01001431 nlk->netlink_unbind(sock_net(sk), undo);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001432}
1433
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001434static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1435 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001438 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct netlink_sock *nlk = nlk_sk(sk);
1440 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1441 int err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001442 long unsigned int groups = nladdr->nl_groups;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001443
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001444 if (addr_len < sizeof(struct sockaddr_nl))
1445 return -EINVAL;
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (nladdr->nl_family != AF_NETLINK)
1448 return -EINVAL;
1449
1450 /* Only superuser is allowed to listen multicasts */
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001451 if (groups) {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001452 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001453 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001454 err = netlink_realloc_groups(sk);
1455 if (err)
1456 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001459 if (nlk->portid)
Eric W. Biederman15e47302012-09-07 20:12:54 +00001460 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return -EINVAL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001462
1463 if (nlk->netlink_bind && groups) {
1464 int group;
1465
1466 for (group = 0; group < nlk->ngroups; group++) {
1467 if (!test_bit(group, &groups))
1468 continue;
Johannes Berg023e2cf2014-12-23 21:00:06 +01001469 err = nlk->netlink_bind(net, group);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001470 if (!err)
1471 continue;
Johannes Berg023e2cf2014-12-23 21:00:06 +01001472 netlink_undo_bind(group, groups, sk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001473 return err;
1474 }
1475 }
1476
1477 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 err = nladdr->nl_pid ?
Herbert Xu8ea65f42015-01-26 14:02:56 +11001479 netlink_insert(sk, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 netlink_autobind(sock);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001481 if (err) {
Johannes Berg023e2cf2014-12-23 21:00:06 +01001482 netlink_undo_bind(nlk->ngroups, groups, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
1486
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001487 if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return 0;
1489
1490 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001491 netlink_update_subscriptions(sk, nlk->subscriptions +
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001492 hweight32(groups) -
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001493 hweight32(nlk->groups[0]));
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001494 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001495 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 netlink_table_ungrab();
1497
1498 return 0;
1499}
1500
1501static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1502 int alen, int flags)
1503{
1504 int err = 0;
1505 struct sock *sk = sock->sk;
1506 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001507 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Changli Gao6503d962010-03-31 22:58:26 +00001509 if (alen < sizeof(addr->sa_family))
1510 return -EINVAL;
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (addr->sa_family == AF_UNSPEC) {
1513 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001514 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001515 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 return 0;
1517 }
1518 if (addr->sa_family != AF_NETLINK)
1519 return -EINVAL;
1520
Mike Pecovnik46833a82014-02-24 21:11:16 +01001521 if ((nladdr->nl_groups || nladdr->nl_pid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001522 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return -EPERM;
1524
Eric W. Biederman15e47302012-09-07 20:12:54 +00001525 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 err = netlink_autobind(sock);
1527
1528 if (err == 0) {
1529 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001530 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001531 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533
1534 return err;
1535}
1536
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001537static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1538 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct sock *sk = sock->sk;
1541 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001542 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 nladdr->nl_family = AF_NETLINK;
1545 nladdr->nl_pad = 0;
1546 *addr_len = sizeof(*nladdr);
1547
1548 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001549 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001550 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001552 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001553 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555 return 0;
1556}
1557
Eric W. Biederman15e47302012-09-07 20:12:54 +00001558static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct sock *sock;
1561 struct netlink_sock *nlk;
1562
Eric W. Biederman15e47302012-09-07 20:12:54 +00001563 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (!sock)
1565 return ERR_PTR(-ECONNREFUSED);
1566
1567 /* Don't bother queuing skb if kernel socket has no input function */
1568 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001569 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001570 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 sock_put(sock);
1572 return ERR_PTR(-ECONNREFUSED);
1573 }
1574 return sock;
1575}
1576
1577struct sock *netlink_getsockbyfilp(struct file *filp)
1578{
Al Viro496ad9a2013-01-23 17:07:38 -05001579 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 struct sock *sock;
1581
1582 if (!S_ISSOCK(inode->i_mode))
1583 return ERR_PTR(-ENOTSOCK);
1584
1585 sock = SOCKET_I(inode)->sk;
1586 if (sock->sk_family != AF_NETLINK)
1587 return ERR_PTR(-EINVAL);
1588
1589 sock_hold(sock);
1590 return sock;
1591}
1592
Pablo Neira3a365152013-06-28 03:04:23 +02001593static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1594 int broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001595{
1596 struct sk_buff *skb;
1597 void *data;
1598
Pablo Neira3a365152013-06-28 03:04:23 +02001599 if (size <= NLMSG_GOODSIZE || broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001600 return alloc_skb(size, GFP_KERNEL);
1601
Pablo Neira3a365152013-06-28 03:04:23 +02001602 size = SKB_DATA_ALIGN(size) +
1603 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001604
1605 data = vmalloc(size);
1606 if (data == NULL)
Pablo Neira3a365152013-06-28 03:04:23 +02001607 return NULL;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001608
Pablo Neira3a365152013-06-28 03:04:23 +02001609 skb = build_skb(data, size);
1610 if (skb == NULL)
1611 vfree(data);
1612 else {
1613 skb->head_frag = 0;
1614 skb->destructor = netlink_skb_destructor;
1615 }
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001616
1617 return skb;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001618}
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620/*
1621 * Attach a skb to a netlink socket.
1622 * The caller must hold a reference to the destination socket. On error, the
1623 * reference is dropped. The skb is not send to the destination, just all
1624 * all error checks are performed and memory in the queue is reserved.
1625 * Return values:
1626 * < 0: error. skb freed, reference to sock dropped.
1627 * 0: continue
1628 * 1: repeat lookup - reference dropped while waiting for socket memory.
1629 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001630int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001631 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
1633 struct netlink_sock *nlk;
1634
1635 nlk = nlk_sk(sk);
1636
Patrick McHardy5fd96122013-04-17 06:47:03 +00001637 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1638 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
1639 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001641 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001642 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 netlink_overrun(sk);
1644 sock_put(sk);
1645 kfree_skb(skb);
1646 return -EAGAIN;
1647 }
1648
1649 __set_current_state(TASK_INTERRUPTIBLE);
1650 add_wait_queue(&nlk->wait, &wait);
1651
1652 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Patrick McHardycd967e02013-04-17 06:46:56 +00001653 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001655 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 __set_current_state(TASK_RUNNING);
1658 remove_wait_queue(&nlk->wait, &wait);
1659 sock_put(sk);
1660
1661 if (signal_pending(current)) {
1662 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001663 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 }
1665 return 1;
1666 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001667 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return 0;
1669}
1670
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001671static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 int len = skb->len;
1674
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001675 netlink_deliver_tap(skb);
1676
Patrick McHardyf9c22882013-04-17 06:47:04 +00001677#ifdef CONFIG_NETLINK_MMAP
1678 if (netlink_skb_is_mmaped(skb))
1679 netlink_queue_mmaped_skb(sk, skb);
1680 else if (netlink_rx_is_mmaped(sk))
1681 netlink_ring_set_copied(sk, skb);
1682 else
1683#endif /* CONFIG_NETLINK_MMAP */
1684 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -04001685 sk->sk_data_ready(sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001686 return len;
1687}
1688
1689int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1690{
1691 int len = __netlink_sendskb(sk, skb);
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 sock_put(sk);
1694 return len;
1695}
1696
1697void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1698{
1699 kfree_skb(skb);
1700 sock_put(sk);
1701}
1702
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001703static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 int delta;
1706
Patrick McHardy1298ca42013-04-17 06:46:59 +00001707 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001708 if (netlink_skb_is_mmaped(skb))
1709 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001711 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001712 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return skb;
1714
1715 if (skb_shared(skb)) {
1716 struct sk_buff *nskb = skb_clone(skb, allocation);
1717 if (!nskb)
1718 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001719 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 skb = nskb;
1721 }
1722
1723 if (!pskb_expand_head(skb, 0, -delta, allocation))
1724 skb->truesize -= delta;
1725
1726 return skb;
1727}
1728
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001729static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1730 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001731{
1732 int ret;
1733 struct netlink_sock *nlk = nlk_sk(sk);
1734
1735 ret = -ECONNREFUSED;
1736 if (nlk->netlink_rcv != NULL) {
1737 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001738 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001739 NETLINK_CB(skb).sk = ssk;
Daniel Borkmann73bfd372013-12-23 14:35:55 +01001740 netlink_deliver_tap_kernel(sk, ssk, skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001741 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001742 consume_skb(skb);
1743 } else {
1744 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001745 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001746 sock_put(sk);
1747 return ret;
1748}
1749
1750int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001751 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
1753 struct sock *sk;
1754 int err;
1755 long timeo;
1756
1757 skb = netlink_trim(skb, gfp_any());
1758
1759 timeo = sock_sndtimeo(ssk, nonblock);
1760retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001761 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (IS_ERR(sk)) {
1763 kfree_skb(skb);
1764 return PTR_ERR(sk);
1765 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001766 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001767 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001768
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001769 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001770 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001771 kfree_skb(skb);
1772 sock_put(sk);
1773 return err;
1774 }
1775
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001776 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (err == 1)
1778 goto retry;
1779 if (err)
1780 return err;
1781
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001782 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001784EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Patrick McHardyf9c22882013-04-17 06:47:04 +00001786struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1787 u32 dst_portid, gfp_t gfp_mask)
1788{
1789#ifdef CONFIG_NETLINK_MMAP
1790 struct sock *sk = NULL;
1791 struct sk_buff *skb;
1792 struct netlink_ring *ring;
1793 struct nl_mmap_hdr *hdr;
1794 unsigned int maxlen;
1795
1796 sk = netlink_getsockbyportid(ssk, dst_portid);
1797 if (IS_ERR(sk))
1798 goto out;
1799
1800 ring = &nlk_sk(sk)->rx_ring;
1801 /* fast-path without atomic ops for common case: non-mmaped receiver */
1802 if (ring->pg_vec == NULL)
1803 goto out_put;
1804
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001805 if (ring->frame_size - NL_MMAP_HDRLEN < size)
1806 goto out_put;
1807
Patrick McHardyf9c22882013-04-17 06:47:04 +00001808 skb = alloc_skb_head(gfp_mask);
1809 if (skb == NULL)
1810 goto err1;
1811
1812 spin_lock_bh(&sk->sk_receive_queue.lock);
1813 /* check again under lock */
1814 if (ring->pg_vec == NULL)
1815 goto out_free;
1816
Thomas Grafaae9f0e2013-11-30 13:21:31 +01001817 /* check again under lock */
Patrick McHardyf9c22882013-04-17 06:47:04 +00001818 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1819 if (maxlen < size)
1820 goto out_free;
1821
1822 netlink_forward_ring(ring);
1823 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1824 if (hdr == NULL)
1825 goto err2;
1826 netlink_ring_setup_skb(skb, sk, ring, hdr);
1827 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1828 atomic_inc(&ring->pending);
1829 netlink_increment_head(ring);
1830
1831 spin_unlock_bh(&sk->sk_receive_queue.lock);
1832 return skb;
1833
1834err2:
1835 kfree_skb(skb);
1836 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001837 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001838err1:
1839 sock_put(sk);
1840 return NULL;
1841
1842out_free:
1843 kfree_skb(skb);
1844 spin_unlock_bh(&sk->sk_receive_queue.lock);
1845out_put:
1846 sock_put(sk);
1847out:
1848#endif
1849 return alloc_skb(size, gfp_mask);
1850}
1851EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1852
Patrick McHardy4277a082006-03-20 18:52:01 -08001853int netlink_has_listeners(struct sock *sk, unsigned int group)
1854{
1855 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001856 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001857
Denis V. Lunevaed81562007-10-10 21:14:32 -07001858 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001859
1860 rcu_read_lock();
1861 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1862
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001863 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001864 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001865
1866 rcu_read_unlock();
1867
Patrick McHardy4277a082006-03-20 18:52:01 -08001868 return res;
1869}
1870EXPORT_SYMBOL_GPL(netlink_has_listeners);
1871
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001872static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 struct netlink_sock *nlk = nlk_sk(sk);
1875
1876 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Patrick McHardycd967e02013-04-17 06:46:56 +00001877 !test_bit(NETLINK_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001878 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001879 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001880 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882 return -1;
1883}
1884
1885struct netlink_broadcast_data {
1886 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001887 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001888 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 u32 group;
1890 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001891 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 int congested;
1893 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001894 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001896 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1897 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898};
1899
Rami Rosen46c95212014-07-01 21:17:35 +03001900static void do_one_broadcast(struct sock *sk,
1901 struct netlink_broadcast_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
1903 struct netlink_sock *nlk = nlk_sk(sk);
1904 int val;
1905
1906 if (p->exclude_sk == sk)
Rami Rosen46c95212014-07-01 21:17:35 +03001907 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Eric W. Biederman15e47302012-09-07 20:12:54 +00001909 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001910 !test_bit(p->group - 1, nlk->groups))
Rami Rosen46c95212014-07-01 21:17:35 +03001911 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001913 if (!net_eq(sock_net(sk), p->net))
Rami Rosen46c95212014-07-01 21:17:35 +03001914 return;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 if (p->failure) {
1917 netlink_overrun(sk);
Rami Rosen46c95212014-07-01 21:17:35 +03001918 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
1920
1921 sock_hold(sk);
1922 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001923 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 p->skb2 = skb_clone(p->skb, p->allocation);
1925 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001926 p->skb2 = skb_get(p->skb);
1927 /*
1928 * skb ownership may have been set when
1929 * delivered to a previous socket.
1930 */
1931 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933 }
1934 if (p->skb2 == NULL) {
1935 netlink_overrun(sk);
1936 /* Clone failed. Notify ALL listeners. */
1937 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001938 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1939 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001940 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1941 kfree_skb(p->skb2);
1942 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001943 } else if (sk_filter(sk, p->skb2)) {
1944 kfree_skb(p->skb2);
1945 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1947 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001948 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1949 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 } else {
1951 p->congested |= val;
1952 p->delivered = 1;
1953 p->skb2 = NULL;
1954 }
1955 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
Eric W. Biederman15e47302012-09-07 20:12:54 +00001958int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001959 u32 group, gfp_t allocation,
1960 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1961 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001963 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 struct sock *sk;
1966
1967 skb = netlink_trim(skb, allocation);
1968
1969 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001970 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001971 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 info.group = group;
1973 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001974 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 info.congested = 0;
1976 info.delivered = 0;
1977 info.allocation = allocation;
1978 info.skb = skb;
1979 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001980 info.tx_filter = filter;
1981 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 /* While we sleep in clone, do not allow to change socket list */
1984
1985 netlink_lock_table();
1986
Sasha Levinb67bfe02013-02-27 17:06:00 -08001987 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 do_one_broadcast(sk, &info);
1989
Neil Horman70d4bf62010-07-20 06:45:56 +00001990 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 netlink_unlock_table();
1993
Neil Horman70d4bf62010-07-20 06:45:56 +00001994 if (info.delivery_failure) {
1995 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001996 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001997 }
1998 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (info.delivered) {
2001 if (info.congested && (allocation & __GFP_WAIT))
2002 yield();
2003 return 0;
2004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return -ESRCH;
2006}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002007EXPORT_SYMBOL(netlink_broadcast_filtered);
2008
Eric W. Biederman15e47302012-09-07 20:12:54 +00002009int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002010 u32 group, gfp_t allocation)
2011{
Eric W. Biederman15e47302012-09-07 20:12:54 +00002012 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07002013 NULL, NULL);
2014}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002015EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017struct netlink_set_err_data {
2018 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002019 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 u32 group;
2021 int code;
2022};
2023
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00002024static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
2026 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002027 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 if (sk == p->exclude_sk)
2030 goto out;
2031
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08002032 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002033 goto out;
2034
Eric W. Biederman15e47302012-09-07 20:12:54 +00002035 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07002036 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 goto out;
2038
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002039 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
2040 ret = 1;
2041 goto out;
2042 }
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 sk->sk_err = p->code;
2045 sk->sk_error_report(sk);
2046out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002047 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002050/**
2051 * netlink_set_err - report error to broadcast listeners
2052 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00002053 * @portid: the PORTID of a process that we want to skip (if any)
Johannes Berg840e93f22013-11-19 10:35:40 +01002054 * @group: the broadcast group that will notice the error
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002055 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002056 *
2057 * This function returns the number of broadcast listeners that have set the
2058 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002059 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002060int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
2062 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002064 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002067 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002069 /* sk->sk_err wants a positive error value */
2070 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 read_lock(&nl_table_lock);
2073
Sasha Levinb67bfe02013-02-27 17:06:00 -08002074 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002075 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002078 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01002080EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Johannes Berg84659eb2007-07-18 15:47:05 -07002082/* must be called with netlink table grabbed */
2083static void netlink_update_socket_mc(struct netlink_sock *nlk,
2084 unsigned int group,
2085 int is_new)
2086{
2087 int old, new = !!is_new, subscriptions;
2088
2089 old = test_bit(group - 1, nlk->groups);
2090 subscriptions = nlk->subscriptions - old + new;
2091 if (new)
2092 __set_bit(group - 1, nlk->groups);
2093 else
2094 __clear_bit(group - 1, nlk->groups);
2095 netlink_update_subscriptions(&nlk->sk, subscriptions);
2096 netlink_update_listeners(&nlk->sk);
2097}
2098
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002099static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002100 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002101{
2102 struct sock *sk = sock->sk;
2103 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07002104 unsigned int val = 0;
2105 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002106
2107 if (level != SOL_NETLINK)
2108 return -ENOPROTOOPT;
2109
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002110 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
2111 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07002112 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002113 return -EFAULT;
2114
2115 switch (optname) {
2116 case NETLINK_PKTINFO:
2117 if (val)
2118 nlk->flags |= NETLINK_RECV_PKTINFO;
2119 else
2120 nlk->flags &= ~NETLINK_RECV_PKTINFO;
2121 err = 0;
2122 break;
2123 case NETLINK_ADD_MEMBERSHIP:
2124 case NETLINK_DROP_MEMBERSHIP: {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002125 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002126 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002127 err = netlink_realloc_groups(sk);
2128 if (err)
2129 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002130 if (!val || val - 1 >= nlk->ngroups)
2131 return -EINVAL;
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002132 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
Johannes Berg023e2cf2014-12-23 21:00:06 +01002133 err = nlk->netlink_bind(sock_net(sk), val);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04002134 if (err)
2135 return err;
2136 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002137 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07002138 netlink_update_socket_mc(nlk, val,
2139 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002140 netlink_table_ungrab();
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04002141 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
Johannes Berg023e2cf2014-12-23 21:00:06 +01002142 nlk->netlink_unbind(sock_net(sk), val);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00002143
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002144 err = 0;
2145 break;
2146 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002147 case NETLINK_BROADCAST_ERROR:
2148 if (val)
2149 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
2150 else
2151 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
2152 err = 0;
2153 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002154 case NETLINK_NO_ENOBUFS:
2155 if (val) {
2156 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
Patrick McHardycd967e02013-04-17 06:46:56 +00002157 clear_bit(NETLINK_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002158 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00002159 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002160 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002161 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002162 err = 0;
2163 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002164#ifdef CONFIG_NETLINK_MMAP
2165 case NETLINK_RX_RING:
2166 case NETLINK_TX_RING: {
2167 struct nl_mmap_req req;
2168
2169 /* Rings might consume more memory than queue limits, require
2170 * CAP_NET_ADMIN.
2171 */
2172 if (!capable(CAP_NET_ADMIN))
2173 return -EPERM;
2174 if (optlen < sizeof(req))
2175 return -EINVAL;
2176 if (copy_from_user(&req, optval, sizeof(req)))
2177 return -EFAULT;
2178 err = netlink_set_ring(sk, &req, false,
2179 optname == NETLINK_TX_RING);
2180 break;
2181 }
2182#endif /* CONFIG_NETLINK_MMAP */
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002183 default:
2184 err = -ENOPROTOOPT;
2185 }
2186 return err;
2187}
2188
2189static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002190 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002191{
2192 struct sock *sk = sock->sk;
2193 struct netlink_sock *nlk = nlk_sk(sk);
2194 int len, val, err;
2195
2196 if (level != SOL_NETLINK)
2197 return -ENOPROTOOPT;
2198
2199 if (get_user(len, optlen))
2200 return -EFAULT;
2201 if (len < 0)
2202 return -EINVAL;
2203
2204 switch (optname) {
2205 case NETLINK_PKTINFO:
2206 if (len < sizeof(int))
2207 return -EINVAL;
2208 len = sizeof(int);
2209 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002210 if (put_user(len, optlen) ||
2211 put_user(val, optval))
2212 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002213 err = 0;
2214 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002215 case NETLINK_BROADCAST_ERROR:
2216 if (len < sizeof(int))
2217 return -EINVAL;
2218 len = sizeof(int);
2219 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
2220 if (put_user(len, optlen) ||
2221 put_user(val, optval))
2222 return -EFAULT;
2223 err = 0;
2224 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002225 case NETLINK_NO_ENOBUFS:
2226 if (len < sizeof(int))
2227 return -EINVAL;
2228 len = sizeof(int);
2229 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
2230 if (put_user(len, optlen) ||
2231 put_user(val, optval))
2232 return -EFAULT;
2233 err = 0;
2234 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002235 default:
2236 err = -ENOPROTOOPT;
2237 }
2238 return err;
2239}
2240
2241static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2242{
2243 struct nl_pktinfo info;
2244
2245 info.group = NETLINK_CB(skb).dst_group;
2246 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2247}
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
2250 struct msghdr *msg, size_t len)
2251{
2252 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2253 struct sock *sk = sock->sk;
2254 struct netlink_sock *nlk = nlk_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002255 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002256 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002257 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 struct sk_buff *skb;
2259 int err;
2260 struct scm_cookie scm;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002261 u32 netlink_skb_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 if (msg->msg_flags&MSG_OOB)
2264 return -EOPNOTSUPP;
2265
Eric Dumazet16e57262011-09-19 05:52:27 +00002266 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00002268
Eric Dumazete0e3cea2012-08-21 06:21:17 +00002269 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (err < 0)
2271 return err;
2272
2273 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002274 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002276 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002277 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002278 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002279 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002280 if ((dst_group || dst_portid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07002281 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002282 goto out;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002283 netlink_skb_flags |= NETLINK_SKB_DST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002285 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002286 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
2288
Eric W. Biederman15e47302012-09-07 20:12:54 +00002289 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 err = netlink_autobind(sock);
2291 if (err)
2292 goto out;
2293 }
2294
Patrick McHardy5fd96122013-04-17 06:47:03 +00002295 if (netlink_tx_is_mmaped(sk) &&
Al Viroc0371da2014-11-24 10:42:55 -05002296 msg->msg_iter.iov->iov_base == NULL) {
Patrick McHardy5fd96122013-04-17 06:47:03 +00002297 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2298 siocb);
2299 goto out;
2300 }
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 err = -EMSGSIZE;
2303 if (len > sk->sk_sndbuf - 32)
2304 goto out;
2305 err = -ENOBUFS;
Pablo Neira3a365152013-06-28 03:04:23 +02002306 skb = netlink_alloc_large_skb(len, dst_group);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002307 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 goto out;
2309
Eric W. Biederman15e47302012-09-07 20:12:54 +00002310 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002311 NETLINK_CB(skb).dst_group = dst_group;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00002312 NETLINK_CB(skb).creds = siocb->scm->creds;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07002313 NETLINK_CB(skb).flags = netlink_skb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 err = -EFAULT;
Al Viro6ce8e9c2014-04-06 21:25:44 -04002316 if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 kfree_skb(skb);
2318 goto out;
2319 }
2320
2321 err = security_netlink_send(sk, skb);
2322 if (err) {
2323 kfree_skb(skb);
2324 goto out;
2325 }
2326
Patrick McHardyd629b832005-08-14 19:27:50 -07002327 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002329 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002331 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002334 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 return err;
2336}
2337
2338static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
2339 struct msghdr *msg, size_t len,
2340 int flags)
2341{
2342 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2343 struct scm_cookie scm;
2344 struct sock *sk = sock->sk;
2345 struct netlink_sock *nlk = nlk_sk(sk);
2346 int noblock = flags&MSG_DONTWAIT;
2347 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002348 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002349 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351 if (flags&MSG_OOB)
2352 return -EOPNOTSUPP;
2353
2354 copied = 0;
2355
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002356 skb = skb_recv_datagram(sk, flags, noblock, &err);
2357 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 goto out;
2359
Johannes Berg68d6ac62010-08-15 21:20:44 +00002360 data_skb = skb;
2361
Johannes Berg1dacc762009-07-01 11:26:02 +00002362#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2363 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002364 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002365 * If this skb has a frag_list, then here that means that we
2366 * will have to use the frag_list skb's data for compat tasks
2367 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002368 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002369 * If we need to send the compat skb, assign it to the
2370 * 'data_skb' variable so that it will be used below for data
2371 * copying. We keep 'skb' for everything else, including
2372 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002373 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002374 if (flags & MSG_CMSG_COMPAT)
2375 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002376 }
2377#endif
2378
Eric Dumazet9063e212014-03-07 12:02:33 -08002379 /* Record the max length of recvmsg() calls for future allocations */
2380 nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
2381 nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
2382 16384);
2383
Johannes Berg68d6ac62010-08-15 21:20:44 +00002384 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (len < copied) {
2386 msg->msg_flags |= MSG_TRUNC;
2387 copied = len;
2388 }
2389
Johannes Berg68d6ac62010-08-15 21:20:44 +00002390 skb_reset_transport_header(data_skb);
David S. Miller51f3d022014-11-05 16:46:40 -05002391 err = skb_copy_datagram_msg(data_skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
2393 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002394 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 addr->nl_family = AF_NETLINK;
2396 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002397 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002398 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 msg->msg_namelen = sizeof(*addr);
2400 }
2401
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002402 if (nlk->flags & NETLINK_RECV_PKTINFO)
2403 netlink_cmsg_recv_pktinfo(msg, skb);
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (NULL == siocb->scm) {
2406 memset(&scm, 0, sizeof(scm));
2407 siocb->scm = &scm;
2408 }
2409 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002410 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002411 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 skb_free_datagram(sk, skb);
2414
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002415 if (nlk->cb_running &&
2416 atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
Andrey Vaginb44d2112011-02-21 02:40:47 +00002417 ret = netlink_dump(sk);
2418 if (ret) {
Ben Pfaffac30ef82014-07-09 10:31:22 -07002419 sk->sk_err = -ret;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002420 sk->sk_error_report(sk);
2421 }
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425out:
2426 netlink_rcv_wake(sk);
2427 return err ? : copied;
2428}
2429
David S. Miller676d2362014-04-11 16:15:36 -04002430static void netlink_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002432 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
2435/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002436 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 * complete set of kernel non-blocking support for message
2438 * queueing.
2439 */
2440
2441struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002442__netlink_kernel_create(struct net *net, int unit, struct module *module,
2443 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
2445 struct socket *sock;
2446 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002447 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002448 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002449 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2450 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002452 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002454 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 return NULL;
2456
2457 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2458 return NULL;
2459
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002460 /*
2461 * We have to just have a reference on the net from sk, but don't
2462 * get_net it. Besides, we cannot get and then put the net here.
2463 * So we create one inside init_net and the move it to net.
2464 */
2465
2466 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
2467 goto out_sock_release_nosk;
2468
2469 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08002470 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002471
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002472 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002473 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002474 else
2475 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002476
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002477 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002478 if (!listeners)
2479 goto out_sock_release;
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002482 if (cfg && cfg->input)
2483 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Herbert Xu8ea65f42015-01-26 14:02:56 +11002485 if (netlink_insert(sk, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002486 goto out_sock_release;
2487
2488 nlk = nlk_sk(sk);
2489 nlk->flags |= NETLINK_KERNEL_SOCKET;
2490
2491 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002492 if (!nl_table[unit].registered) {
2493 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002494 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002495 nl_table[unit].cb_mutex = cb_mutex;
2496 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002497 if (cfg) {
2498 nl_table[unit].bind = cfg->bind;
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09002499 nl_table[unit].unbind = cfg->unbind;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002500 nl_table[unit].flags = cfg->flags;
Gao fengda12c902013-06-06 14:49:11 +08002501 if (cfg->compare)
2502 nl_table[unit].compare = cfg->compare;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002503 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002504 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002505 } else {
2506 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002507 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002508 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002509 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002510 return sk;
2511
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002512out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002513 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002514 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002515 return NULL;
2516
2517out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002518 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002519 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002521EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002522
2523void
2524netlink_kernel_release(struct sock *sk)
2525{
Denis V. Lunevedf02082008-02-29 11:18:32 -08002526 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002527}
2528EXPORT_SYMBOL(netlink_kernel_release);
2529
Johannes Bergd136f1b2009-09-12 03:03:15 +00002530int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002531{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002532 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002533 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002534
2535 if (groups < 32)
2536 groups = 32;
2537
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002538 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002539 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2540 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002541 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002542 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002543 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2544 rcu_assign_pointer(tbl->listeners, new);
2545
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002546 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002547 }
2548 tbl->groups = groups;
2549
Johannes Bergd136f1b2009-09-12 03:03:15 +00002550 return 0;
2551}
2552
2553/**
2554 * netlink_change_ngroups - change number of multicast groups
2555 *
2556 * This changes the number of multicast groups that are available
2557 * on a certain netlink family. Note that it is not possible to
2558 * change the number of groups to below 32. Also note that it does
2559 * not implicitly call netlink_clear_multicast_users() when the
2560 * number of groups is reduced.
2561 *
2562 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2563 * @groups: The new number of groups.
2564 */
2565int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2566{
2567 int err;
2568
2569 netlink_table_grab();
2570 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002571 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002572
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002573 return err;
2574}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002575
Johannes Bergb8273572009-09-24 15:44:05 -07002576void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2577{
2578 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002579 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2580
Sasha Levinb67bfe02013-02-27 17:06:00 -08002581 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002582 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2583}
2584
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002585struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002586__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002587{
2588 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002589 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002590
Wang Yufen23b45672014-02-17 16:53:32 +08002591 nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size));
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002592 nlh->nlmsg_type = type;
2593 nlh->nlmsg_len = size;
2594 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002595 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002596 nlh->nlmsg_seq = seq;
2597 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002598 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002599 return nlh;
2600}
2601EXPORT_SYMBOL(__nlmsg_put);
2602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603/*
2604 * It looks a bit ugly.
2605 * It would be better to create kernel thread.
2606 */
2607
2608static int netlink_dump(struct sock *sk)
2609{
2610 struct netlink_sock *nlk = nlk_sk(sk);
2611 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002612 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002614 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002615 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002617 mutex_lock(nlk->cb_mutex);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002618 if (!nlk->cb_running) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002619 err = -EINVAL;
2620 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
2622
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002623 cb = &nlk->cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002624 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2625
Patrick McHardyf9c22882013-04-17 06:47:04 +00002626 if (!netlink_rx_is_mmaped(sk) &&
2627 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2628 goto errout_skb;
Eric Dumazet9063e212014-03-07 12:02:33 -08002629
2630 /* NLMSG_GOODSIZE is small to avoid high order allocations being
2631 * required, but it makes sense to _attempt_ a 16K bytes allocation
2632 * to reduce number of system calls on dump operations, if user
2633 * ever provided a big enough buffer.
2634 */
2635 if (alloc_size < nlk->max_recvmsg_len) {
2636 skb = netlink_alloc_skb(sk,
2637 nlk->max_recvmsg_len,
2638 nlk->portid,
2639 GFP_KERNEL |
2640 __GFP_NOWARN |
2641 __GFP_NORETRY);
2642 /* available room should be exact amount to avoid MSG_TRUNC */
2643 if (skb)
2644 skb_reserve(skb, skb_tailroom(skb) -
2645 nlk->max_recvmsg_len);
2646 }
2647 if (!skb)
2648 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid,
2649 GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002650 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002651 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002652 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 len = cb->dump(skb, cb);
2655
2656 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002657 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002658
2659 if (sk_filter(sk, skb))
2660 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002661 else
2662 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 return 0;
2664 }
2665
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002666 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2667 if (!nlh)
2668 goto errout_skb;
2669
Johannes Berg670dc282011-06-20 13:40:46 +02002670 nl_dump_check_consistent(cb, nlh);
2671
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002672 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2673
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002674 if (sk_filter(sk, skb))
2675 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002676 else
2677 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Thomas Grafa8f74b22005-11-10 02:25:52 +01002679 if (cb->done)
2680 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002682 nlk->cb_running = false;
2683 mutex_unlock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002684 module_put(cb->module);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002685 consume_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002687
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002688errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002689 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002690 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002691 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692}
2693
Gao feng6dc878a2012-10-04 20:15:48 +00002694int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2695 const struct nlmsghdr *nlh,
2696 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
2698 struct netlink_callback *cb;
2699 struct sock *sk;
2700 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002701 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Patrick McHardyf9c22882013-04-17 06:47:04 +00002703 /* Memory mapped dump requests need to be copied to avoid looping
2704 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2705 * a reference to the skb.
2706 */
2707 if (netlink_skb_is_mmaped(skb)) {
2708 skb = skb_copy(skb, GFP_KERNEL);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002709 if (skb == NULL)
Patrick McHardyf9c22882013-04-17 06:47:04 +00002710 return -ENOBUFS;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002711 } else
2712 atomic_inc(&skb->users);
2713
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002714 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2715 if (sk == NULL) {
2716 ret = -ECONNREFUSED;
2717 goto error_free;
2718 }
2719
2720 nlk = nlk_sk(sk);
2721 mutex_lock(nlk->cb_mutex);
2722 /* A dump is in progress... */
2723 if (nlk->cb_running) {
2724 ret = -EBUSY;
2725 goto error_unlock;
2726 }
2727 /* add reference of module which cb->dump belongs to */
2728 if (!try_module_get(control->module)) {
2729 ret = -EPROTONOSUPPORT;
2730 goto error_unlock;
2731 }
2732
2733 cb = &nlk->cb;
2734 memset(cb, 0, sizeof(*cb));
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002735 cb->dump = control->dump;
2736 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002738 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002739 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002740 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 cb->skb = skb;
2742
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002743 nlk->cb_running = true;
Gao feng6dc878a2012-10-04 20:15:48 +00002744
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002745 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Andrey Vaginb44d2112011-02-21 02:40:47 +00002747 ret = netlink_dump(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002749
Andrey Vaginb44d2112011-02-21 02:40:47 +00002750 if (ret)
2751 return ret;
2752
Denis V. Lunev5c582982007-10-23 20:29:25 -07002753 /* We successfully started a dump, by returning -EINTR we
2754 * signal not to send ACK even if it was requested.
2755 */
2756 return -EINTR;
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002757
2758error_unlock:
2759 sock_put(sk);
2760 mutex_unlock(nlk->cb_mutex);
2761error_free:
2762 kfree_skb(skb);
2763 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764}
Gao feng6dc878a2012-10-04 20:15:48 +00002765EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2768{
2769 struct sk_buff *skb;
2770 struct nlmsghdr *rep;
2771 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002772 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Thomas Graf339bf982006-11-10 14:10:15 -08002774 /* error messages get the original request appened */
2775 if (err)
2776 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Patrick McHardyf9c22882013-04-17 06:47:04 +00002778 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2779 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 if (!skb) {
2781 struct sock *sk;
2782
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002783 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002784 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002785 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (sk) {
2787 sk->sk_err = ENOBUFS;
2788 sk->sk_error_report(sk);
2789 sock_put(sk);
2790 }
2791 return;
2792 }
2793
Eric W. Biederman15e47302012-09-07 20:12:54 +00002794 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002795 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002796 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002798 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002799 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002801EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002803int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002804 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002805{
Thomas Graf82ace472005-11-10 02:25:53 +01002806 struct nlmsghdr *nlh;
2807 int err;
2808
2809 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002810 int msglen;
2811
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002812 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002813 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002814
Martin Murrayad8e4b72006-01-10 13:02:29 -08002815 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002816 return 0;
2817
Thomas Grafd35b6852007-03-22 23:28:46 -07002818 /* Only requests are handled by the kernel */
2819 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002820 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002821
Thomas Graf45e7ae72007-03-22 23:29:10 -07002822 /* Skip control messages */
2823 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002824 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002825
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002826 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002827 if (err == -EINTR)
2828 goto skip;
2829
2830ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002831 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002832 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002833
Denis V. Lunev5c582982007-10-23 20:29:25 -07002834skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002835 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002836 if (msglen > skb->len)
2837 msglen = skb->len;
2838 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002839 }
2840
2841 return 0;
2842}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002843EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002844
2845/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002846 * nlmsg_notify - send a notification netlink message
2847 * @sk: netlink socket to use
2848 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002849 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002850 * @group: destination multicast group or 0
2851 * @report: 1 to report back, 0 to disable
2852 * @flags: allocation flags
2853 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002854int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002855 unsigned int group, int report, gfp_t flags)
2856{
2857 int err = 0;
2858
2859 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002860 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002861
2862 if (report) {
2863 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002864 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002865 }
2866
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002867 /* errors reported via destination sk->sk_err, but propagate
2868 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002869 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002870 }
2871
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002872 if (report) {
2873 int err2;
2874
Eric W. Biederman15e47302012-09-07 20:12:54 +00002875 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002876 if (!err || err == -ESRCH)
2877 err = err2;
2878 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002879
2880 return err;
2881}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002882EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884#ifdef CONFIG_PROC_FS
2885struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002886 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 int link;
2888 int hash_idx;
2889};
2890
2891static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
2892{
2893 struct nl_seq_iter *iter = seq->private;
2894 int i, j;
Thomas Grafe3416942014-08-02 11:47:45 +02002895 struct netlink_sock *nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 loff_t off = 0;
2898
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002899 for (i = 0; i < MAX_LINKS; i++) {
Thomas Grafe3416942014-08-02 11:47:45 +02002900 struct rhashtable *ht = &nl_table[i].hash;
Eric Dumazet67a24ac2014-08-05 07:50:07 +02002901 const struct bucket_table *tbl = rht_dereference_rcu(ht->tbl, ht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Thomas Grafe3416942014-08-02 11:47:45 +02002903 for (j = 0; j < tbl->size; j++) {
Thomas Graf88d6ed12015-01-02 23:00:16 +01002904 struct rhash_head *node;
2905
2906 rht_for_each_entry_rcu(nlk, node, tbl, j, node) {
Thomas Grafe3416942014-08-02 11:47:45 +02002907 s = (struct sock *)nlk;
2908
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002909 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002910 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 if (off == pos) {
2912 iter->link = i;
2913 iter->hash_idx = j;
2914 return s;
2915 }
2916 ++off;
2917 }
2918 }
2919 }
2920 return NULL;
2921}
2922
2923static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Thomas Graf21e49022015-01-02 23:00:22 +01002924 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
Thomas Grafe3416942014-08-02 11:47:45 +02002926 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2928}
2929
2930static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2931{
Thomas Graf78fd1d02014-10-21 22:05:38 +02002932 struct rhashtable *ht;
Thomas Graf88d6ed12015-01-02 23:00:16 +01002933 const struct bucket_table *tbl;
2934 struct rhash_head *node;
Thomas Grafe3416942014-08-02 11:47:45 +02002935 struct netlink_sock *nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 struct nl_seq_iter *iter;
Gao fengda12c902013-06-06 14:49:11 +08002937 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 int i, j;
2939
2940 ++*pos;
2941
2942 if (v == SEQ_START_TOKEN)
2943 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002944
Gao fengda12c902013-06-06 14:49:11 +08002945 net = seq_file_net(seq);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002946 iter = seq->private;
Thomas Grafe3416942014-08-02 11:47:45 +02002947 nlk = v;
2948
Thomas Graf78fd1d02014-10-21 22:05:38 +02002949 i = iter->link;
2950 ht = &nl_table[i].hash;
Thomas Graf88d6ed12015-01-02 23:00:16 +01002951 tbl = rht_dereference_rcu(ht->tbl, ht);
2952 rht_for_each_entry_rcu_continue(nlk, node, nlk->node.next, tbl, iter->hash_idx, node)
Thomas Grafe3416942014-08-02 11:47:45 +02002953 if (net_eq(sock_net((struct sock *)nlk), net))
2954 return nlk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 j = iter->hash_idx + 1;
2957
2958 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Thomas Grafe3416942014-08-02 11:47:45 +02002960 for (; j < tbl->size; j++) {
Thomas Graf88d6ed12015-01-02 23:00:16 +01002961 rht_for_each_entry_rcu(nlk, node, tbl, j, node) {
Thomas Grafe3416942014-08-02 11:47:45 +02002962 if (net_eq(sock_net((struct sock *)nlk), net)) {
2963 iter->link = i;
2964 iter->hash_idx = j;
2965 return nlk;
2966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
2968 }
2969
2970 j = 0;
2971 } while (++i < MAX_LINKS);
2972
2973 return NULL;
2974}
2975
2976static void netlink_seq_stop(struct seq_file *seq, void *v)
Thomas Graf21e49022015-01-02 23:00:22 +01002977 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978{
Thomas Grafe3416942014-08-02 11:47:45 +02002979 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980}
2981
2982
2983static int netlink_seq_show(struct seq_file *seq, void *v)
2984{
Eric Dumazet658cb352012-04-22 21:30:21 +00002985 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 seq_puts(seq,
2987 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002988 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002989 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 struct sock *s = v;
2991 struct netlink_sock *nlk = nlk_sk(s);
2992
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002993 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 s,
2995 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002996 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002997 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002998 sk_rmem_alloc_get(s),
2999 sk_wmem_alloc_get(s),
Pravin B Shelar16b304f2013-08-15 15:31:06 -07003000 nlk->cb_running,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07003001 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00003002 atomic_read(&s->sk_drops),
3003 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 );
3005
3006 }
3007 return 0;
3008}
3009
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003010static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 .start = netlink_seq_start,
3012 .next = netlink_seq_next,
3013 .stop = netlink_seq_stop,
3014 .show = netlink_seq_show,
3015};
3016
3017
3018static int netlink_seq_open(struct inode *inode, struct file *file)
3019{
Denis V. Luneve372c412007-11-19 22:31:54 -08003020 return seq_open_net(inode, file, &netlink_seq_ops,
3021 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003022}
3023
Arjan van de Venda7071d2007-02-12 00:55:36 -08003024static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 .owner = THIS_MODULE,
3026 .open = netlink_seq_open,
3027 .read = seq_read,
3028 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003029 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030};
3031
3032#endif
3033
3034int netlink_register_notifier(struct notifier_block *nb)
3035{
Alan Sterne041c682006-03-27 01:16:30 -08003036 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003038EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040int netlink_unregister_notifier(struct notifier_block *nb)
3041{
Alan Sterne041c682006-03-27 01:16:30 -08003042 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08003044EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003045
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003046static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 .family = PF_NETLINK,
3048 .owner = THIS_MODULE,
3049 .release = netlink_release,
3050 .bind = netlink_bind,
3051 .connect = netlink_connect,
3052 .socketpair = sock_no_socketpair,
3053 .accept = sock_no_accept,
3054 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00003055 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 .ioctl = sock_no_ioctl,
3057 .listen = sock_no_listen,
3058 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07003059 .setsockopt = netlink_setsockopt,
3060 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 .sendmsg = netlink_sendmsg,
3062 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00003063 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 .sendpage = sock_no_sendpage,
3065};
3066
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003067static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 .family = PF_NETLINK,
3069 .create = netlink_create,
3070 .owner = THIS_MODULE, /* for consistency 8) */
3071};
3072
Pavel Emelyanov46650792007-10-08 20:38:39 -07003073static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003074{
3075#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003076 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003077 return -ENOMEM;
3078#endif
3079 return 0;
3080}
3081
Pavel Emelyanov46650792007-10-08 20:38:39 -07003082static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003083{
3084#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003085 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003086#endif
3087}
3088
David S. Millerb963ea82010-08-30 19:08:01 -07003089static void __init netlink_add_usersock_entry(void)
3090{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003091 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07003092 int groups = 32;
3093
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003094 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07003095 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003096 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07003097
3098 netlink_table_grab();
3099
3100 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003101 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07003102 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
3103 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00003104 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07003105
3106 netlink_table_ungrab();
3107}
3108
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003109static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003110 .init = netlink_net_init,
3111 .exit = netlink_net_exit,
3112};
3113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114static int __init netlink_proto_init(void)
3115{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 int err = proto_register(&netlink_proto, 0);
Thomas Grafe3416942014-08-02 11:47:45 +02003118 struct rhashtable_params ht_params = {
3119 .head_offset = offsetof(struct netlink_sock, node),
3120 .key_offset = offsetof(struct netlink_sock, portid),
3121 .key_len = sizeof(u32), /* portid */
Daniel Borkmann7f19fc52014-12-10 16:33:10 +01003122 .hashfn = jhash,
Thomas Grafe3416942014-08-02 11:47:45 +02003123 .max_shift = 16, /* 64K */
3124 .grow_decision = rht_grow_above_75,
3125 .shrink_decision = rht_shrink_below_30,
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);