]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - net/netlink/af_netlink.c
netlink: Fix autobind race condition that leads to zero port ID
[karo-tx-linux.git] / net / netlink / af_netlink.c
1 /*
2  * NETLINK      Kernel-user communication protocol.
3  *
4  *              Authors:        Alan Cox <alan@lxorguk.ukuu.org.uk>
5  *                              Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6  *                              Patrick McHardy <kaber@trash.net>
7  *
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.
12  *
13  * 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)
17  * 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
23  */
24
25 #include <linux/module.h>
26
27 #include <linux/capability.h>
28 #include <linux/kernel.h>
29 #include <linux/init.h>
30 #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>
49 #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>
57 #include <linux/audit.h>
58 #include <linux/mutex.h>
59 #include <linux/vmalloc.h>
60 #include <linux/if_arp.h>
61 #include <linux/rhashtable.h>
62 #include <asm/cacheflush.h>
63 #include <linux/hash.h>
64 #include <linux/genetlink.h>
65
66 #include <net/net_namespace.h>
67 #include <net/sock.h>
68 #include <net/scm.h>
69 #include <net/netlink.h>
70
71 #include "af_netlink.h"
72
73 struct listeners {
74         struct rcu_head         rcu;
75         unsigned long           masks[0];
76 };
77
78 /* state bits */
79 #define NETLINK_S_CONGESTED             0x0
80
81 /* flags */
82 #define NETLINK_F_KERNEL_SOCKET         0x1
83 #define NETLINK_F_RECV_PKTINFO          0x2
84 #define NETLINK_F_BROADCAST_SEND_ERROR  0x4
85 #define NETLINK_F_RECV_NO_ENOBUFS       0x8
86 #define NETLINK_F_LISTEN_ALL_NSID       0x10
87 #define NETLINK_F_CAP_ACK               0x20
88
89 static inline int netlink_is_kernel(struct sock *sk)
90 {
91         return nlk_sk(sk)->flags & NETLINK_F_KERNEL_SOCKET;
92 }
93
94 struct netlink_table *nl_table __read_mostly;
95 EXPORT_SYMBOL_GPL(nl_table);
96
97 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
98
99 static int netlink_dump(struct sock *sk);
100 static void netlink_skb_destructor(struct sk_buff *skb);
101
102 /* nl_table locking explained:
103  * Lookup and traversal are protected with an RCU read-side lock. Insertion
104  * and removal are protected with per bucket lock while using RCU list
105  * modification primitives and may run in parallel to RCU protected lookups.
106  * Destruction of the Netlink socket may only occur *after* nl_table_lock has
107  * been acquired * either during or after the socket has been removed from
108  * the list and after an RCU grace period.
109  */
110 DEFINE_RWLOCK(nl_table_lock);
111 EXPORT_SYMBOL_GPL(nl_table_lock);
112 static atomic_t nl_table_users = ATOMIC_INIT(0);
113
114 #define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
115
116 static ATOMIC_NOTIFIER_HEAD(netlink_chain);
117
118 static DEFINE_SPINLOCK(netlink_tap_lock);
119 static struct list_head netlink_tap_all __read_mostly;
120
121 static const struct rhashtable_params netlink_rhashtable_params;
122
123 static inline u32 netlink_group_mask(u32 group)
124 {
125         return group ? 1 << (group - 1) : 0;
126 }
127
128 static struct sk_buff *netlink_to_full_skb(const struct sk_buff *skb,
129                                            gfp_t gfp_mask)
130 {
131         unsigned int len = skb_end_offset(skb);
132         struct sk_buff *new;
133
134         new = alloc_skb(len, gfp_mask);
135         if (new == NULL)
136                 return NULL;
137
138         NETLINK_CB(new).portid = NETLINK_CB(skb).portid;
139         NETLINK_CB(new).dst_group = NETLINK_CB(skb).dst_group;
140         NETLINK_CB(new).creds = NETLINK_CB(skb).creds;
141
142         memcpy(skb_put(new, len), skb->data, len);
143         return new;
144 }
145
146 int netlink_add_tap(struct netlink_tap *nt)
147 {
148         if (unlikely(nt->dev->type != ARPHRD_NETLINK))
149                 return -EINVAL;
150
151         spin_lock(&netlink_tap_lock);
152         list_add_rcu(&nt->list, &netlink_tap_all);
153         spin_unlock(&netlink_tap_lock);
154
155         __module_get(nt->module);
156
157         return 0;
158 }
159 EXPORT_SYMBOL_GPL(netlink_add_tap);
160
161 static int __netlink_remove_tap(struct netlink_tap *nt)
162 {
163         bool found = false;
164         struct netlink_tap *tmp;
165
166         spin_lock(&netlink_tap_lock);
167
168         list_for_each_entry(tmp, &netlink_tap_all, list) {
169                 if (nt == tmp) {
170                         list_del_rcu(&nt->list);
171                         found = true;
172                         goto out;
173                 }
174         }
175
176         pr_warn("__netlink_remove_tap: %p not found\n", nt);
177 out:
178         spin_unlock(&netlink_tap_lock);
179
180         if (found)
181                 module_put(nt->module);
182
183         return found ? 0 : -ENODEV;
184 }
185
186 int netlink_remove_tap(struct netlink_tap *nt)
187 {
188         int ret;
189
190         ret = __netlink_remove_tap(nt);
191         synchronize_net();
192
193         return ret;
194 }
195 EXPORT_SYMBOL_GPL(netlink_remove_tap);
196
197 static bool netlink_filter_tap(const struct sk_buff *skb)
198 {
199         struct sock *sk = skb->sk;
200
201         /* We take the more conservative approach and
202          * whitelist socket protocols that may pass.
203          */
204         switch (sk->sk_protocol) {
205         case NETLINK_ROUTE:
206         case NETLINK_USERSOCK:
207         case NETLINK_SOCK_DIAG:
208         case NETLINK_NFLOG:
209         case NETLINK_XFRM:
210         case NETLINK_FIB_LOOKUP:
211         case NETLINK_NETFILTER:
212         case NETLINK_GENERIC:
213                 return true;
214         }
215
216         return false;
217 }
218
219 static int __netlink_deliver_tap_skb(struct sk_buff *skb,
220                                      struct net_device *dev)
221 {
222         struct sk_buff *nskb;
223         struct sock *sk = skb->sk;
224         int ret = -ENOMEM;
225
226         dev_hold(dev);
227
228         if (netlink_skb_is_mmaped(skb) || is_vmalloc_addr(skb->head))
229                 nskb = netlink_to_full_skb(skb, GFP_ATOMIC);
230         else
231                 nskb = skb_clone(skb, GFP_ATOMIC);
232         if (nskb) {
233                 nskb->dev = dev;
234                 nskb->protocol = htons((u16) sk->sk_protocol);
235                 nskb->pkt_type = netlink_is_kernel(sk) ?
236                                  PACKET_KERNEL : PACKET_USER;
237                 skb_reset_network_header(nskb);
238                 ret = dev_queue_xmit(nskb);
239                 if (unlikely(ret > 0))
240                         ret = net_xmit_errno(ret);
241         }
242
243         dev_put(dev);
244         return ret;
245 }
246
247 static void __netlink_deliver_tap(struct sk_buff *skb)
248 {
249         int ret;
250         struct netlink_tap *tmp;
251
252         if (!netlink_filter_tap(skb))
253                 return;
254
255         list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
256                 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
257                 if (unlikely(ret))
258                         break;
259         }
260 }
261
262 static void netlink_deliver_tap(struct sk_buff *skb)
263 {
264         rcu_read_lock();
265
266         if (unlikely(!list_empty(&netlink_tap_all)))
267                 __netlink_deliver_tap(skb);
268
269         rcu_read_unlock();
270 }
271
272 static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src,
273                                        struct sk_buff *skb)
274 {
275         if (!(netlink_is_kernel(dst) && netlink_is_kernel(src)))
276                 netlink_deliver_tap(skb);
277 }
278
279 static void netlink_overrun(struct sock *sk)
280 {
281         struct netlink_sock *nlk = nlk_sk(sk);
282
283         if (!(nlk->flags & NETLINK_F_RECV_NO_ENOBUFS)) {
284                 if (!test_and_set_bit(NETLINK_S_CONGESTED,
285                                       &nlk_sk(sk)->state)) {
286                         sk->sk_err = ENOBUFS;
287                         sk->sk_error_report(sk);
288                 }
289         }
290         atomic_inc(&sk->sk_drops);
291 }
292
293 static void netlink_rcv_wake(struct sock *sk)
294 {
295         struct netlink_sock *nlk = nlk_sk(sk);
296
297         if (skb_queue_empty(&sk->sk_receive_queue))
298                 clear_bit(NETLINK_S_CONGESTED, &nlk->state);
299         if (!test_bit(NETLINK_S_CONGESTED, &nlk->state))
300                 wake_up_interruptible(&nlk->wait);
301 }
302
303 #ifdef CONFIG_NETLINK_MMAP
304 static bool netlink_rx_is_mmaped(struct sock *sk)
305 {
306         return nlk_sk(sk)->rx_ring.pg_vec != NULL;
307 }
308
309 static bool netlink_tx_is_mmaped(struct sock *sk)
310 {
311         return nlk_sk(sk)->tx_ring.pg_vec != NULL;
312 }
313
314 static __pure struct page *pgvec_to_page(const void *addr)
315 {
316         if (is_vmalloc_addr(addr))
317                 return vmalloc_to_page(addr);
318         else
319                 return virt_to_page(addr);
320 }
321
322 static void free_pg_vec(void **pg_vec, unsigned int order, unsigned int len)
323 {
324         unsigned int i;
325
326         for (i = 0; i < len; i++) {
327                 if (pg_vec[i] != NULL) {
328                         if (is_vmalloc_addr(pg_vec[i]))
329                                 vfree(pg_vec[i]);
330                         else
331                                 free_pages((unsigned long)pg_vec[i], order);
332                 }
333         }
334         kfree(pg_vec);
335 }
336
337 static void *alloc_one_pg_vec_page(unsigned long order)
338 {
339         void *buffer;
340         gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP | __GFP_ZERO |
341                           __GFP_NOWARN | __GFP_NORETRY;
342
343         buffer = (void *)__get_free_pages(gfp_flags, order);
344         if (buffer != NULL)
345                 return buffer;
346
347         buffer = vzalloc((1 << order) * PAGE_SIZE);
348         if (buffer != NULL)
349                 return buffer;
350
351         gfp_flags &= ~__GFP_NORETRY;
352         return (void *)__get_free_pages(gfp_flags, order);
353 }
354
355 static void **alloc_pg_vec(struct netlink_sock *nlk,
356                            struct nl_mmap_req *req, unsigned int order)
357 {
358         unsigned int block_nr = req->nm_block_nr;
359         unsigned int i;
360         void **pg_vec;
361
362         pg_vec = kcalloc(block_nr, sizeof(void *), GFP_KERNEL);
363         if (pg_vec == NULL)
364                 return NULL;
365
366         for (i = 0; i < block_nr; i++) {
367                 pg_vec[i] = alloc_one_pg_vec_page(order);
368                 if (pg_vec[i] == NULL)
369                         goto err1;
370         }
371
372         return pg_vec;
373 err1:
374         free_pg_vec(pg_vec, order, block_nr);
375         return NULL;
376 }
377
378
379 static void
380 __netlink_set_ring(struct sock *sk, struct nl_mmap_req *req, bool tx_ring, void **pg_vec,
381                    unsigned int order)
382 {
383         struct netlink_sock *nlk = nlk_sk(sk);
384         struct sk_buff_head *queue;
385         struct netlink_ring *ring;
386
387         queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
388         ring  = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
389
390         spin_lock_bh(&queue->lock);
391
392         ring->frame_max         = req->nm_frame_nr - 1;
393         ring->head              = 0;
394         ring->frame_size        = req->nm_frame_size;
395         ring->pg_vec_pages      = req->nm_block_size / PAGE_SIZE;
396
397         swap(ring->pg_vec_len, req->nm_block_nr);
398         swap(ring->pg_vec_order, order);
399         swap(ring->pg_vec, pg_vec);
400
401         __skb_queue_purge(queue);
402         spin_unlock_bh(&queue->lock);
403
404         WARN_ON(atomic_read(&nlk->mapped));
405
406         if (pg_vec)
407                 free_pg_vec(pg_vec, order, req->nm_block_nr);
408 }
409
410 static int netlink_set_ring(struct sock *sk, struct nl_mmap_req *req,
411                             bool tx_ring)
412 {
413         struct netlink_sock *nlk = nlk_sk(sk);
414         struct netlink_ring *ring;
415         void **pg_vec = NULL;
416         unsigned int order = 0;
417
418         ring  = tx_ring ? &nlk->tx_ring : &nlk->rx_ring;
419
420         if (atomic_read(&nlk->mapped))
421                 return -EBUSY;
422         if (atomic_read(&ring->pending))
423                 return -EBUSY;
424
425         if (req->nm_block_nr) {
426                 if (ring->pg_vec != NULL)
427                         return -EBUSY;
428
429                 if ((int)req->nm_block_size <= 0)
430                         return -EINVAL;
431                 if (!PAGE_ALIGNED(req->nm_block_size))
432                         return -EINVAL;
433                 if (req->nm_frame_size < NL_MMAP_HDRLEN)
434                         return -EINVAL;
435                 if (!IS_ALIGNED(req->nm_frame_size, NL_MMAP_MSG_ALIGNMENT))
436                         return -EINVAL;
437
438                 ring->frames_per_block = req->nm_block_size /
439                                          req->nm_frame_size;
440                 if (ring->frames_per_block == 0)
441                         return -EINVAL;
442                 if (ring->frames_per_block * req->nm_block_nr !=
443                     req->nm_frame_nr)
444                         return -EINVAL;
445
446                 order = get_order(req->nm_block_size);
447                 pg_vec = alloc_pg_vec(nlk, req, order);
448                 if (pg_vec == NULL)
449                         return -ENOMEM;
450         } else {
451                 if (req->nm_frame_nr)
452                         return -EINVAL;
453         }
454
455         mutex_lock(&nlk->pg_vec_lock);
456         if (atomic_read(&nlk->mapped) == 0) {
457                 __netlink_set_ring(sk, req, tx_ring, pg_vec, order);
458                 mutex_unlock(&nlk->pg_vec_lock);
459                 return 0;
460         }
461
462         mutex_unlock(&nlk->pg_vec_lock);
463
464         if (pg_vec)
465                 free_pg_vec(pg_vec, order, req->nm_block_nr);
466
467         return -EBUSY;
468 }
469
470 static void netlink_mm_open(struct vm_area_struct *vma)
471 {
472         struct file *file = vma->vm_file;
473         struct socket *sock = file->private_data;
474         struct sock *sk = sock->sk;
475
476         if (sk)
477                 atomic_inc(&nlk_sk(sk)->mapped);
478 }
479
480 static void netlink_mm_close(struct vm_area_struct *vma)
481 {
482         struct file *file = vma->vm_file;
483         struct socket *sock = file->private_data;
484         struct sock *sk = sock->sk;
485
486         if (sk)
487                 atomic_dec(&nlk_sk(sk)->mapped);
488 }
489
490 static const struct vm_operations_struct netlink_mmap_ops = {
491         .open   = netlink_mm_open,
492         .close  = netlink_mm_close,
493 };
494
495 static int netlink_mmap(struct file *file, struct socket *sock,
496                         struct vm_area_struct *vma)
497 {
498         struct sock *sk = sock->sk;
499         struct netlink_sock *nlk = nlk_sk(sk);
500         struct netlink_ring *ring;
501         unsigned long start, size, expected;
502         unsigned int i;
503         int err = -EINVAL;
504
505         if (vma->vm_pgoff)
506                 return -EINVAL;
507
508         mutex_lock(&nlk->pg_vec_lock);
509
510         expected = 0;
511         for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
512                 if (ring->pg_vec == NULL)
513                         continue;
514                 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE;
515         }
516
517         if (expected == 0)
518                 goto out;
519
520         size = vma->vm_end - vma->vm_start;
521         if (size != expected)
522                 goto out;
523
524         start = vma->vm_start;
525         for (ring = &nlk->rx_ring; ring <= &nlk->tx_ring; ring++) {
526                 if (ring->pg_vec == NULL)
527                         continue;
528
529                 for (i = 0; i < ring->pg_vec_len; i++) {
530                         struct page *page;
531                         void *kaddr = ring->pg_vec[i];
532                         unsigned int pg_num;
533
534                         for (pg_num = 0; pg_num < ring->pg_vec_pages; pg_num++) {
535                                 page = pgvec_to_page(kaddr);
536                                 err = vm_insert_page(vma, start, page);
537                                 if (err < 0)
538                                         goto out;
539                                 start += PAGE_SIZE;
540                                 kaddr += PAGE_SIZE;
541                         }
542                 }
543         }
544
545         atomic_inc(&nlk->mapped);
546         vma->vm_ops = &netlink_mmap_ops;
547         err = 0;
548 out:
549         mutex_unlock(&nlk->pg_vec_lock);
550         return err;
551 }
552
553 static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr, unsigned int nm_len)
554 {
555 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
556         struct page *p_start, *p_end;
557
558         /* First page is flushed through netlink_{get,set}_status */
559         p_start = pgvec_to_page(hdr + PAGE_SIZE);
560         p_end   = pgvec_to_page((void *)hdr + NL_MMAP_HDRLEN + nm_len - 1);
561         while (p_start <= p_end) {
562                 flush_dcache_page(p_start);
563                 p_start++;
564         }
565 #endif
566 }
567
568 static enum nl_mmap_status netlink_get_status(const struct nl_mmap_hdr *hdr)
569 {
570         smp_rmb();
571         flush_dcache_page(pgvec_to_page(hdr));
572         return hdr->nm_status;
573 }
574
575 static void netlink_set_status(struct nl_mmap_hdr *hdr,
576                                enum nl_mmap_status status)
577 {
578         smp_mb();
579         hdr->nm_status = status;
580         flush_dcache_page(pgvec_to_page(hdr));
581 }
582
583 static struct nl_mmap_hdr *
584 __netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos)
585 {
586         unsigned int pg_vec_pos, frame_off;
587
588         pg_vec_pos = pos / ring->frames_per_block;
589         frame_off  = pos % ring->frames_per_block;
590
591         return ring->pg_vec[pg_vec_pos] + (frame_off * ring->frame_size);
592 }
593
594 static struct nl_mmap_hdr *
595 netlink_lookup_frame(const struct netlink_ring *ring, unsigned int pos,
596                      enum nl_mmap_status status)
597 {
598         struct nl_mmap_hdr *hdr;
599
600         hdr = __netlink_lookup_frame(ring, pos);
601         if (netlink_get_status(hdr) != status)
602                 return NULL;
603
604         return hdr;
605 }
606
607 static struct nl_mmap_hdr *
608 netlink_current_frame(const struct netlink_ring *ring,
609                       enum nl_mmap_status status)
610 {
611         return netlink_lookup_frame(ring, ring->head, status);
612 }
613
614 static void netlink_increment_head(struct netlink_ring *ring)
615 {
616         ring->head = ring->head != ring->frame_max ? ring->head + 1 : 0;
617 }
618
619 static void netlink_forward_ring(struct netlink_ring *ring)
620 {
621         unsigned int head = ring->head;
622         const struct nl_mmap_hdr *hdr;
623
624         do {
625                 hdr = __netlink_lookup_frame(ring, ring->head);
626                 if (hdr->nm_status == NL_MMAP_STATUS_UNUSED)
627                         break;
628                 if (hdr->nm_status != NL_MMAP_STATUS_SKIP)
629                         break;
630                 netlink_increment_head(ring);
631         } while (ring->head != head);
632 }
633
634 static bool netlink_has_valid_frame(struct netlink_ring *ring)
635 {
636         unsigned int head = ring->head, pos = head;
637         const struct nl_mmap_hdr *hdr;
638
639         do {
640                 hdr = __netlink_lookup_frame(ring, pos);
641                 if (hdr->nm_status == NL_MMAP_STATUS_VALID)
642                         return true;
643                 pos = pos != 0 ? pos - 1 : ring->frame_max;
644         } while (pos != head);
645
646         return false;
647 }
648
649 static bool netlink_dump_space(struct netlink_sock *nlk)
650 {
651         struct netlink_ring *ring = &nlk->rx_ring;
652         struct nl_mmap_hdr *hdr;
653         unsigned int n;
654
655         hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
656         if (hdr == NULL)
657                 return false;
658
659         n = ring->head + ring->frame_max / 2;
660         if (n > ring->frame_max)
661                 n -= ring->frame_max;
662
663         hdr = __netlink_lookup_frame(ring, n);
664
665         return hdr->nm_status == NL_MMAP_STATUS_UNUSED;
666 }
667
668 static unsigned int netlink_poll(struct file *file, struct socket *sock,
669                                  poll_table *wait)
670 {
671         struct sock *sk = sock->sk;
672         struct netlink_sock *nlk = nlk_sk(sk);
673         unsigned int mask;
674         int err;
675
676         if (nlk->rx_ring.pg_vec != NULL) {
677                 /* Memory mapped sockets don't call recvmsg(), so flow control
678                  * for dumps is performed here. A dump is allowed to continue
679                  * if at least half the ring is unused.
680                  */
681                 while (nlk->cb_running && netlink_dump_space(nlk)) {
682                         err = netlink_dump(sk);
683                         if (err < 0) {
684                                 sk->sk_err = -err;
685                                 sk->sk_error_report(sk);
686                                 break;
687                         }
688                 }
689                 netlink_rcv_wake(sk);
690         }
691
692         mask = datagram_poll(file, sock, wait);
693
694         /* We could already have received frames in the normal receive
695          * queue, that will show up as NL_MMAP_STATUS_COPY in the ring,
696          * so if mask contains pollin/etc already, there's no point
697          * walking the ring.
698          */
699         if ((mask & (POLLIN | POLLRDNORM)) != (POLLIN | POLLRDNORM)) {
700                 spin_lock_bh(&sk->sk_receive_queue.lock);
701                 if (nlk->rx_ring.pg_vec) {
702                         if (netlink_has_valid_frame(&nlk->rx_ring))
703                                 mask |= POLLIN | POLLRDNORM;
704                 }
705                 spin_unlock_bh(&sk->sk_receive_queue.lock);
706         }
707
708         spin_lock_bh(&sk->sk_write_queue.lock);
709         if (nlk->tx_ring.pg_vec) {
710                 if (netlink_current_frame(&nlk->tx_ring, NL_MMAP_STATUS_UNUSED))
711                         mask |= POLLOUT | POLLWRNORM;
712         }
713         spin_unlock_bh(&sk->sk_write_queue.lock);
714
715         return mask;
716 }
717
718 static struct nl_mmap_hdr *netlink_mmap_hdr(struct sk_buff *skb)
719 {
720         return (struct nl_mmap_hdr *)(skb->head - NL_MMAP_HDRLEN);
721 }
722
723 static void netlink_ring_setup_skb(struct sk_buff *skb, struct sock *sk,
724                                    struct netlink_ring *ring,
725                                    struct nl_mmap_hdr *hdr)
726 {
727         unsigned int size;
728         void *data;
729
730         size = ring->frame_size - NL_MMAP_HDRLEN;
731         data = (void *)hdr + NL_MMAP_HDRLEN;
732
733         skb->head       = data;
734         skb->data       = data;
735         skb_reset_tail_pointer(skb);
736         skb->end        = skb->tail + size;
737         skb->len        = 0;
738
739         skb->destructor = netlink_skb_destructor;
740         NETLINK_CB(skb).flags |= NETLINK_SKB_MMAPED;
741         NETLINK_CB(skb).sk = sk;
742 }
743
744 static int netlink_mmap_sendmsg(struct sock *sk, struct msghdr *msg,
745                                 u32 dst_portid, u32 dst_group,
746                                 struct scm_cookie *scm)
747 {
748         struct netlink_sock *nlk = nlk_sk(sk);
749         struct netlink_ring *ring;
750         struct nl_mmap_hdr *hdr;
751         struct sk_buff *skb;
752         unsigned int maxlen;
753         int err = 0, len = 0;
754
755         mutex_lock(&nlk->pg_vec_lock);
756
757         ring   = &nlk->tx_ring;
758         maxlen = ring->frame_size - NL_MMAP_HDRLEN;
759
760         do {
761                 unsigned int nm_len;
762
763                 hdr = netlink_current_frame(ring, NL_MMAP_STATUS_VALID);
764                 if (hdr == NULL) {
765                         if (!(msg->msg_flags & MSG_DONTWAIT) &&
766                             atomic_read(&nlk->tx_ring.pending))
767                                 schedule();
768                         continue;
769                 }
770
771                 nm_len = ACCESS_ONCE(hdr->nm_len);
772                 if (nm_len > maxlen) {
773                         err = -EINVAL;
774                         goto out;
775                 }
776
777                 netlink_frame_flush_dcache(hdr, nm_len);
778
779                 skb = alloc_skb(nm_len, GFP_KERNEL);
780                 if (skb == NULL) {
781                         err = -ENOBUFS;
782                         goto out;
783                 }
784                 __skb_put(skb, nm_len);
785                 memcpy(skb->data, (void *)hdr + NL_MMAP_HDRLEN, nm_len);
786                 netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
787
788                 netlink_increment_head(ring);
789
790                 NETLINK_CB(skb).portid    = nlk->portid;
791                 NETLINK_CB(skb).dst_group = dst_group;
792                 NETLINK_CB(skb).creds     = scm->creds;
793
794                 err = security_netlink_send(sk, skb);
795                 if (err) {
796                         kfree_skb(skb);
797                         goto out;
798                 }
799
800                 if (unlikely(dst_group)) {
801                         atomic_inc(&skb->users);
802                         netlink_broadcast(sk, skb, dst_portid, dst_group,
803                                           GFP_KERNEL);
804                 }
805                 err = netlink_unicast(sk, skb, dst_portid,
806                                       msg->msg_flags & MSG_DONTWAIT);
807                 if (err < 0)
808                         goto out;
809                 len += err;
810
811         } while (hdr != NULL ||
812                  (!(msg->msg_flags & MSG_DONTWAIT) &&
813                   atomic_read(&nlk->tx_ring.pending)));
814
815         if (len > 0)
816                 err = len;
817 out:
818         mutex_unlock(&nlk->pg_vec_lock);
819         return err;
820 }
821
822 static void netlink_queue_mmaped_skb(struct sock *sk, struct sk_buff *skb)
823 {
824         struct nl_mmap_hdr *hdr;
825
826         hdr = netlink_mmap_hdr(skb);
827         hdr->nm_len     = skb->len;
828         hdr->nm_group   = NETLINK_CB(skb).dst_group;
829         hdr->nm_pid     = NETLINK_CB(skb).creds.pid;
830         hdr->nm_uid     = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
831         hdr->nm_gid     = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
832         netlink_frame_flush_dcache(hdr, hdr->nm_len);
833         netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
834
835         NETLINK_CB(skb).flags |= NETLINK_SKB_DELIVERED;
836         kfree_skb(skb);
837 }
838
839 static void netlink_ring_set_copied(struct sock *sk, struct sk_buff *skb)
840 {
841         struct netlink_sock *nlk = nlk_sk(sk);
842         struct netlink_ring *ring = &nlk->rx_ring;
843         struct nl_mmap_hdr *hdr;
844
845         spin_lock_bh(&sk->sk_receive_queue.lock);
846         hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
847         if (hdr == NULL) {
848                 spin_unlock_bh(&sk->sk_receive_queue.lock);
849                 kfree_skb(skb);
850                 netlink_overrun(sk);
851                 return;
852         }
853         netlink_increment_head(ring);
854         __skb_queue_tail(&sk->sk_receive_queue, skb);
855         spin_unlock_bh(&sk->sk_receive_queue.lock);
856
857         hdr->nm_len     = skb->len;
858         hdr->nm_group   = NETLINK_CB(skb).dst_group;
859         hdr->nm_pid     = NETLINK_CB(skb).creds.pid;
860         hdr->nm_uid     = from_kuid(sk_user_ns(sk), NETLINK_CB(skb).creds.uid);
861         hdr->nm_gid     = from_kgid(sk_user_ns(sk), NETLINK_CB(skb).creds.gid);
862         netlink_set_status(hdr, NL_MMAP_STATUS_COPY);
863 }
864
865 #else /* CONFIG_NETLINK_MMAP */
866 #define netlink_rx_is_mmaped(sk)        false
867 #define netlink_tx_is_mmaped(sk)        false
868 #define netlink_mmap                    sock_no_mmap
869 #define netlink_poll                    datagram_poll
870 #define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, scm)       0
871 #endif /* CONFIG_NETLINK_MMAP */
872
873 static void netlink_skb_destructor(struct sk_buff *skb)
874 {
875 #ifdef CONFIG_NETLINK_MMAP
876         struct nl_mmap_hdr *hdr;
877         struct netlink_ring *ring;
878         struct sock *sk;
879
880         /* If a packet from the kernel to userspace was freed because of an
881          * error without being delivered to userspace, the kernel must reset
882          * the status. In the direction userspace to kernel, the status is
883          * always reset here after the packet was processed and freed.
884          */
885         if (netlink_skb_is_mmaped(skb)) {
886                 hdr = netlink_mmap_hdr(skb);
887                 sk = NETLINK_CB(skb).sk;
888
889                 if (NETLINK_CB(skb).flags & NETLINK_SKB_TX) {
890                         netlink_set_status(hdr, NL_MMAP_STATUS_UNUSED);
891                         ring = &nlk_sk(sk)->tx_ring;
892                 } else {
893                         if (!(NETLINK_CB(skb).flags & NETLINK_SKB_DELIVERED)) {
894                                 hdr->nm_len = 0;
895                                 netlink_set_status(hdr, NL_MMAP_STATUS_VALID);
896                         }
897                         ring = &nlk_sk(sk)->rx_ring;
898                 }
899
900                 WARN_ON(atomic_read(&ring->pending) == 0);
901                 atomic_dec(&ring->pending);
902                 sock_put(sk);
903
904                 skb->head = NULL;
905         }
906 #endif
907         if (is_vmalloc_addr(skb->head)) {
908                 if (!skb->cloned ||
909                     !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
910                         vfree(skb->head);
911
912                 skb->head = NULL;
913         }
914         if (skb->sk != NULL)
915                 sock_rfree(skb);
916 }
917
918 static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
919 {
920         WARN_ON(skb->sk != NULL);
921         skb->sk = sk;
922         skb->destructor = netlink_skb_destructor;
923         atomic_add(skb->truesize, &sk->sk_rmem_alloc);
924         sk_mem_charge(sk, skb->truesize);
925 }
926
927 static void netlink_sock_destruct(struct sock *sk)
928 {
929         struct netlink_sock *nlk = nlk_sk(sk);
930
931         if (nlk->cb_running) {
932                 if (nlk->cb.done)
933                         nlk->cb.done(&nlk->cb);
934
935                 module_put(nlk->cb.module);
936                 kfree_skb(nlk->cb.skb);
937         }
938
939         skb_queue_purge(&sk->sk_receive_queue);
940 #ifdef CONFIG_NETLINK_MMAP
941         if (1) {
942                 struct nl_mmap_req req;
943
944                 memset(&req, 0, sizeof(req));
945                 if (nlk->rx_ring.pg_vec)
946                         __netlink_set_ring(sk, &req, false, NULL, 0);
947                 memset(&req, 0, sizeof(req));
948                 if (nlk->tx_ring.pg_vec)
949                         __netlink_set_ring(sk, &req, true, NULL, 0);
950         }
951 #endif /* CONFIG_NETLINK_MMAP */
952
953         if (!sock_flag(sk, SOCK_DEAD)) {
954                 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
955                 return;
956         }
957
958         WARN_ON(atomic_read(&sk->sk_rmem_alloc));
959         WARN_ON(atomic_read(&sk->sk_wmem_alloc));
960         WARN_ON(nlk_sk(sk)->groups);
961 }
962
963 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
964  * SMP. Look, when several writers sleep and reader wakes them up, all but one
965  * immediately hit write lock and grab all the cpus. Exclusive sleep solves
966  * this, _but_ remember, it adds useless work on UP machines.
967  */
968
969 void netlink_table_grab(void)
970         __acquires(nl_table_lock)
971 {
972         might_sleep();
973
974         write_lock_irq(&nl_table_lock);
975
976         if (atomic_read(&nl_table_users)) {
977                 DECLARE_WAITQUEUE(wait, current);
978
979                 add_wait_queue_exclusive(&nl_table_wait, &wait);
980                 for (;;) {
981                         set_current_state(TASK_UNINTERRUPTIBLE);
982                         if (atomic_read(&nl_table_users) == 0)
983                                 break;
984                         write_unlock_irq(&nl_table_lock);
985                         schedule();
986                         write_lock_irq(&nl_table_lock);
987                 }
988
989                 __set_current_state(TASK_RUNNING);
990                 remove_wait_queue(&nl_table_wait, &wait);
991         }
992 }
993
994 void netlink_table_ungrab(void)
995         __releases(nl_table_lock)
996 {
997         write_unlock_irq(&nl_table_lock);
998         wake_up(&nl_table_wait);
999 }
1000
1001 static inline void
1002 netlink_lock_table(void)
1003 {
1004         /* read_lock() synchronizes us to netlink_table_grab */
1005
1006         read_lock(&nl_table_lock);
1007         atomic_inc(&nl_table_users);
1008         read_unlock(&nl_table_lock);
1009 }
1010
1011 static inline void
1012 netlink_unlock_table(void)
1013 {
1014         if (atomic_dec_and_test(&nl_table_users))
1015                 wake_up(&nl_table_wait);
1016 }
1017
1018 struct netlink_compare_arg
1019 {
1020         possible_net_t pnet;
1021         u32 portid;
1022 };
1023
1024 /* Doing sizeof directly may yield 4 extra bytes on 64-bit. */
1025 #define netlink_compare_arg_len \
1026         (offsetof(struct netlink_compare_arg, portid) + sizeof(u32))
1027
1028 static inline int netlink_compare(struct rhashtable_compare_arg *arg,
1029                                   const void *ptr)
1030 {
1031         const struct netlink_compare_arg *x = arg->key;
1032         const struct netlink_sock *nlk = ptr;
1033
1034         return nlk->rhash_portid != x->portid ||
1035                !net_eq(sock_net(&nlk->sk), read_pnet(&x->pnet));
1036 }
1037
1038 static void netlink_compare_arg_init(struct netlink_compare_arg *arg,
1039                                      struct net *net, u32 portid)
1040 {
1041         memset(arg, 0, sizeof(*arg));
1042         write_pnet(&arg->pnet, net);
1043         arg->portid = portid;
1044 }
1045
1046 static struct sock *__netlink_lookup(struct netlink_table *table, u32 portid,
1047                                      struct net *net)
1048 {
1049         struct netlink_compare_arg arg;
1050
1051         netlink_compare_arg_init(&arg, net, portid);
1052         return rhashtable_lookup_fast(&table->hash, &arg,
1053                                       netlink_rhashtable_params);
1054 }
1055
1056 static int __netlink_insert(struct netlink_table *table, struct sock *sk)
1057 {
1058         struct netlink_compare_arg arg;
1059
1060         netlink_compare_arg_init(&arg, sock_net(sk), nlk_sk(sk)->rhash_portid);
1061         return rhashtable_lookup_insert_key(&table->hash, &arg,
1062                                             &nlk_sk(sk)->node,
1063                                             netlink_rhashtable_params);
1064 }
1065
1066 static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
1067 {
1068         struct netlink_table *table = &nl_table[protocol];
1069         struct sock *sk;
1070
1071         rcu_read_lock();
1072         sk = __netlink_lookup(table, portid, net);
1073         if (sk)
1074                 sock_hold(sk);
1075         rcu_read_unlock();
1076
1077         return sk;
1078 }
1079
1080 static const struct proto_ops netlink_ops;
1081
1082 static void
1083 netlink_update_listeners(struct sock *sk)
1084 {
1085         struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1086         unsigned long mask;
1087         unsigned int i;
1088         struct listeners *listeners;
1089
1090         listeners = nl_deref_protected(tbl->listeners);
1091         if (!listeners)
1092                 return;
1093
1094         for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
1095                 mask = 0;
1096                 sk_for_each_bound(sk, &tbl->mc_list) {
1097                         if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
1098                                 mask |= nlk_sk(sk)->groups[i];
1099                 }
1100                 listeners->masks[i] = mask;
1101         }
1102         /* this function is only called with the netlink table "grabbed", which
1103          * makes sure updates are visible before bind or setsockopt return. */
1104 }
1105
1106 static int netlink_insert(struct sock *sk, u32 portid)
1107 {
1108         struct netlink_table *table = &nl_table[sk->sk_protocol];
1109         int err;
1110
1111         lock_sock(sk);
1112
1113         err = -EBUSY;
1114         if (nlk_sk(sk)->portid)
1115                 goto err;
1116
1117         err = -ENOMEM;
1118         if (BITS_PER_LONG > 32 &&
1119             unlikely(atomic_read(&table->hash.nelems) >= UINT_MAX))
1120                 goto err;
1121
1122         nlk_sk(sk)->rhash_portid = portid;
1123         sock_hold(sk);
1124
1125         err = __netlink_insert(table, sk);
1126         if (err) {
1127                 /* In case the hashtable backend returns with -EBUSY
1128                  * from here, it must not escape to the caller.
1129                  */
1130                 if (unlikely(err == -EBUSY))
1131                         err = -EOVERFLOW;
1132                 if (err == -EEXIST)
1133                         err = -EADDRINUSE;
1134                 sock_put(sk);
1135                 goto err;
1136         }
1137
1138         nlk_sk(sk)->portid = portid;
1139
1140 err:
1141         release_sock(sk);
1142         return err;
1143 }
1144
1145 static void netlink_remove(struct sock *sk)
1146 {
1147         struct netlink_table *table;
1148
1149         table = &nl_table[sk->sk_protocol];
1150         if (!rhashtable_remove_fast(&table->hash, &nlk_sk(sk)->node,
1151                                     netlink_rhashtable_params)) {
1152                 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
1153                 __sock_put(sk);
1154         }
1155
1156         netlink_table_grab();
1157         if (nlk_sk(sk)->subscriptions) {
1158                 __sk_del_bind_node(sk);
1159                 netlink_update_listeners(sk);
1160         }
1161         if (sk->sk_protocol == NETLINK_GENERIC)
1162                 atomic_inc(&genl_sk_destructing_cnt);
1163         netlink_table_ungrab();
1164 }
1165
1166 static struct proto netlink_proto = {
1167         .name     = "NETLINK",
1168         .owner    = THIS_MODULE,
1169         .obj_size = sizeof(struct netlink_sock),
1170 };
1171
1172 static int __netlink_create(struct net *net, struct socket *sock,
1173                             struct mutex *cb_mutex, int protocol,
1174                             int kern)
1175 {
1176         struct sock *sk;
1177         struct netlink_sock *nlk;
1178
1179         sock->ops = &netlink_ops;
1180
1181         sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto, kern);
1182         if (!sk)
1183                 return -ENOMEM;
1184
1185         sock_init_data(sock, sk);
1186
1187         nlk = nlk_sk(sk);
1188         if (cb_mutex) {
1189                 nlk->cb_mutex = cb_mutex;
1190         } else {
1191                 nlk->cb_mutex = &nlk->cb_def_mutex;
1192                 mutex_init(nlk->cb_mutex);
1193         }
1194         init_waitqueue_head(&nlk->wait);
1195 #ifdef CONFIG_NETLINK_MMAP
1196         mutex_init(&nlk->pg_vec_lock);
1197 #endif
1198
1199         sk->sk_destruct = netlink_sock_destruct;
1200         sk->sk_protocol = protocol;
1201         return 0;
1202 }
1203
1204 static int netlink_create(struct net *net, struct socket *sock, int protocol,
1205                           int kern)
1206 {
1207         struct module *module = NULL;
1208         struct mutex *cb_mutex;
1209         struct netlink_sock *nlk;
1210         int (*bind)(struct net *net, int group);
1211         void (*unbind)(struct net *net, int group);
1212         int err = 0;
1213
1214         sock->state = SS_UNCONNECTED;
1215
1216         if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
1217                 return -ESOCKTNOSUPPORT;
1218
1219         if (protocol < 0 || protocol >= MAX_LINKS)
1220                 return -EPROTONOSUPPORT;
1221
1222         netlink_lock_table();
1223 #ifdef CONFIG_MODULES
1224         if (!nl_table[protocol].registered) {
1225                 netlink_unlock_table();
1226                 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
1227                 netlink_lock_table();
1228         }
1229 #endif
1230         if (nl_table[protocol].registered &&
1231             try_module_get(nl_table[protocol].module))
1232                 module = nl_table[protocol].module;
1233         else
1234                 err = -EPROTONOSUPPORT;
1235         cb_mutex = nl_table[protocol].cb_mutex;
1236         bind = nl_table[protocol].bind;
1237         unbind = nl_table[protocol].unbind;
1238         netlink_unlock_table();
1239
1240         if (err < 0)
1241                 goto out;
1242
1243         err = __netlink_create(net, sock, cb_mutex, protocol, kern);
1244         if (err < 0)
1245                 goto out_module;
1246
1247         local_bh_disable();
1248         sock_prot_inuse_add(net, &netlink_proto, 1);
1249         local_bh_enable();
1250
1251         nlk = nlk_sk(sock->sk);
1252         nlk->module = module;
1253         nlk->netlink_bind = bind;
1254         nlk->netlink_unbind = unbind;
1255 out:
1256         return err;
1257
1258 out_module:
1259         module_put(module);
1260         goto out;
1261 }
1262
1263 static void deferred_put_nlk_sk(struct rcu_head *head)
1264 {
1265         struct netlink_sock *nlk = container_of(head, struct netlink_sock, rcu);
1266
1267         sock_put(&nlk->sk);
1268 }
1269
1270 static int netlink_release(struct socket *sock)
1271 {
1272         struct sock *sk = sock->sk;
1273         struct netlink_sock *nlk;
1274
1275         if (!sk)
1276                 return 0;
1277
1278         netlink_remove(sk);
1279         sock_orphan(sk);
1280         nlk = nlk_sk(sk);
1281
1282         /*
1283          * OK. Socket is unlinked, any packets that arrive now
1284          * will be purged.
1285          */
1286
1287         /* must not acquire netlink_table_lock in any way again before unbind
1288          * and notifying genetlink is done as otherwise it might deadlock
1289          */
1290         if (nlk->netlink_unbind) {
1291                 int i;
1292
1293                 for (i = 0; i < nlk->ngroups; i++)
1294                         if (test_bit(i, nlk->groups))
1295                                 nlk->netlink_unbind(sock_net(sk), i + 1);
1296         }
1297         if (sk->sk_protocol == NETLINK_GENERIC &&
1298             atomic_dec_return(&genl_sk_destructing_cnt) == 0)
1299                 wake_up(&genl_sk_destructing_waitq);
1300
1301         sock->sk = NULL;
1302         wake_up_interruptible_all(&nlk->wait);
1303
1304         skb_queue_purge(&sk->sk_write_queue);
1305
1306         if (nlk->portid) {
1307                 struct netlink_notify n = {
1308                                                 .net = sock_net(sk),
1309                                                 .protocol = sk->sk_protocol,
1310                                                 .portid = nlk->portid,
1311                                           };
1312                 atomic_notifier_call_chain(&netlink_chain,
1313                                 NETLINK_URELEASE, &n);
1314         }
1315
1316         module_put(nlk->module);
1317
1318         if (netlink_is_kernel(sk)) {
1319                 netlink_table_grab();
1320                 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
1321                 if (--nl_table[sk->sk_protocol].registered == 0) {
1322                         struct listeners *old;
1323
1324                         old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
1325                         RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
1326                         kfree_rcu(old, rcu);
1327                         nl_table[sk->sk_protocol].module = NULL;
1328                         nl_table[sk->sk_protocol].bind = NULL;
1329                         nl_table[sk->sk_protocol].unbind = NULL;
1330                         nl_table[sk->sk_protocol].flags = 0;
1331                         nl_table[sk->sk_protocol].registered = 0;
1332                 }
1333                 netlink_table_ungrab();
1334         }
1335
1336         kfree(nlk->groups);
1337         nlk->groups = NULL;
1338
1339         local_bh_disable();
1340         sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
1341         local_bh_enable();
1342         call_rcu(&nlk->rcu, deferred_put_nlk_sk);
1343         return 0;
1344 }
1345
1346 static int netlink_autobind(struct socket *sock)
1347 {
1348         struct sock *sk = sock->sk;
1349         struct net *net = sock_net(sk);
1350         struct netlink_table *table = &nl_table[sk->sk_protocol];
1351         s32 portid = task_tgid_vnr(current);
1352         int err;
1353         s32 rover = -4096;
1354         bool ok;
1355
1356 retry:
1357         cond_resched();
1358         rcu_read_lock();
1359         ok = !__netlink_lookup(table, portid, net);
1360         rcu_read_unlock();
1361         if (!ok) {
1362                 /* Bind collision, search negative portid values. */
1363                 if (rover == -4096)
1364                         /* rover will be in range [S32_MIN, -4097] */
1365                         rover = S32_MIN + prandom_u32_max(-4096 - S32_MIN);
1366                 else if (rover >= -4096)
1367                         rover = -4097;
1368                 portid = rover--;
1369                 goto retry;
1370         }
1371
1372         err = netlink_insert(sk, portid);
1373         if (err == -EADDRINUSE)
1374                 goto retry;
1375
1376         /* If 2 threads race to autobind, that is fine.  */
1377         if (err == -EBUSY)
1378                 err = 0;
1379
1380         return err;
1381 }
1382
1383 /**
1384  * __netlink_ns_capable - General netlink message capability test
1385  * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace.
1386  * @user_ns: The user namespace of the capability to use
1387  * @cap: The capability to use
1388  *
1389  * Test to see if the opener of the socket we received the message
1390  * from had when the netlink socket was created and the sender of the
1391  * message has has the capability @cap in the user namespace @user_ns.
1392  */
1393 bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
1394                         struct user_namespace *user_ns, int cap)
1395 {
1396         return ((nsp->flags & NETLINK_SKB_DST) ||
1397                 file_ns_capable(nsp->sk->sk_socket->file, user_ns, cap)) &&
1398                 ns_capable(user_ns, cap);
1399 }
1400 EXPORT_SYMBOL(__netlink_ns_capable);
1401
1402 /**
1403  * netlink_ns_capable - General netlink message capability test
1404  * @skb: socket buffer holding a netlink command from userspace
1405  * @user_ns: The user namespace of the capability to use
1406  * @cap: The capability to use
1407  *
1408  * Test to see if the opener of the socket we received the message
1409  * from had when the netlink socket was created and the sender of the
1410  * message has has the capability @cap in the user namespace @user_ns.
1411  */
1412 bool netlink_ns_capable(const struct sk_buff *skb,
1413                         struct user_namespace *user_ns, int cap)
1414 {
1415         return __netlink_ns_capable(&NETLINK_CB(skb), user_ns, cap);
1416 }
1417 EXPORT_SYMBOL(netlink_ns_capable);
1418
1419 /**
1420  * netlink_capable - Netlink global message capability test
1421  * @skb: socket buffer holding a netlink command from userspace
1422  * @cap: The capability to use
1423  *
1424  * Test to see if the opener of the socket we received the message
1425  * from had when the netlink socket was created and the sender of the
1426  * message has has the capability @cap in all user namespaces.
1427  */
1428 bool netlink_capable(const struct sk_buff *skb, int cap)
1429 {
1430         return netlink_ns_capable(skb, &init_user_ns, cap);
1431 }
1432 EXPORT_SYMBOL(netlink_capable);
1433
1434 /**
1435  * netlink_net_capable - Netlink network namespace message capability test
1436  * @skb: socket buffer holding a netlink command from userspace
1437  * @cap: The capability to use
1438  *
1439  * Test to see if the opener of the socket we received the message
1440  * from had when the netlink socket was created and the sender of the
1441  * message has has the capability @cap over the network namespace of
1442  * the socket we received the message from.
1443  */
1444 bool netlink_net_capable(const struct sk_buff *skb, int cap)
1445 {
1446         return netlink_ns_capable(skb, sock_net(skb->sk)->user_ns, cap);
1447 }
1448 EXPORT_SYMBOL(netlink_net_capable);
1449
1450 static inline int netlink_allowed(const struct socket *sock, unsigned int flag)
1451 {
1452         return (nl_table[sock->sk->sk_protocol].flags & flag) ||
1453                 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
1454 }
1455
1456 static void
1457 netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
1458 {
1459         struct netlink_sock *nlk = nlk_sk(sk);
1460
1461         if (nlk->subscriptions && !subscriptions)
1462                 __sk_del_bind_node(sk);
1463         else if (!nlk->subscriptions && subscriptions)
1464                 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
1465         nlk->subscriptions = subscriptions;
1466 }
1467
1468 static int netlink_realloc_groups(struct sock *sk)
1469 {
1470         struct netlink_sock *nlk = nlk_sk(sk);
1471         unsigned int groups;
1472         unsigned long *new_groups;
1473         int err = 0;
1474
1475         netlink_table_grab();
1476
1477         groups = nl_table[sk->sk_protocol].groups;
1478         if (!nl_table[sk->sk_protocol].registered) {
1479                 err = -ENOENT;
1480                 goto out_unlock;
1481         }
1482
1483         if (nlk->ngroups >= groups)
1484                 goto out_unlock;
1485
1486         new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
1487         if (new_groups == NULL) {
1488                 err = -ENOMEM;
1489                 goto out_unlock;
1490         }
1491         memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
1492                NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
1493
1494         nlk->groups = new_groups;
1495         nlk->ngroups = groups;
1496  out_unlock:
1497         netlink_table_ungrab();
1498         return err;
1499 }
1500
1501 static void netlink_undo_bind(int group, long unsigned int groups,
1502                               struct sock *sk)
1503 {
1504         struct netlink_sock *nlk = nlk_sk(sk);
1505         int undo;
1506
1507         if (!nlk->netlink_unbind)
1508                 return;
1509
1510         for (undo = 0; undo < group; undo++)
1511                 if (test_bit(undo, &groups))
1512                         nlk->netlink_unbind(sock_net(sk), undo + 1);
1513 }
1514
1515 static int netlink_bind(struct socket *sock, struct sockaddr *addr,
1516                         int addr_len)
1517 {
1518         struct sock *sk = sock->sk;
1519         struct net *net = sock_net(sk);
1520         struct netlink_sock *nlk = nlk_sk(sk);
1521         struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1522         int err;
1523         long unsigned int groups = nladdr->nl_groups;
1524
1525         if (addr_len < sizeof(struct sockaddr_nl))
1526                 return -EINVAL;
1527
1528         if (nladdr->nl_family != AF_NETLINK)
1529                 return -EINVAL;
1530
1531         /* Only superuser is allowed to listen multicasts */
1532         if (groups) {
1533                 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
1534                         return -EPERM;
1535                 err = netlink_realloc_groups(sk);
1536                 if (err)
1537                         return err;
1538         }
1539
1540         if (nlk->portid)
1541                 if (nladdr->nl_pid != nlk->portid)
1542                         return -EINVAL;
1543
1544         if (nlk->netlink_bind && groups) {
1545                 int group;
1546
1547                 for (group = 0; group < nlk->ngroups; group++) {
1548                         if (!test_bit(group, &groups))
1549                                 continue;
1550                         err = nlk->netlink_bind(net, group + 1);
1551                         if (!err)
1552                                 continue;
1553                         netlink_undo_bind(group, groups, sk);
1554                         return err;
1555                 }
1556         }
1557
1558         if (!nlk->portid) {
1559                 err = nladdr->nl_pid ?
1560                         netlink_insert(sk, nladdr->nl_pid) :
1561                         netlink_autobind(sock);
1562                 if (err) {
1563                         netlink_undo_bind(nlk->ngroups, groups, sk);
1564                         return err;
1565                 }
1566         }
1567
1568         if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
1569                 return 0;
1570
1571         netlink_table_grab();
1572         netlink_update_subscriptions(sk, nlk->subscriptions +
1573                                          hweight32(groups) -
1574                                          hweight32(nlk->groups[0]));
1575         nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups;
1576         netlink_update_listeners(sk);
1577         netlink_table_ungrab();
1578
1579         return 0;
1580 }
1581
1582 static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1583                            int alen, int flags)
1584 {
1585         int err = 0;
1586         struct sock *sk = sock->sk;
1587         struct netlink_sock *nlk = nlk_sk(sk);
1588         struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1589
1590         if (alen < sizeof(addr->sa_family))
1591                 return -EINVAL;
1592
1593         if (addr->sa_family == AF_UNSPEC) {
1594                 sk->sk_state    = NETLINK_UNCONNECTED;
1595                 nlk->dst_portid = 0;
1596                 nlk->dst_group  = 0;
1597                 return 0;
1598         }
1599         if (addr->sa_family != AF_NETLINK)
1600                 return -EINVAL;
1601
1602         if ((nladdr->nl_groups || nladdr->nl_pid) &&
1603             !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
1604                 return -EPERM;
1605
1606         if (!nlk->portid)
1607                 err = netlink_autobind(sock);
1608
1609         if (err == 0) {
1610                 sk->sk_state    = NETLINK_CONNECTED;
1611                 nlk->dst_portid = nladdr->nl_pid;
1612                 nlk->dst_group  = ffs(nladdr->nl_groups);
1613         }
1614
1615         return err;
1616 }
1617
1618 static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1619                            int *addr_len, int peer)
1620 {
1621         struct sock *sk = sock->sk;
1622         struct netlink_sock *nlk = nlk_sk(sk);
1623         DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
1624
1625         nladdr->nl_family = AF_NETLINK;
1626         nladdr->nl_pad = 0;
1627         *addr_len = sizeof(*nladdr);
1628
1629         if (peer) {
1630                 nladdr->nl_pid = nlk->dst_portid;
1631                 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
1632         } else {
1633                 nladdr->nl_pid = nlk->portid;
1634                 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
1635         }
1636         return 0;
1637 }
1638
1639 static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
1640 {
1641         struct sock *sock;
1642         struct netlink_sock *nlk;
1643
1644         sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
1645         if (!sock)
1646                 return ERR_PTR(-ECONNREFUSED);
1647
1648         /* Don't bother queuing skb if kernel socket has no input function */
1649         nlk = nlk_sk(sock);
1650         if (sock->sk_state == NETLINK_CONNECTED &&
1651             nlk->dst_portid != nlk_sk(ssk)->portid) {
1652                 sock_put(sock);
1653                 return ERR_PTR(-ECONNREFUSED);
1654         }
1655         return sock;
1656 }
1657
1658 struct sock *netlink_getsockbyfilp(struct file *filp)
1659 {
1660         struct inode *inode = file_inode(filp);
1661         struct sock *sock;
1662
1663         if (!S_ISSOCK(inode->i_mode))
1664                 return ERR_PTR(-ENOTSOCK);
1665
1666         sock = SOCKET_I(inode)->sk;
1667         if (sock->sk_family != AF_NETLINK)
1668                 return ERR_PTR(-EINVAL);
1669
1670         sock_hold(sock);
1671         return sock;
1672 }
1673
1674 static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1675                                                int broadcast)
1676 {
1677         struct sk_buff *skb;
1678         void *data;
1679
1680         if (size <= NLMSG_GOODSIZE || broadcast)
1681                 return alloc_skb(size, GFP_KERNEL);
1682
1683         size = SKB_DATA_ALIGN(size) +
1684                SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1685
1686         data = vmalloc(size);
1687         if (data == NULL)
1688                 return NULL;
1689
1690         skb = __build_skb(data, size);
1691         if (skb == NULL)
1692                 vfree(data);
1693         else
1694                 skb->destructor = netlink_skb_destructor;
1695
1696         return skb;
1697 }
1698
1699 /*
1700  * Attach a skb to a netlink socket.
1701  * The caller must hold a reference to the destination socket. On error, the
1702  * reference is dropped. The skb is not send to the destination, just all
1703  * all error checks are performed and memory in the queue is reserved.
1704  * Return values:
1705  * < 0: error. skb freed, reference to sock dropped.
1706  * 0: continue
1707  * 1: repeat lookup - reference dropped while waiting for socket memory.
1708  */
1709 int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
1710                       long *timeo, struct sock *ssk)
1711 {
1712         struct netlink_sock *nlk;
1713
1714         nlk = nlk_sk(sk);
1715
1716         if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1717              test_bit(NETLINK_S_CONGESTED, &nlk->state)) &&
1718             !netlink_skb_is_mmaped(skb)) {
1719                 DECLARE_WAITQUEUE(wait, current);
1720                 if (!*timeo) {
1721                         if (!ssk || netlink_is_kernel(ssk))
1722                                 netlink_overrun(sk);
1723                         sock_put(sk);
1724                         kfree_skb(skb);
1725                         return -EAGAIN;
1726                 }
1727
1728                 __set_current_state(TASK_INTERRUPTIBLE);
1729                 add_wait_queue(&nlk->wait, &wait);
1730
1731                 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
1732                      test_bit(NETLINK_S_CONGESTED, &nlk->state)) &&
1733                     !sock_flag(sk, SOCK_DEAD))
1734                         *timeo = schedule_timeout(*timeo);
1735
1736                 __set_current_state(TASK_RUNNING);
1737                 remove_wait_queue(&nlk->wait, &wait);
1738                 sock_put(sk);
1739
1740                 if (signal_pending(current)) {
1741                         kfree_skb(skb);
1742                         return sock_intr_errno(*timeo);
1743                 }
1744                 return 1;
1745         }
1746         netlink_skb_set_owner_r(skb, sk);
1747         return 0;
1748 }
1749
1750 static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1751 {
1752         int len = skb->len;
1753
1754         netlink_deliver_tap(skb);
1755
1756 #ifdef CONFIG_NETLINK_MMAP
1757         if (netlink_skb_is_mmaped(skb))
1758                 netlink_queue_mmaped_skb(sk, skb);
1759         else if (netlink_rx_is_mmaped(sk))
1760                 netlink_ring_set_copied(sk, skb);
1761         else
1762 #endif /* CONFIG_NETLINK_MMAP */
1763                 skb_queue_tail(&sk->sk_receive_queue, skb);
1764         sk->sk_data_ready(sk);
1765         return len;
1766 }
1767
1768 int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1769 {
1770         int len = __netlink_sendskb(sk, skb);
1771
1772         sock_put(sk);
1773         return len;
1774 }
1775
1776 void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1777 {
1778         kfree_skb(skb);
1779         sock_put(sk);
1780 }
1781
1782 static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
1783 {
1784         int delta;
1785
1786         WARN_ON(skb->sk != NULL);
1787         if (netlink_skb_is_mmaped(skb))
1788                 return skb;
1789
1790         delta = skb->end - skb->tail;
1791         if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
1792                 return skb;
1793
1794         if (skb_shared(skb)) {
1795                 struct sk_buff *nskb = skb_clone(skb, allocation);
1796                 if (!nskb)
1797                         return skb;
1798                 consume_skb(skb);
1799                 skb = nskb;
1800         }
1801
1802         if (!pskb_expand_head(skb, 0, -delta, allocation))
1803                 skb->truesize -= delta;
1804
1805         return skb;
1806 }
1807
1808 static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1809                                   struct sock *ssk)
1810 {
1811         int ret;
1812         struct netlink_sock *nlk = nlk_sk(sk);
1813
1814         ret = -ECONNREFUSED;
1815         if (nlk->netlink_rcv != NULL) {
1816                 ret = skb->len;
1817                 netlink_skb_set_owner_r(skb, sk);
1818                 NETLINK_CB(skb).sk = ssk;
1819                 netlink_deliver_tap_kernel(sk, ssk, skb);
1820                 nlk->netlink_rcv(skb);
1821                 consume_skb(skb);
1822         } else {
1823                 kfree_skb(skb);
1824         }
1825         sock_put(sk);
1826         return ret;
1827 }
1828
1829 int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
1830                     u32 portid, int nonblock)
1831 {
1832         struct sock *sk;
1833         int err;
1834         long timeo;
1835
1836         skb = netlink_trim(skb, gfp_any());
1837
1838         timeo = sock_sndtimeo(ssk, nonblock);
1839 retry:
1840         sk = netlink_getsockbyportid(ssk, portid);
1841         if (IS_ERR(sk)) {
1842                 kfree_skb(skb);
1843                 return PTR_ERR(sk);
1844         }
1845         if (netlink_is_kernel(sk))
1846                 return netlink_unicast_kernel(sk, skb, ssk);
1847
1848         if (sk_filter(sk, skb)) {
1849                 err = skb->len;
1850                 kfree_skb(skb);
1851                 sock_put(sk);
1852                 return err;
1853         }
1854
1855         err = netlink_attachskb(sk, skb, &timeo, ssk);
1856         if (err == 1)
1857                 goto retry;
1858         if (err)
1859                 return err;
1860
1861         return netlink_sendskb(sk, skb);
1862 }
1863 EXPORT_SYMBOL(netlink_unicast);
1864
1865 struct sk_buff *__netlink_alloc_skb(struct sock *ssk, unsigned int size,
1866                                     unsigned int ldiff, u32 dst_portid,
1867                                     gfp_t gfp_mask)
1868 {
1869 #ifdef CONFIG_NETLINK_MMAP
1870         unsigned int maxlen, linear_size;
1871         struct sock *sk = NULL;
1872         struct sk_buff *skb;
1873         struct netlink_ring *ring;
1874         struct nl_mmap_hdr *hdr;
1875
1876         sk = netlink_getsockbyportid(ssk, dst_portid);
1877         if (IS_ERR(sk))
1878                 goto out;
1879
1880         ring = &nlk_sk(sk)->rx_ring;
1881         /* fast-path without atomic ops for common case: non-mmaped receiver */
1882         if (ring->pg_vec == NULL)
1883                 goto out_put;
1884
1885         /* We need to account the full linear size needed as a ring
1886          * slot cannot have non-linear parts.
1887          */
1888         linear_size = size + ldiff;
1889         if (ring->frame_size - NL_MMAP_HDRLEN < linear_size)
1890                 goto out_put;
1891
1892         skb = alloc_skb_head(gfp_mask);
1893         if (skb == NULL)
1894                 goto err1;
1895
1896         spin_lock_bh(&sk->sk_receive_queue.lock);
1897         /* check again under lock */
1898         if (ring->pg_vec == NULL)
1899                 goto out_free;
1900
1901         /* check again under lock */
1902         maxlen = ring->frame_size - NL_MMAP_HDRLEN;
1903         if (maxlen < linear_size)
1904                 goto out_free;
1905
1906         netlink_forward_ring(ring);
1907         hdr = netlink_current_frame(ring, NL_MMAP_STATUS_UNUSED);
1908         if (hdr == NULL)
1909                 goto err2;
1910
1911         netlink_ring_setup_skb(skb, sk, ring, hdr);
1912         netlink_set_status(hdr, NL_MMAP_STATUS_RESERVED);
1913         atomic_inc(&ring->pending);
1914         netlink_increment_head(ring);
1915
1916         spin_unlock_bh(&sk->sk_receive_queue.lock);
1917         return skb;
1918
1919 err2:
1920         kfree_skb(skb);
1921         spin_unlock_bh(&sk->sk_receive_queue.lock);
1922         netlink_overrun(sk);
1923 err1:
1924         sock_put(sk);
1925         return NULL;
1926
1927 out_free:
1928         kfree_skb(skb);
1929         spin_unlock_bh(&sk->sk_receive_queue.lock);
1930 out_put:
1931         sock_put(sk);
1932 out:
1933 #endif
1934         return alloc_skb(size, gfp_mask);
1935 }
1936 EXPORT_SYMBOL_GPL(__netlink_alloc_skb);
1937
1938 int netlink_has_listeners(struct sock *sk, unsigned int group)
1939 {
1940         int res = 0;
1941         struct listeners *listeners;
1942
1943         BUG_ON(!netlink_is_kernel(sk));
1944
1945         rcu_read_lock();
1946         listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1947
1948         if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
1949                 res = test_bit(group - 1, listeners->masks);
1950
1951         rcu_read_unlock();
1952
1953         return res;
1954 }
1955 EXPORT_SYMBOL_GPL(netlink_has_listeners);
1956
1957 static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
1958 {
1959         struct netlink_sock *nlk = nlk_sk(sk);
1960
1961         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
1962             !test_bit(NETLINK_S_CONGESTED, &nlk->state)) {
1963                 netlink_skb_set_owner_r(skb, sk);
1964                 __netlink_sendskb(sk, skb);
1965                 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
1966         }
1967         return -1;
1968 }
1969
1970 struct netlink_broadcast_data {
1971         struct sock *exclude_sk;
1972         struct net *net;
1973         u32 portid;
1974         u32 group;
1975         int failure;
1976         int delivery_failure;
1977         int congested;
1978         int delivered;
1979         gfp_t allocation;
1980         struct sk_buff *skb, *skb2;
1981         int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1982         void *tx_data;
1983 };
1984
1985 static void do_one_broadcast(struct sock *sk,
1986                                     struct netlink_broadcast_data *p)
1987 {
1988         struct netlink_sock *nlk = nlk_sk(sk);
1989         int val;
1990
1991         if (p->exclude_sk == sk)
1992                 return;
1993
1994         if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
1995             !test_bit(p->group - 1, nlk->groups))
1996                 return;
1997
1998         if (!net_eq(sock_net(sk), p->net)) {
1999                 if (!(nlk->flags & NETLINK_F_LISTEN_ALL_NSID))
2000                         return;
2001
2002                 if (!peernet_has_id(sock_net(sk), p->net))
2003                         return;
2004
2005                 if (!file_ns_capable(sk->sk_socket->file, p->net->user_ns,
2006                                      CAP_NET_BROADCAST))
2007                         return;
2008         }
2009
2010         if (p->failure) {
2011                 netlink_overrun(sk);
2012                 return;
2013         }
2014
2015         sock_hold(sk);
2016         if (p->skb2 == NULL) {
2017                 if (skb_shared(p->skb)) {
2018                         p->skb2 = skb_clone(p->skb, p->allocation);
2019                 } else {
2020                         p->skb2 = skb_get(p->skb);
2021                         /*
2022                          * skb ownership may have been set when
2023                          * delivered to a previous socket.
2024                          */
2025                         skb_orphan(p->skb2);
2026                 }
2027         }
2028         if (p->skb2 == NULL) {
2029                 netlink_overrun(sk);
2030                 /* Clone failed. Notify ALL listeners. */
2031                 p->failure = 1;
2032                 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
2033                         p->delivery_failure = 1;
2034                 goto out;
2035         }
2036         if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
2037                 kfree_skb(p->skb2);
2038                 p->skb2 = NULL;
2039                 goto out;
2040         }
2041         if (sk_filter(sk, p->skb2)) {
2042                 kfree_skb(p->skb2);
2043                 p->skb2 = NULL;
2044                 goto out;
2045         }
2046         NETLINK_CB(p->skb2).nsid = peernet2id(sock_net(sk), p->net);
2047         NETLINK_CB(p->skb2).nsid_is_set = true;
2048         val = netlink_broadcast_deliver(sk, p->skb2);
2049         if (val < 0) {
2050                 netlink_overrun(sk);
2051                 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
2052                         p->delivery_failure = 1;
2053         } else {
2054                 p->congested |= val;
2055                 p->delivered = 1;
2056                 p->skb2 = NULL;
2057         }
2058 out:
2059         sock_put(sk);
2060 }
2061
2062 int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
2063         u32 group, gfp_t allocation,
2064         int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
2065         void *filter_data)
2066 {
2067         struct net *net = sock_net(ssk);
2068         struct netlink_broadcast_data info;
2069         struct sock *sk;
2070
2071         skb = netlink_trim(skb, allocation);
2072
2073         info.exclude_sk = ssk;
2074         info.net = net;
2075         info.portid = portid;
2076         info.group = group;
2077         info.failure = 0;
2078         info.delivery_failure = 0;
2079         info.congested = 0;
2080         info.delivered = 0;
2081         info.allocation = allocation;
2082         info.skb = skb;
2083         info.skb2 = NULL;
2084         info.tx_filter = filter;
2085         info.tx_data = filter_data;
2086
2087         /* While we sleep in clone, do not allow to change socket list */
2088
2089         netlink_lock_table();
2090
2091         sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
2092                 do_one_broadcast(sk, &info);
2093
2094         consume_skb(skb);
2095
2096         netlink_unlock_table();
2097
2098         if (info.delivery_failure) {
2099                 kfree_skb(info.skb2);
2100                 return -ENOBUFS;
2101         }
2102         consume_skb(info.skb2);
2103
2104         if (info.delivered) {
2105                 if (info.congested && (allocation & __GFP_WAIT))
2106                         yield();
2107                 return 0;
2108         }
2109         return -ESRCH;
2110 }
2111 EXPORT_SYMBOL(netlink_broadcast_filtered);
2112
2113 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
2114                       u32 group, gfp_t allocation)
2115 {
2116         return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
2117                 NULL, NULL);
2118 }
2119 EXPORT_SYMBOL(netlink_broadcast);
2120
2121 struct netlink_set_err_data {
2122         struct sock *exclude_sk;
2123         u32 portid;
2124         u32 group;
2125         int code;
2126 };
2127
2128 static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
2129 {
2130         struct netlink_sock *nlk = nlk_sk(sk);
2131         int ret = 0;
2132
2133         if (sk == p->exclude_sk)
2134                 goto out;
2135
2136         if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
2137                 goto out;
2138
2139         if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
2140             !test_bit(p->group - 1, nlk->groups))
2141                 goto out;
2142
2143         if (p->code == ENOBUFS && nlk->flags & NETLINK_F_RECV_NO_ENOBUFS) {
2144                 ret = 1;
2145                 goto out;
2146         }
2147
2148         sk->sk_err = p->code;
2149         sk->sk_error_report(sk);
2150 out:
2151         return ret;
2152 }
2153
2154 /**
2155  * netlink_set_err - report error to broadcast listeners
2156  * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
2157  * @portid: the PORTID of a process that we want to skip (if any)
2158  * @group: the broadcast group that will notice the error
2159  * @code: error code, must be negative (as usual in kernelspace)
2160  *
2161  * This function returns the number of broadcast listeners that have set the
2162  * NETLINK_NO_ENOBUFS socket option.
2163  */
2164 int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
2165 {
2166         struct netlink_set_err_data info;
2167         struct sock *sk;
2168         int ret = 0;
2169
2170         info.exclude_sk = ssk;
2171         info.portid = portid;
2172         info.group = group;
2173         /* sk->sk_err wants a positive error value */
2174         info.code = -code;
2175
2176         read_lock(&nl_table_lock);
2177
2178         sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
2179                 ret += do_one_set_err(sk, &info);
2180
2181         read_unlock(&nl_table_lock);
2182         return ret;
2183 }
2184 EXPORT_SYMBOL(netlink_set_err);
2185
2186 /* must be called with netlink table grabbed */
2187 static void netlink_update_socket_mc(struct netlink_sock *nlk,
2188                                      unsigned int group,
2189                                      int is_new)
2190 {
2191         int old, new = !!is_new, subscriptions;
2192
2193         old = test_bit(group - 1, nlk->groups);
2194         subscriptions = nlk->subscriptions - old + new;
2195         if (new)
2196                 __set_bit(group - 1, nlk->groups);
2197         else
2198                 __clear_bit(group - 1, nlk->groups);
2199         netlink_update_subscriptions(&nlk->sk, subscriptions);
2200         netlink_update_listeners(&nlk->sk);
2201 }
2202
2203 static int netlink_setsockopt(struct socket *sock, int level, int optname,
2204                               char __user *optval, unsigned int optlen)
2205 {
2206         struct sock *sk = sock->sk;
2207         struct netlink_sock *nlk = nlk_sk(sk);
2208         unsigned int val = 0;
2209         int err;
2210
2211         if (level != SOL_NETLINK)
2212                 return -ENOPROTOOPT;
2213
2214         if (optname != NETLINK_RX_RING && optname != NETLINK_TX_RING &&
2215             optlen >= sizeof(int) &&
2216             get_user(val, (unsigned int __user *)optval))
2217                 return -EFAULT;
2218
2219         switch (optname) {
2220         case NETLINK_PKTINFO:
2221                 if (val)
2222                         nlk->flags |= NETLINK_F_RECV_PKTINFO;
2223                 else
2224                         nlk->flags &= ~NETLINK_F_RECV_PKTINFO;
2225                 err = 0;
2226                 break;
2227         case NETLINK_ADD_MEMBERSHIP:
2228         case NETLINK_DROP_MEMBERSHIP: {
2229                 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
2230                         return -EPERM;
2231                 err = netlink_realloc_groups(sk);
2232                 if (err)
2233                         return err;
2234                 if (!val || val - 1 >= nlk->ngroups)
2235                         return -EINVAL;
2236                 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
2237                         err = nlk->netlink_bind(sock_net(sk), val);
2238                         if (err)
2239                                 return err;
2240                 }
2241                 netlink_table_grab();
2242                 netlink_update_socket_mc(nlk, val,
2243                                          optname == NETLINK_ADD_MEMBERSHIP);
2244                 netlink_table_ungrab();
2245                 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
2246                         nlk->netlink_unbind(sock_net(sk), val);
2247
2248                 err = 0;
2249                 break;
2250         }
2251         case NETLINK_BROADCAST_ERROR:
2252                 if (val)
2253                         nlk->flags |= NETLINK_F_BROADCAST_SEND_ERROR;
2254                 else
2255                         nlk->flags &= ~NETLINK_F_BROADCAST_SEND_ERROR;
2256                 err = 0;
2257                 break;
2258         case NETLINK_NO_ENOBUFS:
2259                 if (val) {
2260                         nlk->flags |= NETLINK_F_RECV_NO_ENOBUFS;
2261                         clear_bit(NETLINK_S_CONGESTED, &nlk->state);
2262                         wake_up_interruptible(&nlk->wait);
2263                 } else {
2264                         nlk->flags &= ~NETLINK_F_RECV_NO_ENOBUFS;
2265                 }
2266                 err = 0;
2267                 break;
2268 #ifdef CONFIG_NETLINK_MMAP
2269         case NETLINK_RX_RING:
2270         case NETLINK_TX_RING: {
2271                 struct nl_mmap_req req;
2272
2273                 /* Rings might consume more memory than queue limits, require
2274                  * CAP_NET_ADMIN.
2275                  */
2276                 if (!capable(CAP_NET_ADMIN))
2277                         return -EPERM;
2278                 if (optlen < sizeof(req))
2279                         return -EINVAL;
2280                 if (copy_from_user(&req, optval, sizeof(req)))
2281                         return -EFAULT;
2282                 err = netlink_set_ring(sk, &req,
2283                                        optname == NETLINK_TX_RING);
2284                 break;
2285         }
2286 #endif /* CONFIG_NETLINK_MMAP */
2287         case NETLINK_LISTEN_ALL_NSID:
2288                 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_BROADCAST))
2289                         return -EPERM;
2290
2291                 if (val)
2292                         nlk->flags |= NETLINK_F_LISTEN_ALL_NSID;
2293                 else
2294                         nlk->flags &= ~NETLINK_F_LISTEN_ALL_NSID;
2295                 err = 0;
2296                 break;
2297         case NETLINK_CAP_ACK:
2298                 if (val)
2299                         nlk->flags |= NETLINK_F_CAP_ACK;
2300                 else
2301                         nlk->flags &= ~NETLINK_F_CAP_ACK;
2302                 err = 0;
2303                 break;
2304         default:
2305                 err = -ENOPROTOOPT;
2306         }
2307         return err;
2308 }
2309
2310 static int netlink_getsockopt(struct socket *sock, int level, int optname,
2311                               char __user *optval, int __user *optlen)
2312 {
2313         struct sock *sk = sock->sk;
2314         struct netlink_sock *nlk = nlk_sk(sk);
2315         int len, val, err;
2316
2317         if (level != SOL_NETLINK)
2318                 return -ENOPROTOOPT;
2319
2320         if (get_user(len, optlen))
2321                 return -EFAULT;
2322         if (len < 0)
2323                 return -EINVAL;
2324
2325         switch (optname) {
2326         case NETLINK_PKTINFO:
2327                 if (len < sizeof(int))
2328                         return -EINVAL;
2329                 len = sizeof(int);
2330                 val = nlk->flags & NETLINK_F_RECV_PKTINFO ? 1 : 0;
2331                 if (put_user(len, optlen) ||
2332                     put_user(val, optval))
2333                         return -EFAULT;
2334                 err = 0;
2335                 break;
2336         case NETLINK_BROADCAST_ERROR:
2337                 if (len < sizeof(int))
2338                         return -EINVAL;
2339                 len = sizeof(int);
2340                 val = nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR ? 1 : 0;
2341                 if (put_user(len, optlen) ||
2342                     put_user(val, optval))
2343                         return -EFAULT;
2344                 err = 0;
2345                 break;
2346         case NETLINK_NO_ENOBUFS:
2347                 if (len < sizeof(int))
2348                         return -EINVAL;
2349                 len = sizeof(int);
2350                 val = nlk->flags & NETLINK_F_RECV_NO_ENOBUFS ? 1 : 0;
2351                 if (put_user(len, optlen) ||
2352                     put_user(val, optval))
2353                         return -EFAULT;
2354                 err = 0;
2355                 break;
2356         case NETLINK_LIST_MEMBERSHIPS: {
2357                 int pos, idx, shift;
2358
2359                 err = 0;
2360                 netlink_table_grab();
2361                 for (pos = 0; pos * 8 < nlk->ngroups; pos += sizeof(u32)) {
2362                         if (len - pos < sizeof(u32))
2363                                 break;
2364
2365                         idx = pos / sizeof(unsigned long);
2366                         shift = (pos % sizeof(unsigned long)) * 8;
2367                         if (put_user((u32)(nlk->groups[idx] >> shift),
2368                                      (u32 __user *)(optval + pos))) {
2369                                 err = -EFAULT;
2370                                 break;
2371                         }
2372                 }
2373                 if (put_user(ALIGN(nlk->ngroups / 8, sizeof(u32)), optlen))
2374                         err = -EFAULT;
2375                 netlink_table_ungrab();
2376                 break;
2377         }
2378         case NETLINK_CAP_ACK:
2379                 if (len < sizeof(int))
2380                         return -EINVAL;
2381                 len = sizeof(int);
2382                 val = nlk->flags & NETLINK_F_CAP_ACK ? 1 : 0;
2383                 if (put_user(len, optlen) ||
2384                     put_user(val, optval))
2385                         return -EFAULT;
2386                 err = 0;
2387                 break;
2388         default:
2389                 err = -ENOPROTOOPT;
2390         }
2391         return err;
2392 }
2393
2394 static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
2395 {
2396         struct nl_pktinfo info;
2397
2398         info.group = NETLINK_CB(skb).dst_group;
2399         put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
2400 }
2401
2402 static void netlink_cmsg_listen_all_nsid(struct sock *sk, struct msghdr *msg,
2403                                          struct sk_buff *skb)
2404 {
2405         if (!NETLINK_CB(skb).nsid_is_set)
2406                 return;
2407
2408         put_cmsg(msg, SOL_NETLINK, NETLINK_LISTEN_ALL_NSID, sizeof(int),
2409                  &NETLINK_CB(skb).nsid);
2410 }
2411
2412 static int netlink_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
2413 {
2414         struct sock *sk = sock->sk;
2415         struct netlink_sock *nlk = nlk_sk(sk);
2416         DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
2417         u32 dst_portid;
2418         u32 dst_group;
2419         struct sk_buff *skb;
2420         int err;
2421         struct scm_cookie scm;
2422         u32 netlink_skb_flags = 0;
2423
2424         if (msg->msg_flags&MSG_OOB)
2425                 return -EOPNOTSUPP;
2426
2427         err = scm_send(sock, msg, &scm, true);
2428         if (err < 0)
2429                 return err;
2430
2431         if (msg->msg_namelen) {
2432                 err = -EINVAL;
2433                 if (addr->nl_family != AF_NETLINK)
2434                         goto out;
2435                 dst_portid = addr->nl_pid;
2436                 dst_group = ffs(addr->nl_groups);
2437                 err =  -EPERM;
2438                 if ((dst_group || dst_portid) &&
2439                     !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
2440                         goto out;
2441                 netlink_skb_flags |= NETLINK_SKB_DST;
2442         } else {
2443                 dst_portid = nlk->dst_portid;
2444                 dst_group = nlk->dst_group;
2445         }
2446
2447         if (!nlk->portid) {
2448                 err = netlink_autobind(sock);
2449                 if (err)
2450                         goto out;
2451         }
2452
2453         /* It's a really convoluted way for userland to ask for mmaped
2454          * sendmsg(), but that's what we've got...
2455          */
2456         if (netlink_tx_is_mmaped(sk) &&
2457             iter_is_iovec(&msg->msg_iter) &&
2458             msg->msg_iter.nr_segs == 1 &&
2459             msg->msg_iter.iov->iov_base == NULL) {
2460                 err = netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group,
2461                                            &scm);
2462                 goto out;
2463         }
2464
2465         err = -EMSGSIZE;
2466         if (len > sk->sk_sndbuf - 32)
2467                 goto out;
2468         err = -ENOBUFS;
2469         skb = netlink_alloc_large_skb(len, dst_group);
2470         if (skb == NULL)
2471                 goto out;
2472
2473         NETLINK_CB(skb).portid  = nlk->portid;
2474         NETLINK_CB(skb).dst_group = dst_group;
2475         NETLINK_CB(skb).creds   = scm.creds;
2476         NETLINK_CB(skb).flags   = netlink_skb_flags;
2477
2478         err = -EFAULT;
2479         if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
2480                 kfree_skb(skb);
2481                 goto out;
2482         }
2483
2484         err = security_netlink_send(sk, skb);
2485         if (err) {
2486                 kfree_skb(skb);
2487                 goto out;
2488         }
2489
2490         if (dst_group) {
2491                 atomic_inc(&skb->users);
2492                 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
2493         }
2494         err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
2495
2496 out:
2497         scm_destroy(&scm);
2498         return err;
2499 }
2500
2501 static int netlink_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
2502                            int flags)
2503 {
2504         struct scm_cookie scm;
2505         struct sock *sk = sock->sk;
2506         struct netlink_sock *nlk = nlk_sk(sk);
2507         int noblock = flags&MSG_DONTWAIT;
2508         size_t copied;
2509         struct sk_buff *skb, *data_skb;
2510         int err, ret;
2511
2512         if (flags&MSG_OOB)
2513                 return -EOPNOTSUPP;
2514
2515         copied = 0;
2516
2517         skb = skb_recv_datagram(sk, flags, noblock, &err);
2518         if (skb == NULL)
2519                 goto out;
2520
2521         data_skb = skb;
2522
2523 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2524         if (unlikely(skb_shinfo(skb)->frag_list)) {
2525                 /*
2526                  * If this skb has a frag_list, then here that means that we
2527                  * will have to use the frag_list skb's data for compat tasks
2528                  * and the regular skb's data for normal (non-compat) tasks.
2529                  *
2530                  * If we need to send the compat skb, assign it to the
2531                  * 'data_skb' variable so that it will be used below for data
2532                  * copying. We keep 'skb' for everything else, including
2533                  * freeing both later.
2534                  */
2535                 if (flags & MSG_CMSG_COMPAT)
2536                         data_skb = skb_shinfo(skb)->frag_list;
2537         }
2538 #endif
2539
2540         /* Record the max length of recvmsg() calls for future allocations */
2541         nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
2542         nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
2543                                      16384);
2544
2545         copied = data_skb->len;
2546         if (len < copied) {
2547                 msg->msg_flags |= MSG_TRUNC;
2548                 copied = len;
2549         }
2550
2551         skb_reset_transport_header(data_skb);
2552         err = skb_copy_datagram_msg(data_skb, 0, msg, copied);
2553
2554         if (msg->msg_name) {
2555                 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
2556                 addr->nl_family = AF_NETLINK;
2557                 addr->nl_pad    = 0;
2558                 addr->nl_pid    = NETLINK_CB(skb).portid;
2559                 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
2560                 msg->msg_namelen = sizeof(*addr);
2561         }
2562
2563         if (nlk->flags & NETLINK_F_RECV_PKTINFO)
2564                 netlink_cmsg_recv_pktinfo(msg, skb);
2565         if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID)
2566                 netlink_cmsg_listen_all_nsid(sk, msg, skb);
2567
2568         memset(&scm, 0, sizeof(scm));
2569         scm.creds = *NETLINK_CREDS(skb);
2570         if (flags & MSG_TRUNC)
2571                 copied = data_skb->len;
2572
2573         skb_free_datagram(sk, skb);
2574
2575         if (nlk->cb_running &&
2576             atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
2577                 ret = netlink_dump(sk);
2578                 if (ret) {
2579                         sk->sk_err = -ret;
2580                         sk->sk_error_report(sk);
2581                 }
2582         }
2583
2584         scm_recv(sock, msg, &scm, flags);
2585 out:
2586         netlink_rcv_wake(sk);
2587         return err ? : copied;
2588 }
2589
2590 static void netlink_data_ready(struct sock *sk)
2591 {
2592         BUG();
2593 }
2594
2595 /*
2596  *      We export these functions to other modules. They provide a
2597  *      complete set of kernel non-blocking support for message
2598  *      queueing.
2599  */
2600
2601 struct sock *
2602 __netlink_kernel_create(struct net *net, int unit, struct module *module,
2603                         struct netlink_kernel_cfg *cfg)
2604 {
2605         struct socket *sock;
2606         struct sock *sk;
2607         struct netlink_sock *nlk;
2608         struct listeners *listeners = NULL;
2609         struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2610         unsigned int groups;
2611
2612         BUG_ON(!nl_table);
2613
2614         if (unit < 0 || unit >= MAX_LINKS)
2615                 return NULL;
2616
2617         if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2618                 return NULL;
2619
2620         if (__netlink_create(net, sock, cb_mutex, unit, 1) < 0)
2621                 goto out_sock_release_nosk;
2622
2623         sk = sock->sk;
2624
2625         if (!cfg || cfg->groups < 32)
2626                 groups = 32;
2627         else
2628                 groups = cfg->groups;
2629
2630         listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
2631         if (!listeners)
2632                 goto out_sock_release;
2633
2634         sk->sk_data_ready = netlink_data_ready;
2635         if (cfg && cfg->input)
2636                 nlk_sk(sk)->netlink_rcv = cfg->input;
2637
2638         if (netlink_insert(sk, 0))
2639                 goto out_sock_release;
2640
2641         nlk = nlk_sk(sk);
2642         nlk->flags |= NETLINK_F_KERNEL_SOCKET;
2643
2644         netlink_table_grab();
2645         if (!nl_table[unit].registered) {
2646                 nl_table[unit].groups = groups;
2647                 rcu_assign_pointer(nl_table[unit].listeners, listeners);
2648                 nl_table[unit].cb_mutex = cb_mutex;
2649                 nl_table[unit].module = module;
2650                 if (cfg) {
2651                         nl_table[unit].bind = cfg->bind;
2652                         nl_table[unit].unbind = cfg->unbind;
2653                         nl_table[unit].flags = cfg->flags;
2654                         if (cfg->compare)
2655                                 nl_table[unit].compare = cfg->compare;
2656                 }
2657                 nl_table[unit].registered = 1;
2658         } else {
2659                 kfree(listeners);
2660                 nl_table[unit].registered++;
2661         }
2662         netlink_table_ungrab();
2663         return sk;
2664
2665 out_sock_release:
2666         kfree(listeners);
2667         netlink_kernel_release(sk);
2668         return NULL;
2669
2670 out_sock_release_nosk:
2671         sock_release(sock);
2672         return NULL;
2673 }
2674 EXPORT_SYMBOL(__netlink_kernel_create);
2675
2676 void
2677 netlink_kernel_release(struct sock *sk)
2678 {
2679         if (sk == NULL || sk->sk_socket == NULL)
2680                 return;
2681
2682         sock_release(sk->sk_socket);
2683 }
2684 EXPORT_SYMBOL(netlink_kernel_release);
2685
2686 int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
2687 {
2688         struct listeners *new, *old;
2689         struct netlink_table *tbl = &nl_table[sk->sk_protocol];
2690
2691         if (groups < 32)
2692                 groups = 32;
2693
2694         if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
2695                 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2696                 if (!new)
2697                         return -ENOMEM;
2698                 old = nl_deref_protected(tbl->listeners);
2699                 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2700                 rcu_assign_pointer(tbl->listeners, new);
2701
2702                 kfree_rcu(old, rcu);
2703         }
2704         tbl->groups = groups;
2705
2706         return 0;
2707 }
2708
2709 /**
2710  * netlink_change_ngroups - change number of multicast groups
2711  *
2712  * This changes the number of multicast groups that are available
2713  * on a certain netlink family. Note that it is not possible to
2714  * change the number of groups to below 32. Also note that it does
2715  * not implicitly call netlink_clear_multicast_users() when the
2716  * number of groups is reduced.
2717  *
2718  * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2719  * @groups: The new number of groups.
2720  */
2721 int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2722 {
2723         int err;
2724
2725         netlink_table_grab();
2726         err = __netlink_change_ngroups(sk, groups);
2727         netlink_table_ungrab();
2728
2729         return err;
2730 }
2731
2732 void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2733 {
2734         struct sock *sk;
2735         struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2736
2737         sk_for_each_bound(sk, &tbl->mc_list)
2738                 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2739 }
2740
2741 struct nlmsghdr *
2742 __nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
2743 {
2744         struct nlmsghdr *nlh;
2745         int size = nlmsg_msg_size(len);
2746
2747         nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size));
2748         nlh->nlmsg_type = type;
2749         nlh->nlmsg_len = size;
2750         nlh->nlmsg_flags = flags;
2751         nlh->nlmsg_pid = portid;
2752         nlh->nlmsg_seq = seq;
2753         if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
2754                 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
2755         return nlh;
2756 }
2757 EXPORT_SYMBOL(__nlmsg_put);
2758
2759 /*
2760  * It looks a bit ugly.
2761  * It would be better to create kernel thread.
2762  */
2763
2764 static int netlink_dump(struct sock *sk)
2765 {
2766         struct netlink_sock *nlk = nlk_sk(sk);
2767         struct netlink_callback *cb;
2768         struct sk_buff *skb = NULL;
2769         struct nlmsghdr *nlh;
2770         int len, err = -ENOBUFS;
2771         int alloc_size;
2772
2773         mutex_lock(nlk->cb_mutex);
2774         if (!nlk->cb_running) {
2775                 err = -EINVAL;
2776                 goto errout_skb;
2777         }
2778
2779         cb = &nlk->cb;
2780         alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2781
2782         if (!netlink_rx_is_mmaped(sk) &&
2783             atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2784                 goto errout_skb;
2785
2786         /* NLMSG_GOODSIZE is small to avoid high order allocations being
2787          * required, but it makes sense to _attempt_ a 16K bytes allocation
2788          * to reduce number of system calls on dump operations, if user
2789          * ever provided a big enough buffer.
2790          */
2791         if (alloc_size < nlk->max_recvmsg_len) {
2792                 skb = netlink_alloc_skb(sk,
2793                                         nlk->max_recvmsg_len,
2794                                         nlk->portid,
2795                                         GFP_KERNEL |
2796                                         __GFP_NOWARN |
2797                                         __GFP_NORETRY);
2798                 /* available room should be exact amount to avoid MSG_TRUNC */
2799                 if (skb)
2800                         skb_reserve(skb, skb_tailroom(skb) -
2801                                          nlk->max_recvmsg_len);
2802         }
2803         if (!skb)
2804                 skb = netlink_alloc_skb(sk, alloc_size, nlk->portid,
2805                                         GFP_KERNEL);
2806         if (!skb)
2807                 goto errout_skb;
2808         netlink_skb_set_owner_r(skb, sk);
2809
2810         len = cb->dump(skb, cb);
2811
2812         if (len > 0) {
2813                 mutex_unlock(nlk->cb_mutex);
2814
2815                 if (sk_filter(sk, skb))
2816                         kfree_skb(skb);
2817                 else
2818                         __netlink_sendskb(sk, skb);
2819                 return 0;
2820         }
2821
2822         nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2823         if (!nlh)
2824                 goto errout_skb;
2825
2826         nl_dump_check_consistent(cb, nlh);
2827
2828         memcpy(nlmsg_data(nlh), &len, sizeof(len));
2829
2830         if (sk_filter(sk, skb))
2831                 kfree_skb(skb);
2832         else
2833                 __netlink_sendskb(sk, skb);
2834
2835         if (cb->done)
2836                 cb->done(cb);
2837
2838         nlk->cb_running = false;
2839         mutex_unlock(nlk->cb_mutex);
2840         module_put(cb->module);
2841         consume_skb(cb->skb);
2842         return 0;
2843
2844 errout_skb:
2845         mutex_unlock(nlk->cb_mutex);
2846         kfree_skb(skb);
2847         return err;
2848 }
2849
2850 int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2851                          const struct nlmsghdr *nlh,
2852                          struct netlink_dump_control *control)
2853 {
2854         struct netlink_callback *cb;
2855         struct sock *sk;
2856         struct netlink_sock *nlk;
2857         int ret;
2858
2859         /* Memory mapped dump requests need to be copied to avoid looping
2860          * on the pending state in netlink_mmap_sendmsg() while the CB hold
2861          * a reference to the skb.
2862          */
2863         if (netlink_skb_is_mmaped(skb)) {
2864                 skb = skb_copy(skb, GFP_KERNEL);
2865                 if (skb == NULL)
2866                         return -ENOBUFS;
2867         } else
2868                 atomic_inc(&skb->users);
2869
2870         sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2871         if (sk == NULL) {
2872                 ret = -ECONNREFUSED;
2873                 goto error_free;
2874         }
2875
2876         nlk = nlk_sk(sk);
2877         mutex_lock(nlk->cb_mutex);
2878         /* A dump is in progress... */
2879         if (nlk->cb_running) {
2880                 ret = -EBUSY;
2881                 goto error_unlock;
2882         }
2883         /* add reference of module which cb->dump belongs to */
2884         if (!try_module_get(control->module)) {
2885                 ret = -EPROTONOSUPPORT;
2886                 goto error_unlock;
2887         }
2888
2889         cb = &nlk->cb;
2890         memset(cb, 0, sizeof(*cb));
2891         cb->dump = control->dump;
2892         cb->done = control->done;
2893         cb->nlh = nlh;
2894         cb->data = control->data;
2895         cb->module = control->module;
2896         cb->min_dump_alloc = control->min_dump_alloc;
2897         cb->skb = skb;
2898
2899         nlk->cb_running = true;
2900
2901         mutex_unlock(nlk->cb_mutex);
2902
2903         ret = netlink_dump(sk);
2904         sock_put(sk);
2905
2906         if (ret)
2907                 return ret;
2908
2909         /* We successfully started a dump, by returning -EINTR we
2910          * signal not to send ACK even if it was requested.
2911          */
2912         return -EINTR;
2913
2914 error_unlock:
2915         sock_put(sk);
2916         mutex_unlock(nlk->cb_mutex);
2917 error_free:
2918         kfree_skb(skb);
2919         return ret;
2920 }
2921 EXPORT_SYMBOL(__netlink_dump_start);
2922
2923 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2924 {
2925         struct sk_buff *skb;
2926         struct nlmsghdr *rep;
2927         struct nlmsgerr *errmsg;
2928         size_t payload = sizeof(*errmsg);
2929         struct netlink_sock *nlk = nlk_sk(NETLINK_CB(in_skb).sk);
2930
2931         /* Error messages get the original request appened, unless the user
2932          * requests to cap the error message.
2933          */
2934         if (!(nlk->flags & NETLINK_F_CAP_ACK) && err)
2935                 payload += nlmsg_len(nlh);
2936
2937         skb = netlink_alloc_skb(in_skb->sk, nlmsg_total_size(payload),
2938                                 NETLINK_CB(in_skb).portid, GFP_KERNEL);
2939         if (!skb) {
2940                 struct sock *sk;
2941
2942                 sk = netlink_lookup(sock_net(in_skb->sk),
2943                                     in_skb->sk->sk_protocol,
2944                                     NETLINK_CB(in_skb).portid);
2945                 if (sk) {
2946                         sk->sk_err = ENOBUFS;
2947                         sk->sk_error_report(sk);
2948                         sock_put(sk);
2949                 }
2950                 return;
2951         }
2952
2953         rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
2954                           NLMSG_ERROR, payload, 0);
2955         errmsg = nlmsg_data(rep);
2956         errmsg->error = err;
2957         memcpy(&errmsg->msg, nlh, payload > sizeof(*errmsg) ? nlh->nlmsg_len : sizeof(*nlh));
2958         netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
2959 }
2960 EXPORT_SYMBOL(netlink_ack);
2961
2962 int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
2963                                                      struct nlmsghdr *))
2964 {
2965         struct nlmsghdr *nlh;
2966         int err;
2967
2968         while (skb->len >= nlmsg_total_size(0)) {
2969                 int msglen;
2970
2971                 nlh = nlmsg_hdr(skb);
2972                 err = 0;
2973
2974                 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
2975                         return 0;
2976
2977                 /* Only requests are handled by the kernel */
2978                 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
2979                         goto ack;
2980
2981                 /* Skip control messages */
2982                 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
2983                         goto ack;
2984
2985                 err = cb(skb, nlh);
2986                 if (err == -EINTR)
2987                         goto skip;
2988
2989 ack:
2990                 if (nlh->nlmsg_flags & NLM_F_ACK || err)
2991                         netlink_ack(skb, nlh, err);
2992
2993 skip:
2994                 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
2995                 if (msglen > skb->len)
2996                         msglen = skb->len;
2997                 skb_pull(skb, msglen);
2998         }
2999
3000         return 0;
3001 }
3002 EXPORT_SYMBOL(netlink_rcv_skb);
3003
3004 /**
3005  * nlmsg_notify - send a notification netlink message
3006  * @sk: netlink socket to use
3007  * @skb: notification message
3008  * @portid: destination netlink portid for reports or 0
3009  * @group: destination multicast group or 0
3010  * @report: 1 to report back, 0 to disable
3011  * @flags: allocation flags
3012  */
3013 int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
3014                  unsigned int group, int report, gfp_t flags)
3015 {
3016         int err = 0;
3017
3018         if (group) {
3019                 int exclude_portid = 0;
3020
3021                 if (report) {
3022                         atomic_inc(&skb->users);
3023                         exclude_portid = portid;
3024                 }
3025
3026                 /* errors reported via destination sk->sk_err, but propagate
3027                  * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
3028                 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
3029         }
3030
3031         if (report) {
3032                 int err2;
3033
3034                 err2 = nlmsg_unicast(sk, skb, portid);
3035                 if (!err || err == -ESRCH)
3036                         err = err2;
3037         }
3038
3039         return err;
3040 }
3041 EXPORT_SYMBOL(nlmsg_notify);
3042
3043 #ifdef CONFIG_PROC_FS
3044 struct nl_seq_iter {
3045         struct seq_net_private p;
3046         struct rhashtable_iter hti;
3047         int link;
3048 };
3049
3050 static int netlink_walk_start(struct nl_seq_iter *iter)
3051 {
3052         int err;
3053
3054         err = rhashtable_walk_init(&nl_table[iter->link].hash, &iter->hti);
3055         if (err) {
3056                 iter->link = MAX_LINKS;
3057                 return err;
3058         }
3059
3060         err = rhashtable_walk_start(&iter->hti);
3061         return err == -EAGAIN ? 0 : err;
3062 }
3063
3064 static void netlink_walk_stop(struct nl_seq_iter *iter)
3065 {
3066         rhashtable_walk_stop(&iter->hti);
3067         rhashtable_walk_exit(&iter->hti);
3068 }
3069
3070 static void *__netlink_seq_next(struct seq_file *seq)
3071 {
3072         struct nl_seq_iter *iter = seq->private;
3073         struct netlink_sock *nlk;
3074
3075         do {
3076                 for (;;) {
3077                         int err;
3078
3079                         nlk = rhashtable_walk_next(&iter->hti);
3080
3081                         if (IS_ERR(nlk)) {
3082                                 if (PTR_ERR(nlk) == -EAGAIN)
3083                                         continue;
3084
3085                                 return nlk;
3086                         }
3087
3088                         if (nlk)
3089                                 break;
3090
3091                         netlink_walk_stop(iter);
3092                         if (++iter->link >= MAX_LINKS)
3093                                 return NULL;
3094
3095                         err = netlink_walk_start(iter);
3096                         if (err)
3097                                 return ERR_PTR(err);
3098                 }
3099         } while (sock_net(&nlk->sk) != seq_file_net(seq));
3100
3101         return nlk;
3102 }
3103
3104 static void *netlink_seq_start(struct seq_file *seq, loff_t *posp)
3105 {
3106         struct nl_seq_iter *iter = seq->private;
3107         void *obj = SEQ_START_TOKEN;
3108         loff_t pos;
3109         int err;
3110
3111         iter->link = 0;
3112
3113         err = netlink_walk_start(iter);
3114         if (err)
3115                 return ERR_PTR(err);
3116
3117         for (pos = *posp; pos && obj && !IS_ERR(obj); pos--)
3118                 obj = __netlink_seq_next(seq);
3119
3120         return obj;
3121 }
3122
3123 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3124 {
3125         ++*pos;
3126         return __netlink_seq_next(seq);
3127 }
3128
3129 static void netlink_seq_stop(struct seq_file *seq, void *v)
3130 {
3131         struct nl_seq_iter *iter = seq->private;
3132
3133         if (iter->link >= MAX_LINKS)
3134                 return;
3135
3136         netlink_walk_stop(iter);
3137 }
3138
3139
3140 static int netlink_seq_show(struct seq_file *seq, void *v)
3141 {
3142         if (v == SEQ_START_TOKEN) {
3143                 seq_puts(seq,
3144                          "sk       Eth Pid    Groups   "
3145                          "Rmem     Wmem     Dump     Locks     Drops     Inode\n");
3146         } else {
3147                 struct sock *s = v;
3148                 struct netlink_sock *nlk = nlk_sk(s);
3149
3150                 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
3151                            s,
3152                            s->sk_protocol,
3153                            nlk->portid,
3154                            nlk->groups ? (u32)nlk->groups[0] : 0,
3155                            sk_rmem_alloc_get(s),
3156                            sk_wmem_alloc_get(s),
3157                            nlk->cb_running,
3158                            atomic_read(&s->sk_refcnt),
3159                            atomic_read(&s->sk_drops),
3160                            sock_i_ino(s)
3161                         );
3162
3163         }
3164         return 0;
3165 }
3166
3167 static const struct seq_operations netlink_seq_ops = {
3168         .start  = netlink_seq_start,
3169         .next   = netlink_seq_next,
3170         .stop   = netlink_seq_stop,
3171         .show   = netlink_seq_show,
3172 };
3173
3174
3175 static int netlink_seq_open(struct inode *inode, struct file *file)
3176 {
3177         return seq_open_net(inode, file, &netlink_seq_ops,
3178                                 sizeof(struct nl_seq_iter));
3179 }
3180
3181 static const struct file_operations netlink_seq_fops = {
3182         .owner          = THIS_MODULE,
3183         .open           = netlink_seq_open,
3184         .read           = seq_read,
3185         .llseek         = seq_lseek,
3186         .release        = seq_release_net,
3187 };
3188
3189 #endif
3190
3191 int netlink_register_notifier(struct notifier_block *nb)
3192 {
3193         return atomic_notifier_chain_register(&netlink_chain, nb);
3194 }
3195 EXPORT_SYMBOL(netlink_register_notifier);
3196
3197 int netlink_unregister_notifier(struct notifier_block *nb)
3198 {
3199         return atomic_notifier_chain_unregister(&netlink_chain, nb);
3200 }
3201 EXPORT_SYMBOL(netlink_unregister_notifier);
3202
3203 static const struct proto_ops netlink_ops = {
3204         .family =       PF_NETLINK,
3205         .owner =        THIS_MODULE,
3206         .release =      netlink_release,
3207         .bind =         netlink_bind,
3208         .connect =      netlink_connect,
3209         .socketpair =   sock_no_socketpair,
3210         .accept =       sock_no_accept,
3211         .getname =      netlink_getname,
3212         .poll =         netlink_poll,
3213         .ioctl =        sock_no_ioctl,
3214         .listen =       sock_no_listen,
3215         .shutdown =     sock_no_shutdown,
3216         .setsockopt =   netlink_setsockopt,
3217         .getsockopt =   netlink_getsockopt,
3218         .sendmsg =      netlink_sendmsg,
3219         .recvmsg =      netlink_recvmsg,
3220         .mmap =         netlink_mmap,
3221         .sendpage =     sock_no_sendpage,
3222 };
3223
3224 static const struct net_proto_family netlink_family_ops = {
3225         .family = PF_NETLINK,
3226         .create = netlink_create,
3227         .owner  = THIS_MODULE,  /* for consistency 8) */
3228 };
3229
3230 static int __net_init netlink_net_init(struct net *net)
3231 {
3232 #ifdef CONFIG_PROC_FS
3233         if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
3234                 return -ENOMEM;
3235 #endif
3236         return 0;
3237 }
3238
3239 static void __net_exit netlink_net_exit(struct net *net)
3240 {
3241 #ifdef CONFIG_PROC_FS
3242         remove_proc_entry("netlink", net->proc_net);
3243 #endif
3244 }
3245
3246 static void __init netlink_add_usersock_entry(void)
3247 {
3248         struct listeners *listeners;
3249         int groups = 32;
3250
3251         listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
3252         if (!listeners)
3253                 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
3254
3255         netlink_table_grab();
3256
3257         nl_table[NETLINK_USERSOCK].groups = groups;
3258         rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
3259         nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
3260         nl_table[NETLINK_USERSOCK].registered = 1;
3261         nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
3262
3263         netlink_table_ungrab();
3264 }
3265
3266 static struct pernet_operations __net_initdata netlink_net_ops = {
3267         .init = netlink_net_init,
3268         .exit = netlink_net_exit,
3269 };
3270
3271 static inline u32 netlink_hash(const void *data, u32 len, u32 seed)
3272 {
3273         const struct netlink_sock *nlk = data;
3274         struct netlink_compare_arg arg;
3275
3276         netlink_compare_arg_init(&arg, sock_net(&nlk->sk), nlk->rhash_portid);
3277         return jhash2((u32 *)&arg, netlink_compare_arg_len / sizeof(u32), seed);
3278 }
3279
3280 static const struct rhashtable_params netlink_rhashtable_params = {
3281         .head_offset = offsetof(struct netlink_sock, node),
3282         .key_len = netlink_compare_arg_len,
3283         .obj_hashfn = netlink_hash,
3284         .obj_cmpfn = netlink_compare,
3285         .automatic_shrinking = true,
3286 };
3287
3288 static int __init netlink_proto_init(void)
3289 {
3290         int i;
3291         int err = proto_register(&netlink_proto, 0);
3292
3293         if (err != 0)
3294                 goto out;
3295
3296         BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
3297
3298         nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
3299         if (!nl_table)
3300                 goto panic;
3301
3302         for (i = 0; i < MAX_LINKS; i++) {
3303                 if (rhashtable_init(&nl_table[i].hash,
3304                                     &netlink_rhashtable_params) < 0) {
3305                         while (--i > 0)
3306                                 rhashtable_destroy(&nl_table[i].hash);
3307                         kfree(nl_table);
3308                         goto panic;
3309                 }
3310         }
3311
3312         INIT_LIST_HEAD(&netlink_tap_all);
3313
3314         netlink_add_usersock_entry();
3315
3316         sock_register(&netlink_family_ops);
3317         register_pernet_subsys(&netlink_net_ops);
3318         /* The netlink device handler may be needed early. */
3319         rtnetlink_init();
3320 out:
3321         return err;
3322 panic:
3323         panic("netlink_init: Cannot allocate nl_table\n");
3324 }
3325
3326 core_initcall(netlink_proto_init);