blob: e1c123d4cddaa86086d5ce7ff27679543e9b663b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NETLINK Kernel-user communication protocol.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Patrick McHardycd1df522013-04-17 06:47:05 +00006 * Patrick McHardy <kaber@trash.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +090012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
14 * added netlink_proto_exit
15 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
16 * use nlk_sk, as sk->protinfo is on a diet 8)
Harald Welte4fdb3bb2005-08-09 19:40:55 -070017 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
18 * - inc module use count of module that owns
19 * the kernel socket in case userspace opens
20 * socket of same protocol
21 * - remove all module support, since netlink is
22 * mandatory if CONFIG_NET=y these days
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26
Randy Dunlap4fc268d2006-01-11 12:17:47 -080027#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
29#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/signal.h>
31#include <linux/sched.h>
32#include <linux/errno.h>
33#include <linux/string.h>
34#include <linux/stat.h>
35#include <linux/socket.h>
36#include <linux/un.h>
37#include <linux/fcntl.h>
38#include <linux/termios.h>
39#include <linux/sockios.h>
40#include <linux/net.h>
41#include <linux/fs.h>
42#include <linux/slab.h>
43#include <asm/uaccess.h>
44#include <linux/skbuff.h>
45#include <linux/netdevice.h>
46#include <linux/rtnetlink.h>
47#include <linux/proc_fs.h>
48#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/notifier.h>
50#include <linux/security.h>
51#include <linux/jhash.h>
52#include <linux/jiffies.h>
53#include <linux/random.h>
54#include <linux/bitops.h>
55#include <linux/mm.h>
56#include <linux/types.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010057#include <linux/audit.h>
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070058#include <linux/mutex.h>
Patrick McHardyccdfcc32013-04-17 06:47:01 +000059#include <linux/vmalloc.h>
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +020060#include <linux/if_arp.h>
Thomas Grafe3416942014-08-02 11:47:45 +020061#include <linux/rhashtable.h>
Patrick McHardy9652e932013-04-17 06:47:02 +000062#include <asm/cacheflush.h>
Thomas Grafe3416942014-08-02 11:47:45 +020063#include <linux/hash.h>
Johannes Bergee1c24422015-01-16 11:37:14 +010064#include <linux/genetlink.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010065
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020066#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <net/sock.h>
68#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010069#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Andrey Vagin0f29c762013-03-21 20:33:47 +040071#include "af_netlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Eric Dumazet5c398dc2010-10-24 04:27:10 +000073struct listeners {
74 struct rcu_head rcu;
75 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000076};
77
Patrick McHardycd967e02013-04-17 06:46:56 +000078/* state bits */
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +020079#define NETLINK_S_CONGESTED 0x0
Patrick McHardycd967e02013-04-17 06:46:56 +000080
81/* flags */
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +020082#define NETLINK_F_KERNEL_SOCKET 0x1
83#define NETLINK_F_RECV_PKTINFO 0x2
84#define NETLINK_F_BROADCAST_SEND_ERROR 0x4
85#define NETLINK_F_RECV_NO_ENOBUFS 0x8
Nicolas Dichtel59324cf2015-05-07 11:02:53 +020086#define NETLINK_F_LISTEN_ALL_NSID 0x10
Christophe Ricard0a6a3a22015-08-28 07:07:48 +020087#define NETLINK_F_CAP_ACK 0x20
Patrick McHardy77247bb2005-08-14 19:27:13 -070088
David S. Miller035c4c12011-12-23 17:33:03 -050089static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -070090{
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +020091 return nlk_sk(sk)->flags & NETLINK_F_KERNEL_SOCKET;
Denis V. Lunevaed81562007-10-10 21:14:32 -070092}
93
Eric Dumazet91dd93f2015-05-12 17:24:50 -070094struct netlink_table *nl_table __read_mostly;
Andrey Vagin0f29c762013-03-21 20:33:47 +040095EXPORT_SYMBOL_GPL(nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
98
Herbert Xu7ff28d32017-03-14 18:25:57 +080099static struct lock_class_key nlk_cb_mutex_keys[MAX_LINKS];
100
101static const char *const nlk_cb_mutex_key_strings[MAX_LINKS + 1] = {
102 "nlk_cb_mutex-ROUTE",
103 "nlk_cb_mutex-1",
104 "nlk_cb_mutex-USERSOCK",
105 "nlk_cb_mutex-FIREWALL",
106 "nlk_cb_mutex-SOCK_DIAG",
107 "nlk_cb_mutex-NFLOG",
108 "nlk_cb_mutex-XFRM",
109 "nlk_cb_mutex-SELINUX",
110 "nlk_cb_mutex-ISCSI",
111 "nlk_cb_mutex-AUDIT",
112 "nlk_cb_mutex-FIB_LOOKUP",
113 "nlk_cb_mutex-CONNECTOR",
114 "nlk_cb_mutex-NETFILTER",
115 "nlk_cb_mutex-IP6_FW",
116 "nlk_cb_mutex-DNRTMSG",
117 "nlk_cb_mutex-KOBJECT_UEVENT",
118 "nlk_cb_mutex-GENERIC",
119 "nlk_cb_mutex-17",
120 "nlk_cb_mutex-SCSITRANSPORT",
121 "nlk_cb_mutex-ECRYPTFS",
122 "nlk_cb_mutex-RDMA",
123 "nlk_cb_mutex-CRYPTO",
124 "nlk_cb_mutex-SMC",
125 "nlk_cb_mutex-23",
126 "nlk_cb_mutex-24",
127 "nlk_cb_mutex-25",
128 "nlk_cb_mutex-26",
129 "nlk_cb_mutex-27",
130 "nlk_cb_mutex-28",
131 "nlk_cb_mutex-29",
132 "nlk_cb_mutex-30",
133 "nlk_cb_mutex-31",
134 "nlk_cb_mutex-MAX_LINKS"
135};
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static int netlink_dump(struct sock *sk);
Patrick McHardy9652e932013-04-17 06:47:02 +0000138static void netlink_skb_destructor(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Thomas Graf78fd1d02014-10-21 22:05:38 +0200140/* nl_table locking explained:
Thomas Graf21e49022015-01-02 23:00:22 +0100141 * Lookup and traversal are protected with an RCU read-side lock. Insertion
Ying Xuec5adde92015-01-12 14:52:23 +0800142 * and removal are protected with per bucket lock while using RCU list
Thomas Graf21e49022015-01-02 23:00:22 +0100143 * modification primitives and may run in parallel to RCU protected lookups.
144 * Destruction of the Netlink socket may only occur *after* nl_table_lock has
145 * been acquired * either during or after the socket has been removed from
146 * the list and after an RCU grace period.
Thomas Graf78fd1d02014-10-21 22:05:38 +0200147 */
Andrey Vagin0f29c762013-03-21 20:33:47 +0400148DEFINE_RWLOCK(nl_table_lock);
149EXPORT_SYMBOL_GPL(nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static atomic_t nl_table_users = ATOMIC_INIT(0);
151
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000152#define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
153
Alan Sterne041c682006-03-27 01:16:30 -0800154static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200156static DEFINE_SPINLOCK(netlink_tap_lock);
157static struct list_head netlink_tap_all __read_mostly;
158
Herbert Xuc428ecd2015-03-20 21:57:01 +1100159static const struct rhashtable_params netlink_rhashtable_params;
160
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000161static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700162{
163 return group ? 1 << (group - 1) : 0;
164}
165
Daniel Borkmann1853c942015-09-10 20:05:46 +0200166static struct sk_buff *netlink_to_full_skb(const struct sk_buff *skb,
167 gfp_t gfp_mask)
168{
169 unsigned int len = skb_end_offset(skb);
170 struct sk_buff *new;
171
172 new = alloc_skb(len, gfp_mask);
173 if (new == NULL)
174 return NULL;
175
176 NETLINK_CB(new).portid = NETLINK_CB(skb).portid;
177 NETLINK_CB(new).dst_group = NETLINK_CB(skb).dst_group;
178 NETLINK_CB(new).creds = NETLINK_CB(skb).creds;
179
180 memcpy(skb_put(new, len), skb->data, len);
181 return new;
182}
183
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200184int netlink_add_tap(struct netlink_tap *nt)
185{
186 if (unlikely(nt->dev->type != ARPHRD_NETLINK))
187 return -EINVAL;
188
189 spin_lock(&netlink_tap_lock);
190 list_add_rcu(&nt->list, &netlink_tap_all);
191 spin_unlock(&netlink_tap_lock);
192
Markus Elfringfcd4d352014-11-18 21:03:13 +0100193 __module_get(nt->module);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200194
195 return 0;
196}
197EXPORT_SYMBOL_GPL(netlink_add_tap);
198
stephen hemminger2173f8d2013-12-30 10:49:22 -0800199static int __netlink_remove_tap(struct netlink_tap *nt)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200200{
201 bool found = false;
202 struct netlink_tap *tmp;
203
204 spin_lock(&netlink_tap_lock);
205
206 list_for_each_entry(tmp, &netlink_tap_all, list) {
207 if (nt == tmp) {
208 list_del_rcu(&nt->list);
209 found = true;
210 goto out;
211 }
212 }
213
214 pr_warn("__netlink_remove_tap: %p not found\n", nt);
215out:
216 spin_unlock(&netlink_tap_lock);
217
Markus Elfring92b80eb2015-07-02 18:38:12 +0200218 if (found)
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200219 module_put(nt->module);
220
221 return found ? 0 : -ENODEV;
222}
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200223
224int netlink_remove_tap(struct netlink_tap *nt)
225{
226 int ret;
227
228 ret = __netlink_remove_tap(nt);
229 synchronize_net();
230
231 return ret;
232}
233EXPORT_SYMBOL_GPL(netlink_remove_tap);
234
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200235static bool netlink_filter_tap(const struct sk_buff *skb)
236{
237 struct sock *sk = skb->sk;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200238
239 /* We take the more conservative approach and
240 * whitelist socket protocols that may pass.
241 */
242 switch (sk->sk_protocol) {
243 case NETLINK_ROUTE:
244 case NETLINK_USERSOCK:
245 case NETLINK_SOCK_DIAG:
246 case NETLINK_NFLOG:
247 case NETLINK_XFRM:
248 case NETLINK_FIB_LOOKUP:
249 case NETLINK_NETFILTER:
250 case NETLINK_GENERIC:
Varka Bhadram498044b2014-07-16 10:59:47 +0530251 return true;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200252 }
253
Varka Bhadram498044b2014-07-16 10:59:47 +0530254 return false;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200255}
256
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200257static int __netlink_deliver_tap_skb(struct sk_buff *skb,
258 struct net_device *dev)
259{
260 struct sk_buff *nskb;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200261 struct sock *sk = skb->sk;
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200262 int ret = -ENOMEM;
263
Kevin Cernekee0b187822017-12-06 12:12:27 -0800264 if (!net_eq(dev_net(dev), sock_net(sk)))
265 return 0;
266
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200267 dev_hold(dev);
Daniel Borkmann1853c942015-09-10 20:05:46 +0200268
Florian Westphald1b4c682016-02-18 15:03:24 +0100269 if (is_vmalloc_addr(skb->head))
Daniel Borkmann1853c942015-09-10 20:05:46 +0200270 nskb = netlink_to_full_skb(skb, GFP_ATOMIC);
271 else
272 nskb = skb_clone(skb, GFP_ATOMIC);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200273 if (nskb) {
274 nskb->dev = dev;
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200275 nskb->protocol = htons((u16) sk->sk_protocol);
Daniel Borkmann604d13c2013-12-23 14:35:56 +0100276 nskb->pkt_type = netlink_is_kernel(sk) ?
277 PACKET_KERNEL : PACKET_USER;
Daniel Borkmann4e48ed82014-08-07 22:22:47 +0200278 skb_reset_network_header(nskb);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200279 ret = dev_queue_xmit(nskb);
280 if (unlikely(ret > 0))
281 ret = net_xmit_errno(ret);
282 }
283
284 dev_put(dev);
285 return ret;
286}
287
288static void __netlink_deliver_tap(struct sk_buff *skb)
289{
290 int ret;
291 struct netlink_tap *tmp;
292
Daniel Borkmann5ffd5cd2013-09-05 17:48:47 +0200293 if (!netlink_filter_tap(skb))
294 return;
295
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200296 list_for_each_entry_rcu(tmp, &netlink_tap_all, list) {
297 ret = __netlink_deliver_tap_skb(skb, tmp->dev);
298 if (unlikely(ret))
299 break;
300 }
301}
302
303static void netlink_deliver_tap(struct sk_buff *skb)
304{
305 rcu_read_lock();
306
307 if (unlikely(!list_empty(&netlink_tap_all)))
308 __netlink_deliver_tap(skb);
309
310 rcu_read_unlock();
311}
312
Daniel Borkmann73bfd372013-12-23 14:35:55 +0100313static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src,
314 struct sk_buff *skb)
315{
316 if (!(netlink_is_kernel(dst) && netlink_is_kernel(src)))
317 netlink_deliver_tap(skb);
318}
319
Patrick McHardycd1df522013-04-17 06:47:05 +0000320static void netlink_overrun(struct sock *sk)
321{
322 struct netlink_sock *nlk = nlk_sk(sk);
323
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +0200324 if (!(nlk->flags & NETLINK_F_RECV_NO_ENOBUFS)) {
325 if (!test_and_set_bit(NETLINK_S_CONGESTED,
326 &nlk_sk(sk)->state)) {
Patrick McHardycd1df522013-04-17 06:47:05 +0000327 sk->sk_err = ENOBUFS;
328 sk->sk_error_report(sk);
329 }
330 }
331 atomic_inc(&sk->sk_drops);
332}
333
334static void netlink_rcv_wake(struct sock *sk)
335{
336 struct netlink_sock *nlk = nlk_sk(sk);
337
338 if (skb_queue_empty(&sk->sk_receive_queue))
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +0200339 clear_bit(NETLINK_S_CONGESTED, &nlk->state);
340 if (!test_bit(NETLINK_S_CONGESTED, &nlk->state))
Patrick McHardycd1df522013-04-17 06:47:05 +0000341 wake_up_interruptible(&nlk->wait);
342}
343
Patrick McHardycf0a0182013-04-17 06:47:00 +0000344static void netlink_skb_destructor(struct sk_buff *skb)
345{
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000346 if (is_vmalloc_addr(skb->head)) {
Pablo Neira3a365152013-06-28 03:04:23 +0200347 if (!skb->cloned ||
348 !atomic_dec_return(&(skb_shinfo(skb)->dataref)))
349 vfree(skb->head);
350
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +0000351 skb->head = NULL;
352 }
Patrick McHardy9652e932013-04-17 06:47:02 +0000353 if (skb->sk != NULL)
354 sock_rfree(skb);
Patrick McHardycf0a0182013-04-17 06:47:00 +0000355}
356
357static void netlink_skb_set_owner_r(struct sk_buff *skb, struct sock *sk)
358{
359 WARN_ON(skb->sk != NULL);
360 skb->sk = sk;
361 skb->destructor = netlink_skb_destructor;
362 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
363 sk_mem_charge(sk, skb->truesize);
364}
365
Herbert Xued5d7782016-12-05 15:28:21 +0800366static void netlink_sock_destruct(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Herbert Xu3f660d62007-05-03 03:17:14 -0700368 struct netlink_sock *nlk = nlk_sk(sk);
369
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700370 if (nlk->cb_running) {
Herbert Xued5d7782016-12-05 15:28:21 +0800371 if (nlk->cb.done)
372 nlk->cb.done(&nlk->cb);
Pravin B Shelar16b304f2013-08-15 15:31:06 -0700373 module_put(nlk->cb.module);
374 kfree_skb(nlk->cb.skb);
Herbert Xu3f660d62007-05-03 03:17:14 -0700375 }
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 skb_queue_purge(&sk->sk_receive_queue);
378
379 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800380 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return;
382 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700383
384 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
385 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
386 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Herbert Xu707693c2016-11-28 19:22:12 +0800389static void netlink_sock_destruct_work(struct work_struct *work)
390{
391 struct netlink_sock *nlk = container_of(work, struct netlink_sock,
392 work);
393
Herbert Xued5d7782016-12-05 15:28:21 +0800394 sk_free(&nlk->sk);
Herbert Xu707693c2016-11-28 19:22:12 +0800395}
396
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800397/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
398 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
400 * this, _but_ remember, it adds useless work on UP machines.
401 */
402
Johannes Bergd136f1b2009-09-12 03:03:15 +0000403void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800404 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000406 might_sleep();
407
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700408 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (atomic_read(&nl_table_users)) {
411 DECLARE_WAITQUEUE(wait, current);
412
413 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800414 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 set_current_state(TASK_UNINTERRUPTIBLE);
416 if (atomic_read(&nl_table_users) == 0)
417 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700418 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700420 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
423 __set_current_state(TASK_RUNNING);
424 remove_wait_queue(&nl_table_wait, &wait);
425 }
426}
427
Johannes Bergd136f1b2009-09-12 03:03:15 +0000428void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800429 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700431 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 wake_up(&nl_table_wait);
433}
434
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800435static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436netlink_lock_table(void)
437{
438 /* read_lock() synchronizes us to netlink_table_grab */
439
440 read_lock(&nl_table_lock);
441 atomic_inc(&nl_table_users);
442 read_unlock(&nl_table_lock);
443}
444
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800445static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446netlink_unlock_table(void)
447{
448 if (atomic_dec_and_test(&nl_table_users))
449 wake_up(&nl_table_wait);
450}
451
Thomas Grafe3416942014-08-02 11:47:45 +0200452struct netlink_compare_arg
Gao fengda12c902013-06-06 14:49:11 +0800453{
Herbert Xuc428ecd2015-03-20 21:57:01 +1100454 possible_net_t pnet;
Thomas Grafe3416942014-08-02 11:47:45 +0200455 u32 portid;
456};
457
Herbert Xu8f2ddaa2015-03-21 14:14:03 +1100458/* Doing sizeof directly may yield 4 extra bytes on 64-bit. */
459#define netlink_compare_arg_len \
460 (offsetof(struct netlink_compare_arg, portid) + sizeof(u32))
Thomas Grafe3416942014-08-02 11:47:45 +0200461
Herbert Xuc428ecd2015-03-20 21:57:01 +1100462static inline int netlink_compare(struct rhashtable_compare_arg *arg,
463 const void *ptr)
464{
465 const struct netlink_compare_arg *x = arg->key;
466 const struct netlink_sock *nlk = ptr;
467
Herbert Xuda314c92015-09-22 11:38:56 +0800468 return nlk->portid != x->portid ||
Herbert Xuc428ecd2015-03-20 21:57:01 +1100469 !net_eq(sock_net(&nlk->sk), read_pnet(&x->pnet));
470}
471
472static void netlink_compare_arg_init(struct netlink_compare_arg *arg,
473 struct net *net, u32 portid)
474{
475 memset(arg, 0, sizeof(*arg));
476 write_pnet(&arg->pnet, net);
477 arg->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +0200478}
479
480static struct sock *__netlink_lookup(struct netlink_table *table, u32 portid,
481 struct net *net)
482{
Herbert Xuc428ecd2015-03-20 21:57:01 +1100483 struct netlink_compare_arg arg;
Thomas Grafe3416942014-08-02 11:47:45 +0200484
Herbert Xuc428ecd2015-03-20 21:57:01 +1100485 netlink_compare_arg_init(&arg, net, portid);
486 return rhashtable_lookup_fast(&table->hash, &arg,
487 netlink_rhashtable_params);
Gao fengda12c902013-06-06 14:49:11 +0800488}
489
Herbert Xuc428ecd2015-03-20 21:57:01 +1100490static int __netlink_insert(struct netlink_table *table, struct sock *sk)
Ying Xuec5adde92015-01-12 14:52:23 +0800491{
Herbert Xuc428ecd2015-03-20 21:57:01 +1100492 struct netlink_compare_arg arg;
Ying Xuec5adde92015-01-12 14:52:23 +0800493
Herbert Xuda314c92015-09-22 11:38:56 +0800494 netlink_compare_arg_init(&arg, sock_net(sk), nlk_sk(sk)->portid);
Herbert Xuc428ecd2015-03-20 21:57:01 +1100495 return rhashtable_lookup_insert_key(&table->hash, &arg,
496 &nlk_sk(sk)->node,
497 netlink_rhashtable_params);
Ying Xuec5adde92015-01-12 14:52:23 +0800498}
499
Eric W. Biederman15e47302012-09-07 20:12:54 +0000500static struct sock *netlink_lookup(struct net *net, int protocol, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Gao fengda12c902013-06-06 14:49:11 +0800502 struct netlink_table *table = &nl_table[protocol];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Thomas Grafe3416942014-08-02 11:47:45 +0200505 rcu_read_lock();
506 sk = __netlink_lookup(table, portid, net);
507 if (sk)
508 sock_hold(sk);
509 rcu_read_unlock();
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return sk;
512}
513
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800514static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Patrick McHardy4277a082006-03-20 18:52:01 -0800516static void
517netlink_update_listeners(struct sock *sk)
518{
519 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Patrick McHardy4277a082006-03-20 18:52:01 -0800520 unsigned long mask;
521 unsigned int i;
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000522 struct listeners *listeners;
523
524 listeners = nl_deref_protected(tbl->listeners);
525 if (!listeners)
526 return;
Patrick McHardy4277a082006-03-20 18:52:01 -0800527
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700528 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800529 mask = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800530 sk_for_each_bound(sk, &tbl->mc_list) {
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700531 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
532 mask |= nlk_sk(sk)->groups[i];
533 }
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000534 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800535 }
536 /* this function is only called with the netlink table "grabbed", which
537 * makes sure updates are visible before bind or setsockopt return. */
538}
539
Herbert Xu8ea65f42015-01-26 14:02:56 +1100540static int netlink_insert(struct sock *sk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Gao fengda12c902013-06-06 14:49:11 +0800542 struct netlink_table *table = &nl_table[sk->sk_protocol];
Herbert Xu919d9db2015-01-16 17:23:48 +1100543 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Ying Xuec5adde92015-01-12 14:52:23 +0800545 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Herbert Xuda314c92015-09-22 11:38:56 +0800547 err = nlk_sk(sk)->portid == portid ? 0 : -EBUSY;
548 if (nlk_sk(sk)->bound)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 goto err;
550
551 err = -ENOMEM;
Thomas Graf97defe12015-01-02 23:00:20 +0100552 if (BITS_PER_LONG > 32 &&
553 unlikely(atomic_read(&table->hash.nelems) >= UINT_MAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 goto err;
555
Herbert Xuda314c92015-09-22 11:38:56 +0800556 nlk_sk(sk)->portid = portid;
Thomas Grafe3416942014-08-02 11:47:45 +0200557 sock_hold(sk);
Herbert Xu919d9db2015-01-16 17:23:48 +1100558
Herbert Xuc428ecd2015-03-20 21:57:01 +1100559 err = __netlink_insert(table, sk);
560 if (err) {
Daniel Borkmann4e7c1332015-08-07 00:26:41 +0200561 /* In case the hashtable backend returns with -EBUSY
562 * from here, it must not escape to the caller.
563 */
564 if (unlikely(err == -EBUSY))
565 err = -EOVERFLOW;
Herbert Xuc428ecd2015-03-20 21:57:01 +1100566 if (err == -EEXIST)
567 err = -EADDRINUSE;
Ying Xuec5adde92015-01-12 14:52:23 +0800568 sock_put(sk);
Herbert Xu1f770c02015-09-18 19:16:50 +0800569 goto err;
Herbert Xu919d9db2015-01-16 17:23:48 +1100570 }
571
Herbert Xuda314c92015-09-22 11:38:56 +0800572 /* We need to ensure that the socket is hashed and visible. */
573 smp_wmb();
574 nlk_sk(sk)->bound = portid;
Herbert Xu1f770c02015-09-18 19:16:50 +0800575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576err:
Ying Xuec5adde92015-01-12 14:52:23 +0800577 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return err;
579}
580
581static void netlink_remove(struct sock *sk)
582{
Thomas Grafe3416942014-08-02 11:47:45 +0200583 struct netlink_table *table;
584
Thomas Grafe3416942014-08-02 11:47:45 +0200585 table = &nl_table[sk->sk_protocol];
Herbert Xuc428ecd2015-03-20 21:57:01 +1100586 if (!rhashtable_remove_fast(&table->hash, &nlk_sk(sk)->node,
587 netlink_rhashtable_params)) {
Thomas Grafe3416942014-08-02 11:47:45 +0200588 WARN_ON(atomic_read(&sk->sk_refcnt) == 1);
589 __sock_put(sk);
590 }
Thomas Grafe3416942014-08-02 11:47:45 +0200591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 netlink_table_grab();
Johannes Bergb10dcb32014-12-22 18:56:37 +0100593 if (nlk_sk(sk)->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 __sk_del_bind_node(sk);
Johannes Bergb10dcb32014-12-22 18:56:37 +0100595 netlink_update_listeners(sk);
596 }
Johannes Bergee1c24422015-01-16 11:37:14 +0100597 if (sk->sk_protocol == NETLINK_GENERIC)
598 atomic_inc(&genl_sk_destructing_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 netlink_table_ungrab();
600}
601
602static struct proto netlink_proto = {
603 .name = "NETLINK",
604 .owner = THIS_MODULE,
605 .obj_size = sizeof(struct netlink_sock),
606};
607
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700608static int __netlink_create(struct net *net, struct socket *sock,
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500609 struct mutex *cb_mutex, int protocol,
610 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 struct sock *sk;
613 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700614
615 sock->ops = &netlink_ops;
616
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500617 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto, kern);
Patrick McHardyab33a172005-08-14 19:31:36 -0700618 if (!sk)
619 return -ENOMEM;
620
621 sock_init_data(sock, sk);
622
623 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +0000624 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -0700625 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +0000626 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -0700627 nlk->cb_mutex = &nlk->cb_def_mutex;
628 mutex_init(nlk->cb_mutex);
Herbert Xu7ff28d32017-03-14 18:25:57 +0800629 lockdep_set_class_and_name(nlk->cb_mutex,
630 nlk_cb_mutex_keys + protocol,
631 nlk_cb_mutex_key_strings[protocol]);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700632 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700633 init_waitqueue_head(&nlk->wait);
634
635 sk->sk_destruct = netlink_sock_destruct;
636 sk->sk_protocol = protocol;
637 return 0;
638}
639
Eric Paris3f378b62009-11-05 22:18:14 -0800640static int netlink_create(struct net *net, struct socket *sock, int protocol,
641 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -0700642{
643 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700644 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700645 struct netlink_sock *nlk;
Johannes Berg023e2cf2014-12-23 21:00:06 +0100646 int (*bind)(struct net *net, int group);
647 void (*unbind)(struct net *net, int group);
Patrick McHardyab33a172005-08-14 19:31:36 -0700648 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 sock->state = SS_UNCONNECTED;
651
652 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
653 return -ESOCKTNOSUPPORT;
654
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800655 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return -EPROTONOSUPPORT;
657
Patrick McHardy77247bb2005-08-14 19:27:13 -0700658 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700659#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700660 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700661 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700662 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700663 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700664 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700665#endif
666 if (nl_table[protocol].registered &&
667 try_module_get(nl_table[protocol].module))
668 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000669 else
670 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700671 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000672 bind = nl_table[protocol].bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400673 unbind = nl_table[protocol].unbind;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700674 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700675
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000676 if (err < 0)
677 goto out;
678
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500679 err = __netlink_create(net, sock, cb_mutex, protocol, kern);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800680 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700681 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
David S. Miller6f756a82008-11-23 17:34:03 -0800683 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800684 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800685 local_bh_enable();
686
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700687 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700688 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000689 nlk->netlink_bind = bind;
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400690 nlk->netlink_unbind = unbind;
Patrick McHardyab33a172005-08-14 19:31:36 -0700691out:
692 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Patrick McHardyab33a172005-08-14 19:31:36 -0700694out_module:
695 module_put(module);
696 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Thomas Graf21e49022015-01-02 23:00:22 +0100699static void deferred_put_nlk_sk(struct rcu_head *head)
700{
701 struct netlink_sock *nlk = container_of(head, struct netlink_sock, rcu);
Herbert Xued5d7782016-12-05 15:28:21 +0800702 struct sock *sk = &nlk->sk;
Thomas Graf21e49022015-01-02 23:00:22 +0100703
Herbert Xued5d7782016-12-05 15:28:21 +0800704 if (!atomic_dec_and_test(&sk->sk_refcnt))
705 return;
706
707 if (nlk->cb_running && nlk->cb.done) {
708 INIT_WORK(&nlk->work, netlink_sock_destruct_work);
709 schedule_work(&nlk->work);
710 return;
711 }
712
713 sk_free(sk);
Thomas Graf21e49022015-01-02 23:00:22 +0100714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716static int netlink_release(struct socket *sock)
717{
718 struct sock *sk = sock->sk;
719 struct netlink_sock *nlk;
720
721 if (!sk)
722 return 0;
723
724 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700725 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 nlk = nlk_sk(sk);
727
Herbert Xu3f660d62007-05-03 03:17:14 -0700728 /*
729 * OK. Socket is unlinked, any packets that arrive now
730 * will be purged.
731 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Johannes Bergee1c24422015-01-16 11:37:14 +0100733 /* must not acquire netlink_table_lock in any way again before unbind
734 * and notifying genetlink is done as otherwise it might deadlock
735 */
736 if (nlk->netlink_unbind) {
737 int i;
738
739 for (i = 0; i < nlk->ngroups; i++)
740 if (test_bit(i, nlk->groups))
741 nlk->netlink_unbind(sock_net(sk), i + 1);
742 }
743 if (sk->sk_protocol == NETLINK_GENERIC &&
744 atomic_dec_return(&genl_sk_destructing_cnt) == 0)
745 wake_up(&genl_sk_destructing_waitq);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 sock->sk = NULL;
748 wake_up_interruptible_all(&nlk->wait);
749
750 skb_queue_purge(&sk->sk_write_queue);
751
Dmitry Ivanove2726022016-04-07 09:31:38 +0200752 if (nlk->portid && nlk->bound) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900754 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 .protocol = sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000756 .portid = nlk->portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 };
Alan Sterne041c682006-03-27 01:16:30 -0800758 atomic_notifier_call_chain(&netlink_chain,
759 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900760 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700761
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800762 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700763
Denis V. Lunevaed81562007-10-10 21:14:32 -0700764 if (netlink_is_kernel(sk)) {
Johannes Bergb10dcb32014-12-22 18:56:37 +0100765 netlink_table_grab();
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800766 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
767 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet6d772ac2012-10-18 03:21:55 +0000768 struct listeners *old;
769
770 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
771 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
772 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800773 nl_table[sk->sk_protocol].module = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000774 nl_table[sk->sk_protocol].bind = NULL;
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400775 nl_table[sk->sk_protocol].unbind = NULL;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000776 nl_table[sk->sk_protocol].flags = 0;
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800777 nl_table[sk->sk_protocol].registered = 0;
778 }
Johannes Bergb10dcb32014-12-22 18:56:37 +0100779 netlink_table_ungrab();
Eric Dumazet658cb352012-04-22 21:30:21 +0000780 }
Patrick McHardy77247bb2005-08-14 19:27:13 -0700781
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700782 kfree(nlk->groups);
783 nlk->groups = NULL;
784
Eric Dumazet37558102008-11-24 14:05:22 -0800785 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800786 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800787 local_bh_enable();
Thomas Graf21e49022015-01-02 23:00:22 +0100788 call_rcu(&nlk->rcu, deferred_put_nlk_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 0;
790}
791
792static int netlink_autobind(struct socket *sock)
793{
794 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900795 struct net *net = sock_net(sk);
Gao fengda12c902013-06-06 14:49:11 +0800796 struct netlink_table *table = &nl_table[sk->sk_protocol];
Eric W. Biederman15e47302012-09-07 20:12:54 +0000797 s32 portid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int err;
Herbert Xub9fbe702015-05-17 10:45:34 +0800799 s32 rover = -4096;
800 bool ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802retry:
803 cond_resched();
Thomas Grafe3416942014-08-02 11:47:45 +0200804 rcu_read_lock();
Herbert Xub9fbe702015-05-17 10:45:34 +0800805 ok = !__netlink_lookup(table, portid, net);
806 rcu_read_unlock();
807 if (!ok) {
Thomas Grafe3416942014-08-02 11:47:45 +0200808 /* Bind collision, search negative portid values. */
Herbert Xub9fbe702015-05-17 10:45:34 +0800809 if (rover == -4096)
810 /* rover will be in range [S32_MIN, -4097] */
811 rover = S32_MIN + prandom_u32_max(-4096 - S32_MIN);
812 else if (rover >= -4096)
Thomas Grafe3416942014-08-02 11:47:45 +0200813 rover = -4097;
Herbert Xub9fbe702015-05-17 10:45:34 +0800814 portid = rover--;
Thomas Grafe3416942014-08-02 11:47:45 +0200815 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Herbert Xu8ea65f42015-01-26 14:02:56 +1100818 err = netlink_insert(sk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (err == -EADDRINUSE)
820 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700821
822 /* If 2 threads race to autobind, that is fine. */
823 if (err == -EBUSY)
824 err = 0;
825
826 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -0700829/**
830 * __netlink_ns_capable - General netlink message capability test
831 * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace.
832 * @user_ns: The user namespace of the capability to use
833 * @cap: The capability to use
834 *
835 * Test to see if the opener of the socket we received the message
836 * from had when the netlink socket was created and the sender of the
837 * message has has the capability @cap in the user namespace @user_ns.
838 */
839bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
840 struct user_namespace *user_ns, int cap)
841{
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -0700842 return ((nsp->flags & NETLINK_SKB_DST) ||
843 file_ns_capable(nsp->sk->sk_socket->file, user_ns, cap)) &&
844 ns_capable(user_ns, cap);
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -0700845}
846EXPORT_SYMBOL(__netlink_ns_capable);
847
848/**
849 * netlink_ns_capable - General netlink message capability test
850 * @skb: socket buffer holding a netlink command from userspace
851 * @user_ns: The user namespace of the capability to use
852 * @cap: The capability to use
853 *
854 * Test to see if the opener of the socket we received the message
855 * from had when the netlink socket was created and the sender of the
856 * message has has the capability @cap in the user namespace @user_ns.
857 */
858bool netlink_ns_capable(const struct sk_buff *skb,
859 struct user_namespace *user_ns, int cap)
860{
861 return __netlink_ns_capable(&NETLINK_CB(skb), user_ns, cap);
862}
863EXPORT_SYMBOL(netlink_ns_capable);
864
865/**
866 * netlink_capable - Netlink global message capability test
867 * @skb: socket buffer holding a netlink command from userspace
868 * @cap: The capability to use
869 *
870 * Test to see if the opener of the socket we received the message
871 * from had when the netlink socket was created and the sender of the
872 * message has has the capability @cap in all user namespaces.
873 */
874bool netlink_capable(const struct sk_buff *skb, int cap)
875{
876 return netlink_ns_capable(skb, &init_user_ns, cap);
877}
878EXPORT_SYMBOL(netlink_capable);
879
880/**
881 * netlink_net_capable - Netlink network namespace message capability test
882 * @skb: socket buffer holding a netlink command from userspace
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 has the capability @cap over the network namespace of
888 * the socket we received the message from.
889 */
890bool netlink_net_capable(const struct sk_buff *skb, int cap)
891{
892 return netlink_ns_capable(skb, sock_net(skb->sk)->user_ns, cap);
893}
894EXPORT_SYMBOL(netlink_net_capable);
895
Eric W. Biederman5187cd02014-04-23 14:25:48 -0700896static inline int netlink_allowed(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900897{
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000898 return (nl_table[sock->sk->sk_protocol].flags & flag) ||
Eric W. Biedermandf008c92012-11-16 03:03:07 +0000899 ns_capable(sock_net(sock->sk)->user_ns, CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900900}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700902static void
903netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
904{
905 struct netlink_sock *nlk = nlk_sk(sk);
906
907 if (nlk->subscriptions && !subscriptions)
908 __sk_del_bind_node(sk);
909 else if (!nlk->subscriptions && subscriptions)
910 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
911 nlk->subscriptions = subscriptions;
912}
913
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700914static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700915{
916 struct netlink_sock *nlk = nlk_sk(sk);
917 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700918 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700919 int err = 0;
920
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700921 netlink_table_grab();
922
Patrick McHardy513c2502005-09-06 15:43:59 -0700923 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700924 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700925 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700926 goto out_unlock;
927 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700928
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700929 if (nlk->ngroups >= groups)
930 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700931
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700932 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
933 if (new_groups == NULL) {
934 err = -ENOMEM;
935 goto out_unlock;
936 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800937 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700938 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
939
940 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700941 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700942 out_unlock:
943 netlink_table_ungrab();
944 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700945}
946
Johannes Berg02c81ab2014-12-22 18:56:35 +0100947static void netlink_undo_bind(int group, long unsigned int groups,
Johannes Berg023e2cf2014-12-23 21:00:06 +0100948 struct sock *sk)
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400949{
Johannes Berg023e2cf2014-12-23 21:00:06 +0100950 struct netlink_sock *nlk = nlk_sk(sk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400951 int undo;
952
953 if (!nlk->netlink_unbind)
954 return;
955
956 for (undo = 0; undo < group; undo++)
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +0900957 if (test_bit(undo, &groups))
Pablo Neira8b7c36d2015-01-29 10:51:53 +0100958 nlk->netlink_unbind(sock_net(sk), undo + 1);
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400959}
960
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800961static int netlink_bind(struct socket *sock, struct sockaddr *addr,
962 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900965 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct netlink_sock *nlk = nlk_sk(sk);
967 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
968 int err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400969 long unsigned int groups = nladdr->nl_groups;
Herbert Xuda314c92015-09-22 11:38:56 +0800970 bool bound;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900971
Hannes Frederic Sowa4e4b5372012-12-15 15:42:19 +0000972 if (addr_len < sizeof(struct sockaddr_nl))
973 return -EINVAL;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (nladdr->nl_family != AF_NETLINK)
976 return -EINVAL;
977
978 /* Only superuser is allowed to listen multicasts */
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400979 if (groups) {
Eric W. Biederman5187cd02014-04-23 14:25:48 -0700980 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy513c2502005-09-06 15:43:59 -0700981 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700982 err = netlink_realloc_groups(sk);
983 if (err)
984 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Herbert Xuda314c92015-09-22 11:38:56 +0800987 bound = nlk->bound;
988 if (bound) {
989 /* Ensure nlk->portid is up-to-date. */
990 smp_rmb();
991
Eric W. Biederman15e47302012-09-07 20:12:54 +0000992 if (nladdr->nl_pid != nlk->portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return -EINVAL;
Herbert Xuda314c92015-09-22 11:38:56 +0800994 }
Richard Guy Briggs4f520902014-04-22 21:31:54 -0400995
996 if (nlk->netlink_bind && groups) {
997 int group;
998
999 for (group = 0; group < nlk->ngroups; group++) {
1000 if (!test_bit(group, &groups))
1001 continue;
Pablo Neira8b7c36d2015-01-29 10:51:53 +01001002 err = nlk->netlink_bind(net, group + 1);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001003 if (!err)
1004 continue;
Johannes Berg023e2cf2014-12-23 21:00:06 +01001005 netlink_undo_bind(group, groups, sk);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001006 return err;
1007 }
1008 }
1009
Herbert Xuda314c92015-09-22 11:38:56 +08001010 /* No need for barriers here as we return to user-space without
1011 * using any of the bound attributes.
1012 */
1013 if (!bound) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 err = nladdr->nl_pid ?
Herbert Xu8ea65f42015-01-26 14:02:56 +11001015 netlink_insert(sk, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 netlink_autobind(sock);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001017 if (err) {
Johannes Berg023e2cf2014-12-23 21:00:06 +01001018 netlink_undo_bind(nlk->ngroups, groups, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return err;
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001023 if (!groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return 0;
1025
1026 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001027 netlink_update_subscriptions(sk, nlk->subscriptions +
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001028 hweight32(groups) -
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001029 hweight32(nlk->groups[0]));
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001030 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001031 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 netlink_table_ungrab();
1033
1034 return 0;
1035}
1036
1037static int netlink_connect(struct socket *sock, struct sockaddr *addr,
1038 int alen, int flags)
1039{
1040 int err = 0;
1041 struct sock *sk = sock->sk;
1042 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001043 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Changli Gao6503d962010-03-31 22:58:26 +00001045 if (alen < sizeof(addr->sa_family))
1046 return -EINVAL;
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (addr->sa_family == AF_UNSPEC) {
1049 sk->sk_state = NETLINK_UNCONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001050 nlk->dst_portid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -07001051 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 return 0;
1053 }
1054 if (addr->sa_family != AF_NETLINK)
1055 return -EINVAL;
1056
Mike Pecovnik46833a82014-02-24 21:11:16 +01001057 if ((nladdr->nl_groups || nladdr->nl_pid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001058 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return -EPERM;
1060
Herbert Xuda314c92015-09-22 11:38:56 +08001061 /* No need for barriers here as we return to user-space without
1062 * using any of the bound attributes.
1063 */
1064 if (!nlk->bound)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 err = netlink_autobind(sock);
1066
1067 if (err == 0) {
1068 sk->sk_state = NETLINK_CONNECTED;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001069 nlk->dst_portid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001070 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
1072
1073 return err;
1074}
1075
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001076static int netlink_getname(struct socket *sock, struct sockaddr *addr,
1077 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 struct sock *sk = sock->sk;
1080 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00001081 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 nladdr->nl_family = AF_NETLINK;
1084 nladdr->nl_pad = 0;
1085 *addr_len = sizeof(*nladdr);
1086
1087 if (peer) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001088 nladdr->nl_pid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001089 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001091 nladdr->nl_pid = nlk->portid;
Patrick McHardy513c2502005-09-06 15:43:59 -07001092 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094 return 0;
1095}
1096
David Decotigny025c6812016-03-21 10:15:35 -07001097static int netlink_ioctl(struct socket *sock, unsigned int cmd,
1098 unsigned long arg)
1099{
1100 /* try to hand this ioctl down to the NIC drivers.
1101 */
1102 return -ENOIOCTLCMD;
1103}
1104
Eric W. Biederman15e47302012-09-07 20:12:54 +00001105static struct sock *netlink_getsockbyportid(struct sock *ssk, u32 portid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 struct sock *sock;
1108 struct netlink_sock *nlk;
1109
Eric W. Biederman15e47302012-09-07 20:12:54 +00001110 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (!sock)
1112 return ERR_PTR(-ECONNREFUSED);
1113
1114 /* Don't bother queuing skb if kernel socket has no input function */
1115 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001116 if (sock->sk_state == NETLINK_CONNECTED &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001117 nlk->dst_portid != nlk_sk(ssk)->portid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 sock_put(sock);
1119 return ERR_PTR(-ECONNREFUSED);
1120 }
1121 return sock;
1122}
1123
1124struct sock *netlink_getsockbyfilp(struct file *filp)
1125{
Al Viro496ad9a2013-01-23 17:07:38 -05001126 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 struct sock *sock;
1128
1129 if (!S_ISSOCK(inode->i_mode))
1130 return ERR_PTR(-ENOTSOCK);
1131
1132 sock = SOCKET_I(inode)->sk;
1133 if (sock->sk_family != AF_NETLINK)
1134 return ERR_PTR(-EINVAL);
1135
1136 sock_hold(sock);
1137 return sock;
1138}
1139
Pablo Neira3a365152013-06-28 03:04:23 +02001140static struct sk_buff *netlink_alloc_large_skb(unsigned int size,
1141 int broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001142{
1143 struct sk_buff *skb;
1144 void *data;
1145
Pablo Neira3a365152013-06-28 03:04:23 +02001146 if (size <= NLMSG_GOODSIZE || broadcast)
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001147 return alloc_skb(size, GFP_KERNEL);
1148
Pablo Neira3a365152013-06-28 03:04:23 +02001149 size = SKB_DATA_ALIGN(size) +
1150 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001151
1152 data = vmalloc(size);
1153 if (data == NULL)
Pablo Neira3a365152013-06-28 03:04:23 +02001154 return NULL;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001155
Eric Dumazet2ea2f622015-04-24 16:05:01 -07001156 skb = __build_skb(data, size);
Pablo Neira3a365152013-06-28 03:04:23 +02001157 if (skb == NULL)
1158 vfree(data);
Eric Dumazet2ea2f622015-04-24 16:05:01 -07001159 else
Pablo Neira3a365152013-06-28 03:04:23 +02001160 skb->destructor = netlink_skb_destructor;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001161
1162 return skb;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165/*
1166 * Attach a skb to a netlink socket.
1167 * The caller must hold a reference to the destination socket. On error, the
1168 * reference is dropped. The skb is not send to the destination, just all
1169 * all error checks are performed and memory in the queue is reserved.
1170 * Return values:
1171 * < 0: error. skb freed, reference to sock dropped.
1172 * 0: continue
1173 * 1: repeat lookup - reference dropped while waiting for socket memory.
1174 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001175int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001176 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
1178 struct netlink_sock *nlk;
1179
1180 nlk = nlk_sk(sk);
1181
Patrick McHardy5fd96122013-04-17 06:47:03 +00001182 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Florian Westphald1b4c682016-02-18 15:03:24 +01001183 test_bit(NETLINK_S_CONGESTED, &nlk->state))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001185 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -07001186 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 netlink_overrun(sk);
1188 sock_put(sk);
1189 kfree_skb(skb);
1190 return -EAGAIN;
1191 }
1192
1193 __set_current_state(TASK_INTERRUPTIBLE);
1194 add_wait_queue(&nlk->wait, &wait);
1195
1196 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001197 test_bit(NETLINK_S_CONGESTED, &nlk->state)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001199 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 __set_current_state(TASK_RUNNING);
1202 remove_wait_queue(&nlk->wait, &wait);
1203 sock_put(sk);
1204
1205 if (signal_pending(current)) {
1206 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -08001207 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209 return 1;
1210 }
Patrick McHardycf0a0182013-04-17 06:47:00 +00001211 netlink_skb_set_owner_r(skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return 0;
1213}
1214
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001215static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 int len = skb->len;
1218
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02001219 netlink_deliver_tap(skb);
1220
Florian Westphald1b4c682016-02-18 15:03:24 +01001221 skb_queue_tail(&sk->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -04001222 sk->sk_data_ready(sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001223 return len;
1224}
1225
1226int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1227{
1228 int len = __netlink_sendskb(sk, skb);
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 sock_put(sk);
1231 return len;
1232}
1233
1234void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
1235{
1236 kfree_skb(skb);
1237 sock_put(sk);
1238}
1239
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001240static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 int delta;
1243
Patrick McHardy1298ca42013-04-17 06:46:59 +00001244 WARN_ON(skb->sk != NULL);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001245 delta = skb->end - skb->tail;
Pablo Neira Ayusoc05cdb12013-06-03 09:46:28 +00001246 if (is_vmalloc_addr(skb->head) || delta * 2 < skb->truesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return skb;
1248
1249 if (skb_shared(skb)) {
1250 struct sk_buff *nskb = skb_clone(skb, allocation);
1251 if (!nskb)
1252 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +00001253 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 skb = nskb;
1255 }
1256
1257 if (!pskb_expand_head(skb, 0, -delta, allocation))
1258 skb->truesize -= delta;
1259
1260 return skb;
1261}
1262
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001263static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
1264 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001265{
1266 int ret;
1267 struct netlink_sock *nlk = nlk_sk(sk);
1268
1269 ret = -ECONNREFUSED;
1270 if (nlk->netlink_rcv != NULL) {
1271 ret = skb->len;
Patrick McHardycf0a0182013-04-17 06:47:00 +00001272 netlink_skb_set_owner_r(skb, sk);
Patrick McHardye32123e2013-04-17 06:46:57 +00001273 NETLINK_CB(skb).sk = ssk;
Daniel Borkmann73bfd372013-12-23 14:35:55 +01001274 netlink_deliver_tap_kernel(sk, ssk, skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001275 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001276 consume_skb(skb);
1277 } else {
1278 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001279 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001280 sock_put(sk);
1281 return ret;
1282}
1283
1284int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001285 u32 portid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 struct sock *sk;
1288 int err;
1289 long timeo;
1290
1291 skb = netlink_trim(skb, gfp_any());
1292
1293 timeo = sock_sndtimeo(ssk, nonblock);
1294retry:
Eric W. Biederman15e47302012-09-07 20:12:54 +00001295 sk = netlink_getsockbyportid(ssk, portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (IS_ERR(sk)) {
1297 kfree_skb(skb);
1298 return PTR_ERR(sk);
1299 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001300 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -06001301 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001302
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001303 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -07001304 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001305 kfree_skb(skb);
1306 sock_put(sk);
1307 return err;
1308 }
1309
Denis V. Lunev9457afe2008-06-05 11:23:39 -07001310 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (err == 1)
1312 goto retry;
1313 if (err)
1314 return err;
1315
Denis V. Lunev7ee015e2007-10-10 21:14:03 -07001316 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001318EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Patrick McHardy4277a082006-03-20 18:52:01 -08001320int netlink_has_listeners(struct sock *sk, unsigned int group)
1321{
1322 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001323 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -08001324
Denis V. Lunevaed81562007-10-10 21:14:32 -07001325 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001326
1327 rcu_read_lock();
1328 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
1329
Eric Dumazet6d772ac2012-10-18 03:21:55 +00001330 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001331 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001332
1333 rcu_read_unlock();
1334
Patrick McHardy4277a082006-03-20 18:52:01 -08001335 return res;
1336}
1337EXPORT_SYMBOL_GPL(netlink_has_listeners);
1338
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001339static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 struct netlink_sock *nlk = nlk_sk(sk);
1342
1343 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001344 !test_bit(NETLINK_S_CONGESTED, &nlk->state)) {
Patrick McHardycf0a0182013-04-17 06:47:00 +00001345 netlink_skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001346 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +00001347 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349 return -1;
1350}
1351
1352struct netlink_broadcast_data {
1353 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001354 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001355 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 u32 group;
1357 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001358 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 int congested;
1360 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001361 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001363 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1364 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365};
1366
Rami Rosen46c95212014-07-01 21:17:35 +03001367static void do_one_broadcast(struct sock *sk,
1368 struct netlink_broadcast_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct netlink_sock *nlk = nlk_sk(sk);
1371 int val;
1372
1373 if (p->exclude_sk == sk)
Rami Rosen46c95212014-07-01 21:17:35 +03001374 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Eric W. Biederman15e47302012-09-07 20:12:54 +00001376 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001377 !test_bit(p->group - 1, nlk->groups))
Rami Rosen46c95212014-07-01 21:17:35 +03001378 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001380 if (!net_eq(sock_net(sk), p->net)) {
1381 if (!(nlk->flags & NETLINK_F_LISTEN_ALL_NSID))
1382 return;
1383
1384 if (!peernet_has_id(sock_net(sk), p->net))
1385 return;
1386
1387 if (!file_ns_capable(sk->sk_socket->file, p->net->user_ns,
1388 CAP_NET_BROADCAST))
1389 return;
1390 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (p->failure) {
1393 netlink_overrun(sk);
Rami Rosen46c95212014-07-01 21:17:35 +03001394 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
1397 sock_hold(sk);
1398 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001399 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 p->skb2 = skb_clone(p->skb, p->allocation);
1401 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001402 p->skb2 = skb_get(p->skb);
1403 /*
1404 * skb ownership may have been set when
1405 * delivered to a previous socket.
1406 */
1407 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 }
1410 if (p->skb2 == NULL) {
1411 netlink_overrun(sk);
1412 /* Clone failed. Notify ALL listeners. */
1413 p->failure = 1;
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001414 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001415 p->delivery_failure = 1;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001416 goto out;
1417 }
1418 if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001419 kfree_skb(p->skb2);
1420 p->skb2 = NULL;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001421 goto out;
1422 }
1423 if (sk_filter(sk, p->skb2)) {
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001424 kfree_skb(p->skb2);
1425 p->skb2 = NULL;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001426 goto out;
1427 }
1428 NETLINK_CB(p->skb2).nsid = peernet2id(sock_net(sk), p->net);
1429 NETLINK_CB(p->skb2).nsid_is_set = true;
1430 val = netlink_broadcast_deliver(sk, p->skb2);
1431 if (val < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 netlink_overrun(sk);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001433 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001434 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 } else {
1436 p->congested |= val;
1437 p->delivered = 1;
1438 p->skb2 = NULL;
1439 }
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001440out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Eric W. Biederman15e47302012-09-07 20:12:54 +00001444int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001445 u32 group, gfp_t allocation,
1446 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1447 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001449 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 struct netlink_broadcast_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 struct sock *sk;
1452
1453 skb = netlink_trim(skb, allocation);
1454
1455 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001456 info.net = net;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001457 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 info.group = group;
1459 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001460 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 info.congested = 0;
1462 info.delivered = 0;
1463 info.allocation = allocation;
1464 info.skb = skb;
1465 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001466 info.tx_filter = filter;
1467 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 /* While we sleep in clone, do not allow to change socket list */
1470
1471 netlink_lock_table();
1472
Sasha Levinb67bfe02013-02-27 17:06:00 -08001473 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 do_one_broadcast(sk, &info);
1475
Neil Horman70d4bf62010-07-20 06:45:56 +00001476 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 netlink_unlock_table();
1479
Neil Horman70d4bf62010-07-20 06:45:56 +00001480 if (info.delivery_failure) {
1481 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001482 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001483 }
1484 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (info.delivered) {
Mel Gormand0164ad2015-11-06 16:28:21 -08001487 if (info.congested && gfpflags_allow_blocking(allocation))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 yield();
1489 return 0;
1490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return -ESRCH;
1492}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001493EXPORT_SYMBOL(netlink_broadcast_filtered);
1494
Eric W. Biederman15e47302012-09-07 20:12:54 +00001495int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 portid,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001496 u32 group, gfp_t allocation)
1497{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001498 return netlink_broadcast_filtered(ssk, skb, portid, group, allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001499 NULL, NULL);
1500}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001501EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503struct netlink_set_err_data {
1504 struct sock *exclude_sk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001505 u32 portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 u32 group;
1507 int code;
1508};
1509
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001510static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001513 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 if (sk == p->exclude_sk)
1516 goto out;
1517
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001518 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001519 goto out;
1520
Eric W. Biederman15e47302012-09-07 20:12:54 +00001521 if (nlk->portid == p->portid || p->group - 1 >= nlk->ngroups ||
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001522 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 goto out;
1524
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001525 if (p->code == ENOBUFS && nlk->flags & NETLINK_F_RECV_NO_ENOBUFS) {
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001526 ret = 1;
1527 goto out;
1528 }
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 sk->sk_err = p->code;
1531 sk->sk_error_report(sk);
1532out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001533 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001536/**
1537 * netlink_set_err - report error to broadcast listeners
1538 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
Eric W. Biederman15e47302012-09-07 20:12:54 +00001539 * @portid: the PORTID of a process that we want to skip (if any)
Johannes Berg840e93f22013-11-19 10:35:40 +01001540 * @group: the broadcast group that will notice the error
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001541 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001542 *
1543 * This function returns the number of broadcast listeners that have set the
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001544 * NETLINK_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001545 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001546int netlink_set_err(struct sock *ssk, u32 portid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 struct netlink_set_err_data info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001550 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 info.exclude_sk = ssk;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001553 info.portid = portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001555 /* sk->sk_err wants a positive error value */
1556 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 read_lock(&nl_table_lock);
1559
Sasha Levinb67bfe02013-02-27 17:06:00 -08001560 sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001561 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001564 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001566EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Johannes Berg84659eb2007-07-18 15:47:05 -07001568/* must be called with netlink table grabbed */
1569static void netlink_update_socket_mc(struct netlink_sock *nlk,
1570 unsigned int group,
1571 int is_new)
1572{
1573 int old, new = !!is_new, subscriptions;
1574
1575 old = test_bit(group - 1, nlk->groups);
1576 subscriptions = nlk->subscriptions - old + new;
1577 if (new)
1578 __set_bit(group - 1, nlk->groups);
1579 else
1580 __clear_bit(group - 1, nlk->groups);
1581 netlink_update_subscriptions(&nlk->sk, subscriptions);
1582 netlink_update_listeners(&nlk->sk);
1583}
1584
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001585static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001586 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001587{
1588 struct sock *sk = sock->sk;
1589 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001590 unsigned int val = 0;
1591 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001592
1593 if (level != SOL_NETLINK)
1594 return -ENOPROTOOPT;
1595
Florian Westphald1b4c682016-02-18 15:03:24 +01001596 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001597 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001598 return -EFAULT;
1599
1600 switch (optname) {
1601 case NETLINK_PKTINFO:
1602 if (val)
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001603 nlk->flags |= NETLINK_F_RECV_PKTINFO;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001604 else
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001605 nlk->flags &= ~NETLINK_F_RECV_PKTINFO;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001606 err = 0;
1607 break;
1608 case NETLINK_ADD_MEMBERSHIP:
1609 case NETLINK_DROP_MEMBERSHIP: {
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001610 if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001611 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001612 err = netlink_realloc_groups(sk);
1613 if (err)
1614 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001615 if (!val || val - 1 >= nlk->ngroups)
1616 return -EINVAL;
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04001617 if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
Johannes Berg023e2cf2014-12-23 21:00:06 +01001618 err = nlk->netlink_bind(sock_net(sk), val);
Richard Guy Briggs4f520902014-04-22 21:31:54 -04001619 if (err)
1620 return err;
1621 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001622 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001623 netlink_update_socket_mc(nlk, val,
1624 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001625 netlink_table_ungrab();
Richard Guy Briggs7774d5e2014-04-22 21:31:55 -04001626 if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
Johannes Berg023e2cf2014-12-23 21:00:06 +01001627 nlk->netlink_unbind(sock_net(sk), val);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001628
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001629 err = 0;
1630 break;
1631 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001632 case NETLINK_BROADCAST_ERROR:
1633 if (val)
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001634 nlk->flags |= NETLINK_F_BROADCAST_SEND_ERROR;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001635 else
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001636 nlk->flags &= ~NETLINK_F_BROADCAST_SEND_ERROR;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001637 err = 0;
1638 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001639 case NETLINK_NO_ENOBUFS:
1640 if (val) {
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001641 nlk->flags |= NETLINK_F_RECV_NO_ENOBUFS;
1642 clear_bit(NETLINK_S_CONGESTED, &nlk->state);
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001643 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00001644 } else {
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001645 nlk->flags &= ~NETLINK_F_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001646 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001647 err = 0;
1648 break;
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001649 case NETLINK_LISTEN_ALL_NSID:
1650 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_BROADCAST))
1651 return -EPERM;
1652
1653 if (val)
1654 nlk->flags |= NETLINK_F_LISTEN_ALL_NSID;
1655 else
1656 nlk->flags &= ~NETLINK_F_LISTEN_ALL_NSID;
1657 err = 0;
1658 break;
Christophe Ricard0a6a3a22015-08-28 07:07:48 +02001659 case NETLINK_CAP_ACK:
1660 if (val)
1661 nlk->flags |= NETLINK_F_CAP_ACK;
1662 else
1663 nlk->flags &= ~NETLINK_F_CAP_ACK;
1664 err = 0;
1665 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001666 default:
1667 err = -ENOPROTOOPT;
1668 }
1669 return err;
1670}
1671
1672static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001673 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001674{
1675 struct sock *sk = sock->sk;
1676 struct netlink_sock *nlk = nlk_sk(sk);
1677 int len, val, err;
1678
1679 if (level != SOL_NETLINK)
1680 return -ENOPROTOOPT;
1681
1682 if (get_user(len, optlen))
1683 return -EFAULT;
1684 if (len < 0)
1685 return -EINVAL;
1686
1687 switch (optname) {
1688 case NETLINK_PKTINFO:
1689 if (len < sizeof(int))
1690 return -EINVAL;
1691 len = sizeof(int);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001692 val = nlk->flags & NETLINK_F_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001693 if (put_user(len, optlen) ||
1694 put_user(val, optval))
1695 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001696 err = 0;
1697 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001698 case NETLINK_BROADCAST_ERROR:
1699 if (len < sizeof(int))
1700 return -EINVAL;
1701 len = sizeof(int);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001702 val = nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR ? 1 : 0;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001703 if (put_user(len, optlen) ||
1704 put_user(val, optval))
1705 return -EFAULT;
1706 err = 0;
1707 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001708 case NETLINK_NO_ENOBUFS:
1709 if (len < sizeof(int))
1710 return -EINVAL;
1711 len = sizeof(int);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001712 val = nlk->flags & NETLINK_F_RECV_NO_ENOBUFS ? 1 : 0;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001713 if (put_user(len, optlen) ||
1714 put_user(val, optval))
1715 return -EFAULT;
1716 err = 0;
1717 break;
David Herrmannb42be382015-06-17 17:14:33 +02001718 case NETLINK_LIST_MEMBERSHIPS: {
1719 int pos, idx, shift;
1720
1721 err = 0;
David Herrmann47191d62015-10-21 11:47:43 +02001722 netlink_lock_table();
David Herrmannb42be382015-06-17 17:14:33 +02001723 for (pos = 0; pos * 8 < nlk->ngroups; pos += sizeof(u32)) {
1724 if (len - pos < sizeof(u32))
1725 break;
1726
1727 idx = pos / sizeof(unsigned long);
1728 shift = (pos % sizeof(unsigned long)) * 8;
1729 if (put_user((u32)(nlk->groups[idx] >> shift),
1730 (u32 __user *)(optval + pos))) {
1731 err = -EFAULT;
1732 break;
1733 }
1734 }
1735 if (put_user(ALIGN(nlk->ngroups / 8, sizeof(u32)), optlen))
1736 err = -EFAULT;
David Herrmann47191d62015-10-21 11:47:43 +02001737 netlink_unlock_table();
David Herrmannb42be382015-06-17 17:14:33 +02001738 break;
1739 }
Christophe Ricard0a6a3a22015-08-28 07:07:48 +02001740 case NETLINK_CAP_ACK:
1741 if (len < sizeof(int))
1742 return -EINVAL;
1743 len = sizeof(int);
1744 val = nlk->flags & NETLINK_F_CAP_ACK ? 1 : 0;
1745 if (put_user(len, optlen) ||
1746 put_user(val, optval))
1747 return -EFAULT;
1748 err = 0;
1749 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001750 default:
1751 err = -ENOPROTOOPT;
1752 }
1753 return err;
1754}
1755
1756static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1757{
1758 struct nl_pktinfo info;
1759
1760 info.group = NETLINK_CB(skb).dst_group;
1761 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1762}
1763
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001764static void netlink_cmsg_listen_all_nsid(struct sock *sk, struct msghdr *msg,
1765 struct sk_buff *skb)
1766{
1767 if (!NETLINK_CB(skb).nsid_is_set)
1768 return;
1769
1770 put_cmsg(msg, SOL_NETLINK, NETLINK_LISTEN_ALL_NSID, sizeof(int),
1771 &NETLINK_CB(skb).nsid);
1772}
1773
Ying Xue1b784142015-03-02 15:37:48 +08001774static int netlink_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 struct sock *sk = sock->sk;
1777 struct netlink_sock *nlk = nlk_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001778 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001779 u32 dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001780 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 struct sk_buff *skb;
1782 int err;
1783 struct scm_cookie scm;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07001784 u32 netlink_skb_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 if (msg->msg_flags&MSG_OOB)
1787 return -EOPNOTSUPP;
1788
Christoph Hellwig7cc05662015-01-28 18:04:53 +01001789 err = scm_send(sock, msg, &scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (err < 0)
1791 return err;
1792
1793 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001794 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001796 goto out;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001797 dst_portid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001798 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001799 err = -EPERM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001800 if ((dst_group || dst_portid) &&
Eric W. Biederman5187cd02014-04-23 14:25:48 -07001801 !netlink_allowed(sock, NL_CFG_F_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001802 goto out;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07001803 netlink_skb_flags |= NETLINK_SKB_DST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001805 dst_portid = nlk->dst_portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001806 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
1808
Herbert Xuda314c92015-09-22 11:38:56 +08001809 if (!nlk->bound) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 err = netlink_autobind(sock);
1811 if (err)
1812 goto out;
Herbert Xuda314c92015-09-22 11:38:56 +08001813 } else {
1814 /* Ensure nlk is hashed and visible. */
1815 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817
1818 err = -EMSGSIZE;
1819 if (len > sk->sk_sndbuf - 32)
1820 goto out;
1821 err = -ENOBUFS;
Pablo Neira3a365152013-06-28 03:04:23 +02001822 skb = netlink_alloc_large_skb(len, dst_group);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001823 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto out;
1825
Eric W. Biederman15e47302012-09-07 20:12:54 +00001826 NETLINK_CB(skb).portid = nlk->portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001827 NETLINK_CB(skb).dst_group = dst_group;
Christoph Hellwig7cc05662015-01-28 18:04:53 +01001828 NETLINK_CB(skb).creds = scm.creds;
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -07001829 NETLINK_CB(skb).flags = netlink_skb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 err = -EFAULT;
Al Viro6ce8e9c2014-04-06 21:25:44 -04001832 if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 kfree_skb(skb);
1834 goto out;
1835 }
1836
1837 err = security_netlink_send(sk, skb);
1838 if (err) {
1839 kfree_skb(skb);
1840 goto out;
1841 }
1842
Patrick McHardyd629b832005-08-14 19:27:50 -07001843 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001845 netlink_broadcast(sk, skb, dst_portid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00001847 err = netlink_unicast(sk, skb, dst_portid, msg->msg_flags&MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849out:
Christoph Hellwig7cc05662015-01-28 18:04:53 +01001850 scm_destroy(&scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return err;
1852}
1853
Ying Xue1b784142015-03-02 15:37:48 +08001854static int netlink_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 int flags)
1856{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 struct scm_cookie scm;
1858 struct sock *sk = sock->sk;
1859 struct netlink_sock *nlk = nlk_sk(sk);
1860 int noblock = flags&MSG_DONTWAIT;
1861 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00001862 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001863 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 if (flags&MSG_OOB)
1866 return -EOPNOTSUPP;
1867
1868 copied = 0;
1869
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001870 skb = skb_recv_datagram(sk, flags, noblock, &err);
1871 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 goto out;
1873
Johannes Berg68d6ac62010-08-15 21:20:44 +00001874 data_skb = skb;
1875
Johannes Berg1dacc762009-07-01 11:26:02 +00001876#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1877 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00001878 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00001879 * If this skb has a frag_list, then here that means that we
1880 * will have to use the frag_list skb's data for compat tasks
1881 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00001882 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00001883 * If we need to send the compat skb, assign it to the
1884 * 'data_skb' variable so that it will be used below for data
1885 * copying. We keep 'skb' for everything else, including
1886 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00001887 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00001888 if (flags & MSG_CMSG_COMPAT)
1889 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00001890 }
1891#endif
1892
Eric Dumazet9063e212014-03-07 12:02:33 -08001893 /* Record the max length of recvmsg() calls for future allocations */
1894 nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len);
1895 nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len,
Eric Dumazetd35c99f2016-10-06 04:13:18 +09001896 SKB_WITH_OVERHEAD(32768));
Eric Dumazet9063e212014-03-07 12:02:33 -08001897
Johannes Berg68d6ac62010-08-15 21:20:44 +00001898 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (len < copied) {
1900 msg->msg_flags |= MSG_TRUNC;
1901 copied = len;
1902 }
1903
Johannes Berg68d6ac62010-08-15 21:20:44 +00001904 skb_reset_transport_header(data_skb);
David S. Miller51f3d022014-11-05 16:46:40 -05001905 err = skb_copy_datagram_msg(data_skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001908 DECLARE_SOCKADDR(struct sockaddr_nl *, addr, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 addr->nl_family = AF_NETLINK;
1910 addr->nl_pad = 0;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001911 addr->nl_pid = NETLINK_CB(skb).portid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001912 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 msg->msg_namelen = sizeof(*addr);
1914 }
1915
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001916 if (nlk->flags & NETLINK_F_RECV_PKTINFO)
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001917 netlink_cmsg_recv_pktinfo(msg, skb);
Nicolas Dichtel59324cf2015-05-07 11:02:53 +02001918 if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID)
1919 netlink_cmsg_listen_all_nsid(sk, msg, skb);
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001920
Christoph Hellwig7cc05662015-01-28 18:04:53 +01001921 memset(&scm, 0, sizeof(scm));
1922 scm.creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001923 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00001924 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 skb_free_datagram(sk, skb);
1927
Pravin B Shelar16b304f2013-08-15 15:31:06 -07001928 if (nlk->cb_running &&
1929 atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
Andrey Vaginb44d2112011-02-21 02:40:47 +00001930 ret = netlink_dump(sk);
1931 if (ret) {
Ben Pfaffac30ef82014-07-09 10:31:22 -07001932 sk->sk_err = -ret;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001933 sk->sk_error_report(sk);
1934 }
1935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Christoph Hellwig7cc05662015-01-28 18:04:53 +01001937 scm_recv(sock, msg, &scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938out:
1939 netlink_rcv_wake(sk);
1940 return err ? : copied;
1941}
1942
David S. Miller676d2362014-04-11 16:15:36 -04001943static void netlink_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001945 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
1948/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001949 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 * complete set of kernel non-blocking support for message
1951 * queueing.
1952 */
1953
1954struct sock *
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00001955__netlink_kernel_create(struct net *net, int unit, struct module *module,
1956 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
1958 struct socket *sock;
1959 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001960 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001961 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001962 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
1963 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001965 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001967 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return NULL;
1969
1970 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1971 return NULL;
Eric W. Biederman13d30782015-05-08 21:11:33 -05001972
1973 if (__netlink_create(net, sock, cb_mutex, unit, 1) < 0)
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001974 goto out_sock_release_nosk;
1975
1976 sk = sock->sk;
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001977
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001978 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08001979 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001980 else
1981 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001982
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001983 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001984 if (!listeners)
1985 goto out_sock_release;
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001988 if (cfg && cfg->input)
1989 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Herbert Xu8ea65f42015-01-26 14:02:56 +11001991 if (netlink_insert(sk, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001992 goto out_sock_release;
1993
1994 nlk = nlk_sk(sk);
Nicolas Dichtelcc3a5722015-05-07 11:02:52 +02001995 nlk->flags |= NETLINK_F_KERNEL_SOCKET;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001996
1997 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001998 if (!nl_table[unit].registered) {
1999 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002000 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002001 nl_table[unit].cb_mutex = cb_mutex;
2002 nl_table[unit].module = module;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002003 if (cfg) {
2004 nl_table[unit].bind = cfg->bind;
Hiroaki SHIMODA6251edd2014-11-13 04:24:10 +09002005 nl_table[unit].unbind = cfg->unbind;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002006 nl_table[unit].flags = cfg->flags;
Gao fengda12c902013-06-06 14:49:11 +08002007 if (cfg->compare)
2008 nl_table[unit].compare = cfg->compare;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002009 }
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002010 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07002011 } else {
2012 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08002013 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002014 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07002015 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002016 return sk;
2017
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002018out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08002019 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08002020 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08002021 return NULL;
2022
2023out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002024 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07002025 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002027EXPORT_SYMBOL(__netlink_kernel_create);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002028
2029void
2030netlink_kernel_release(struct sock *sk)
2031{
Eric W. Biederman13d30782015-05-08 21:11:33 -05002032 if (sk == NULL || sk->sk_socket == NULL)
2033 return;
2034
2035 sock_release(sk->sk_socket);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08002036}
2037EXPORT_SYMBOL(netlink_kernel_release);
2038
Johannes Bergd136f1b2009-09-12 03:03:15 +00002039int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002040{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002041 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002042 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002043
2044 if (groups < 32)
2045 groups = 32;
2046
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002047 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002048 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
2049 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00002050 return -ENOMEM;
Eric Dumazet6d772ac2012-10-18 03:21:55 +00002051 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002052 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
2053 rcu_assign_pointer(tbl->listeners, new);
2054
Lai Jiangshan37b6b932011-03-15 18:01:42 +08002055 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002056 }
2057 tbl->groups = groups;
2058
Johannes Bergd136f1b2009-09-12 03:03:15 +00002059 return 0;
2060}
2061
2062/**
2063 * netlink_change_ngroups - change number of multicast groups
2064 *
2065 * This changes the number of multicast groups that are available
2066 * on a certain netlink family. Note that it is not possible to
2067 * change the number of groups to below 32. Also note that it does
2068 * not implicitly call netlink_clear_multicast_users() when the
2069 * number of groups is reduced.
2070 *
2071 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2072 * @groups: The new number of groups.
2073 */
2074int netlink_change_ngroups(struct sock *sk, unsigned int groups)
2075{
2076 int err;
2077
2078 netlink_table_grab();
2079 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002080 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00002081
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002082 return err;
2083}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07002084
Johannes Bergb8273572009-09-24 15:44:05 -07002085void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
2086{
2087 struct sock *sk;
Johannes Bergb8273572009-09-24 15:44:05 -07002088 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
2089
Sasha Levinb67bfe02013-02-27 17:06:00 -08002090 sk_for_each_bound(sk, &tbl->mc_list)
Johannes Bergb8273572009-09-24 15:44:05 -07002091 netlink_update_socket_mc(nlk_sk(sk), group, 0);
2092}
2093
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002094struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +00002095__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags)
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002096{
2097 struct nlmsghdr *nlh;
Hong zhi guo573ce262013-03-27 06:47:04 +00002098 int size = nlmsg_msg_size(len);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002099
Wang Yufen23b45672014-02-17 16:53:32 +08002100 nlh = (struct nlmsghdr *)skb_put(skb, NLMSG_ALIGN(size));
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002101 nlh->nlmsg_type = type;
2102 nlh->nlmsg_len = size;
2103 nlh->nlmsg_flags = flags;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002104 nlh->nlmsg_pid = portid;
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002105 nlh->nlmsg_seq = seq;
2106 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
Hong zhi guo573ce262013-03-27 06:47:04 +00002107 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size);
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05002108 return nlh;
2109}
2110EXPORT_SYMBOL(__nlmsg_put);
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112/*
2113 * It looks a bit ugly.
2114 * It would be better to create kernel thread.
2115 */
2116
2117static int netlink_dump(struct sock *sk)
2118{
2119 struct netlink_sock *nlk = nlk_sk(sk);
2120 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00002121 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 struct nlmsghdr *nlh;
Herbert Xu92964c72016-05-16 17:28:16 +08002123 struct module *module;
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +09002124 int err = -ENOBUFS;
Arad, Ronendb65a3a2015-10-15 01:55:17 -07002125 int alloc_min_size;
Greg Rosec7ac8672011-06-10 01:27:09 +00002126 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002128 mutex_lock(nlk->cb_mutex);
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002129 if (!nlk->cb_running) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002130 err = -EINVAL;
2131 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133
Florian Westphald1b4c682016-02-18 15:03:24 +01002134 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
Patrick McHardyf9c22882013-04-17 06:47:04 +00002135 goto errout_skb;
Eric Dumazet9063e212014-03-07 12:02:33 -08002136
2137 /* NLMSG_GOODSIZE is small to avoid high order allocations being
2138 * required, but it makes sense to _attempt_ a 16K bytes allocation
2139 * to reduce number of system calls on dump operations, if user
2140 * ever provided a big enough buffer.
2141 */
Arad, Ronendb65a3a2015-10-15 01:55:17 -07002142 cb = &nlk->cb;
2143 alloc_min_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
2144
2145 if (alloc_min_size < nlk->max_recvmsg_len) {
2146 alloc_size = nlk->max_recvmsg_len;
Eric Dumazetd35c99f2016-10-06 04:13:18 +09002147 skb = alloc_skb(alloc_size,
2148 (GFP_KERNEL & ~__GFP_DIRECT_RECLAIM) |
2149 __GFP_NOWARN | __GFP_NORETRY);
Eric Dumazet9063e212014-03-07 12:02:33 -08002150 }
Arad, Ronendb65a3a2015-10-15 01:55:17 -07002151 if (!skb) {
2152 alloc_size = alloc_min_size;
Florian Westphalc5b0db32016-02-18 15:03:28 +01002153 skb = alloc_skb(alloc_size, GFP_KERNEL);
Arad, Ronendb65a3a2015-10-15 01:55:17 -07002154 }
Greg Rosec7ac8672011-06-10 01:27:09 +00002155 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00002156 goto errout_skb;
Arad, Ronendb65a3a2015-10-15 01:55:17 -07002157
2158 /* Trim skb to allocated size. User is expected to provide buffer as
2159 * large as max(min_dump_alloc, 16KiB (mac_recvmsg_len capped at
2160 * netlink_recvmsg())). dump will pack as many smaller messages as
2161 * could fit within the allocated skb. skb is typically allocated
2162 * with larger space than required (could be as much as near 2x the
2163 * requested size with align to next power of 2 approach). Allowing
2164 * dump to use the excess space makes it difficult for a user to have a
2165 * reasonable static buffer based on the expected largest dump of a
2166 * single netdev. The outcome is MSG_TRUNC error.
2167 */
Florian Westphald1b4c682016-02-18 15:03:24 +01002168 skb_reserve(skb, skb_tailroom(skb) - alloc_size);
Patrick McHardyf9c22882013-04-17 06:47:04 +00002169 netlink_skb_set_owner_r(skb, sk);
Greg Rosec7ac8672011-06-10 01:27:09 +00002170
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +09002171 if (nlk->dump_done_errno > 0)
2172 nlk->dump_done_errno = cb->dump(skb, cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +09002174 if (nlk->dump_done_errno > 0 ||
2175 skb_tailroom(skb) < nlmsg_total_size(sizeof(nlk->dump_done_errno))) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002176 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002177
2178 if (sk_filter(sk, skb))
2179 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002180 else
2181 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return 0;
2183 }
2184
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +09002185 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE,
2186 sizeof(nlk->dump_done_errno), NLM_F_MULTI);
2187 if (WARN_ON(!nlh))
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002188 goto errout_skb;
2189
Johannes Berg670dc282011-06-20 13:40:46 +02002190 nl_dump_check_consistent(cb, nlh);
2191
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +09002192 memcpy(nlmsg_data(nlh), &nlk->dump_done_errno,
2193 sizeof(nlk->dump_done_errno));
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002194
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07002195 if (sk_filter(sk, skb))
2196 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00002197 else
2198 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Thomas Grafa8f74b22005-11-10 02:25:52 +01002200 if (cb->done)
2201 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002203 nlk->cb_running = false;
Herbert Xu92964c72016-05-16 17:28:16 +08002204 module = cb->module;
2205 skb = cb->skb;
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002206 mutex_unlock(nlk->cb_mutex);
Herbert Xu92964c72016-05-16 17:28:16 +08002207 module_put(module);
2208 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07002210
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002211errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002212 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002213 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002214 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
Gao feng6dc878a2012-10-04 20:15:48 +00002217int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
2218 const struct nlmsghdr *nlh,
2219 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 struct netlink_callback *cb;
2222 struct sock *sk;
2223 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00002224 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Florian Westphald1b4c682016-02-18 15:03:24 +01002226 atomic_inc(&skb->users);
Patrick McHardyf9c22882013-04-17 06:47:04 +00002227
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002228 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).portid);
2229 if (sk == NULL) {
2230 ret = -ECONNREFUSED;
2231 goto error_free;
2232 }
2233
2234 nlk = nlk_sk(sk);
2235 mutex_lock(nlk->cb_mutex);
2236 /* A dump is in progress... */
2237 if (nlk->cb_running) {
2238 ret = -EBUSY;
2239 goto error_unlock;
2240 }
2241 /* add reference of module which cb->dump belongs to */
2242 if (!try_module_get(control->module)) {
2243 ret = -EPROTONOSUPPORT;
2244 goto error_unlock;
2245 }
2246
2247 cb = &nlk->cb;
2248 memset(cb, 0, sizeof(*cb));
Tom Herbertfc9e50f2015-12-15 15:41:37 -08002249 cb->start = control->start;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002250 cb->dump = control->dump;
2251 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00002253 cb->data = control->data;
Gao feng6dc878a2012-10-04 20:15:48 +00002254 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002255 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 cb->skb = skb;
2257
Jason A. Donenfeld4cd69ad2017-10-09 14:14:51 +02002258 if (cb->start) {
2259 ret = cb->start(cb);
2260 if (ret)
2261 goto error_unlock;
2262 }
2263
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002264 nlk->cb_running = true;
Jason A. Donenfeld99aa74c2017-11-09 13:04:44 +09002265 nlk->dump_done_errno = INT_MAX;
Gao feng6dc878a2012-10-04 20:15:48 +00002266
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002267 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Jason A. Donenfeld4cd69ad2017-10-09 14:14:51 +02002269 ret = netlink_dump(sk);
Jason A. Donenfeldb4a11922017-09-28 00:41:44 +02002270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002272
Andrey Vaginb44d2112011-02-21 02:40:47 +00002273 if (ret)
2274 return ret;
2275
Denis V. Lunev5c582982007-10-23 20:29:25 -07002276 /* We successfully started a dump, by returning -EINTR we
2277 * signal not to send ACK even if it was requested.
2278 */
2279 return -EINTR;
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002280
2281error_unlock:
2282 sock_put(sk);
2283 mutex_unlock(nlk->cb_mutex);
2284error_free:
2285 kfree_skb(skb);
2286 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
Gao feng6dc878a2012-10-04 20:15:48 +00002288EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
2291{
2292 struct sk_buff *skb;
2293 struct nlmsghdr *rep;
2294 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08002295 size_t payload = sizeof(*errmsg);
Christophe Ricard0a6a3a22015-08-28 07:07:48 +02002296 struct netlink_sock *nlk = nlk_sk(NETLINK_CB(in_skb).sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Christophe Ricard0a6a3a22015-08-28 07:07:48 +02002298 /* Error messages get the original request appened, unless the user
2299 * requests to cap the error message.
2300 */
2301 if (!(nlk->flags & NETLINK_F_CAP_ACK) && err)
Thomas Graf339bf982006-11-10 14:10:15 -08002302 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Florian Westphalc5b0db32016-02-18 15:03:28 +01002304 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if (!skb) {
2306 struct sock *sk;
2307
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002308 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002309 in_skb->sk->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002310 NETLINK_CB(in_skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (sk) {
2312 sk->sk_err = ENOBUFS;
2313 sk->sk_error_report(sk);
2314 sock_put(sk);
2315 }
2316 return;
2317 }
2318
Eric W. Biederman15e47302012-09-07 20:12:54 +00002319 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00002320 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07002321 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 errmsg->error = err;
Christophe Ricard0a6a3a22015-08-28 07:07:48 +02002323 memcpy(&errmsg->msg, nlh, payload > sizeof(*errmsg) ? nlh->nlmsg_len : sizeof(*nlh));
Eric W. Biederman15e47302012-09-07 20:12:54 +00002324 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002326EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002328int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002329 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01002330{
Thomas Graf82ace472005-11-10 02:25:53 +01002331 struct nlmsghdr *nlh;
2332 int err;
2333
2334 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002335 int msglen;
2336
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07002337 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07002338 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01002339
Martin Murrayad8e4b72006-01-10 13:02:29 -08002340 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01002341 return 0;
2342
Thomas Grafd35b6852007-03-22 23:28:46 -07002343 /* Only requests are handled by the kernel */
2344 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07002345 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07002346
Thomas Graf45e7ae72007-03-22 23:29:10 -07002347 /* Skip control messages */
2348 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07002349 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07002350
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002351 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07002352 if (err == -EINTR)
2353 goto skip;
2354
2355ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07002356 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01002357 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01002358
Denis V. Lunev5c582982007-10-23 20:29:25 -07002359skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002360 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002361 if (msglen > skb->len)
2362 msglen = skb->len;
2363 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01002364 }
2365
2366 return 0;
2367}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002368EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01002369
2370/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07002371 * nlmsg_notify - send a notification netlink message
2372 * @sk: netlink socket to use
2373 * @skb: notification message
Eric W. Biederman15e47302012-09-07 20:12:54 +00002374 * @portid: destination netlink portid for reports or 0
Thomas Grafd387f6a2006-08-15 00:31:06 -07002375 * @group: destination multicast group or 0
2376 * @report: 1 to report back, 0 to disable
2377 * @flags: allocation flags
2378 */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002379int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 portid,
Thomas Grafd387f6a2006-08-15 00:31:06 -07002380 unsigned int group, int report, gfp_t flags)
2381{
2382 int err = 0;
2383
2384 if (group) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00002385 int exclude_portid = 0;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002386
2387 if (report) {
2388 atomic_inc(&skb->users);
Eric W. Biederman15e47302012-09-07 20:12:54 +00002389 exclude_portid = portid;
Thomas Grafd387f6a2006-08-15 00:31:06 -07002390 }
2391
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002392 /* errors reported via destination sk->sk_err, but propagate
2393 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
Eric W. Biederman15e47302012-09-07 20:12:54 +00002394 err = nlmsg_multicast(sk, skb, exclude_portid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002395 }
2396
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002397 if (report) {
2398 int err2;
2399
Eric W. Biederman15e47302012-09-07 20:12:54 +00002400 err2 = nlmsg_unicast(sk, skb, portid);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08002401 if (!err || err == -ESRCH)
2402 err = err2;
2403 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07002404
2405 return err;
2406}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002407EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409#ifdef CONFIG_PROC_FS
2410struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08002411 struct seq_net_private p;
Herbert Xu56d28b12015-02-04 07:33:24 +11002412 struct rhashtable_iter hti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 int link;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414};
2415
Herbert Xu56d28b12015-02-04 07:33:24 +11002416static int netlink_walk_start(struct nl_seq_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Herbert Xu56d28b12015-02-04 07:33:24 +11002418 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Bob Copeland8f6fd832016-03-02 10:09:19 -05002420 err = rhashtable_walk_init(&nl_table[iter->link].hash, &iter->hti,
2421 GFP_KERNEL);
Herbert Xu56d28b12015-02-04 07:33:24 +11002422 if (err) {
2423 iter->link = MAX_LINKS;
2424 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
Herbert Xu56d28b12015-02-04 07:33:24 +11002426
2427 err = rhashtable_walk_start(&iter->hti);
2428 return err == -EAGAIN ? 0 : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
Herbert Xu56d28b12015-02-04 07:33:24 +11002431static void netlink_walk_stop(struct nl_seq_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Herbert Xu56d28b12015-02-04 07:33:24 +11002433 rhashtable_walk_stop(&iter->hti);
2434 rhashtable_walk_exit(&iter->hti);
2435}
2436
2437static void *__netlink_seq_next(struct seq_file *seq)
2438{
2439 struct nl_seq_iter *iter = seq->private;
2440 struct netlink_sock *nlk;
2441
2442 do {
2443 for (;;) {
2444 int err;
2445
2446 nlk = rhashtable_walk_next(&iter->hti);
2447
2448 if (IS_ERR(nlk)) {
2449 if (PTR_ERR(nlk) == -EAGAIN)
2450 continue;
2451
2452 return nlk;
2453 }
2454
2455 if (nlk)
2456 break;
2457
2458 netlink_walk_stop(iter);
2459 if (++iter->link >= MAX_LINKS)
2460 return NULL;
2461
2462 err = netlink_walk_start(iter);
2463 if (err)
2464 return ERR_PTR(err);
2465 }
2466 } while (sock_net(&nlk->sk) != seq_file_net(seq));
2467
2468 return nlk;
2469}
2470
2471static void *netlink_seq_start(struct seq_file *seq, loff_t *posp)
2472{
2473 struct nl_seq_iter *iter = seq->private;
2474 void *obj = SEQ_START_TOKEN;
2475 loff_t pos;
2476 int err;
2477
2478 iter->link = 0;
2479
2480 err = netlink_walk_start(iter);
2481 if (err)
2482 return ERR_PTR(err);
2483
2484 for (pos = *posp; pos && obj && !IS_ERR(obj); pos--)
2485 obj = __netlink_seq_next(seq);
2486
2487 return obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2491{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 ++*pos;
Herbert Xu56d28b12015-02-04 07:33:24 +11002493 return __netlink_seq_next(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
2496static void netlink_seq_stop(struct seq_file *seq, void *v)
2497{
Herbert Xu56d28b12015-02-04 07:33:24 +11002498 struct nl_seq_iter *iter = seq->private;
2499
2500 if (iter->link >= MAX_LINKS)
2501 return;
2502
2503 netlink_walk_stop(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
2506
2507static int netlink_seq_show(struct seq_file *seq, void *v)
2508{
Eric Dumazet658cb352012-04-22 21:30:21 +00002509 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 seq_puts(seq,
2511 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002512 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002513 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 struct sock *s = v;
2515 struct netlink_sock *nlk = nlk_sk(s);
2516
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002517 seq_printf(seq, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 s,
2519 s->sk_protocol,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002520 nlk->portid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002521 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002522 sk_rmem_alloc_get(s),
2523 sk_wmem_alloc_get(s),
Pravin B Shelar16b304f2013-08-15 15:31:06 -07002524 nlk->cb_running,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002525 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002526 atomic_read(&s->sk_drops),
2527 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 );
2529
2530 }
2531 return 0;
2532}
2533
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002534static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 .start = netlink_seq_start,
2536 .next = netlink_seq_next,
2537 .stop = netlink_seq_stop,
2538 .show = netlink_seq_show,
2539};
2540
2541
2542static int netlink_seq_open(struct inode *inode, struct file *file)
2543{
Denis V. Luneve372c412007-11-19 22:31:54 -08002544 return seq_open_net(inode, file, &netlink_seq_ops,
2545 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002546}
2547
Arjan van de Venda7071d2007-02-12 00:55:36 -08002548static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 .owner = THIS_MODULE,
2550 .open = netlink_seq_open,
2551 .read = seq_read,
2552 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002553 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554};
2555
2556#endif
2557
2558int netlink_register_notifier(struct notifier_block *nb)
2559{
Alan Sterne041c682006-03-27 01:16:30 -08002560 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002562EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564int netlink_unregister_notifier(struct notifier_block *nb)
2565{
Alan Sterne041c682006-03-27 01:16:30 -08002566 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002568EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002569
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002570static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 .family = PF_NETLINK,
2572 .owner = THIS_MODULE,
2573 .release = netlink_release,
2574 .bind = netlink_bind,
2575 .connect = netlink_connect,
2576 .socketpair = sock_no_socketpair,
2577 .accept = sock_no_accept,
2578 .getname = netlink_getname,
Florian Westphald1b4c682016-02-18 15:03:24 +01002579 .poll = datagram_poll,
David Decotigny025c6812016-03-21 10:15:35 -07002580 .ioctl = netlink_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 .listen = sock_no_listen,
2582 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002583 .setsockopt = netlink_setsockopt,
2584 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 .sendmsg = netlink_sendmsg,
2586 .recvmsg = netlink_recvmsg,
Florian Westphald1b4c682016-02-18 15:03:24 +01002587 .mmap = sock_no_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 .sendpage = sock_no_sendpage,
2589};
2590
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002591static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 .family = PF_NETLINK,
2593 .create = netlink_create,
2594 .owner = THIS_MODULE, /* for consistency 8) */
2595};
2596
Pavel Emelyanov46650792007-10-08 20:38:39 -07002597static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002598{
2599#ifdef CONFIG_PROC_FS
Gao fengd4beaa62013-02-18 01:34:54 +00002600 if (!proc_create("netlink", 0, net->proc_net, &netlink_seq_fops))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002601 return -ENOMEM;
2602#endif
2603 return 0;
2604}
2605
Pavel Emelyanov46650792007-10-08 20:38:39 -07002606static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002607{
2608#ifdef CONFIG_PROC_FS
Gao fengece31ff2013-02-18 01:34:56 +00002609 remove_proc_entry("netlink", net->proc_net);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002610#endif
2611}
2612
David S. Millerb963ea82010-08-30 19:08:01 -07002613static void __init netlink_add_usersock_entry(void)
2614{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002615 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002616 int groups = 32;
2617
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002618 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002619 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002620 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002621
2622 netlink_table_grab();
2623
2624 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002625 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002626 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2627 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +00002628 nl_table[NETLINK_USERSOCK].flags = NL_CFG_F_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07002629
2630 netlink_table_ungrab();
2631}
2632
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002633static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002634 .init = netlink_net_init,
2635 .exit = netlink_net_exit,
2636};
2637
Patrick McHardy49f7b332015-03-25 13:07:45 +00002638static inline u32 netlink_hash(const void *data, u32 len, u32 seed)
Herbert Xuc428ecd2015-03-20 21:57:01 +11002639{
2640 const struct netlink_sock *nlk = data;
2641 struct netlink_compare_arg arg;
2642
Herbert Xuda314c92015-09-22 11:38:56 +08002643 netlink_compare_arg_init(&arg, sock_net(&nlk->sk), nlk->portid);
Herbert Xu11b58ba2015-03-24 00:50:22 +11002644 return jhash2((u32 *)&arg, netlink_compare_arg_len / sizeof(u32), seed);
Herbert Xuc428ecd2015-03-20 21:57:01 +11002645}
2646
2647static const struct rhashtable_params netlink_rhashtable_params = {
2648 .head_offset = offsetof(struct netlink_sock, node),
2649 .key_len = netlink_compare_arg_len,
Herbert Xuc428ecd2015-03-20 21:57:01 +11002650 .obj_hashfn = netlink_hash,
2651 .obj_cmpfn = netlink_compare,
Thomas Grafb5e2c152015-03-24 20:42:19 +00002652 .automatic_shrinking = true,
Herbert Xuc428ecd2015-03-20 21:57:01 +11002653};
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655static int __init netlink_proto_init(void)
2656{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 int err = proto_register(&netlink_proto, 0);
2659
2660 if (err != 0)
2661 goto out;
2662
YOSHIFUJI Hideaki / 吉藤英明fab25742013-01-09 07:19:48 +00002663 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > FIELD_SIZEOF(struct sk_buff, cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002665 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002666 if (!nl_table)
2667 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 for (i = 0; i < MAX_LINKS; i++) {
Herbert Xuc428ecd2015-03-20 21:57:01 +11002670 if (rhashtable_init(&nl_table[i].hash,
2671 &netlink_rhashtable_params) < 0) {
Thomas Grafe3416942014-08-02 11:47:45 +02002672 while (--i > 0)
2673 rhashtable_destroy(&nl_table[i].hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002675 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 }
2678
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +02002679 INIT_LIST_HEAD(&netlink_tap_all);
2680
David S. Millerb963ea82010-08-30 19:08:01 -07002681 netlink_add_usersock_entry();
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002684 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002685 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 rtnetlink_init();
2687out:
2688 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002689panic:
2690 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691}
2692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693core_initcall(netlink_proto_init);