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