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