blob: 68c167374394aa9ba0063a8de5e4c86b504d388d [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);
Stephen Rothwell1d5085c2013-04-23 17:40:35 +1000384 p_end = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + hdr->nm_len - 1);
Patrick McHardy9652e932013-04-17 06:47:02 +0000385 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;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200663 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
664 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000665 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;
Nicolas Dichtel1bf93102013-04-24 10:36:23 +0200693 hdr->nm_uid = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
694 hdr->nm_gid = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
Patrick McHardyf9c22882013-04-17 06:47:04 +0000695 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
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000750 skb->head = NULL;
Patrick McHardy9652e932013-04-17 06:47:02 +0000751 }
752#endif
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000753 if (is_vmalloc_addr(skb->head)) {
754 vfree(skb->head);
755 skb->head = NULL;
756 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000757 if (skb->sk != NULL)
758 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000759}
760
761static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
762{
763 WARN_ON(skb->sk != NULL);
764 skb->sk = sk;
765 skb->destructor = netlink_skb_destructor;
766 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
767 sk_mem_charge(sk, skb->truesize);
768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static void netlink_sock_destruct(struct sock *sk)
771{
Herbert Xu3f660d62007-05-03 03:17:14 -0700772 struct netlink_sock *nlk = nlk_sk(sk);
773
Herbert Xu3f660d62007-05-03 03:17:14 -0700774 if (nlk->cb) {
775 if (nlk->cb->done)
776 nlk->cb->done(nlk->cb);
Gao feng6dc878a2012-10-04 20:15:48 +0000777
778 module_put(nlk->cb->module);
Herbert Xu3f660d62007-05-03 03:17:14 -0700779 netlink_destroy_callback(nlk->cb);
780 }
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 skb_queue_purge(&sk->sk_receive_queue);
Patrick McHardyccdfcc32013-04-17 06:47:01 +0000783#ifdef CONFIG_NETLINK_MMAP
784 if (1) {
785 struct nl_mmap_req req;
786
787 memset(&req, 0, sizeof(req));
788 if (nlk->rx_ring.pg_vec)
789 netlink_set_ring(sk, &req, true, false);
790 memset(&req, 0, sizeof(req));
791 if (nlk->tx_ring.pg_vec)
792 netlink_set_ring(sk, &req, true, true);
793 }
794#endif /* CONFIG_NETLINK_MMAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800797 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return;
799 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700800
801 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
802 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
803 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800806/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
807 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
809 * this, _but_ remember, it adds useless work on UP machines.
810 */
811
Johannes Bergd136f1b2009-09-12 03:03:15 +0000812void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800813 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000815 might_sleep();
816
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700817 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (atomic_read(&nl_table_users)) {
820 DECLARE_WAITQUEUE(wait, current);
821
822 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800823 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 set_current_state(TASK_UNINTERRUPTIBLE);
825 if (atomic_read(&nl_table_users) == 0)
826 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700827 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700829 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831
832 __set_current_state(TASK_RUNNING);
833 remove_wait_queue(&nl_table_wait, &wait);
834 }
835}
836
Johannes Bergd136f1b2009-09-12 03:03:15 +0000837void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800838 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700840 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 wake_up(&nl_table_wait);
842}
843
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800844static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845netlink_lock_table(void)
846{
847 /* read_lock() synchronizes us to netlink_table_grab */
848
849 read_lock(&nl_table_lock);
850 atomic_inc(&nl_table_users);
851 read_unlock(&nl_table_lock);
852}
853
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800854static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855netlink_unlock_table(void)
856{
857 if (atomic_dec_and_test(&nl_table_users))
858 wake_up(&nl_table_wait);
859}
860
Eric W. Biederman15e47302012-09-07 20:12:54 +0000861static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Eric W. Biederman15e47302012-09-07 20:12:54 +0000863 struct nl_portid_hash *hash = &nl_table[protocol].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 struct hlist_head *head;
865 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 read_lock(&nl_table_lock);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000868 head = nl_portid_hashfn(hash, portid);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800869 sk_for_each(sk, head) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000870 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->portid == portid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 sock_hold(sk);
872 goto found;
873 }
874 }
875 sk = NULL;
876found:
877 read_unlock(&nl_table_lock);
878 return sk;
879}
880
Eric W. Biederman15e47302012-09-07 20:12:54 +0000881static struct hlist_head *nl_portid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800884 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 else
886 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800887 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
888 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Eric W. Biederman15e47302012-09-07 20:12:54 +0000891static void nl_portid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 if (size <= PAGE_SIZE)
894 kfree(table);
895 else
896 free_pages((unsigned long)table, get_order(size));
897}
898
Eric W. Biederman15e47302012-09-07 20:12:54 +0000899static int nl_portid_hash_rehash(struct nl_portid_hash *hash, int grow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 unsigned int omask, mask, shift;
902 size_t osize, size;
903 struct hlist_head *otable, *table;
904 int i;
905
906 omask = mask = hash->mask;
907 osize = size = (mask + 1) * sizeof(*table);
908 shift = hash->shift;
909
910 if (grow) {
911 if (++shift > hash->max_shift)
912 return 0;
913 mask = mask * 2 + 1;
914 size *= 2;
915 }
916
Eric W. Biederman15e47302012-09-07 20:12:54 +0000917 table = nl_portid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (!table)
919 return 0;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 otable = hash->table;
922 hash->table = table;
923 hash->mask = mask;
924 hash->shift = shift;
925 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
926
927 for (i = 0; i <= omask; i++) {
928 struct sock *sk;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800929 struct hlist_node *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Sasha Levinb67bfe02013-02-27 17:06:00 -0800931 sk_for_each_safe(sk, tmp, &otable[i])
Eric W. Biederman15e47302012-09-07 20:12:54 +0000932 __sk_add_node(sk, nl_portid_hashfn(hash, nlk_sk(sk)->portid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Eric W. Biederman15e47302012-09-07 20:12:54 +0000935 nl_portid_hash_free(otable, osize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 hash->rehash_time = jiffies + 10 * 60 * HZ;
937 return 1;
938}
939
Eric W. Biederman15e47302012-09-07 20:12:54 +0000940static inline int nl_portid_hash_dilute(struct nl_portid_hash *hash, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 int avg = hash->entries >> hash->shift;
943
Eric W. Biederman15e47302012-09-07 20:12:54 +0000944 if (unlikely(avg > 1) && nl_portid_hash_rehash(hash, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return 1;
946
947 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000948 nl_portid_hash_rehash(hash, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return 1;
950 }
951
952 return 0;
953}
954
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800955static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Patrick McHardy4277a082006-03-20 18:52:01 -0800957static void
958netlink_update_listeners(struct sock *sk)
959{
960 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -0800961 unsigned long mask;
962 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000963 struct listeners *listeners;
964
965 listeners = nl_deref_protected(tbl->listeners);
966 if (!listeners)
967 return;
Patrick McHardy4277a082006-03-20 18:52:01 -0800968
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700969 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800970 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800971 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700972 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
973 mask |= nlk_sk(sk)->groups[i];
974 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000975 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800976 }
977 /* this function is only called with the netlink table "grabbed", which
978 * makes sure updates are visible before bind or setsockopt return. */
979}
980
Eric W. Biederman15e47302012-09-07 20:12:54 +0000981static int netlink_insert(struct sock *sk, struct net *net, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Eric W. Biederman15e47302012-09-07 20:12:54 +0000983 struct nl_portid_hash *hash = &nl_table[sk->sk_protocol].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 struct hlist_head *head;
985 int err = -EADDRINUSE;
986 struct sock *osk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 int len;
988
989 netlink_table_grab();
Eric W. Biederman15e47302012-09-07 20:12:54 +0000990 head = nl_portid_hashfn(hash, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 len = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800992 sk_for_each(osk, head) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000993 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->portid == portid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
995 len++;
996 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800997 if (osk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto err;
999
1000 err = -EBUSY;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001001 if (nlk_sk(sk)->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 goto err;
1003
1004 err = -ENOMEM;
1005 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
1006 goto err;
1007
Eric W. Biederman15e47302012-09-07 20:12:54 +00001008 if (len && nl_portid_hash_dilute(hash, len))
1009 head = nl_portid_hashfn(hash, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 hash->entries++;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001011 nlk_sk(sk)->portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 sk_add_node(sk, head);
1013 err = 0;
1014
1015err:
1016 netlink_table_ungrab();
1017 return err;
1018}
1019
1020static void netlink_remove(struct sock *sk)
1021{
1022 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -07001023 if (sk_del_node_init(sk))
1024 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001025 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 __sk_del_bind_node(sk);
1027 netlink_table_ungrab();
1028}
1029
1030static struct proto netlink_proto = {
1031 .name = "NETLINK",
1032 .owner = THIS_MODULE,
1033 .obj_size = sizeof(struct netlink_sock),
1034};
1035
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001036static int __netlink_create(struct net *net, struct socket *sock,
1037 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 struct sock *sk;
1040 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -07001041
1042 sock->ops = &netlink_ops;
1043
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001044 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -07001045 if (!sk)
1046 return -ENOMEM;
1047
1048 sock_init_data(sock, sk);
1049
1050 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001051 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001052 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +00001053 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -07001054 nlk->cb_mutex = &nlk->cb_def_mutex;
1055 mutex_init(nlk->cb_mutex);
1056 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001057 init_waitqueue_head(&nlk->wait);
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001058#ifdef CONFIG_NETLINK_MMAP
1059 mutex_init(&nlk->pg_vec_lock);
1060#endif
Patrick McHardyab33a172005-08-14 19:31:36 -07001061
1062 sk->sk_destruct = netlink_sock_destruct;
1063 sk->sk_protocol = protocol;
1064 return 0;
1065}
1066
Eric Paris3f378b62009-11-05 22:18:14 -08001067static int netlink_create(struct net *net, struct socket *sock, int protocol,
1068 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -07001069{
1070 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001071 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001072 struct netlink_sock *nlk;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001073 void (*bind)(int group);
Patrick McHardyab33a172005-08-14 19:31:36 -07001074 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 sock->state = SS_UNCONNECTED;
1077
1078 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1079 return -ESOCKTNOSUPPORT;
1080
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001081 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -EPROTONOSUPPORT;
1083
Patrick McHardy77247bb2005-08-14 19:27:13 -07001084 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -07001085#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -07001086 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -07001087 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001088 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001089 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001090 }
Patrick McHardyab33a172005-08-14 19:31:36 -07001091#endif
1092 if (nl_table[protocol].registered &&
1093 try_module_get(nl_table[protocol].module))
1094 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001095 else
1096 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001097 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001098 bind = nl_table[protocol].bind;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001099 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001100
Alexey Dobriyan974c37e2010-01-30 10:05:05 +00001101 if (err < 0)
1102 goto out;
1103
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001104 err = __netlink_create(net, sock, cb_mutex, protocol);
1105 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -07001106 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
David S. Miller6f756a82008-11-23 17:34:03 -08001108 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001109 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -08001110 local_bh_enable();
1111
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001112 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001113 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001114 nlk->netlink_bind = bind;
Patrick McHardyab33a172005-08-14 19:31:36 -07001115out:
1116 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Patrick McHardyab33a172005-08-14 19:31:36 -07001118out_module:
1119 module_put(module);
1120 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123static int netlink_release(struct socket *sock)
1124{
1125 struct sock *sk = sock->sk;
1126 struct netlink_sock *nlk;
1127
1128 if (!sk)
1129 return 0;
1130
1131 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -07001132 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 nlk = nlk_sk(sk);
1134
Herbert Xu3f660d62007-05-03 03:17:14 -07001135 /*
1136 * OK. Socket is unlinked, any packets that arrive now
1137 * will be purged.
1138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 sock->sk = NULL;
1141 wake_up_interruptible_all(&nlk->wait);
1142
1143 skb_queue_purge(&sk->sk_write_queue);
1144
Eric W. Biederman15e47302012-09-07 20:12:54 +00001145 if (nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001147 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001149 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 };
Alan Sterne041c682006-03-27 01:16:30 -08001151 atomic_notifier_call_chain(&netlink_chain,
1152 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001153 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001154
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -08001155 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001156
Patrick McHardy4277a082006-03-20 18:52:01 -08001157 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -07001158 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001159 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1160 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001161 struct listeners *old;
1162
1163 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1164 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1165 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001166 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001167 nl_table[sk->sk_protocol].bind = NULL;
1168 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001169 nl_table[sk->sk_protocol].registered = 0;
1170 }
Eric Dumazet658cb352012-04-22 21:30:21 +00001171 } else if (nlk->subscriptions) {
Patrick McHardy4277a082006-03-20 18:52:01 -08001172 netlink_update_listeners(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +00001173 }
Patrick McHardy4277a082006-03-20 18:52:01 -08001174 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -07001175
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001176 kfree(nlk->groups);
1177 nlk->groups = NULL;
1178
Eric Dumazet37558102008-11-24 14:05:22 -08001179 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -08001180 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -08001181 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 sock_put(sk);
1183 return 0;
1184}
1185
1186static int netlink_autobind(struct socket *sock)
1187{
1188 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001189 struct net *net = sock_net(sk);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001190 struct nl_portid_hash *hash = &nl_table[sk->sk_protocol].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct hlist_head *head;
1192 struct sock *osk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001193 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 int err;
1195 static s32 rover = -4097;
1196
1197retry:
1198 cond_resched();
1199 netlink_table_grab();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001200 head = nl_portid_hashfn(hash, portid);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001201 sk_for_each(osk, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001202 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001203 continue;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001204 if (nlk_sk(osk)->portid == portid) {
1205 /* Bind collision, search negative portid values. */
1206 portid = rover--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (rover > -4097)
1208 rover = -4097;
1209 netlink_table_ungrab();
1210 goto retry;
1211 }
1212 }
1213 netlink_table_ungrab();
1214
Eric W. Biederman15e47302012-09-07 20:12:54 +00001215 err = netlink_insert(sk, net, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (err == -EADDRINUSE)
1217 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -07001218
1219 /* If 2 threads race to autobind, that is fine. */
1220 if (err == -EBUSY)
1221 err = 0;
1222
1223 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001226static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001227{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001228 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +00001229 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001230}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001232static void
1233netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1234{
1235 struct netlink_sock *nlk = nlk_sk(sk);
1236
1237 if (nlk->subscriptions && !subscriptions)
1238 __sk_del_bind_node(sk);
1239 else if (!nlk->subscriptions && subscriptions)
1240 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1241 nlk->subscriptions = subscriptions;
1242}
1243
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001244static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -07001245{
1246 struct netlink_sock *nlk = nlk_sk(sk);
1247 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001248 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001249 int err = 0;
1250
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001251 netlink_table_grab();
1252
Patrick McHardy513c2502005-09-06 15:43:59 -07001253 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001254 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -07001255 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001256 goto out_unlock;
1257 }
Patrick McHardy513c2502005-09-06 15:43:59 -07001258
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001259 if (nlk->ngroups >= groups)
1260 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -07001261
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001262 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1263 if (new_groups == NULL) {
1264 err = -ENOMEM;
1265 goto out_unlock;
1266 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001267 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001268 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1269
1270 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -07001271 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001272 out_unlock:
1273 netlink_table_ungrab();
1274 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001275}
1276
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001277static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1278 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001281 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 struct netlink_sock *nlk = nlk_sk(sk);
1283 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1284 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001285
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +00001286 if (addr_len < sizeof(struct sockaddr_nl))
1287 return -EINVAL;
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (nladdr->nl_family != AF_NETLINK)
1290 return -EINVAL;
1291
1292 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -07001293 if (nladdr->nl_groups) {
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001294 if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -07001295 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001296 err = netlink_realloc_groups(sk);
1297 if (err)
1298 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -07001299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Eric W. Biederman15e47302012-09-07 20:12:54 +00001301 if (nlk->portid) {
1302 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 return -EINVAL;
1304 } else {
1305 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001306 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 netlink_autobind(sock);
1308 if (err)
1309 return err;
1310 }
1311
Patrick McHardy513c2502005-09-06 15:43:59 -07001312 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return 0;
1314
1315 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001316 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001317 hweight32(nladdr->nl_groups) -
1318 hweight32(nlk->groups[0]));
1319 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001320 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 netlink_table_ungrab();
1322
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001323 if (nlk->netlink_bind && nlk->groups[0]) {
1324 int i;
1325
1326 for (i=0; i<nlk->ngroups; i++) {
1327 if (test_bit(i, nlk->groups))
1328 nlk->netlink_bind(i);
1329 }
1330 }
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return 0;
1333}
1334
1335static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1336 int alen, int flags)
1337{
1338 int err = 0;
1339 struct sock *sk = sock->sk;
1340 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001341 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Changli Gao6503d962010-03-31 22:58:26 +00001343 if (alen < sizeof(addr->sa_family))
1344 return -EINVAL;
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (addr->sa_family == AF_UNSPEC) {
1347 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001348 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001349 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return 0;
1351 }
1352 if (addr->sa_family != AF_NETLINK)
1353 return -EINVAL;
1354
1355 /* Only superuser is allowed to send multicasts */
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001356 if (nladdr->nl_groups && !netlink_capable(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return -EPERM;
1358
Eric W. Biederman15e47302012-09-07 20:12:54 +00001359 if (!nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 err = netlink_autobind(sock);
1361
1362 if (err == 0) {
1363 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001364 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001365 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
1368 return err;
1369}
1370
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001371static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1372 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct sock *sk = sock->sk;
1375 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001376 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 nladdr->nl_family = AF_NETLINK;
1379 nladdr->nl_pad = 0;
1380 *addr_len = sizeof(*nladdr);
1381
1382 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001383 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001384 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001386 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001387 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389 return 0;
1390}
1391
Eric W. Biederman15e47302012-09-07 20:12:54 +00001392static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 struct sock *sock;
1395 struct netlink_sock *nlk;
1396
Eric W. Biederman15e47302012-09-07 20:12:54 +00001397 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (!sock)
1399 return ERR_PTR(-ECONNREFUSED);
1400
1401 /* Don't bother queuing skb if kernel socket has no input function */
1402 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001403 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001404 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 sock_put(sock);
1406 return ERR_PTR(-ECONNREFUSED);
1407 }
1408 return sock;
1409}
1410
1411struct sock *netlink_getsockbyfilp(struct file *filp)
1412{
Al Viro496ad9a2013-01-23 17:07:38 -05001413 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct sock *sock;
1415
1416 if (!S_ISSOCK(inode->i_mode))
1417 return ERR_PTR(-ENOTSOCK);
1418
1419 sock = SOCKET_I(inode)->sk;
1420 if (sock->sk_family != AF_NETLINK)
1421 return ERR_PTR(-EINVAL);
1422
1423 sock_hold(sock);
1424 return sock;
1425}
1426
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001427static struct sk_buff *netlink_alloc_large_skb(unsigned int size)
1428{
1429 struct sk_buff *skb;
1430 void *data;
1431
1432 if (size <= NLMSG_GOODSIZE)
1433 return alloc_skb(size, GFP_KERNEL);
1434
1435 skb = alloc_skb_head(GFP_KERNEL);
1436 if (skb == NULL)
1437 return NULL;
1438
1439 data = vmalloc(size);
1440 if (data == NULL)
1441 goto err;
1442
1443 skb->head = data;
1444 skb->data = data;
1445 skb_reset_tail_pointer(skb);
1446 skb->end = skb->tail + size;
1447 skb->len = 0;
1448 skb->destructor = netlink_skb_destructor;
1449
1450 return skb;
1451err:
1452 kfree_skb(skb);
1453 return NULL;
1454}
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456/*
1457 * Attach a skb to a netlink socket.
1458 * The caller must hold a reference to the destination socket. On error, the
1459 * reference is dropped. The skb is not send to the destination, just all
1460 * all error checks are performed and memory in the queue is reserved.
1461 * Return values:
1462 * < 0: error. skb freed, reference to sock dropped.
1463 * 0: continue
1464 * 1: repeat lookup - reference dropped while waiting for socket memory.
1465 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001466int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001467 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
1469 struct netlink_sock *nlk;
1470
1471 nlk = nlk_sk(sk);
1472
Patrick McHardy5fd96122013-04-17 06:47:03 +00001473 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1474 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
1475 !netlink_skb_is_mmaped(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001477 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001478 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 netlink_overrun(sk);
1480 sock_put(sk);
1481 kfree_skb(skb);
1482 return -EAGAIN;
1483 }
1484
1485 __set_current_state(TASK_INTERRUPTIBLE);
1486 add_wait_queue(&nlk->wait, &wait);
1487
1488 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Patrick McHardycd967e02013-04-17 06:46:56 +00001489 test_bit(NETLINK_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001491 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 __set_current_state(TASK_RUNNING);
1494 remove_wait_queue(&nlk->wait, &wait);
1495 sock_put(sk);
1496
1497 if (signal_pending(current)) {
1498 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001499 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501 return 1;
1502 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001503 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return 0;
1505}
1506
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001507static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 int len = skb->len;
1510
Patrick McHardyf9c22882013-04-17 06:47:04 +00001511#ifdef CONFIG_NETLINK_MMAP
1512 if (netlink_skb_is_mmaped(skb))
1513 netlink_queue_mmaped_skb(sk, skb);
1514 else if (netlink_rx_is_mmaped(sk))
1515 netlink_ring_set_copied(sk, skb);
1516 else
1517#endif /* CONFIG_NETLINK_MMAP */
1518 skb_queue_tail(&sk->sk_receive_queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001520 return len;
1521}
1522
1523int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1524{
1525 int len = __netlink_sendskb(sk, skb);
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 sock_put(sk);
1528 return len;
1529}
1530
1531void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1532{
1533 kfree_skb(skb);
1534 sock_put(sk);
1535}
1536
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001537static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 int delta;
1540
Patrick McHardy1298ca42013-04-17 06:46:59 +00001541 WARN_ON(skb->sk != NULL);
Patrick McHardy5fd96122013-04-17 06:47:03 +00001542 if (netlink_skb_is_mmaped(skb))
1543 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001545 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001546 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return skb;
1548
1549 if (skb_shared(skb)) {
1550 struct sk_buff *nskb = skb_clone(skb, allocation);
1551 if (!nskb)
1552 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001553 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 skb = nskb;
1555 }
1556
1557 if (!pskb_expand_head(skb, 0, -delta, allocation))
1558 skb->truesize -= delta;
1559
1560 return skb;
1561}
1562
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001563static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1564 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001565{
1566 int ret;
1567 struct netlink_sock *nlk = nlk_sk(sk);
1568
1569 ret = -ECONNREFUSED;
1570 if (nlk->netlink_rcv != NULL) {
1571 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001572 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001573 NETLINK_CB(skb).sk = ssk;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001574 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001575 consume_skb(skb);
1576 } else {
1577 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001578 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001579 sock_put(sk);
1580 return ret;
1581}
1582
1583int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001584 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 struct sock *sk;
1587 int err;
1588 long timeo;
1589
1590 skb = netlink_trim(skb, gfp_any());
1591
1592 timeo = sock_sndtimeo(ssk, nonblock);
1593retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001594 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (IS_ERR(sk)) {
1596 kfree_skb(skb);
1597 return PTR_ERR(sk);
1598 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001599 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001600 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001601
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001602 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001603 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001604 kfree_skb(skb);
1605 sock_put(sk);
1606 return err;
1607 }
1608
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001609 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (err == 1)
1611 goto retry;
1612 if (err)
1613 return err;
1614
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001615 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001617EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Patrick McHardyf9c22882013-04-17 06:47:04 +00001619struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
1620 u32 dst_portid, gfp_t gfp_mask)
1621{
1622#ifdef CONFIG_NETLINK_MMAP
1623 struct sock *sk = NULL;
1624 struct sk_buff *skb;
1625 struct netlink_ring *ring;
1626 struct nl_mmap_hdr *hdr;
1627 unsigned int maxlen;
1628
1629 sk = netlink_getsockbyportid(ssk, dst_portid);
1630 if (IS_ERR(sk))
1631 goto out;
1632
1633 ring = &nlk_sk(sk)->rx_ring;
1634 /* fast-path without atomic ops for common case: non-mmaped receiver */
1635 if (ring->pg_vec == NULL)
1636 goto out_put;
1637
1638 skb = alloc_skb_head(gfp_mask);
1639 if (skb == NULL)
1640 goto err1;
1641
1642 spin_lock_bh(&sk->sk_receive_queue.lock);
1643 /* check again under lock */
1644 if (ring->pg_vec == NULL)
1645 goto out_free;
1646
1647 maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1648 if (maxlen < size)
1649 goto out_free;
1650
1651 netlink_forward_ring(ring);
1652 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1653 if (hdr == NULL)
1654 goto err2;
1655 netlink_ring_setup_skb(skb, sk, ring, hdr);
1656 netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1657 atomic_inc(&ring->pending);
1658 netlink_increment_head(ring);
1659
1660 spin_unlock_bh(&sk->sk_receive_queue.lock);
1661 return skb;
1662
1663err2:
1664 kfree_skb(skb);
1665 spin_unlock_bh(&sk->sk_receive_queue.lock);
Patrick McHardycd1df522013-04-17 06:47:05 +00001666 netlink_overrun(sk);
Patrick McHardyf9c22882013-04-17 06:47:04 +00001667err1:
1668 sock_put(sk);
1669 return NULL;
1670
1671out_free:
1672 kfree_skb(skb);
1673 spin_unlock_bh(&sk->sk_receive_queue.lock);
1674out_put:
1675 sock_put(sk);
1676out:
1677#endif
1678 return alloc_skb(size, gfp_mask);
1679}
1680EXPORT_SYMBOL_GPL(netlink_alloc_skb);
1681
Patrick McHardy4277a082006-03-20 18:52:01 -08001682int netlink_has_listeners(struct sock *sk, unsigned int group)
1683{
1684 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001685 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001686
Denis V. Lunevaed81562007-10-10 21:14:32 -07001687 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001688
1689 rcu_read_lock();
1690 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1691
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001692 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001693 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001694
1695 rcu_read_unlock();
1696
Patrick McHardy4277a082006-03-20 18:52:01 -08001697 return res;
1698}
1699EXPORT_SYMBOL_GPL(netlink_has_listeners);
1700
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001701static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 struct netlink_sock *nlk = nlk_sk(sk);
1704
1705 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Patrick McHardycd967e02013-04-17 06:46:56 +00001706 !test_bit(NETLINK_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001707 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001708 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001709 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 return -1;
1712}
1713
1714struct netlink_broadcast_data {
1715 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001716 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001717 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 u32 group;
1719 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001720 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 int congested;
1722 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001723 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001725 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1726 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727};
1728
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001729static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 struct netlink_broadcast_data *p)
1731{
1732 struct netlink_sock *nlk = nlk_sk(sk);
1733 int val;
1734
1735 if (p->exclude_sk == sk)
1736 goto out;
1737
Eric W. Biederman15e47302012-09-07 20:12:54 +00001738 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001739 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 goto out;
1741
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001742 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001743 goto out;
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (p->failure) {
1746 netlink_overrun(sk);
1747 goto out;
1748 }
1749
1750 sock_hold(sk);
1751 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001752 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 p->skb2 = skb_clone(p->skb, p->allocation);
1754 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001755 p->skb2 = skb_get(p->skb);
1756 /*
1757 * skb ownership may have been set when
1758 * delivered to a previous socket.
1759 */
1760 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 }
1763 if (p->skb2 == NULL) {
1764 netlink_overrun(sk);
1765 /* Clone failed. Notify ALL listeners. */
1766 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001767 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1768 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001769 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1770 kfree_skb(p->skb2);
1771 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001772 } else if (sk_filter(sk, p->skb2)) {
1773 kfree_skb(p->skb2);
1774 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1776 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001777 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1778 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 } else {
1780 p->congested |= val;
1781 p->delivered = 1;
1782 p->skb2 = NULL;
1783 }
1784 sock_put(sk);
1785
1786out:
1787 return 0;
1788}
1789
Eric W. Biederman15e47302012-09-07 20:12:54 +00001790int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001791 u32 group, gfp_t allocation,
1792 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1793 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001795 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 struct sock *sk;
1798
1799 skb = netlink_trim(skb, allocation);
1800
1801 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001802 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001803 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 info.group = group;
1805 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001806 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 info.congested = 0;
1808 info.delivered = 0;
1809 info.allocation = allocation;
1810 info.skb = skb;
1811 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001812 info.tx_filter = filter;
1813 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 /* While we sleep in clone, do not allow to change socket list */
1816
1817 netlink_lock_table();
1818
Sasha Levinb67bfe02013-02-27 17:06:00 -08001819 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 do_one_broadcast(sk, &info);
1821
Neil Horman70d4bf62010-07-20 06:45:56 +00001822 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 netlink_unlock_table();
1825
Neil Horman70d4bf62010-07-20 06:45:56 +00001826 if (info.delivery_failure) {
1827 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001828 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001829 }
1830 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (info.delivered) {
1833 if (info.congested && (allocation & __GFP_WAIT))
1834 yield();
1835 return 0;
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return -ESRCH;
1838}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001839EXPORT_SYMBOL(netlink_broadcast_filtered);
1840
Eric W. Biederman15e47302012-09-07 20:12:54 +00001841int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001842 u32 group, gfp_t allocation)
1843{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001844 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001845 NULL, NULL);
1846}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001847EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849struct netlink_set_err_data {
1850 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001851 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 u32 group;
1853 int code;
1854};
1855
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001856static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001859 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 if (sk == p->exclude_sk)
1862 goto out;
1863
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001864 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001865 goto out;
1866
Eric W. Biederman15e47302012-09-07 20:12:54 +00001867 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001868 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto out;
1870
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001871 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1872 ret = 1;
1873 goto out;
1874 }
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 sk->sk_err = p->code;
1877 sk->sk_error_report(sk);
1878out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001879 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001882/**
1883 * netlink_set_err - report error to broadcast listeners
1884 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00001885 * @portid: the PORTID of a process that we want to skip (if any)
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001886 * @groups: the broadcast group that will notice the error
1887 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001888 *
1889 * This function returns the number of broadcast listeners that have set the
1890 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001891 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001892int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
1894 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001896 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001899 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001901 /* sk->sk_err wants a positive error value */
1902 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 read_lock(&nl_table_lock);
1905
Sasha Levinb67bfe02013-02-27 17:06:00 -08001906 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001907 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001910 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001912EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Johannes Berg84659eb2007-07-18 15:47:05 -07001914/* must be called with netlink table grabbed */
1915static void netlink_update_socket_mc(struct netlink_sock *nlk,
1916 unsigned int group,
1917 int is_new)
1918{
1919 int old, new = !!is_new, subscriptions;
1920
1921 old = test_bit(group - 1, nlk->groups);
1922 subscriptions = nlk->subscriptions - old + new;
1923 if (new)
1924 __set_bit(group - 1, nlk->groups);
1925 else
1926 __clear_bit(group - 1, nlk->groups);
1927 netlink_update_subscriptions(&nlk->sk, subscriptions);
1928 netlink_update_listeners(&nlk->sk);
1929}
1930
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001931static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001932 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001933{
1934 struct sock *sk = sock->sk;
1935 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001936 unsigned int val = 0;
1937 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001938
1939 if (level != SOL_NETLINK)
1940 return -ENOPROTOOPT;
1941
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001942 if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
1943 optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001944 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001945 return -EFAULT;
1946
1947 switch (optname) {
1948 case NETLINK_PKTINFO:
1949 if (val)
1950 nlk->flags |= NETLINK_RECV_PKTINFO;
1951 else
1952 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1953 err = 0;
1954 break;
1955 case NETLINK_ADD_MEMBERSHIP:
1956 case NETLINK_DROP_MEMBERSHIP: {
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00001957 if (!netlink_capable(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001958 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001959 err = netlink_realloc_groups(sk);
1960 if (err)
1961 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001962 if (!val || val - 1 >= nlk->ngroups)
1963 return -EINVAL;
1964 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001965 netlink_update_socket_mc(nlk, val,
1966 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001967 netlink_table_ungrab();
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001968
1969 if (nlk->netlink_bind)
1970 nlk->netlink_bind(val);
1971
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001972 err = 0;
1973 break;
1974 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001975 case NETLINK_BROADCAST_ERROR:
1976 if (val)
1977 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1978 else
1979 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1980 err = 0;
1981 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001982 case NETLINK_NO_ENOBUFS:
1983 if (val) {
1984 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
Patrick McHardycd967e02013-04-17 06:46:56 +00001985 clear_bit(NETLINK_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001986 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00001987 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001988 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001989 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001990 err = 0;
1991 break;
Patrick McHardyccdfcc32013-04-17 06:47:01 +00001992#ifdef CONFIG_NETLINK_MMAP
1993 case NETLINK_RX_RING:
1994 case NETLINK_TX_RING: {
1995 struct nl_mmap_req req;
1996
1997 /* Rings might consume more memory than queue limits, require
1998 * CAP_NET_ADMIN.
1999 */
2000 if (!capable(CAP_NET_ADMIN))
2001 return -EPERM;
2002 if (optlen < sizeof(req))
2003 return -EINVAL;
2004 if (copy_from_user(&req, optval, sizeof(req)))
2005 return -EFAULT;
2006 err = netlink_set_ring(sk, &req, false,
2007 optname == NETLINK_TX_RING);
2008 break;
2009 }
2010#endif /* CONFIG_NETLINK_MMAP */
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002011 default:
2012 err = -ENOPROTOOPT;
2013 }
2014 return err;
2015}
2016
2017static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002018 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002019{
2020 struct sock *sk = sock->sk;
2021 struct netlink_sock *nlk = nlk_sk(sk);
2022 int len, val, err;
2023
2024 if (level != SOL_NETLINK)
2025 return -ENOPROTOOPT;
2026
2027 if (get_user(len, optlen))
2028 return -EFAULT;
2029 if (len < 0)
2030 return -EINVAL;
2031
2032 switch (optname) {
2033 case NETLINK_PKTINFO:
2034 if (len < sizeof(int))
2035 return -EINVAL;
2036 len = sizeof(int);
2037 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08002038 if (put_user(len, optlen) ||
2039 put_user(val, optval))
2040 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002041 err = 0;
2042 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00002043 case NETLINK_BROADCAST_ERROR:
2044 if (len < sizeof(int))
2045 return -EINVAL;
2046 len = sizeof(int);
2047 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
2048 if (put_user(len, optlen) ||
2049 put_user(val, optval))
2050 return -EFAULT;
2051 err = 0;
2052 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002053 case NETLINK_NO_ENOBUFS:
2054 if (len < sizeof(int))
2055 return -EINVAL;
2056 len = sizeof(int);
2057 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
2058 if (put_user(len, optlen) ||
2059 put_user(val, optval))
2060 return -EFAULT;
2061 err = 0;
2062 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002063 default:
2064 err = -ENOPROTOOPT;
2065 }
2066 return err;
2067}
2068
2069static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2070{
2071 struct nl_pktinfo info;
2072
2073 info.group = NETLINK_CB(skb).dst_group;
2074 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2075}
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
2078 struct msghdr *msg, size_t len)
2079{
2080 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2081 struct sock *sk = sock->sk;
2082 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002083 struct sockaddr_nl *addr = msg->msg_name;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002084 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002085 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 struct sk_buff *skb;
2087 int err;
2088 struct scm_cookie scm;
2089
2090 if (msg->msg_flags&MSG_OOB)
2091 return -EOPNOTSUPP;
2092
Eric Dumazet16e57262011-09-19 05:52:27 +00002093 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00002095
Eric Dumazete0e3cea2012-08-21 06:21:17 +00002096 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 if (err < 0)
2098 return err;
2099
2100 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002101 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002103 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002104 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002105 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002106 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002107 if ((dst_group || dst_portid) &&
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002108 !netlink_capable(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002109 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002111 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002112 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
Eric W. Biederman15e47302012-09-07 20:12:54 +00002115 if (!nlk->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 err = netlink_autobind(sock);
2117 if (err)
2118 goto out;
2119 }
2120
Patrick McHardy5fd96122013-04-17 06:47:03 +00002121 if (netlink_tx_is_mmaped(sk) &&
2122 msg->msg_iov->iov_base == NULL) {
2123 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2124 siocb);
2125 goto out;
2126 }
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 err = -EMSGSIZE;
2129 if (len > sk->sk_sndbuf - 32)
2130 goto out;
2131 err = -ENOBUFS;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00002132 skb = netlink_alloc_large_skb(len);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002133 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 goto out;
2135
Eric W. Biederman15e47302012-09-07 20:12:54 +00002136 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002137 NETLINK_CB(skb).dst_group = dst_group;
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00002138 NETLINK_CB(skb).creds = siocb->scm->creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002141 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 kfree_skb(skb);
2143 goto out;
2144 }
2145
2146 err = security_netlink_send(sk, skb);
2147 if (err) {
2148 kfree_skb(skb);
2149 goto out;
2150 }
2151
Patrick McHardyd629b832005-08-14 19:27:50 -07002152 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002154 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002156 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00002159 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return err;
2161}
2162
2163static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
2164 struct msghdr *msg, size_t len,
2165 int flags)
2166{
2167 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
2168 struct scm_cookie scm;
2169 struct sock *sk = sock->sk;
2170 struct netlink_sock *nlk = nlk_sk(sk);
2171 int noblock = flags&MSG_DONTWAIT;
2172 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00002173 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002174 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 if (flags&MSG_OOB)
2177 return -EOPNOTSUPP;
2178
2179 copied = 0;
2180
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002181 skb = skb_recv_datagram(sk, flags, noblock, &err);
2182 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 goto out;
2184
Johannes Berg68d6ac62010-08-15 21:20:44 +00002185 data_skb = skb;
2186
Johannes Berg1dacc762009-07-01 11:26:02 +00002187#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2188 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00002189 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00002190 * If this skb has a frag_list, then here that means that we
2191 * will have to use the frag_list skb's data for compat tasks
2192 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00002193 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00002194 * If we need to send the compat skb, assign it to the
2195 * 'data_skb' variable so that it will be used below for data
2196 * copying. We keep 'skb' for everything else, including
2197 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00002198 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00002199 if (flags & MSG_CMSG_COMPAT)
2200 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00002201 }
2202#endif
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 msg->msg_namelen = 0;
2205
Johannes Berg68d6ac62010-08-15 21:20:44 +00002206 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (len < copied) {
2208 msg->msg_flags |= MSG_TRUNC;
2209 copied = len;
2210 }
2211
Johannes Berg68d6ac62010-08-15 21:20:44 +00002212 skb_reset_transport_header(data_skb);
2213 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002216 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 addr->nl_family = AF_NETLINK;
2218 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002219 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07002220 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 msg->msg_namelen = sizeof(*addr);
2222 }
2223
Patrick McHardycc9a06c2006-03-12 20:34:27 -08002224 if (nlk->flags & NETLINK_RECV_PKTINFO)
2225 netlink_cmsg_recv_pktinfo(msg, skb);
2226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (NULL == siocb->scm) {
2228 memset(&scm, 0, sizeof(scm));
2229 siocb->scm = &scm;
2230 }
2231 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07002232 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00002233 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07002234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 skb_free_datagram(sk, skb);
2236
Andrey Vaginb44d2112011-02-21 02:40:47 +00002237 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
2238 ret = netlink_dump(sk);
2239 if (ret) {
2240 sk->sk_err = ret;
2241 sk->sk_error_report(sk);
2242 }
2243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246out:
2247 netlink_rcv_wake(sk);
2248 return err ? : copied;
2249}
2250
2251static void netlink_data_ready(struct sock *sk, int len)
2252{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002253 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254}
2255
2256/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002257 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 * complete set of kernel non-blocking support for message
2259 * queueing.
2260 */
2261
2262struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002263__netlink_kernel_create(struct net *net, int unit, struct module *module,
2264 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
2266 struct socket *sock;
2267 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07002268 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002269 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002270 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2271 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002273 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002275 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return NULL;
2277
2278 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2279 return NULL;
2280
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002281 /*
2282 * We have to just have a reference on the net from sk, but don't
2283 * get_net it. Besides, we cannot get and then put the net here.
2284 * So we create one inside init_net and the move it to net.
2285 */
2286
2287 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
2288 goto out_sock_release_nosk;
2289
2290 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08002291 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002292
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002293 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08002294 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002295 else
2296 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08002297
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002298 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08002299 if (!listeners)
2300 goto out_sock_release;
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002303 if (cfg && cfg->input)
2304 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002306 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07002307 goto out_sock_release;
2308
2309 nlk = nlk_sk(sk);
2310 nlk->flags |= NETLINK_KERNEL_SOCKET;
2311
2312 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002313 if (!nl_table[unit].registered) {
2314 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002315 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002316 nl_table[unit].cb_mutex = cb_mutex;
2317 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002318 if (cfg) {
2319 nl_table[unit].bind = cfg->bind;
2320 nl_table[unit].flags = cfg->flags;
2321 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002322 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002323 } else {
2324 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002325 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002326 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002327 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002328 return sk;
2329
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002330out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002331 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002332 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002333 return NULL;
2334
2335out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002336 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002337 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002339EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002340
2341void
2342netlink_kernel_release(struct sock *sk)
2343{
Denis V. Lunevedf02082008-02-29 11:18:32 -08002344 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002345}
2346EXPORT_SYMBOL(netlink_kernel_release);
2347
Johannes Bergd136f1b2009-09-12 03:03:15 +00002348int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002349{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002350 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002351 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002352
2353 if (groups < 32)
2354 groups = 32;
2355
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002356 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002357 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2358 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002359 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002360 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002361 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2362 rcu_assign_pointer(tbl->listeners, new);
2363
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002364 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002365 }
2366 tbl->groups = groups;
2367
Johannes Bergd136f1b2009-09-12 03:03:15 +00002368 return 0;
2369}
2370
2371/**
2372 * netlink_change_ngroups - change number of multicast groups
2373 *
2374 * This changes the number of multicast groups that are available
2375 * on a certain netlink family. Note that it is not possible to
2376 * change the number of groups to below 32. Also note that it does
2377 * not implicitly call netlink_clear_multicast_users() when the
2378 * number of groups is reduced.
2379 *
2380 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2381 * @groups: The new number of groups.
2382 */
2383int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2384{
2385 int err;
2386
2387 netlink_table_grab();
2388 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002389 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002390
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002391 return err;
2392}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002393
Johannes Bergb8273572009-09-24 15:44:05 -07002394void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2395{
2396 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002397 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2398
Sasha Levinb67bfe02013-02-27 17:06:00 -08002399 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002400 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2401}
2402
Johannes Berg84659eb2007-07-18 15:47:05 -07002403/**
2404 * netlink_clear_multicast_users - kick off multicast listeners
2405 *
2406 * This function removes all listeners from the given group.
2407 * @ksk: The kernel netlink socket, as returned by
2408 * netlink_kernel_create().
2409 * @group: The multicast group to clear.
2410 */
2411void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2412{
Johannes Berg84659eb2007-07-18 15:47:05 -07002413 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07002414 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07002415 netlink_table_ungrab();
2416}
Johannes Berg84659eb2007-07-18 15:47:05 -07002417
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002418struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002419__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002420{
2421 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002422 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002423
2424 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
2425 nlh->nlmsg_type = type;
2426 nlh->nlmsg_len = size;
2427 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002428 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002429 nlh->nlmsg_seq = seq;
2430 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002431 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002432 return nlh;
2433}
2434EXPORT_SYMBOL(__nlmsg_put);
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436/*
2437 * It looks a bit ugly.
2438 * It would be better to create kernel thread.
2439 */
2440
2441static int netlink_dump(struct sock *sk)
2442{
2443 struct netlink_sock *nlk = nlk_sk(sk);
2444 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002445 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002447 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00002448 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002450 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 cb = nlk->cb;
2453 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002454 err = -EINVAL;
2455 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
2457
Greg Rosec7ac8672011-06-10 01:27:09 +00002458 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2459
Patrick McHardyf9c22882013-04-17 06:47:04 +00002460 if (!netlink_rx_is_mmaped(sk) &&
2461 atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2462 goto errout_skb;
2463 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid, GFP_KERNEL);
Greg Rosec7ac8672011-06-10 01:27:09 +00002464 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002465 goto errout_skb;
Patrick McHardyf9c22882013-04-17 06:47:04 +00002466 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 len = cb->dump(skb, cb);
2469
2470 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002471 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002472
2473 if (sk_filter(sk, skb))
2474 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002475 else
2476 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return 0;
2478 }
2479
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002480 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2481 if (!nlh)
2482 goto errout_skb;
2483
Johannes Berg670dc282011-06-20 13:40:46 +02002484 nl_dump_check_consistent(cb, nlh);
2485
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002486 memcpy(nlmsg_data(nlh), &len, sizeof(len));
2487
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002488 if (sk_filter(sk, skb))
2489 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002490 else
2491 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Thomas Grafa8f74b22005-11-10 02:25:52 +01002493 if (cb->done)
2494 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002496 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Gao feng6dc878a2012-10-04 20:15:48 +00002498 module_put(cb->module);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00002499 netlink_consume_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002501
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002502errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002503 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002504 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002505 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
Gao feng6dc878a2012-10-04 20:15:48 +00002508int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2509 const struct nlmsghdr *nlh,
2510 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
2512 struct netlink_callback *cb;
2513 struct sock *sk;
2514 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002515 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002517 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 if (cb == NULL)
2519 return -ENOBUFS;
2520
Patrick McHardyf9c22882013-04-17 06:47:04 +00002521 /* Memory mapped dump requests need to be copied to avoid looping
2522 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2523 * a reference to the skb.
2524 */
2525 if (netlink_skb_is_mmaped(skb)) {
2526 skb = skb_copy(skb, GFP_KERNEL);
2527 if (skb == NULL) {
2528 kfree(cb);
2529 return -ENOBUFS;
2530 }
2531 } else
2532 atomic_inc(&skb->users);
2533
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002534 cb->dump = control->dump;
2535 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002537 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002538 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002539 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 cb->skb = skb;
2541
Eric W. Biederman15e47302012-09-07 20:12:54 +00002542 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (sk == NULL) {
2544 netlink_destroy_callback(cb);
2545 return -ECONNREFUSED;
2546 }
2547 nlk = nlk_sk(sk);
Gao feng6dc878a2012-10-04 20:15:48 +00002548
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002549 mutex_lock(nlk->cb_mutex);
Gao feng6dc878a2012-10-04 20:15:48 +00002550 /* A dump is in progress... */
Herbert Xu3f660d62007-05-03 03:17:14 -07002551 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002552 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 netlink_destroy_callback(cb);
Gao feng6dc878a2012-10-04 20:15:48 +00002554 ret = -EBUSY;
2555 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 }
Gao feng6dc878a2012-10-04 20:15:48 +00002557 /* add reference of module which cb->dump belongs to */
2558 if (!try_module_get(cb->module)) {
2559 mutex_unlock(nlk->cb_mutex);
2560 netlink_destroy_callback(cb);
2561 ret = -EPROTONOSUPPORT;
2562 goto out;
2563 }
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002566 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Andrey Vaginb44d2112011-02-21 02:40:47 +00002568 ret = netlink_dump(sk);
Gao feng6dc878a2012-10-04 20:15:48 +00002569out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002571
Andrey Vaginb44d2112011-02-21 02:40:47 +00002572 if (ret)
2573 return ret;
2574
Denis V. Lunev5c582982007-10-23 20:29:25 -07002575 /* We successfully started a dump, by returning -EINTR we
2576 * signal not to send ACK even if it was requested.
2577 */
2578 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579}
Gao feng6dc878a2012-10-04 20:15:48 +00002580EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2583{
2584 struct sk_buff *skb;
2585 struct nlmsghdr *rep;
2586 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002587 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Thomas Graf339bf982006-11-10 14:10:15 -08002589 /* error messages get the original request appened */
2590 if (err)
2591 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Patrick McHardyf9c22882013-04-17 06:47:04 +00002593 skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2594 NETLINK_CB(in_skb).portid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 if (!skb) {
2596 struct sock *sk;
2597
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002598 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002599 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002600 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (sk) {
2602 sk->sk_err = ENOBUFS;
2603 sk->sk_error_report(sk);
2604 sock_put(sk);
2605 }
2606 return;
2607 }
2608
Eric W. Biederman15e47302012-09-07 20:12:54 +00002609 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002610 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002611 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002613 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002614 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002616EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002618int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002619 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002620{
Thomas Graf82ace472005-11-10 02:25:53 +01002621 struct nlmsghdr *nlh;
2622 int err;
2623
2624 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002625 int msglen;
2626
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002627 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002628 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002629
Martin Murrayad8e4b72006-01-10 13:02:29 -08002630 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002631 return 0;
2632
Thomas Grafd35b6852007-03-22 23:28:46 -07002633 /* Only requests are handled by the kernel */
2634 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002635 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002636
Thomas Graf45e7ae72007-03-22 23:29:10 -07002637 /* Skip control messages */
2638 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002639 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002640
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002641 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002642 if (err == -EINTR)
2643 goto skip;
2644
2645ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002646 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002647 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002648
Denis V. Lunev5c582982007-10-23 20:29:25 -07002649skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002650 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002651 if (msglen > skb->len)
2652 msglen = skb->len;
2653 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002654 }
2655
2656 return 0;
2657}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002658EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002659
2660/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002661 * nlmsg_notify - send a notification netlink message
2662 * @sk: netlink socket to use
2663 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002664 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002665 * @group: destination multicast group or 0
2666 * @report: 1 to report back, 0 to disable
2667 * @flags: allocation flags
2668 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002669int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002670 unsigned int group, int report, gfp_t flags)
2671{
2672 int err = 0;
2673
2674 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002675 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002676
2677 if (report) {
2678 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002679 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002680 }
2681
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002682 /* errors reported via destination sk->sk_err, but propagate
2683 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002684 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002685 }
2686
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002687 if (report) {
2688 int err2;
2689
Eric W. Biederman15e47302012-09-07 20:12:54 +00002690 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002691 if (!err || err == -ESRCH)
2692 err = err2;
2693 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002694
2695 return err;
2696}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002697EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699#ifdef CONFIG_PROC_FS
2700struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002701 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 int link;
2703 int hash_idx;
2704};
2705
2706static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
2707{
2708 struct nl_seq_iter *iter = seq->private;
2709 int i, j;
2710 struct sock *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 loff_t off = 0;
2712
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002713 for (i = 0; i < MAX_LINKS; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002714 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
2716 for (j = 0; j <= hash->mask; j++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08002717 sk_for_each(s, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002718 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002719 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (off == pos) {
2721 iter->link = i;
2722 iter->hash_idx = j;
2723 return s;
2724 }
2725 ++off;
2726 }
2727 }
2728 }
2729 return NULL;
2730}
2731
2732static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002733 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
2735 read_lock(&nl_table_lock);
2736 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2737}
2738
2739static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2740{
2741 struct sock *s;
2742 struct nl_seq_iter *iter;
2743 int i, j;
2744
2745 ++*pos;
2746
2747 if (v == SEQ_START_TOKEN)
2748 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002749
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002750 iter = seq->private;
2751 s = v;
2752 do {
2753 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002754 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (s)
2756 return s;
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 i = iter->link;
2759 j = iter->hash_idx + 1;
2760
2761 do {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002762 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764 for (; j <= hash->mask; j++) {
2765 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002766 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002767 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (s) {
2769 iter->link = i;
2770 iter->hash_idx = j;
2771 return s;
2772 }
2773 }
2774
2775 j = 0;
2776 } while (++i < MAX_LINKS);
2777
2778 return NULL;
2779}
2780
2781static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002782 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
2784 read_unlock(&nl_table_lock);
2785}
2786
2787
2788static int netlink_seq_show(struct seq_file *seq, void *v)
2789{
Eric Dumazet658cb352012-04-22 21:30:21 +00002790 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 seq_puts(seq,
2792 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002793 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002794 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 struct sock *s = v;
2796 struct netlink_sock *nlk = nlk_sk(s);
2797
Hannes Frederic Sowa9f1e0ad2012-12-15 15:09:19 +00002798 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 s,
2800 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002801 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002802 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002803 sk_rmem_alloc_get(s),
2804 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002806 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002807 atomic_read(&s->sk_drops),
2808 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 );
2810
2811 }
2812 return 0;
2813}
2814
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002815static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 .start = netlink_seq_start,
2817 .next = netlink_seq_next,
2818 .stop = netlink_seq_stop,
2819 .show = netlink_seq_show,
2820};
2821
2822
2823static int netlink_seq_open(struct inode *inode, struct file *file)
2824{
Denis V. Luneve372c412007-11-19 22:31:54 -08002825 return seq_open_net(inode, file, &netlink_seq_ops,
2826 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002827}
2828
Arjan van de Venda7071d2007-02-12 00:55:36 -08002829static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 .owner = THIS_MODULE,
2831 .open = netlink_seq_open,
2832 .read = seq_read,
2833 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002834 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835};
2836
2837#endif
2838
2839int netlink_register_notifier(struct notifier_block *nb)
2840{
Alan Sterne041c682006-03-27 01:16:30 -08002841 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002843EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845int netlink_unregister_notifier(struct notifier_block *nb)
2846{
Alan Sterne041c682006-03-27 01:16:30 -08002847 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002849EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002850
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002851static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 .family = PF_NETLINK,
2853 .owner = THIS_MODULE,
2854 .release = netlink_release,
2855 .bind = netlink_bind,
2856 .connect = netlink_connect,
2857 .socketpair = sock_no_socketpair,
2858 .accept = sock_no_accept,
2859 .getname = netlink_getname,
Patrick McHardy9652e932013-04-17 06:47:02 +00002860 .poll = netlink_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 .ioctl = sock_no_ioctl,
2862 .listen = sock_no_listen,
2863 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002864 .setsockopt = netlink_setsockopt,
2865 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 .sendmsg = netlink_sendmsg,
2867 .recvmsg = netlink_recvmsg,
Patrick McHardyccdfcc32013-04-17 06:47:01 +00002868 .mmap = netlink_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 .sendpage = sock_no_sendpage,
2870};
2871
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002872static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 .family = PF_NETLINK,
2874 .create = netlink_create,
2875 .owner = THIS_MODULE, /* for consistency 8) */
2876};
2877
Pavel Emelyanov46650792007-10-08 20:38:39 -07002878static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002879{
2880#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00002881 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002882 return -ENOMEM;
2883#endif
2884 return 0;
2885}
2886
Pavel Emelyanov46650792007-10-08 20:38:39 -07002887static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002888{
2889#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00002890 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002891#endif
2892}
2893
David S. Millerb963ea82010-08-30 19:08:01 -07002894static void __init netlink_add_usersock_entry(void)
2895{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002896 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002897 int groups = 32;
2898
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002899 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002900 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002901 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002902
2903 netlink_table_grab();
2904
2905 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002906 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002907 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2908 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002909 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07002910
2911 netlink_table_ungrab();
2912}
2913
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002914static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002915 .init = netlink_net_init,
2916 .exit = netlink_net_exit,
2917};
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919static int __init netlink_proto_init(void)
2920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002922 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 unsigned int order;
2924 int err = proto_register(&netlink_proto, 0);
2925
2926 if (err != 0)
2927 goto out;
2928
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00002929 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002931 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002932 if (!nl_table)
2933 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Jan Beulich44813742009-09-21 17:03:05 -07002935 if (totalram_pages >= (128 * 1024))
2936 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 else
Jan Beulich44813742009-09-21 17:03:05 -07002938 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002940 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2941 limit = (1UL << order) / sizeof(struct hlist_head);
2942 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
2944 for (i = 0; i < MAX_LINKS; i++) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002945 struct nl_portid_hash *hash = &nl_table[i].hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Eric W. Biederman15e47302012-09-07 20:12:54 +00002947 hash->table = nl_portid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (!hash->table) {
2949 while (i-- > 0)
Eric W. Biederman15e47302012-09-07 20:12:54 +00002950 nl_portid_hash_free(nl_table[i].hash.table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 1 * sizeof(*hash->table));
2952 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002953 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 hash->max_shift = order;
2956 hash->shift = 0;
2957 hash->mask = 0;
2958 hash->rehash_time = jiffies;
2959 }
2960
David S. Millerb963ea82010-08-30 19:08:01 -07002961 netlink_add_usersock_entry();
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002964 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002965 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 rtnetlink_init();
2967out:
2968 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002969panic:
2970 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973core_initcall(netlink_proto_init);