blob: ff960b792ee4f949a26d003da3a8bd0d30e75bf8 [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
Eric Dumazet0f04b9a2012-10-18 03:21:55 +0000140#define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
141
Alan Sterne041c682006-03-27 01:16:30 -0800142static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000144static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700145{
146 return group ? 1 << (group - 1) : 0;
147}
148
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000149static inline struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
152}
153
154static void netlink_sock_destruct(struct sock *sk)
155{
Herbert Xu3f660d62007-05-03 03:17:14 -0700156 struct netlink_sock *nlk = nlk_sk(sk);
157
Herbert Xu3f660d62007-05-03 03:17:14 -0700158 if (nlk->cb) {
159 if (nlk->cb->done)
160 nlk->cb->done(nlk->cb);
Gao feng70f7f1c2012-10-04 20:15:48 +0000161
162 module_put(nlk->cb->module);
Herbert Xu3f660d62007-05-03 03:17:14 -0700163 netlink_destroy_callback(nlk->cb);
164 }
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 skb_queue_purge(&sk->sk_receive_queue);
167
168 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800169 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return;
171 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700172
173 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
174 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
175 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800178/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
179 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
181 * this, _but_ remember, it adds useless work on UP machines.
182 */
183
Johannes Bergd136f1b2009-09-12 03:03:15 +0000184void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800185 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000187 might_sleep();
188
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700189 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (atomic_read(&nl_table_users)) {
192 DECLARE_WAITQUEUE(wait, current);
193
194 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800195 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 set_current_state(TASK_UNINTERRUPTIBLE);
197 if (atomic_read(&nl_table_users) == 0)
198 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700199 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700201 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 __set_current_state(TASK_RUNNING);
205 remove_wait_queue(&nl_table_wait, &wait);
206 }
207}
208
Johannes Bergd136f1b2009-09-12 03:03:15 +0000209void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800210 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700212 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 wake_up(&nl_table_wait);
214}
215
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800216static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217netlink_lock_table(void)
218{
219 /* read_lock() synchronizes us to netlink_table_grab */
220
221 read_lock(&nl_table_lock);
222 atomic_inc(&nl_table_users);
223 read_unlock(&nl_table_lock);
224}
225
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800226static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227netlink_unlock_table(void)
228{
229 if (atomic_dec_and_test(&nl_table_users))
230 wake_up(&nl_table_wait);
231}
232
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000233static struct sock *netlink_lookup(struct net *net, int protocol, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 struct nl_pid_hash *hash = &nl_table[protocol].hash;
236 struct hlist_head *head;
237 struct sock *sk;
238 struct hlist_node *node;
239
240 read_lock(&nl_table_lock);
241 head = nl_pid_hashfn(hash, pid);
242 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900243 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 sock_hold(sk);
245 goto found;
246 }
247 }
248 sk = NULL;
249found:
250 read_unlock(&nl_table_lock);
251 return sk;
252}
253
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000254static struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800257 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 else
259 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800260 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
261 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000264static void nl_pid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 if (size <= PAGE_SIZE)
267 kfree(table);
268 else
269 free_pages((unsigned long)table, get_order(size));
270}
271
272static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
273{
274 unsigned int omask, mask, shift;
275 size_t osize, size;
276 struct hlist_head *otable, *table;
277 int i;
278
279 omask = mask = hash->mask;
280 osize = size = (mask + 1) * sizeof(*table);
281 shift = hash->shift;
282
283 if (grow) {
284 if (++shift > hash->max_shift)
285 return 0;
286 mask = mask * 2 + 1;
287 size *= 2;
288 }
289
Eric Dumazetea729122007-12-11 02:09:47 -0800290 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (!table)
292 return 0;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 otable = hash->table;
295 hash->table = table;
296 hash->mask = mask;
297 hash->shift = shift;
298 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
299
300 for (i = 0; i <= omask; i++) {
301 struct sock *sk;
302 struct hlist_node *node, *tmp;
303
304 sk_for_each_safe(sk, node, tmp, &otable[i])
305 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
306 }
307
308 nl_pid_hash_free(otable, osize);
309 hash->rehash_time = jiffies + 10 * 60 * HZ;
310 return 1;
311}
312
313static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
314{
315 int avg = hash->entries >> hash->shift;
316
317 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
318 return 1;
319
320 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
321 nl_pid_hash_rehash(hash, 0);
322 return 1;
323 }
324
325 return 0;
326}
327
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800328static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Patrick McHardy4277a082006-03-20 18:52:01 -0800330static void
331netlink_update_listeners(struct sock *sk)
332{
333 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
334 struct hlist_node *node;
335 unsigned long mask;
336 unsigned int i;
Eric Dumazet0f04b9a2012-10-18 03:21:55 +0000337 struct listeners *listeners;
338
339 listeners = nl_deref_protected(tbl->listeners);
340 if (!listeners)
341 return;
Patrick McHardy4277a082006-03-20 18:52:01 -0800342
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700343 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800344 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700345 sk_for_each_bound(sk, node, &tbl->mc_list) {
346 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
347 mask |= nlk_sk(sk)->groups[i];
348 }
Eric Dumazet0f04b9a2012-10-18 03:21:55 +0000349 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800350 }
351 /* this function is only called with the netlink table "grabbed", which
352 * makes sure updates are visible before bind or setsockopt return. */
353}
354
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200355static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
358 struct hlist_head *head;
359 int err = -EADDRINUSE;
360 struct sock *osk;
361 struct hlist_node *node;
362 int len;
363
364 netlink_table_grab();
365 head = nl_pid_hashfn(hash, pid);
366 len = 0;
367 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900368 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 break;
370 len++;
371 }
372 if (node)
373 goto err;
374
375 err = -EBUSY;
376 if (nlk_sk(sk)->pid)
377 goto err;
378
379 err = -ENOMEM;
380 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
381 goto err;
382
383 if (len && nl_pid_hash_dilute(hash, len))
384 head = nl_pid_hashfn(hash, pid);
385 hash->entries++;
386 nlk_sk(sk)->pid = pid;
387 sk_add_node(sk, head);
388 err = 0;
389
390err:
391 netlink_table_ungrab();
392 return err;
393}
394
395static void netlink_remove(struct sock *sk)
396{
397 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700398 if (sk_del_node_init(sk))
399 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700400 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 __sk_del_bind_node(sk);
402 netlink_table_ungrab();
403}
404
405static struct proto netlink_proto = {
406 .name = "NETLINK",
407 .owner = THIS_MODULE,
408 .obj_size = sizeof(struct netlink_sock),
409};
410
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700411static int __netlink_create(struct net *net, struct socket *sock,
412 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct sock *sk;
415 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700416
417 sock->ops = &netlink_ops;
418
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700419 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700420 if (!sk)
421 return -ENOMEM;
422
423 sock_init_data(sock, sk);
424
425 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700426 if (cb_mutex)
427 nlk->cb_mutex = cb_mutex;
428 else {
429 nlk->cb_mutex = &nlk->cb_def_mutex;
430 mutex_init(nlk->cb_mutex);
431 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700432 init_waitqueue_head(&nlk->wait);
433
434 sk->sk_destruct = netlink_sock_destruct;
435 sk->sk_protocol = protocol;
436 return 0;
437}
438
Eric Paris3f378b62009-11-05 22:18:14 -0800439static int netlink_create(struct net *net, struct socket *sock, int protocol,
440 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -0700441{
442 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700443 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700444 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700445 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 sock->state = SS_UNCONNECTED;
448
449 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
450 return -ESOCKTNOSUPPORT;
451
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800452 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return -EPROTONOSUPPORT;
454
Patrick McHardy77247bb2005-08-14 19:27:13 -0700455 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700456#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700457 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700458 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700459 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700460 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700461 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700462#endif
463 if (nl_table[protocol].registered &&
464 try_module_get(nl_table[protocol].module))
465 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000466 else
467 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700468 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700469 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700470
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000471 if (err < 0)
472 goto out;
473
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800474 err = __netlink_create(net, sock, cb_mutex, protocol);
475 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700476 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
David S. Miller6f756a82008-11-23 17:34:03 -0800478 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800479 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800480 local_bh_enable();
481
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700482 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700483 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700484out:
485 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Patrick McHardyab33a172005-08-14 19:31:36 -0700487out_module:
488 module_put(module);
489 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492static int netlink_release(struct socket *sock)
493{
494 struct sock *sk = sock->sk;
495 struct netlink_sock *nlk;
496
497 if (!sk)
498 return 0;
499
500 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700501 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 nlk = nlk_sk(sk);
503
Herbert Xu3f660d62007-05-03 03:17:14 -0700504 /*
505 * OK. Socket is unlinked, any packets that arrive now
506 * will be purged.
507 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 sock->sk = NULL;
510 wake_up_interruptible_all(&nlk->wait);
511
512 skb_queue_purge(&sk->sk_write_queue);
513
Johannes Berg649300b2009-11-16 12:05:34 +0000514 if (nlk->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900516 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 .protocol = sk->sk_protocol,
518 .pid = nlk->pid,
519 };
Alan Sterne041c682006-03-27 01:16:30 -0800520 atomic_notifier_call_chain(&netlink_chain,
521 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900522 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700523
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800524 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700525
Patrick McHardy4277a082006-03-20 18:52:01 -0800526 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700527 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800528 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
529 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet0f04b9a2012-10-18 03:21:55 +0000530 struct listeners *old;
531
532 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
533 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
534 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800535 nl_table[sk->sk_protocol].module = NULL;
536 nl_table[sk->sk_protocol].registered = 0;
537 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800538 } else if (nlk->subscriptions)
539 netlink_update_listeners(sk);
540 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700541
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700542 kfree(nlk->groups);
543 nlk->groups = NULL;
544
Eric Dumazet37558102008-11-24 14:05:22 -0800545 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800546 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800547 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 sock_put(sk);
549 return 0;
550}
551
552static int netlink_autobind(struct socket *sock)
553{
554 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900555 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
557 struct hlist_head *head;
558 struct sock *osk;
559 struct hlist_node *node;
Tom Goff66aa4a52010-03-19 15:38:50 +0000560 s32 pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 int err;
562 static s32 rover = -4097;
563
564retry:
565 cond_resched();
566 netlink_table_grab();
567 head = nl_pid_hashfn(hash, pid);
568 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900569 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200570 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (nlk_sk(osk)->pid == pid) {
572 /* Bind collision, search negative pid values. */
573 pid = rover--;
574 if (rover > -4097)
575 rover = -4097;
576 netlink_table_ungrab();
577 goto retry;
578 }
579 }
580 netlink_table_ungrab();
581
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200582 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (err == -EADDRINUSE)
584 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700585
586 /* If 2 threads race to autobind, that is fine. */
587 if (err == -EBUSY)
588 err = 0;
589
590 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000593static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900594{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
596 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700599static void
600netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
601{
602 struct netlink_sock *nlk = nlk_sk(sk);
603
604 if (nlk->subscriptions && !subscriptions)
605 __sk_del_bind_node(sk);
606 else if (!nlk->subscriptions && subscriptions)
607 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
608 nlk->subscriptions = subscriptions;
609}
610
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700611static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700612{
613 struct netlink_sock *nlk = nlk_sk(sk);
614 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700615 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700616 int err = 0;
617
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700618 netlink_table_grab();
619
Patrick McHardy513c2502005-09-06 15:43:59 -0700620 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700621 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700622 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700623 goto out_unlock;
624 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700625
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700626 if (nlk->ngroups >= groups)
627 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700628
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700629 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
630 if (new_groups == NULL) {
631 err = -ENOMEM;
632 goto out_unlock;
633 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800634 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700635 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
636
637 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700638 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700639 out_unlock:
640 netlink_table_ungrab();
641 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700642}
643
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800644static int netlink_bind(struct socket *sock, struct sockaddr *addr,
645 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900648 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct netlink_sock *nlk = nlk_sk(sk);
650 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
651 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (nladdr->nl_family != AF_NETLINK)
654 return -EINVAL;
655
656 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700657 if (nladdr->nl_groups) {
658 if (!netlink_capable(sock, NL_NONROOT_RECV))
659 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700660 err = netlink_realloc_groups(sk);
661 if (err)
662 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 if (nlk->pid) {
666 if (nladdr->nl_pid != nlk->pid)
667 return -EINVAL;
668 } else {
669 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200670 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 netlink_autobind(sock);
672 if (err)
673 return err;
674 }
675
Patrick McHardy513c2502005-09-06 15:43:59 -0700676 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return 0;
678
679 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700680 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900681 hweight32(nladdr->nl_groups) -
682 hweight32(nlk->groups[0]));
683 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800684 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 netlink_table_ungrab();
686
687 return 0;
688}
689
690static int netlink_connect(struct socket *sock, struct sockaddr *addr,
691 int alen, int flags)
692{
693 int err = 0;
694 struct sock *sk = sock->sk;
695 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800696 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Changli Gao6503d962010-03-31 22:58:26 +0000698 if (alen < sizeof(addr->sa_family))
699 return -EINVAL;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (addr->sa_family == AF_UNSPEC) {
702 sk->sk_state = NETLINK_UNCONNECTED;
703 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700704 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 0;
706 }
707 if (addr->sa_family != AF_NETLINK)
708 return -EINVAL;
709
710 /* Only superuser is allowed to send multicasts */
711 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
712 return -EPERM;
713
714 if (!nlk->pid)
715 err = netlink_autobind(sock);
716
717 if (err == 0) {
718 sk->sk_state = NETLINK_CONNECTED;
719 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700720 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
723 return err;
724}
725
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800726static int netlink_getname(struct socket *sock, struct sockaddr *addr,
727 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct sock *sk = sock->sk;
730 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +0000731 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 nladdr->nl_family = AF_NETLINK;
734 nladdr->nl_pad = 0;
735 *addr_len = sizeof(*nladdr);
736
737 if (peer) {
738 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700739 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 } else {
741 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700742 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744 return 0;
745}
746
747static void netlink_overrun(struct sock *sk)
748{
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700749 struct netlink_sock *nlk = nlk_sk(sk);
750
751 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
752 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
753 sk->sk_err = ENOBUFS;
754 sk->sk_error_report(sk);
755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700757 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
761{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 struct sock *sock;
763 struct netlink_sock *nlk;
764
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900765 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (!sock)
767 return ERR_PTR(-ECONNREFUSED);
768
769 /* Don't bother queuing skb if kernel socket has no input function */
770 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700771 if (sock->sk_state == NETLINK_CONNECTED &&
772 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 sock_put(sock);
774 return ERR_PTR(-ECONNREFUSED);
775 }
776 return sock;
777}
778
779struct sock *netlink_getsockbyfilp(struct file *filp)
780{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800781 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct sock *sock;
783
784 if (!S_ISSOCK(inode->i_mode))
785 return ERR_PTR(-ENOTSOCK);
786
787 sock = SOCKET_I(inode)->sk;
788 if (sock->sk_family != AF_NETLINK)
789 return ERR_PTR(-EINVAL);
790
791 sock_hold(sock);
792 return sock;
793}
794
795/*
796 * Attach a skb to a netlink socket.
797 * The caller must hold a reference to the destination socket. On error, the
798 * reference is dropped. The skb is not send to the destination, just all
799 * all error checks are performed and memory in the queue is reserved.
800 * Return values:
801 * < 0: error. skb freed, reference to sock dropped.
802 * 0: continue
803 * 1: repeat lookup - reference dropped while waiting for socket memory.
804 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700805int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800806 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 struct netlink_sock *nlk;
809
810 nlk = nlk_sk(sk);
811
812 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
813 test_bit(0, &nlk->state)) {
814 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800815 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700816 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 netlink_overrun(sk);
818 sock_put(sk);
819 kfree_skb(skb);
820 return -EAGAIN;
821 }
822
823 __set_current_state(TASK_INTERRUPTIBLE);
824 add_wait_queue(&nlk->wait, &wait);
825
826 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
827 test_bit(0, &nlk->state)) &&
828 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800829 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 __set_current_state(TASK_RUNNING);
832 remove_wait_queue(&nlk->wait, &wait);
833 sock_put(sk);
834
835 if (signal_pending(current)) {
836 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800837 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839 return 1;
840 }
841 skb_set_owner_r(skb, sk);
842 return 0;
843}
844
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000845static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 int len = skb->len;
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 skb_queue_tail(&sk->sk_receive_queue, skb);
850 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000851 return len;
852}
853
854int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
855{
856 int len = __netlink_sendskb(sk, skb);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 sock_put(sk);
859 return len;
860}
861
862void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
863{
864 kfree_skb(skb);
865 sock_put(sk);
866}
867
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000868static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
870 int delta;
871
872 skb_orphan(skb);
873
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700874 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (delta * 2 < skb->truesize)
876 return skb;
877
878 if (skb_shared(skb)) {
879 struct sk_buff *nskb = skb_clone(skb, allocation);
880 if (!nskb)
881 return skb;
882 kfree_skb(skb);
883 skb = nskb;
884 }
885
886 if (!pskb_expand_head(skb, 0, -delta, allocation))
887 skb->truesize -= delta;
888
889 return skb;
890}
891
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000892static void netlink_rcv_wake(struct sock *sk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700893{
894 struct netlink_sock *nlk = nlk_sk(sk);
895
896 if (skb_queue_empty(&sk->sk_receive_queue))
897 clear_bit(0, &nlk->state);
898 if (!test_bit(0, &nlk->state))
899 wake_up_interruptible(&nlk->wait);
900}
901
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000902static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700903{
904 int ret;
905 struct netlink_sock *nlk = nlk_sk(sk);
906
907 ret = -ECONNREFUSED;
908 if (nlk->netlink_rcv != NULL) {
909 ret = skb->len;
910 skb_set_owner_r(skb, sk);
911 nlk->netlink_rcv(skb);
912 }
913 kfree_skb(skb);
914 sock_put(sk);
915 return ret;
916}
917
918int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
919 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct sock *sk;
922 int err;
923 long timeo;
924
925 skb = netlink_trim(skb, gfp_any());
926
927 timeo = sock_sndtimeo(ssk, nonblock);
928retry:
929 sk = netlink_getsockbypid(ssk, pid);
930 if (IS_ERR(sk)) {
931 kfree_skb(skb);
932 return PTR_ERR(sk);
933 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700934 if (netlink_is_kernel(sk))
935 return netlink_unicast_kernel(sk, skb);
936
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700937 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700938 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700939 kfree_skb(skb);
940 sock_put(sk);
941 return err;
942 }
943
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700944 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (err == 1)
946 goto retry;
947 if (err)
948 return err;
949
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700950 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800952EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Patrick McHardy4277a082006-03-20 18:52:01 -0800954int netlink_has_listeners(struct sock *sk, unsigned int group)
955{
956 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000957 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800958
Denis V. Lunevaed81562007-10-10 21:14:32 -0700959 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700960
961 rcu_read_lock();
962 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
963
Eric Dumazet0f04b9a2012-10-18 03:21:55 +0000964 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000965 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700966
967 rcu_read_unlock();
968
Patrick McHardy4277a082006-03-20 18:52:01 -0800969 return res;
970}
971EXPORT_SYMBOL_GPL(netlink_has_listeners);
972
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000973static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 struct netlink_sock *nlk = nlk_sk(sk);
976
977 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
978 !test_bit(0, &nlk->state)) {
979 skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000980 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +0000981 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 return -1;
984}
985
986struct netlink_broadcast_data {
987 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200988 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 u32 pid;
990 u32 group;
991 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800992 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 int congested;
994 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400995 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -0700997 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
998 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999};
1000
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001001static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 struct netlink_broadcast_data *p)
1003{
1004 struct netlink_sock *nlk = nlk_sk(sk);
1005 int val;
1006
1007 if (p->exclude_sk == sk)
1008 goto out;
1009
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001010 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1011 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 goto out;
1013
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001014 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001015 goto out;
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (p->failure) {
1018 netlink_overrun(sk);
1019 goto out;
1020 }
1021
1022 sock_hold(sk);
1023 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001024 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 p->skb2 = skb_clone(p->skb, p->allocation);
1026 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001027 p->skb2 = skb_get(p->skb);
1028 /*
1029 * skb ownership may have been set when
1030 * delivered to a previous socket.
1031 */
1032 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 }
1035 if (p->skb2 == NULL) {
1036 netlink_overrun(sk);
1037 /* Clone failed. Notify ALL listeners. */
1038 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001039 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1040 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001041 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1042 kfree_skb(p->skb2);
1043 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001044 } else if (sk_filter(sk, p->skb2)) {
1045 kfree_skb(p->skb2);
1046 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1048 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001049 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1050 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } else {
1052 p->congested |= val;
1053 p->delivered = 1;
1054 p->skb2 = NULL;
1055 }
1056 sock_put(sk);
1057
1058out:
1059 return 0;
1060}
1061
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001062int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
1063 u32 group, gfp_t allocation,
1064 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1065 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001067 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 struct netlink_broadcast_data info;
1069 struct hlist_node *node;
1070 struct sock *sk;
1071
1072 skb = netlink_trim(skb, allocation);
1073
1074 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001075 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 info.pid = pid;
1077 info.group = group;
1078 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001079 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 info.congested = 0;
1081 info.delivered = 0;
1082 info.allocation = allocation;
1083 info.skb = skb;
1084 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001085 info.tx_filter = filter;
1086 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 /* While we sleep in clone, do not allow to change socket list */
1089
1090 netlink_lock_table();
1091
1092 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1093 do_one_broadcast(sk, &info);
1094
Neil Horman70d4bf62010-07-20 06:45:56 +00001095 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 netlink_unlock_table();
1098
Neil Horman70d4bf62010-07-20 06:45:56 +00001099 if (info.delivery_failure) {
1100 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001101 return -ENOBUFS;
Neil Horman70d4bf62010-07-20 06:45:56 +00001102 } else
1103 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (info.delivered) {
1106 if (info.congested && (allocation & __GFP_WAIT))
1107 yield();
1108 return 0;
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return -ESRCH;
1111}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001112EXPORT_SYMBOL(netlink_broadcast_filtered);
1113
1114int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
1115 u32 group, gfp_t allocation)
1116{
1117 return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
1118 NULL, NULL);
1119}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001120EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122struct netlink_set_err_data {
1123 struct sock *exclude_sk;
1124 u32 pid;
1125 u32 group;
1126 int code;
1127};
1128
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001129static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001132 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 if (sk == p->exclude_sk)
1135 goto out;
1136
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001137 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001138 goto out;
1139
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001140 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1141 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto out;
1143
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001144 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1145 ret = 1;
1146 goto out;
1147 }
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 sk->sk_err = p->code;
1150 sk->sk_error_report(sk);
1151out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001152 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001155/**
1156 * netlink_set_err - report error to broadcast listeners
1157 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1158 * @pid: the PID of a process that we want to skip (if any)
1159 * @groups: the broadcast group that will notice the error
1160 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001161 *
1162 * This function returns the number of broadcast listeners that have set the
1163 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001164 */
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001165int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 struct netlink_set_err_data info;
1168 struct hlist_node *node;
1169 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001170 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 info.exclude_sk = ssk;
1173 info.pid = pid;
1174 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001175 /* sk->sk_err wants a positive error value */
1176 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 read_lock(&nl_table_lock);
1179
1180 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001181 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001184 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001186EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Johannes Berg84659eb2007-07-18 15:47:05 -07001188/* must be called with netlink table grabbed */
1189static void netlink_update_socket_mc(struct netlink_sock *nlk,
1190 unsigned int group,
1191 int is_new)
1192{
1193 int old, new = !!is_new, subscriptions;
1194
1195 old = test_bit(group - 1, nlk->groups);
1196 subscriptions = nlk->subscriptions - old + new;
1197 if (new)
1198 __set_bit(group - 1, nlk->groups);
1199 else
1200 __clear_bit(group - 1, nlk->groups);
1201 netlink_update_subscriptions(&nlk->sk, subscriptions);
1202 netlink_update_listeners(&nlk->sk);
1203}
1204
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001205static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001206 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001207{
1208 struct sock *sk = sock->sk;
1209 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001210 unsigned int val = 0;
1211 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001212
1213 if (level != SOL_NETLINK)
1214 return -ENOPROTOOPT;
1215
1216 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001217 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001218 return -EFAULT;
1219
1220 switch (optname) {
1221 case NETLINK_PKTINFO:
1222 if (val)
1223 nlk->flags |= NETLINK_RECV_PKTINFO;
1224 else
1225 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1226 err = 0;
1227 break;
1228 case NETLINK_ADD_MEMBERSHIP:
1229 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001230 if (!netlink_capable(sock, NL_NONROOT_RECV))
1231 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001232 err = netlink_realloc_groups(sk);
1233 if (err)
1234 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001235 if (!val || val - 1 >= nlk->ngroups)
1236 return -EINVAL;
1237 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001238 netlink_update_socket_mc(nlk, val,
1239 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001240 netlink_table_ungrab();
1241 err = 0;
1242 break;
1243 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001244 case NETLINK_BROADCAST_ERROR:
1245 if (val)
1246 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1247 else
1248 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1249 err = 0;
1250 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001251 case NETLINK_NO_ENOBUFS:
1252 if (val) {
1253 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1254 clear_bit(0, &nlk->state);
1255 wake_up_interruptible(&nlk->wait);
1256 } else
1257 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1258 err = 0;
1259 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001260 default:
1261 err = -ENOPROTOOPT;
1262 }
1263 return err;
1264}
1265
1266static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001267 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001268{
1269 struct sock *sk = sock->sk;
1270 struct netlink_sock *nlk = nlk_sk(sk);
1271 int len, val, err;
1272
1273 if (level != SOL_NETLINK)
1274 return -ENOPROTOOPT;
1275
1276 if (get_user(len, optlen))
1277 return -EFAULT;
1278 if (len < 0)
1279 return -EINVAL;
1280
1281 switch (optname) {
1282 case NETLINK_PKTINFO:
1283 if (len < sizeof(int))
1284 return -EINVAL;
1285 len = sizeof(int);
1286 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001287 if (put_user(len, optlen) ||
1288 put_user(val, optval))
1289 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001290 err = 0;
1291 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001292 case NETLINK_BROADCAST_ERROR:
1293 if (len < sizeof(int))
1294 return -EINVAL;
1295 len = sizeof(int);
1296 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1297 if (put_user(len, optlen) ||
1298 put_user(val, optval))
1299 return -EFAULT;
1300 err = 0;
1301 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001302 case NETLINK_NO_ENOBUFS:
1303 if (len < sizeof(int))
1304 return -EINVAL;
1305 len = sizeof(int);
1306 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1307 if (put_user(len, optlen) ||
1308 put_user(val, optval))
1309 return -EFAULT;
1310 err = 0;
1311 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001312 default:
1313 err = -ENOPROTOOPT;
1314 }
1315 return err;
1316}
1317
1318static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1319{
1320 struct nl_pktinfo info;
1321
1322 info.group = NETLINK_CB(skb).dst_group;
1323 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1324}
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1327 struct msghdr *msg, size_t len)
1328{
1329 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1330 struct sock *sk = sock->sk;
1331 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001332 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001334 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 struct sk_buff *skb;
1336 int err;
1337 struct scm_cookie scm;
1338
1339 if (msg->msg_flags&MSG_OOB)
1340 return -EOPNOTSUPP;
1341
Eric Dumazet16e57262011-09-19 05:52:27 +00001342 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00001344
Eric Dumazet7c799a12012-08-21 06:21:17 +00001345 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (err < 0)
1347 return err;
1348
1349 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001350 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001354 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001355 err = -EPERM;
Pablo Neira Ayuso912af4d2012-08-23 02:09:11 +00001356 if ((dst_group || dst_pid) &&
1357 !netlink_capable(sock, NL_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001358 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 } else {
1360 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001361 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363
1364 if (!nlk->pid) {
1365 err = netlink_autobind(sock);
1366 if (err)
1367 goto out;
1368 }
1369
1370 err = -EMSGSIZE;
1371 if (len > sk->sk_sndbuf - 32)
1372 goto out;
1373 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001374 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001375 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 goto out;
1377
1378 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001379 NETLINK_CB(skb).dst_group = dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001383 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 kfree_skb(skb);
1385 goto out;
1386 }
1387
1388 err = security_netlink_send(sk, skb);
1389 if (err) {
1390 kfree_skb(skb);
1391 goto out;
1392 }
1393
Patrick McHardyd629b832005-08-14 19:27:50 -07001394 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001396 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1399
1400out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001401 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return err;
1403}
1404
1405static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1406 struct msghdr *msg, size_t len,
1407 int flags)
1408{
1409 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1410 struct scm_cookie scm;
1411 struct sock *sk = sock->sk;
1412 struct netlink_sock *nlk = nlk_sk(sk);
1413 int noblock = flags&MSG_DONTWAIT;
1414 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00001415 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001416 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 if (flags&MSG_OOB)
1419 return -EOPNOTSUPP;
1420
1421 copied = 0;
1422
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001423 skb = skb_recv_datagram(sk, flags, noblock, &err);
1424 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 goto out;
1426
Johannes Berg68d6ac62010-08-15 21:20:44 +00001427 data_skb = skb;
1428
Johannes Berg1dacc762009-07-01 11:26:02 +00001429#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1430 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00001431 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00001432 * If this skb has a frag_list, then here that means that we
1433 * will have to use the frag_list skb's data for compat tasks
1434 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00001435 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00001436 * If we need to send the compat skb, assign it to the
1437 * 'data_skb' variable so that it will be used below for data
1438 * copying. We keep 'skb' for everything else, including
1439 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00001440 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00001441 if (flags & MSG_CMSG_COMPAT)
1442 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00001443 }
1444#endif
1445
Johannes Berg68d6ac62010-08-15 21:20:44 +00001446 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (len < copied) {
1448 msg->msg_flags |= MSG_TRUNC;
1449 copied = len;
1450 }
1451
Johannes Berg68d6ac62010-08-15 21:20:44 +00001452 skb_reset_transport_header(data_skb);
1453 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001456 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 addr->nl_family = AF_NETLINK;
1458 addr->nl_pad = 0;
1459 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001460 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 msg->msg_namelen = sizeof(*addr);
1462 }
1463
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001464 if (nlk->flags & NETLINK_RECV_PKTINFO)
1465 netlink_cmsg_recv_pktinfo(msg, skb);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (NULL == siocb->scm) {
1468 memset(&scm, 0, sizeof(scm));
1469 siocb->scm = &scm;
1470 }
1471 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001472 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00001473 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 skb_free_datagram(sk, skb);
1476
Andrey Vaginb44d2112011-02-21 02:40:47 +00001477 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1478 ret = netlink_dump(sk);
1479 if (ret) {
1480 sk->sk_err = ret;
1481 sk->sk_error_report(sk);
1482 }
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486out:
1487 netlink_rcv_wake(sk);
1488 return err ? : copied;
1489}
1490
1491static void netlink_data_ready(struct sock *sk, int len)
1492{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001493 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
1496/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001497 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 * complete set of kernel non-blocking support for message
1499 * queueing.
1500 */
1501
1502struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001503netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001504 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001505 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
1507 struct socket *sock;
1508 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001509 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001510 struct listeners *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001512 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001514 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return NULL;
1516
1517 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1518 return NULL;
1519
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001520 /*
1521 * We have to just have a reference on the net from sk, but don't
1522 * get_net it. Besides, we cannot get and then put the net here.
1523 * So we create one inside init_net and the move it to net.
1524 */
1525
1526 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1527 goto out_sock_release_nosk;
1528
1529 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001530 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001531
Patrick McHardy4277a082006-03-20 18:52:01 -08001532 if (groups < 32)
1533 groups = 32;
1534
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001535 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001536 if (!listeners)
1537 goto out_sock_release;
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 sk->sk_data_ready = netlink_data_ready;
1540 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001541 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001543 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001544 goto out_sock_release;
1545
1546 nlk = nlk_sk(sk);
1547 nlk->flags |= NETLINK_KERNEL_SOCKET;
1548
1549 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001550 if (!nl_table[unit].registered) {
1551 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001552 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001553 nl_table[unit].cb_mutex = cb_mutex;
1554 nl_table[unit].module = module;
1555 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001556 } else {
1557 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001558 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001559 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001560 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001561 return sk;
1562
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001563out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001564 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001565 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001566 return NULL;
1567
1568out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001569 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001570 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001572EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001574
1575void
1576netlink_kernel_release(struct sock *sk)
1577{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001578 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001579}
1580EXPORT_SYMBOL(netlink_kernel_release);
1581
Johannes Bergd136f1b2009-09-12 03:03:15 +00001582int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001583{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001584 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001585 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001586
1587 if (groups < 32)
1588 groups = 32;
1589
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001590 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001591 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
1592 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00001593 return -ENOMEM;
Eric Dumazet0f04b9a2012-10-18 03:21:55 +00001594 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001595 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
1596 rcu_assign_pointer(tbl->listeners, new);
1597
Lai Jiangshan37b6b932011-03-15 18:01:42 +08001598 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001599 }
1600 tbl->groups = groups;
1601
Johannes Bergd136f1b2009-09-12 03:03:15 +00001602 return 0;
1603}
1604
1605/**
1606 * netlink_change_ngroups - change number of multicast groups
1607 *
1608 * This changes the number of multicast groups that are available
1609 * on a certain netlink family. Note that it is not possible to
1610 * change the number of groups to below 32. Also note that it does
1611 * not implicitly call netlink_clear_multicast_users() when the
1612 * number of groups is reduced.
1613 *
1614 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1615 * @groups: The new number of groups.
1616 */
1617int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1618{
1619 int err;
1620
1621 netlink_table_grab();
1622 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001623 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00001624
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001625 return err;
1626}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001627
Johannes Bergb8273572009-09-24 15:44:05 -07001628void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1629{
1630 struct sock *sk;
1631 struct hlist_node *node;
1632 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1633
1634 sk_for_each_bound(sk, node, &tbl->mc_list)
1635 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1636}
1637
Johannes Berg84659eb2007-07-18 15:47:05 -07001638/**
1639 * netlink_clear_multicast_users - kick off multicast listeners
1640 *
1641 * This function removes all listeners from the given group.
1642 * @ksk: The kernel netlink socket, as returned by
1643 * netlink_kernel_create().
1644 * @group: The multicast group to clear.
1645 */
1646void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1647{
Johannes Berg84659eb2007-07-18 15:47:05 -07001648 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07001649 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07001650 netlink_table_ungrab();
1651}
Johannes Berg84659eb2007-07-18 15:47:05 -07001652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001654{
1655 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001657}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001658EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660static void netlink_destroy_callback(struct netlink_callback *cb)
1661{
Wei Yongjun91744f62009-02-25 00:34:41 +00001662 kfree_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 kfree(cb);
1664}
1665
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05001666struct nlmsghdr *
1667__nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
1668{
1669 struct nlmsghdr *nlh;
1670 int size = NLMSG_LENGTH(len);
1671
1672 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
1673 nlh->nlmsg_type = type;
1674 nlh->nlmsg_len = size;
1675 nlh->nlmsg_flags = flags;
1676 nlh->nlmsg_pid = pid;
1677 nlh->nlmsg_seq = seq;
1678 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
1679 memset(NLMSG_DATA(nlh) + len, 0, NLMSG_ALIGN(size) - size);
1680 return nlh;
1681}
1682EXPORT_SYMBOL(__nlmsg_put);
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684/*
1685 * It looks a bit ugly.
1686 * It would be better to create kernel thread.
1687 */
1688
1689static int netlink_dump(struct sock *sk)
1690{
1691 struct netlink_sock *nlk = nlk_sk(sk);
1692 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001693 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001695 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001696 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001698 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 cb = nlk->cb;
1701 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001702 err = -EINVAL;
1703 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
1705
Greg Rosec7ac8672011-06-10 01:27:09 +00001706 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
1707
1708 skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL);
1709 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00001710 goto errout_skb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 len = cb->dump(skb, cb);
1713
1714 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001715 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001716
1717 if (sk_filter(sk, skb))
1718 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001719 else
1720 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return 0;
1722 }
1723
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001724 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1725 if (!nlh)
1726 goto errout_skb;
1727
Johannes Berg670dc282011-06-20 13:40:46 +02001728 nl_dump_check_consistent(cb, nlh);
1729
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001730 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1731
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001732 if (sk_filter(sk, skb))
1733 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001734 else
1735 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Thomas Grafa8f74b22005-11-10 02:25:52 +01001737 if (cb->done)
1738 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001740 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Gao feng70f7f1c2012-10-04 20:15:48 +00001742 module_put(cb->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001745
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001746errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001747 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001748 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001749 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Gao feng70f7f1c2012-10-04 20:15:48 +00001752int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1753 const struct nlmsghdr *nlh,
1754 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
1756 struct netlink_callback *cb;
1757 struct sock *sk;
1758 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001759 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001761 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (cb == NULL)
1763 return -ENOBUFS;
1764
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001765 cb->dump = control->dump;
1766 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00001768 cb->data = control->data;
Gao feng70f7f1c2012-10-04 20:15:48 +00001769 cb->module = control->module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001770 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 atomic_inc(&skb->users);
1772 cb->skb = skb;
1773
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001774 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (sk == NULL) {
1776 netlink_destroy_callback(cb);
1777 return -ECONNREFUSED;
1778 }
1779 nlk = nlk_sk(sk);
Gao feng70f7f1c2012-10-04 20:15:48 +00001780
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001781 mutex_lock(nlk->cb_mutex);
Gao feng70f7f1c2012-10-04 20:15:48 +00001782 /* A dump is in progress... */
Herbert Xu3f660d62007-05-03 03:17:14 -07001783 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001784 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 netlink_destroy_callback(cb);
Gao feng70f7f1c2012-10-04 20:15:48 +00001786 ret = -EBUSY;
1787 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
Gao feng70f7f1c2012-10-04 20:15:48 +00001789 /* add reference of module which cb->dump belongs to */
1790 if (!try_module_get(cb->module)) {
1791 mutex_unlock(nlk->cb_mutex);
1792 netlink_destroy_callback(cb);
1793 ret = -EPROTONOSUPPORT;
1794 goto out;
1795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001798 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Andrey Vaginb44d2112011-02-21 02:40:47 +00001800 ret = netlink_dump(sk);
Gao feng70f7f1c2012-10-04 20:15:48 +00001801out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001803
Andrey Vaginb44d2112011-02-21 02:40:47 +00001804 if (ret)
1805 return ret;
1806
Denis V. Lunev5c582982007-10-23 20:29:25 -07001807 /* We successfully started a dump, by returning -EINTR we
1808 * signal not to send ACK even if it was requested.
1809 */
1810 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
Gao feng70f7f1c2012-10-04 20:15:48 +00001812EXPORT_SYMBOL(__netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1815{
1816 struct sk_buff *skb;
1817 struct nlmsghdr *rep;
1818 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001819 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Thomas Graf339bf982006-11-10 14:10:15 -08001821 /* error messages get the original request appened */
1822 if (err)
1823 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Thomas Graf339bf982006-11-10 14:10:15 -08001825 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (!skb) {
1827 struct sock *sk;
1828
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001829 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001830 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 NETLINK_CB(in_skb).pid);
1832 if (sk) {
1833 sk->sk_err = ENOBUFS;
1834 sk->sk_error_report(sk);
1835 sock_put(sk);
1836 }
1837 return;
1838 }
1839
1840 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00001841 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001842 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001844 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1846}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001847EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001849int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001850 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001851{
Thomas Graf82ace472005-11-10 02:25:53 +01001852 struct nlmsghdr *nlh;
1853 int err;
1854
1855 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001856 int msglen;
1857
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001858 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001859 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001860
Martin Murrayad8e4b72006-01-10 13:02:29 -08001861 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001862 return 0;
1863
Thomas Grafd35b6852007-03-22 23:28:46 -07001864 /* Only requests are handled by the kernel */
1865 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001866 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001867
Thomas Graf45e7ae72007-03-22 23:29:10 -07001868 /* Skip control messages */
1869 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001870 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001871
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001872 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001873 if (err == -EINTR)
1874 goto skip;
1875
1876ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001877 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001878 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001879
Denis V. Lunev5c582982007-10-23 20:29:25 -07001880skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001881 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001882 if (msglen > skb->len)
1883 msglen = skb->len;
1884 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001885 }
1886
1887 return 0;
1888}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001889EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001890
1891/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001892 * nlmsg_notify - send a notification netlink message
1893 * @sk: netlink socket to use
1894 * @skb: notification message
1895 * @pid: destination netlink pid for reports or 0
1896 * @group: destination multicast group or 0
1897 * @report: 1 to report back, 0 to disable
1898 * @flags: allocation flags
1899 */
1900int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1901 unsigned int group, int report, gfp_t flags)
1902{
1903 int err = 0;
1904
1905 if (group) {
1906 int exclude_pid = 0;
1907
1908 if (report) {
1909 atomic_inc(&skb->users);
1910 exclude_pid = pid;
1911 }
1912
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001913 /* errors reported via destination sk->sk_err, but propagate
1914 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1915 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001916 }
1917
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001918 if (report) {
1919 int err2;
1920
1921 err2 = nlmsg_unicast(sk, skb, pid);
1922 if (!err || err == -ESRCH)
1923 err = err2;
1924 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07001925
1926 return err;
1927}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001928EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930#ifdef CONFIG_PROC_FS
1931struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001932 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 int link;
1934 int hash_idx;
1935};
1936
1937static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1938{
1939 struct nl_seq_iter *iter = seq->private;
1940 int i, j;
1941 struct sock *s;
1942 struct hlist_node *node;
1943 loff_t off = 0;
1944
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001945 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 struct nl_pid_hash *hash = &nl_table[i].hash;
1947
1948 for (j = 0; j <= hash->mask; j++) {
1949 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001950 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001951 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 if (off == pos) {
1953 iter->link = i;
1954 iter->hash_idx = j;
1955 return s;
1956 }
1957 ++off;
1958 }
1959 }
1960 }
1961 return NULL;
1962}
1963
1964static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001965 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
1967 read_lock(&nl_table_lock);
1968 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1969}
1970
1971static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1972{
1973 struct sock *s;
1974 struct nl_seq_iter *iter;
1975 int i, j;
1976
1977 ++*pos;
1978
1979 if (v == SEQ_START_TOKEN)
1980 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001981
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001982 iter = seq->private;
1983 s = v;
1984 do {
1985 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001986 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (s)
1988 return s;
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 i = iter->link;
1991 j = iter->hash_idx + 1;
1992
1993 do {
1994 struct nl_pid_hash *hash = &nl_table[i].hash;
1995
1996 for (; j <= hash->mask; j++) {
1997 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001998 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001999 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (s) {
2001 iter->link = i;
2002 iter->hash_idx = j;
2003 return s;
2004 }
2005 }
2006
2007 j = 0;
2008 } while (++i < MAX_LINKS);
2009
2010 return NULL;
2011}
2012
2013static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002014 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 read_unlock(&nl_table_lock);
2017}
2018
2019
2020static int netlink_seq_show(struct seq_file *seq, void *v)
2021{
2022 if (v == SEQ_START_TOKEN)
2023 seq_puts(seq,
2024 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002025 "Rmem Wmem Dump Locks Drops Inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 else {
2027 struct sock *s = v;
2028 struct netlink_sock *nlk = nlk_sk(s);
2029
Dan Rosenberg71338aa2011-05-23 12:17:35 +00002030 seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 s,
2032 s->sk_protocol,
2033 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002034 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002035 sk_rmem_alloc_get(s),
2036 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002038 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002039 atomic_read(&s->sk_drops),
2040 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 );
2042
2043 }
2044 return 0;
2045}
2046
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002047static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 .start = netlink_seq_start,
2049 .next = netlink_seq_next,
2050 .stop = netlink_seq_stop,
2051 .show = netlink_seq_show,
2052};
2053
2054
2055static int netlink_seq_open(struct inode *inode, struct file *file)
2056{
Denis V. Luneve372c412007-11-19 22:31:54 -08002057 return seq_open_net(inode, file, &netlink_seq_ops,
2058 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002059}
2060
Arjan van de Venda7071d2007-02-12 00:55:36 -08002061static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 .owner = THIS_MODULE,
2063 .open = netlink_seq_open,
2064 .read = seq_read,
2065 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002066 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067};
2068
2069#endif
2070
2071int netlink_register_notifier(struct notifier_block *nb)
2072{
Alan Sterne041c682006-03-27 01:16:30 -08002073 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002075EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077int netlink_unregister_notifier(struct notifier_block *nb)
2078{
Alan Sterne041c682006-03-27 01:16:30 -08002079 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002081EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002082
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002083static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 .family = PF_NETLINK,
2085 .owner = THIS_MODULE,
2086 .release = netlink_release,
2087 .bind = netlink_bind,
2088 .connect = netlink_connect,
2089 .socketpair = sock_no_socketpair,
2090 .accept = sock_no_accept,
2091 .getname = netlink_getname,
2092 .poll = datagram_poll,
2093 .ioctl = sock_no_ioctl,
2094 .listen = sock_no_listen,
2095 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002096 .setsockopt = netlink_setsockopt,
2097 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 .sendmsg = netlink_sendmsg,
2099 .recvmsg = netlink_recvmsg,
2100 .mmap = sock_no_mmap,
2101 .sendpage = sock_no_sendpage,
2102};
2103
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002104static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 .family = PF_NETLINK,
2106 .create = netlink_create,
2107 .owner = THIS_MODULE, /* for consistency 8) */
2108};
2109
Pavel Emelyanov46650792007-10-08 20:38:39 -07002110static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002111{
2112#ifdef CONFIG_PROC_FS
2113 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2114 return -ENOMEM;
2115#endif
2116 return 0;
2117}
2118
Pavel Emelyanov46650792007-10-08 20:38:39 -07002119static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002120{
2121#ifdef CONFIG_PROC_FS
2122 proc_net_remove(net, "netlink");
2123#endif
2124}
2125
David S. Millerb963ea82010-08-30 19:08:01 -07002126static void __init netlink_add_usersock_entry(void)
2127{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002128 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002129 int groups = 32;
2130
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002131 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002132 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002133 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002134
2135 netlink_table_grab();
2136
2137 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002138 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002139 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2140 nl_table[NETLINK_USERSOCK].registered = 1;
Pablo Neira Ayuso912af4d2012-08-23 02:09:11 +00002141 nl_table[NETLINK_USERSOCK].nl_nonroot = NL_NONROOT_SEND;
David S. Millerb963ea82010-08-30 19:08:01 -07002142
2143 netlink_table_ungrab();
2144}
2145
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002146static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002147 .init = netlink_net_init,
2148 .exit = netlink_net_exit,
2149};
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151static int __init netlink_proto_init(void)
2152{
2153 struct sk_buff *dummy_skb;
2154 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002155 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 unsigned int order;
2157 int err = proto_register(&netlink_proto, 0);
2158
2159 if (err != 0)
2160 goto out;
2161
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07002162 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002164 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002165 if (!nl_table)
2166 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Jan Beulich44813742009-09-21 17:03:05 -07002168 if (totalram_pages >= (128 * 1024))
2169 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 else
Jan Beulich44813742009-09-21 17:03:05 -07002171 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002173 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2174 limit = (1UL << order) / sizeof(struct hlist_head);
2175 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 for (i = 0; i < MAX_LINKS; i++) {
2178 struct nl_pid_hash *hash = &nl_table[i].hash;
2179
Eric Dumazetea729122007-12-11 02:09:47 -08002180 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (!hash->table) {
2182 while (i-- > 0)
2183 nl_pid_hash_free(nl_table[i].hash.table,
2184 1 * sizeof(*hash->table));
2185 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002186 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 hash->max_shift = order;
2189 hash->shift = 0;
2190 hash->mask = 0;
2191 hash->rehash_time = jiffies;
2192 }
2193
David S. Millerb963ea82010-08-30 19:08:01 -07002194 netlink_add_usersock_entry();
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002197 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002198 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 rtnetlink_init();
2200out:
2201 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002202panic:
2203 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206core_initcall(netlink_proto_init);