blob: 235679104e5bff68aa46bc75203e9ea916ecedd7 [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 Dumazet27e6e2b2012-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);
161 netlink_destroy_callback(nlk->cb);
162 }
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 skb_queue_purge(&sk->sk_receive_queue);
165
166 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800167 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return;
169 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700170
171 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
172 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
173 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800176/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
177 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
179 * this, _but_ remember, it adds useless work on UP machines.
180 */
181
Johannes Bergd136f1b2009-09-12 03:03:15 +0000182void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800183 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000185 might_sleep();
186
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700187 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (atomic_read(&nl_table_users)) {
190 DECLARE_WAITQUEUE(wait, current);
191
192 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800193 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 set_current_state(TASK_UNINTERRUPTIBLE);
195 if (atomic_read(&nl_table_users) == 0)
196 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700197 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700199 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 __set_current_state(TASK_RUNNING);
203 remove_wait_queue(&nl_table_wait, &wait);
204 }
205}
206
Johannes Bergd136f1b2009-09-12 03:03:15 +0000207void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800208 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700210 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 wake_up(&nl_table_wait);
212}
213
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800214static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215netlink_lock_table(void)
216{
217 /* read_lock() synchronizes us to netlink_table_grab */
218
219 read_lock(&nl_table_lock);
220 atomic_inc(&nl_table_users);
221 read_unlock(&nl_table_lock);
222}
223
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800224static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225netlink_unlock_table(void)
226{
227 if (atomic_dec_and_test(&nl_table_users))
228 wake_up(&nl_table_wait);
229}
230
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000231static struct sock *netlink_lookup(struct net *net, int protocol, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct nl_pid_hash *hash = &nl_table[protocol].hash;
234 struct hlist_head *head;
235 struct sock *sk;
236 struct hlist_node *node;
237
238 read_lock(&nl_table_lock);
239 head = nl_pid_hashfn(hash, pid);
240 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900241 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 sock_hold(sk);
243 goto found;
244 }
245 }
246 sk = NULL;
247found:
248 read_unlock(&nl_table_lock);
249 return sk;
250}
251
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000252static struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800255 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 else
257 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800258 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
259 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000262static void nl_pid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 if (size <= PAGE_SIZE)
265 kfree(table);
266 else
267 free_pages((unsigned long)table, get_order(size));
268}
269
270static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
271{
272 unsigned int omask, mask, shift;
273 size_t osize, size;
274 struct hlist_head *otable, *table;
275 int i;
276
277 omask = mask = hash->mask;
278 osize = size = (mask + 1) * sizeof(*table);
279 shift = hash->shift;
280
281 if (grow) {
282 if (++shift > hash->max_shift)
283 return 0;
284 mask = mask * 2 + 1;
285 size *= 2;
286 }
287
Eric Dumazetea729122007-12-11 02:09:47 -0800288 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!table)
290 return 0;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 otable = hash->table;
293 hash->table = table;
294 hash->mask = mask;
295 hash->shift = shift;
296 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
297
298 for (i = 0; i <= omask; i++) {
299 struct sock *sk;
300 struct hlist_node *node, *tmp;
301
302 sk_for_each_safe(sk, node, tmp, &otable[i])
303 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
304 }
305
306 nl_pid_hash_free(otable, osize);
307 hash->rehash_time = jiffies + 10 * 60 * HZ;
308 return 1;
309}
310
311static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
312{
313 int avg = hash->entries >> hash->shift;
314
315 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
316 return 1;
317
318 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
319 nl_pid_hash_rehash(hash, 0);
320 return 1;
321 }
322
323 return 0;
324}
325
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800326static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Patrick McHardy4277a082006-03-20 18:52:01 -0800328static void
329netlink_update_listeners(struct sock *sk)
330{
331 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
332 struct hlist_node *node;
333 unsigned long mask;
334 unsigned int i;
Eric Dumazet27e6e2b2012-10-18 03:21:55 +0000335 struct listeners *listeners;
336
337 listeners = nl_deref_protected(tbl->listeners);
338 if (!listeners)
339 return;
Patrick McHardy4277a082006-03-20 18:52:01 -0800340
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700341 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800342 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700343 sk_for_each_bound(sk, node, &tbl->mc_list) {
344 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
345 mask |= nlk_sk(sk)->groups[i];
346 }
Eric Dumazet27e6e2b2012-10-18 03:21:55 +0000347 listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800348 }
349 /* this function is only called with the netlink table "grabbed", which
350 * makes sure updates are visible before bind or setsockopt return. */
351}
352
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200353static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
356 struct hlist_head *head;
357 int err = -EADDRINUSE;
358 struct sock *osk;
359 struct hlist_node *node;
360 int len;
361
362 netlink_table_grab();
363 head = nl_pid_hashfn(hash, pid);
364 len = 0;
365 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900366 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 break;
368 len++;
369 }
370 if (node)
371 goto err;
372
373 err = -EBUSY;
374 if (nlk_sk(sk)->pid)
375 goto err;
376
377 err = -ENOMEM;
378 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
379 goto err;
380
381 if (len && nl_pid_hash_dilute(hash, len))
382 head = nl_pid_hashfn(hash, pid);
383 hash->entries++;
384 nlk_sk(sk)->pid = pid;
385 sk_add_node(sk, head);
386 err = 0;
387
388err:
389 netlink_table_ungrab();
390 return err;
391}
392
393static void netlink_remove(struct sock *sk)
394{
395 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700396 if (sk_del_node_init(sk))
397 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700398 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 __sk_del_bind_node(sk);
400 netlink_table_ungrab();
401}
402
403static struct proto netlink_proto = {
404 .name = "NETLINK",
405 .owner = THIS_MODULE,
406 .obj_size = sizeof(struct netlink_sock),
407};
408
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700409static int __netlink_create(struct net *net, struct socket *sock,
410 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 struct sock *sk;
413 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700414
415 sock->ops = &netlink_ops;
416
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700417 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700418 if (!sk)
419 return -ENOMEM;
420
421 sock_init_data(sock, sk);
422
423 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700424 if (cb_mutex)
425 nlk->cb_mutex = cb_mutex;
426 else {
427 nlk->cb_mutex = &nlk->cb_def_mutex;
428 mutex_init(nlk->cb_mutex);
429 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700430 init_waitqueue_head(&nlk->wait);
431
432 sk->sk_destruct = netlink_sock_destruct;
433 sk->sk_protocol = protocol;
434 return 0;
435}
436
Eric Paris3f378b62009-11-05 22:18:14 -0800437static int netlink_create(struct net *net, struct socket *sock, int protocol,
438 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -0700439{
440 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700441 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700442 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700443 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 sock->state = SS_UNCONNECTED;
446
447 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
448 return -ESOCKTNOSUPPORT;
449
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800450 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -EPROTONOSUPPORT;
452
Patrick McHardy77247bb2005-08-14 19:27:13 -0700453 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700454#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700455 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700456 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700457 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700458 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700459 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700460#endif
461 if (nl_table[protocol].registered &&
462 try_module_get(nl_table[protocol].module))
463 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000464 else
465 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700466 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700467 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700468
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000469 if (err < 0)
470 goto out;
471
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800472 err = __netlink_create(net, sock, cb_mutex, protocol);
473 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700474 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
David S. Miller6f756a82008-11-23 17:34:03 -0800476 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800477 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800478 local_bh_enable();
479
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700480 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700481 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700482out:
483 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Patrick McHardyab33a172005-08-14 19:31:36 -0700485out_module:
486 module_put(module);
487 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490static int netlink_release(struct socket *sock)
491{
492 struct sock *sk = sock->sk;
493 struct netlink_sock *nlk;
494
495 if (!sk)
496 return 0;
497
498 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700499 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 nlk = nlk_sk(sk);
501
Herbert Xu3f660d62007-05-03 03:17:14 -0700502 /*
503 * OK. Socket is unlinked, any packets that arrive now
504 * will be purged.
505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sock->sk = NULL;
508 wake_up_interruptible_all(&nlk->wait);
509
510 skb_queue_purge(&sk->sk_write_queue);
511
Johannes Berg649300b2009-11-16 12:05:34 +0000512 if (nlk->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900514 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 .protocol = sk->sk_protocol,
516 .pid = nlk->pid,
517 };
Alan Sterne041c682006-03-27 01:16:30 -0800518 atomic_notifier_call_chain(&netlink_chain,
519 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900520 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700521
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800522 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700523
Patrick McHardy4277a082006-03-20 18:52:01 -0800524 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700525 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800526 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
527 if (--nl_table[sk->sk_protocol].registered == 0) {
Eric Dumazet27e6e2b2012-10-18 03:21:55 +0000528 struct listeners *old;
529
530 old = nl_deref_protected(nl_table[sk->sk_protocol].listeners);
531 RCU_INIT_POINTER(nl_table[sk->sk_protocol].listeners, NULL);
532 kfree_rcu(old, rcu);
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800533 nl_table[sk->sk_protocol].module = NULL;
534 nl_table[sk->sk_protocol].registered = 0;
535 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800536 } else if (nlk->subscriptions)
537 netlink_update_listeners(sk);
538 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700539
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700540 kfree(nlk->groups);
541 nlk->groups = NULL;
542
Eric Dumazet37558102008-11-24 14:05:22 -0800543 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800544 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800545 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 sock_put(sk);
547 return 0;
548}
549
550static int netlink_autobind(struct socket *sock)
551{
552 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900553 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
555 struct hlist_head *head;
556 struct sock *osk;
557 struct hlist_node *node;
Tom Goff66aa4a52010-03-19 15:38:50 +0000558 s32 pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int err;
560 static s32 rover = -4097;
561
562retry:
563 cond_resched();
564 netlink_table_grab();
565 head = nl_pid_hashfn(hash, pid);
566 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900567 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200568 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (nlk_sk(osk)->pid == pid) {
570 /* Bind collision, search negative pid values. */
571 pid = rover--;
572 if (rover > -4097)
573 rover = -4097;
574 netlink_table_ungrab();
575 goto retry;
576 }
577 }
578 netlink_table_ungrab();
579
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200580 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (err == -EADDRINUSE)
582 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700583
584 /* If 2 threads race to autobind, that is fine. */
585 if (err == -EBUSY)
586 err = 0;
587
588 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000591static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
594 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900595}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700597static void
598netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
599{
600 struct netlink_sock *nlk = nlk_sk(sk);
601
602 if (nlk->subscriptions && !subscriptions)
603 __sk_del_bind_node(sk);
604 else if (!nlk->subscriptions && subscriptions)
605 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
606 nlk->subscriptions = subscriptions;
607}
608
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700609static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700610{
611 struct netlink_sock *nlk = nlk_sk(sk);
612 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700613 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700614 int err = 0;
615
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700616 netlink_table_grab();
617
Patrick McHardy513c2502005-09-06 15:43:59 -0700618 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700619 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700620 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700621 goto out_unlock;
622 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700623
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700624 if (nlk->ngroups >= groups)
625 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700626
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700627 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
628 if (new_groups == NULL) {
629 err = -ENOMEM;
630 goto out_unlock;
631 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800632 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700633 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
634
635 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700636 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700637 out_unlock:
638 netlink_table_ungrab();
639 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700640}
641
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800642static int netlink_bind(struct socket *sock, struct sockaddr *addr,
643 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900646 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct netlink_sock *nlk = nlk_sk(sk);
648 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
649 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (nladdr->nl_family != AF_NETLINK)
652 return -EINVAL;
653
654 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700655 if (nladdr->nl_groups) {
656 if (!netlink_capable(sock, NL_NONROOT_RECV))
657 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700658 err = netlink_realloc_groups(sk);
659 if (err)
660 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (nlk->pid) {
664 if (nladdr->nl_pid != nlk->pid)
665 return -EINVAL;
666 } else {
667 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200668 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 netlink_autobind(sock);
670 if (err)
671 return err;
672 }
673
Patrick McHardy513c2502005-09-06 15:43:59 -0700674 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return 0;
676
677 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700678 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900679 hweight32(nladdr->nl_groups) -
680 hweight32(nlk->groups[0]));
681 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800682 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 netlink_table_ungrab();
684
685 return 0;
686}
687
688static int netlink_connect(struct socket *sock, struct sockaddr *addr,
689 int alen, int flags)
690{
691 int err = 0;
692 struct sock *sk = sock->sk;
693 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800694 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Changli Gao6503d962010-03-31 22:58:26 +0000696 if (alen < sizeof(addr->sa_family))
697 return -EINVAL;
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (addr->sa_family == AF_UNSPEC) {
700 sk->sk_state = NETLINK_UNCONNECTED;
701 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700702 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return 0;
704 }
705 if (addr->sa_family != AF_NETLINK)
706 return -EINVAL;
707
708 /* Only superuser is allowed to send multicasts */
709 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
710 return -EPERM;
711
712 if (!nlk->pid)
713 err = netlink_autobind(sock);
714
715 if (err == 0) {
716 sk->sk_state = NETLINK_CONNECTED;
717 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700718 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
721 return err;
722}
723
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800724static int netlink_getname(struct socket *sock, struct sockaddr *addr,
725 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct sock *sk = sock->sk;
728 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +0000729 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 nladdr->nl_family = AF_NETLINK;
732 nladdr->nl_pad = 0;
733 *addr_len = sizeof(*nladdr);
734
735 if (peer) {
736 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700737 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 } else {
739 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700740 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742 return 0;
743}
744
745static void netlink_overrun(struct sock *sk)
746{
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700747 struct netlink_sock *nlk = nlk_sk(sk);
748
749 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
750 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
751 sk->sk_err = ENOBUFS;
752 sk->sk_error_report(sk);
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700755 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
758static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
759{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 struct sock *sock;
761 struct netlink_sock *nlk;
762
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900763 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (!sock)
765 return ERR_PTR(-ECONNREFUSED);
766
767 /* Don't bother queuing skb if kernel socket has no input function */
768 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700769 if (sock->sk_state == NETLINK_CONNECTED &&
770 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 sock_put(sock);
772 return ERR_PTR(-ECONNREFUSED);
773 }
774 return sock;
775}
776
777struct sock *netlink_getsockbyfilp(struct file *filp)
778{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800779 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 struct sock *sock;
781
782 if (!S_ISSOCK(inode->i_mode))
783 return ERR_PTR(-ENOTSOCK);
784
785 sock = SOCKET_I(inode)->sk;
786 if (sock->sk_family != AF_NETLINK)
787 return ERR_PTR(-EINVAL);
788
789 sock_hold(sock);
790 return sock;
791}
792
793/*
794 * Attach a skb to a netlink socket.
795 * The caller must hold a reference to the destination socket. On error, the
796 * reference is dropped. The skb is not send to the destination, just all
797 * all error checks are performed and memory in the queue is reserved.
798 * Return values:
799 * < 0: error. skb freed, reference to sock dropped.
800 * 0: continue
801 * 1: repeat lookup - reference dropped while waiting for socket memory.
802 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700803int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800804 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 struct netlink_sock *nlk;
807
808 nlk = nlk_sk(sk);
809
810 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
811 test_bit(0, &nlk->state)) {
812 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800813 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700814 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 netlink_overrun(sk);
816 sock_put(sk);
817 kfree_skb(skb);
818 return -EAGAIN;
819 }
820
821 __set_current_state(TASK_INTERRUPTIBLE);
822 add_wait_queue(&nlk->wait, &wait);
823
824 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
825 test_bit(0, &nlk->state)) &&
826 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800827 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 __set_current_state(TASK_RUNNING);
830 remove_wait_queue(&nlk->wait, &wait);
831 sock_put(sk);
832
833 if (signal_pending(current)) {
834 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800835 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 return 1;
838 }
839 skb_set_owner_r(skb, sk);
840 return 0;
841}
842
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000843static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 int len = skb->len;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 skb_queue_tail(&sk->sk_receive_queue, skb);
848 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000849 return len;
850}
851
852int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
853{
854 int len = __netlink_sendskb(sk, skb);
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 sock_put(sk);
857 return len;
858}
859
860void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
861{
862 kfree_skb(skb);
863 sock_put(sk);
864}
865
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000866static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 int delta;
869
870 skb_orphan(skb);
871
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700872 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (delta * 2 < skb->truesize)
874 return skb;
875
876 if (skb_shared(skb)) {
877 struct sk_buff *nskb = skb_clone(skb, allocation);
878 if (!nskb)
879 return skb;
880 kfree_skb(skb);
881 skb = nskb;
882 }
883
884 if (!pskb_expand_head(skb, 0, -delta, allocation))
885 skb->truesize -= delta;
886
887 return skb;
888}
889
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000890static void netlink_rcv_wake(struct sock *sk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700891{
892 struct netlink_sock *nlk = nlk_sk(sk);
893
894 if (skb_queue_empty(&sk->sk_receive_queue))
895 clear_bit(0, &nlk->state);
896 if (!test_bit(0, &nlk->state))
897 wake_up_interruptible(&nlk->wait);
898}
899
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000900static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700901{
902 int ret;
903 struct netlink_sock *nlk = nlk_sk(sk);
904
905 ret = -ECONNREFUSED;
906 if (nlk->netlink_rcv != NULL) {
907 ret = skb->len;
908 skb_set_owner_r(skb, sk);
909 nlk->netlink_rcv(skb);
910 }
911 kfree_skb(skb);
912 sock_put(sk);
913 return ret;
914}
915
916int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
917 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 struct sock *sk;
920 int err;
921 long timeo;
922
923 skb = netlink_trim(skb, gfp_any());
924
925 timeo = sock_sndtimeo(ssk, nonblock);
926retry:
927 sk = netlink_getsockbypid(ssk, pid);
928 if (IS_ERR(sk)) {
929 kfree_skb(skb);
930 return PTR_ERR(sk);
931 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700932 if (netlink_is_kernel(sk))
933 return netlink_unicast_kernel(sk, skb);
934
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700935 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700936 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700937 kfree_skb(skb);
938 sock_put(sk);
939 return err;
940 }
941
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700942 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (err == 1)
944 goto retry;
945 if (err)
946 return err;
947
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700948 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800950EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Patrick McHardy4277a082006-03-20 18:52:01 -0800952int netlink_has_listeners(struct sock *sk, unsigned int group)
953{
954 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000955 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800956
Denis V. Lunevaed81562007-10-10 21:14:32 -0700957 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700958
959 rcu_read_lock();
960 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
961
Eric Dumazet27e6e2b2012-10-18 03:21:55 +0000962 if (listeners && group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000963 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700964
965 rcu_read_unlock();
966
Patrick McHardy4277a082006-03-20 18:52:01 -0800967 return res;
968}
969EXPORT_SYMBOL_GPL(netlink_has_listeners);
970
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000971static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct netlink_sock *nlk = nlk_sk(sk);
974
975 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
976 !test_bit(0, &nlk->state)) {
977 skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000978 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +0000979 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981 return -1;
982}
983
984struct netlink_broadcast_data {
985 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200986 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 u32 pid;
988 u32 group;
989 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800990 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 int congested;
992 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400993 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -0700995 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
996 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997};
998
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000999static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 struct netlink_broadcast_data *p)
1001{
1002 struct netlink_sock *nlk = nlk_sk(sk);
1003 int val;
1004
1005 if (p->exclude_sk == sk)
1006 goto out;
1007
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001008 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1009 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 goto out;
1011
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001012 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001013 goto out;
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (p->failure) {
1016 netlink_overrun(sk);
1017 goto out;
1018 }
1019
1020 sock_hold(sk);
1021 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001022 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 p->skb2 = skb_clone(p->skb, p->allocation);
1024 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001025 p->skb2 = skb_get(p->skb);
1026 /*
1027 * skb ownership may have been set when
1028 * delivered to a previous socket.
1029 */
1030 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032 }
1033 if (p->skb2 == NULL) {
1034 netlink_overrun(sk);
1035 /* Clone failed. Notify ALL listeners. */
1036 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001037 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1038 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001039 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1040 kfree_skb(p->skb2);
1041 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001042 } else if (sk_filter(sk, p->skb2)) {
1043 kfree_skb(p->skb2);
1044 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1046 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001047 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1048 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 } else {
1050 p->congested |= val;
1051 p->delivered = 1;
1052 p->skb2 = NULL;
1053 }
1054 sock_put(sk);
1055
1056out:
1057 return 0;
1058}
1059
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001060int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
1061 u32 group, gfp_t allocation,
1062 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1063 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001065 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct netlink_broadcast_data info;
1067 struct hlist_node *node;
1068 struct sock *sk;
1069
1070 skb = netlink_trim(skb, allocation);
1071
1072 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001073 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 info.pid = pid;
1075 info.group = group;
1076 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001077 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 info.congested = 0;
1079 info.delivered = 0;
1080 info.allocation = allocation;
1081 info.skb = skb;
1082 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001083 info.tx_filter = filter;
1084 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 /* While we sleep in clone, do not allow to change socket list */
1087
1088 netlink_lock_table();
1089
1090 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1091 do_one_broadcast(sk, &info);
1092
Neil Horman70d4bf62010-07-20 06:45:56 +00001093 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 netlink_unlock_table();
1096
Neil Horman70d4bf62010-07-20 06:45:56 +00001097 if (info.delivery_failure) {
1098 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001099 return -ENOBUFS;
Neil Horman70d4bf62010-07-20 06:45:56 +00001100 } else
1101 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (info.delivered) {
1104 if (info.congested && (allocation & __GFP_WAIT))
1105 yield();
1106 return 0;
1107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return -ESRCH;
1109}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001110EXPORT_SYMBOL(netlink_broadcast_filtered);
1111
1112int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
1113 u32 group, gfp_t allocation)
1114{
1115 return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
1116 NULL, NULL);
1117}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001118EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120struct netlink_set_err_data {
1121 struct sock *exclude_sk;
1122 u32 pid;
1123 u32 group;
1124 int code;
1125};
1126
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001127static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001130 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 if (sk == p->exclude_sk)
1133 goto out;
1134
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001135 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001136 goto out;
1137
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001138 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1139 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 goto out;
1141
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001142 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1143 ret = 1;
1144 goto out;
1145 }
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 sk->sk_err = p->code;
1148 sk->sk_error_report(sk);
1149out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001150 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001153/**
1154 * netlink_set_err - report error to broadcast listeners
1155 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1156 * @pid: the PID of a process that we want to skip (if any)
1157 * @groups: the broadcast group that will notice the error
1158 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001159 *
1160 * This function returns the number of broadcast listeners that have set the
1161 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001162 */
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001163int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 struct netlink_set_err_data info;
1166 struct hlist_node *node;
1167 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001168 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 info.exclude_sk = ssk;
1171 info.pid = pid;
1172 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001173 /* sk->sk_err wants a positive error value */
1174 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 read_lock(&nl_table_lock);
1177
1178 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001179 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001182 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001184EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Johannes Berg84659eb2007-07-18 15:47:05 -07001186/* must be called with netlink table grabbed */
1187static void netlink_update_socket_mc(struct netlink_sock *nlk,
1188 unsigned int group,
1189 int is_new)
1190{
1191 int old, new = !!is_new, subscriptions;
1192
1193 old = test_bit(group - 1, nlk->groups);
1194 subscriptions = nlk->subscriptions - old + new;
1195 if (new)
1196 __set_bit(group - 1, nlk->groups);
1197 else
1198 __clear_bit(group - 1, nlk->groups);
1199 netlink_update_subscriptions(&nlk->sk, subscriptions);
1200 netlink_update_listeners(&nlk->sk);
1201}
1202
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001203static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001204 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001205{
1206 struct sock *sk = sock->sk;
1207 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001208 unsigned int val = 0;
1209 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001210
1211 if (level != SOL_NETLINK)
1212 return -ENOPROTOOPT;
1213
1214 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001215 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001216 return -EFAULT;
1217
1218 switch (optname) {
1219 case NETLINK_PKTINFO:
1220 if (val)
1221 nlk->flags |= NETLINK_RECV_PKTINFO;
1222 else
1223 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1224 err = 0;
1225 break;
1226 case NETLINK_ADD_MEMBERSHIP:
1227 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001228 if (!netlink_capable(sock, NL_NONROOT_RECV))
1229 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001230 err = netlink_realloc_groups(sk);
1231 if (err)
1232 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001233 if (!val || val - 1 >= nlk->ngroups)
1234 return -EINVAL;
1235 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001236 netlink_update_socket_mc(nlk, val,
1237 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001238 netlink_table_ungrab();
1239 err = 0;
1240 break;
1241 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001242 case NETLINK_BROADCAST_ERROR:
1243 if (val)
1244 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1245 else
1246 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1247 err = 0;
1248 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001249 case NETLINK_NO_ENOBUFS:
1250 if (val) {
1251 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1252 clear_bit(0, &nlk->state);
1253 wake_up_interruptible(&nlk->wait);
1254 } else
1255 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1256 err = 0;
1257 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001258 default:
1259 err = -ENOPROTOOPT;
1260 }
1261 return err;
1262}
1263
1264static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001265 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001266{
1267 struct sock *sk = sock->sk;
1268 struct netlink_sock *nlk = nlk_sk(sk);
1269 int len, val, err;
1270
1271 if (level != SOL_NETLINK)
1272 return -ENOPROTOOPT;
1273
1274 if (get_user(len, optlen))
1275 return -EFAULT;
1276 if (len < 0)
1277 return -EINVAL;
1278
1279 switch (optname) {
1280 case NETLINK_PKTINFO:
1281 if (len < sizeof(int))
1282 return -EINVAL;
1283 len = sizeof(int);
1284 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001285 if (put_user(len, optlen) ||
1286 put_user(val, optval))
1287 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001288 err = 0;
1289 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001290 case NETLINK_BROADCAST_ERROR:
1291 if (len < sizeof(int))
1292 return -EINVAL;
1293 len = sizeof(int);
1294 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1295 if (put_user(len, optlen) ||
1296 put_user(val, optval))
1297 return -EFAULT;
1298 err = 0;
1299 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001300 case NETLINK_NO_ENOBUFS:
1301 if (len < sizeof(int))
1302 return -EINVAL;
1303 len = sizeof(int);
1304 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1305 if (put_user(len, optlen) ||
1306 put_user(val, optval))
1307 return -EFAULT;
1308 err = 0;
1309 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001310 default:
1311 err = -ENOPROTOOPT;
1312 }
1313 return err;
1314}
1315
1316static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1317{
1318 struct nl_pktinfo info;
1319
1320 info.group = NETLINK_CB(skb).dst_group;
1321 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1322}
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1325 struct msghdr *msg, size_t len)
1326{
1327 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1328 struct sock *sk = sock->sk;
1329 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001330 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001332 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 struct sk_buff *skb;
1334 int err;
1335 struct scm_cookie scm;
1336
1337 if (msg->msg_flags&MSG_OOB)
1338 return -EOPNOTSUPP;
1339
Eric Dumazet16e57262011-09-19 05:52:27 +00001340 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00001342
Eric Dumazetc47ea312012-08-21 06:21:17 +00001343 err = scm_send(sock, msg, siocb->scm, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (err < 0)
1345 return err;
1346
1347 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001348 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001352 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001353 err = -EPERM;
Patrick McHardyd629b832005-08-14 19:27:50 -07001354 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001355 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 } else {
1357 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001358 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360
1361 if (!nlk->pid) {
1362 err = netlink_autobind(sock);
1363 if (err)
1364 goto out;
1365 }
1366
1367 err = -EMSGSIZE;
1368 if (len > sk->sk_sndbuf - 32)
1369 goto out;
1370 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001371 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001372 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 goto out;
1374
1375 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001376 NETLINK_CB(skb).dst_group = dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001380 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 kfree_skb(skb);
1382 goto out;
1383 }
1384
1385 err = security_netlink_send(sk, skb);
1386 if (err) {
1387 kfree_skb(skb);
1388 goto out;
1389 }
1390
Patrick McHardyd629b832005-08-14 19:27:50 -07001391 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001393 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1396
1397out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001398 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return err;
1400}
1401
1402static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1403 struct msghdr *msg, size_t len,
1404 int flags)
1405{
1406 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1407 struct scm_cookie scm;
1408 struct sock *sk = sock->sk;
1409 struct netlink_sock *nlk = nlk_sk(sk);
1410 int noblock = flags&MSG_DONTWAIT;
1411 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00001412 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001413 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 if (flags&MSG_OOB)
1416 return -EOPNOTSUPP;
1417
1418 copied = 0;
1419
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001420 skb = skb_recv_datagram(sk, flags, noblock, &err);
1421 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 goto out;
1423
Johannes Berg68d6ac62010-08-15 21:20:44 +00001424 data_skb = skb;
1425
Johannes Berg1dacc762009-07-01 11:26:02 +00001426#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1427 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00001428 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00001429 * If this skb has a frag_list, then here that means that we
1430 * will have to use the frag_list skb's data for compat tasks
1431 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00001432 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00001433 * If we need to send the compat skb, assign it to the
1434 * 'data_skb' variable so that it will be used below for data
1435 * copying. We keep 'skb' for everything else, including
1436 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00001437 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00001438 if (flags & MSG_CMSG_COMPAT)
1439 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00001440 }
1441#endif
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 msg->msg_namelen = 0;
1444
Johannes Berg68d6ac62010-08-15 21:20:44 +00001445 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (len < copied) {
1447 msg->msg_flags |= MSG_TRUNC;
1448 copied = len;
1449 }
1450
Johannes Berg68d6ac62010-08-15 21:20:44 +00001451 skb_reset_transport_header(data_skb);
1452 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001455 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 addr->nl_family = AF_NETLINK;
1457 addr->nl_pad = 0;
1458 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001459 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 msg->msg_namelen = sizeof(*addr);
1461 }
1462
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001463 if (nlk->flags & NETLINK_RECV_PKTINFO)
1464 netlink_cmsg_recv_pktinfo(msg, skb);
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (NULL == siocb->scm) {
1467 memset(&scm, 0, sizeof(scm));
1468 siocb->scm = &scm;
1469 }
1470 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001471 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00001472 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 skb_free_datagram(sk, skb);
1475
Andrey Vaginb44d2112011-02-21 02:40:47 +00001476 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1477 ret = netlink_dump(sk);
1478 if (ret) {
1479 sk->sk_err = ret;
1480 sk->sk_error_report(sk);
1481 }
1482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485out:
1486 netlink_rcv_wake(sk);
1487 return err ? : copied;
1488}
1489
1490static void netlink_data_ready(struct sock *sk, int len)
1491{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001492 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
1495/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001496 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 * complete set of kernel non-blocking support for message
1498 * queueing.
1499 */
1500
1501struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001502netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001503 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001504 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 struct socket *sock;
1507 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001508 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001509 struct listeners *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001511 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001513 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return NULL;
1515
1516 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1517 return NULL;
1518
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001519 /*
1520 * We have to just have a reference on the net from sk, but don't
1521 * get_net it. Besides, we cannot get and then put the net here.
1522 * So we create one inside init_net and the move it to net.
1523 */
1524
1525 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1526 goto out_sock_release_nosk;
1527
1528 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001529 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001530
Patrick McHardy4277a082006-03-20 18:52:01 -08001531 if (groups < 32)
1532 groups = 32;
1533
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001534 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001535 if (!listeners)
1536 goto out_sock_release;
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 sk->sk_data_ready = netlink_data_ready;
1539 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001540 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001542 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001543 goto out_sock_release;
1544
1545 nlk = nlk_sk(sk);
1546 nlk->flags |= NETLINK_KERNEL_SOCKET;
1547
1548 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001549 if (!nl_table[unit].registered) {
1550 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001551 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001552 nl_table[unit].cb_mutex = cb_mutex;
1553 nl_table[unit].module = module;
1554 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001555 } else {
1556 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001557 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001558 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001559 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001560 return sk;
1561
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001562out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001563 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001564 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001565 return NULL;
1566
1567out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001568 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001569 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001571EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001573
1574void
1575netlink_kernel_release(struct sock *sk)
1576{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001577 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001578}
1579EXPORT_SYMBOL(netlink_kernel_release);
1580
Johannes Bergd136f1b2009-09-12 03:03:15 +00001581int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001582{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001583 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001584 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001585
1586 if (groups < 32)
1587 groups = 32;
1588
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001589 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001590 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
1591 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00001592 return -ENOMEM;
Eric Dumazet27e6e2b2012-10-18 03:21:55 +00001593 old = nl_deref_protected(tbl->listeners);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001594 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
1595 rcu_assign_pointer(tbl->listeners, new);
1596
Lai Jiangshan37b6b932011-03-15 18:01:42 +08001597 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001598 }
1599 tbl->groups = groups;
1600
Johannes Bergd136f1b2009-09-12 03:03:15 +00001601 return 0;
1602}
1603
1604/**
1605 * netlink_change_ngroups - change number of multicast groups
1606 *
1607 * This changes the number of multicast groups that are available
1608 * on a certain netlink family. Note that it is not possible to
1609 * change the number of groups to below 32. Also note that it does
1610 * not implicitly call netlink_clear_multicast_users() when the
1611 * number of groups is reduced.
1612 *
1613 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1614 * @groups: The new number of groups.
1615 */
1616int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1617{
1618 int err;
1619
1620 netlink_table_grab();
1621 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001622 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00001623
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001624 return err;
1625}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001626
Johannes Bergb8273572009-09-24 15:44:05 -07001627void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1628{
1629 struct sock *sk;
1630 struct hlist_node *node;
1631 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1632
1633 sk_for_each_bound(sk, node, &tbl->mc_list)
1634 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1635}
1636
Johannes Berg84659eb2007-07-18 15:47:05 -07001637/**
1638 * netlink_clear_multicast_users - kick off multicast listeners
1639 *
1640 * This function removes all listeners from the given group.
1641 * @ksk: The kernel netlink socket, as returned by
1642 * netlink_kernel_create().
1643 * @group: The multicast group to clear.
1644 */
1645void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1646{
Johannes Berg84659eb2007-07-18 15:47:05 -07001647 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07001648 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07001649 netlink_table_ungrab();
1650}
Johannes Berg84659eb2007-07-18 15:47:05 -07001651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001653{
1654 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001656}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001657EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659static void netlink_destroy_callback(struct netlink_callback *cb)
1660{
Wei Yongjun91744f62009-02-25 00:34:41 +00001661 kfree_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 kfree(cb);
1663}
1664
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05001665struct nlmsghdr *
1666__nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
1667{
1668 struct nlmsghdr *nlh;
1669 int size = NLMSG_LENGTH(len);
1670
1671 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
1672 nlh->nlmsg_type = type;
1673 nlh->nlmsg_len = size;
1674 nlh->nlmsg_flags = flags;
1675 nlh->nlmsg_pid = pid;
1676 nlh->nlmsg_seq = seq;
1677 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
1678 memset(NLMSG_DATA(nlh) + len, 0, NLMSG_ALIGN(size) - size);
1679 return nlh;
1680}
1681EXPORT_SYMBOL(__nlmsg_put);
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683/*
1684 * It looks a bit ugly.
1685 * It would be better to create kernel thread.
1686 */
1687
1688static int netlink_dump(struct sock *sk)
1689{
1690 struct netlink_sock *nlk = nlk_sk(sk);
1691 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001692 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001694 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001695 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001697 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 cb = nlk->cb;
1700 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001701 err = -EINVAL;
1702 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704
Greg Rosec7ac8672011-06-10 01:27:09 +00001705 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
1706
1707 skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL);
1708 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00001709 goto errout_skb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 len = cb->dump(skb, cb);
1712
1713 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001714 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001715
1716 if (sk_filter(sk, skb))
1717 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001718 else
1719 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return 0;
1721 }
1722
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001723 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1724 if (!nlh)
1725 goto errout_skb;
1726
Johannes Berg670dc282011-06-20 13:40:46 +02001727 nl_dump_check_consistent(cb, nlh);
1728
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001729 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1730
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001731 if (sk_filter(sk, skb))
1732 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001733 else
1734 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Thomas Grafa8f74b22005-11-10 02:25:52 +01001736 if (cb->done)
1737 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001739 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001743
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001744errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001745 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001746 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001747 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
1750int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
Patrick McHardy3a6c2b42009-08-25 16:07:40 +02001751 const struct nlmsghdr *nlh,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001752 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 struct netlink_callback *cb;
1755 struct sock *sk;
1756 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001757 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001759 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (cb == NULL)
1761 return -ENOBUFS;
1762
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001763 cb->dump = control->dump;
1764 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00001766 cb->data = control->data;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001767 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 atomic_inc(&skb->users);
1769 cb->skb = skb;
1770
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001771 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (sk == NULL) {
1773 netlink_destroy_callback(cb);
1774 return -ECONNREFUSED;
1775 }
1776 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001777 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001778 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001779 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001780 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 netlink_destroy_callback(cb);
1782 sock_put(sk);
1783 return -EBUSY;
1784 }
1785 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001786 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Andrey Vaginb44d2112011-02-21 02:40:47 +00001788 ret = netlink_dump(sk);
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001791
Andrey Vaginb44d2112011-02-21 02:40:47 +00001792 if (ret)
1793 return ret;
1794
Denis V. Lunev5c582982007-10-23 20:29:25 -07001795 /* We successfully started a dump, by returning -EINTR we
1796 * signal not to send ACK even if it was requested.
1797 */
1798 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001800EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1803{
1804 struct sk_buff *skb;
1805 struct nlmsghdr *rep;
1806 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001807 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Thomas Graf339bf982006-11-10 14:10:15 -08001809 /* error messages get the original request appened */
1810 if (err)
1811 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Thomas Graf339bf982006-11-10 14:10:15 -08001813 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (!skb) {
1815 struct sock *sk;
1816
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001817 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001818 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 NETLINK_CB(in_skb).pid);
1820 if (sk) {
1821 sk->sk_err = ENOBUFS;
1822 sk->sk_error_report(sk);
1823 sock_put(sk);
1824 }
1825 return;
1826 }
1827
1828 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00001829 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001830 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001832 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1834}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001835EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001837int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001838 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001839{
Thomas Graf82ace472005-11-10 02:25:53 +01001840 struct nlmsghdr *nlh;
1841 int err;
1842
1843 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001844 int msglen;
1845
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001846 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001847 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001848
Martin Murrayad8e4b72006-01-10 13:02:29 -08001849 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001850 return 0;
1851
Thomas Grafd35b6852007-03-22 23:28:46 -07001852 /* Only requests are handled by the kernel */
1853 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001854 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001855
Thomas Graf45e7ae72007-03-22 23:29:10 -07001856 /* Skip control messages */
1857 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001858 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001859
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001860 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001861 if (err == -EINTR)
1862 goto skip;
1863
1864ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001865 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001866 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001867
Denis V. Lunev5c582982007-10-23 20:29:25 -07001868skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001869 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001870 if (msglen > skb->len)
1871 msglen = skb->len;
1872 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001873 }
1874
1875 return 0;
1876}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001877EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001878
1879/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001880 * nlmsg_notify - send a notification netlink message
1881 * @sk: netlink socket to use
1882 * @skb: notification message
1883 * @pid: destination netlink pid for reports or 0
1884 * @group: destination multicast group or 0
1885 * @report: 1 to report back, 0 to disable
1886 * @flags: allocation flags
1887 */
1888int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1889 unsigned int group, int report, gfp_t flags)
1890{
1891 int err = 0;
1892
1893 if (group) {
1894 int exclude_pid = 0;
1895
1896 if (report) {
1897 atomic_inc(&skb->users);
1898 exclude_pid = pid;
1899 }
1900
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001901 /* errors reported via destination sk->sk_err, but propagate
1902 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1903 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001904 }
1905
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001906 if (report) {
1907 int err2;
1908
1909 err2 = nlmsg_unicast(sk, skb, pid);
1910 if (!err || err == -ESRCH)
1911 err = err2;
1912 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07001913
1914 return err;
1915}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001916EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918#ifdef CONFIG_PROC_FS
1919struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001920 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 int link;
1922 int hash_idx;
1923};
1924
1925static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1926{
1927 struct nl_seq_iter *iter = seq->private;
1928 int i, j;
1929 struct sock *s;
1930 struct hlist_node *node;
1931 loff_t off = 0;
1932
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001933 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 struct nl_pid_hash *hash = &nl_table[i].hash;
1935
1936 for (j = 0; j <= hash->mask; j++) {
1937 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001938 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001939 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (off == pos) {
1941 iter->link = i;
1942 iter->hash_idx = j;
1943 return s;
1944 }
1945 ++off;
1946 }
1947 }
1948 }
1949 return NULL;
1950}
1951
1952static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001953 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
1955 read_lock(&nl_table_lock);
1956 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1957}
1958
1959static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1960{
1961 struct sock *s;
1962 struct nl_seq_iter *iter;
1963 int i, j;
1964
1965 ++*pos;
1966
1967 if (v == SEQ_START_TOKEN)
1968 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001969
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001970 iter = seq->private;
1971 s = v;
1972 do {
1973 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001974 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if (s)
1976 return s;
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 i = iter->link;
1979 j = iter->hash_idx + 1;
1980
1981 do {
1982 struct nl_pid_hash *hash = &nl_table[i].hash;
1983
1984 for (; j <= hash->mask; j++) {
1985 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001986 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001987 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 if (s) {
1989 iter->link = i;
1990 iter->hash_idx = j;
1991 return s;
1992 }
1993 }
1994
1995 j = 0;
1996 } while (++i < MAX_LINKS);
1997
1998 return NULL;
1999}
2000
2001static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002002 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
2004 read_unlock(&nl_table_lock);
2005}
2006
2007
2008static int netlink_seq_show(struct seq_file *seq, void *v)
2009{
2010 if (v == SEQ_START_TOKEN)
2011 seq_puts(seq,
2012 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002013 "Rmem Wmem Dump Locks Drops Inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 else {
2015 struct sock *s = v;
2016 struct netlink_sock *nlk = nlk_sk(s);
2017
Dan Rosenberg71338aa2011-05-23 12:17:35 +00002018 seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 s,
2020 s->sk_protocol,
2021 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002022 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002023 sk_rmem_alloc_get(s),
2024 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002026 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002027 atomic_read(&s->sk_drops),
2028 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 );
2030
2031 }
2032 return 0;
2033}
2034
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002035static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .start = netlink_seq_start,
2037 .next = netlink_seq_next,
2038 .stop = netlink_seq_stop,
2039 .show = netlink_seq_show,
2040};
2041
2042
2043static int netlink_seq_open(struct inode *inode, struct file *file)
2044{
Denis V. Luneve372c412007-11-19 22:31:54 -08002045 return seq_open_net(inode, file, &netlink_seq_ops,
2046 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002047}
2048
Arjan van de Venda7071d2007-02-12 00:55:36 -08002049static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 .owner = THIS_MODULE,
2051 .open = netlink_seq_open,
2052 .read = seq_read,
2053 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002054 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055};
2056
2057#endif
2058
2059int netlink_register_notifier(struct notifier_block *nb)
2060{
Alan Sterne041c682006-03-27 01:16:30 -08002061 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002063EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065int netlink_unregister_notifier(struct notifier_block *nb)
2066{
Alan Sterne041c682006-03-27 01:16:30 -08002067 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002069EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002070
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002071static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 .family = PF_NETLINK,
2073 .owner = THIS_MODULE,
2074 .release = netlink_release,
2075 .bind = netlink_bind,
2076 .connect = netlink_connect,
2077 .socketpair = sock_no_socketpair,
2078 .accept = sock_no_accept,
2079 .getname = netlink_getname,
2080 .poll = datagram_poll,
2081 .ioctl = sock_no_ioctl,
2082 .listen = sock_no_listen,
2083 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002084 .setsockopt = netlink_setsockopt,
2085 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 .sendmsg = netlink_sendmsg,
2087 .recvmsg = netlink_recvmsg,
2088 .mmap = sock_no_mmap,
2089 .sendpage = sock_no_sendpage,
2090};
2091
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002092static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 .family = PF_NETLINK,
2094 .create = netlink_create,
2095 .owner = THIS_MODULE, /* for consistency 8) */
2096};
2097
Pavel Emelyanov46650792007-10-08 20:38:39 -07002098static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002099{
2100#ifdef CONFIG_PROC_FS
2101 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2102 return -ENOMEM;
2103#endif
2104 return 0;
2105}
2106
Pavel Emelyanov46650792007-10-08 20:38:39 -07002107static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002108{
2109#ifdef CONFIG_PROC_FS
2110 proc_net_remove(net, "netlink");
2111#endif
2112}
2113
David S. Millerb963ea82010-08-30 19:08:01 -07002114static void __init netlink_add_usersock_entry(void)
2115{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002116 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002117 int groups = 32;
2118
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002119 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002120 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002121 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002122
2123 netlink_table_grab();
2124
2125 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002126 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002127 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2128 nl_table[NETLINK_USERSOCK].registered = 1;
2129
2130 netlink_table_ungrab();
2131}
2132
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002133static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002134 .init = netlink_net_init,
2135 .exit = netlink_net_exit,
2136};
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138static int __init netlink_proto_init(void)
2139{
2140 struct sk_buff *dummy_skb;
2141 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002142 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 unsigned int order;
2144 int err = proto_register(&netlink_proto, 0);
2145
2146 if (err != 0)
2147 goto out;
2148
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07002149 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002151 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002152 if (!nl_table)
2153 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Jan Beulich44813742009-09-21 17:03:05 -07002155 if (totalram_pages >= (128 * 1024))
2156 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 else
Jan Beulich44813742009-09-21 17:03:05 -07002158 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002160 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2161 limit = (1UL << order) / sizeof(struct hlist_head);
2162 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164 for (i = 0; i < MAX_LINKS; i++) {
2165 struct nl_pid_hash *hash = &nl_table[i].hash;
2166
Eric Dumazetea729122007-12-11 02:09:47 -08002167 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (!hash->table) {
2169 while (i-- > 0)
2170 nl_pid_hash_free(nl_table[i].hash.table,
2171 1 * sizeof(*hash->table));
2172 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002173 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 hash->max_shift = order;
2176 hash->shift = 0;
2177 hash->mask = 0;
2178 hash->rehash_time = jiffies;
2179 }
2180
David S. Millerb963ea82010-08-30 19:08:01 -07002181 netlink_add_usersock_entry();
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002184 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002185 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 rtnetlink_init();
2187out:
2188 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002189panic:
2190 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193core_initcall(netlink_proto_init);