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