blob: 0c61b59175dca5d9276c0fa65489d22cec39b435 [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>
Patrick McHardy9652e932013-04-17 06:47:02 +000061#include <asm/cacheflush.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010062
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020063#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <net/sock.h>
65#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010066#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Andrey Vagin0f29c762013-03-21 20:33:47 +040068#include "af_netlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet5c398dc2010-10-24 04:27:10 +000070struct listeners {
71 struct rcu_head rcu;
72 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000073};
74
Patrick McHardycd967e02013-04-17 06:46:56 +000075/* state bits */
76#define NETLINK_CONGESTED 0x0
77
78/* flags */
Patrick McHardy77247bb2005-08-14 19:27:13 -070079#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070080#define NETLINK_RECV_PKTINFO 0x2
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +000081#define NETLINK_BROADCAST_SEND_ERROR 0x4
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -070082#define NETLINK_RECV_NO_ENOBUFS 0x8
Patrick McHardy77247bb2005-08-14 19:27:13 -070083
David S. Miller035c4c12011-12-23 17:33:03 -050084static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -070085{
86 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
87}
88
Andrey Vagin0f29c762013-03-21 20:33:47 +040089struct netlink_table *nl_table;
90EXPORT_SYMBOL_GPL(nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
93
94static int netlink_dump(struct sock *sk);
Patrick McHardy9652e932013-04-17 06:47:02 +000095static void netlink_skb_destructor(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Andrey Vagin0f29c762013-03-21 20:33:47 +040097DEFINE_RWLOCK(nl_table_lock);
98EXPORT_SYMBOL_GPL(nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static atomic_t nl_table_users = ATOMIC_INIT(0);
100
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000101#define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
102
Alan Sterne041c682006-03-27 01:16:30 -0800103static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200105static DEFINE_SPINLOCK(netlink_tap_lock);
106static struct list_head netlink_tap_all __read_mostly;
107
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000108static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700109{
110 return group ? 1 << (group - 1) : 0;
111}
112
Eric W. Biederman15e47302012-09-07 20:12:54 +0000113static inline struct hlist_head *nl_portid_hashfn(struct nl_portid_hash *hash, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Eric W. Biederman15e47302012-09-07 20:12:54 +0000115 return &hash->table[jhash_1word(portid, hash->rnd) & hash->mask];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200118int netlink_add_tap(struct netlink_tap *nt)
119{
120 if (unlikely(nt->dev->type != ARPHRD_NETLINK))
121 return -EINVAL;
122
123 spin_lock(&netlink_tap_lock);
124 list_add_rcu(&nt->list, &netlink_tap_all);
125 spin_unlock(&netlink_tap_lock);
126
127 if (nt->module)
128 __module_get(nt->module);
129
130 return 0;
131}
132EXPORT_SYMBOL_GPL(netlink_add_tap);
133
134int __netlink_remove_tap(struct netlink_tap *nt)
135{
136 bool found = false;
137 struct netlink_tap *tmp;
138
139 spin_lock(&netlink_tap_lock);
140
141 list_for_each_entry(tmp, &netlink_tap_all, list) {
142 if (nt == tmp) {
143 list_del_rcu(&nt->list);
144 found = true;
145 goto out;
146 }
147 }
148
149 pr_warn("__netlink_remove_tap: %p not found\n", nt);
150out:
151 spin_unlock(&netlink_tap_lock);
152
153 if (found && nt->module)
154 module_put(nt->module);
155
156 return found ? 0 : -ENODEV;
157}
158EXPORT_SYMBOL_GPL(__netlink_remove_tap);
159
160int netlink_remove_tap(struct netlink_tap *nt)
161{
162 int ret;
163
164 ret = __netlink_remove_tap(nt);
165 synchronize_net();
166
167 return ret;
168}
169EXPORT_SYMBOL_GPL(netlink_remove_tap);
170
171static int __netlink_deliver_tap_skb(struct sk_buff *skb,
172 struct net_device *dev)
173{
174 struct sk_buff *nskb;
175 int ret = -ENOMEM;
176
177 dev_hold(dev);
178 nskb = skb_clone(skb, GFP_ATOMIC);
179 if (nskb) {
180 nskb->dev = dev;
181 ret = dev_queue_xmit(nskb);
182 if (unlikely(ret > 0))
183 ret = net_xmit_errno(ret);
184 }
185
186 dev_put(dev);
187 return ret;
188}
189
190static void __netlink_deliver_tap(struct sk_buff *skb)
191{
192 int ret;
193 struct netlink_tap *tmp;
194
195 list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
196 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
197 if (unlikely(ret))
198 break;
199 }
200}
201
202static void netlink_deliver_tap(struct sk_buff *skb)
203{
204 rcu_read_lock();
205
206 if (unlikely(!list_empty(&netlink_tap_all)))
207 __netlink_deliver_tap(skb);
208
209 rcu_read_unlock();
210}
211
Patrick McHardycd1df522013-04-17 06:47:05 +0000212static void netlink_overrun(struct sock *sk)
213{
214 struct netlink_sock *nlk = nlk_sk(sk);
215
216 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
217 if (!test_and_set_bit(NETLINK_CONGESTED, &nlk_sk(sk)->state)) {
218 sk->sk_err = ENOBUFS;
219 sk->sk_error_report(sk);
220 }
221 }
222 atomic_inc(&sk->sk_drops);
223}
224
225static void netlink_rcv_wake(struct sock *sk)
226{
227 struct netlink_sock *nlk = nlk_sk(sk);
228
229 if (skb_queue_empty(&sk->sk_receive_queue))
230 clear_bit(NETLINK_CONGESTED, &nlk->state);
231 if (!test_bit(NETLINK_CONGESTED, &nlk->state))
232 wake_up_interruptible(&nlk->wait);
233}
234
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000235#ifdef CONFIG_NETLINK_MMAP
Patrick McHardy9652e932013-04-17 06:47:02 +0000236static bool netlink_skb_is_mmaped(const struct sk_buff *skb)
237{
238 return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED;
239}
240
Patrick McHardyf9c22882013-04-17 06:47:04 +0000241static bool netlink_rx_is_mmaped(struct sock *sk)
242{
243 return nlk_sk(sk)->rx_ring.pg_vec != NULL;
244}
245
Patrick McHardy5fd96122013-04-17 06:47:03 +0000246static bool netlink_tx_is_mmaped(struct sock *sk)
247{
248 return nlk_sk(sk)->tx_ring.pg_vec != NULL;
249}
250
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000251static __pure struct page *pgvec_to_page(const void *addr)
252{
253 if (is_vmalloc_addr(addr))
254 return vmalloc_to_page(addr);
255 else
256 return virt_to_page(addr);
257}
258
259static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
260{
261 unsigned int i;
262
263 for (i = 0; i < len; i++) {
264 if (pg_vec[i] != NULL) {
265 if (is_vmalloc_addr(pg_vec[i]))
266 vfree(pg_vec[i]);
267 else
268 free_pages((unsigned long)pg_vec[i], order);
269 }
270 }
271 kfree(pg_vec);
272}
273
274static void *alloc_one_pg_vec_page(unsigned long order)
275{
276 void *buffer;
277 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
278 __GFP_NOWARN | __GFP_NORETRY;
279
280 buffer = (void *)__get_free_pages(gfp_flags, order);
281 if (buffer != NULL)
282 return buffer;
283
284 buffer = vzalloc((1 << order) * PAGE_SIZE);
285 if (buffer != NULL)
286 return buffer;
287
288 gfp_flags &= ~__GFP_NORETRY;
289 return (void *)__get_free_pages(gfp_flags, order);
290}
291
292static void **alloc_pg_vec(struct netlink_sock *nlk,
293 struct nl_mmap_req *req, unsigned int order)
294{
295 unsigned int block_nr = req->nm_block_nr;
296 unsigned int i;
297 void **pg_vec, *ptr;
298
299 pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
300 if (pg_vec == NULL)
301 return NULL;
302
303 for (i = 0; i < block_nr; i++) {
304 pg_vec[i] = ptr = alloc_one_pg_vec_page(order);
305 if (pg_vec[i] == NULL)
306 goto err1;
307 }
308
309 return pg_vec;
310err1:
311 free_pg_vec(pg_vec, order, block_nr);
312 return NULL;
313}
314
315static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
316 bool closing, bool tx_ring)
317{
318 struct netlink_sock *nlk = nlk_sk(sk);
319 struct netlink_ring *ring;
320 struct sk_buff_head *queue;
321 void **pg_vec = NULL;
322 unsigned int order = 0;
323 int err;
324
325 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
326 queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
327
328 if (!closing) {
329 if (atomic_read(&nlk->mapped))
330 return -EBUSY;
331 if (atomic_read(&ring->pending))
332 return -EBUSY;
333 }
334
335 if (req->nm_block_nr) {
336 if (ring->pg_vec != NULL)
337 return -EBUSY;
338
339 if ((int)req->nm_block_size <= 0)
340 return -EINVAL;
341 if (!IS_ALIGNED(req->nm_block_size, PAGE_SIZE))
342 return -EINVAL;
343 if (req->nm_frame_size < NL_MMAP_HDRLEN)
344 return -EINVAL;
345 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
346 return -EINVAL;
347
348 ring->frames_per_block = req->nm_block_size /
349 req->nm_frame_size;
350 if (ring->frames_per_block == 0)
351 return -EINVAL;
352 if (ring->frames_per_block * req->nm_block_nr !=
353 req->nm_frame_nr)
354 return -EINVAL;
355
356 order = get_order(req->nm_block_size);
357 pg_vec = alloc_pg_vec(nlk, req, order);
358 if (pg_vec == NULL)
359 return -ENOMEM;
360 } else {
361 if (req->nm_frame_nr)
362 return -EINVAL;
363 }
364
365 err = -EBUSY;
366 mutex_lock(&nlk->pg_vec_lock);
367 if (closing || atomic_read(&nlk->mapped) == 0) {
368 err = 0;
369 spin_lock_bh(&queue->lock);
370
371 ring->frame_max = req->nm_frame_nr - 1;
372 ring->head = 0;
373 ring->frame_size = req->nm_frame_size;
374 ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE;
375
376 swap(ring->pg_vec_len, req->nm_block_nr);
377 swap(ring->pg_vec_order, order);
378 swap(ring->pg_vec, pg_vec);
379
380 __skb_queue_purge(queue);
381 spin_unlock_bh(&queue->lock);
382
383 WARN_ON(atomic_read(&nlk->mapped));
384 }
385 mutex_unlock(&nlk->pg_vec_lock);
386
387 if (pg_vec)
388 free_pg_vec(pg_vec, order, req->nm_block_nr);
389 return err;
390}
391
392static void netlink_mm_open(struct vm_area_struct *vma)
393{
394 struct file *file = vma->vm_file;
395 struct socket *sock = file->private_data;
396 struct sock *sk = sock->sk;
397
398 if (sk)
399 atomic_inc(&nlk_sk(sk)->mapped);
400}
401
402static void netlink_mm_close(struct vm_area_struct *vma)
403{
404 struct file *file = vma->vm_file;
405 struct socket *sock = file->private_data;
406 struct sock *sk = sock->sk;
407
408 if (sk)
409 atomic_dec(&nlk_sk(sk)->mapped);
410}
411
412static const struct vm_operations_struct netlink_mmap_ops = {
413 .open = netlink_mm_open,
414 .close = netlink_mm_close,
415};
416
417static int netlink_mmap(struct file *file, struct socket *sock,
418 struct vm_area_struct *vma)
419{
420 struct sock *sk = sock->sk;
421 struct netlink_sock *nlk = nlk_sk(sk);
422 struct netlink_ring *ring;
423 unsigned long start, size, expected;
424 unsigned int i;
425 int err = -EINVAL;
426
427 if (vma->vm_pgoff)
428 return -EINVAL;
429
430 mutex_lock(&nlk->pg_vec_lock);
431
432 expected = 0;
433 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
434 if (ring->pg_vec == NULL)
435 continue;
436 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
437 }
438
439 if (expected == 0)
440 goto out;
441
442 size = vma->vm_end - vma->vm_start;
443 if (size != expected)
444 goto out;
445
446 start = vma->vm_start;
447 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
448 if (ring->pg_vec == NULL)
449 continue;
450
451 for (i = 0; i < ring->pg_vec_len; i++) {
452 struct page *page;
453 void *kaddr = ring->pg_vec[i];
454 unsigned int pg_num;
455
456 for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
457 page = pgvec_to_page(kaddr);
458 err = vm_insert_page(vma, start, page);
459 if (err < 0)
460 goto out;
461 start += PAGE_SIZE;
462 kaddr += PAGE_SIZE;
463 }
464 }
465 }
466
467 atomic_inc(&nlk->mapped);
468 vma->vm_ops = &netlink_mmap_ops;
469 err = 0;
470out:
471 mutex_unlock(&nlk->pg_vec_lock);
Patrick McHardy7cdbac72013-06-11 02:52:47 -0700472 return err;
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000473}
Patrick McHardy9652e932013-04-17 06:47:02 +0000474
475static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr)
476{
477#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
478 struct page *p_start, *p_end;
479
480 /* First page is flushed through netlink_{get,set}_status */
481 p_start = pgvec_to_page(hdr + PAGE_SIZE);
Stephen Rothwell1d5085c2013-04-23 17:40:35 +1000482 p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + hdr->nm_len - 1);
Patrick McHardy9652e932013-04-17 06:47:02 +0000483 while (p_start <= p_end) {
484 flush_dcache_page(p_start);
485 p_start++;
486 }
487#endif
488}
489
490static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
491{
492 smp_rmb();
493 flush_dcache_page(pgvec_to_page(hdr));
494 return hdr->nm_status;
495}
496
497static void netlink_set_status(struct nl_mmap_hdr *hdr,
498 enum nl_mmap_status status)
499{
500 hdr->nm_status = status;
501 flush_dcache_page(pgvec_to_page(hdr));
502 smp_wmb();
503}
504
505static struct nl_mmap_hdr *
506__netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
507{
508 unsigned int pg_vec_pos, frame_off;
509
510 pg_vec_pos = pos / ring->frames_per_block;
511 frame_off = pos % ring->frames_per_block;
512
513 return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
514}
515
516static struct nl_mmap_hdr *
517netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
518 enum nl_mmap_status status)
519{
520 struct nl_mmap_hdr *hdr;
521
522 hdr = __netlink_lookup_frame(ring, pos);
523 if (netlink_get_status(hdr) != status)
524 return NULL;
525
526 return hdr;
527}
528
529static struct nl_mmap_hdr *
530netlink_current_frame(const struct netlink_ring *ring,
531 enum nl_mmap_status status)
532{
533 return netlink_lookup_frame(ring, ring->head, status);
534}
535
536static struct nl_mmap_hdr *
537netlink_previous_frame(const struct netlink_ring *ring,
538 enum nl_mmap_status status)
539{
540 unsigned int prev;
541
542 prev = ring->head ? ring->head - 1 : ring->frame_max;
543 return netlink_lookup_frame(ring, prev, status);
544}
545
546static void netlink_increment_head(struct netlink_ring *ring)
547{
548 ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
549}
550
551static void netlink_forward_ring(struct netlink_ring *ring)
552{
553 unsigned int head = ring->head, pos = head;
554 const struct nl_mmap_hdr *hdr;
555
556 do {
557 hdr = __netlink_lookup_frame(ring, pos);
558 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
559 break;
560 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
561 break;
562 netlink_increment_head(ring);
563 } while (ring->head != head);
564}
565
Patrick McHardycd1df522013-04-17 06:47:05 +0000566static bool netlink_dump_space(struct netlink_sock *nlk)
567{
568 struct netlink_ring *ring = &nlk->rx_ring;
569 struct nl_mmap_hdr *hdr;
570 unsigned int n;
571
572 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
573 if (hdr == NULL)
574 return false;
575
576 n = ring->head + ring->frame_max / 2;
577 if (n > ring->frame_max)
578 n -= ring->frame_max;
579
580 hdr = __netlink_lookup_frame(ring, n);
581
582 return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
583}
584
Patrick McHardy9652e932013-04-17 06:47:02 +0000585static unsigned int netlink_poll(struct file *file, struct socket *sock,
586 poll_table *wait)
587{
588 struct sock *sk = sock->sk;
589 struct netlink_sock *nlk = nlk_sk(sk);
590 unsigned int mask;
Patrick McHardycd1df522013-04-17 06:47:05 +0000591 int err;
Patrick McHardy9652e932013-04-17 06:47:02 +0000592
Patrick McHardycd1df522013-04-17 06:47:05 +0000593 if (nlk->rx_ring.pg_vec != NULL) {
594 /* Memory mapped sockets don't call recvmsg(), so flow control
595 * for dumps is performed here. A dump is allowed to continue
596 * if at least half the ring is unused.
597 */
598 while (nlk->cb != NULL && netlink_dump_space(nlk)) {
599 err = netlink_dump(sk);
600 if (err < 0) {
601 sk->sk_err = err;
602 sk->sk_error_report(sk);
603 break;
604 }
605 }
606 netlink_rcv_wake(sk);
607 }
Patrick McHardy5fd96122013-04-17 06:47:03 +0000608
Patrick McHardy9652e932013-04-17 06:47:02 +0000609 mask = datagram_poll(file, sock, wait);
610
611 spin_lock_bh(&sk->sk_receive_queue.lock);
612 if (nlk->rx_ring.pg_vec) {
613 netlink_forward_ring(&nlk->rx_ring);
614 if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED))
615 mask |= POLLIN | POLLRDNORM;
616 }
617 spin_unlock_bh(&sk->sk_receive_queue.lock);
618
619 spin_lock_bh(&sk->sk_write_queue.lock);
620 if (nlk->tx_ring.pg_vec) {
621 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
622 mask |= POLLOUT | POLLWRNORM;
623 }
624 spin_unlock_bh(&sk->sk_write_queue.lock);
625
626 return mask;
627}
628
629static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
630{
631 return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
632}
633
634static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
635 struct netlink_ring *ring,
636 struct nl_mmap_hdr *hdr)
637{
638 unsigned int size;
639 void *data;
640
641 size = ring->frame_size - NL_MMAP_HDRLEN;
642 data = (void *)hdr + NL_MMAP_HDRLEN;
643
644 skb->head = data;
645 skb->data = data;
646 skb_reset_tail_pointer(skb);
647 skb->end = skb->tail + size;
648 skb->len = 0;
649
650 skb->destructor = netlink_skb_destructor;
651 NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
652 NETLINK_CB(skb).sk = sk;
653}
Patrick McHardy5fd96122013-04-17 06:47:03 +0000654
655static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
656 u32 dst_portid, u32 dst_group,
657 struct sock_iocb *siocb)
658{
659 struct netlink_sock *nlk = nlk_sk(sk);
660 struct netlink_ring *ring;
661 struct nl_mmap_hdr *hdr;
662 struct sk_buff *skb;
663 unsigned int maxlen;
664 bool excl = true;
665 int err = 0, len = 0;
666
667 /* Netlink messages are validated by the receiver before processing.
668 * In order to avoid userspace changing the contents of the message
669 * after validation, the socket and the ring may only be used by a
670 * single process, otherwise we fall back to copying.
671 */
672 if (atomic_long_read(&sk->sk_socket->file->f_count) > 2 ||
673 atomic_read(&nlk->mapped) > 1)
674 excl = false;
675
676 mutex_lock(&nlk->pg_vec_lock);
677
678 ring = &nlk->tx_ring;
679 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
680
681 do {
682 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
683 if (hdr == NULL) {
684 if (!(msg->msg_flags & MSG_DONTWAIT) &&
685 atomic_read(&nlk->tx_ring.pending))
686 schedule();
687 continue;
688 }
689 if (hdr->nm_len > maxlen) {
690 err = -EINVAL;
691 goto out;
692 }
693
694 netlink_frame_flush_dcache(hdr);
695
696 if (likely(dst_portid == 0 && dst_group == 0 && excl)) {
697 skb = alloc_skb_head(GFP_KERNEL);
698 if (skb == NULL) {
699 err = -ENOBUFS;
700 goto out;
701 }
702 sock_hold(sk);
703 netlink_ring_setup_skb(skb, sk, ring, hdr);
704 NETLINK_CB(skb).flags |= NETLINK_SKB_TX;
705 __skb_put(skb, hdr->nm_len);
706 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
707 atomic_inc(&ring->pending);
708 } else {
709 skb = alloc_skb(hdr->nm_len, GFP_KERNEL);
710 if (skb == NULL) {
711 err = -ENOBUFS;
712 goto out;
713 }
714 __skb_put(skb, hdr->nm_len);
715 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, hdr->nm_len);
716 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
717 }
718
719 netlink_increment_head(ring);
720
721 NETLINK_CB(skb).portid = nlk->portid;
722 NETLINK_CB(skb).dst_group = dst_group;
723 NETLINK_CB(skb).creds = siocb->scm->creds;
724
725 err = security_netlink_send(sk, skb);
726 if (err) {
727 kfree_skb(skb);
728 goto out;
729 }
730
731 if (unlikely(dst_group)) {
732 atomic_inc(&skb->users);
733 netlink_broadcast(sk, skb, dst_portid, dst_group,
734 GFP_KERNEL);
735 }
736 err = netlink_unicast(sk, skb, dst_portid,
737 msg->msg_flags & MSG_DONTWAIT);
738 if (err < 0)
739 goto out;
740 len += err;
741
742 } while (hdr != NULL ||
743 (!(msg->msg_flags & MSG_DONTWAIT) &&
744 atomic_read(&nlk->tx_ring.pending)));
745
746 if (len > 0)
747 err = len;
748out:
749 mutex_unlock(&nlk->pg_vec_lock);
750 return err;
751}
Patrick McHardyf9c22882013-04-17 06:47:04 +0000752
753static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
754{
755 struct nl_mmap_hdr *hdr;
756
757 hdr = netlink_mmap_hdr(skb);
758 hdr->nm_len = skb->len;
759 hdr->nm_group = NETLINK_CB(skb).dst_group;
760 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200761 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
762 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000763 netlink_frame_flush_dcache(hdr);
764 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
765
766 NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
767 kfree_skb(skb);
768}
769
770static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
771{
772 struct netlink_sock *nlk = nlk_sk(sk);
773 struct netlink_ring *ring = &nlk->rx_ring;
774 struct nl_mmap_hdr *hdr;
775
776 spin_lock_bh(&sk->sk_receive_queue.lock);
777 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
778 if (hdr == NULL) {
779 spin_unlock_bh(&sk->sk_receive_queue.lock);
780 kfree_skb(skb);
Patrick McHardycd1df522013-04-17 06:47:05 +0000781 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000782 return;
783 }
784 netlink_increment_head(ring);
785 __skb_queue_tail(&sk->sk_receive_queue, skb);
786 spin_unlock_bh(&sk->sk_receive_queue.lock);
787
788 hdr->nm_len = skb->len;
789 hdr->nm_group = NETLINK_CB(skb).dst_group;
790 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200791 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
792 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000793 netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
794}
795
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000796#else /* CONFIG_NETLINK_MMAP */
Patrick McHardy9652e932013-04-17 06:47:02 +0000797#define netlink_skb_is_mmaped(skb) false
Patrick McHardyf9c22882013-04-17 06:47:04 +0000798#define netlink_rx_is_mmaped(sk) false
Patrick McHardy5fd96122013-04-17 06:47:03 +0000799#define netlink_tx_is_mmaped(sk) false
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000800#define netlink_mmap sock_no_mmap
Patrick McHardy9652e932013-04-17 06:47:02 +0000801#define netlink_poll datagram_poll
Patrick McHardy5fd96122013-04-17 06:47:03 +0000802#define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, siocb) 0
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000803#endif /* CONFIG_NETLINK_MMAP */
804
Eric Dumazet658cb352012-04-22 21:30:21 +0000805static void netlink_destroy_callback(struct netlink_callback *cb)
806{
807 kfree_skb(cb->skb);
808 kfree(cb);
809}
810
Eric Dumazetbfb253c2012-04-22 21:30:29 +0000811static void netlink_consume_callback(struct netlink_callback *cb)
812{
813 consume_skb(cb->skb);
814 kfree(cb);
815}
816
Patrick McHardycf0a0182013-04-17 06:47:00 +0000817static void netlink_skb_destructor(struct sk_buff *skb)
818{
Patrick McHardy9652e932013-04-17 06:47:02 +0000819#ifdef CONFIG_NETLINK_MMAP
820 struct nl_mmap_hdr *hdr;
821 struct netlink_ring *ring;
822 struct sock *sk;
823
824 /* If a packet from the kernel to userspace was freed because of an
825 * error without being delivered to userspace, the kernel must reset
826 * the status. In the direction userspace to kernel, the status is
827 * always reset here after the packet was processed and freed.
828 */
829 if (netlink_skb_is_mmaped(skb)) {
830 hdr = netlink_mmap_hdr(skb);
831 sk = NETLINK_CB(skb).sk;
832
Patrick McHardy5fd96122013-04-17 06:47:03 +0000833 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
834 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
835 ring = &nlk_sk(sk)->tx_ring;
836 } else {
837 if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
838 hdr->nm_len = 0;
839 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
840 }
841 ring = &nlk_sk(sk)->rx_ring;
Patrick McHardy9652e932013-04-17 06:47:02 +0000842 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000843
844 WARN_ON(atomic_read(&ring->pending) == 0);
845 atomic_dec(&ring->pending);
846 sock_put(sk);
847
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000848 skb->head = NULL;
Patrick McHardy9652e932013-04-17 06:47:02 +0000849 }
850#endif
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000851 if (is_vmalloc_addr(skb->head)) {
Pablo Neira3a365152013-06-28 03:04:23 +0200852 if (!skb->cloned ||
853 !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
854 vfree(skb->head);
855
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000856 skb->head = NULL;
857 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000858 if (skb->sk != NULL)
859 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000860}
861
862static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
863{
864 WARN_ON(skb->sk != NULL);
865 skb->sk = sk;
866 skb->destructor = netlink_skb_destructor;
867 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
868 sk_mem_charge(sk, skb->truesize);
869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871static void netlink_sock_destruct(struct sock *sk)
872{
Herbert Xu3f660d62007-05-03 03:17:14 -0700873 struct netlink_sock *nlk = nlk_sk(sk);
874
Herbert Xu3f660d62007-05-03 03:17:14 -0700875 if (nlk->cb) {
876 if (nlk->cb->done)
877 nlk->cb->done(nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000878
879 module_put(nlk->cb->module);
Herbert Xu3f660d62007-05-03 03:17:14 -0700880 netlink_destroy_callback(nlk->cb);
881 }
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000884#ifdef CONFIG_NETLINK_MMAP
885 if (1) {
886 struct nl_mmap_req req;
887
888 memset(&req, 0, sizeof(req));
889 if (nlk->rx_ring.pg_vec)
890 netlink_set_ring(sk, &req, true, false);
891 memset(&req, 0, sizeof(req));
892 if (nlk->tx_ring.pg_vec)
893 netlink_set_ring(sk, &req, true, true);
894 }
895#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800898 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return;
900 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700901
902 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
903 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
904 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800907/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
908 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
910 * this, _but_ remember, it adds useless work on UP machines.
911 */
912
Johannes Bergd136f1b2009-09-12 03:03:15 +0000913void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800914 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000916 might_sleep();
917
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700918 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (atomic_read(&nl_table_users)) {
921 DECLARE_WAITQUEUE(wait, current);
922
923 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800924 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 set_current_state(TASK_UNINTERRUPTIBLE);
926 if (atomic_read(&nl_table_users) == 0)
927 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700928 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700930 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932
933 __set_current_state(TASK_RUNNING);
934 remove_wait_queue(&nl_table_wait, &wait);
935 }
936}
937
Johannes Bergd136f1b2009-09-12 03:03:15 +0000938void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800939 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700941 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 wake_up(&nl_table_wait);
943}
944
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800945static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946netlink_lock_table(void)
947{
948 /* read_lock() synchronizes us to netlink_table_grab */
949
950 read_lock(&nl_table_lock);
951 atomic_inc(&nl_table_users);
952 read_unlock(&nl_table_lock);
953}
954
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800955static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956netlink_unlock_table(void)
957{
958 if (atomic_dec_and_test(&nl_table_users))
959 wake_up(&nl_table_wait);
960}
961
Gao fengda12c902013-06-06 14:49:11 +0800962static bool netlink_compare(struct net *net, struct sock *sk)
963{
964 return net_eq(sock_net(sk), net);
965}
966
Eric W. Biederman15e47302012-09-07 20:12:54 +0000967static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Gao fengda12c902013-06-06 14:49:11 +0800969 struct netlink_table *table = &nl_table[protocol];
970 struct nl_portid_hash *hash = &table->hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct hlist_head *head;
972 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 read_lock(&nl_table_lock);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000975 head = nl_portid_hashfn(hash, portid);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800976 sk_for_each(sk, head) {
Gao fengda12c902013-06-06 14:49:11 +0800977 if (table->compare(net, sk) &&
978 (nlk_sk(sk)->portid == portid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 sock_hold(sk);
980 goto found;
981 }
982 }
983 sk = NULL;
984found:
985 read_unlock(&nl_table_lock);
986 return sk;
987}
988
Eric W. Biederman15e47302012-09-07 20:12:54 +0000989static struct hlist_head *nl_portid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
991 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800992 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 else
994 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800995 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
996 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Eric W. Biederman15e47302012-09-07 20:12:54 +0000999static void nl_portid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 if (size <= PAGE_SIZE)
1002 kfree(table);
1003 else
1004 free_pages((unsigned long)table, get_order(size));
1005}
1006
Eric W. Biederman15e47302012-09-07 20:12:54 +00001007static int nl_portid_hash_rehash(struct nl_portid_hash *hash, int grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 unsigned int omask, mask, shift;
1010 size_t osize, size;
1011 struct hlist_head *otable, *table;
1012 int i;
1013
1014 omask = mask = hash->mask;
1015 osize = size = (mask + 1) * sizeof(*table);
1016 shift = hash->shift;
1017
1018 if (grow) {
1019 if (++shift > hash->max_shift)
1020 return 0;
1021 mask = mask * 2 + 1;
1022 size *= 2;
1023 }
1024
Eric W. Biederman15e47302012-09-07 20:12:54 +00001025 table = nl_portid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (!table)
1027 return 0;
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 otable = hash->table;
1030 hash->table = table;
1031 hash->mask = mask;
1032 hash->shift = shift;
1033 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
1034
1035 for (i = 0; i <= omask; i++) {
1036 struct sock *sk;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001037 struct hlist_node *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Sasha Levinb67bfe02013-02-27 17:06:00 -08001039 sk_for_each_safe(sk, tmp, &otable[i])
Eric W. Biederman15e47302012-09-07 20:12:54 +00001040 __sk_add_node(sk, nl_portid_hashfn(hash, nlk_sk(sk)->portid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042
Eric W. Biederman15e47302012-09-07 20:12:54 +00001043 nl_portid_hash_free(otable, osize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 hash->rehash_time = jiffies + 10 * 60 * HZ;
1045 return 1;
1046}
1047
Eric W. Biederman15e47302012-09-07 20:12:54 +00001048static inline int nl_portid_hash_dilute(struct nl_portid_hash *hash, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 int avg = hash->entries >> hash->shift;
1051
Eric W. Biederman15e47302012-09-07 20:12:54 +00001052 if (unlikely(avg > 1) && nl_portid_hash_rehash(hash, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 1;
1054
1055 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001056 nl_portid_hash_rehash(hash, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return 1;
1058 }
1059
1060 return 0;
1061}
1062
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001063static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Patrick McHardy4277a082006-03-20 18:52:01 -08001065static void
1066netlink_update_listeners(struct sock *sk)
1067{
1068 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -08001069 unsigned long mask;
1070 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001071 struct listeners *listeners;
1072
1073 listeners = nl_deref_protected(tbl->listeners);
1074 if (!listeners)
1075 return;
Patrick McHardy4277a082006-03-20 18:52:01 -08001076
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001077 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001078 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001079 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001080 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
1081 mask |= nlk_sk(sk)->groups[i];
1082 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001083 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -08001084 }
1085 /* this function is only called with the netlink table "grabbed", which
1086 * makes sure updates are visible before bind or setsockopt return. */
1087}
1088
Eric W. Biederman15e47302012-09-07 20:12:54 +00001089static int netlink_insert(struct sock *sk, struct net *net, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Gao fengda12c902013-06-06 14:49:11 +08001091 struct netlink_table *table = &nl_table[sk->sk_protocol];
1092 struct nl_portid_hash *hash = &table->hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct hlist_head *head;
1094 int err = -EADDRINUSE;
1095 struct sock *osk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int len;
1097
1098 netlink_table_grab();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001099 head = nl_portid_hashfn(hash, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 len = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001101 sk_for_each(osk, head) {
Gao fengda12c902013-06-06 14:49:11 +08001102 if (table->compare(net, osk) &&
1103 (nlk_sk(osk)->portid == portid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 break;
1105 len++;
1106 }
Sasha Levinb67bfe02013-02-27 17:06:00 -08001107 if (osk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto err;
1109
1110 err = -EBUSY;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001111 if (nlk_sk(sk)->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 goto err;
1113
1114 err = -ENOMEM;
1115 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
1116 goto err;
1117
Eric W. Biederman15e47302012-09-07 20:12:54 +00001118 if (len && nl_portid_hash_dilute(hash, len))
1119 head = nl_portid_hashfn(hash, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 hash->entries++;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001121 nlk_sk(sk)->portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 sk_add_node(sk, head);
1123 err = 0;
1124
1125err:
1126 netlink_table_ungrab();
1127 return err;
1128}
1129
1130static void netlink_remove(struct sock *sk)
1131{
1132 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -07001133 if (sk_del_node_init(sk))
1134 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001135 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 __sk_del_bind_node(sk);
1137 netlink_table_ungrab();
1138}
1139
1140static struct proto netlink_proto = {
1141 .name = "NETLINK",
1142 .owner = THIS_MODULE,
1143 .obj_size = sizeof(struct netlink_sock),
1144};
1145
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001146static int __netlink_create(struct net *net, struct socket *sock,
1147 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 struct sock *sk;
1150 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001151
1152 sock->ops = &netlink_ops;
1153
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001154 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -07001155 if (!sk)
1156 return -ENOMEM;
1157
1158 sock_init_data(sock, sk);
1159
1160 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001161 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001162 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001163 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001164 nlk->cb_mutex = &nlk->cb_def_mutex;
1165 mutex_init(nlk->cb_mutex);
1166 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001167 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001168#ifdef CONFIG_NETLINK_MMAP
1169 mutex_init(&nlk->pg_vec_lock);
1170#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001171
1172 sk->sk_destruct = netlink_sock_destruct;
1173 sk->sk_protocol = protocol;
1174 return 0;
1175}
1176
Eric Paris3f378b62009-11-05 22:18:14 -08001177static int netlink_create(struct net *net, struct socket *sock, int protocol,
1178 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001179{
1180 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001181 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001182 struct netlink_sock *nlk;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001183 void (*bind)(int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001184 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 sock->state = SS_UNCONNECTED;
1187
1188 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1189 return -ESOCKTNOSUPPORT;
1190
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001191 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return -EPROTONOSUPPORT;
1193
Patrick McHardy77247bb2005-08-14 19:27:13 -07001194 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001195#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001196 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001197 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001198 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001199 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001200 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001201#endif
1202 if (nl_table[protocol].registered &&
1203 try_module_get(nl_table[protocol].module))
1204 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001205 else
1206 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001207 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001208 bind = nl_table[protocol].bind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001209 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001210
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001211 if (err < 0)
1212 goto out;
1213
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001214 err = __netlink_create(net, sock, cb_mutex, protocol);
1215 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001216 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
David S. Miller6f756a82008-11-23 17:34:03 -08001218 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001219 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001220 local_bh_enable();
1221
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001222 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001223 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001224 nlk->netlink_bind = bind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001225out:
1226 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Patrick McHardyab33a172005-08-14 19:31:36 -07001228out_module:
1229 module_put(module);
1230 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
1233static int netlink_release(struct socket *sock)
1234{
1235 struct sock *sk = sock->sk;
1236 struct netlink_sock *nlk;
1237
1238 if (!sk)
1239 return 0;
1240
1241 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001242 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 nlk = nlk_sk(sk);
1244
Herbert Xu3f660d62007-05-03 03:17:14 -07001245 /*
1246 * OK. Socket is unlinked, any packets that arrive now
1247 * will be purged.
1248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 sock->sk = NULL;
1251 wake_up_interruptible_all(&nlk->wait);
1252
1253 skb_queue_purge(&sk->sk_write_queue);
1254
Eric W. Biederman15e47302012-09-07 20:12:54 +00001255 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001257 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001259 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 };
Alan Sterne041c682006-03-27 01:16:30 -08001261 atomic_notifier_call_chain(&netlink_chain,
1262 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001263 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001264
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001265 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001266
Patrick McHardy4277a082006-03-20 18:52:01 -08001267 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -07001268 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001269 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1270 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001271 struct listeners *old;
1272
1273 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1274 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1275 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001276 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001277 nl_table[sk->sk_protocol].bind = NULL;
1278 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001279 nl_table[sk->sk_protocol].registered = 0;
1280 }
Eric Dumazet658cb352012-04-22 21:30:21 +00001281 } else if (nlk->subscriptions) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001282 netlink_update_listeners(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001283 }
Patrick McHardy4277a082006-03-20 18:52:01 -08001284 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -07001285
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001286 kfree(nlk->groups);
1287 nlk->groups = NULL;
1288
Eric Dumazet37558102008-11-24 14:05:22 -08001289 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001290 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001291 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 sock_put(sk);
1293 return 0;
1294}
1295
1296static int netlink_autobind(struct socket *sock)
1297{
1298 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001299 struct net *net = sock_net(sk);
Gao fengda12c902013-06-06 14:49:11 +08001300 struct netlink_table *table = &nl_table[sk->sk_protocol];
1301 struct nl_portid_hash *hash = &table->hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 struct hlist_head *head;
1303 struct sock *osk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001304 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 int err;
1306 static s32 rover = -4097;
1307
1308retry:
1309 cond_resched();
1310 netlink_table_grab();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001311 head = nl_portid_hashfn(hash, portid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001312 sk_for_each(osk, head) {
Gao fengda12c902013-06-06 14:49:11 +08001313 if (!table->compare(net, osk))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001314 continue;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001315 if (nlk_sk(osk)->portid == portid) {
1316 /* Bind collision, search negative portid values. */
1317 portid = rover--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (rover > -4097)
1319 rover = -4097;
1320 netlink_table_ungrab();
1321 goto retry;
1322 }
1323 }
1324 netlink_table_ungrab();
1325
Eric W. Biederman15e47302012-09-07 20:12:54 +00001326 err = netlink_insert(sk, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (err == -EADDRINUSE)
1328 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -07001329
1330 /* If 2 threads race to autobind, that is fine. */
1331 if (err == -EBUSY)
1332 err = 0;
1333
1334 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001337static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001338{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001339 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +00001340 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001341}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001343static void
1344netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1345{
1346 struct netlink_sock *nlk = nlk_sk(sk);
1347
1348 if (nlk->subscriptions && !subscriptions)
1349 __sk_del_bind_node(sk);
1350 else if (!nlk->subscriptions && subscriptions)
1351 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1352 nlk->subscriptions = subscriptions;
1353}
1354
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001355static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -07001356{
1357 struct netlink_sock *nlk = nlk_sk(sk);
1358 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001359 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001360 int err = 0;
1361
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001362 netlink_table_grab();
1363
Patrick McHardy513c2502005-09-06 15:43:59 -07001364 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001365 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -07001366 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001367 goto out_unlock;
1368 }
Patrick McHardy513c2502005-09-06 15:43:59 -07001369
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001370 if (nlk->ngroups >= groups)
1371 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -07001372
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001373 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1374 if (new_groups == NULL) {
1375 err = -ENOMEM;
1376 goto out_unlock;
1377 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001378 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001379 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1380
1381 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001382 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001383 out_unlock:
1384 netlink_table_ungrab();
1385 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001386}
1387
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001388static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1389 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
1391 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001392 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct netlink_sock *nlk = nlk_sk(sk);
1394 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1395 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001396
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001397 if (addr_len < sizeof(struct sockaddr_nl))
1398 return -EINVAL;
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (nladdr->nl_family != AF_NETLINK)
1401 return -EINVAL;
1402
1403 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -07001404 if (nladdr->nl_groups) {
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001405 if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001406 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001407 err = netlink_realloc_groups(sk);
1408 if (err)
1409 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Eric W. Biederman15e47302012-09-07 20:12:54 +00001412 if (nlk->portid) {
1413 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EINVAL;
1415 } else {
1416 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001417 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 netlink_autobind(sock);
1419 if (err)
1420 return err;
1421 }
1422
Patrick McHardy513c2502005-09-06 15:43:59 -07001423 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return 0;
1425
1426 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001427 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001428 hweight32(nladdr->nl_groups) -
1429 hweight32(nlk->groups[0]));
1430 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001431 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 netlink_table_ungrab();
1433
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001434 if (nlk->netlink_bind && nlk->groups[0]) {
1435 int i;
1436
1437 for (i=0; i<nlk->ngroups; i++) {
1438 if (test_bit(i, nlk->groups))
1439 nlk->netlink_bind(i);
1440 }
1441 }
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return 0;
1444}
1445
1446static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1447 int alen, int flags)
1448{
1449 int err = 0;
1450 struct sock *sk = sock->sk;
1451 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001452 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Changli Gao6503d962010-03-31 22:58:26 +00001454 if (alen < sizeof(addr->sa_family))
1455 return -EINVAL;
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (addr->sa_family == AF_UNSPEC) {
1458 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001459 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001460 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return 0;
1462 }
1463 if (addr->sa_family != AF_NETLINK)
1464 return -EINVAL;
1465
1466 /* Only superuser is allowed to send multicasts */
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001467 if (nladdr->nl_groups && !netlink_capable(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return -EPERM;
1469
Eric W. Biederman15e47302012-09-07 20:12:54 +00001470 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 err = netlink_autobind(sock);
1472
1473 if (err == 0) {
1474 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001475 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001476 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
1479 return err;
1480}
1481
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001482static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1483 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 struct sock *sk = sock->sk;
1486 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001487 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 nladdr->nl_family = AF_NETLINK;
1490 nladdr->nl_pad = 0;
1491 *addr_len = sizeof(*nladdr);
1492
1493 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001494 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001495 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001497 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001498 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500 return 0;
1501}
1502
Eric W. Biederman15e47302012-09-07 20:12:54 +00001503static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct sock *sock;
1506 struct netlink_sock *nlk;
1507
Eric W. Biederman15e47302012-09-07 20:12:54 +00001508 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 if (!sock)
1510 return ERR_PTR(-ECONNREFUSED);
1511
1512 /* Don't bother queuing skb if kernel socket has no input function */
1513 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001514 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001515 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 sock_put(sock);
1517 return ERR_PTR(-ECONNREFUSED);
1518 }
1519 return sock;
1520}
1521
1522struct sock *netlink_getsockbyfilp(struct file *filp)
1523{
Al Viro496ad9a2013-01-23 17:07:38 -05001524 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 struct sock *sock;
1526
1527 if (!S_ISSOCK(inode->i_mode))
1528 return ERR_PTR(-ENOTSOCK);
1529
1530 sock = SOCKET_I(inode)->sk;
1531 if (sock->sk_family != AF_NETLINK)
1532 return ERR_PTR(-EINVAL);
1533
1534 sock_hold(sock);
1535 return sock;
1536}
1537
Pablo Neira3a365152013-06-28 03:04:23 +02001538static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1539 int broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001540{
1541 struct sk_buff *skb;
1542 void *data;
1543
Pablo Neira3a365152013-06-28 03:04:23 +02001544 if (size <= NLMSG_GOODSIZE || broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001545 return alloc_skb(size, GFP_KERNEL);
1546
Pablo Neira3a365152013-06-28 03:04:23 +02001547 size = SKB_DATA_ALIGN(size) +
1548 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001549
1550 data = vmalloc(size);
1551 if (data == NULL)
Pablo Neira3a365152013-06-28 03:04:23 +02001552 return NULL;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001553
Pablo Neira3a365152013-06-28 03:04:23 +02001554 skb = build_skb(data, size);
1555 if (skb == NULL)
1556 vfree(data);
1557 else {
1558 skb->head_frag = 0;
1559 skb->destructor = netlink_skb_destructor;
1560 }
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001561
1562 return skb;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001563}
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565/*
1566 * Attach a skb to a netlink socket.
1567 * The caller must hold a reference to the destination socket. On error, the
1568 * reference is dropped. The skb is not send to the destination, just all
1569 * all error checks are performed and memory in the queue is reserved.
1570 * Return values:
1571 * < 0: error. skb freed, reference to sock dropped.
1572 * 0: continue
1573 * 1: repeat lookup - reference dropped while waiting for socket memory.
1574 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001575int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001576 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 struct netlink_sock *nlk;
1579
1580 nlk = nlk_sk(sk);
1581
Patrick McHardy5fd96122013-04-17 06:47:03 +00001582 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1583 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
1584 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001586 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001587 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 netlink_overrun(sk);
1589 sock_put(sk);
1590 kfree_skb(skb);
1591 return -EAGAIN;
1592 }
1593
1594 __set_current_state(TASK_INTERRUPTIBLE);
1595 add_wait_queue(&nlk->wait, &wait);
1596
1597 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Patrick McHardycd967e02013-04-17 06:46:56 +00001598 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001600 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 __set_current_state(TASK_RUNNING);
1603 remove_wait_queue(&nlk->wait, &wait);
1604 sock_put(sk);
1605
1606 if (signal_pending(current)) {
1607 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001608 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
1610 return 1;
1611 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001612 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return 0;
1614}
1615
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001616static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 int len = skb->len;
1619
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001620 netlink_deliver_tap(skb);
1621
Patrick McHardyf9c22882013-04-17 06:47:04 +00001622#ifdef CONFIG_NETLINK_MMAP
1623 if (netlink_skb_is_mmaped(skb))
1624 netlink_queue_mmaped_skb(sk, skb);
1625 else if (netlink_rx_is_mmaped(sk))
1626 netlink_ring_set_copied(sk, skb);
1627 else
1628#endif /* CONFIG_NETLINK_MMAP */
1629 skb_queue_tail(&sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001631 return len;
1632}
1633
1634int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1635{
1636 int len = __netlink_sendskb(sk, skb);
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 sock_put(sk);
1639 return len;
1640}
1641
1642void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1643{
1644 kfree_skb(skb);
1645 sock_put(sk);
1646}
1647
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001648static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
1650 int delta;
1651
Patrick McHardy1298ca42013-04-17 06:46:59 +00001652 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001653 if (netlink_skb_is_mmaped(skb))
1654 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001656 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001657 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 return skb;
1659
1660 if (skb_shared(skb)) {
1661 struct sk_buff *nskb = skb_clone(skb, allocation);
1662 if (!nskb)
1663 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001664 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 skb = nskb;
1666 }
1667
1668 if (!pskb_expand_head(skb, 0, -delta, allocation))
1669 skb->truesize -= delta;
1670
1671 return skb;
1672}
1673
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001674static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1675 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001676{
1677 int ret;
1678 struct netlink_sock *nlk = nlk_sk(sk);
1679
1680 ret = -ECONNREFUSED;
1681 if (nlk->netlink_rcv != NULL) {
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001682 /* We could do a netlink_deliver_tap(skb) here as well
1683 * but since this is intended for the kernel only, we
1684 * should rather let it stay under the hood.
1685 */
1686
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001687 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001688 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001689 NETLINK_CB(skb).sk = ssk;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001690 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001691 consume_skb(skb);
1692 } else {
1693 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001694 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001695 sock_put(sk);
1696 return ret;
1697}
1698
1699int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001700 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
1702 struct sock *sk;
1703 int err;
1704 long timeo;
1705
1706 skb = netlink_trim(skb, gfp_any());
1707
1708 timeo = sock_sndtimeo(ssk, nonblock);
1709retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001710 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (IS_ERR(sk)) {
1712 kfree_skb(skb);
1713 return PTR_ERR(sk);
1714 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001715 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001716 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001717
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001718 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001719 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001720 kfree_skb(skb);
1721 sock_put(sk);
1722 return err;
1723 }
1724
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001725 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (err == 1)
1727 goto retry;
1728 if (err)
1729 return err;
1730
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001731 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001733EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Patrick McHardyf9c22882013-04-17 06:47:04 +00001735struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1736 u32 dst_portid, gfp_t gfp_mask)
1737{
1738#ifdef CONFIG_NETLINK_MMAP
1739 struct sock *sk = NULL;
1740 struct sk_buff *skb;
1741 struct netlink_ring *ring;
1742 struct nl_mmap_hdr *hdr;
1743 unsigned int maxlen;
1744
1745 sk = netlink_getsockbyportid(ssk, dst_portid);
1746 if (IS_ERR(sk))
1747 goto out;
1748
1749 ring = &nlk_sk(sk)->rx_ring;
1750 /* fast-path without atomic ops for common case: non-mmaped receiver */
1751 if (ring->pg_vec == NULL)
1752 goto out_put;
1753
1754 skb = alloc_skb_head(gfp_mask);
1755 if (skb == NULL)
1756 goto err1;
1757
1758 spin_lock_bh(&sk->sk_receive_queue.lock);
1759 /* check again under lock */
1760 if (ring->pg_vec == NULL)
1761 goto out_free;
1762
1763 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1764 if (maxlen < size)
1765 goto out_free;
1766
1767 netlink_forward_ring(ring);
1768 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1769 if (hdr == NULL)
1770 goto err2;
1771 netlink_ring_setup_skb(skb, sk, ring, hdr);
1772 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1773 atomic_inc(&ring->pending);
1774 netlink_increment_head(ring);
1775
1776 spin_unlock_bh(&sk->sk_receive_queue.lock);
1777 return skb;
1778
1779err2:
1780 kfree_skb(skb);
1781 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001782 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001783err1:
1784 sock_put(sk);
1785 return NULL;
1786
1787out_free:
1788 kfree_skb(skb);
1789 spin_unlock_bh(&sk->sk_receive_queue.lock);
1790out_put:
1791 sock_put(sk);
1792out:
1793#endif
1794 return alloc_skb(size, gfp_mask);
1795}
1796EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1797
Patrick McHardy4277a082006-03-20 18:52:01 -08001798int netlink_has_listeners(struct sock *sk, unsigned int group)
1799{
1800 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001801 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001802
Denis V. Lunevaed81562007-10-10 21:14:32 -07001803 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001804
1805 rcu_read_lock();
1806 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1807
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001808 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001809 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001810
1811 rcu_read_unlock();
1812
Patrick McHardy4277a082006-03-20 18:52:01 -08001813 return res;
1814}
1815EXPORT_SYMBOL_GPL(netlink_has_listeners);
1816
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001817static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
1819 struct netlink_sock *nlk = nlk_sk(sk);
1820
1821 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Patrick McHardycd967e02013-04-17 06:46:56 +00001822 !test_bit(NETLINK_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001823 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001824 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001825 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827 return -1;
1828}
1829
1830struct netlink_broadcast_data {
1831 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001832 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001833 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 u32 group;
1835 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001836 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 int congested;
1838 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001839 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001841 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1842 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843};
1844
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001845static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 struct netlink_broadcast_data *p)
1847{
1848 struct netlink_sock *nlk = nlk_sk(sk);
1849 int val;
1850
1851 if (p->exclude_sk == sk)
1852 goto out;
1853
Eric W. Biederman15e47302012-09-07 20:12:54 +00001854 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001855 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 goto out;
1857
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001858 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001859 goto out;
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (p->failure) {
1862 netlink_overrun(sk);
1863 goto out;
1864 }
1865
1866 sock_hold(sk);
1867 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001868 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 p->skb2 = skb_clone(p->skb, p->allocation);
1870 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001871 p->skb2 = skb_get(p->skb);
1872 /*
1873 * skb ownership may have been set when
1874 * delivered to a previous socket.
1875 */
1876 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878 }
1879 if (p->skb2 == NULL) {
1880 netlink_overrun(sk);
1881 /* Clone failed. Notify ALL listeners. */
1882 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001883 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1884 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001885 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1886 kfree_skb(p->skb2);
1887 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001888 } else if (sk_filter(sk, p->skb2)) {
1889 kfree_skb(p->skb2);
1890 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1892 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001893 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1894 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 } else {
1896 p->congested |= val;
1897 p->delivered = 1;
1898 p->skb2 = NULL;
1899 }
1900 sock_put(sk);
1901
1902out:
1903 return 0;
1904}
1905
Eric W. Biederman15e47302012-09-07 20:12:54 +00001906int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001907 u32 group, gfp_t allocation,
1908 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1909 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001911 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 struct sock *sk;
1914
1915 skb = netlink_trim(skb, allocation);
1916
1917 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001918 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001919 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 info.group = group;
1921 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001922 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 info.congested = 0;
1924 info.delivered = 0;
1925 info.allocation = allocation;
1926 info.skb = skb;
1927 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001928 info.tx_filter = filter;
1929 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 /* While we sleep in clone, do not allow to change socket list */
1932
1933 netlink_lock_table();
1934
Sasha Levinb67bfe02013-02-27 17:06:00 -08001935 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 do_one_broadcast(sk, &info);
1937
Neil Horman70d4bf62010-07-20 06:45:56 +00001938 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 netlink_unlock_table();
1941
Neil Horman70d4bf62010-07-20 06:45:56 +00001942 if (info.delivery_failure) {
1943 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001944 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001945 }
1946 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (info.delivered) {
1949 if (info.congested && (allocation & __GFP_WAIT))
1950 yield();
1951 return 0;
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return -ESRCH;
1954}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001955EXPORT_SYMBOL(netlink_broadcast_filtered);
1956
Eric W. Biederman15e47302012-09-07 20:12:54 +00001957int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001958 u32 group, gfp_t allocation)
1959{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001960 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001961 NULL, NULL);
1962}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001963EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965struct netlink_set_err_data {
1966 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001967 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 u32 group;
1969 int code;
1970};
1971
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001972static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001975 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 if (sk == p->exclude_sk)
1978 goto out;
1979
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001980 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001981 goto out;
1982
Eric W. Biederman15e47302012-09-07 20:12:54 +00001983 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001984 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 goto out;
1986
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001987 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1988 ret = 1;
1989 goto out;
1990 }
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 sk->sk_err = p->code;
1993 sk->sk_error_report(sk);
1994out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001995 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001998/**
1999 * netlink_set_err - report error to broadcast listeners
2000 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00002001 * @portid: the PORTID of a process that we want to skip (if any)
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002002 * @groups: the broadcast group that will notice the error
2003 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002004 *
2005 * This function returns the number of broadcast listeners that have set the
2006 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002007 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002008int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
2010 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002012 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002015 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08002017 /* sk->sk_err wants a positive error value */
2018 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 read_lock(&nl_table_lock);
2021
Sasha Levinb67bfe02013-02-27 17:06:00 -08002022 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002023 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00002026 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01002028EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Johannes Berg84659eb2007-07-18 15:47:05 -07002030/* must be called with netlink table grabbed */
2031static void netlink_update_socket_mc(struct netlink_sock *nlk,
2032 unsigned int group,
2033 int is_new)
2034{
2035 int old, new = !!is_new, subscriptions;
2036
2037 old = test_bit(group - 1, nlk->groups);
2038 subscriptions = nlk->subscriptions - old + new;
2039 if (new)
2040 __set_bit(group - 1, nlk->groups);
2041 else
2042 __clear_bit(group - 1, nlk->groups);
2043 netlink_update_subscriptions(&nlk->sk, subscriptions);
2044 netlink_update_listeners(&nlk->sk);
2045}
2046
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002047static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002048 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002049{
2050 struct sock *sk = sock->sk;
2051 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07002052 unsigned int val = 0;
2053 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002054
2055 if (level != SOL_NETLINK)
2056 return -ENOPROTOOPT;
2057
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002058 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
2059 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07002060 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002061 return -EFAULT;
2062
2063 switch (optname) {
2064 case NETLINK_PKTINFO:
2065 if (val)
2066 nlk->flags |= NETLINK_RECV_PKTINFO;
2067 else
2068 nlk->flags &= ~NETLINK_RECV_PKTINFO;
2069 err = 0;
2070 break;
2071 case NETLINK_ADD_MEMBERSHIP:
2072 case NETLINK_DROP_MEMBERSHIP: {
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002073 if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002074 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002075 err = netlink_realloc_groups(sk);
2076 if (err)
2077 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002078 if (!val || val - 1 >= nlk->ngroups)
2079 return -EINVAL;
2080 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07002081 netlink_update_socket_mc(nlk, val,
2082 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002083 netlink_table_ungrab();
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00002084
2085 if (nlk->netlink_bind)
2086 nlk->netlink_bind(val);
2087
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002088 err = 0;
2089 break;
2090 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002091 case NETLINK_BROADCAST_ERROR:
2092 if (val)
2093 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
2094 else
2095 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
2096 err = 0;
2097 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002098 case NETLINK_NO_ENOBUFS:
2099 if (val) {
2100 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
Patrick McHardycd967e02013-04-17 06:46:56 +00002101 clear_bit(NETLINK_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002102 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00002103 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002104 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00002105 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002106 err = 0;
2107 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002108#ifdef CONFIG_NETLINK_MMAP
2109 case NETLINK_RX_RING:
2110 case NETLINK_TX_RING: {
2111 struct nl_mmap_req req;
2112
2113 /* Rings might consume more memory than queue limits, require
2114 * CAP_NET_ADMIN.
2115 */
2116 if (!capable(CAP_NET_ADMIN))
2117 return -EPERM;
2118 if (optlen < sizeof(req))
2119 return -EINVAL;
2120 if (copy_from_user(&req, optval, sizeof(req)))
2121 return -EFAULT;
2122 err = netlink_set_ring(sk, &req, false,
2123 optname == NETLINK_TX_RING);
2124 break;
2125 }
2126#endif /* CONFIG_NETLINK_MMAP */
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002127 default:
2128 err = -ENOPROTOOPT;
2129 }
2130 return err;
2131}
2132
2133static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002134 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002135{
2136 struct sock *sk = sock->sk;
2137 struct netlink_sock *nlk = nlk_sk(sk);
2138 int len, val, err;
2139
2140 if (level != SOL_NETLINK)
2141 return -ENOPROTOOPT;
2142
2143 if (get_user(len, optlen))
2144 return -EFAULT;
2145 if (len < 0)
2146 return -EINVAL;
2147
2148 switch (optname) {
2149 case NETLINK_PKTINFO:
2150 if (len < sizeof(int))
2151 return -EINVAL;
2152 len = sizeof(int);
2153 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002154 if (put_user(len, optlen) ||
2155 put_user(val, optval))
2156 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002157 err = 0;
2158 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002159 case NETLINK_BROADCAST_ERROR:
2160 if (len < sizeof(int))
2161 return -EINVAL;
2162 len = sizeof(int);
2163 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
2164 if (put_user(len, optlen) ||
2165 put_user(val, optval))
2166 return -EFAULT;
2167 err = 0;
2168 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002169 case NETLINK_NO_ENOBUFS:
2170 if (len < sizeof(int))
2171 return -EINVAL;
2172 len = sizeof(int);
2173 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
2174 if (put_user(len, optlen) ||
2175 put_user(val, optval))
2176 return -EFAULT;
2177 err = 0;
2178 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002179 default:
2180 err = -ENOPROTOOPT;
2181 }
2182 return err;
2183}
2184
2185static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2186{
2187 struct nl_pktinfo info;
2188
2189 info.group = NETLINK_CB(skb).dst_group;
2190 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2191}
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
2194 struct msghdr *msg, size_t len)
2195{
2196 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2197 struct sock *sk = sock->sk;
2198 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002199 struct sockaddr_nl *addr = msg->msg_name;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002200 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002201 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 struct sk_buff *skb;
2203 int err;
2204 struct scm_cookie scm;
2205
2206 if (msg->msg_flags&MSG_OOB)
2207 return -EOPNOTSUPP;
2208
Eric Dumazet16e57262011-09-19 05:52:27 +00002209 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00002211
Eric Dumazete0e3cea2012-08-21 06:21:17 +00002212 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 if (err < 0)
2214 return err;
2215
2216 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002217 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002219 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002220 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002221 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002222 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002223 if ((dst_group || dst_portid) &&
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002224 !netlink_capable(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002225 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002227 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002228 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
2230
Eric W. Biederman15e47302012-09-07 20:12:54 +00002231 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 err = netlink_autobind(sock);
2233 if (err)
2234 goto out;
2235 }
2236
Patrick McHardy5fd96122013-04-17 06:47:03 +00002237 if (netlink_tx_is_mmaped(sk) &&
2238 msg->msg_iov->iov_base == NULL) {
2239 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2240 siocb);
2241 goto out;
2242 }
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 err = -EMSGSIZE;
2245 if (len > sk->sk_sndbuf - 32)
2246 goto out;
2247 err = -ENOBUFS;
Pablo Neira3a365152013-06-28 03:04:23 +02002248 skb = netlink_alloc_large_skb(len, dst_group);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002249 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 goto out;
2251
Eric W. Biederman15e47302012-09-07 20:12:54 +00002252 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002253 NETLINK_CB(skb).dst_group = dst_group;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00002254 NETLINK_CB(skb).creds = siocb->scm->creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002257 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 kfree_skb(skb);
2259 goto out;
2260 }
2261
2262 err = security_netlink_send(sk, skb);
2263 if (err) {
2264 kfree_skb(skb);
2265 goto out;
2266 }
2267
Patrick McHardyd629b832005-08-14 19:27:50 -07002268 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002270 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002272 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002275 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return err;
2277}
2278
2279static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
2280 struct msghdr *msg, size_t len,
2281 int flags)
2282{
2283 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2284 struct scm_cookie scm;
2285 struct sock *sk = sock->sk;
2286 struct netlink_sock *nlk = nlk_sk(sk);
2287 int noblock = flags&MSG_DONTWAIT;
2288 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002289 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002290 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 if (flags&MSG_OOB)
2293 return -EOPNOTSUPP;
2294
2295 copied = 0;
2296
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002297 skb = skb_recv_datagram(sk, flags, noblock, &err);
2298 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 goto out;
2300
Johannes Berg68d6ac62010-08-15 21:20:44 +00002301 data_skb = skb;
2302
Johannes Berg1dacc762009-07-01 11:26:02 +00002303#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2304 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002305 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002306 * If this skb has a frag_list, then here that means that we
2307 * will have to use the frag_list skb's data for compat tasks
2308 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002309 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002310 * If we need to send the compat skb, assign it to the
2311 * 'data_skb' variable so that it will be used below for data
2312 * copying. We keep 'skb' for everything else, including
2313 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002314 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002315 if (flags & MSG_CMSG_COMPAT)
2316 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002317 }
2318#endif
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 msg->msg_namelen = 0;
2321
Johannes Berg68d6ac62010-08-15 21:20:44 +00002322 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (len < copied) {
2324 msg->msg_flags |= MSG_TRUNC;
2325 copied = len;
2326 }
2327
Johannes Berg68d6ac62010-08-15 21:20:44 +00002328 skb_reset_transport_header(data_skb);
2329 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
2331 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002332 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 addr->nl_family = AF_NETLINK;
2334 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002335 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002336 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 msg->msg_namelen = sizeof(*addr);
2338 }
2339
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002340 if (nlk->flags & NETLINK_RECV_PKTINFO)
2341 netlink_cmsg_recv_pktinfo(msg, skb);
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (NULL == siocb->scm) {
2344 memset(&scm, 0, sizeof(scm));
2345 siocb->scm = &scm;
2346 }
2347 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002348 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002349 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 skb_free_datagram(sk, skb);
2352
Andrey Vaginb44d2112011-02-21 02:40:47 +00002353 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
2354 ret = netlink_dump(sk);
2355 if (ret) {
2356 sk->sk_err = ret;
2357 sk->sk_error_report(sk);
2358 }
2359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362out:
2363 netlink_rcv_wake(sk);
2364 return err ? : copied;
2365}
2366
2367static void netlink_data_ready(struct sock *sk, int len)
2368{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002369 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370}
2371
2372/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002373 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 * complete set of kernel non-blocking support for message
2375 * queueing.
2376 */
2377
2378struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002379__netlink_kernel_create(struct net *net, int unit, struct module *module,
2380 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
2382 struct socket *sock;
2383 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002384 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002385 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002386 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2387 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002389 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002391 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return NULL;
2393
2394 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2395 return NULL;
2396
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002397 /*
2398 * We have to just have a reference on the net from sk, but don't
2399 * get_net it. Besides, we cannot get and then put the net here.
2400 * So we create one inside init_net and the move it to net.
2401 */
2402
2403 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
2404 goto out_sock_release_nosk;
2405
2406 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08002407 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002408
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002409 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002410 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002411 else
2412 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002413
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002414 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002415 if (!listeners)
2416 goto out_sock_release;
2417
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002419 if (cfg && cfg->input)
2420 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002422 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002423 goto out_sock_release;
2424
2425 nlk = nlk_sk(sk);
2426 nlk->flags |= NETLINK_KERNEL_SOCKET;
2427
2428 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002429 if (!nl_table[unit].registered) {
2430 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002431 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002432 nl_table[unit].cb_mutex = cb_mutex;
2433 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002434 if (cfg) {
2435 nl_table[unit].bind = cfg->bind;
2436 nl_table[unit].flags = cfg->flags;
Gao fengda12c902013-06-06 14:49:11 +08002437 if (cfg->compare)
2438 nl_table[unit].compare = cfg->compare;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002439 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002440 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002441 } else {
2442 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002443 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002444 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002445 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002446 return sk;
2447
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002448out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002449 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002450 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002451 return NULL;
2452
2453out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002454 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002455 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002457EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002458
2459void
2460netlink_kernel_release(struct sock *sk)
2461{
Denis V. Lunevedf02082008-02-29 11:18:32 -08002462 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002463}
2464EXPORT_SYMBOL(netlink_kernel_release);
2465
Johannes Bergd136f1b2009-09-12 03:03:15 +00002466int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002467{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002468 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002469 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002470
2471 if (groups < 32)
2472 groups = 32;
2473
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002474 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002475 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2476 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002477 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002478 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002479 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2480 rcu_assign_pointer(tbl->listeners, new);
2481
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002482 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002483 }
2484 tbl->groups = groups;
2485
Johannes Bergd136f1b2009-09-12 03:03:15 +00002486 return 0;
2487}
2488
2489/**
2490 * netlink_change_ngroups - change number of multicast groups
2491 *
2492 * This changes the number of multicast groups that are available
2493 * on a certain netlink family. Note that it is not possible to
2494 * change the number of groups to below 32. Also note that it does
2495 * not implicitly call netlink_clear_multicast_users() when the
2496 * number of groups is reduced.
2497 *
2498 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2499 * @groups: The new number of groups.
2500 */
2501int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2502{
2503 int err;
2504
2505 netlink_table_grab();
2506 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002507 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002508
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002509 return err;
2510}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002511
Johannes Bergb8273572009-09-24 15:44:05 -07002512void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2513{
2514 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002515 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2516
Sasha Levinb67bfe02013-02-27 17:06:00 -08002517 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002518 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2519}
2520
Johannes Berg84659eb2007-07-18 15:47:05 -07002521/**
2522 * netlink_clear_multicast_users - kick off multicast listeners
2523 *
2524 * This function removes all listeners from the given group.
2525 * @ksk: The kernel netlink socket, as returned by
2526 * netlink_kernel_create().
2527 * @group: The multicast group to clear.
2528 */
2529void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2530{
Johannes Berg84659eb2007-07-18 15:47:05 -07002531 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07002532 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07002533 netlink_table_ungrab();
2534}
Johannes Berg84659eb2007-07-18 15:47:05 -07002535
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002536struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002537__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002538{
2539 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002540 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002541
2542 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
2543 nlh->nlmsg_type = type;
2544 nlh->nlmsg_len = size;
2545 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002546 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002547 nlh->nlmsg_seq = seq;
2548 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002549 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002550 return nlh;
2551}
2552EXPORT_SYMBOL(__nlmsg_put);
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554/*
2555 * It looks a bit ugly.
2556 * It would be better to create kernel thread.
2557 */
2558
2559static int netlink_dump(struct sock *sk)
2560{
2561 struct netlink_sock *nlk = nlk_sk(sk);
2562 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002563 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002565 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002566 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002568 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 cb = nlk->cb;
2571 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002572 err = -EINVAL;
2573 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 }
2575
Greg Rosec7ac8672011-06-10 01:27:09 +00002576 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2577
Patrick McHardyf9c22882013-04-17 06:47:04 +00002578 if (!netlink_rx_is_mmaped(sk) &&
2579 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2580 goto errout_skb;
2581 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid, GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002582 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002583 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002584 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 len = cb->dump(skb, cb);
2587
2588 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002589 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002590
2591 if (sk_filter(sk, skb))
2592 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002593 else
2594 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 return 0;
2596 }
2597
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002598 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2599 if (!nlh)
2600 goto errout_skb;
2601
Johannes Berg670dc282011-06-20 13:40:46 +02002602 nl_dump_check_consistent(cb, nlh);
2603
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002604 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2605
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002606 if (sk_filter(sk, skb))
2607 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002608 else
2609 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Thomas Grafa8f74b22005-11-10 02:25:52 +01002611 if (cb->done)
2612 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002614 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Gao feng6dc878a2012-10-04 20:15:48 +00002616 module_put(cb->module);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00002617 netlink_consume_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002619
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002620errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002621 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002622 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002623 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
Gao feng6dc878a2012-10-04 20:15:48 +00002626int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2627 const struct nlmsghdr *nlh,
2628 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
2630 struct netlink_callback *cb;
2631 struct sock *sk;
2632 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002633 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002635 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if (cb == NULL)
2637 return -ENOBUFS;
2638
Patrick McHardyf9c22882013-04-17 06:47:04 +00002639 /* Memory mapped dump requests need to be copied to avoid looping
2640 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2641 * a reference to the skb.
2642 */
2643 if (netlink_skb_is_mmaped(skb)) {
2644 skb = skb_copy(skb, GFP_KERNEL);
2645 if (skb == NULL) {
2646 kfree(cb);
2647 return -ENOBUFS;
2648 }
2649 } else
2650 atomic_inc(&skb->users);
2651
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002652 cb->dump = control->dump;
2653 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002655 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002656 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002657 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 cb->skb = skb;
2659
Eric W. Biederman15e47302012-09-07 20:12:54 +00002660 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 if (sk == NULL) {
2662 netlink_destroy_callback(cb);
2663 return -ECONNREFUSED;
2664 }
2665 nlk = nlk_sk(sk);
Gao feng6dc878a2012-10-04 20:15:48 +00002666
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002667 mutex_lock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002668 /* A dump is in progress... */
Herbert Xu3f660d62007-05-03 03:17:14 -07002669 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002670 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 netlink_destroy_callback(cb);
Gao feng6dc878a2012-10-04 20:15:48 +00002672 ret = -EBUSY;
2673 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 }
Gao feng6dc878a2012-10-04 20:15:48 +00002675 /* add reference of module which cb->dump belongs to */
2676 if (!try_module_get(cb->module)) {
2677 mutex_unlock(nlk->cb_mutex);
2678 netlink_destroy_callback(cb);
2679 ret = -EPROTONOSUPPORT;
2680 goto out;
2681 }
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002684 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Andrey Vaginb44d2112011-02-21 02:40:47 +00002686 ret = netlink_dump(sk);
Gao feng6dc878a2012-10-04 20:15:48 +00002687out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002689
Andrey Vaginb44d2112011-02-21 02:40:47 +00002690 if (ret)
2691 return ret;
2692
Denis V. Lunev5c582982007-10-23 20:29:25 -07002693 /* We successfully started a dump, by returning -EINTR we
2694 * signal not to send ACK even if it was requested.
2695 */
2696 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
Gao feng6dc878a2012-10-04 20:15:48 +00002698EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2701{
2702 struct sk_buff *skb;
2703 struct nlmsghdr *rep;
2704 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002705 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Thomas Graf339bf982006-11-10 14:10:15 -08002707 /* error messages get the original request appened */
2708 if (err)
2709 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Patrick McHardyf9c22882013-04-17 06:47:04 +00002711 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2712 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 if (!skb) {
2714 struct sock *sk;
2715
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002716 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002717 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002718 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 if (sk) {
2720 sk->sk_err = ENOBUFS;
2721 sk->sk_error_report(sk);
2722 sock_put(sk);
2723 }
2724 return;
2725 }
2726
Eric W. Biederman15e47302012-09-07 20:12:54 +00002727 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002728 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002729 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002731 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002732 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002734EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002736int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002737 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002738{
Thomas Graf82ace472005-11-10 02:25:53 +01002739 struct nlmsghdr *nlh;
2740 int err;
2741
2742 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002743 int msglen;
2744
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002745 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002746 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002747
Martin Murrayad8e4b72006-01-10 13:02:29 -08002748 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002749 return 0;
2750
Thomas Grafd35b6852007-03-22 23:28:46 -07002751 /* Only requests are handled by the kernel */
2752 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002753 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002754
Thomas Graf45e7ae72007-03-22 23:29:10 -07002755 /* Skip control messages */
2756 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002757 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002758
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002759 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002760 if (err == -EINTR)
2761 goto skip;
2762
2763ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002764 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002765 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002766
Denis V. Lunev5c582982007-10-23 20:29:25 -07002767skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002768 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002769 if (msglen > skb->len)
2770 msglen = skb->len;
2771 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002772 }
2773
2774 return 0;
2775}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002776EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002777
2778/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002779 * nlmsg_notify - send a notification netlink message
2780 * @sk: netlink socket to use
2781 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002782 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002783 * @group: destination multicast group or 0
2784 * @report: 1 to report back, 0 to disable
2785 * @flags: allocation flags
2786 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002787int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002788 unsigned int group, int report, gfp_t flags)
2789{
2790 int err = 0;
2791
2792 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002793 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002794
2795 if (report) {
2796 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002797 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002798 }
2799
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002800 /* errors reported via destination sk->sk_err, but propagate
2801 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002802 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002803 }
2804
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002805 if (report) {
2806 int err2;
2807
Eric W. Biederman15e47302012-09-07 20:12:54 +00002808 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002809 if (!err || err == -ESRCH)
2810 err = err2;
2811 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002812
2813 return err;
2814}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002815EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817#ifdef CONFIG_PROC_FS
2818struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002819 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 int link;
2821 int hash_idx;
2822};
2823
2824static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
2825{
2826 struct nl_seq_iter *iter = seq->private;
2827 int i, j;
2828 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 loff_t off = 0;
2830
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002831 for (i = 0; i < MAX_LINKS; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002832 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
2834 for (j = 0; j <= hash->mask; j++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002835 sk_for_each(s, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002836 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002837 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 if (off == pos) {
2839 iter->link = i;
2840 iter->hash_idx = j;
2841 return s;
2842 }
2843 ++off;
2844 }
2845 }
2846 }
2847 return NULL;
2848}
2849
2850static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002851 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
2853 read_lock(&nl_table_lock);
2854 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2855}
2856
2857static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2858{
2859 struct sock *s;
2860 struct nl_seq_iter *iter;
Gao fengda12c902013-06-06 14:49:11 +08002861 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 int i, j;
2863
2864 ++*pos;
2865
2866 if (v == SEQ_START_TOKEN)
2867 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002868
Gao fengda12c902013-06-06 14:49:11 +08002869 net = seq_file_net(seq);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002870 iter = seq->private;
2871 s = v;
2872 do {
2873 s = sk_next(s);
Gao fengda12c902013-06-06 14:49:11 +08002874 } while (s && !nl_table[s->sk_protocol].compare(net, s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (s)
2876 return s;
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 i = iter->link;
2879 j = iter->hash_idx + 1;
2880
2881 do {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002882 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
2884 for (; j <= hash->mask; j++) {
2885 s = sk_head(&hash->table[j]);
Gao fengda12c902013-06-06 14:49:11 +08002886
2887 while (s && !nl_table[s->sk_protocol].compare(net, s))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002888 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 if (s) {
2890 iter->link = i;
2891 iter->hash_idx = j;
2892 return s;
2893 }
2894 }
2895
2896 j = 0;
2897 } while (++i < MAX_LINKS);
2898
2899 return NULL;
2900}
2901
2902static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002903 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
2905 read_unlock(&nl_table_lock);
2906}
2907
2908
2909static int netlink_seq_show(struct seq_file *seq, void *v)
2910{
Eric Dumazet658cb352012-04-22 21:30:21 +00002911 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 seq_puts(seq,
2913 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002914 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002915 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 struct sock *s = v;
2917 struct netlink_sock *nlk = nlk_sk(s);
2918
Hannes Frederic Sowa9f1e0ad2012-12-15 15:09:19 +00002919 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 s,
2921 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002922 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002923 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002924 sk_rmem_alloc_get(s),
2925 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002927 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002928 atomic_read(&s->sk_drops),
2929 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 );
2931
2932 }
2933 return 0;
2934}
2935
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002936static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 .start = netlink_seq_start,
2938 .next = netlink_seq_next,
2939 .stop = netlink_seq_stop,
2940 .show = netlink_seq_show,
2941};
2942
2943
2944static int netlink_seq_open(struct inode *inode, struct file *file)
2945{
Denis V. Luneve372c412007-11-19 22:31:54 -08002946 return seq_open_net(inode, file, &netlink_seq_ops,
2947 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002948}
2949
Arjan van de Venda7071d2007-02-12 00:55:36 -08002950static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 .owner = THIS_MODULE,
2952 .open = netlink_seq_open,
2953 .read = seq_read,
2954 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002955 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956};
2957
2958#endif
2959
2960int netlink_register_notifier(struct notifier_block *nb)
2961{
Alan Sterne041c682006-03-27 01:16:30 -08002962 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002964EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966int netlink_unregister_notifier(struct notifier_block *nb)
2967{
Alan Sterne041c682006-03-27 01:16:30 -08002968 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002970EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002971
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002972static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 .family = PF_NETLINK,
2974 .owner = THIS_MODULE,
2975 .release = netlink_release,
2976 .bind = netlink_bind,
2977 .connect = netlink_connect,
2978 .socketpair = sock_no_socketpair,
2979 .accept = sock_no_accept,
2980 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00002981 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 .ioctl = sock_no_ioctl,
2983 .listen = sock_no_listen,
2984 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002985 .setsockopt = netlink_setsockopt,
2986 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 .sendmsg = netlink_sendmsg,
2988 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002989 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 .sendpage = sock_no_sendpage,
2991};
2992
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002993static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 .family = PF_NETLINK,
2995 .create = netlink_create,
2996 .owner = THIS_MODULE, /* for consistency 8) */
2997};
2998
Pavel Emelyanov46650792007-10-08 20:38:39 -07002999static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003000{
3001#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00003002 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003003 return -ENOMEM;
3004#endif
3005 return 0;
3006}
3007
Pavel Emelyanov46650792007-10-08 20:38:39 -07003008static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003009{
3010#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00003011 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003012#endif
3013}
3014
David S. Millerb963ea82010-08-30 19:08:01 -07003015static void __init netlink_add_usersock_entry(void)
3016{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003017 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07003018 int groups = 32;
3019
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003020 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07003021 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003022 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07003023
3024 netlink_table_grab();
3025
3026 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00003027 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07003028 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
3029 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00003030 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07003031
3032 netlink_table_ungrab();
3033}
3034
Denis V. Lunev022cbae2007-11-13 03:23:50 -08003035static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003036 .init = netlink_net_init,
3037 .exit = netlink_net_exit,
3038};
3039
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040static int __init netlink_proto_init(void)
3041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07003043 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 unsigned int order;
3045 int err = proto_register(&netlink_proto, 0);
3046
3047 if (err != 0)
3048 goto out;
3049
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00003050 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07003052 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003053 if (!nl_table)
3054 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Jan Beulich44813742009-09-21 17:03:05 -07003056 if (totalram_pages >= (128 * 1024))
3057 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 else
Jan Beulich44813742009-09-21 17:03:05 -07003059 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Denis Cheng26ff5dd2007-09-16 16:36:02 -07003061 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
3062 limit = (1UL << order) / sizeof(struct hlist_head);
3063 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
3065 for (i = 0; i < MAX_LINKS; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00003066 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
Eric W. Biederman15e47302012-09-07 20:12:54 +00003068 hash->table = nl_portid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 if (!hash->table) {
3070 while (i-- > 0)
Eric W. Biederman15e47302012-09-07 20:12:54 +00003071 nl_portid_hash_free(nl_table[i].hash.table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 1 * sizeof(*hash->table));
3073 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003074 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 hash->max_shift = order;
3077 hash->shift = 0;
3078 hash->mask = 0;
3079 hash->rehash_time = jiffies;
Gao fengca15feb2013-06-13 10:05:38 +08003080
3081 nl_table[i].compare = netlink_compare;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02003084 INIT_LIST_HEAD(&netlink_tap_all);
3085
David S. Millerb963ea82010-08-30 19:08:01 -07003086 netlink_add_usersock_entry();
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02003089 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09003090 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 rtnetlink_init();
3092out:
3093 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07003094panic:
3095 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096}
3097
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098core_initcall(netlink_proto_init);