Mention branches and keyring.
[releases.git] / 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         struct sock *sk;
1578         int ret = 0;
1579
1580         info.exclude_sk = ssk;
1581         info.portid = portid;
1582         info.group = group;
1583         /* sk->sk_err wants a positive error value */
1584         info.code = -code;
1585
1586         read_lock(&nl_table_lock);
1587
1588         sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
1589                 ret += do_one_set_err(sk, &info);
1590
1591         read_unlock(&nl_table_lock);
1592         return ret;
1593 }
1594 EXPORT_SYMBOL(netlink_set_err);
1595
1596 /* must be called with netlink table grabbed */
1597 static void netlink_update_socket_mc(struct netlink_sock *nlk,
1598                                      unsigned int group,
1599                                      int is_new)
1600 {
1601         int old, new = !!is_new, subscriptions;
1602
1603         old = test_bit(group - 1, nlk->groups);
1604         subscriptions = nlk->subscriptions - old + new;
1605         if (new)
1606                 __set_bit(group - 1, nlk->groups);
1607         else
1608                 __clear_bit(group - 1, nlk->groups);
1609         netlink_update_subscriptions(&nlk->sk, subscriptions);
1610         netlink_update_listeners(&nlk->sk);
1611 }
1612
1613 static int netlink_setsockopt(struct socket *sock, int level, int optname,
1614                               char __user *optval, unsigned int optlen)
1615 {
1616         struct sock *sk = sock->sk;
1617         struct netlink_sock *nlk = nlk_sk(sk);
1618         unsigned int val = 0;
1619         int err;
1620
1621         if (level != SOL_NETLINK)
1622                 return -ENOPROTOOPT;
1623
1624         if (optlen >= sizeof(int) &&
1625             get_user(val, (unsigned int __user *)optval))
1626                 return -EFAULT;
1627
1628         switch (optname) {
1629         case NETLINK_PKTINFO:
1630                 if (val)
1631                         nlk->flags |= NETLINK_F_RECV_PKTINFO;
1632                 else
1633                         nlk->flags &= ~NETLINK_F_RECV_PKTINFO;
1634                 err = 0;
1635                 break;
1636         case NETLINK_ADD_MEMBERSHIP:
1637         case NETLINK_DROP_MEMBERSHIP: {
1638                 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
1639                         return -EPERM;
1640                 err = netlink_realloc_groups(sk);
1641                 if (err)
1642                         return err;
1643                 if (!val || val - 1 >= nlk->ngroups)
1644                         return -EINVAL;
1645                 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
1646                         err = nlk->netlink_bind(sock_net(sk), val);
1647                         if (err)
1648                                 return err;
1649                 }
1650                 netlink_table_grab();
1651                 netlink_update_socket_mc(nlk, val,
1652                                          optname == NETLINK_ADD_MEMBERSHIP);
1653                 netlink_table_ungrab();
1654                 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
1655                         nlk->netlink_unbind(sock_net(sk), val);
1656
1657                 err = 0;
1658                 break;
1659         }
1660         case NETLINK_BROADCAST_ERROR:
1661                 if (val)
1662                         nlk->flags |= NETLINK_F_BROADCAST_SEND_ERROR;
1663                 else
1664                         nlk->flags &= ~NETLINK_F_BROADCAST_SEND_ERROR;
1665                 err = 0;
1666                 break;
1667         case NETLINK_NO_ENOBUFS:
1668                 if (val) {
1669                         nlk->flags |= NETLINK_F_RECV_NO_ENOBUFS;
1670                         clear_bit(NETLINK_S_CONGESTED, &nlk->state);
1671                         wake_up_interruptible(&nlk->wait);
1672                 } else {
1673                         nlk->flags &= ~NETLINK_F_RECV_NO_ENOBUFS;
1674                 }
1675                 err = 0;
1676                 break;
1677         case NETLINK_LISTEN_ALL_NSID:
1678                 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_BROADCAST))
1679                         return -EPERM;
1680
1681                 if (val)
1682                         nlk->flags |= NETLINK_F_LISTEN_ALL_NSID;
1683                 else
1684                         nlk->flags &= ~NETLINK_F_LISTEN_ALL_NSID;
1685                 err = 0;
1686                 break;
1687         case NETLINK_CAP_ACK:
1688                 if (val)
1689                         nlk->flags |= NETLINK_F_CAP_ACK;
1690                 else
1691                         nlk->flags &= ~NETLINK_F_CAP_ACK;
1692                 err = 0;
1693                 break;
1694         case NETLINK_EXT_ACK:
1695                 if (val)
1696                         nlk->flags |= NETLINK_F_EXT_ACK;
1697                 else
1698                         nlk->flags &= ~NETLINK_F_EXT_ACK;
1699                 err = 0;
1700                 break;
1701         default:
1702                 err = -ENOPROTOOPT;
1703         }
1704         return err;
1705 }
1706
1707 static int netlink_getsockopt(struct socket *sock, int level, int optname,
1708                               char __user *optval, int __user *optlen)
1709 {
1710         struct sock *sk = sock->sk;
1711         struct netlink_sock *nlk = nlk_sk(sk);
1712         int len, val, err;
1713
1714         if (level != SOL_NETLINK)
1715                 return -ENOPROTOOPT;
1716
1717         if (get_user(len, optlen))
1718                 return -EFAULT;
1719         if (len < 0)
1720                 return -EINVAL;
1721
1722         switch (optname) {
1723         case NETLINK_PKTINFO:
1724                 if (len < sizeof(int))
1725                         return -EINVAL;
1726                 len = sizeof(int);
1727                 val = nlk->flags & NETLINK_F_RECV_PKTINFO ? 1 : 0;
1728                 if (put_user(len, optlen) ||
1729                     put_user(val, optval))
1730                         return -EFAULT;
1731                 err = 0;
1732                 break;
1733         case NETLINK_BROADCAST_ERROR:
1734                 if (len < sizeof(int))
1735                         return -EINVAL;
1736                 len = sizeof(int);
1737                 val = nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR ? 1 : 0;
1738                 if (put_user(len, optlen) ||
1739                     put_user(val, optval))
1740                         return -EFAULT;
1741                 err = 0;
1742                 break;
1743         case NETLINK_NO_ENOBUFS:
1744                 if (len < sizeof(int))
1745                         return -EINVAL;
1746                 len = sizeof(int);
1747                 val = nlk->flags & NETLINK_F_RECV_NO_ENOBUFS ? 1 : 0;
1748                 if (put_user(len, optlen) ||
1749                     put_user(val, optval))
1750                         return -EFAULT;
1751                 err = 0;
1752                 break;
1753         case NETLINK_LIST_MEMBERSHIPS: {
1754                 int pos, idx, shift;
1755
1756                 err = 0;
1757                 netlink_lock_table();
1758                 for (pos = 0; pos * 8 < nlk->ngroups; pos += sizeof(u32)) {
1759                         if (len - pos < sizeof(u32))
1760                                 break;
1761
1762                         idx = pos / sizeof(unsigned long);
1763                         shift = (pos % sizeof(unsigned long)) * 8;
1764                         if (put_user((u32)(nlk->groups[idx] >> shift),
1765                                      (u32 __user *)(optval + pos))) {
1766                                 err = -EFAULT;
1767                                 break;
1768                         }
1769                 }
1770                 if (put_user(ALIGN(nlk->ngroups / 8, sizeof(u32)), optlen))
1771                         err = -EFAULT;
1772                 netlink_unlock_table();
1773                 break;
1774         }
1775         case NETLINK_CAP_ACK:
1776                 if (len < sizeof(int))
1777                         return -EINVAL;
1778                 len = sizeof(int);
1779                 val = nlk->flags & NETLINK_F_CAP_ACK ? 1 : 0;
1780                 if (put_user(len, optlen) ||
1781                     put_user(val, optval))
1782                         return -EFAULT;
1783                 err = 0;
1784                 break;
1785         case NETLINK_EXT_ACK:
1786                 if (len < sizeof(int))
1787                         return -EINVAL;
1788                 len = sizeof(int);
1789                 val = nlk->flags & NETLINK_F_EXT_ACK ? 1 : 0;
1790                 if (put_user(len, optlen) || put_user(val, optval))
1791                         return -EFAULT;
1792                 err = 0;
1793                 break;
1794         default:
1795                 err = -ENOPROTOOPT;
1796         }
1797         return err;
1798 }
1799
1800 static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1801 {
1802         struct nl_pktinfo info;
1803
1804         info.group = NETLINK_CB(skb).dst_group;
1805         put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1806 }
1807
1808 static void netlink_cmsg_listen_all_nsid(struct sock *sk, struct msghdr *msg,
1809                                          struct sk_buff *skb)
1810 {
1811         if (!NETLINK_CB(skb).nsid_is_set)
1812                 return;
1813
1814         put_cmsg(msg, SOL_NETLINK, NETLINK_LISTEN_ALL_NSID, sizeof(int),
1815                  &NETLINK_CB(skb).nsid);
1816 }
1817
1818 static int netlink_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
1819 {
1820         struct sock *sk = sock->sk;
1821         struct netlink_sock *nlk = nlk_sk(sk);
1822         DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
1823         u32 dst_portid;
1824         u32 dst_group;
1825         struct sk_buff *skb;
1826         int err;
1827         struct scm_cookie scm;
1828         u32 netlink_skb_flags = 0;
1829
1830         if (msg->msg_flags&MSG_OOB)
1831                 return -EOPNOTSUPP;
1832
1833         if (len == 0) {
1834                 pr_warn_once("Zero length message leads to an empty skb\n");
1835                 return -ENODATA;
1836         }
1837
1838         err = scm_send(sock, msg, &scm, true);
1839         if (err < 0)
1840                 return err;
1841
1842         if (msg->msg_namelen) {
1843                 err = -EINVAL;
1844                 if (msg->msg_namelen < sizeof(struct sockaddr_nl))
1845                         goto out;
1846                 if (addr->nl_family != AF_NETLINK)
1847                         goto out;
1848                 dst_portid = addr->nl_pid;
1849                 dst_group = ffs(addr->nl_groups);
1850                 err =  -EPERM;
1851                 if ((dst_group || dst_portid) &&
1852                     !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
1853                         goto out;
1854                 netlink_skb_flags |= NETLINK_SKB_DST;
1855         } else {
1856                 /* Paired with WRITE_ONCE() in netlink_connect() */
1857                 dst_portid = READ_ONCE(nlk->dst_portid);
1858                 dst_group = READ_ONCE(nlk->dst_group);
1859         }
1860
1861         /* Paired with WRITE_ONCE() in netlink_insert() */
1862         if (!READ_ONCE(nlk->bound)) {
1863                 err = netlink_autobind(sock);
1864                 if (err)
1865                         goto out;
1866         } else {
1867                 /* Ensure nlk is hashed and visible. */
1868                 smp_rmb();
1869         }
1870
1871         err = -EMSGSIZE;
1872         if (len > sk->sk_sndbuf - 32)
1873                 goto out;
1874         err = -ENOBUFS;
1875         skb = netlink_alloc_large_skb(len, dst_group);
1876         if (skb == NULL)
1877                 goto out;
1878
1879         NETLINK_CB(skb).portid  = nlk->portid;
1880         NETLINK_CB(skb).dst_group = dst_group;
1881         NETLINK_CB(skb).creds   = scm.creds;
1882         NETLINK_CB(skb).flags   = netlink_skb_flags;
1883
1884         err = -EFAULT;
1885         if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
1886                 kfree_skb(skb);
1887                 goto out;
1888         }
1889
1890         err = security_netlink_send(sk, skb);
1891         if (err) {
1892                 kfree_skb(skb);
1893                 goto out;
1894         }
1895
1896         if (dst_group) {
1897                 refcount_inc(&skb->users);
1898                 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
1899         }
1900         err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
1901
1902 out:
1903         scm_destroy(&scm);
1904         return err;
1905 }
1906
1907 static int netlink_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
1908                            int flags)
1909 {
1910         struct scm_cookie scm;
1911         struct sock *sk = sock->sk;
1912         struct netlink_sock *nlk = nlk_sk(sk);
1913         int noblock = flags&MSG_DONTWAIT;
1914         size_t copied;
1915         struct sk_buff *skb, *data_skb;
1916         int err, ret;
1917
1918         if (flags&MSG_OOB)
1919                 return -EOPNOTSUPP;
1920
1921         copied = 0;
1922
1923         skb = skb_recv_datagram(sk, flags, noblock, &err);
1924         if (skb == NULL)
1925                 goto out;
1926
1927         data_skb = skb;
1928
1929 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1930         if (unlikely(skb_shinfo(skb)->frag_list)) {
1931                 /*
1932                  * If this skb has a frag_list, then here that means that we
1933                  * will have to use the frag_list skb's data for compat tasks
1934                  * and the regular skb's data for normal (non-compat) tasks.
1935                  *
1936                  * If we need to send the compat skb, assign it to the
1937                  * 'data_skb' variable so that it will be used below for data
1938                  * copying. We keep 'skb' for everything else, including
1939                  * freeing both later.
1940                  */
1941                 if (flags & MSG_CMSG_COMPAT)
1942                         data_skb = skb_shinfo(skb)->frag_list;
1943         }
1944 #endif
1945
1946         /* Record the max length of recvmsg() calls for future allocations */
1947         nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
1948         nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
1949                                      SKB_WITH_OVERHEAD(32768));
1950
1951         copied = data_skb->len;
1952         if (len < copied) {
1953                 msg->msg_flags |= MSG_TRUNC;
1954                 copied = len;
1955         }
1956
1957         err = skb_copy_datagram_msg(data_skb, 0, msg, copied);
1958
1959         if (msg->msg_name) {
1960                 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
1961                 addr->nl_family = AF_NETLINK;
1962                 addr->nl_pad    = 0;
1963                 addr->nl_pid    = NETLINK_CB(skb).portid;
1964                 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1965                 msg->msg_namelen = sizeof(*addr);
1966         }
1967
1968         if (nlk->flags & NETLINK_F_RECV_PKTINFO)
1969                 netlink_cmsg_recv_pktinfo(msg, skb);
1970         if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID)
1971                 netlink_cmsg_listen_all_nsid(sk, msg, skb);
1972
1973         memset(&scm, 0, sizeof(scm));
1974         scm.creds = *NETLINK_CREDS(skb);
1975         if (flags & MSG_TRUNC)
1976                 copied = data_skb->len;
1977
1978         skb_free_datagram(sk, skb);
1979
1980         if (nlk->cb_running &&
1981             atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1982                 ret = netlink_dump(sk);
1983                 if (ret) {
1984                         sk->sk_err = -ret;
1985                         sk->sk_error_report(sk);
1986                 }
1987         }
1988
1989         scm_recv(sock, msg, &scm, flags);
1990 out:
1991         netlink_rcv_wake(sk);
1992         return err ? : copied;
1993 }
1994
1995 static void netlink_data_ready(struct sock *sk)
1996 {
1997         BUG();
1998 }
1999
2000 /*
2001  *      We export these functions to other modules. They provide a
2002  *      complete set of kernel non-blocking support for message
2003  *      queueing.
2004  */
2005
2006 struct sock *
2007 __netlink_kernel_create(struct net *net, int unit, struct module *module,
2008                         struct netlink_kernel_cfg *cfg)
2009 {
2010         struct socket *sock;
2011         struct sock *sk;
2012         struct netlink_sock *nlk;
2013         struct listeners *listeners = NULL;
2014         struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
2015         unsigned int groups;
2016
2017         BUG_ON(!nl_table);
2018
2019         if (unit < 0 || unit >= MAX_LINKS)
2020                 return NULL;
2021
2022         if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
2023                 return NULL;
2024
2025         if (__netlink_create(net, sock, cb_mutex, unit, 1) < 0)
2026                 goto out_sock_release_nosk;
2027
2028         sk = sock->sk;
2029
2030         if (!cfg || cfg->groups < 32)
2031                 groups = 32;
2032         else
2033                 groups = cfg->groups;
2034
2035         listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
2036         if (!listeners)
2037                 goto out_sock_release;
2038
2039         sk->sk_data_ready = netlink_data_ready;
2040         if (cfg && cfg->input)
2041                 nlk_sk(sk)->netlink_rcv = cfg->input;
2042
2043         if (netlink_insert(sk, 0))
2044                 goto out_sock_release;
2045
2046         nlk = nlk_sk(sk);
2047         nlk->flags |= NETLINK_F_KERNEL_SOCKET;
2048
2049         netlink_table_grab();
2050         if (!nl_table[unit].registered) {
2051                 nl_table[unit].groups = groups;
2052                 rcu_assign_pointer(nl_table[unit].listeners, listeners);
2053                 nl_table[unit].cb_mutex = cb_mutex;
2054                 nl_table[unit].module = module;
2055                 if (cfg) {
2056                         nl_table[unit].bind = cfg->bind;
2057                         nl_table[unit].unbind = cfg->unbind;
2058                         nl_table[unit].flags = cfg->flags;
2059                         if (cfg->compare)
2060                                 nl_table[unit].compare = cfg->compare;
2061                 }
2062                 nl_table[unit].registered = 1;
2063         } else {
2064                 kfree(listeners);
2065                 nl_table[unit].registered++;
2066         }
2067         netlink_table_ungrab();
2068         return sk;
2069
2070 out_sock_release:
2071         kfree(listeners);
2072         netlink_kernel_release(sk);
2073         return NULL;
2074
2075 out_sock_release_nosk:
2076         sock_release(sock);
2077         return NULL;
2078 }
2079 EXPORT_SYMBOL(__netlink_kernel_create);
2080
2081 void
2082 netlink_kernel_release(struct sock *sk)
2083 {
2084         if (sk == NULL || sk->sk_socket == NULL)
2085                 return;
2086
2087         sock_release(sk->sk_socket);
2088 }
2089 EXPORT_SYMBOL(netlink_kernel_release);
2090
2091 int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
2092 {
2093         struct listeners *new, *old;
2094         struct netlink_table *tbl = &nl_table[sk->sk_protocol];
2095
2096         if (groups < 32)
2097                 groups = 32;
2098
2099         if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
2100                 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2101                 if (!new)
2102                         return -ENOMEM;
2103                 old = nl_deref_protected(tbl->listeners);
2104                 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2105                 rcu_assign_pointer(tbl->listeners, new);
2106
2107                 kfree_rcu(old, rcu);
2108         }
2109         tbl->groups = groups;
2110
2111         return 0;
2112 }
2113
2114 /**
2115  * netlink_change_ngroups - change number of multicast groups
2116  *
2117  * This changes the number of multicast groups that are available
2118  * on a certain netlink family. Note that it is not possible to
2119  * change the number of groups to below 32. Also note that it does
2120  * not implicitly call netlink_clear_multicast_users() when the
2121  * number of groups is reduced.
2122  *
2123  * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2124  * @groups: The new number of groups.
2125  */
2126 int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2127 {
2128         int err;
2129
2130         netlink_table_grab();
2131         err = __netlink_change_ngroups(sk, groups);
2132         netlink_table_ungrab();
2133
2134         return err;
2135 }
2136
2137 void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2138 {
2139         struct sock *sk;
2140         struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2141
2142         sk_for_each_bound(sk, &tbl->mc_list)
2143                 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2144 }
2145
2146 struct nlmsghdr *
2147 __nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
2148 {
2149         struct nlmsghdr *nlh;
2150         int size = nlmsg_msg_size(len);
2151
2152         nlh = skb_put(skb, NLMSG_ALIGN(size));
2153         nlh->nlmsg_type = type;
2154         nlh->nlmsg_len = size;
2155         nlh->nlmsg_flags = flags;
2156         nlh->nlmsg_pid = portid;
2157         nlh->nlmsg_seq = seq;
2158         if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
2159                 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
2160         return nlh;
2161 }
2162 EXPORT_SYMBOL(__nlmsg_put);
2163
2164 /*
2165  * It looks a bit ugly.
2166  * It would be better to create kernel thread.
2167  */
2168
2169 static int netlink_dump(struct sock *sk)
2170 {
2171         struct netlink_sock *nlk = nlk_sk(sk);
2172         struct netlink_callback *cb;
2173         struct sk_buff *skb = NULL;
2174         struct nlmsghdr *nlh;
2175         struct module *module;
2176         int err = -ENOBUFS;
2177         int alloc_min_size;
2178         int alloc_size;
2179
2180         mutex_lock(nlk->cb_mutex);
2181         if (!nlk->cb_running) {
2182                 err = -EINVAL;
2183                 goto errout_skb;
2184         }
2185
2186         if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
2187                 goto errout_skb;
2188
2189         /* NLMSG_GOODSIZE is small to avoid high order allocations being
2190          * required, but it makes sense to _attempt_ a 16K bytes allocation
2191          * to reduce number of system calls on dump operations, if user
2192          * ever provided a big enough buffer.
2193          */
2194         cb = &nlk->cb;
2195         alloc_min_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2196
2197         if (alloc_min_size < nlk->max_recvmsg_len) {
2198                 alloc_size = nlk->max_recvmsg_len;
2199                 skb = alloc_skb(alloc_size,
2200                                 (GFP_KERNEL & ~__GFP_DIRECT_RECLAIM) |
2201                                 __GFP_NOWARN | __GFP_NORETRY);
2202         }
2203         if (!skb) {
2204                 alloc_size = alloc_min_size;
2205                 skb = alloc_skb(alloc_size, GFP_KERNEL);
2206         }
2207         if (!skb)
2208                 goto errout_skb;
2209
2210         /* Trim skb to allocated size. User is expected to provide buffer as
2211          * large as max(min_dump_alloc, 16KiB (mac_recvmsg_len capped at
2212          * netlink_recvmsg())). dump will pack as many smaller messages as
2213          * could fit within the allocated skb. skb is typically allocated
2214          * with larger space than required (could be as much as near 2x the
2215          * requested size with align to next power of 2 approach). Allowing
2216          * dump to use the excess space makes it difficult for a user to have a
2217          * reasonable static buffer based on the expected largest dump of a
2218          * single netdev. The outcome is MSG_TRUNC error.
2219          */
2220         skb_reserve(skb, skb_tailroom(skb) - alloc_size);
2221
2222         /* Make sure malicious BPF programs can not read unitialized memory
2223          * from skb->head -> skb->data
2224          */
2225         skb_reset_network_header(skb);
2226         skb_reset_mac_header(skb);
2227
2228         netlink_skb_set_owner_r(skb, sk);
2229
2230         if (nlk->dump_done_errno > 0)
2231                 nlk->dump_done_errno = cb->dump(skb, cb);
2232
2233         if (nlk->dump_done_errno > 0 ||
2234             skb_tailroom(skb) < nlmsg_total_size(sizeof(nlk->dump_done_errno))) {
2235                 mutex_unlock(nlk->cb_mutex);
2236
2237                 if (sk_filter(sk, skb))
2238                         kfree_skb(skb);
2239                 else
2240                         __netlink_sendskb(sk, skb);
2241                 return 0;
2242         }
2243
2244         nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE,
2245                                sizeof(nlk->dump_done_errno), NLM_F_MULTI);
2246         if (WARN_ON(!nlh))
2247                 goto errout_skb;
2248
2249         nl_dump_check_consistent(cb, nlh);
2250
2251         memcpy(nlmsg_data(nlh), &nlk->dump_done_errno,
2252                sizeof(nlk->dump_done_errno));
2253
2254         if (sk_filter(sk, skb))
2255                 kfree_skb(skb);
2256         else
2257                 __netlink_sendskb(sk, skb);
2258
2259         if (cb->done)
2260                 cb->done(cb);
2261
2262         nlk->cb_running = false;
2263         module = cb->module;
2264         skb = cb->skb;
2265         mutex_unlock(nlk->cb_mutex);
2266         module_put(module);
2267         consume_skb(skb);
2268         return 0;
2269
2270 errout_skb:
2271         mutex_unlock(nlk->cb_mutex);
2272         kfree_skb(skb);
2273         return err;
2274 }
2275
2276 int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2277                          const struct nlmsghdr *nlh,
2278                          struct netlink_dump_control *control)
2279 {
2280         struct netlink_callback *cb;
2281         struct sock *sk;
2282         struct netlink_sock *nlk;
2283         int ret;
2284
2285         refcount_inc(&skb->users);
2286
2287         sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2288         if (sk == NULL) {
2289                 ret = -ECONNREFUSED;
2290                 goto error_free;
2291         }
2292
2293         nlk = nlk_sk(sk);
2294         mutex_lock(nlk->cb_mutex);
2295         /* A dump is in progress... */
2296         if (nlk->cb_running) {
2297                 ret = -EBUSY;
2298                 goto error_unlock;
2299         }
2300         /* add reference of module which cb->dump belongs to */
2301         if (!try_module_get(control->module)) {
2302                 ret = -EPROTONOSUPPORT;
2303                 goto error_unlock;
2304         }
2305
2306         cb = &nlk->cb;
2307         memset(cb, 0, sizeof(*cb));
2308         cb->start = control->start;
2309         cb->dump = control->dump;
2310         cb->done = control->done;
2311         cb->nlh = nlh;
2312         cb->data = control->data;
2313         cb->module = control->module;
2314         cb->min_dump_alloc = control->min_dump_alloc;
2315         cb->skb = skb;
2316
2317         if (cb->start) {
2318                 ret = cb->start(cb);
2319                 if (ret)
2320                         goto error_put;
2321         }
2322
2323         nlk->cb_running = true;
2324         nlk->dump_done_errno = INT_MAX;
2325
2326         mutex_unlock(nlk->cb_mutex);
2327
2328         ret = netlink_dump(sk);
2329
2330         sock_put(sk);
2331
2332         if (ret)
2333                 return ret;
2334
2335         /* We successfully started a dump, by returning -EINTR we
2336          * signal not to send ACK even if it was requested.
2337          */
2338         return -EINTR;
2339
2340 error_put:
2341         module_put(control->module);
2342 error_unlock:
2343         sock_put(sk);
2344         mutex_unlock(nlk->cb_mutex);
2345 error_free:
2346         kfree_skb(skb);
2347         return ret;
2348 }
2349 EXPORT_SYMBOL(__netlink_dump_start);
2350
2351 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err,
2352                  const struct netlink_ext_ack *extack)
2353 {
2354         struct sk_buff *skb;
2355         struct nlmsghdr *rep;
2356         struct nlmsgerr *errmsg;
2357         size_t payload = sizeof(*errmsg);
2358         size_t tlvlen = 0;
2359         struct netlink_sock *nlk = nlk_sk(NETLINK_CB(in_skb).sk);
2360         unsigned int flags = 0;
2361         bool nlk_has_extack = nlk->flags & NETLINK_F_EXT_ACK;
2362
2363         /* Error messages get the original request appened, unless the user
2364          * requests to cap the error message, and get extra error data if
2365          * requested.
2366          */
2367         if (err) {
2368                 if (!(nlk->flags & NETLINK_F_CAP_ACK))
2369                         payload += nlmsg_len(nlh);
2370                 else
2371                         flags |= NLM_F_CAPPED;
2372                 if (nlk_has_extack && extack) {
2373                         if (extack->_msg)
2374                                 tlvlen += nla_total_size(strlen(extack->_msg) + 1);
2375                         if (extack->bad_attr)
2376                                 tlvlen += nla_total_size(sizeof(u32));
2377                 }
2378         } else {
2379                 flags |= NLM_F_CAPPED;
2380
2381                 if (nlk_has_extack && extack && extack->cookie_len)
2382                         tlvlen += nla_total_size(extack->cookie_len);
2383         }
2384
2385         if (tlvlen)
2386                 flags |= NLM_F_ACK_TLVS;
2387
2388         skb = nlmsg_new(payload + tlvlen, GFP_KERNEL);
2389         if (!skb) {
2390                 struct sock *sk;
2391
2392                 sk = netlink_lookup(sock_net(in_skb->sk),
2393                                     in_skb->sk->sk_protocol,
2394                                     NETLINK_CB(in_skb).portid);
2395                 if (sk) {
2396                         sk->sk_err = ENOBUFS;
2397                         sk->sk_error_report(sk);
2398                         sock_put(sk);
2399                 }
2400                 return;
2401         }
2402
2403         rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
2404                           NLMSG_ERROR, payload, flags);
2405         errmsg = nlmsg_data(rep);
2406         errmsg->error = err;
2407         memcpy(&errmsg->msg, nlh, payload > sizeof(*errmsg) ? nlh->nlmsg_len : sizeof(*nlh));
2408
2409         if (nlk_has_extack && extack) {
2410                 if (err) {
2411                         if (extack->_msg)
2412                                 WARN_ON(nla_put_string(skb, NLMSGERR_ATTR_MSG,
2413                                                        extack->_msg));
2414                         if (extack->bad_attr &&
2415                             !WARN_ON((u8 *)extack->bad_attr < in_skb->data ||
2416                                      (u8 *)extack->bad_attr >= in_skb->data +
2417                                                                in_skb->len))
2418                                 WARN_ON(nla_put_u32(skb, NLMSGERR_ATTR_OFFS,
2419                                                     (u8 *)extack->bad_attr -
2420                                                     (u8 *)nlh));
2421                 } else {
2422                         if (extack->cookie_len)
2423                                 WARN_ON(nla_put(skb, NLMSGERR_ATTR_COOKIE,
2424                                                 extack->cookie_len,
2425                                                 extack->cookie));
2426                 }
2427         }
2428
2429         nlmsg_end(skb, rep);
2430
2431         netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
2432 }
2433 EXPORT_SYMBOL(netlink_ack);
2434
2435 int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
2436                                                    struct nlmsghdr *,
2437                                                    struct netlink_ext_ack *))
2438 {
2439         struct netlink_ext_ack extack;
2440         struct nlmsghdr *nlh;
2441         int err;
2442
2443         while (skb->len >= nlmsg_total_size(0)) {
2444                 int msglen;
2445
2446                 memset(&extack, 0, sizeof(extack));
2447                 nlh = nlmsg_hdr(skb);
2448                 err = 0;
2449
2450                 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
2451                         return 0;
2452
2453                 /* Only requests are handled by the kernel */
2454                 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
2455                         goto ack;
2456
2457                 /* Skip control messages */
2458                 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
2459                         goto ack;
2460
2461                 err = cb(skb, nlh, &extack);
2462                 if (err == -EINTR)
2463                         goto skip;
2464
2465 ack:
2466                 if (nlh->nlmsg_flags & NLM_F_ACK || err)
2467                         netlink_ack(skb, nlh, err, &extack);
2468
2469 skip:
2470                 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
2471                 if (msglen > skb->len)
2472                         msglen = skb->len;
2473                 skb_pull(skb, msglen);
2474         }
2475
2476         return 0;
2477 }
2478 EXPORT_SYMBOL(netlink_rcv_skb);
2479
2480 /**
2481  * nlmsg_notify - send a notification netlink message
2482  * @sk: netlink socket to use
2483  * @skb: notification message
2484  * @portid: destination netlink portid for reports or 0
2485  * @group: destination multicast group or 0
2486  * @report: 1 to report back, 0 to disable
2487  * @flags: allocation flags
2488  */
2489 int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
2490                  unsigned int group, int report, gfp_t flags)
2491 {
2492         int err = 0;
2493
2494         if (group) {
2495                 int exclude_portid = 0;
2496
2497                 if (report) {
2498                         refcount_inc(&skb->users);
2499                         exclude_portid = portid;
2500                 }
2501
2502                 /* errors reported via destination sk->sk_err, but propagate
2503                  * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
2504                 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
2505                 if (err == -ESRCH)
2506                         err = 0;
2507         }
2508
2509         if (report) {
2510                 int err2;
2511
2512                 err2 = nlmsg_unicast(sk, skb, portid);
2513                 if (!err)
2514                         err = err2;
2515         }
2516
2517         return err;
2518 }
2519 EXPORT_SYMBOL(nlmsg_notify);
2520
2521 #ifdef CONFIG_PROC_FS
2522 struct nl_seq_iter {
2523         struct seq_net_private p;
2524         struct rhashtable_iter hti;
2525         int link;
2526 };
2527
2528 static int netlink_walk_start(struct nl_seq_iter *iter)
2529 {
2530         int err;
2531
2532         err = rhashtable_walk_init(&nl_table[iter->link].hash, &iter->hti,
2533                                    GFP_KERNEL);
2534         if (err) {
2535                 iter->link = MAX_LINKS;
2536                 return err;
2537         }
2538
2539         err = rhashtable_walk_start(&iter->hti);
2540         return err == -EAGAIN ? 0 : err;
2541 }
2542
2543 static void netlink_walk_stop(struct nl_seq_iter *iter)
2544 {
2545         rhashtable_walk_stop(&iter->hti);
2546         rhashtable_walk_exit(&iter->hti);
2547 }
2548
2549 static void *__netlink_seq_next(struct seq_file *seq)
2550 {
2551         struct nl_seq_iter *iter = seq->private;
2552         struct netlink_sock *nlk;
2553
2554         do {
2555                 for (;;) {
2556                         int err;
2557
2558                         nlk = rhashtable_walk_next(&iter->hti);
2559
2560                         if (IS_ERR(nlk)) {
2561                                 if (PTR_ERR(nlk) == -EAGAIN)
2562                                         continue;
2563
2564                                 return nlk;
2565                         }
2566
2567                         if (nlk)
2568                                 break;
2569
2570                         netlink_walk_stop(iter);
2571                         if (++iter->link >= MAX_LINKS)
2572                                 return NULL;
2573
2574                         err = netlink_walk_start(iter);
2575                         if (err)
2576                                 return ERR_PTR(err);
2577                 }
2578         } while (sock_net(&nlk->sk) != seq_file_net(seq));
2579
2580         return nlk;
2581 }
2582
2583 static void *netlink_seq_start(struct seq_file *seq, loff_t *posp)
2584 {
2585         struct nl_seq_iter *iter = seq->private;
2586         void *obj = SEQ_START_TOKEN;
2587         loff_t pos;
2588         int err;
2589
2590         iter->link = 0;
2591
2592         err = netlink_walk_start(iter);
2593         if (err)
2594                 return ERR_PTR(err);
2595
2596         for (pos = *posp; pos && obj && !IS_ERR(obj); pos--)
2597                 obj = __netlink_seq_next(seq);
2598
2599         return obj;
2600 }
2601
2602 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2603 {
2604         ++*pos;
2605         return __netlink_seq_next(seq);
2606 }
2607
2608 static void netlink_seq_stop(struct seq_file *seq, void *v)
2609 {
2610         struct nl_seq_iter *iter = seq->private;
2611
2612         if (iter->link >= MAX_LINKS)
2613                 return;
2614
2615         netlink_walk_stop(iter);
2616 }
2617
2618
2619 static int netlink_seq_show(struct seq_file *seq, void *v)
2620 {
2621         if (v == SEQ_START_TOKEN) {
2622                 seq_puts(seq,
2623                          "sk       Eth Pid    Groups   "
2624                          "Rmem     Wmem     Dump     Locks     Drops     Inode\n");
2625         } else {
2626                 struct sock *s = v;
2627                 struct netlink_sock *nlk = nlk_sk(s);
2628
2629                 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
2630                            s,
2631                            s->sk_protocol,
2632                            nlk->portid,
2633                            nlk->groups ? (u32)nlk->groups[0] : 0,
2634                            sk_rmem_alloc_get(s),
2635                            sk_wmem_alloc_get(s),
2636                            nlk->cb_running,
2637                            refcount_read(&s->sk_refcnt),
2638                            atomic_read(&s->sk_drops),
2639                            sock_i_ino(s)
2640                         );
2641
2642         }
2643         return 0;
2644 }
2645
2646 static const struct seq_operations netlink_seq_ops = {
2647         .start  = netlink_seq_start,
2648         .next   = netlink_seq_next,
2649         .stop   = netlink_seq_stop,
2650         .show   = netlink_seq_show,
2651 };
2652
2653
2654 static int netlink_seq_open(struct inode *inode, struct file *file)
2655 {
2656         return seq_open_net(inode, file, &netlink_seq_ops,
2657                                 sizeof(struct nl_seq_iter));
2658 }
2659
2660 static const struct file_operations netlink_seq_fops = {
2661         .owner          = THIS_MODULE,
2662         .open           = netlink_seq_open,
2663         .read           = seq_read,
2664         .llseek         = seq_lseek,
2665         .release        = seq_release_net,
2666 };
2667
2668 #endif
2669
2670 int netlink_register_notifier(struct notifier_block *nb)
2671 {
2672         return blocking_notifier_chain_register(&netlink_chain, nb);
2673 }
2674 EXPORT_SYMBOL(netlink_register_notifier);
2675
2676 int netlink_unregister_notifier(struct notifier_block *nb)
2677 {
2678         return blocking_notifier_chain_unregister(&netlink_chain, nb);
2679 }
2680 EXPORT_SYMBOL(netlink_unregister_notifier);
2681
2682 static const struct proto_ops netlink_ops = {
2683         .family =       PF_NETLINK,
2684         .owner =        THIS_MODULE,
2685         .release =      netlink_release,
2686         .bind =         netlink_bind,
2687         .connect =      netlink_connect,
2688         .socketpair =   sock_no_socketpair,
2689         .accept =       sock_no_accept,
2690         .getname =      netlink_getname,
2691         .poll =         datagram_poll,
2692         .ioctl =        netlink_ioctl,
2693         .listen =       sock_no_listen,
2694         .shutdown =     sock_no_shutdown,
2695         .setsockopt =   netlink_setsockopt,
2696         .getsockopt =   netlink_getsockopt,
2697         .sendmsg =      netlink_sendmsg,
2698         .recvmsg =      netlink_recvmsg,
2699         .mmap =         sock_no_mmap,
2700         .sendpage =     sock_no_sendpage,
2701 };
2702
2703 static const struct net_proto_family netlink_family_ops = {
2704         .family = PF_NETLINK,
2705         .create = netlink_create,
2706         .owner  = THIS_MODULE,  /* for consistency 8) */
2707 };
2708
2709 static int __net_init netlink_net_init(struct net *net)
2710 {
2711 #ifdef CONFIG_PROC_FS
2712         if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
2713                 return -ENOMEM;
2714 #endif
2715         return 0;
2716 }
2717
2718 static void __net_exit netlink_net_exit(struct net *net)
2719 {
2720 #ifdef CONFIG_PROC_FS
2721         remove_proc_entry("netlink", net->proc_net);
2722 #endif
2723 }
2724
2725 static void __init netlink_add_usersock_entry(void)
2726 {
2727         struct listeners *listeners;
2728         int groups = 32;
2729
2730         listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
2731         if (!listeners)
2732                 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
2733
2734         netlink_table_grab();
2735
2736         nl_table[NETLINK_USERSOCK].groups = groups;
2737         rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
2738         nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2739         nl_table[NETLINK_USERSOCK].registered = 1;
2740         nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
2741
2742         netlink_table_ungrab();
2743 }
2744
2745 static struct pernet_operations __net_initdata netlink_net_ops = {
2746         .init = netlink_net_init,
2747         .exit = netlink_net_exit,
2748 };
2749
2750 static inline u32 netlink_hash(const void *data, u32 len, u32 seed)
2751 {
2752         const struct netlink_sock *nlk = data;
2753         struct netlink_compare_arg arg;
2754
2755         netlink_compare_arg_init(&arg, sock_net(&nlk->sk), nlk->portid);
2756         return jhash2((u32 *)&arg, netlink_compare_arg_len / sizeof(u32), seed);
2757 }
2758
2759 static const struct rhashtable_params netlink_rhashtable_params = {
2760         .head_offset = offsetof(struct netlink_sock, node),
2761         .key_len = netlink_compare_arg_len,
2762         .obj_hashfn = netlink_hash,
2763         .obj_cmpfn = netlink_compare,
2764         .automatic_shrinking = true,
2765 };
2766
2767 static int __init netlink_proto_init(void)
2768 {
2769         int i;
2770         int err = proto_register(&netlink_proto, 0);
2771
2772         if (err != 0)
2773                 goto out;
2774
2775         BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
2776
2777         nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
2778         if (!nl_table)
2779                 goto panic;
2780
2781         for (i = 0; i < MAX_LINKS; i++) {
2782                 if (rhashtable_init(&nl_table[i].hash,
2783                                     &netlink_rhashtable_params) < 0) {
2784                         while (--i > 0)
2785                                 rhashtable_destroy(&nl_table[i].hash);
2786                         kfree(nl_table);
2787                         goto panic;
2788                 }
2789         }
2790
2791         INIT_LIST_HEAD(&netlink_tap_all);
2792
2793         netlink_add_usersock_entry();
2794
2795         sock_register(&netlink_family_ops);
2796         register_pernet_subsys(&netlink_net_ops);
2797         /* The netlink device handler may be needed early. */
2798         rtnetlink_init();
2799 out:
2800         return err;
2801 panic:
2802         panic("netlink_init: Cannot allocate nl_table\n");
2803 }
2804
2805 core_initcall(netlink_proto_init);