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