blob: 7cb7867cc369b445c3a78359feefe8a51dfda6b1 [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);
Pablo Neira Ayuso03292742012-06-29 06:15:22 +000083 void (*netlink_bind)(int group);
Patrick McHardy77247bb2005-08-14 19:27:13 -070084 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
Eric Dumazet5c398dc2010-10-24 04:27:10 +000087struct listeners {
88 struct rcu_head rcu;
89 unsigned long masks[0];
Johannes Berg6c04bb12009-07-10 09:51:32 +000090};
91
Patrick McHardy77247bb2005-08-14 19:27:13 -070092#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070093#define NETLINK_RECV_PKTINFO 0x2
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +000094#define NETLINK_BROADCAST_SEND_ERROR 0x4
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -070095#define NETLINK_RECV_NO_ENOBUFS 0x8
Patrick McHardy77247bb2005-08-14 19:27:13 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static inline struct netlink_sock *nlk_sk(struct sock *sk)
98{
Denis Cheng32b21e02007-08-28 15:41:11 -070099 return container_of(sk, struct netlink_sock, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
David S. Miller035c4c12011-12-23 17:33:03 -0500102static inline int netlink_is_kernel(struct sock *sk)
Denis V. Lunevaed81562007-10-10 21:14:32 -0700103{
104 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107struct nl_pid_hash {
Eric Dumazet658cb352012-04-22 21:30:21 +0000108 struct hlist_head *table;
109 unsigned long rehash_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Eric Dumazet658cb352012-04-22 21:30:21 +0000111 unsigned int mask;
112 unsigned int shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Eric Dumazet658cb352012-04-22 21:30:21 +0000114 unsigned int entries;
115 unsigned int max_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Eric Dumazet658cb352012-04-22 21:30:21 +0000117 u32 rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct netlink_table {
Eric Dumazet658cb352012-04-22 21:30:21 +0000121 struct nl_pid_hash hash;
122 struct hlist_head mc_list;
123 struct listeners __rcu *listeners;
124 unsigned int nl_nonroot;
125 unsigned int groups;
126 struct mutex *cb_mutex;
127 struct module *module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000128 void (*bind)(int group);
Eric Dumazet658cb352012-04-22 21:30:21 +0000129 int registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
132static struct netlink_table *nl_table;
133
134static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
135
136static int netlink_dump(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138static DEFINE_RWLOCK(nl_table_lock);
139static atomic_t nl_table_users = ATOMIC_INIT(0);
140
Alan Sterne041c682006-03-27 01:16:30 -0800141static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000143static inline u32 netlink_group_mask(u32 group)
Patrick McHardyd629b832005-08-14 19:27:50 -0700144{
145 return group ? 1 << (group - 1) : 0;
146}
147
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000148static inline struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
151}
152
Eric Dumazet658cb352012-04-22 21:30:21 +0000153static void netlink_destroy_callback(struct netlink_callback *cb)
154{
155 kfree_skb(cb->skb);
156 kfree(cb);
157}
158
Eric Dumazetbfb253c2012-04-22 21:30:29 +0000159static void netlink_consume_callback(struct netlink_callback *cb)
160{
161 consume_skb(cb->skb);
162 kfree(cb);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static void netlink_sock_destruct(struct sock *sk)
166{
Herbert Xu3f660d62007-05-03 03:17:14 -0700167 struct netlink_sock *nlk = nlk_sk(sk);
168
Herbert Xu3f660d62007-05-03 03:17:14 -0700169 if (nlk->cb) {
170 if (nlk->cb->done)
171 nlk->cb->done(nlk->cb);
172 netlink_destroy_callback(nlk->cb);
173 }
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 skb_queue_purge(&sk->sk_receive_queue);
176
177 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800178 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return;
180 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700181
182 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
183 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
184 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800187/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
188 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
190 * this, _but_ remember, it adds useless work on UP machines.
191 */
192
Johannes Bergd136f1b2009-09-12 03:03:15 +0000193void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800194 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000196 might_sleep();
197
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700198 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (atomic_read(&nl_table_users)) {
201 DECLARE_WAITQUEUE(wait, current);
202
203 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800204 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 set_current_state(TASK_UNINTERRUPTIBLE);
206 if (atomic_read(&nl_table_users) == 0)
207 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700208 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700210 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 __set_current_state(TASK_RUNNING);
214 remove_wait_queue(&nl_table_wait, &wait);
215 }
216}
217
Johannes Bergd136f1b2009-09-12 03:03:15 +0000218void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800219 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700221 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 wake_up(&nl_table_wait);
223}
224
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800225static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226netlink_lock_table(void)
227{
228 /* read_lock() synchronizes us to netlink_table_grab */
229
230 read_lock(&nl_table_lock);
231 atomic_inc(&nl_table_users);
232 read_unlock(&nl_table_lock);
233}
234
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800235static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236netlink_unlock_table(void)
237{
238 if (atomic_dec_and_test(&nl_table_users))
239 wake_up(&nl_table_wait);
240}
241
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000242static struct sock *netlink_lookup(struct net *net, int protocol, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct nl_pid_hash *hash = &nl_table[protocol].hash;
245 struct hlist_head *head;
246 struct sock *sk;
247 struct hlist_node *node;
248
249 read_lock(&nl_table_lock);
250 head = nl_pid_hashfn(hash, pid);
251 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900252 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 sock_hold(sk);
254 goto found;
255 }
256 }
257 sk = NULL;
258found:
259 read_unlock(&nl_table_lock);
260 return sk;
261}
262
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000263static struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800266 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 else
268 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800269 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
270 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000273static void nl_pid_hash_free(struct hlist_head *table, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 if (size <= PAGE_SIZE)
276 kfree(table);
277 else
278 free_pages((unsigned long)table, get_order(size));
279}
280
281static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
282{
283 unsigned int omask, mask, shift;
284 size_t osize, size;
285 struct hlist_head *otable, *table;
286 int i;
287
288 omask = mask = hash->mask;
289 osize = size = (mask + 1) * sizeof(*table);
290 shift = hash->shift;
291
292 if (grow) {
293 if (++shift > hash->max_shift)
294 return 0;
295 mask = mask * 2 + 1;
296 size *= 2;
297 }
298
Eric Dumazetea729122007-12-11 02:09:47 -0800299 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (!table)
301 return 0;
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 otable = hash->table;
304 hash->table = table;
305 hash->mask = mask;
306 hash->shift = shift;
307 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
308
309 for (i = 0; i <= omask; i++) {
310 struct sock *sk;
311 struct hlist_node *node, *tmp;
312
313 sk_for_each_safe(sk, node, tmp, &otable[i])
314 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
315 }
316
317 nl_pid_hash_free(otable, osize);
318 hash->rehash_time = jiffies + 10 * 60 * HZ;
319 return 1;
320}
321
322static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
323{
324 int avg = hash->entries >> hash->shift;
325
326 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
327 return 1;
328
329 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
330 nl_pid_hash_rehash(hash, 0);
331 return 1;
332 }
333
334 return 0;
335}
336
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800337static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Patrick McHardy4277a082006-03-20 18:52:01 -0800339static void
340netlink_update_listeners(struct sock *sk)
341{
342 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
343 struct hlist_node *node;
344 unsigned long mask;
345 unsigned int i;
346
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700347 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800348 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700349 sk_for_each_bound(sk, node, &tbl->mc_list) {
350 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
351 mask |= nlk_sk(sk)->groups[i];
352 }
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000353 tbl->listeners->masks[i] = mask;
Patrick McHardy4277a082006-03-20 18:52:01 -0800354 }
355 /* this function is only called with the netlink table "grabbed", which
356 * makes sure updates are visible before bind or setsockopt return. */
357}
358
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200359static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
362 struct hlist_head *head;
363 int err = -EADDRINUSE;
364 struct sock *osk;
365 struct hlist_node *node;
366 int len;
367
368 netlink_table_grab();
369 head = nl_pid_hashfn(hash, pid);
370 len = 0;
371 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900372 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 break;
374 len++;
375 }
376 if (node)
377 goto err;
378
379 err = -EBUSY;
380 if (nlk_sk(sk)->pid)
381 goto err;
382
383 err = -ENOMEM;
384 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
385 goto err;
386
387 if (len && nl_pid_hash_dilute(hash, len))
388 head = nl_pid_hashfn(hash, pid);
389 hash->entries++;
390 nlk_sk(sk)->pid = pid;
391 sk_add_node(sk, head);
392 err = 0;
393
394err:
395 netlink_table_ungrab();
396 return err;
397}
398
399static void netlink_remove(struct sock *sk)
400{
401 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700402 if (sk_del_node_init(sk))
403 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700404 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 __sk_del_bind_node(sk);
406 netlink_table_ungrab();
407}
408
409static struct proto netlink_proto = {
410 .name = "NETLINK",
411 .owner = THIS_MODULE,
412 .obj_size = sizeof(struct netlink_sock),
413};
414
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700415static int __netlink_create(struct net *net, struct socket *sock,
416 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 struct sock *sk;
419 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700420
421 sock->ops = &netlink_ops;
422
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700423 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700424 if (!sk)
425 return -ENOMEM;
426
427 sock_init_data(sock, sk);
428
429 nlk = nlk_sk(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +0000430 if (cb_mutex) {
Patrick McHardyffa4d722007-04-25 14:01:17 -0700431 nlk->cb_mutex = cb_mutex;
Eric Dumazet658cb352012-04-22 21:30:21 +0000432 } else {
Patrick McHardyffa4d722007-04-25 14:01:17 -0700433 nlk->cb_mutex = &nlk->cb_def_mutex;
434 mutex_init(nlk->cb_mutex);
435 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700436 init_waitqueue_head(&nlk->wait);
437
438 sk->sk_destruct = netlink_sock_destruct;
439 sk->sk_protocol = protocol;
440 return 0;
441}
442
Eric Paris3f378b62009-11-05 22:18:14 -0800443static int netlink_create(struct net *net, struct socket *sock, int protocol,
444 int kern)
Patrick McHardyab33a172005-08-14 19:31:36 -0700445{
446 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700447 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700448 struct netlink_sock *nlk;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000449 void (*bind)(int group);
Patrick McHardyab33a172005-08-14 19:31:36 -0700450 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 sock->state = SS_UNCONNECTED;
453
454 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
455 return -ESOCKTNOSUPPORT;
456
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800457 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -EPROTONOSUPPORT;
459
Patrick McHardy77247bb2005-08-14 19:27:13 -0700460 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700461#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700462 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700463 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700464 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700465 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700466 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700467#endif
468 if (nl_table[protocol].registered &&
469 try_module_get(nl_table[protocol].module))
470 module = nl_table[protocol].module;
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000471 else
472 err = -EPROTONOSUPPORT;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700473 cb_mutex = nl_table[protocol].cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000474 bind = nl_table[protocol].bind;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700475 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700476
Alexey Dobriyan974c37e2010-01-30 10:05:05 +0000477 if (err < 0)
478 goto out;
479
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800480 err = __netlink_create(net, sock, cb_mutex, protocol);
481 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700482 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
David S. Miller6f756a82008-11-23 17:34:03 -0800484 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800485 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800486 local_bh_enable();
487
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700488 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700489 nlk->module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000490 nlk->netlink_bind = bind;
Patrick McHardyab33a172005-08-14 19:31:36 -0700491out:
492 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Patrick McHardyab33a172005-08-14 19:31:36 -0700494out_module:
495 module_put(module);
496 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
499static int netlink_release(struct socket *sock)
500{
501 struct sock *sk = sock->sk;
502 struct netlink_sock *nlk;
503
504 if (!sk)
505 return 0;
506
507 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700508 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 nlk = nlk_sk(sk);
510
Herbert Xu3f660d62007-05-03 03:17:14 -0700511 /*
512 * OK. Socket is unlinked, any packets that arrive now
513 * will be purged.
514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 sock->sk = NULL;
517 wake_up_interruptible_all(&nlk->wait);
518
519 skb_queue_purge(&sk->sk_write_queue);
520
Johannes Berg649300b2009-11-16 12:05:34 +0000521 if (nlk->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900523 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .protocol = sk->sk_protocol,
525 .pid = nlk->pid,
526 };
Alan Sterne041c682006-03-27 01:16:30 -0800527 atomic_notifier_call_chain(&netlink_chain,
528 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900529 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700530
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800531 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700532
Patrick McHardy4277a082006-03-20 18:52:01 -0800533 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700534 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800535 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
536 if (--nl_table[sk->sk_protocol].registered == 0) {
537 kfree(nl_table[sk->sk_protocol].listeners);
538 nl_table[sk->sk_protocol].module = NULL;
539 nl_table[sk->sk_protocol].registered = 0;
540 }
Eric Dumazet658cb352012-04-22 21:30:21 +0000541 } else if (nlk->subscriptions) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800542 netlink_update_listeners(sk);
Eric Dumazet658cb352012-04-22 21:30:21 +0000543 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800544 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700545
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700546 kfree(nlk->groups);
547 nlk->groups = NULL;
548
Eric Dumazet37558102008-11-24 14:05:22 -0800549 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800550 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800551 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 sock_put(sk);
553 return 0;
554}
555
556static int netlink_autobind(struct socket *sock)
557{
558 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900559 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
561 struct hlist_head *head;
562 struct sock *osk;
563 struct hlist_node *node;
Tom Goff66aa4a52010-03-19 15:38:50 +0000564 s32 pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 int err;
566 static s32 rover = -4097;
567
568retry:
569 cond_resched();
570 netlink_table_grab();
571 head = nl_pid_hashfn(hash, pid);
572 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900573 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200574 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (nlk_sk(osk)->pid == pid) {
576 /* Bind collision, search negative pid values. */
577 pid = rover--;
578 if (rover > -4097)
579 rover = -4097;
580 netlink_table_ungrab();
581 goto retry;
582 }
583 }
584 netlink_table_ungrab();
585
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200586 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (err == -EADDRINUSE)
588 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700589
590 /* If 2 threads race to autobind, that is fine. */
591 if (err == -EBUSY)
592 err = 0;
593
594 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000597static inline int netlink_capable(const struct socket *sock, unsigned int flag)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900598{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
600 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900601}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700603static void
604netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
605{
606 struct netlink_sock *nlk = nlk_sk(sk);
607
608 if (nlk->subscriptions && !subscriptions)
609 __sk_del_bind_node(sk);
610 else if (!nlk->subscriptions && subscriptions)
611 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
612 nlk->subscriptions = subscriptions;
613}
614
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700615static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700616{
617 struct netlink_sock *nlk = nlk_sk(sk);
618 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700619 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700620 int err = 0;
621
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700622 netlink_table_grab();
623
Patrick McHardy513c2502005-09-06 15:43:59 -0700624 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700625 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700626 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700627 goto out_unlock;
628 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700629
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700630 if (nlk->ngroups >= groups)
631 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700632
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700633 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
634 if (new_groups == NULL) {
635 err = -ENOMEM;
636 goto out_unlock;
637 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800638 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700639 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
640
641 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700642 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700643 out_unlock:
644 netlink_table_ungrab();
645 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700646}
647
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800648static int netlink_bind(struct socket *sock, struct sockaddr *addr,
649 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900652 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct netlink_sock *nlk = nlk_sk(sk);
654 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
655 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (nladdr->nl_family != AF_NETLINK)
658 return -EINVAL;
659
660 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700661 if (nladdr->nl_groups) {
662 if (!netlink_capable(sock, NL_NONROOT_RECV))
663 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700664 err = netlink_realloc_groups(sk);
665 if (err)
666 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 if (nlk->pid) {
670 if (nladdr->nl_pid != nlk->pid)
671 return -EINVAL;
672 } else {
673 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200674 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 netlink_autobind(sock);
676 if (err)
677 return err;
678 }
679
Patrick McHardy513c2502005-09-06 15:43:59 -0700680 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return 0;
682
683 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700684 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900685 hweight32(nladdr->nl_groups) -
686 hweight32(nlk->groups[0]));
687 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800688 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 netlink_table_ungrab();
690
Pablo Neira Ayuso03292742012-06-29 06:15:22 +0000691 if (nlk->netlink_bind && nlk->groups[0]) {
692 int i;
693
694 for (i=0; i<nlk->ngroups; i++) {
695 if (test_bit(i, nlk->groups))
696 nlk->netlink_bind(i);
697 }
698 }
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 0;
701}
702
703static int netlink_connect(struct socket *sock, struct sockaddr *addr,
704 int alen, int flags)
705{
706 int err = 0;
707 struct sock *sk = sock->sk;
708 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800709 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Changli Gao6503d962010-03-31 22:58:26 +0000711 if (alen < sizeof(addr->sa_family))
712 return -EINVAL;
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (addr->sa_family == AF_UNSPEC) {
715 sk->sk_state = NETLINK_UNCONNECTED;
716 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700717 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
719 }
720 if (addr->sa_family != AF_NETLINK)
721 return -EINVAL;
722
723 /* Only superuser is allowed to send multicasts */
724 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
725 return -EPERM;
726
727 if (!nlk->pid)
728 err = netlink_autobind(sock);
729
730 if (err == 0) {
731 sk->sk_state = NETLINK_CONNECTED;
732 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700733 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735
736 return err;
737}
738
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800739static int netlink_getname(struct socket *sock, struct sockaddr *addr,
740 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 struct sock *sk = sock->sk;
743 struct netlink_sock *nlk = nlk_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +0000744 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 nladdr->nl_family = AF_NETLINK;
747 nladdr->nl_pad = 0;
748 *addr_len = sizeof(*nladdr);
749
750 if (peer) {
751 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700752 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 } else {
754 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700755 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757 return 0;
758}
759
760static void netlink_overrun(struct sock *sk)
761{
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700762 struct netlink_sock *nlk = nlk_sk(sk);
763
764 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
765 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
766 sk->sk_err = ENOBUFS;
767 sk->sk_error_report(sk);
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700770 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
774{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct sock *sock;
776 struct netlink_sock *nlk;
777
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900778 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!sock)
780 return ERR_PTR(-ECONNREFUSED);
781
782 /* Don't bother queuing skb if kernel socket has no input function */
783 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700784 if (sock->sk_state == NETLINK_CONNECTED &&
785 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 sock_put(sock);
787 return ERR_PTR(-ECONNREFUSED);
788 }
789 return sock;
790}
791
792struct sock *netlink_getsockbyfilp(struct file *filp)
793{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800794 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct sock *sock;
796
797 if (!S_ISSOCK(inode->i_mode))
798 return ERR_PTR(-ENOTSOCK);
799
800 sock = SOCKET_I(inode)->sk;
801 if (sock->sk_family != AF_NETLINK)
802 return ERR_PTR(-EINVAL);
803
804 sock_hold(sock);
805 return sock;
806}
807
808/*
809 * Attach a skb to a netlink socket.
810 * The caller must hold a reference to the destination socket. On error, the
811 * reference is dropped. The skb is not send to the destination, just all
812 * all error checks are performed and memory in the queue is reserved.
813 * Return values:
814 * < 0: error. skb freed, reference to sock dropped.
815 * 0: continue
816 * 1: repeat lookup - reference dropped while waiting for socket memory.
817 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700818int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800819 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 struct netlink_sock *nlk;
822
823 nlk = nlk_sk(sk);
824
825 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
826 test_bit(0, &nlk->state)) {
827 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800828 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700829 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 netlink_overrun(sk);
831 sock_put(sk);
832 kfree_skb(skb);
833 return -EAGAIN;
834 }
835
836 __set_current_state(TASK_INTERRUPTIBLE);
837 add_wait_queue(&nlk->wait, &wait);
838
839 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
840 test_bit(0, &nlk->state)) &&
841 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800842 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 __set_current_state(TASK_RUNNING);
845 remove_wait_queue(&nlk->wait, &wait);
846 sock_put(sk);
847
848 if (signal_pending(current)) {
849 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800850 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 return 1;
853 }
854 skb_set_owner_r(skb, sk);
855 return 0;
856}
857
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000858static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 int len = skb->len;
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 skb_queue_tail(&sk->sk_receive_queue, skb);
863 sk->sk_data_ready(sk, len);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000864 return len;
865}
866
867int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
868{
869 int len = __netlink_sendskb(sk, skb);
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 sock_put(sk);
872 return len;
873}
874
875void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
876{
877 kfree_skb(skb);
878 sock_put(sk);
879}
880
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000881static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 int delta;
884
885 skb_orphan(skb);
886
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700887 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (delta * 2 < skb->truesize)
889 return skb;
890
891 if (skb_shared(skb)) {
892 struct sk_buff *nskb = skb_clone(skb, allocation);
893 if (!nskb)
894 return skb;
Eric Dumazet8460c002012-04-19 02:24:28 +0000895 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 skb = nskb;
897 }
898
899 if (!pskb_expand_head(skb, 0, -delta, allocation))
900 skb->truesize -= delta;
901
902 return skb;
903}
904
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000905static void netlink_rcv_wake(struct sock *sk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700906{
907 struct netlink_sock *nlk = nlk_sk(sk);
908
909 if (skb_queue_empty(&sk->sk_receive_queue))
910 clear_bit(0, &nlk->state);
911 if (!test_bit(0, &nlk->state))
912 wake_up_interruptible(&nlk->wait);
913}
914
Eric W. Biederman3fbc2902012-05-24 17:21:27 -0600915static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb,
916 struct sock *ssk)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700917{
918 int ret;
919 struct netlink_sock *nlk = nlk_sk(sk);
920
921 ret = -ECONNREFUSED;
922 if (nlk->netlink_rcv != NULL) {
923 ret = skb->len;
924 skb_set_owner_r(skb, sk);
Eric W. Biederman3fbc2902012-05-24 17:21:27 -0600925 NETLINK_CB(skb).ssk = ssk;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700926 nlk->netlink_rcv(skb);
Eric Dumazetbfb253c2012-04-22 21:30:29 +0000927 consume_skb(skb);
928 } else {
929 kfree_skb(skb);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700930 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700931 sock_put(sk);
932 return ret;
933}
934
935int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
936 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 struct sock *sk;
939 int err;
940 long timeo;
941
942 skb = netlink_trim(skb, gfp_any());
943
944 timeo = sock_sndtimeo(ssk, nonblock);
945retry:
946 sk = netlink_getsockbypid(ssk, pid);
947 if (IS_ERR(sk)) {
948 kfree_skb(skb);
949 return PTR_ERR(sk);
950 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700951 if (netlink_is_kernel(sk))
Eric W. Biederman3fbc2902012-05-24 17:21:27 -0600952 return netlink_unicast_kernel(sk, skb, ssk);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700953
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700954 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700955 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700956 kfree_skb(skb);
957 sock_put(sk);
958 return err;
959 }
960
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700961 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (err == 1)
963 goto retry;
964 if (err)
965 return err;
966
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700967 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800969EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Patrick McHardy4277a082006-03-20 18:52:01 -0800971int netlink_has_listeners(struct sock *sk, unsigned int group)
972{
973 int res = 0;
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000974 struct listeners *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800975
Denis V. Lunevaed81562007-10-10 21:14:32 -0700976 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700977
978 rcu_read_lock();
979 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
980
Patrick McHardy4277a082006-03-20 18:52:01 -0800981 if (group - 1 < nl_table[sk->sk_protocol].groups)
Eric Dumazet5c398dc2010-10-24 04:27:10 +0000982 res = test_bit(group - 1, listeners->masks);
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700983
984 rcu_read_unlock();
985
Patrick McHardy4277a082006-03-20 18:52:01 -0800986 return res;
987}
988EXPORT_SYMBOL_GPL(netlink_has_listeners);
989
stephen hemmingerb57ef81f2011-12-22 08:52:02 +0000990static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 struct netlink_sock *nlk = nlk_sk(sk);
993
994 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
995 !test_bit(0, &nlk->state)) {
996 skb_set_owner_r(skb, sk);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +0000997 __netlink_sendskb(sk, skb);
stephen hemminger2c6458002011-12-22 08:52:03 +0000998 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000 return -1;
1001}
1002
1003struct netlink_broadcast_data {
1004 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001005 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 u32 pid;
1007 u32 group;
1008 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001009 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 int congested;
1011 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -04001012 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 struct sk_buff *skb, *skb2;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001014 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
1015 void *tx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016};
1017
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001018static int do_one_broadcast(struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 struct netlink_broadcast_data *p)
1020{
1021 struct netlink_sock *nlk = nlk_sk(sk);
1022 int val;
1023
1024 if (p->exclude_sk == sk)
1025 goto out;
1026
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001027 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1028 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 goto out;
1030
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001031 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001032 goto out;
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (p->failure) {
1035 netlink_overrun(sk);
1036 goto out;
1037 }
1038
1039 sock_hold(sk);
1040 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001041 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 p->skb2 = skb_clone(p->skb, p->allocation);
1043 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001044 p->skb2 = skb_get(p->skb);
1045 /*
1046 * skb ownership may have been set when
1047 * delivered to a previous socket.
1048 */
1049 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051 }
1052 if (p->skb2 == NULL) {
1053 netlink_overrun(sk);
1054 /* Clone failed. Notify ALL listeners. */
1055 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001056 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1057 p->delivery_failure = 1;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001058 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1059 kfree_skb(p->skb2);
1060 p->skb2 = NULL;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001061 } else if (sk_filter(sk, p->skb2)) {
1062 kfree_skb(p->skb2);
1063 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1065 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001066 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1067 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 } else {
1069 p->congested |= val;
1070 p->delivered = 1;
1071 p->skb2 = NULL;
1072 }
1073 sock_put(sk);
1074
1075out:
1076 return 0;
1077}
1078
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001079int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
1080 u32 group, gfp_t allocation,
1081 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1082 void *filter_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001084 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 struct netlink_broadcast_data info;
1086 struct hlist_node *node;
1087 struct sock *sk;
1088
1089 skb = netlink_trim(skb, allocation);
1090
1091 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001092 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 info.pid = pid;
1094 info.group = group;
1095 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001096 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 info.congested = 0;
1098 info.delivered = 0;
1099 info.allocation = allocation;
1100 info.skb = skb;
1101 info.skb2 = NULL;
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001102 info.tx_filter = filter;
1103 info.tx_data = filter_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 /* While we sleep in clone, do not allow to change socket list */
1106
1107 netlink_lock_table();
1108
1109 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1110 do_one_broadcast(sk, &info);
1111
Neil Horman70d4bf62010-07-20 06:45:56 +00001112 consume_skb(skb);
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 netlink_unlock_table();
1115
Neil Horman70d4bf62010-07-20 06:45:56 +00001116 if (info.delivery_failure) {
1117 kfree_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001118 return -ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001119 }
1120 consume_skb(info.skb2);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (info.delivered) {
1123 if (info.congested && (allocation & __GFP_WAIT))
1124 yield();
1125 return 0;
1126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return -ESRCH;
1128}
Eric W. Biederman910a7e92010-05-04 17:36:46 -07001129EXPORT_SYMBOL(netlink_broadcast_filtered);
1130
1131int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
1132 u32 group, gfp_t allocation)
1133{
1134 return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
1135 NULL, NULL);
1136}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001137EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139struct netlink_set_err_data {
1140 struct sock *exclude_sk;
1141 u32 pid;
1142 u32 group;
1143 int code;
1144};
1145
stephen hemmingerb57ef81f2011-12-22 08:52:02 +00001146static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 struct netlink_sock *nlk = nlk_sk(sk);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001149 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 if (sk == p->exclude_sk)
1152 goto out;
1153
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001154 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001155 goto out;
1156
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001157 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1158 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 goto out;
1160
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001161 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1162 ret = 1;
1163 goto out;
1164 }
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 sk->sk_err = p->code;
1167 sk->sk_error_report(sk);
1168out:
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001169 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001172/**
1173 * netlink_set_err - report error to broadcast listeners
1174 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1175 * @pid: the PID of a process that we want to skip (if any)
1176 * @groups: the broadcast group that will notice the error
1177 * @code: error code, must be negative (as usual in kernelspace)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001178 *
1179 * This function returns the number of broadcast listeners that have set the
1180 * NETLINK_RECV_NO_ENOBUFS socket option.
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001181 */
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001182int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 struct netlink_set_err_data info;
1185 struct hlist_node *node;
1186 struct sock *sk;
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001187 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 info.exclude_sk = ssk;
1190 info.pid = pid;
1191 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001192 /* sk->sk_err wants a positive error value */
1193 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 read_lock(&nl_table_lock);
1196
1197 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001198 ret += do_one_set_err(sk, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 read_unlock(&nl_table_lock);
Pablo Neira Ayuso1a503072010-03-18 14:24:42 +00001201 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001203EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Johannes Berg84659eb2007-07-18 15:47:05 -07001205/* must be called with netlink table grabbed */
1206static void netlink_update_socket_mc(struct netlink_sock *nlk,
1207 unsigned int group,
1208 int is_new)
1209{
1210 int old, new = !!is_new, subscriptions;
1211
1212 old = test_bit(group - 1, nlk->groups);
1213 subscriptions = nlk->subscriptions - old + new;
1214 if (new)
1215 __set_bit(group - 1, nlk->groups);
1216 else
1217 __clear_bit(group - 1, nlk->groups);
1218 netlink_update_subscriptions(&nlk->sk, subscriptions);
1219 netlink_update_listeners(&nlk->sk);
1220}
1221
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001222static int netlink_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001223 char __user *optval, unsigned int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001224{
1225 struct sock *sk = sock->sk;
1226 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001227 unsigned int val = 0;
1228 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001229
1230 if (level != SOL_NETLINK)
1231 return -ENOPROTOOPT;
1232
1233 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001234 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001235 return -EFAULT;
1236
1237 switch (optname) {
1238 case NETLINK_PKTINFO:
1239 if (val)
1240 nlk->flags |= NETLINK_RECV_PKTINFO;
1241 else
1242 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1243 err = 0;
1244 break;
1245 case NETLINK_ADD_MEMBERSHIP:
1246 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001247 if (!netlink_capable(sock, NL_NONROOT_RECV))
1248 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001249 err = netlink_realloc_groups(sk);
1250 if (err)
1251 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001252 if (!val || val - 1 >= nlk->ngroups)
1253 return -EINVAL;
1254 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001255 netlink_update_socket_mc(nlk, val,
1256 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001257 netlink_table_ungrab();
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001258
1259 if (nlk->netlink_bind)
1260 nlk->netlink_bind(val);
1261
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001262 err = 0;
1263 break;
1264 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001265 case NETLINK_BROADCAST_ERROR:
1266 if (val)
1267 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1268 else
1269 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1270 err = 0;
1271 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001272 case NETLINK_NO_ENOBUFS:
1273 if (val) {
1274 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1275 clear_bit(0, &nlk->state);
1276 wake_up_interruptible(&nlk->wait);
Eric Dumazet658cb352012-04-22 21:30:21 +00001277 } else {
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001278 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
Eric Dumazet658cb352012-04-22 21:30:21 +00001279 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001280 err = 0;
1281 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001282 default:
1283 err = -ENOPROTOOPT;
1284 }
1285 return err;
1286}
1287
1288static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001289 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001290{
1291 struct sock *sk = sock->sk;
1292 struct netlink_sock *nlk = nlk_sk(sk);
1293 int len, val, err;
1294
1295 if (level != SOL_NETLINK)
1296 return -ENOPROTOOPT;
1297
1298 if (get_user(len, optlen))
1299 return -EFAULT;
1300 if (len < 0)
1301 return -EINVAL;
1302
1303 switch (optname) {
1304 case NETLINK_PKTINFO:
1305 if (len < sizeof(int))
1306 return -EINVAL;
1307 len = sizeof(int);
1308 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001309 if (put_user(len, optlen) ||
1310 put_user(val, optval))
1311 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001312 err = 0;
1313 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001314 case NETLINK_BROADCAST_ERROR:
1315 if (len < sizeof(int))
1316 return -EINVAL;
1317 len = sizeof(int);
1318 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1319 if (put_user(len, optlen) ||
1320 put_user(val, optval))
1321 return -EFAULT;
1322 err = 0;
1323 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001324 case NETLINK_NO_ENOBUFS:
1325 if (len < sizeof(int))
1326 return -EINVAL;
1327 len = sizeof(int);
1328 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1329 if (put_user(len, optlen) ||
1330 put_user(val, optval))
1331 return -EFAULT;
1332 err = 0;
1333 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001334 default:
1335 err = -ENOPROTOOPT;
1336 }
1337 return err;
1338}
1339
1340static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1341{
1342 struct nl_pktinfo info;
1343
1344 info.group = NETLINK_CB(skb).dst_group;
1345 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1346}
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1349 struct msghdr *msg, size_t len)
1350{
1351 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1352 struct sock *sk = sock->sk;
1353 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001354 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001356 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 struct sk_buff *skb;
1358 int err;
1359 struct scm_cookie scm;
1360
1361 if (msg->msg_flags&MSG_OOB)
1362 return -EOPNOTSUPP;
1363
Eric Dumazet16e57262011-09-19 05:52:27 +00001364 if (NULL == siocb->scm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 siocb->scm = &scm;
Eric Dumazet16e57262011-09-19 05:52:27 +00001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 err = scm_send(sock, msg, siocb->scm);
1368 if (err < 0)
1369 return err;
1370
1371 if (msg->msg_namelen) {
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001372 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (addr->nl_family != AF_NETLINK)
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001376 dst_group = ffs(addr->nl_groups);
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001377 err = -EPERM;
Patrick McHardyd629b832005-08-14 19:27:50 -07001378 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001379 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 } else {
1381 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001382 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384
1385 if (!nlk->pid) {
1386 err = netlink_autobind(sock);
1387 if (err)
1388 goto out;
1389 }
1390
1391 err = -EMSGSIZE;
1392 if (len > sk->sk_sndbuf - 32)
1393 goto out;
1394 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001395 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001396 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 goto out;
1398
1399 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001400 NETLINK_CB(skb).dst_group = dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001404 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 kfree_skb(skb);
1406 goto out;
1407 }
1408
1409 err = security_netlink_send(sk, skb);
1410 if (err) {
1411 kfree_skb(skb);
1412 goto out;
1413 }
1414
Patrick McHardyd629b832005-08-14 19:27:50 -07001415 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001417 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1420
1421out:
Eric W. Biedermanb47030c2010-06-13 03:31:06 +00001422 scm_destroy(siocb->scm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return err;
1424}
1425
1426static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1427 struct msghdr *msg, size_t len,
1428 int flags)
1429{
1430 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1431 struct scm_cookie scm;
1432 struct sock *sk = sock->sk;
1433 struct netlink_sock *nlk = nlk_sk(sk);
1434 int noblock = flags&MSG_DONTWAIT;
1435 size_t copied;
Johannes Berg68d6ac62010-08-15 21:20:44 +00001436 struct sk_buff *skb, *data_skb;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001437 int err, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 if (flags&MSG_OOB)
1440 return -EOPNOTSUPP;
1441
1442 copied = 0;
1443
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001444 skb = skb_recv_datagram(sk, flags, noblock, &err);
1445 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 goto out;
1447
Johannes Berg68d6ac62010-08-15 21:20:44 +00001448 data_skb = skb;
1449
Johannes Berg1dacc762009-07-01 11:26:02 +00001450#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1451 if (unlikely(skb_shinfo(skb)->frag_list)) {
Johannes Berg1dacc762009-07-01 11:26:02 +00001452 /*
Johannes Berg68d6ac62010-08-15 21:20:44 +00001453 * If this skb has a frag_list, then here that means that we
1454 * will have to use the frag_list skb's data for compat tasks
1455 * and the regular skb's data for normal (non-compat) tasks.
Johannes Berg1dacc762009-07-01 11:26:02 +00001456 *
Johannes Berg68d6ac62010-08-15 21:20:44 +00001457 * If we need to send the compat skb, assign it to the
1458 * 'data_skb' variable so that it will be used below for data
1459 * copying. We keep 'skb' for everything else, including
1460 * freeing both later.
Johannes Berg1dacc762009-07-01 11:26:02 +00001461 */
Johannes Berg68d6ac62010-08-15 21:20:44 +00001462 if (flags & MSG_CMSG_COMPAT)
1463 data_skb = skb_shinfo(skb)->frag_list;
Johannes Berg1dacc762009-07-01 11:26:02 +00001464 }
1465#endif
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 msg->msg_namelen = 0;
1468
Johannes Berg68d6ac62010-08-15 21:20:44 +00001469 copied = data_skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (len < copied) {
1471 msg->msg_flags |= MSG_TRUNC;
1472 copied = len;
1473 }
1474
Johannes Berg68d6ac62010-08-15 21:20:44 +00001475 skb_reset_transport_header(data_skb);
1476 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001479 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 addr->nl_family = AF_NETLINK;
1481 addr->nl_pad = 0;
1482 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001483 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 msg->msg_namelen = sizeof(*addr);
1485 }
1486
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001487 if (nlk->flags & NETLINK_RECV_PKTINFO)
1488 netlink_cmsg_recv_pktinfo(msg, skb);
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (NULL == siocb->scm) {
1491 memset(&scm, 0, sizeof(scm));
1492 siocb->scm = &scm;
1493 }
1494 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001495 if (flags & MSG_TRUNC)
Johannes Berg68d6ac62010-08-15 21:20:44 +00001496 copied = data_skb->len;
David S. Millerdaa37662010-08-15 23:21:50 -07001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 skb_free_datagram(sk, skb);
1499
Andrey Vaginb44d2112011-02-21 02:40:47 +00001500 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1501 ret = netlink_dump(sk);
1502 if (ret) {
1503 sk->sk_err = ret;
1504 sk->sk_error_report(sk);
1505 }
1506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509out:
1510 netlink_rcv_wake(sk);
1511 return err ? : copied;
1512}
1513
1514static void netlink_data_ready(struct sock *sk, int len)
1515{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001516 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
1519/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001520 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 * complete set of kernel non-blocking support for message
1522 * queueing.
1523 */
1524
1525struct sock *
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001526netlink_kernel_create(struct net *net, int unit,
1527 struct module *module,
1528 struct netlink_kernel_cfg *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 struct socket *sock;
1531 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001532 struct netlink_sock *nlk;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001533 struct listeners *listeners = NULL;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001534 struct mutex *cb_mutex = cfg ? cfg->cb_mutex : NULL;
1535 unsigned int groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001537 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001539 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return NULL;
1541
1542 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1543 return NULL;
1544
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001545 /*
1546 * We have to just have a reference on the net from sk, but don't
1547 * get_net it. Besides, we cannot get and then put the net here.
1548 * So we create one inside init_net and the move it to net.
1549 */
1550
1551 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1552 goto out_sock_release_nosk;
1553
1554 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001555 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001556
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001557 if (!cfg || cfg->groups < 32)
Patrick McHardy4277a082006-03-20 18:52:01 -08001558 groups = 32;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001559 else
1560 groups = cfg->groups;
Patrick McHardy4277a082006-03-20 18:52:01 -08001561
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001562 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001563 if (!listeners)
1564 goto out_sock_release;
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 sk->sk_data_ready = netlink_data_ready;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00001567 if (cfg && cfg->input)
1568 nlk_sk(sk)->netlink_rcv = cfg->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001570 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001571 goto out_sock_release;
1572
1573 nlk = nlk_sk(sk);
1574 nlk->flags |= NETLINK_KERNEL_SOCKET;
1575
1576 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001577 if (!nl_table[unit].registered) {
1578 nl_table[unit].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001579 rcu_assign_pointer(nl_table[unit].listeners, listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001580 nl_table[unit].cb_mutex = cb_mutex;
1581 nl_table[unit].module = module;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +00001582 nl_table[unit].bind = cfg ? cfg->bind : NULL;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001583 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001584 } else {
1585 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001586 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001587 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001588 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001589 return sk;
1590
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001591out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001592 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001593 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001594 return NULL;
1595
1596out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001597 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001598 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001600EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001602
1603void
1604netlink_kernel_release(struct sock *sk)
1605{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001606 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001607}
1608EXPORT_SYMBOL(netlink_kernel_release);
1609
Johannes Bergd136f1b2009-09-12 03:03:15 +00001610int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001611{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001612 struct listeners *new, *old;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001613 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001614
1615 if (groups < 32)
1616 groups = 32;
1617
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001618 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001619 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
1620 if (!new)
Johannes Bergd136f1b2009-09-12 03:03:15 +00001621 return -ENOMEM;
Eric Dumazet33d480c2011-08-11 19:30:52 +00001622 old = rcu_dereference_protected(tbl->listeners, 1);
Eric Dumazet5c398dc2010-10-24 04:27:10 +00001623 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
1624 rcu_assign_pointer(tbl->listeners, new);
1625
Lai Jiangshan37b6b932011-03-15 18:01:42 +08001626 kfree_rcu(old, rcu);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001627 }
1628 tbl->groups = groups;
1629
Johannes Bergd136f1b2009-09-12 03:03:15 +00001630 return 0;
1631}
1632
1633/**
1634 * netlink_change_ngroups - change number of multicast groups
1635 *
1636 * This changes the number of multicast groups that are available
1637 * on a certain netlink family. Note that it is not possible to
1638 * change the number of groups to below 32. Also note that it does
1639 * not implicitly call netlink_clear_multicast_users() when the
1640 * number of groups is reduced.
1641 *
1642 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1643 * @groups: The new number of groups.
1644 */
1645int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1646{
1647 int err;
1648
1649 netlink_table_grab();
1650 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001651 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00001652
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001653 return err;
1654}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001655
Johannes Bergb8273572009-09-24 15:44:05 -07001656void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1657{
1658 struct sock *sk;
1659 struct hlist_node *node;
1660 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1661
1662 sk_for_each_bound(sk, node, &tbl->mc_list)
1663 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1664}
1665
Johannes Berg84659eb2007-07-18 15:47:05 -07001666/**
1667 * netlink_clear_multicast_users - kick off multicast listeners
1668 *
1669 * This function removes all listeners from the given group.
1670 * @ksk: The kernel netlink socket, as returned by
1671 * netlink_kernel_create().
1672 * @group: The multicast group to clear.
1673 */
1674void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1675{
Johannes Berg84659eb2007-07-18 15:47:05 -07001676 netlink_table_grab();
Johannes Bergb8273572009-09-24 15:44:05 -07001677 __netlink_clear_multicast_users(ksk, group);
Johannes Berg84659eb2007-07-18 15:47:05 -07001678 netlink_table_ungrab();
1679}
Johannes Berg84659eb2007-07-18 15:47:05 -07001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001682{
1683 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001685}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001686EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Denys Vlasenkoa46621a2012-01-30 15:22:06 -05001688struct nlmsghdr *
1689__nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
1690{
1691 struct nlmsghdr *nlh;
1692 int size = NLMSG_LENGTH(len);
1693
1694 nlh = (struct nlmsghdr*)skb_put(skb, NLMSG_ALIGN(size));
1695 nlh->nlmsg_type = type;
1696 nlh->nlmsg_len = size;
1697 nlh->nlmsg_flags = flags;
1698 nlh->nlmsg_pid = pid;
1699 nlh->nlmsg_seq = seq;
1700 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0)
1701 memset(NLMSG_DATA(nlh) + len, 0, NLMSG_ALIGN(size) - size);
1702 return nlh;
1703}
1704EXPORT_SYMBOL(__nlmsg_put);
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706/*
1707 * It looks a bit ugly.
1708 * It would be better to create kernel thread.
1709 */
1710
1711static int netlink_dump(struct sock *sk)
1712{
1713 struct netlink_sock *nlk = nlk_sk(sk);
1714 struct netlink_callback *cb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001715 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001717 int len, err = -ENOBUFS;
Greg Rosec7ac8672011-06-10 01:27:09 +00001718 int alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001720 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 cb = nlk->cb;
1723 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001724 err = -EINVAL;
1725 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727
Greg Rosec7ac8672011-06-10 01:27:09 +00001728 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
1729
1730 skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL);
1731 if (!skb)
Dan Carpenterc63d6ea2011-06-15 03:11:42 +00001732 goto errout_skb;
Greg Rosec7ac8672011-06-10 01:27:09 +00001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 len = cb->dump(skb, cb);
1735
1736 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001737 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001738
1739 if (sk_filter(sk, skb))
1740 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001741 else
1742 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return 0;
1744 }
1745
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001746 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1747 if (!nlh)
1748 goto errout_skb;
1749
Johannes Berg670dc282011-06-20 13:40:46 +02001750 nl_dump_check_consistent(cb, nlh);
1751
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001752 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1753
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001754 if (sk_filter(sk, skb))
1755 kfree_skb(skb);
Eric Dumazet4a7e7c22012-04-05 22:17:46 +00001756 else
1757 __netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Thomas Grafa8f74b22005-11-10 02:25:52 +01001759 if (cb->done)
1760 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001762 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Eric Dumazetbfb253c2012-04-22 21:30:29 +00001764 netlink_consume_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001766
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001767errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001768 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001769 kfree_skb(skb);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001770 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
1773int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
Patrick McHardy3a6c2b42009-08-25 16:07:40 +02001774 const struct nlmsghdr *nlh,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001775 struct netlink_dump_control *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
1777 struct netlink_callback *cb;
1778 struct sock *sk;
1779 struct netlink_sock *nlk;
Andrey Vaginb44d2112011-02-21 02:40:47 +00001780 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001782 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if (cb == NULL)
1784 return -ENOBUFS;
1785
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001786 cb->dump = control->dump;
1787 cb->done = control->done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 cb->nlh = nlh;
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +00001789 cb->data = control->data;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001790 cb->min_dump_alloc = control->min_dump_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 atomic_inc(&skb->users);
1792 cb->skb = skb;
1793
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001794 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (sk == NULL) {
1796 netlink_destroy_callback(cb);
1797 return -ECONNREFUSED;
1798 }
1799 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001800 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001801 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001802 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001803 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 netlink_destroy_callback(cb);
1805 sock_put(sk);
1806 return -EBUSY;
1807 }
1808 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001809 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Andrey Vaginb44d2112011-02-21 02:40:47 +00001811 ret = netlink_dump(sk);
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001814
Andrey Vaginb44d2112011-02-21 02:40:47 +00001815 if (ret)
1816 return ret;
1817
Denis V. Lunev5c582982007-10-23 20:29:25 -07001818 /* We successfully started a dump, by returning -EINTR we
1819 * signal not to send ACK even if it was requested.
1820 */
1821 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001823EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1826{
1827 struct sk_buff *skb;
1828 struct nlmsghdr *rep;
1829 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001830 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Thomas Graf339bf982006-11-10 14:10:15 -08001832 /* error messages get the original request appened */
1833 if (err)
1834 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Thomas Graf339bf982006-11-10 14:10:15 -08001836 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (!skb) {
1838 struct sock *sk;
1839
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001840 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001841 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 NETLINK_CB(in_skb).pid);
1843 if (sk) {
1844 sk->sk_err = ENOBUFS;
1845 sk->sk_error_report(sk);
1846 sock_put(sk);
1847 }
1848 return;
1849 }
1850
1851 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
John Fastabend5dba93a2009-09-25 13:11:44 +00001852 NLMSG_ERROR, payload, 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001853 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001855 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1857}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001858EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001860int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001861 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001862{
Thomas Graf82ace472005-11-10 02:25:53 +01001863 struct nlmsghdr *nlh;
1864 int err;
1865
1866 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001867 int msglen;
1868
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001869 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001870 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001871
Martin Murrayad8e4b72006-01-10 13:02:29 -08001872 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001873 return 0;
1874
Thomas Grafd35b6852007-03-22 23:28:46 -07001875 /* Only requests are handled by the kernel */
1876 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001877 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001878
Thomas Graf45e7ae72007-03-22 23:29:10 -07001879 /* Skip control messages */
1880 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001881 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001882
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001883 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001884 if (err == -EINTR)
1885 goto skip;
1886
1887ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001888 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001889 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001890
Denis V. Lunev5c582982007-10-23 20:29:25 -07001891skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001892 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001893 if (msglen > skb->len)
1894 msglen = skb->len;
1895 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001896 }
1897
1898 return 0;
1899}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001900EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001901
1902/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001903 * nlmsg_notify - send a notification netlink message
1904 * @sk: netlink socket to use
1905 * @skb: notification message
1906 * @pid: destination netlink pid for reports or 0
1907 * @group: destination multicast group or 0
1908 * @report: 1 to report back, 0 to disable
1909 * @flags: allocation flags
1910 */
1911int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1912 unsigned int group, int report, gfp_t flags)
1913{
1914 int err = 0;
1915
1916 if (group) {
1917 int exclude_pid = 0;
1918
1919 if (report) {
1920 atomic_inc(&skb->users);
1921 exclude_pid = pid;
1922 }
1923
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001924 /* errors reported via destination sk->sk_err, but propagate
1925 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1926 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001927 }
1928
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001929 if (report) {
1930 int err2;
1931
1932 err2 = nlmsg_unicast(sk, skb, pid);
1933 if (!err || err == -ESRCH)
1934 err = err2;
1935 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07001936
1937 return err;
1938}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001939EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941#ifdef CONFIG_PROC_FS
1942struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001943 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 int link;
1945 int hash_idx;
1946};
1947
1948static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1949{
1950 struct nl_seq_iter *iter = seq->private;
1951 int i, j;
1952 struct sock *s;
1953 struct hlist_node *node;
1954 loff_t off = 0;
1955
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001956 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 struct nl_pid_hash *hash = &nl_table[i].hash;
1958
1959 for (j = 0; j <= hash->mask; j++) {
1960 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001961 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001962 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (off == pos) {
1964 iter->link = i;
1965 iter->hash_idx = j;
1966 return s;
1967 }
1968 ++off;
1969 }
1970 }
1971 }
1972 return NULL;
1973}
1974
1975static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001976 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 read_lock(&nl_table_lock);
1979 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1980}
1981
1982static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1983{
1984 struct sock *s;
1985 struct nl_seq_iter *iter;
1986 int i, j;
1987
1988 ++*pos;
1989
1990 if (v == SEQ_START_TOKEN)
1991 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001992
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001993 iter = seq->private;
1994 s = v;
1995 do {
1996 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001997 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (s)
1999 return s;
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 i = iter->link;
2002 j = iter->hash_idx + 1;
2003
2004 do {
2005 struct nl_pid_hash *hash = &nl_table[i].hash;
2006
2007 for (; j <= hash->mask; j++) {
2008 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09002009 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002010 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if (s) {
2012 iter->link = i;
2013 iter->hash_idx = j;
2014 return s;
2015 }
2016 }
2017
2018 j = 0;
2019 } while (++i < MAX_LINKS);
2020
2021 return NULL;
2022}
2023
2024static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08002025 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
2027 read_unlock(&nl_table_lock);
2028}
2029
2030
2031static int netlink_seq_show(struct seq_file *seq, void *v)
2032{
Eric Dumazet658cb352012-04-22 21:30:21 +00002033 if (v == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 seq_puts(seq,
2035 "sk Eth Pid Groups "
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002036 "Rmem Wmem Dump Locks Drops Inode\n");
Eric Dumazet658cb352012-04-22 21:30:21 +00002037 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 struct sock *s = v;
2039 struct netlink_sock *nlk = nlk_sk(s);
2040
Dan Rosenberg71338aa2011-05-23 12:17:35 +00002041 seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 s,
2043 s->sk_protocol,
2044 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07002045 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07002046 sk_rmem_alloc_get(s),
2047 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07002049 atomic_read(&s->sk_refcnt),
Masatake YAMATOcf0aa4e2010-02-27 19:45:37 +00002050 atomic_read(&s->sk_drops),
2051 sock_i_ino(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 );
2053
2054 }
2055 return 0;
2056}
2057
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002058static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 .start = netlink_seq_start,
2060 .next = netlink_seq_next,
2061 .stop = netlink_seq_stop,
2062 .show = netlink_seq_show,
2063};
2064
2065
2066static int netlink_seq_open(struct inode *inode, struct file *file)
2067{
Denis V. Luneve372c412007-11-19 22:31:54 -08002068 return seq_open_net(inode, file, &netlink_seq_ops,
2069 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002070}
2071
Arjan van de Venda7071d2007-02-12 00:55:36 -08002072static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 .owner = THIS_MODULE,
2074 .open = netlink_seq_open,
2075 .read = seq_read,
2076 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002077 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078};
2079
2080#endif
2081
2082int netlink_register_notifier(struct notifier_block *nb)
2083{
Alan Sterne041c682006-03-27 01:16:30 -08002084 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002086EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088int netlink_unregister_notifier(struct notifier_block *nb)
2089{
Alan Sterne041c682006-03-27 01:16:30 -08002090 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002092EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002093
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002094static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 .family = PF_NETLINK,
2096 .owner = THIS_MODULE,
2097 .release = netlink_release,
2098 .bind = netlink_bind,
2099 .connect = netlink_connect,
2100 .socketpair = sock_no_socketpair,
2101 .accept = sock_no_accept,
2102 .getname = netlink_getname,
2103 .poll = datagram_poll,
2104 .ioctl = sock_no_ioctl,
2105 .listen = sock_no_listen,
2106 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002107 .setsockopt = netlink_setsockopt,
2108 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 .sendmsg = netlink_sendmsg,
2110 .recvmsg = netlink_recvmsg,
2111 .mmap = sock_no_mmap,
2112 .sendpage = sock_no_sendpage,
2113};
2114
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002115static const struct net_proto_family netlink_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 .family = PF_NETLINK,
2117 .create = netlink_create,
2118 .owner = THIS_MODULE, /* for consistency 8) */
2119};
2120
Pavel Emelyanov46650792007-10-08 20:38:39 -07002121static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002122{
2123#ifdef CONFIG_PROC_FS
2124 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2125 return -ENOMEM;
2126#endif
2127 return 0;
2128}
2129
Pavel Emelyanov46650792007-10-08 20:38:39 -07002130static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002131{
2132#ifdef CONFIG_PROC_FS
2133 proc_net_remove(net, "netlink");
2134#endif
2135}
2136
David S. Millerb963ea82010-08-30 19:08:01 -07002137static void __init netlink_add_usersock_entry(void)
2138{
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002139 struct listeners *listeners;
David S. Millerb963ea82010-08-30 19:08:01 -07002140 int groups = 32;
2141
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002142 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
David S. Millerb963ea82010-08-30 19:08:01 -07002143 if (!listeners)
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002144 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
David S. Millerb963ea82010-08-30 19:08:01 -07002145
2146 netlink_table_grab();
2147
2148 nl_table[NETLINK_USERSOCK].groups = groups;
Eric Dumazet5c398dc2010-10-24 04:27:10 +00002149 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
David S. Millerb963ea82010-08-30 19:08:01 -07002150 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2151 nl_table[NETLINK_USERSOCK].registered = 1;
2152
2153 netlink_table_ungrab();
2154}
2155
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002156static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002157 .init = netlink_net_init,
2158 .exit = netlink_net_exit,
2159};
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161static int __init netlink_proto_init(void)
2162{
2163 struct sk_buff *dummy_skb;
2164 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002165 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 unsigned int order;
2167 int err = proto_register(&netlink_proto, 0);
2168
2169 if (err != 0)
2170 goto out;
2171
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07002172 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002174 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002175 if (!nl_table)
2176 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Jan Beulich44813742009-09-21 17:03:05 -07002178 if (totalram_pages >= (128 * 1024))
2179 limit = totalram_pages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 else
Jan Beulich44813742009-09-21 17:03:05 -07002181 limit = totalram_pages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002183 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2184 limit = (1UL << order) / sizeof(struct hlist_head);
2185 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 for (i = 0; i < MAX_LINKS; i++) {
2188 struct nl_pid_hash *hash = &nl_table[i].hash;
2189
Eric Dumazetea729122007-12-11 02:09:47 -08002190 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (!hash->table) {
2192 while (i-- > 0)
2193 nl_pid_hash_free(nl_table[i].hash.table,
2194 1 * sizeof(*hash->table));
2195 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002196 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 hash->max_shift = order;
2199 hash->shift = 0;
2200 hash->mask = 0;
2201 hash->rehash_time = jiffies;
2202 }
2203
David S. Millerb963ea82010-08-30 19:08:01 -07002204 netlink_add_usersock_entry();
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002207 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002208 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 rtnetlink_init();
2210out:
2211 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002212panic:
2213 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214}
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216core_initcall(netlink_proto_init);