blob: 2a3e9ba814c4125d877554b80bc9e7353e7a21e9 [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>
Patrick McHardy9652e932013-04-17 06:47:02 +000060#include <asm/cacheflush.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010061
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020062#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <net/sock.h>
64#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010065#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Andrey Vagin0f29c762013-03-21 20:33:47 +040067#include "af_netlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric Dumazet5c398dc2010-10-24 04:27:10 +000069struct listeners {
70 struct rcu_head rcu;
71 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000072};
73
Patrick McHardycd967e02013-04-17 06:46:56 +000074/* state bits */
75#define NETLINK_CONGESTED 0x0
76
77/* flags */
Patrick McHardy77247bb2005-08-14 19:27:13 -070078#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070079#define NETLINK_RECV_PKTINFO 0x2
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +000080#define NETLINK_BROADCAST_SEND_ERROR 0x4
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -070081#define NETLINK_RECV_NO_ENOBUFS 0x8
Patrick McHardy77247bb2005-08-14 19:27:13 -070082
David S. Miller035c4c12011-12-23 17:33:03 -050083static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -070084{
85 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
86}
87
Andrey Vagin0f29c762013-03-21 20:33:47 +040088struct netlink_table *nl_table;
89EXPORT_SYMBOL_GPL(nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
92
93static int netlink_dump(struct sock *sk);
Patrick McHardy9652e932013-04-17 06:47:02 +000094static void netlink_skb_destructor(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Andrey Vagin0f29c762013-03-21 20:33:47 +040096DEFINE_RWLOCK(nl_table_lock);
97EXPORT_SYMBOL_GPL(nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static atomic_t nl_table_users = ATOMIC_INIT(0);
99
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000100#define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
101
Alan Sterne041c682006-03-27 01:16:30 -0800102static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000104static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700105{
106 return group ? 1 << (group - 1) : 0;
107}
108
Eric W. Biederman15e47302012-09-07 20:12:54 +0000109static inline struct hlist_head *nl_portid_hashfn(struct nl_portid_hash *hash, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Eric W. Biederman15e47302012-09-07 20:12:54 +0000111 return &hash->table[jhash_1word(portid, hash->rnd) & hash->mask];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Patrick McHardycd1df522013-04-17 06:47:05 +0000114static void netlink_overrun(struct sock *sk)
115{
116 struct netlink_sock *nlk = nlk_sk(sk);
117
118 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
119 if (!test_and_set_bit(NETLINK_CONGESTED, &nlk_sk(sk)->state)) {
120 sk->sk_err = ENOBUFS;
121 sk->sk_error_report(sk);
122 }
123 }
124 atomic_inc(&sk->sk_drops);
125}
126
127static void netlink_rcv_wake(struct sock *sk)
128{
129 struct netlink_sock *nlk = nlk_sk(sk);
130
131 if (skb_queue_empty(&sk->sk_receive_queue))
132 clear_bit(NETLINK_CONGESTED, &nlk->state);
133 if (!test_bit(NETLINK_CONGESTED, &nlk->state))
134 wake_up_interruptible(&nlk->wait);
135}
136
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000137#ifdef CONFIG_NETLINK_MMAP
Patrick McHardy9652e932013-04-17 06:47:02 +0000138static bool netlink_skb_is_mmaped(const struct sk_buff *skb)
139{
140 return NETLINK_CB(skb).flags & NETLINK_SKB_MMAPED;
141}
142
Patrick McHardyf9c22882013-04-17 06:47:04 +0000143static bool netlink_rx_is_mmaped(struct sock *sk)
144{
145 return nlk_sk(sk)->rx_ring.pg_vec != NULL;
146}
147
Patrick McHardy5fd96122013-04-17 06:47:03 +0000148static bool netlink_tx_is_mmaped(struct sock *sk)
149{
150 return nlk_sk(sk)->tx_ring.pg_vec != NULL;
151}
152
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000153static __pure struct page *pgvec_to_page(const void *addr)
154{
155 if (is_vmalloc_addr(addr))
156 return vmalloc_to_page(addr);
157 else
158 return virt_to_page(addr);
159}
160
161static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
162{
163 unsigned int i;
164
165 for (i = 0; i < len; i++) {
166 if (pg_vec[i] != NULL) {
167 if (is_vmalloc_addr(pg_vec[i]))
168 vfree(pg_vec[i]);
169 else
170 free_pages((unsigned long)pg_vec[i], order);
171 }
172 }
173 kfree(pg_vec);
174}
175
176static void *alloc_one_pg_vec_page(unsigned long order)
177{
178 void *buffer;
179 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
180 __GFP_NOWARN | __GFP_NORETRY;
181
182 buffer = (void *)__get_free_pages(gfp_flags, order);
183 if (buffer != NULL)
184 return buffer;
185
186 buffer = vzalloc((1 << order) * PAGE_SIZE);
187 if (buffer != NULL)
188 return buffer;
189
190 gfp_flags &= ~__GFP_NORETRY;
191 return (void *)__get_free_pages(gfp_flags, order);
192}
193
194static void **alloc_pg_vec(struct netlink_sock *nlk,
195 struct nl_mmap_req *req, unsigned int order)
196{
197 unsigned int block_nr = req->nm_block_nr;
198 unsigned int i;
199 void **pg_vec, *ptr;
200
201 pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
202 if (pg_vec == NULL)
203 return NULL;
204
205 for (i = 0; i < block_nr; i++) {
206 pg_vec[i] = ptr = alloc_one_pg_vec_page(order);
207 if (pg_vec[i] == NULL)
208 goto err1;
209 }
210
211 return pg_vec;
212err1:
213 free_pg_vec(pg_vec, order, block_nr);
214 return NULL;
215}
216
217static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
218 bool closing, bool tx_ring)
219{
220 struct netlink_sock *nlk = nlk_sk(sk);
221 struct netlink_ring *ring;
222 struct sk_buff_head *queue;
223 void **pg_vec = NULL;
224 unsigned int order = 0;
225 int err;
226
227 ring = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
228 queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
229
230 if (!closing) {
231 if (atomic_read(&nlk->mapped))
232 return -EBUSY;
233 if (atomic_read(&ring->pending))
234 return -EBUSY;
235 }
236
237 if (req->nm_block_nr) {
238 if (ring->pg_vec != NULL)
239 return -EBUSY;
240
241 if ((int)req->nm_block_size <= 0)
242 return -EINVAL;
243 if (!IS_ALIGNED(req->nm_block_size, PAGE_SIZE))
244 return -EINVAL;
245 if (req->nm_frame_size < NL_MMAP_HDRLEN)
246 return -EINVAL;
247 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
248 return -EINVAL;
249
250 ring->frames_per_block = req->nm_block_size /
251 req->nm_frame_size;
252 if (ring->frames_per_block == 0)
253 return -EINVAL;
254 if (ring->frames_per_block * req->nm_block_nr !=
255 req->nm_frame_nr)
256 return -EINVAL;
257
258 order = get_order(req->nm_block_size);
259 pg_vec = alloc_pg_vec(nlk, req, order);
260 if (pg_vec == NULL)
261 return -ENOMEM;
262 } else {
263 if (req->nm_frame_nr)
264 return -EINVAL;
265 }
266
267 err = -EBUSY;
268 mutex_lock(&nlk->pg_vec_lock);
269 if (closing || atomic_read(&nlk->mapped) == 0) {
270 err = 0;
271 spin_lock_bh(&queue->lock);
272
273 ring->frame_max = req->nm_frame_nr - 1;
274 ring->head = 0;
275 ring->frame_size = req->nm_frame_size;
276 ring->pg_vec_pages = req->nm_block_size / PAGE_SIZE;
277
278 swap(ring->pg_vec_len, req->nm_block_nr);
279 swap(ring->pg_vec_order, order);
280 swap(ring->pg_vec, pg_vec);
281
282 __skb_queue_purge(queue);
283 spin_unlock_bh(&queue->lock);
284
285 WARN_ON(atomic_read(&nlk->mapped));
286 }
287 mutex_unlock(&nlk->pg_vec_lock);
288
289 if (pg_vec)
290 free_pg_vec(pg_vec, order, req->nm_block_nr);
291 return err;
292}
293
294static void netlink_mm_open(struct vm_area_struct *vma)
295{
296 struct file *file = vma->vm_file;
297 struct socket *sock = file->private_data;
298 struct sock *sk = sock->sk;
299
300 if (sk)
301 atomic_inc(&nlk_sk(sk)->mapped);
302}
303
304static void netlink_mm_close(struct vm_area_struct *vma)
305{
306 struct file *file = vma->vm_file;
307 struct socket *sock = file->private_data;
308 struct sock *sk = sock->sk;
309
310 if (sk)
311 atomic_dec(&nlk_sk(sk)->mapped);
312}
313
314static const struct vm_operations_struct netlink_mmap_ops = {
315 .open = netlink_mm_open,
316 .close = netlink_mm_close,
317};
318
319static int netlink_mmap(struct file *file, struct socket *sock,
320 struct vm_area_struct *vma)
321{
322 struct sock *sk = sock->sk;
323 struct netlink_sock *nlk = nlk_sk(sk);
324 struct netlink_ring *ring;
325 unsigned long start, size, expected;
326 unsigned int i;
327 int err = -EINVAL;
328
329 if (vma->vm_pgoff)
330 return -EINVAL;
331
332 mutex_lock(&nlk->pg_vec_lock);
333
334 expected = 0;
335 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
336 if (ring->pg_vec == NULL)
337 continue;
338 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
339 }
340
341 if (expected == 0)
342 goto out;
343
344 size = vma->vm_end - vma->vm_start;
345 if (size != expected)
346 goto out;
347
348 start = vma->vm_start;
349 for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
350 if (ring->pg_vec == NULL)
351 continue;
352
353 for (i = 0; i < ring->pg_vec_len; i++) {
354 struct page *page;
355 void *kaddr = ring->pg_vec[i];
356 unsigned int pg_num;
357
358 for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
359 page = pgvec_to_page(kaddr);
360 err = vm_insert_page(vma, start, page);
361 if (err < 0)
362 goto out;
363 start += PAGE_SIZE;
364 kaddr += PAGE_SIZE;
365 }
366 }
367 }
368
369 atomic_inc(&nlk->mapped);
370 vma->vm_ops = &netlink_mmap_ops;
371 err = 0;
372out:
373 mutex_unlock(&nlk->pg_vec_lock);
374 return 0;
375}
Patrick McHardy9652e932013-04-17 06:47:02 +0000376
377static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr)
378{
379#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
380 struct page *p_start, *p_end;
381
382 /* First page is flushed through netlink_{get,set}_status */
383 p_start = pgvec_to_page(hdr + PAGE_SIZE);
384 p_end = pgvec_to_page((void *)hdr + NL_MMAP_MSG_HDRLEN + hdr->nm_len - 1);
385 while (p_start <= p_end) {
386 flush_dcache_page(p_start);
387 p_start++;
388 }
389#endif
390}
391
392static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
393{
394 smp_rmb();
395 flush_dcache_page(pgvec_to_page(hdr));
396 return hdr->nm_status;
397}
398
399static void netlink_set_status(struct nl_mmap_hdr *hdr,
400 enum nl_mmap_status status)
401{
402 hdr->nm_status = status;
403 flush_dcache_page(pgvec_to_page(hdr));
404 smp_wmb();
405}
406
407static struct nl_mmap_hdr *
408__netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
409{
410 unsigned int pg_vec_pos, frame_off;
411
412 pg_vec_pos = pos / ring->frames_per_block;
413 frame_off = pos % ring->frames_per_block;
414
415 return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
416}
417
418static struct nl_mmap_hdr *
419netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
420 enum nl_mmap_status status)
421{
422 struct nl_mmap_hdr *hdr;
423
424 hdr = __netlink_lookup_frame(ring, pos);
425 if (netlink_get_status(hdr) != status)
426 return NULL;
427
428 return hdr;
429}
430
431static struct nl_mmap_hdr *
432netlink_current_frame(const struct netlink_ring *ring,
433 enum nl_mmap_status status)
434{
435 return netlink_lookup_frame(ring, ring->head, status);
436}
437
438static struct nl_mmap_hdr *
439netlink_previous_frame(const struct netlink_ring *ring,
440 enum nl_mmap_status status)
441{
442 unsigned int prev;
443
444 prev = ring->head ? ring->head - 1 : ring->frame_max;
445 return netlink_lookup_frame(ring, prev, status);
446}
447
448static void netlink_increment_head(struct netlink_ring *ring)
449{
450 ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
451}
452
453static void netlink_forward_ring(struct netlink_ring *ring)
454{
455 unsigned int head = ring->head, pos = head;
456 const struct nl_mmap_hdr *hdr;
457
458 do {
459 hdr = __netlink_lookup_frame(ring, pos);
460 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
461 break;
462 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
463 break;
464 netlink_increment_head(ring);
465 } while (ring->head != head);
466}
467
Patrick McHardycd1df522013-04-17 06:47:05 +0000468static bool netlink_dump_space(struct netlink_sock *nlk)
469{
470 struct netlink_ring *ring = &nlk->rx_ring;
471 struct nl_mmap_hdr *hdr;
472 unsigned int n;
473
474 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
475 if (hdr == NULL)
476 return false;
477
478 n = ring->head + ring->frame_max / 2;
479 if (n > ring->frame_max)
480 n -= ring->frame_max;
481
482 hdr = __netlink_lookup_frame(ring, n);
483
484 return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
485}
486
Patrick McHardy9652e932013-04-17 06:47:02 +0000487static unsigned int netlink_poll(struct file *file, struct socket *sock,
488 poll_table *wait)
489{
490 struct sock *sk = sock->sk;
491 struct netlink_sock *nlk = nlk_sk(sk);
492 unsigned int mask;
Patrick McHardycd1df522013-04-17 06:47:05 +0000493 int err;
Patrick McHardy9652e932013-04-17 06:47:02 +0000494
Patrick McHardycd1df522013-04-17 06:47:05 +0000495 if (nlk->rx_ring.pg_vec != NULL) {
496 /* Memory mapped sockets don't call recvmsg(), so flow control
497 * for dumps is performed here. A dump is allowed to continue
498 * if at least half the ring is unused.
499 */
500 while (nlk->cb != NULL && netlink_dump_space(nlk)) {
501 err = netlink_dump(sk);
502 if (err < 0) {
503 sk->sk_err = err;
504 sk->sk_error_report(sk);
505 break;
506 }
507 }
508 netlink_rcv_wake(sk);
509 }
Patrick McHardy5fd96122013-04-17 06:47:03 +0000510
Patrick McHardy9652e932013-04-17 06:47:02 +0000511 mask = datagram_poll(file, sock, wait);
512
513 spin_lock_bh(&sk->sk_receive_queue.lock);
514 if (nlk->rx_ring.pg_vec) {
515 netlink_forward_ring(&nlk->rx_ring);
516 if (!netlink_previous_frame(&nlk->rx_ring, NL_MMAP_STATUS_UNUSED))
517 mask |= POLLIN | POLLRDNORM;
518 }
519 spin_unlock_bh(&sk->sk_receive_queue.lock);
520
521 spin_lock_bh(&sk->sk_write_queue.lock);
522 if (nlk->tx_ring.pg_vec) {
523 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
524 mask |= POLLOUT | POLLWRNORM;
525 }
526 spin_unlock_bh(&sk->sk_write_queue.lock);
527
528 return mask;
529}
530
531static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
532{
533 return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
534}
535
536static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
537 struct netlink_ring *ring,
538 struct nl_mmap_hdr *hdr)
539{
540 unsigned int size;
541 void *data;
542
543 size = ring->frame_size - NL_MMAP_HDRLEN;
544 data = (void *)hdr + NL_MMAP_HDRLEN;
545
546 skb->head = data;
547 skb->data = data;
548 skb_reset_tail_pointer(skb);
549 skb->end = skb->tail + size;
550 skb->len = 0;
551
552 skb->destructor = netlink_skb_destructor;
553 NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
554 NETLINK_CB(skb).sk = sk;
555}
Patrick McHardy5fd96122013-04-17 06:47:03 +0000556
557static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
558 u32 dst_portid, u32 dst_group,
559 struct sock_iocb *siocb)
560{
561 struct netlink_sock *nlk = nlk_sk(sk);
562 struct netlink_ring *ring;
563 struct nl_mmap_hdr *hdr;
564 struct sk_buff *skb;
565 unsigned int maxlen;
566 bool excl = true;
567 int err = 0, len = 0;
568
569 /* Netlink messages are validated by the receiver before processing.
570 * In order to avoid userspace changing the contents of the message
571 * after validation, the socket and the ring may only be used by a
572 * single process, otherwise we fall back to copying.
573 */
574 if (atomic_long_read(&sk->sk_socket->file->f_count) > 2 ||
575 atomic_read(&nlk->mapped) > 1)
576 excl = false;
577
578 mutex_lock(&nlk->pg_vec_lock);
579
580 ring = &nlk->tx_ring;
581 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
582
583 do {
584 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
585 if (hdr == NULL) {
586 if (!(msg->msg_flags & MSG_DONTWAIT) &&
587 atomic_read(&nlk->tx_ring.pending))
588 schedule();
589 continue;
590 }
591 if (hdr->nm_len > maxlen) {
592 err = -EINVAL;
593 goto out;
594 }
595
596 netlink_frame_flush_dcache(hdr);
597
598 if (likely(dst_portid == 0 && dst_group == 0 && excl)) {
599 skb = alloc_skb_head(GFP_KERNEL);
600 if (skb == NULL) {
601 err = -ENOBUFS;
602 goto out;
603 }
604 sock_hold(sk);
605 netlink_ring_setup_skb(skb, sk, ring, hdr);
606 NETLINK_CB(skb).flags |= NETLINK_SKB_TX;
607 __skb_put(skb, hdr->nm_len);
608 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
609 atomic_inc(&ring->pending);
610 } else {
611 skb = alloc_skb(hdr->nm_len, GFP_KERNEL);
612 if (skb == NULL) {
613 err = -ENOBUFS;
614 goto out;
615 }
616 __skb_put(skb, hdr->nm_len);
617 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, hdr->nm_len);
618 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
619 }
620
621 netlink_increment_head(ring);
622
623 NETLINK_CB(skb).portid = nlk->portid;
624 NETLINK_CB(skb).dst_group = dst_group;
625 NETLINK_CB(skb).creds = siocb->scm->creds;
626
627 err = security_netlink_send(sk, skb);
628 if (err) {
629 kfree_skb(skb);
630 goto out;
631 }
632
633 if (unlikely(dst_group)) {
634 atomic_inc(&skb->users);
635 netlink_broadcast(sk, skb, dst_portid, dst_group,
636 GFP_KERNEL);
637 }
638 err = netlink_unicast(sk, skb, dst_portid,
639 msg->msg_flags & MSG_DONTWAIT);
640 if (err < 0)
641 goto out;
642 len += err;
643
644 } while (hdr != NULL ||
645 (!(msg->msg_flags & MSG_DONTWAIT) &&
646 atomic_read(&nlk->tx_ring.pending)));
647
648 if (len > 0)
649 err = len;
650out:
651 mutex_unlock(&nlk->pg_vec_lock);
652 return err;
653}
Patrick McHardyf9c22882013-04-17 06:47:04 +0000654
655static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
656{
657 struct nl_mmap_hdr *hdr;
658
659 hdr = netlink_mmap_hdr(skb);
660 hdr->nm_len = skb->len;
661 hdr->nm_group = NETLINK_CB(skb).dst_group;
662 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
663 hdr->nm_uid = NETLINK_CB(skb).creds.uid;
664 hdr->nm_gid = NETLINK_CB(skb).creds.gid;
665 netlink_frame_flush_dcache(hdr);
666 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
667
668 NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
669 kfree_skb(skb);
670}
671
672static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
673{
674 struct netlink_sock *nlk = nlk_sk(sk);
675 struct netlink_ring *ring = &nlk->rx_ring;
676 struct nl_mmap_hdr *hdr;
677
678 spin_lock_bh(&sk->sk_receive_queue.lock);
679 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
680 if (hdr == NULL) {
681 spin_unlock_bh(&sk->sk_receive_queue.lock);
682 kfree_skb(skb);
Patrick McHardycd1df522013-04-17 06:47:05 +0000683 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000684 return;
685 }
686 netlink_increment_head(ring);
687 __skb_queue_tail(&sk->sk_receive_queue, skb);
688 spin_unlock_bh(&sk->sk_receive_queue.lock);
689
690 hdr->nm_len = skb->len;
691 hdr->nm_group = NETLINK_CB(skb).dst_group;
692 hdr->nm_pid = NETLINK_CB(skb).creds.pid;
693 hdr->nm_uid = NETLINK_CB(skb).creds.uid;
694 hdr->nm_gid = NETLINK_CB(skb).creds.gid;
695 netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
696}
697
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000698#else /* CONFIG_NETLINK_MMAP */
Patrick McHardy9652e932013-04-17 06:47:02 +0000699#define netlink_skb_is_mmaped(skb) false
Patrick McHardyf9c22882013-04-17 06:47:04 +0000700#define netlink_rx_is_mmaped(sk) false
Patrick McHardy5fd96122013-04-17 06:47:03 +0000701#define netlink_tx_is_mmaped(sk) false
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000702#define netlink_mmap sock_no_mmap
Patrick McHardy9652e932013-04-17 06:47:02 +0000703#define netlink_poll datagram_poll
Patrick McHardy5fd96122013-04-17 06:47:03 +0000704#define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, siocb) 0
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000705#endif /* CONFIG_NETLINK_MMAP */
706
Eric Dumazet658cb352012-04-22 21:30:21 +0000707static void netlink_destroy_callback(struct netlink_callback *cb)
708{
709 kfree_skb(cb->skb);
710 kfree(cb);
711}
712
Eric Dumazetbfb253c2012-04-22 21:30:29 +0000713static void netlink_consume_callback(struct netlink_callback *cb)
714{
715 consume_skb(cb->skb);
716 kfree(cb);
717}
718
Patrick McHardycf0a0182013-04-17 06:47:00 +0000719static void netlink_skb_destructor(struct sk_buff *skb)
720{
Patrick McHardy9652e932013-04-17 06:47:02 +0000721#ifdef CONFIG_NETLINK_MMAP
722 struct nl_mmap_hdr *hdr;
723 struct netlink_ring *ring;
724 struct sock *sk;
725
726 /* If a packet from the kernel to userspace was freed because of an
727 * error without being delivered to userspace, the kernel must reset
728 * the status. In the direction userspace to kernel, the status is
729 * always reset here after the packet was processed and freed.
730 */
731 if (netlink_skb_is_mmaped(skb)) {
732 hdr = netlink_mmap_hdr(skb);
733 sk = NETLINK_CB(skb).sk;
734
Patrick McHardy5fd96122013-04-17 06:47:03 +0000735 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
736 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
737 ring = &nlk_sk(sk)->tx_ring;
738 } else {
739 if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
740 hdr->nm_len = 0;
741 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
742 }
743 ring = &nlk_sk(sk)->rx_ring;
Patrick McHardy9652e932013-04-17 06:47:02 +0000744 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000745
746 WARN_ON(atomic_read(&ring->pending) == 0);
747 atomic_dec(&ring->pending);
748 sock_put(sk);
749
750 skb->data = NULL;
751 }
752#endif
753 if (skb->sk != NULL)
754 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000755}
756
757static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
758{
759 WARN_ON(skb->sk != NULL);
760 skb->sk = sk;
761 skb->destructor = netlink_skb_destructor;
762 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
763 sk_mem_charge(sk, skb->truesize);
764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766static void netlink_sock_destruct(struct sock *sk)
767{
Herbert Xu3f660d62007-05-03 03:17:14 -0700768 struct netlink_sock *nlk = nlk_sk(sk);
769
Herbert Xu3f660d62007-05-03 03:17:14 -0700770 if (nlk->cb) {
771 if (nlk->cb->done)
772 nlk->cb->done(nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000773
774 module_put(nlk->cb->module);
Herbert Xu3f660d62007-05-03 03:17:14 -0700775 netlink_destroy_callback(nlk->cb);
776 }
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000779#ifdef CONFIG_NETLINK_MMAP
780 if (1) {
781 struct nl_mmap_req req;
782
783 memset(&req, 0, sizeof(req));
784 if (nlk->rx_ring.pg_vec)
785 netlink_set_ring(sk, &req, true, false);
786 memset(&req, 0, sizeof(req));
787 if (nlk->tx_ring.pg_vec)
788 netlink_set_ring(sk, &req, true, true);
789 }
790#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800793 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return;
795 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700796
797 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
798 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
799 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800802/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
803 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
805 * this, _but_ remember, it adds useless work on UP machines.
806 */
807
Johannes Bergd136f1b2009-09-12 03:03:15 +0000808void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800809 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000811 might_sleep();
812
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700813 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (atomic_read(&nl_table_users)) {
816 DECLARE_WAITQUEUE(wait, current);
817
818 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800819 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 set_current_state(TASK_UNINTERRUPTIBLE);
821 if (atomic_read(&nl_table_users) == 0)
822 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700823 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700825 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
828 __set_current_state(TASK_RUNNING);
829 remove_wait_queue(&nl_table_wait, &wait);
830 }
831}
832
Johannes Bergd136f1b2009-09-12 03:03:15 +0000833void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800834 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700836 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 wake_up(&nl_table_wait);
838}
839
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800840static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841netlink_lock_table(void)
842{
843 /* read_lock() synchronizes us to netlink_table_grab */
844
845 read_lock(&nl_table_lock);
846 atomic_inc(&nl_table_users);
847 read_unlock(&nl_table_lock);
848}
849
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800850static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851netlink_unlock_table(void)
852{
853 if (atomic_dec_and_test(&nl_table_users))
854 wake_up(&nl_table_wait);
855}
856
Eric W. Biederman15e47302012-09-07 20:12:54 +0000857static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Eric W. Biederman15e47302012-09-07 20:12:54 +0000859 struct nl_portid_hash *hash = &nl_table[protocol].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct hlist_head *head;
861 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 read_lock(&nl_table_lock);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000864 head = nl_portid_hashfn(hash, portid);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800865 sk_for_each(sk, head) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000866 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->portid == portid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 sock_hold(sk);
868 goto found;
869 }
870 }
871 sk = NULL;
872found:
873 read_unlock(&nl_table_lock);
874 return sk;
875}
876
Eric W. Biederman15e47302012-09-07 20:12:54 +0000877static struct hlist_head *nl_portid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800880 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 else
882 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800883 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
884 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Eric W. Biederman15e47302012-09-07 20:12:54 +0000887static void nl_portid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 if (size <= PAGE_SIZE)
890 kfree(table);
891 else
892 free_pages((unsigned long)table, get_order(size));
893}
894
Eric W. Biederman15e47302012-09-07 20:12:54 +0000895static int nl_portid_hash_rehash(struct nl_portid_hash *hash, int grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 unsigned int omask, mask, shift;
898 size_t osize, size;
899 struct hlist_head *otable, *table;
900 int i;
901
902 omask = mask = hash->mask;
903 osize = size = (mask + 1) * sizeof(*table);
904 shift = hash->shift;
905
906 if (grow) {
907 if (++shift > hash->max_shift)
908 return 0;
909 mask = mask * 2 + 1;
910 size *= 2;
911 }
912
Eric W. Biederman15e47302012-09-07 20:12:54 +0000913 table = nl_portid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (!table)
915 return 0;
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 otable = hash->table;
918 hash->table = table;
919 hash->mask = mask;
920 hash->shift = shift;
921 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
922
923 for (i = 0; i <= omask; i++) {
924 struct sock *sk;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800925 struct hlist_node *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Sasha Levinb67bfe02013-02-27 17:06:00 -0800927 sk_for_each_safe(sk, tmp, &otable[i])
Eric W. Biederman15e47302012-09-07 20:12:54 +0000928 __sk_add_node(sk, nl_portid_hashfn(hash, nlk_sk(sk)->portid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930
Eric W. Biederman15e47302012-09-07 20:12:54 +0000931 nl_portid_hash_free(otable, osize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 hash->rehash_time = jiffies + 10 * 60 * HZ;
933 return 1;
934}
935
Eric W. Biederman15e47302012-09-07 20:12:54 +0000936static inline int nl_portid_hash_dilute(struct nl_portid_hash *hash, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 int avg = hash->entries >> hash->shift;
939
Eric W. Biederman15e47302012-09-07 20:12:54 +0000940 if (unlikely(avg > 1) && nl_portid_hash_rehash(hash, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return 1;
942
943 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000944 nl_portid_hash_rehash(hash, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return 1;
946 }
947
948 return 0;
949}
950
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800951static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Patrick McHardy4277a082006-03-20 18:52:01 -0800953static void
954netlink_update_listeners(struct sock *sk)
955{
956 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -0800957 unsigned long mask;
958 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000959 struct listeners *listeners;
960
961 listeners = nl_deref_protected(tbl->listeners);
962 if (!listeners)
963 return;
Patrick McHardy4277a082006-03-20 18:52:01 -0800964
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700965 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800966 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800967 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700968 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
969 mask |= nlk_sk(sk)->groups[i];
970 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000971 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800972 }
973 /* this function is only called with the netlink table "grabbed", which
974 * makes sure updates are visible before bind or setsockopt return. */
975}
976
Eric W. Biederman15e47302012-09-07 20:12:54 +0000977static int netlink_insert(struct sock *sk, struct net *net, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Eric W. Biederman15e47302012-09-07 20:12:54 +0000979 struct nl_portid_hash *hash = &nl_table[sk->sk_protocol].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct hlist_head *head;
981 int err = -EADDRINUSE;
982 struct sock *osk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 int len;
984
985 netlink_table_grab();
Eric W. Biederman15e47302012-09-07 20:12:54 +0000986 head = nl_portid_hashfn(hash, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 len = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800988 sk_for_each(osk, head) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000989 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->portid == portid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 break;
991 len++;
992 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800993 if (osk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 goto err;
995
996 err = -EBUSY;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000997 if (nlk_sk(sk)->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto err;
999
1000 err = -ENOMEM;
1001 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
1002 goto err;
1003
Eric W. Biederman15e47302012-09-07 20:12:54 +00001004 if (len && nl_portid_hash_dilute(hash, len))
1005 head = nl_portid_hashfn(hash, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 hash->entries++;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001007 nlk_sk(sk)->portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 sk_add_node(sk, head);
1009 err = 0;
1010
1011err:
1012 netlink_table_ungrab();
1013 return err;
1014}
1015
1016static void netlink_remove(struct sock *sk)
1017{
1018 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -07001019 if (sk_del_node_init(sk))
1020 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001021 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 __sk_del_bind_node(sk);
1023 netlink_table_ungrab();
1024}
1025
1026static struct proto netlink_proto = {
1027 .name = "NETLINK",
1028 .owner = THIS_MODULE,
1029 .obj_size = sizeof(struct netlink_sock),
1030};
1031
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001032static int __netlink_create(struct net *net, struct socket *sock,
1033 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 struct sock *sk;
1036 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001037
1038 sock->ops = &netlink_ops;
1039
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001040 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -07001041 if (!sk)
1042 return -ENOMEM;
1043
1044 sock_init_data(sock, sk);
1045
1046 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001047 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001048 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001049 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001050 nlk->cb_mutex = &nlk->cb_def_mutex;
1051 mutex_init(nlk->cb_mutex);
1052 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001053 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001054#ifdef CONFIG_NETLINK_MMAP
1055 mutex_init(&nlk->pg_vec_lock);
1056#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001057
1058 sk->sk_destruct = netlink_sock_destruct;
1059 sk->sk_protocol = protocol;
1060 return 0;
1061}
1062
Eric Paris3f378b62009-11-05 22:18:14 -08001063static int netlink_create(struct net *net, struct socket *sock, int protocol,
1064 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001065{
1066 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001067 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001068 struct netlink_sock *nlk;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001069 void (*bind)(int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001070 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 sock->state = SS_UNCONNECTED;
1073
1074 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1075 return -ESOCKTNOSUPPORT;
1076
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001077 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return -EPROTONOSUPPORT;
1079
Patrick McHardy77247bb2005-08-14 19:27:13 -07001080 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001081#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001082 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001083 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001084 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001085 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001086 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001087#endif
1088 if (nl_table[protocol].registered &&
1089 try_module_get(nl_table[protocol].module))
1090 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001091 else
1092 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001093 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001094 bind = nl_table[protocol].bind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001095 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001096
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001097 if (err < 0)
1098 goto out;
1099
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001100 err = __netlink_create(net, sock, cb_mutex, protocol);
1101 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001102 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
David S. Miller6f756a82008-11-23 17:34:03 -08001104 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001105 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001106 local_bh_enable();
1107
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001108 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001109 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001110 nlk->netlink_bind = bind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001111out:
1112 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Patrick McHardyab33a172005-08-14 19:31:36 -07001114out_module:
1115 module_put(module);
1116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119static int netlink_release(struct socket *sock)
1120{
1121 struct sock *sk = sock->sk;
1122 struct netlink_sock *nlk;
1123
1124 if (!sk)
1125 return 0;
1126
1127 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001128 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 nlk = nlk_sk(sk);
1130
Herbert Xu3f660d62007-05-03 03:17:14 -07001131 /*
1132 * OK. Socket is unlinked, any packets that arrive now
1133 * will be purged.
1134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 sock->sk = NULL;
1137 wake_up_interruptible_all(&nlk->wait);
1138
1139 skb_queue_purge(&sk->sk_write_queue);
1140
Eric W. Biederman15e47302012-09-07 20:12:54 +00001141 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001143 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001145 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 };
Alan Sterne041c682006-03-27 01:16:30 -08001147 atomic_notifier_call_chain(&netlink_chain,
1148 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001149 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001150
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001151 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001152
Patrick McHardy4277a082006-03-20 18:52:01 -08001153 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -07001154 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001155 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1156 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001157 struct listeners *old;
1158
1159 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1160 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1161 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001162 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001163 nl_table[sk->sk_protocol].bind = NULL;
1164 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001165 nl_table[sk->sk_protocol].registered = 0;
1166 }
Eric Dumazet658cb352012-04-22 21:30:21 +00001167 } else if (nlk->subscriptions) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001168 netlink_update_listeners(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001169 }
Patrick McHardy4277a082006-03-20 18:52:01 -08001170 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -07001171
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001172 kfree(nlk->groups);
1173 nlk->groups = NULL;
1174
Eric Dumazet37558102008-11-24 14:05:22 -08001175 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001176 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001177 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 sock_put(sk);
1179 return 0;
1180}
1181
1182static int netlink_autobind(struct socket *sock)
1183{
1184 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001185 struct net *net = sock_net(sk);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001186 struct nl_portid_hash *hash = &nl_table[sk->sk_protocol].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 struct hlist_head *head;
1188 struct sock *osk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001189 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int err;
1191 static s32 rover = -4097;
1192
1193retry:
1194 cond_resched();
1195 netlink_table_grab();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001196 head = nl_portid_hashfn(hash, portid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001197 sk_for_each(osk, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001198 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001199 continue;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001200 if (nlk_sk(osk)->portid == portid) {
1201 /* Bind collision, search negative portid values. */
1202 portid = rover--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (rover > -4097)
1204 rover = -4097;
1205 netlink_table_ungrab();
1206 goto retry;
1207 }
1208 }
1209 netlink_table_ungrab();
1210
Eric W. Biederman15e47302012-09-07 20:12:54 +00001211 err = netlink_insert(sk, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (err == -EADDRINUSE)
1213 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -07001214
1215 /* If 2 threads race to autobind, that is fine. */
1216 if (err == -EBUSY)
1217 err = 0;
1218
1219 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001222static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001223{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001224 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +00001225 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001226}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001228static void
1229netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1230{
1231 struct netlink_sock *nlk = nlk_sk(sk);
1232
1233 if (nlk->subscriptions && !subscriptions)
1234 __sk_del_bind_node(sk);
1235 else if (!nlk->subscriptions && subscriptions)
1236 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1237 nlk->subscriptions = subscriptions;
1238}
1239
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001240static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -07001241{
1242 struct netlink_sock *nlk = nlk_sk(sk);
1243 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001244 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001245 int err = 0;
1246
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001247 netlink_table_grab();
1248
Patrick McHardy513c2502005-09-06 15:43:59 -07001249 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001250 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -07001251 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001252 goto out_unlock;
1253 }
Patrick McHardy513c2502005-09-06 15:43:59 -07001254
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001255 if (nlk->ngroups >= groups)
1256 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -07001257
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001258 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1259 if (new_groups == NULL) {
1260 err = -ENOMEM;
1261 goto out_unlock;
1262 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001263 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001264 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1265
1266 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001267 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001268 out_unlock:
1269 netlink_table_ungrab();
1270 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001271}
1272
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001273static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1274 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
1276 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001277 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 struct netlink_sock *nlk = nlk_sk(sk);
1279 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1280 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001281
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001282 if (addr_len < sizeof(struct sockaddr_nl))
1283 return -EINVAL;
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (nladdr->nl_family != AF_NETLINK)
1286 return -EINVAL;
1287
1288 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -07001289 if (nladdr->nl_groups) {
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001290 if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001291 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001292 err = netlink_realloc_groups(sk);
1293 if (err)
1294 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Eric W. Biederman15e47302012-09-07 20:12:54 +00001297 if (nlk->portid) {
1298 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return -EINVAL;
1300 } else {
1301 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001302 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 netlink_autobind(sock);
1304 if (err)
1305 return err;
1306 }
1307
Patrick McHardy513c2502005-09-06 15:43:59 -07001308 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310
1311 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001312 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001313 hweight32(nladdr->nl_groups) -
1314 hweight32(nlk->groups[0]));
1315 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001316 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 netlink_table_ungrab();
1318
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001319 if (nlk->netlink_bind && nlk->groups[0]) {
1320 int i;
1321
1322 for (i=0; i<nlk->ngroups; i++) {
1323 if (test_bit(i, nlk->groups))
1324 nlk->netlink_bind(i);
1325 }
1326 }
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return 0;
1329}
1330
1331static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1332 int alen, int flags)
1333{
1334 int err = 0;
1335 struct sock *sk = sock->sk;
1336 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001337 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Changli Gao6503d962010-03-31 22:58:26 +00001339 if (alen < sizeof(addr->sa_family))
1340 return -EINVAL;
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (addr->sa_family == AF_UNSPEC) {
1343 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001344 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001345 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return 0;
1347 }
1348 if (addr->sa_family != AF_NETLINK)
1349 return -EINVAL;
1350
1351 /* Only superuser is allowed to send multicasts */
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001352 if (nladdr->nl_groups && !netlink_capable(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return -EPERM;
1354
Eric W. Biederman15e47302012-09-07 20:12:54 +00001355 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 err = netlink_autobind(sock);
1357
1358 if (err == 0) {
1359 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001360 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001361 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363
1364 return err;
1365}
1366
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001367static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1368 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct sock *sk = sock->sk;
1371 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001372 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 nladdr->nl_family = AF_NETLINK;
1375 nladdr->nl_pad = 0;
1376 *addr_len = sizeof(*nladdr);
1377
1378 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001379 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001380 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001382 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001383 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385 return 0;
1386}
1387
Eric W. Biederman15e47302012-09-07 20:12:54 +00001388static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 struct sock *sock;
1391 struct netlink_sock *nlk;
1392
Eric W. Biederman15e47302012-09-07 20:12:54 +00001393 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (!sock)
1395 return ERR_PTR(-ECONNREFUSED);
1396
1397 /* Don't bother queuing skb if kernel socket has no input function */
1398 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001399 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001400 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 sock_put(sock);
1402 return ERR_PTR(-ECONNREFUSED);
1403 }
1404 return sock;
1405}
1406
1407struct sock *netlink_getsockbyfilp(struct file *filp)
1408{
Al Viro496ad9a2013-01-23 17:07:38 -05001409 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 struct sock *sock;
1411
1412 if (!S_ISSOCK(inode->i_mode))
1413 return ERR_PTR(-ENOTSOCK);
1414
1415 sock = SOCKET_I(inode)->sk;
1416 if (sock->sk_family != AF_NETLINK)
1417 return ERR_PTR(-EINVAL);
1418
1419 sock_hold(sock);
1420 return sock;
1421}
1422
1423/*
1424 * Attach a skb to a netlink socket.
1425 * The caller must hold a reference to the destination socket. On error, the
1426 * reference is dropped. The skb is not send to the destination, just all
1427 * all error checks are performed and memory in the queue is reserved.
1428 * Return values:
1429 * < 0: error. skb freed, reference to sock dropped.
1430 * 0: continue
1431 * 1: repeat lookup - reference dropped while waiting for socket memory.
1432 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001433int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001434 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 struct netlink_sock *nlk;
1437
1438 nlk = nlk_sk(sk);
1439
Patrick McHardy5fd96122013-04-17 06:47:03 +00001440 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1441 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
1442 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001444 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001445 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 netlink_overrun(sk);
1447 sock_put(sk);
1448 kfree_skb(skb);
1449 return -EAGAIN;
1450 }
1451
1452 __set_current_state(TASK_INTERRUPTIBLE);
1453 add_wait_queue(&nlk->wait, &wait);
1454
1455 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Patrick McHardycd967e02013-04-17 06:46:56 +00001456 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001458 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 __set_current_state(TASK_RUNNING);
1461 remove_wait_queue(&nlk->wait, &wait);
1462 sock_put(sk);
1463
1464 if (signal_pending(current)) {
1465 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001466 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468 return 1;
1469 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001470 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return 0;
1472}
1473
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001474static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 int len = skb->len;
1477
Patrick McHardyf9c22882013-04-17 06:47:04 +00001478#ifdef CONFIG_NETLINK_MMAP
1479 if (netlink_skb_is_mmaped(skb))
1480 netlink_queue_mmaped_skb(sk, skb);
1481 else if (netlink_rx_is_mmaped(sk))
1482 netlink_ring_set_copied(sk, skb);
1483 else
1484#endif /* CONFIG_NETLINK_MMAP */
1485 skb_queue_tail(&sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001487 return len;
1488}
1489
1490int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1491{
1492 int len = __netlink_sendskb(sk, skb);
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 sock_put(sk);
1495 return len;
1496}
1497
1498void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1499{
1500 kfree_skb(skb);
1501 sock_put(sk);
1502}
1503
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001504static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 int delta;
1507
Patrick McHardy1298ca42013-04-17 06:46:59 +00001508 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001509 if (netlink_skb_is_mmaped(skb))
1510 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001512 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (delta * 2 < skb->truesize)
1514 return skb;
1515
1516 if (skb_shared(skb)) {
1517 struct sk_buff *nskb = skb_clone(skb, allocation);
1518 if (!nskb)
1519 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001520 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 skb = nskb;
1522 }
1523
1524 if (!pskb_expand_head(skb, 0, -delta, allocation))
1525 skb->truesize -= delta;
1526
1527 return skb;
1528}
1529
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001530static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1531 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001532{
1533 int ret;
1534 struct netlink_sock *nlk = nlk_sk(sk);
1535
1536 ret = -ECONNREFUSED;
1537 if (nlk->netlink_rcv != NULL) {
1538 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001539 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001540 NETLINK_CB(skb).sk = ssk;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001541 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001542 consume_skb(skb);
1543 } else {
1544 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001545 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001546 sock_put(sk);
1547 return ret;
1548}
1549
1550int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001551 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 struct sock *sk;
1554 int err;
1555 long timeo;
1556
1557 skb = netlink_trim(skb, gfp_any());
1558
1559 timeo = sock_sndtimeo(ssk, nonblock);
1560retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001561 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (IS_ERR(sk)) {
1563 kfree_skb(skb);
1564 return PTR_ERR(sk);
1565 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001566 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001567 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001568
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001569 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001570 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001571 kfree_skb(skb);
1572 sock_put(sk);
1573 return err;
1574 }
1575
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001576 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (err == 1)
1578 goto retry;
1579 if (err)
1580 return err;
1581
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001582 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001584EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Patrick McHardyf9c22882013-04-17 06:47:04 +00001586struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1587 u32 dst_portid, gfp_t gfp_mask)
1588{
1589#ifdef CONFIG_NETLINK_MMAP
1590 struct sock *sk = NULL;
1591 struct sk_buff *skb;
1592 struct netlink_ring *ring;
1593 struct nl_mmap_hdr *hdr;
1594 unsigned int maxlen;
1595
1596 sk = netlink_getsockbyportid(ssk, dst_portid);
1597 if (IS_ERR(sk))
1598 goto out;
1599
1600 ring = &nlk_sk(sk)->rx_ring;
1601 /* fast-path without atomic ops for common case: non-mmaped receiver */
1602 if (ring->pg_vec == NULL)
1603 goto out_put;
1604
1605 skb = alloc_skb_head(gfp_mask);
1606 if (skb == NULL)
1607 goto err1;
1608
1609 spin_lock_bh(&sk->sk_receive_queue.lock);
1610 /* check again under lock */
1611 if (ring->pg_vec == NULL)
1612 goto out_free;
1613
1614 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1615 if (maxlen < size)
1616 goto out_free;
1617
1618 netlink_forward_ring(ring);
1619 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1620 if (hdr == NULL)
1621 goto err2;
1622 netlink_ring_setup_skb(skb, sk, ring, hdr);
1623 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1624 atomic_inc(&ring->pending);
1625 netlink_increment_head(ring);
1626
1627 spin_unlock_bh(&sk->sk_receive_queue.lock);
1628 return skb;
1629
1630err2:
1631 kfree_skb(skb);
1632 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001633 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001634err1:
1635 sock_put(sk);
1636 return NULL;
1637
1638out_free:
1639 kfree_skb(skb);
1640 spin_unlock_bh(&sk->sk_receive_queue.lock);
1641out_put:
1642 sock_put(sk);
1643out:
1644#endif
1645 return alloc_skb(size, gfp_mask);
1646}
1647EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1648
Patrick McHardy4277a082006-03-20 18:52:01 -08001649int netlink_has_listeners(struct sock *sk, unsigned int group)
1650{
1651 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001652 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001653
Denis V. Lunevaed81562007-10-10 21:14:32 -07001654 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001655
1656 rcu_read_lock();
1657 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1658
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001659 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001660 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001661
1662 rcu_read_unlock();
1663
Patrick McHardy4277a082006-03-20 18:52:01 -08001664 return res;
1665}
1666EXPORT_SYMBOL_GPL(netlink_has_listeners);
1667
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001668static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 struct netlink_sock *nlk = nlk_sk(sk);
1671
1672 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Patrick McHardycd967e02013-04-17 06:46:56 +00001673 !test_bit(NETLINK_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001674 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001675 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001676 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678 return -1;
1679}
1680
1681struct netlink_broadcast_data {
1682 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001683 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001684 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 u32 group;
1686 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001687 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 int congested;
1689 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001690 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001692 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1693 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694};
1695
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001696static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 struct netlink_broadcast_data *p)
1698{
1699 struct netlink_sock *nlk = nlk_sk(sk);
1700 int val;
1701
1702 if (p->exclude_sk == sk)
1703 goto out;
1704
Eric W. Biederman15e47302012-09-07 20:12:54 +00001705 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001706 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 goto out;
1708
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001709 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001710 goto out;
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (p->failure) {
1713 netlink_overrun(sk);
1714 goto out;
1715 }
1716
1717 sock_hold(sk);
1718 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001719 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 p->skb2 = skb_clone(p->skb, p->allocation);
1721 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001722 p->skb2 = skb_get(p->skb);
1723 /*
1724 * skb ownership may have been set when
1725 * delivered to a previous socket.
1726 */
1727 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
1729 }
1730 if (p->skb2 == NULL) {
1731 netlink_overrun(sk);
1732 /* Clone failed. Notify ALL listeners. */
1733 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001734 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1735 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001736 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1737 kfree_skb(p->skb2);
1738 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001739 } else if (sk_filter(sk, p->skb2)) {
1740 kfree_skb(p->skb2);
1741 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1743 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001744 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1745 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 } else {
1747 p->congested |= val;
1748 p->delivered = 1;
1749 p->skb2 = NULL;
1750 }
1751 sock_put(sk);
1752
1753out:
1754 return 0;
1755}
1756
Eric W. Biederman15e47302012-09-07 20:12:54 +00001757int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001758 u32 group, gfp_t allocation,
1759 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1760 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001762 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 struct sock *sk;
1765
1766 skb = netlink_trim(skb, allocation);
1767
1768 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001769 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001770 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 info.group = group;
1772 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001773 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 info.congested = 0;
1775 info.delivered = 0;
1776 info.allocation = allocation;
1777 info.skb = skb;
1778 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001779 info.tx_filter = filter;
1780 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 /* While we sleep in clone, do not allow to change socket list */
1783
1784 netlink_lock_table();
1785
Sasha Levinb67bfe02013-02-27 17:06:00 -08001786 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 do_one_broadcast(sk, &info);
1788
Neil Horman70d4bf62010-07-20 06:45:56 +00001789 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 netlink_unlock_table();
1792
Neil Horman70d4bf62010-07-20 06:45:56 +00001793 if (info.delivery_failure) {
1794 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001795 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001796 }
1797 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (info.delivered) {
1800 if (info.congested && (allocation & __GFP_WAIT))
1801 yield();
1802 return 0;
1803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return -ESRCH;
1805}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001806EXPORT_SYMBOL(netlink_broadcast_filtered);
1807
Eric W. Biederman15e47302012-09-07 20:12:54 +00001808int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001809 u32 group, gfp_t allocation)
1810{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001811 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001812 NULL, NULL);
1813}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001814EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816struct netlink_set_err_data {
1817 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001818 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 u32 group;
1820 int code;
1821};
1822
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001823static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001826 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 if (sk == p->exclude_sk)
1829 goto out;
1830
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001831 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001832 goto out;
1833
Eric W. Biederman15e47302012-09-07 20:12:54 +00001834 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001835 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 goto out;
1837
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001838 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1839 ret = 1;
1840 goto out;
1841 }
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 sk->sk_err = p->code;
1844 sk->sk_error_report(sk);
1845out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001849/**
1850 * netlink_set_err - report error to broadcast listeners
1851 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00001852 * @portid: the PORTID of a process that we want to skip (if any)
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001853 * @groups: the broadcast group that will notice the error
1854 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001855 *
1856 * This function returns the number of broadcast listeners that have set the
1857 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001858 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001859int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
1861 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001863 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001866 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001868 /* sk->sk_err wants a positive error value */
1869 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871 read_lock(&nl_table_lock);
1872
Sasha Levinb67bfe02013-02-27 17:06:00 -08001873 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001874 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001877 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001879EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Johannes Berg84659eb2007-07-18 15:47:05 -07001881/* must be called with netlink table grabbed */
1882static void netlink_update_socket_mc(struct netlink_sock *nlk,
1883 unsigned int group,
1884 int is_new)
1885{
1886 int old, new = !!is_new, subscriptions;
1887
1888 old = test_bit(group - 1, nlk->groups);
1889 subscriptions = nlk->subscriptions - old + new;
1890 if (new)
1891 __set_bit(group - 1, nlk->groups);
1892 else
1893 __clear_bit(group - 1, nlk->groups);
1894 netlink_update_subscriptions(&nlk->sk, subscriptions);
1895 netlink_update_listeners(&nlk->sk);
1896}
1897
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001898static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001899 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001900{
1901 struct sock *sk = sock->sk;
1902 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001903 unsigned int val = 0;
1904 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001905
1906 if (level != SOL_NETLINK)
1907 return -ENOPROTOOPT;
1908
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001909 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
1910 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001911 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001912 return -EFAULT;
1913
1914 switch (optname) {
1915 case NETLINK_PKTINFO:
1916 if (val)
1917 nlk->flags |= NETLINK_RECV_PKTINFO;
1918 else
1919 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1920 err = 0;
1921 break;
1922 case NETLINK_ADD_MEMBERSHIP:
1923 case NETLINK_DROP_MEMBERSHIP: {
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001924 if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001925 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001926 err = netlink_realloc_groups(sk);
1927 if (err)
1928 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001929 if (!val || val - 1 >= nlk->ngroups)
1930 return -EINVAL;
1931 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001932 netlink_update_socket_mc(nlk, val,
1933 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001934 netlink_table_ungrab();
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001935
1936 if (nlk->netlink_bind)
1937 nlk->netlink_bind(val);
1938
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001939 err = 0;
1940 break;
1941 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001942 case NETLINK_BROADCAST_ERROR:
1943 if (val)
1944 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1945 else
1946 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1947 err = 0;
1948 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001949 case NETLINK_NO_ENOBUFS:
1950 if (val) {
1951 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
Patrick McHardycd967e02013-04-17 06:46:56 +00001952 clear_bit(NETLINK_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001953 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00001954 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001955 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001956 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001957 err = 0;
1958 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001959#ifdef CONFIG_NETLINK_MMAP
1960 case NETLINK_RX_RING:
1961 case NETLINK_TX_RING: {
1962 struct nl_mmap_req req;
1963
1964 /* Rings might consume more memory than queue limits, require
1965 * CAP_NET_ADMIN.
1966 */
1967 if (!capable(CAP_NET_ADMIN))
1968 return -EPERM;
1969 if (optlen < sizeof(req))
1970 return -EINVAL;
1971 if (copy_from_user(&req, optval, sizeof(req)))
1972 return -EFAULT;
1973 err = netlink_set_ring(sk, &req, false,
1974 optname == NETLINK_TX_RING);
1975 break;
1976 }
1977#endif /* CONFIG_NETLINK_MMAP */
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001978 default:
1979 err = -ENOPROTOOPT;
1980 }
1981 return err;
1982}
1983
1984static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001985 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001986{
1987 struct sock *sk = sock->sk;
1988 struct netlink_sock *nlk = nlk_sk(sk);
1989 int len, val, err;
1990
1991 if (level != SOL_NETLINK)
1992 return -ENOPROTOOPT;
1993
1994 if (get_user(len, optlen))
1995 return -EFAULT;
1996 if (len < 0)
1997 return -EINVAL;
1998
1999 switch (optname) {
2000 case NETLINK_PKTINFO:
2001 if (len < sizeof(int))
2002 return -EINVAL;
2003 len = sizeof(int);
2004 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002005 if (put_user(len, optlen) ||
2006 put_user(val, optval))
2007 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002008 err = 0;
2009 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002010 case NETLINK_BROADCAST_ERROR:
2011 if (len < sizeof(int))
2012 return -EINVAL;
2013 len = sizeof(int);
2014 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
2015 if (put_user(len, optlen) ||
2016 put_user(val, optval))
2017 return -EFAULT;
2018 err = 0;
2019 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002020 case NETLINK_NO_ENOBUFS:
2021 if (len < sizeof(int))
2022 return -EINVAL;
2023 len = sizeof(int);
2024 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
2025 if (put_user(len, optlen) ||
2026 put_user(val, optval))
2027 return -EFAULT;
2028 err = 0;
2029 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002030 default:
2031 err = -ENOPROTOOPT;
2032 }
2033 return err;
2034}
2035
2036static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2037{
2038 struct nl_pktinfo info;
2039
2040 info.group = NETLINK_CB(skb).dst_group;
2041 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2042}
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
2045 struct msghdr *msg, size_t len)
2046{
2047 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2048 struct sock *sk = sock->sk;
2049 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002050 struct sockaddr_nl *addr = msg->msg_name;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002051 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002052 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 struct sk_buff *skb;
2054 int err;
2055 struct scm_cookie scm;
2056
2057 if (msg->msg_flags&MSG_OOB)
2058 return -EOPNOTSUPP;
2059
Eric Dumazet16e57262011-09-19 05:52:27 +00002060 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00002062
Eric Dumazete0e3cea2012-08-21 06:21:17 +00002063 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 if (err < 0)
2065 return err;
2066
2067 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002068 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002070 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002071 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002072 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002073 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002074 if ((dst_group || dst_portid) &&
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002075 !netlink_capable(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002078 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002079 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081
Eric W. Biederman15e47302012-09-07 20:12:54 +00002082 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 err = netlink_autobind(sock);
2084 if (err)
2085 goto out;
2086 }
2087
Patrick McHardy5fd96122013-04-17 06:47:03 +00002088 if (netlink_tx_is_mmaped(sk) &&
2089 msg->msg_iov->iov_base == NULL) {
2090 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2091 siocb);
2092 goto out;
2093 }
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 err = -EMSGSIZE;
2096 if (len > sk->sk_sndbuf - 32)
2097 goto out;
2098 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08002099 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002100 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 goto out;
2102
Eric W. Biederman15e47302012-09-07 20:12:54 +00002103 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002104 NETLINK_CB(skb).dst_group = dst_group;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00002105 NETLINK_CB(skb).creds = siocb->scm->creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002108 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 kfree_skb(skb);
2110 goto out;
2111 }
2112
2113 err = security_netlink_send(sk, skb);
2114 if (err) {
2115 kfree_skb(skb);
2116 goto out;
2117 }
2118
Patrick McHardyd629b832005-08-14 19:27:50 -07002119 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002121 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002123 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002126 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return err;
2128}
2129
2130static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
2131 struct msghdr *msg, size_t len,
2132 int flags)
2133{
2134 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2135 struct scm_cookie scm;
2136 struct sock *sk = sock->sk;
2137 struct netlink_sock *nlk = nlk_sk(sk);
2138 int noblock = flags&MSG_DONTWAIT;
2139 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002140 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002141 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 if (flags&MSG_OOB)
2144 return -EOPNOTSUPP;
2145
2146 copied = 0;
2147
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002148 skb = skb_recv_datagram(sk, flags, noblock, &err);
2149 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 goto out;
2151
Johannes Berg68d6ac62010-08-15 21:20:44 +00002152 data_skb = skb;
2153
Johannes Berg1dacc762009-07-01 11:26:02 +00002154#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2155 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002156 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002157 * If this skb has a frag_list, then here that means that we
2158 * will have to use the frag_list skb's data for compat tasks
2159 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002160 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002161 * If we need to send the compat skb, assign it to the
2162 * 'data_skb' variable so that it will be used below for data
2163 * copying. We keep 'skb' for everything else, including
2164 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002165 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002166 if (flags & MSG_CMSG_COMPAT)
2167 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002168 }
2169#endif
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 msg->msg_namelen = 0;
2172
Johannes Berg68d6ac62010-08-15 21:20:44 +00002173 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 if (len < copied) {
2175 msg->msg_flags |= MSG_TRUNC;
2176 copied = len;
2177 }
2178
Johannes Berg68d6ac62010-08-15 21:20:44 +00002179 skb_reset_transport_header(data_skb);
2180 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002183 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 addr->nl_family = AF_NETLINK;
2185 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002186 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002187 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 msg->msg_namelen = sizeof(*addr);
2189 }
2190
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002191 if (nlk->flags & NETLINK_RECV_PKTINFO)
2192 netlink_cmsg_recv_pktinfo(msg, skb);
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 if (NULL == siocb->scm) {
2195 memset(&scm, 0, sizeof(scm));
2196 siocb->scm = &scm;
2197 }
2198 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002199 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002200 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 skb_free_datagram(sk, skb);
2203
Andrey Vaginb44d2112011-02-21 02:40:47 +00002204 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
2205 ret = netlink_dump(sk);
2206 if (ret) {
2207 sk->sk_err = ret;
2208 sk->sk_error_report(sk);
2209 }
2210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213out:
2214 netlink_rcv_wake(sk);
2215 return err ? : copied;
2216}
2217
2218static void netlink_data_ready(struct sock *sk, int len)
2219{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002220 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
2222
2223/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002224 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 * complete set of kernel non-blocking support for message
2226 * queueing.
2227 */
2228
2229struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002230__netlink_kernel_create(struct net *net, int unit, struct module *module,
2231 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
2233 struct socket *sock;
2234 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002235 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002236 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002237 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2238 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002240 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002242 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return NULL;
2244
2245 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2246 return NULL;
2247
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002248 /*
2249 * We have to just have a reference on the net from sk, but don't
2250 * get_net it. Besides, we cannot get and then put the net here.
2251 * So we create one inside init_net and the move it to net.
2252 */
2253
2254 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
2255 goto out_sock_release_nosk;
2256
2257 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08002258 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002259
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002260 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002261 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002262 else
2263 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002264
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002265 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002266 if (!listeners)
2267 goto out_sock_release;
2268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002270 if (cfg && cfg->input)
2271 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002273 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002274 goto out_sock_release;
2275
2276 nlk = nlk_sk(sk);
2277 nlk->flags |= NETLINK_KERNEL_SOCKET;
2278
2279 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002280 if (!nl_table[unit].registered) {
2281 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002282 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002283 nl_table[unit].cb_mutex = cb_mutex;
2284 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002285 if (cfg) {
2286 nl_table[unit].bind = cfg->bind;
2287 nl_table[unit].flags = cfg->flags;
2288 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002289 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002290 } else {
2291 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002292 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002293 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002294 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002295 return sk;
2296
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002297out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002298 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002299 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002300 return NULL;
2301
2302out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002303 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002304 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002306EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002307
2308void
2309netlink_kernel_release(struct sock *sk)
2310{
Denis V. Lunevedf02082008-02-29 11:18:32 -08002311 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002312}
2313EXPORT_SYMBOL(netlink_kernel_release);
2314
Johannes Bergd136f1b2009-09-12 03:03:15 +00002315int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002316{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002317 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002318 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002319
2320 if (groups < 32)
2321 groups = 32;
2322
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002323 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002324 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2325 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002326 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002327 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002328 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2329 rcu_assign_pointer(tbl->listeners, new);
2330
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002331 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002332 }
2333 tbl->groups = groups;
2334
Johannes Bergd136f1b2009-09-12 03:03:15 +00002335 return 0;
2336}
2337
2338/**
2339 * netlink_change_ngroups - change number of multicast groups
2340 *
2341 * This changes the number of multicast groups that are available
2342 * on a certain netlink family. Note that it is not possible to
2343 * change the number of groups to below 32. Also note that it does
2344 * not implicitly call netlink_clear_multicast_users() when the
2345 * number of groups is reduced.
2346 *
2347 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2348 * @groups: The new number of groups.
2349 */
2350int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2351{
2352 int err;
2353
2354 netlink_table_grab();
2355 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002356 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002357
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002358 return err;
2359}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002360
Johannes Bergb8273572009-09-24 15:44:05 -07002361void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2362{
2363 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002364 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2365
Sasha Levinb67bfe02013-02-27 17:06:00 -08002366 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002367 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2368}
2369
Johannes Berg84659eb2007-07-18 15:47:05 -07002370/**
2371 * netlink_clear_multicast_users - kick off multicast listeners
2372 *
2373 * This function removes all listeners from the given group.
2374 * @ksk: The kernel netlink socket, as returned by
2375 * netlink_kernel_create().
2376 * @group: The multicast group to clear.
2377 */
2378void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2379{
Johannes Berg84659eb2007-07-18 15:47:05 -07002380 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07002381 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07002382 netlink_table_ungrab();
2383}
Johannes Berg84659eb2007-07-18 15:47:05 -07002384
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002385struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002386__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002387{
2388 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002389 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002390
2391 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
2392 nlh->nlmsg_type = type;
2393 nlh->nlmsg_len = size;
2394 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002395 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002396 nlh->nlmsg_seq = seq;
2397 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002398 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002399 return nlh;
2400}
2401EXPORT_SYMBOL(__nlmsg_put);
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403/*
2404 * It looks a bit ugly.
2405 * It would be better to create kernel thread.
2406 */
2407
2408static int netlink_dump(struct sock *sk)
2409{
2410 struct netlink_sock *nlk = nlk_sk(sk);
2411 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002412 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002414 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002415 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002417 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 cb = nlk->cb;
2420 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002421 err = -EINVAL;
2422 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 }
2424
Greg Rosec7ac8672011-06-10 01:27:09 +00002425 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2426
Patrick McHardyf9c22882013-04-17 06:47:04 +00002427 if (!netlink_rx_is_mmaped(sk) &&
2428 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2429 goto errout_skb;
2430 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid, GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002431 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002432 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002433 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 len = cb->dump(skb, cb);
2436
2437 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002438 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002439
2440 if (sk_filter(sk, skb))
2441 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002442 else
2443 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return 0;
2445 }
2446
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002447 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2448 if (!nlh)
2449 goto errout_skb;
2450
Johannes Berg670dc282011-06-20 13:40:46 +02002451 nl_dump_check_consistent(cb, nlh);
2452
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002453 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2454
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002455 if (sk_filter(sk, skb))
2456 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002457 else
2458 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Thomas Grafa8f74b22005-11-10 02:25:52 +01002460 if (cb->done)
2461 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002463 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Gao feng6dc878a2012-10-04 20:15:48 +00002465 module_put(cb->module);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00002466 netlink_consume_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002468
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002469errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002470 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002471 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002472 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
2474
Gao feng6dc878a2012-10-04 20:15:48 +00002475int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2476 const struct nlmsghdr *nlh,
2477 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
2479 struct netlink_callback *cb;
2480 struct sock *sk;
2481 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002482 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002484 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 if (cb == NULL)
2486 return -ENOBUFS;
2487
Patrick McHardyf9c22882013-04-17 06:47:04 +00002488 /* Memory mapped dump requests need to be copied to avoid looping
2489 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2490 * a reference to the skb.
2491 */
2492 if (netlink_skb_is_mmaped(skb)) {
2493 skb = skb_copy(skb, GFP_KERNEL);
2494 if (skb == NULL) {
2495 kfree(cb);
2496 return -ENOBUFS;
2497 }
2498 } else
2499 atomic_inc(&skb->users);
2500
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002501 cb->dump = control->dump;
2502 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002504 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002505 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002506 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 atomic_inc(&skb->users);
2508 cb->skb = skb;
2509
Eric W. Biederman15e47302012-09-07 20:12:54 +00002510 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if (sk == NULL) {
2512 netlink_destroy_callback(cb);
2513 return -ECONNREFUSED;
2514 }
2515 nlk = nlk_sk(sk);
Gao feng6dc878a2012-10-04 20:15:48 +00002516
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002517 mutex_lock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002518 /* A dump is in progress... */
Herbert Xu3f660d62007-05-03 03:17:14 -07002519 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002520 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 netlink_destroy_callback(cb);
Gao feng6dc878a2012-10-04 20:15:48 +00002522 ret = -EBUSY;
2523 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 }
Gao feng6dc878a2012-10-04 20:15:48 +00002525 /* add reference of module which cb->dump belongs to */
2526 if (!try_module_get(cb->module)) {
2527 mutex_unlock(nlk->cb_mutex);
2528 netlink_destroy_callback(cb);
2529 ret = -EPROTONOSUPPORT;
2530 goto out;
2531 }
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002534 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Andrey Vaginb44d2112011-02-21 02:40:47 +00002536 ret = netlink_dump(sk);
Gao feng6dc878a2012-10-04 20:15:48 +00002537out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002539
Andrey Vaginb44d2112011-02-21 02:40:47 +00002540 if (ret)
2541 return ret;
2542
Denis V. Lunev5c582982007-10-23 20:29:25 -07002543 /* We successfully started a dump, by returning -EINTR we
2544 * signal not to send ACK even if it was requested.
2545 */
2546 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
Gao feng6dc878a2012-10-04 20:15:48 +00002548EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2551{
2552 struct sk_buff *skb;
2553 struct nlmsghdr *rep;
2554 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002555 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Thomas Graf339bf982006-11-10 14:10:15 -08002557 /* error messages get the original request appened */
2558 if (err)
2559 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Patrick McHardyf9c22882013-04-17 06:47:04 +00002561 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2562 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 if (!skb) {
2564 struct sock *sk;
2565
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002566 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002567 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002568 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 if (sk) {
2570 sk->sk_err = ENOBUFS;
2571 sk->sk_error_report(sk);
2572 sock_put(sk);
2573 }
2574 return;
2575 }
2576
Eric W. Biederman15e47302012-09-07 20:12:54 +00002577 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002578 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002579 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002581 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002582 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002584EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002586int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002587 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002588{
Thomas Graf82ace472005-11-10 02:25:53 +01002589 struct nlmsghdr *nlh;
2590 int err;
2591
2592 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002593 int msglen;
2594
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002595 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002596 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002597
Martin Murrayad8e4b72006-01-10 13:02:29 -08002598 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002599 return 0;
2600
Thomas Grafd35b6852007-03-22 23:28:46 -07002601 /* Only requests are handled by the kernel */
2602 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002603 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002604
Thomas Graf45e7ae72007-03-22 23:29:10 -07002605 /* Skip control messages */
2606 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002607 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002608
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002609 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002610 if (err == -EINTR)
2611 goto skip;
2612
2613ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002614 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002615 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002616
Denis V. Lunev5c582982007-10-23 20:29:25 -07002617skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002618 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002619 if (msglen > skb->len)
2620 msglen = skb->len;
2621 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002622 }
2623
2624 return 0;
2625}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002626EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002627
2628/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002629 * nlmsg_notify - send a notification netlink message
2630 * @sk: netlink socket to use
2631 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002632 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002633 * @group: destination multicast group or 0
2634 * @report: 1 to report back, 0 to disable
2635 * @flags: allocation flags
2636 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002637int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002638 unsigned int group, int report, gfp_t flags)
2639{
2640 int err = 0;
2641
2642 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002643 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002644
2645 if (report) {
2646 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002647 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002648 }
2649
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002650 /* errors reported via destination sk->sk_err, but propagate
2651 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002652 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002653 }
2654
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002655 if (report) {
2656 int err2;
2657
Eric W. Biederman15e47302012-09-07 20:12:54 +00002658 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002659 if (!err || err == -ESRCH)
2660 err = err2;
2661 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002662
2663 return err;
2664}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002665EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667#ifdef CONFIG_PROC_FS
2668struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002669 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 int link;
2671 int hash_idx;
2672};
2673
2674static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
2675{
2676 struct nl_seq_iter *iter = seq->private;
2677 int i, j;
2678 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 loff_t off = 0;
2680
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002681 for (i = 0; i < MAX_LINKS; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002682 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 for (j = 0; j <= hash->mask; j++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002685 sk_for_each(s, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002686 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002687 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 if (off == pos) {
2689 iter->link = i;
2690 iter->hash_idx = j;
2691 return s;
2692 }
2693 ++off;
2694 }
2695 }
2696 }
2697 return NULL;
2698}
2699
2700static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002701 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 read_lock(&nl_table_lock);
2704 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2705}
2706
2707static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2708{
2709 struct sock *s;
2710 struct nl_seq_iter *iter;
2711 int i, j;
2712
2713 ++*pos;
2714
2715 if (v == SEQ_START_TOKEN)
2716 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002717
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002718 iter = seq->private;
2719 s = v;
2720 do {
2721 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002722 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 if (s)
2724 return s;
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 i = iter->link;
2727 j = iter->hash_idx + 1;
2728
2729 do {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002730 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
2732 for (; j <= hash->mask; j++) {
2733 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002734 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002735 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 if (s) {
2737 iter->link = i;
2738 iter->hash_idx = j;
2739 return s;
2740 }
2741 }
2742
2743 j = 0;
2744 } while (++i < MAX_LINKS);
2745
2746 return NULL;
2747}
2748
2749static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002750 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
2752 read_unlock(&nl_table_lock);
2753}
2754
2755
2756static int netlink_seq_show(struct seq_file *seq, void *v)
2757{
Eric Dumazet658cb352012-04-22 21:30:21 +00002758 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 seq_puts(seq,
2760 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002761 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002762 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 struct sock *s = v;
2764 struct netlink_sock *nlk = nlk_sk(s);
2765
Hannes Frederic Sowa9f1e0ad2012-12-15 15:09:19 +00002766 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 s,
2768 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002769 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002770 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002771 sk_rmem_alloc_get(s),
2772 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002774 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002775 atomic_read(&s->sk_drops),
2776 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 );
2778
2779 }
2780 return 0;
2781}
2782
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002783static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 .start = netlink_seq_start,
2785 .next = netlink_seq_next,
2786 .stop = netlink_seq_stop,
2787 .show = netlink_seq_show,
2788};
2789
2790
2791static int netlink_seq_open(struct inode *inode, struct file *file)
2792{
Denis V. Luneve372c412007-11-19 22:31:54 -08002793 return seq_open_net(inode, file, &netlink_seq_ops,
2794 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002795}
2796
Arjan van de Venda7071d2007-02-12 00:55:36 -08002797static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 .owner = THIS_MODULE,
2799 .open = netlink_seq_open,
2800 .read = seq_read,
2801 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002802 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803};
2804
2805#endif
2806
2807int netlink_register_notifier(struct notifier_block *nb)
2808{
Alan Sterne041c682006-03-27 01:16:30 -08002809 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002811EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813int netlink_unregister_notifier(struct notifier_block *nb)
2814{
Alan Sterne041c682006-03-27 01:16:30 -08002815 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002817EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002818
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002819static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 .family = PF_NETLINK,
2821 .owner = THIS_MODULE,
2822 .release = netlink_release,
2823 .bind = netlink_bind,
2824 .connect = netlink_connect,
2825 .socketpair = sock_no_socketpair,
2826 .accept = sock_no_accept,
2827 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00002828 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 .ioctl = sock_no_ioctl,
2830 .listen = sock_no_listen,
2831 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002832 .setsockopt = netlink_setsockopt,
2833 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 .sendmsg = netlink_sendmsg,
2835 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002836 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 .sendpage = sock_no_sendpage,
2838};
2839
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002840static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 .family = PF_NETLINK,
2842 .create = netlink_create,
2843 .owner = THIS_MODULE, /* for consistency 8) */
2844};
2845
Pavel Emelyanov46650792007-10-08 20:38:39 -07002846static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002847{
2848#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00002849 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002850 return -ENOMEM;
2851#endif
2852 return 0;
2853}
2854
Pavel Emelyanov46650792007-10-08 20:38:39 -07002855static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002856{
2857#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00002858 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002859#endif
2860}
2861
David S. Millerb963ea82010-08-30 19:08:01 -07002862static void __init netlink_add_usersock_entry(void)
2863{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002864 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002865 int groups = 32;
2866
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002867 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002868 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002869 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002870
2871 netlink_table_grab();
2872
2873 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002874 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002875 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2876 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002877 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07002878
2879 netlink_table_ungrab();
2880}
2881
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002882static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002883 .init = netlink_net_init,
2884 .exit = netlink_net_exit,
2885};
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887static int __init netlink_proto_init(void)
2888{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002890 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 unsigned int order;
2892 int err = proto_register(&netlink_proto, 0);
2893
2894 if (err != 0)
2895 goto out;
2896
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00002897 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002899 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002900 if (!nl_table)
2901 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Jan Beulich44813742009-09-21 17:03:05 -07002903 if (totalram_pages >= (128 * 1024))
2904 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 else
Jan Beulich44813742009-09-21 17:03:05 -07002906 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002908 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2909 limit = (1UL << order) / sizeof(struct hlist_head);
2910 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912 for (i = 0; i < MAX_LINKS; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002913 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Eric W. Biederman15e47302012-09-07 20:12:54 +00002915 hash->table = nl_portid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (!hash->table) {
2917 while (i-- > 0)
Eric W. Biederman15e47302012-09-07 20:12:54 +00002918 nl_portid_hash_free(nl_table[i].hash.table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 1 * sizeof(*hash->table));
2920 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002921 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 hash->max_shift = order;
2924 hash->shift = 0;
2925 hash->mask = 0;
2926 hash->rehash_time = jiffies;
2927 }
2928
David S. Millerb963ea82010-08-30 19:08:01 -07002929 netlink_add_usersock_entry();
2930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002932 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002933 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 rtnetlink_init();
2935out:
2936 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002937panic:
2938 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939}
2940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941core_initcall(netlink_proto_init);