blob: edce424048d818ac0eece86e2adbf882cb0c3408 [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>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +090011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
13 * added netlink_proto_exit
14 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
15 * use nlk_sk, as sk->protinfo is on a diet 8)
Harald Welte4fdb3bb2005-08-09 19:40:55 -070016 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
17 * - inc module use count of module that owns
18 * the kernel socket in case userspace opens
19 * socket of same protocol
20 * - remove all module support, since netlink is
21 * mandatory if CONFIG_NET=y these days
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25
Randy Dunlap4fc268d2006-01-11 12:17:47 -080026#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/signal.h>
30#include <linux/sched.h>
31#include <linux/errno.h>
32#include <linux/string.h>
33#include <linux/stat.h>
34#include <linux/socket.h>
35#include <linux/un.h>
36#include <linux/fcntl.h>
37#include <linux/termios.h>
38#include <linux/sockios.h>
39#include <linux/net.h>
40#include <linux/fs.h>
41#include <linux/slab.h>
42#include <asm/uaccess.h>
43#include <linux/skbuff.h>
44#include <linux/netdevice.h>
45#include <linux/rtnetlink.h>
46#include <linux/proc_fs.h>
47#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/notifier.h>
49#include <linux/security.h>
50#include <linux/jhash.h>
51#include <linux/jiffies.h>
52#include <linux/random.h>
53#include <linux/bitops.h>
54#include <linux/mm.h>
55#include <linux/types.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010056#include <linux/audit.h>
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070057#include <linux/mutex.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010058
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020059#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <net/sock.h>
61#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010062#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070064#define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
Johannes Bergb4ff4f02007-07-18 15:46:06 -070065#define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67struct netlink_sock {
68 /* struct sock has to be the first member of netlink_sock */
69 struct sock sk;
70 u32 pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -070072 u32 dst_group;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070073 u32 flags;
74 u32 subscriptions;
75 u32 ngroups;
76 unsigned long *groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long state;
78 wait_queue_head_t wait;
79 struct netlink_callback *cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070080 struct mutex *cb_mutex;
81 struct mutex cb_def_mutex;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -070082 void (*netlink_rcv)(struct sk_buff *skb);
Patrick McHardy77247bb2005-08-14 19:27:13 -070083 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Eric Dumazet5c398dc2010-10-24 04:27:10 +000086struct listeners {
87 struct rcu_head rcu;
88 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000089};
90
Patrick McHardy77247bb2005-08-14 19:27:13 -070091#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070092#define NETLINK_RECV_PKTINFO 0x2
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +000093#define NETLINK_BROADCAST_SEND_ERROR 0x4
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -070094#define NETLINK_RECV_NO_ENOBUFS 0x8
Patrick McHardy77247bb2005-08-14 19:27:13 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static inline struct netlink_sock *nlk_sk(struct sock *sk)
97{
Denis Cheng32b21e02007-08-28 15:41:11 -070098 return container_of(sk, struct netlink_sock, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
David S. Miller035c4c12011-12-23 17:33:03 -0500101static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -0700102{
103 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106struct nl_pid_hash {
107 struct hlist_head *table;
108 unsigned long rehash_time;
109
110 unsigned int mask;
111 unsigned int shift;
112
113 unsigned int entries;
114 unsigned int max_shift;
115
116 u32 rnd;
117};
118
119struct netlink_table {
120 struct nl_pid_hash hash;
121 struct hlist_head mc_list;
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000122 struct listeners __rcu *listeners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned int nl_nonroot;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700124 unsigned int groups;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700125 struct mutex *cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700126 struct module *module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700127 int registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
130static struct netlink_table *nl_table;
131
132static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
133
134static int netlink_dump(struct sock *sk);
135static void netlink_destroy_callback(struct netlink_callback *cb);
136
137static DEFINE_RWLOCK(nl_table_lock);
138static atomic_t nl_table_users = ATOMIC_INIT(0);
139
Alan Sterne041c682006-03-27 01:16:30 -0800140static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000142static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700143{
144 return group ? 1 << (group - 1) : 0;
145}
146
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000147static inline struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
150}
151
152static void netlink_sock_destruct(struct sock *sk)
153{
Herbert Xu3f660d62007-05-03 03:17:14 -0700154 struct netlink_sock *nlk = nlk_sk(sk);
155
Herbert Xu3f660d62007-05-03 03:17:14 -0700156 if (nlk->cb) {
157 if (nlk->cb->done)
158 nlk->cb->done(nlk->cb);
Gao feng70f7f1c2012-10-04 20:15:48 +0000159
160 module_put(nlk->cb->module);
Herbert Xu3f660d62007-05-03 03:17:14 -0700161 netlink_destroy_callback(nlk->cb);
162 }
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 skb_queue_purge(&sk->sk_receive_queue);
165
166 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800167 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return;
169 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700170
171 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
172 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
173 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800176/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
177 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
179 * this, _but_ remember, it adds useless work on UP machines.
180 */
181
Johannes Bergd136f1b2009-09-12 03:03:15 +0000182void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800183 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000185 might_sleep();
186
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700187 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (atomic_read(&nl_table_users)) {
190 DECLARE_WAITQUEUE(wait, current);
191
192 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800193 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 set_current_state(TASK_UNINTERRUPTIBLE);
195 if (atomic_read(&nl_table_users) == 0)
196 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700197 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700199 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 __set_current_state(TASK_RUNNING);
203 remove_wait_queue(&nl_table_wait, &wait);
204 }
205}
206
Johannes Bergd136f1b2009-09-12 03:03:15 +0000207void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800208 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700210 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 wake_up(&nl_table_wait);
212}
213
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800214static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215netlink_lock_table(void)
216{
217 /* read_lock() synchronizes us to netlink_table_grab */
218
219 read_lock(&nl_table_lock);
220 atomic_inc(&nl_table_users);
221 read_unlock(&nl_table_lock);
222}
223
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800224static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225netlink_unlock_table(void)
226{
227 if (atomic_dec_and_test(&nl_table_users))
228 wake_up(&nl_table_wait);
229}
230
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000231static struct sock *netlink_lookup(struct net *net, int protocol, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct nl_pid_hash *hash = &nl_table[protocol].hash;
234 struct hlist_head *head;
235 struct sock *sk;
236 struct hlist_node *node;
237
238 read_lock(&nl_table_lock);
239 head = nl_pid_hashfn(hash, pid);
240 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900241 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 sock_hold(sk);
243 goto found;
244 }
245 }
246 sk = NULL;
247found:
248 read_unlock(&nl_table_lock);
249 return sk;
250}
251
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000252static struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800255 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 else
257 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800258 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
259 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000262static void nl_pid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 if (size <= PAGE_SIZE)
265 kfree(table);
266 else
267 free_pages((unsigned long)table, get_order(size));
268}
269
270static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
271{
272 unsigned int omask, mask, shift;
273 size_t osize, size;
274 struct hlist_head *otable, *table;
275 int i;
276
277 omask = mask = hash->mask;
278 osize = size = (mask + 1) * sizeof(*table);
279 shift = hash->shift;
280
281 if (grow) {
282 if (++shift > hash->max_shift)
283 return 0;
284 mask = mask * 2 + 1;
285 size *= 2;
286 }
287
Eric Dumazetea729122007-12-11 02:09:47 -0800288 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!table)
290 return 0;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 otable = hash->table;
293 hash->table = table;
294 hash->mask = mask;
295 hash->shift = shift;
296 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
297
298 for (i = 0; i <= omask; i++) {
299 struct sock *sk;
300 struct hlist_node *node, *tmp;
301
302 sk_for_each_safe(sk, node, tmp, &otable[i])
303 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
304 }
305
306 nl_pid_hash_free(otable, osize);
307 hash->rehash_time = jiffies + 10 * 60 * HZ;
308 return 1;
309}
310
311static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
312{
313 int avg = hash->entries >> hash->shift;
314
315 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
316 return 1;
317
318 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
319 nl_pid_hash_rehash(hash, 0);
320 return 1;
321 }
322
323 return 0;
324}
325
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800326static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Patrick McHardy4277a082006-03-20 18:52:01 -0800328static void
329netlink_update_listeners(struct sock *sk)
330{
331 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
332 struct hlist_node *node;
333 unsigned long mask;
334 unsigned int i;
335
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700336 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800337 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700338 sk_for_each_bound(sk, node, &tbl->mc_list) {
339 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
340 mask |= nlk_sk(sk)->groups[i];
341 }
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000342 tbl->listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800343 }
344 /* this function is only called with the netlink table "grabbed", which
345 * makes sure updates are visible before bind or setsockopt return. */
346}
347
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200348static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
351 struct hlist_head *head;
352 int err = -EADDRINUSE;
353 struct sock *osk;
354 struct hlist_node *node;
355 int len;
356
357 netlink_table_grab();
358 head = nl_pid_hashfn(hash, pid);
359 len = 0;
360 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900361 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 break;
363 len++;
364 }
365 if (node)
366 goto err;
367
368 err = -EBUSY;
369 if (nlk_sk(sk)->pid)
370 goto err;
371
372 err = -ENOMEM;
373 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
374 goto err;
375
376 if (len && nl_pid_hash_dilute(hash, len))
377 head = nl_pid_hashfn(hash, pid);
378 hash->entries++;
379 nlk_sk(sk)->pid = pid;
380 sk_add_node(sk, head);
381 err = 0;
382
383err:
384 netlink_table_ungrab();
385 return err;
386}
387
388static void netlink_remove(struct sock *sk)
389{
390 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700391 if (sk_del_node_init(sk))
392 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700393 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 __sk_del_bind_node(sk);
395 netlink_table_ungrab();
396}
397
398static struct proto netlink_proto = {
399 .name = "NETLINK",
400 .owner = THIS_MODULE,
401 .obj_size = sizeof(struct netlink_sock),
402};
403
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700404static int __netlink_create(struct net *net, struct socket *sock,
405 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 struct sock *sk;
408 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700409
410 sock->ops = &netlink_ops;
411
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700412 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700413 if (!sk)
414 return -ENOMEM;
415
416 sock_init_data(sock, sk);
417
418 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700419 if (cb_mutex)
420 nlk->cb_mutex = cb_mutex;
421 else {
422 nlk->cb_mutex = &nlk->cb_def_mutex;
423 mutex_init(nlk->cb_mutex);
424 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700425 init_waitqueue_head(&nlk->wait);
426
427 sk->sk_destruct = netlink_sock_destruct;
428 sk->sk_protocol = protocol;
429 return 0;
430}
431
Eric Paris3f378b62009-11-05 22:18:14 -0800432static int netlink_create(struct net *net, struct socket *sock, int protocol,
433 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -0700434{
435 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700436 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700437 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700438 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 sock->state = SS_UNCONNECTED;
441
442 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
443 return -ESOCKTNOSUPPORT;
444
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800445 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return -EPROTONOSUPPORT;
447
Patrick McHardy77247bb2005-08-14 19:27:13 -0700448 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700449#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700450 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700451 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700452 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700453 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700454 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700455#endif
456 if (nl_table[protocol].registered &&
457 try_module_get(nl_table[protocol].module))
458 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000459 else
460 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700461 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700462 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700463
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000464 if (err < 0)
465 goto out;
466
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800467 err = __netlink_create(net, sock, cb_mutex, protocol);
468 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700469 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
David S. Miller6f756a82008-11-23 17:34:03 -0800471 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800472 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800473 local_bh_enable();
474
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700475 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700476 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700477out:
478 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Patrick McHardyab33a172005-08-14 19:31:36 -0700480out_module:
481 module_put(module);
482 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485static int netlink_release(struct socket *sock)
486{
487 struct sock *sk = sock->sk;
488 struct netlink_sock *nlk;
489
490 if (!sk)
491 return 0;
492
493 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700494 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 nlk = nlk_sk(sk);
496
Herbert Xu3f660d62007-05-03 03:17:14 -0700497 /*
498 * OK. Socket is unlinked, any packets that arrive now
499 * will be purged.
500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 sock->sk = NULL;
503 wake_up_interruptible_all(&nlk->wait);
504
505 skb_queue_purge(&sk->sk_write_queue);
506
Johannes Berg649300b2009-11-16 12:05:34 +0000507 if (nlk->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900509 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 .protocol = sk->sk_protocol,
511 .pid = nlk->pid,
512 };
Alan Sterne041c682006-03-27 01:16:30 -0800513 atomic_notifier_call_chain(&netlink_chain,
514 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900515 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700516
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800517 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700518
Patrick McHardy4277a082006-03-20 18:52:01 -0800519 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700520 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800521 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
522 if (--nl_table[sk->sk_protocol].registered == 0) {
523 kfree(nl_table[sk->sk_protocol].listeners);
524 nl_table[sk->sk_protocol].module = NULL;
525 nl_table[sk->sk_protocol].registered = 0;
526 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800527 } else if (nlk->subscriptions)
528 netlink_update_listeners(sk);
529 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700530
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700531 kfree(nlk->groups);
532 nlk->groups = NULL;
533
Eric Dumazet37558102008-11-24 14:05:22 -0800534 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800535 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800536 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 sock_put(sk);
538 return 0;
539}
540
541static int netlink_autobind(struct socket *sock)
542{
543 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900544 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
546 struct hlist_head *head;
547 struct sock *osk;
548 struct hlist_node *node;
Tom Goff66aa4a52010-03-19 15:38:50 +0000549 s32 pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 int err;
551 static s32 rover = -4097;
552
553retry:
554 cond_resched();
555 netlink_table_grab();
556 head = nl_pid_hashfn(hash, pid);
557 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900558 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200559 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (nlk_sk(osk)->pid == pid) {
561 /* Bind collision, search negative pid values. */
562 pid = rover--;
563 if (rover > -4097)
564 rover = -4097;
565 netlink_table_ungrab();
566 goto retry;
567 }
568 }
569 netlink_table_ungrab();
570
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200571 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (err == -EADDRINUSE)
573 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700574
575 /* If 2 threads race to autobind, that is fine. */
576 if (err == -EBUSY)
577 err = 0;
578
579 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000582static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900583{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
585 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900586}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700588static void
589netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
590{
591 struct netlink_sock *nlk = nlk_sk(sk);
592
593 if (nlk->subscriptions && !subscriptions)
594 __sk_del_bind_node(sk);
595 else if (!nlk->subscriptions && subscriptions)
596 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
597 nlk->subscriptions = subscriptions;
598}
599
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700600static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700601{
602 struct netlink_sock *nlk = nlk_sk(sk);
603 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700604 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700605 int err = 0;
606
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700607 netlink_table_grab();
608
Patrick McHardy513c2502005-09-06 15:43:59 -0700609 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700610 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700611 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700612 goto out_unlock;
613 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700614
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700615 if (nlk->ngroups >= groups)
616 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700617
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700618 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
619 if (new_groups == NULL) {
620 err = -ENOMEM;
621 goto out_unlock;
622 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800623 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700624 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
625
626 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700627 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700628 out_unlock:
629 netlink_table_ungrab();
630 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700631}
632
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800633static int netlink_bind(struct socket *sock, struct sockaddr *addr,
634 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900637 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct netlink_sock *nlk = nlk_sk(sk);
639 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
640 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (nladdr->nl_family != AF_NETLINK)
643 return -EINVAL;
644
645 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700646 if (nladdr->nl_groups) {
647 if (!netlink_capable(sock, NL_NONROOT_RECV))
648 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700649 err = netlink_realloc_groups(sk);
650 if (err)
651 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 if (nlk->pid) {
655 if (nladdr->nl_pid != nlk->pid)
656 return -EINVAL;
657 } else {
658 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200659 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 netlink_autobind(sock);
661 if (err)
662 return err;
663 }
664
Patrick McHardy513c2502005-09-06 15:43:59 -0700665 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return 0;
667
668 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700669 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900670 hweight32(nladdr->nl_groups) -
671 hweight32(nlk->groups[0]));
672 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800673 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 netlink_table_ungrab();
675
676 return 0;
677}
678
679static int netlink_connect(struct socket *sock, struct sockaddr *addr,
680 int alen, int flags)
681{
682 int err = 0;
683 struct sock *sk = sock->sk;
684 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800685 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Changli Gao6503d962010-03-31 22:58:26 +0000687 if (alen < sizeof(addr->sa_family))
688 return -EINVAL;
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (addr->sa_family == AF_UNSPEC) {
691 sk->sk_state = NETLINK_UNCONNECTED;
692 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700693 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return 0;
695 }
696 if (addr->sa_family != AF_NETLINK)
697 return -EINVAL;
698
699 /* Only superuser is allowed to send multicasts */
700 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
701 return -EPERM;
702
703 if (!nlk->pid)
704 err = netlink_autobind(sock);
705
706 if (err == 0) {
707 sk->sk_state = NETLINK_CONNECTED;
708 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700709 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
712 return err;
713}
714
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800715static int netlink_getname(struct socket *sock, struct sockaddr *addr,
716 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 struct sock *sk = sock->sk;
719 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +0000720 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 nladdr->nl_family = AF_NETLINK;
723 nladdr->nl_pad = 0;
724 *addr_len = sizeof(*nladdr);
725
726 if (peer) {
727 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700728 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 } else {
730 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700731 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733 return 0;
734}
735
736static void netlink_overrun(struct sock *sk)
737{
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700738 struct netlink_sock *nlk = nlk_sk(sk);
739
740 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
741 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
742 sk->sk_err = ENOBUFS;
743 sk->sk_error_report(sk);
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700746 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
750{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct sock *sock;
752 struct netlink_sock *nlk;
753
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900754 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (!sock)
756 return ERR_PTR(-ECONNREFUSED);
757
758 /* Don't bother queuing skb if kernel socket has no input function */
759 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700760 if (sock->sk_state == NETLINK_CONNECTED &&
761 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 sock_put(sock);
763 return ERR_PTR(-ECONNREFUSED);
764 }
765 return sock;
766}
767
768struct sock *netlink_getsockbyfilp(struct file *filp)
769{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800770 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct sock *sock;
772
773 if (!S_ISSOCK(inode->i_mode))
774 return ERR_PTR(-ENOTSOCK);
775
776 sock = SOCKET_I(inode)->sk;
777 if (sock->sk_family != AF_NETLINK)
778 return ERR_PTR(-EINVAL);
779
780 sock_hold(sock);
781 return sock;
782}
783
784/*
785 * Attach a skb to a netlink socket.
786 * The caller must hold a reference to the destination socket. On error, the
787 * reference is dropped. The skb is not send to the destination, just all
788 * all error checks are performed and memory in the queue is reserved.
789 * Return values:
790 * < 0: error. skb freed, reference to sock dropped.
791 * 0: continue
792 * 1: repeat lookup - reference dropped while waiting for socket memory.
793 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700794int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800795 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 struct netlink_sock *nlk;
798
799 nlk = nlk_sk(sk);
800
801 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
802 test_bit(0, &nlk->state)) {
803 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800804 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700805 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 netlink_overrun(sk);
807 sock_put(sk);
808 kfree_skb(skb);
809 return -EAGAIN;
810 }
811
812 __set_current_state(TASK_INTERRUPTIBLE);
813 add_wait_queue(&nlk->wait, &wait);
814
815 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
816 test_bit(0, &nlk->state)) &&
817 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800818 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 __set_current_state(TASK_RUNNING);
821 remove_wait_queue(&nlk->wait, &wait);
822 sock_put(sk);
823
824 if (signal_pending(current)) {
825 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800826 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 return 1;
829 }
830 skb_set_owner_r(skb, sk);
831 return 0;
832}
833
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000834static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 int len = skb->len;
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 skb_queue_tail(&sk->sk_receive_queue, skb);
839 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000840 return len;
841}
842
843int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
844{
845 int len = __netlink_sendskb(sk, skb);
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 sock_put(sk);
848 return len;
849}
850
851void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
852{
853 kfree_skb(skb);
854 sock_put(sk);
855}
856
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000857static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 int delta;
860
861 skb_orphan(skb);
862
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700863 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (delta * 2 < skb->truesize)
865 return skb;
866
867 if (skb_shared(skb)) {
868 struct sk_buff *nskb = skb_clone(skb, allocation);
869 if (!nskb)
870 return skb;
871 kfree_skb(skb);
872 skb = nskb;
873 }
874
875 if (!pskb_expand_head(skb, 0, -delta, allocation))
876 skb->truesize -= delta;
877
878 return skb;
879}
880
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000881static void netlink_rcv_wake(struct sock *sk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700882{
883 struct netlink_sock *nlk = nlk_sk(sk);
884
885 if (skb_queue_empty(&sk->sk_receive_queue))
886 clear_bit(0, &nlk->state);
887 if (!test_bit(0, &nlk->state))
888 wake_up_interruptible(&nlk->wait);
889}
890
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000891static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700892{
893 int ret;
894 struct netlink_sock *nlk = nlk_sk(sk);
895
896 ret = -ECONNREFUSED;
897 if (nlk->netlink_rcv != NULL) {
898 ret = skb->len;
899 skb_set_owner_r(skb, sk);
900 nlk->netlink_rcv(skb);
901 }
902 kfree_skb(skb);
903 sock_put(sk);
904 return ret;
905}
906
907int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
908 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct sock *sk;
911 int err;
912 long timeo;
913
914 skb = netlink_trim(skb, gfp_any());
915
916 timeo = sock_sndtimeo(ssk, nonblock);
917retry:
918 sk = netlink_getsockbypid(ssk, pid);
919 if (IS_ERR(sk)) {
920 kfree_skb(skb);
921 return PTR_ERR(sk);
922 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700923 if (netlink_is_kernel(sk))
924 return netlink_unicast_kernel(sk, skb);
925
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700926 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700927 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700928 kfree_skb(skb);
929 sock_put(sk);
930 return err;
931 }
932
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700933 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (err == 1)
935 goto retry;
936 if (err)
937 return err;
938
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700939 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800941EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Patrick McHardy4277a082006-03-20 18:52:01 -0800943int netlink_has_listeners(struct sock *sk, unsigned int group)
944{
945 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000946 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800947
Denis V. Lunevaed81562007-10-10 21:14:32 -0700948 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700949
950 rcu_read_lock();
951 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
952
Patrick McHardy4277a082006-03-20 18:52:01 -0800953 if (group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000954 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700955
956 rcu_read_unlock();
957
Patrick McHardy4277a082006-03-20 18:52:01 -0800958 return res;
959}
960EXPORT_SYMBOL_GPL(netlink_has_listeners);
961
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000962static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct netlink_sock *nlk = nlk_sk(sk);
965
966 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
967 !test_bit(0, &nlk->state)) {
968 skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000969 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +0000970 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972 return -1;
973}
974
975struct netlink_broadcast_data {
976 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200977 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 u32 pid;
979 u32 group;
980 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800981 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 int congested;
983 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400984 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -0700986 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
987 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988};
989
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000990static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 struct netlink_broadcast_data *p)
992{
993 struct netlink_sock *nlk = nlk_sk(sk);
994 int val;
995
996 if (p->exclude_sk == sk)
997 goto out;
998
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700999 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1000 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 goto out;
1002
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001003 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001004 goto out;
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (p->failure) {
1007 netlink_overrun(sk);
1008 goto out;
1009 }
1010
1011 sock_hold(sk);
1012 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001013 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 p->skb2 = skb_clone(p->skb, p->allocation);
1015 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001016 p->skb2 = skb_get(p->skb);
1017 /*
1018 * skb ownership may have been set when
1019 * delivered to a previous socket.
1020 */
1021 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023 }
1024 if (p->skb2 == NULL) {
1025 netlink_overrun(sk);
1026 /* Clone failed. Notify ALL listeners. */
1027 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001028 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1029 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001030 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1031 kfree_skb(p->skb2);
1032 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001033 } else if (sk_filter(sk, p->skb2)) {
1034 kfree_skb(p->skb2);
1035 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1037 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001038 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1039 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 } else {
1041 p->congested |= val;
1042 p->delivered = 1;
1043 p->skb2 = NULL;
1044 }
1045 sock_put(sk);
1046
1047out:
1048 return 0;
1049}
1050
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001051int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
1052 u32 group, gfp_t allocation,
1053 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1054 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001056 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct netlink_broadcast_data info;
1058 struct hlist_node *node;
1059 struct sock *sk;
1060
1061 skb = netlink_trim(skb, allocation);
1062
1063 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001064 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 info.pid = pid;
1066 info.group = group;
1067 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001068 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 info.congested = 0;
1070 info.delivered = 0;
1071 info.allocation = allocation;
1072 info.skb = skb;
1073 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001074 info.tx_filter = filter;
1075 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /* While we sleep in clone, do not allow to change socket list */
1078
1079 netlink_lock_table();
1080
1081 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1082 do_one_broadcast(sk, &info);
1083
Neil Horman70d4bf62010-07-20 06:45:56 +00001084 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 netlink_unlock_table();
1087
Neil Horman70d4bf62010-07-20 06:45:56 +00001088 if (info.delivery_failure) {
1089 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001090 return -ENOBUFS;
Neil Horman70d4bf62010-07-20 06:45:56 +00001091 } else
1092 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (info.delivered) {
1095 if (info.congested && (allocation & __GFP_WAIT))
1096 yield();
1097 return 0;
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return -ESRCH;
1100}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001101EXPORT_SYMBOL(netlink_broadcast_filtered);
1102
1103int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
1104 u32 group, gfp_t allocation)
1105{
1106 return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
1107 NULL, NULL);
1108}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001109EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111struct netlink_set_err_data {
1112 struct sock *exclude_sk;
1113 u32 pid;
1114 u32 group;
1115 int code;
1116};
1117
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001118static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001121 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 if (sk == p->exclude_sk)
1124 goto out;
1125
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001126 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001127 goto out;
1128
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001129 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1130 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 goto out;
1132
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001133 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1134 ret = 1;
1135 goto out;
1136 }
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 sk->sk_err = p->code;
1139 sk->sk_error_report(sk);
1140out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001141 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001144/**
1145 * netlink_set_err - report error to broadcast listeners
1146 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1147 * @pid: the PID of a process that we want to skip (if any)
1148 * @groups: the broadcast group that will notice the error
1149 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001150 *
1151 * This function returns the number of broadcast listeners that have set the
1152 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001153 */
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001154int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 struct netlink_set_err_data info;
1157 struct hlist_node *node;
1158 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001159 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 info.exclude_sk = ssk;
1162 info.pid = pid;
1163 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001164 /* sk->sk_err wants a positive error value */
1165 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 read_lock(&nl_table_lock);
1168
1169 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001170 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001173 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001175EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Johannes Berg84659eb2007-07-18 15:47:05 -07001177/* must be called with netlink table grabbed */
1178static void netlink_update_socket_mc(struct netlink_sock *nlk,
1179 unsigned int group,
1180 int is_new)
1181{
1182 int old, new = !!is_new, subscriptions;
1183
1184 old = test_bit(group - 1, nlk->groups);
1185 subscriptions = nlk->subscriptions - old + new;
1186 if (new)
1187 __set_bit(group - 1, nlk->groups);
1188 else
1189 __clear_bit(group - 1, nlk->groups);
1190 netlink_update_subscriptions(&nlk->sk, subscriptions);
1191 netlink_update_listeners(&nlk->sk);
1192}
1193
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001194static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001195 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001196{
1197 struct sock *sk = sock->sk;
1198 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001199 unsigned int val = 0;
1200 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001201
1202 if (level != SOL_NETLINK)
1203 return -ENOPROTOOPT;
1204
1205 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001206 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001207 return -EFAULT;
1208
1209 switch (optname) {
1210 case NETLINK_PKTINFO:
1211 if (val)
1212 nlk->flags |= NETLINK_RECV_PKTINFO;
1213 else
1214 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1215 err = 0;
1216 break;
1217 case NETLINK_ADD_MEMBERSHIP:
1218 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001219 if (!netlink_capable(sock, NL_NONROOT_RECV))
1220 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001221 err = netlink_realloc_groups(sk);
1222 if (err)
1223 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001224 if (!val || val - 1 >= nlk->ngroups)
1225 return -EINVAL;
1226 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001227 netlink_update_socket_mc(nlk, val,
1228 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001229 netlink_table_ungrab();
1230 err = 0;
1231 break;
1232 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001233 case NETLINK_BROADCAST_ERROR:
1234 if (val)
1235 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1236 else
1237 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1238 err = 0;
1239 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001240 case NETLINK_NO_ENOBUFS:
1241 if (val) {
1242 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1243 clear_bit(0, &nlk->state);
1244 wake_up_interruptible(&nlk->wait);
1245 } else
1246 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1247 err = 0;
1248 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001249 default:
1250 err = -ENOPROTOOPT;
1251 }
1252 return err;
1253}
1254
1255static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001256 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001257{
1258 struct sock *sk = sock->sk;
1259 struct netlink_sock *nlk = nlk_sk(sk);
1260 int len, val, err;
1261
1262 if (level != SOL_NETLINK)
1263 return -ENOPROTOOPT;
1264
1265 if (get_user(len, optlen))
1266 return -EFAULT;
1267 if (len < 0)
1268 return -EINVAL;
1269
1270 switch (optname) {
1271 case NETLINK_PKTINFO:
1272 if (len < sizeof(int))
1273 return -EINVAL;
1274 len = sizeof(int);
1275 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001276 if (put_user(len, optlen) ||
1277 put_user(val, optval))
1278 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001279 err = 0;
1280 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001281 case NETLINK_BROADCAST_ERROR:
1282 if (len < sizeof(int))
1283 return -EINVAL;
1284 len = sizeof(int);
1285 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1286 if (put_user(len, optlen) ||
1287 put_user(val, optval))
1288 return -EFAULT;
1289 err = 0;
1290 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001291 case NETLINK_NO_ENOBUFS:
1292 if (len < sizeof(int))
1293 return -EINVAL;
1294 len = sizeof(int);
1295 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1296 if (put_user(len, optlen) ||
1297 put_user(val, optval))
1298 return -EFAULT;
1299 err = 0;
1300 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001301 default:
1302 err = -ENOPROTOOPT;
1303 }
1304 return err;
1305}
1306
1307static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1308{
1309 struct nl_pktinfo info;
1310
1311 info.group = NETLINK_CB(skb).dst_group;
1312 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1313}
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1316 struct msghdr *msg, size_t len)
1317{
1318 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1319 struct sock *sk = sock->sk;
1320 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001321 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001323 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct sk_buff *skb;
1325 int err;
1326 struct scm_cookie scm;
1327
1328 if (msg->msg_flags&MSG_OOB)
1329 return -EOPNOTSUPP;
1330
Eric Dumazet16e57262011-09-19 05:52:27 +00001331 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00001333
Eric Dumazet7c799a12012-08-21 06:21:17 +00001334 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (err < 0)
1336 return err;
1337
1338 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001339 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001341 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001343 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001344 err = -EPERM;
Pablo Neira Ayuso912af4d2012-08-23 02:09:11 +00001345 if ((dst_group || dst_pid) &&
1346 !netlink_capable(sock, NL_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001347 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 } else {
1349 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001350 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352
1353 if (!nlk->pid) {
1354 err = netlink_autobind(sock);
1355 if (err)
1356 goto out;
1357 }
1358
1359 err = -EMSGSIZE;
1360 if (len > sk->sk_sndbuf - 32)
1361 goto out;
1362 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001363 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001364 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 goto out;
1366
1367 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001368 NETLINK_CB(skb).dst_group = dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001372 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 kfree_skb(skb);
1374 goto out;
1375 }
1376
1377 err = security_netlink_send(sk, skb);
1378 if (err) {
1379 kfree_skb(skb);
1380 goto out;
1381 }
1382
Patrick McHardyd629b832005-08-14 19:27:50 -07001383 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001385 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1388
1389out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001390 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return err;
1392}
1393
1394static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1395 struct msghdr *msg, size_t len,
1396 int flags)
1397{
1398 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1399 struct scm_cookie scm;
1400 struct sock *sk = sock->sk;
1401 struct netlink_sock *nlk = nlk_sk(sk);
1402 int noblock = flags&MSG_DONTWAIT;
1403 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00001404 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001405 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 if (flags&MSG_OOB)
1408 return -EOPNOTSUPP;
1409
1410 copied = 0;
1411
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001412 skb = skb_recv_datagram(sk, flags, noblock, &err);
1413 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 goto out;
1415
Johannes Berg68d6ac62010-08-15 21:20:44 +00001416 data_skb = skb;
1417
Johannes Berg1dacc762009-07-01 11:26:02 +00001418#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1419 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00001420 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00001421 * If this skb has a frag_list, then here that means that we
1422 * will have to use the frag_list skb's data for compat tasks
1423 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00001424 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00001425 * If we need to send the compat skb, assign it to the
1426 * 'data_skb' variable so that it will be used below for data
1427 * copying. We keep 'skb' for everything else, including
1428 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00001429 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00001430 if (flags & MSG_CMSG_COMPAT)
1431 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00001432 }
1433#endif
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 msg->msg_namelen = 0;
1436
Johannes Berg68d6ac62010-08-15 21:20:44 +00001437 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (len < copied) {
1439 msg->msg_flags |= MSG_TRUNC;
1440 copied = len;
1441 }
1442
Johannes Berg68d6ac62010-08-15 21:20:44 +00001443 skb_reset_transport_header(data_skb);
1444 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001447 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 addr->nl_family = AF_NETLINK;
1449 addr->nl_pad = 0;
1450 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001451 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 msg->msg_namelen = sizeof(*addr);
1453 }
1454
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001455 if (nlk->flags & NETLINK_RECV_PKTINFO)
1456 netlink_cmsg_recv_pktinfo(msg, skb);
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (NULL == siocb->scm) {
1459 memset(&scm, 0, sizeof(scm));
1460 siocb->scm = &scm;
1461 }
1462 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001463 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00001464 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 skb_free_datagram(sk, skb);
1467
Andrey Vaginb44d2112011-02-21 02:40:47 +00001468 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1469 ret = netlink_dump(sk);
1470 if (ret) {
1471 sk->sk_err = ret;
1472 sk->sk_error_report(sk);
1473 }
1474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477out:
1478 netlink_rcv_wake(sk);
1479 return err ? : copied;
1480}
1481
1482static void netlink_data_ready(struct sock *sk, int len)
1483{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001484 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001488 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 * complete set of kernel non-blocking support for message
1490 * queueing.
1491 */
1492
1493struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001494netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001495 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001496 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 struct socket *sock;
1499 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001500 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001501 struct listeners *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001503 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001505 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return NULL;
1507
1508 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1509 return NULL;
1510
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001511 /*
1512 * We have to just have a reference on the net from sk, but don't
1513 * get_net it. Besides, we cannot get and then put the net here.
1514 * So we create one inside init_net and the move it to net.
1515 */
1516
1517 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1518 goto out_sock_release_nosk;
1519
1520 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001521 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001522
Patrick McHardy4277a082006-03-20 18:52:01 -08001523 if (groups < 32)
1524 groups = 32;
1525
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001526 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001527 if (!listeners)
1528 goto out_sock_release;
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 sk->sk_data_ready = netlink_data_ready;
1531 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001532 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001534 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001535 goto out_sock_release;
1536
1537 nlk = nlk_sk(sk);
1538 nlk->flags |= NETLINK_KERNEL_SOCKET;
1539
1540 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001541 if (!nl_table[unit].registered) {
1542 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001543 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001544 nl_table[unit].cb_mutex = cb_mutex;
1545 nl_table[unit].module = module;
1546 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001547 } else {
1548 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001549 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001550 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001551 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001552 return sk;
1553
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001554out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001555 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001556 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001557 return NULL;
1558
1559out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001560 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001561 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001563EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001565
1566void
1567netlink_kernel_release(struct sock *sk)
1568{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001569 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001570}
1571EXPORT_SYMBOL(netlink_kernel_release);
1572
Johannes Bergd136f1b2009-09-12 03:03:15 +00001573int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001574{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001575 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001576 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001577
1578 if (groups < 32)
1579 groups = 32;
1580
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001581 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001582 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
1583 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00001584 return -ENOMEM;
Eric Dumazet33d480c2011-08-11 19:30:52 +00001585 old = rcu_dereference_protected(tbl->listeners, 1);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001586 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
1587 rcu_assign_pointer(tbl->listeners, new);
1588
Lai Jiangshan37b6b932011-03-15 18:01:42 +08001589 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001590 }
1591 tbl->groups = groups;
1592
Johannes Bergd136f1b2009-09-12 03:03:15 +00001593 return 0;
1594}
1595
1596/**
1597 * netlink_change_ngroups - change number of multicast groups
1598 *
1599 * This changes the number of multicast groups that are available
1600 * on a certain netlink family. Note that it is not possible to
1601 * change the number of groups to below 32. Also note that it does
1602 * not implicitly call netlink_clear_multicast_users() when the
1603 * number of groups is reduced.
1604 *
1605 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1606 * @groups: The new number of groups.
1607 */
1608int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1609{
1610 int err;
1611
1612 netlink_table_grab();
1613 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001614 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00001615
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001616 return err;
1617}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001618
Johannes Bergb8273572009-09-24 15:44:05 -07001619void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1620{
1621 struct sock *sk;
1622 struct hlist_node *node;
1623 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1624
1625 sk_for_each_bound(sk, node, &tbl->mc_list)
1626 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1627}
1628
Johannes Berg84659eb2007-07-18 15:47:05 -07001629/**
1630 * netlink_clear_multicast_users - kick off multicast listeners
1631 *
1632 * This function removes all listeners from the given group.
1633 * @ksk: The kernel netlink socket, as returned by
1634 * netlink_kernel_create().
1635 * @group: The multicast group to clear.
1636 */
1637void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1638{
Johannes Berg84659eb2007-07-18 15:47:05 -07001639 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07001640 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07001641 netlink_table_ungrab();
1642}
Johannes Berg84659eb2007-07-18 15:47:05 -07001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001645{
1646 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001648}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001649EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651static void netlink_destroy_callback(struct netlink_callback *cb)
1652{
Wei Yongjun91744f62009-02-25 00:34:41 +00001653 kfree_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 kfree(cb);
1655}
1656
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05001657struct nlmsghdr *
1658__nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
1659{
1660 struct nlmsghdr *nlh;
1661 int size = NLMSG_LENGTH(len);
1662
1663 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
1664 nlh->nlmsg_type = type;
1665 nlh->nlmsg_len = size;
1666 nlh->nlmsg_flags = flags;
1667 nlh->nlmsg_pid = pid;
1668 nlh->nlmsg_seq = seq;
1669 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
1670 memset(NLMSG_DATA(nlh) + len, 0, NLMSG_ALIGN(size) - size);
1671 return nlh;
1672}
1673EXPORT_SYMBOL(__nlmsg_put);
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675/*
1676 * It looks a bit ugly.
1677 * It would be better to create kernel thread.
1678 */
1679
1680static int netlink_dump(struct sock *sk)
1681{
1682 struct netlink_sock *nlk = nlk_sk(sk);
1683 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001684 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001686 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001687 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001689 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 cb = nlk->cb;
1692 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001693 err = -EINVAL;
1694 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696
Greg Rosec7ac8672011-06-10 01:27:09 +00001697 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
1698
1699 skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL);
1700 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00001701 goto errout_skb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 len = cb->dump(skb, cb);
1704
1705 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001706 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001707
1708 if (sk_filter(sk, skb))
1709 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001710 else
1711 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 return 0;
1713 }
1714
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001715 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1716 if (!nlh)
1717 goto errout_skb;
1718
Johannes Berg670dc282011-06-20 13:40:46 +02001719 nl_dump_check_consistent(cb, nlh);
1720
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001721 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1722
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001723 if (sk_filter(sk, skb))
1724 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001725 else
1726 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Thomas Grafa8f74b22005-11-10 02:25:52 +01001728 if (cb->done)
1729 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001731 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Gao feng70f7f1c2012-10-04 20:15:48 +00001733 module_put(cb->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001736
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001737errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001738 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001739 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001740 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Gao feng70f7f1c2012-10-04 20:15:48 +00001743int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1744 const struct nlmsghdr *nlh,
1745 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
1747 struct netlink_callback *cb;
1748 struct sock *sk;
1749 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001750 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001752 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (cb == NULL)
1754 return -ENOBUFS;
1755
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001756 cb->dump = control->dump;
1757 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00001759 cb->data = control->data;
Gao feng70f7f1c2012-10-04 20:15:48 +00001760 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001761 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 atomic_inc(&skb->users);
1763 cb->skb = skb;
1764
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001765 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (sk == NULL) {
1767 netlink_destroy_callback(cb);
1768 return -ECONNREFUSED;
1769 }
1770 nlk = nlk_sk(sk);
Gao feng70f7f1c2012-10-04 20:15:48 +00001771
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001772 mutex_lock(nlk->cb_mutex);
Gao feng70f7f1c2012-10-04 20:15:48 +00001773 /* A dump is in progress... */
Herbert Xu3f660d62007-05-03 03:17:14 -07001774 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001775 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 netlink_destroy_callback(cb);
Gao feng70f7f1c2012-10-04 20:15:48 +00001777 ret = -EBUSY;
1778 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
Gao feng70f7f1c2012-10-04 20:15:48 +00001780 /* add reference of module which cb->dump belongs to */
1781 if (!try_module_get(cb->module)) {
1782 mutex_unlock(nlk->cb_mutex);
1783 netlink_destroy_callback(cb);
1784 ret = -EPROTONOSUPPORT;
1785 goto out;
1786 }
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001789 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Andrey Vaginb44d2112011-02-21 02:40:47 +00001791 ret = netlink_dump(sk);
Gao feng70f7f1c2012-10-04 20:15:48 +00001792out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001794
Andrey Vaginb44d2112011-02-21 02:40:47 +00001795 if (ret)
1796 return ret;
1797
Denis V. Lunev5c582982007-10-23 20:29:25 -07001798 /* We successfully started a dump, by returning -EINTR we
1799 * signal not to send ACK even if it was requested.
1800 */
1801 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
Gao feng70f7f1c2012-10-04 20:15:48 +00001803EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1806{
1807 struct sk_buff *skb;
1808 struct nlmsghdr *rep;
1809 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001810 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Thomas Graf339bf982006-11-10 14:10:15 -08001812 /* error messages get the original request appened */
1813 if (err)
1814 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Thomas Graf339bf982006-11-10 14:10:15 -08001816 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (!skb) {
1818 struct sock *sk;
1819
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001820 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001821 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 NETLINK_CB(in_skb).pid);
1823 if (sk) {
1824 sk->sk_err = ENOBUFS;
1825 sk->sk_error_report(sk);
1826 sock_put(sk);
1827 }
1828 return;
1829 }
1830
1831 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00001832 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001833 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001835 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1837}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001838EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001840int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001841 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001842{
Thomas Graf82ace472005-11-10 02:25:53 +01001843 struct nlmsghdr *nlh;
1844 int err;
1845
1846 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001847 int msglen;
1848
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001849 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001850 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001851
Martin Murrayad8e4b72006-01-10 13:02:29 -08001852 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001853 return 0;
1854
Thomas Grafd35b6852007-03-22 23:28:46 -07001855 /* Only requests are handled by the kernel */
1856 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001857 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001858
Thomas Graf45e7ae72007-03-22 23:29:10 -07001859 /* Skip control messages */
1860 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001861 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001862
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001863 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001864 if (err == -EINTR)
1865 goto skip;
1866
1867ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001868 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001869 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001870
Denis V. Lunev5c582982007-10-23 20:29:25 -07001871skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001872 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001873 if (msglen > skb->len)
1874 msglen = skb->len;
1875 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001876 }
1877
1878 return 0;
1879}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001880EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001881
1882/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001883 * nlmsg_notify - send a notification netlink message
1884 * @sk: netlink socket to use
1885 * @skb: notification message
1886 * @pid: destination netlink pid for reports or 0
1887 * @group: destination multicast group or 0
1888 * @report: 1 to report back, 0 to disable
1889 * @flags: allocation flags
1890 */
1891int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1892 unsigned int group, int report, gfp_t flags)
1893{
1894 int err = 0;
1895
1896 if (group) {
1897 int exclude_pid = 0;
1898
1899 if (report) {
1900 atomic_inc(&skb->users);
1901 exclude_pid = pid;
1902 }
1903
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001904 /* errors reported via destination sk->sk_err, but propagate
1905 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1906 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001907 }
1908
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001909 if (report) {
1910 int err2;
1911
1912 err2 = nlmsg_unicast(sk, skb, pid);
1913 if (!err || err == -ESRCH)
1914 err = err2;
1915 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07001916
1917 return err;
1918}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001919EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921#ifdef CONFIG_PROC_FS
1922struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001923 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 int link;
1925 int hash_idx;
1926};
1927
1928static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1929{
1930 struct nl_seq_iter *iter = seq->private;
1931 int i, j;
1932 struct sock *s;
1933 struct hlist_node *node;
1934 loff_t off = 0;
1935
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001936 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 struct nl_pid_hash *hash = &nl_table[i].hash;
1938
1939 for (j = 0; j <= hash->mask; j++) {
1940 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001941 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001942 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (off == pos) {
1944 iter->link = i;
1945 iter->hash_idx = j;
1946 return s;
1947 }
1948 ++off;
1949 }
1950 }
1951 }
1952 return NULL;
1953}
1954
1955static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001956 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
1958 read_lock(&nl_table_lock);
1959 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1960}
1961
1962static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1963{
1964 struct sock *s;
1965 struct nl_seq_iter *iter;
1966 int i, j;
1967
1968 ++*pos;
1969
1970 if (v == SEQ_START_TOKEN)
1971 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001972
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001973 iter = seq->private;
1974 s = v;
1975 do {
1976 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001977 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (s)
1979 return s;
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 i = iter->link;
1982 j = iter->hash_idx + 1;
1983
1984 do {
1985 struct nl_pid_hash *hash = &nl_table[i].hash;
1986
1987 for (; j <= hash->mask; j++) {
1988 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001989 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001990 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (s) {
1992 iter->link = i;
1993 iter->hash_idx = j;
1994 return s;
1995 }
1996 }
1997
1998 j = 0;
1999 } while (++i < MAX_LINKS);
2000
2001 return NULL;
2002}
2003
2004static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002005 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 read_unlock(&nl_table_lock);
2008}
2009
2010
2011static int netlink_seq_show(struct seq_file *seq, void *v)
2012{
2013 if (v == SEQ_START_TOKEN)
2014 seq_puts(seq,
2015 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002016 "Rmem Wmem Dump Locks Drops Inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 else {
2018 struct sock *s = v;
2019 struct netlink_sock *nlk = nlk_sk(s);
2020
Dan Rosenberg71338aa2011-05-23 12:17:35 +00002021 seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 s,
2023 s->sk_protocol,
2024 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002025 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002026 sk_rmem_alloc_get(s),
2027 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002029 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002030 atomic_read(&s->sk_drops),
2031 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 );
2033
2034 }
2035 return 0;
2036}
2037
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002038static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 .start = netlink_seq_start,
2040 .next = netlink_seq_next,
2041 .stop = netlink_seq_stop,
2042 .show = netlink_seq_show,
2043};
2044
2045
2046static int netlink_seq_open(struct inode *inode, struct file *file)
2047{
Denis V. Luneve372c412007-11-19 22:31:54 -08002048 return seq_open_net(inode, file, &netlink_seq_ops,
2049 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002050}
2051
Arjan van de Venda7071d2007-02-12 00:55:36 -08002052static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 .owner = THIS_MODULE,
2054 .open = netlink_seq_open,
2055 .read = seq_read,
2056 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002057 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058};
2059
2060#endif
2061
2062int netlink_register_notifier(struct notifier_block *nb)
2063{
Alan Sterne041c682006-03-27 01:16:30 -08002064 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002066EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068int netlink_unregister_notifier(struct notifier_block *nb)
2069{
Alan Sterne041c682006-03-27 01:16:30 -08002070 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002072EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002073
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002074static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 .family = PF_NETLINK,
2076 .owner = THIS_MODULE,
2077 .release = netlink_release,
2078 .bind = netlink_bind,
2079 .connect = netlink_connect,
2080 .socketpair = sock_no_socketpair,
2081 .accept = sock_no_accept,
2082 .getname = netlink_getname,
2083 .poll = datagram_poll,
2084 .ioctl = sock_no_ioctl,
2085 .listen = sock_no_listen,
2086 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002087 .setsockopt = netlink_setsockopt,
2088 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 .sendmsg = netlink_sendmsg,
2090 .recvmsg = netlink_recvmsg,
2091 .mmap = sock_no_mmap,
2092 .sendpage = sock_no_sendpage,
2093};
2094
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002095static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 .family = PF_NETLINK,
2097 .create = netlink_create,
2098 .owner = THIS_MODULE, /* for consistency 8) */
2099};
2100
Pavel Emelyanov46650792007-10-08 20:38:39 -07002101static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002102{
2103#ifdef CONFIG_PROC_FS
2104 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2105 return -ENOMEM;
2106#endif
2107 return 0;
2108}
2109
Pavel Emelyanov46650792007-10-08 20:38:39 -07002110static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002111{
2112#ifdef CONFIG_PROC_FS
2113 proc_net_remove(net, "netlink");
2114#endif
2115}
2116
David S. Millerb963ea82010-08-30 19:08:01 -07002117static void __init netlink_add_usersock_entry(void)
2118{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002119 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002120 int groups = 32;
2121
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002122 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002123 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002124 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002125
2126 netlink_table_grab();
2127
2128 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002129 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002130 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2131 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso912af4d2012-08-23 02:09:11 +00002132 nl_table[NETLINK_USERSOCK].nl_nonroot = NL_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07002133
2134 netlink_table_ungrab();
2135}
2136
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002137static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002138 .init = netlink_net_init,
2139 .exit = netlink_net_exit,
2140};
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142static int __init netlink_proto_init(void)
2143{
2144 struct sk_buff *dummy_skb;
2145 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002146 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 unsigned int order;
2148 int err = proto_register(&netlink_proto, 0);
2149
2150 if (err != 0)
2151 goto out;
2152
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07002153 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002155 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002156 if (!nl_table)
2157 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Jan Beulich44813742009-09-21 17:03:05 -07002159 if (totalram_pages >= (128 * 1024))
2160 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 else
Jan Beulich44813742009-09-21 17:03:05 -07002162 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002164 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2165 limit = (1UL << order) / sizeof(struct hlist_head);
2166 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 for (i = 0; i < MAX_LINKS; i++) {
2169 struct nl_pid_hash *hash = &nl_table[i].hash;
2170
Eric Dumazetea729122007-12-11 02:09:47 -08002171 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (!hash->table) {
2173 while (i-- > 0)
2174 nl_pid_hash_free(nl_table[i].hash.table,
2175 1 * sizeof(*hash->table));
2176 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002177 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 hash->max_shift = order;
2180 hash->shift = 0;
2181 hash->mask = 0;
2182 hash->rehash_time = jiffies;
2183 }
2184
David S. Millerb963ea82010-08-30 19:08:01 -07002185 netlink_add_usersock_entry();
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002188 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002189 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 rtnetlink_init();
2191out:
2192 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002193panic:
2194 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195}
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197core_initcall(netlink_proto_init);