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