blob: c5aab6a368ce250badd33ab0d30e858292f91521 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NETLINK Kernel-user communication protocol.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +090011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
13 * added netlink_proto_exit
14 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
15 * use nlk_sk, as sk->protinfo is on a diet 8)
Harald Welte4fdb3bb2005-08-09 19:40:55 -070016 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
17 * - inc module use count of module that owns
18 * the kernel socket in case userspace opens
19 * socket of same protocol
20 * - remove all module support, since netlink is
21 * mandatory if CONFIG_NET=y these days
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25
Randy Dunlap4fc268d2006-01-11 12:17:47 -080026#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/signal.h>
30#include <linux/sched.h>
31#include <linux/errno.h>
32#include <linux/string.h>
33#include <linux/stat.h>
34#include <linux/socket.h>
35#include <linux/un.h>
36#include <linux/fcntl.h>
37#include <linux/termios.h>
38#include <linux/sockios.h>
39#include <linux/net.h>
40#include <linux/fs.h>
41#include <linux/slab.h>
42#include <asm/uaccess.h>
43#include <linux/skbuff.h>
44#include <linux/netdevice.h>
45#include <linux/rtnetlink.h>
46#include <linux/proc_fs.h>
47#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/notifier.h>
49#include <linux/security.h>
50#include <linux/jhash.h>
51#include <linux/jiffies.h>
52#include <linux/random.h>
53#include <linux/bitops.h>
54#include <linux/mm.h>
55#include <linux/types.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010056#include <linux/audit.h>
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070057#include <linux/mutex.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010058
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020059#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <net/sock.h>
61#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010062#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070064#define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
Johannes Bergb4ff4f02007-07-18 15:46:06 -070065#define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67struct netlink_sock {
68 /* struct sock has to be the first member of netlink_sock */
69 struct sock sk;
70 u32 pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -070072 u32 dst_group;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070073 u32 flags;
74 u32 subscriptions;
75 u32 ngroups;
76 unsigned long *groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long state;
78 wait_queue_head_t wait;
79 struct netlink_callback *cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070080 struct mutex *cb_mutex;
81 struct mutex cb_def_mutex;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -070082 void (*netlink_rcv)(struct sk_buff *skb);
Patrick McHardy77247bb2005-08-14 19:27:13 -070083 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Johannes Berg6c04bb12009-07-10 09:51:32 +000086struct listeners_rcu_head {
87 struct rcu_head rcu_head;
88 void *ptr;
89};
90
Patrick McHardy77247bb2005-08-14 19:27:13 -070091#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070092#define NETLINK_RECV_PKTINFO 0x2
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +000093#define NETLINK_BROADCAST_SEND_ERROR 0x4
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -070094#define NETLINK_RECV_NO_ENOBUFS 0x8
Patrick McHardy77247bb2005-08-14 19:27:13 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static inline struct netlink_sock *nlk_sk(struct sock *sk)
97{
Denis Cheng32b21e02007-08-28 15:41:11 -070098 return container_of(sk, struct netlink_sock, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Denis V. Lunevaed81562007-10-10 21:14:32 -0700101static inline int netlink_is_kernel(struct sock *sk)
102{
103 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106struct nl_pid_hash {
107 struct hlist_head *table;
108 unsigned long rehash_time;
109
110 unsigned int mask;
111 unsigned int shift;
112
113 unsigned int entries;
114 unsigned int max_shift;
115
116 u32 rnd;
117};
118
119struct netlink_table {
120 struct nl_pid_hash hash;
121 struct hlist_head mc_list;
Patrick McHardy4277a082006-03-20 18:52:01 -0800122 unsigned long *listeners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned int nl_nonroot;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700124 unsigned int groups;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700125 struct mutex *cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700126 struct module *module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700127 int registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
130static struct netlink_table *nl_table;
131
132static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
133
134static int netlink_dump(struct sock *sk);
135static void netlink_destroy_callback(struct netlink_callback *cb);
136
137static DEFINE_RWLOCK(nl_table_lock);
138static atomic_t nl_table_users = ATOMIC_INIT(0);
139
Alan Sterne041c682006-03-27 01:16:30 -0800140static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Patrick McHardyd629b832005-08-14 19:27:50 -0700142static u32 netlink_group_mask(u32 group)
143{
144 return group ? 1 << (group - 1) : 0;
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
148{
149 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
150}
151
152static void netlink_sock_destruct(struct sock *sk)
153{
Herbert Xu3f660d62007-05-03 03:17:14 -0700154 struct netlink_sock *nlk = nlk_sk(sk);
155
Herbert Xu3f660d62007-05-03 03:17:14 -0700156 if (nlk->cb) {
157 if (nlk->cb->done)
158 nlk->cb->done(nlk->cb);
159 netlink_destroy_callback(nlk->cb);
160 }
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 skb_queue_purge(&sk->sk_receive_queue);
163
164 if (!sock_flag(sk, SOCK_DEAD)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800165 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return;
167 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700168
169 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
170 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
171 WARN_ON(nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800174/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
175 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
177 * this, _but_ remember, it adds useless work on UP machines.
178 */
179
Johannes Bergd136f1b2009-09-12 03:03:15 +0000180void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800181 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Johannes Bergd136f1b2009-09-12 03:03:15 +0000183 might_sleep();
184
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700185 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 if (atomic_read(&nl_table_users)) {
188 DECLARE_WAITQUEUE(wait, current);
189
190 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800191 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 set_current_state(TASK_UNINTERRUPTIBLE);
193 if (atomic_read(&nl_table_users) == 0)
194 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700195 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700197 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199
200 __set_current_state(TASK_RUNNING);
201 remove_wait_queue(&nl_table_wait, &wait);
202 }
203}
204
Johannes Bergd136f1b2009-09-12 03:03:15 +0000205void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800206 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700208 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 wake_up(&nl_table_wait);
210}
211
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800212static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213netlink_lock_table(void)
214{
215 /* read_lock() synchronizes us to netlink_table_grab */
216
217 read_lock(&nl_table_lock);
218 atomic_inc(&nl_table_users);
219 read_unlock(&nl_table_lock);
220}
221
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800222static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223netlink_unlock_table(void)
224{
225 if (atomic_dec_and_test(&nl_table_users))
226 wake_up(&nl_table_wait);
227}
228
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800229static inline struct sock *netlink_lookup(struct net *net, int protocol,
230 u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct nl_pid_hash *hash = &nl_table[protocol].hash;
233 struct hlist_head *head;
234 struct sock *sk;
235 struct hlist_node *node;
236
237 read_lock(&nl_table_lock);
238 head = nl_pid_hashfn(hash, pid);
239 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900240 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 sock_hold(sk);
242 goto found;
243 }
244 }
245 sk = NULL;
246found:
247 read_unlock(&nl_table_lock);
248 return sk;
249}
250
Eric Dumazetea729122007-12-11 02:09:47 -0800251static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800254 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 else
256 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800257 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
258 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
262{
263 if (size <= PAGE_SIZE)
264 kfree(table);
265 else
266 free_pages((unsigned long)table, get_order(size));
267}
268
269static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
270{
271 unsigned int omask, mask, shift;
272 size_t osize, size;
273 struct hlist_head *otable, *table;
274 int i;
275
276 omask = mask = hash->mask;
277 osize = size = (mask + 1) * sizeof(*table);
278 shift = hash->shift;
279
280 if (grow) {
281 if (++shift > hash->max_shift)
282 return 0;
283 mask = mask * 2 + 1;
284 size *= 2;
285 }
286
Eric Dumazetea729122007-12-11 02:09:47 -0800287 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!table)
289 return 0;
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 otable = hash->table;
292 hash->table = table;
293 hash->mask = mask;
294 hash->shift = shift;
295 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
296
297 for (i = 0; i <= omask; i++) {
298 struct sock *sk;
299 struct hlist_node *node, *tmp;
300
301 sk_for_each_safe(sk, node, tmp, &otable[i])
302 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
303 }
304
305 nl_pid_hash_free(otable, osize);
306 hash->rehash_time = jiffies + 10 * 60 * HZ;
307 return 1;
308}
309
310static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
311{
312 int avg = hash->entries >> hash->shift;
313
314 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
315 return 1;
316
317 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
318 nl_pid_hash_rehash(hash, 0);
319 return 1;
320 }
321
322 return 0;
323}
324
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800325static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Patrick McHardy4277a082006-03-20 18:52:01 -0800327static void
328netlink_update_listeners(struct sock *sk)
329{
330 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
331 struct hlist_node *node;
332 unsigned long mask;
333 unsigned int i;
334
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700335 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800336 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700337 sk_for_each_bound(sk, node, &tbl->mc_list) {
338 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
339 mask |= nlk_sk(sk)->groups[i];
340 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800341 tbl->listeners[i] = mask;
342 }
343 /* this function is only called with the netlink table "grabbed", which
344 * makes sure updates are visible before bind or setsockopt return. */
345}
346
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200347static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
350 struct hlist_head *head;
351 int err = -EADDRINUSE;
352 struct sock *osk;
353 struct hlist_node *node;
354 int len;
355
356 netlink_table_grab();
357 head = nl_pid_hashfn(hash, pid);
358 len = 0;
359 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900360 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
362 len++;
363 }
364 if (node)
365 goto err;
366
367 err = -EBUSY;
368 if (nlk_sk(sk)->pid)
369 goto err;
370
371 err = -ENOMEM;
372 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
373 goto err;
374
375 if (len && nl_pid_hash_dilute(hash, len))
376 head = nl_pid_hashfn(hash, pid);
377 hash->entries++;
378 nlk_sk(sk)->pid = pid;
379 sk_add_node(sk, head);
380 err = 0;
381
382err:
383 netlink_table_ungrab();
384 return err;
385}
386
387static void netlink_remove(struct sock *sk)
388{
389 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700390 if (sk_del_node_init(sk))
391 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700392 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 __sk_del_bind_node(sk);
394 netlink_table_ungrab();
395}
396
397static struct proto netlink_proto = {
398 .name = "NETLINK",
399 .owner = THIS_MODULE,
400 .obj_size = sizeof(struct netlink_sock),
401};
402
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700403static int __netlink_create(struct net *net, struct socket *sock,
404 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 struct sock *sk;
407 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700408
409 sock->ops = &netlink_ops;
410
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700411 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700412 if (!sk)
413 return -ENOMEM;
414
415 sock_init_data(sock, sk);
416
417 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700418 if (cb_mutex)
419 nlk->cb_mutex = cb_mutex;
420 else {
421 nlk->cb_mutex = &nlk->cb_def_mutex;
422 mutex_init(nlk->cb_mutex);
423 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700424 init_waitqueue_head(&nlk->wait);
425
426 sk->sk_destruct = netlink_sock_destruct;
427 sk->sk_protocol = protocol;
428 return 0;
429}
430
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700431static int netlink_create(struct net *net, struct socket *sock, int protocol)
Patrick McHardyab33a172005-08-14 19:31:36 -0700432{
433 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700434 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700435 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700436 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 sock->state = SS_UNCONNECTED;
439
440 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
441 return -ESOCKTNOSUPPORT;
442
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800443 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -EPROTONOSUPPORT;
445
Patrick McHardy77247bb2005-08-14 19:27:13 -0700446 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700447#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700448 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700449 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700450 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700451 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700452 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700453#endif
454 if (nl_table[protocol].registered &&
455 try_module_get(nl_table[protocol].module))
456 module = nl_table[protocol].module;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700457 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700458 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700459
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800460 err = __netlink_create(net, sock, cb_mutex, protocol);
461 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700462 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
David S. Miller6f756a82008-11-23 17:34:03 -0800464 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800465 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800466 local_bh_enable();
467
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700468 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700469 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700470out:
471 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Patrick McHardyab33a172005-08-14 19:31:36 -0700473out_module:
474 module_put(module);
475 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478static int netlink_release(struct socket *sock)
479{
480 struct sock *sk = sock->sk;
481 struct netlink_sock *nlk;
482
483 if (!sk)
484 return 0;
485
486 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700487 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 nlk = nlk_sk(sk);
489
Herbert Xu3f660d62007-05-03 03:17:14 -0700490 /*
491 * OK. Socket is unlinked, any packets that arrive now
492 * will be purged.
493 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 sock->sk = NULL;
496 wake_up_interruptible_all(&nlk->wait);
497
498 skb_queue_purge(&sk->sk_write_queue);
499
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700500 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900502 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .protocol = sk->sk_protocol,
504 .pid = nlk->pid,
505 };
Alan Sterne041c682006-03-27 01:16:30 -0800506 atomic_notifier_call_chain(&netlink_chain,
507 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900508 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700509
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800510 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700511
Patrick McHardy4277a082006-03-20 18:52:01 -0800512 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700513 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800514 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
515 if (--nl_table[sk->sk_protocol].registered == 0) {
516 kfree(nl_table[sk->sk_protocol].listeners);
517 nl_table[sk->sk_protocol].module = NULL;
518 nl_table[sk->sk_protocol].registered = 0;
519 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800520 } else if (nlk->subscriptions)
521 netlink_update_listeners(sk);
522 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700523
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700524 kfree(nlk->groups);
525 nlk->groups = NULL;
526
Eric Dumazet37558102008-11-24 14:05:22 -0800527 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800528 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800529 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 sock_put(sk);
531 return 0;
532}
533
534static int netlink_autobind(struct socket *sock)
535{
536 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900537 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
539 struct hlist_head *head;
540 struct sock *osk;
541 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800542 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int err;
544 static s32 rover = -4097;
545
546retry:
547 cond_resched();
548 netlink_table_grab();
549 head = nl_pid_hashfn(hash, pid);
550 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900551 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200552 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (nlk_sk(osk)->pid == pid) {
554 /* Bind collision, search negative pid values. */
555 pid = rover--;
556 if (rover > -4097)
557 rover = -4097;
558 netlink_table_ungrab();
559 goto retry;
560 }
561 }
562 netlink_table_ungrab();
563
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200564 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (err == -EADDRINUSE)
566 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700567
568 /* If 2 threads race to autobind, that is fine. */
569 if (err == -EBUSY)
570 err = 0;
571
572 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900575static inline int netlink_capable(struct socket *sock, unsigned int flag)
576{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
578 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900579}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700581static void
582netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
583{
584 struct netlink_sock *nlk = nlk_sk(sk);
585
586 if (nlk->subscriptions && !subscriptions)
587 __sk_del_bind_node(sk);
588 else if (!nlk->subscriptions && subscriptions)
589 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
590 nlk->subscriptions = subscriptions;
591}
592
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700593static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700594{
595 struct netlink_sock *nlk = nlk_sk(sk);
596 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700597 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700598 int err = 0;
599
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700600 netlink_table_grab();
601
Patrick McHardy513c2502005-09-06 15:43:59 -0700602 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700603 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700604 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700605 goto out_unlock;
606 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700607
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700608 if (nlk->ngroups >= groups)
609 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700610
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700611 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
612 if (new_groups == NULL) {
613 err = -ENOMEM;
614 goto out_unlock;
615 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800616 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700617 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
618
619 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700620 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700621 out_unlock:
622 netlink_table_ungrab();
623 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700624}
625
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800626static int netlink_bind(struct socket *sock, struct sockaddr *addr,
627 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900630 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct netlink_sock *nlk = nlk_sk(sk);
632 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
633 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (nladdr->nl_family != AF_NETLINK)
636 return -EINVAL;
637
638 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700639 if (nladdr->nl_groups) {
640 if (!netlink_capable(sock, NL_NONROOT_RECV))
641 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700642 err = netlink_realloc_groups(sk);
643 if (err)
644 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 if (nlk->pid) {
648 if (nladdr->nl_pid != nlk->pid)
649 return -EINVAL;
650 } else {
651 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200652 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 netlink_autobind(sock);
654 if (err)
655 return err;
656 }
657
Patrick McHardy513c2502005-09-06 15:43:59 -0700658 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
660
661 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700662 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900663 hweight32(nladdr->nl_groups) -
664 hweight32(nlk->groups[0]));
665 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800666 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 netlink_table_ungrab();
668
669 return 0;
670}
671
672static int netlink_connect(struct socket *sock, struct sockaddr *addr,
673 int alen, int flags)
674{
675 int err = 0;
676 struct sock *sk = sock->sk;
677 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800678 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (addr->sa_family == AF_UNSPEC) {
681 sk->sk_state = NETLINK_UNCONNECTED;
682 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700683 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return 0;
685 }
686 if (addr->sa_family != AF_NETLINK)
687 return -EINVAL;
688
689 /* Only superuser is allowed to send multicasts */
690 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
691 return -EPERM;
692
693 if (!nlk->pid)
694 err = netlink_autobind(sock);
695
696 if (err == 0) {
697 sk->sk_state = NETLINK_CONNECTED;
698 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700699 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
702 return err;
703}
704
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800705static int netlink_getname(struct socket *sock, struct sockaddr *addr,
706 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 struct sock *sk = sock->sk;
709 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800710 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 nladdr->nl_family = AF_NETLINK;
713 nladdr->nl_pad = 0;
714 *addr_len = sizeof(*nladdr);
715
716 if (peer) {
717 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700718 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 } else {
720 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700721 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723 return 0;
724}
725
726static void netlink_overrun(struct sock *sk)
727{
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700728 struct netlink_sock *nlk = nlk_sk(sk);
729
730 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
731 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
732 sk->sk_err = ENOBUFS;
733 sk->sk_error_report(sk);
734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700736 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
740{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct sock *sock;
742 struct netlink_sock *nlk;
743
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900744 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (!sock)
746 return ERR_PTR(-ECONNREFUSED);
747
748 /* Don't bother queuing skb if kernel socket has no input function */
749 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700750 if (sock->sk_state == NETLINK_CONNECTED &&
751 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 sock_put(sock);
753 return ERR_PTR(-ECONNREFUSED);
754 }
755 return sock;
756}
757
758struct sock *netlink_getsockbyfilp(struct file *filp)
759{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800760 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 struct sock *sock;
762
763 if (!S_ISSOCK(inode->i_mode))
764 return ERR_PTR(-ENOTSOCK);
765
766 sock = SOCKET_I(inode)->sk;
767 if (sock->sk_family != AF_NETLINK)
768 return ERR_PTR(-EINVAL);
769
770 sock_hold(sock);
771 return sock;
772}
773
774/*
775 * Attach a skb to a netlink socket.
776 * The caller must hold a reference to the destination socket. On error, the
777 * reference is dropped. The skb is not send to the destination, just all
778 * all error checks are performed and memory in the queue is reserved.
779 * Return values:
780 * < 0: error. skb freed, reference to sock dropped.
781 * 0: continue
782 * 1: repeat lookup - reference dropped while waiting for socket memory.
783 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700784int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800785 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 struct netlink_sock *nlk;
788
789 nlk = nlk_sk(sk);
790
791 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
792 test_bit(0, &nlk->state)) {
793 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800794 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700795 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 netlink_overrun(sk);
797 sock_put(sk);
798 kfree_skb(skb);
799 return -EAGAIN;
800 }
801
802 __set_current_state(TASK_INTERRUPTIBLE);
803 add_wait_queue(&nlk->wait, &wait);
804
805 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
806 test_bit(0, &nlk->state)) &&
807 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800808 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 __set_current_state(TASK_RUNNING);
811 remove_wait_queue(&nlk->wait, &wait);
812 sock_put(sk);
813
814 if (signal_pending(current)) {
815 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800816 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818 return 1;
819 }
820 skb_set_owner_r(skb, sk);
821 return 0;
822}
823
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700824int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int len = skb->len;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 skb_queue_tail(&sk->sk_receive_queue, skb);
829 sk->sk_data_ready(sk, len);
830 sock_put(sk);
831 return len;
832}
833
834void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
835{
836 kfree_skb(skb);
837 sock_put(sk);
838}
839
Victor Fusco37da6472005-07-18 13:35:43 -0700840static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100841 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 int delta;
844
845 skb_orphan(skb);
846
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700847 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (delta * 2 < skb->truesize)
849 return skb;
850
851 if (skb_shared(skb)) {
852 struct sk_buff *nskb = skb_clone(skb, allocation);
853 if (!nskb)
854 return skb;
855 kfree_skb(skb);
856 skb = nskb;
857 }
858
859 if (!pskb_expand_head(skb, 0, -delta, allocation))
860 skb->truesize -= delta;
861
862 return skb;
863}
864
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700865static inline void netlink_rcv_wake(struct sock *sk)
866{
867 struct netlink_sock *nlk = nlk_sk(sk);
868
869 if (skb_queue_empty(&sk->sk_receive_queue))
870 clear_bit(0, &nlk->state);
871 if (!test_bit(0, &nlk->state))
872 wake_up_interruptible(&nlk->wait);
873}
874
875static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
876{
877 int ret;
878 struct netlink_sock *nlk = nlk_sk(sk);
879
880 ret = -ECONNREFUSED;
881 if (nlk->netlink_rcv != NULL) {
882 ret = skb->len;
883 skb_set_owner_r(skb, sk);
884 nlk->netlink_rcv(skb);
885 }
886 kfree_skb(skb);
887 sock_put(sk);
888 return ret;
889}
890
891int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
892 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 struct sock *sk;
895 int err;
896 long timeo;
897
898 skb = netlink_trim(skb, gfp_any());
899
900 timeo = sock_sndtimeo(ssk, nonblock);
901retry:
902 sk = netlink_getsockbypid(ssk, pid);
903 if (IS_ERR(sk)) {
904 kfree_skb(skb);
905 return PTR_ERR(sk);
906 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700907 if (netlink_is_kernel(sk))
908 return netlink_unicast_kernel(sk, skb);
909
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700910 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700911 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700912 kfree_skb(skb);
913 sock_put(sk);
914 return err;
915 }
916
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700917 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (err == 1)
919 goto retry;
920 if (err)
921 return err;
922
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700923 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800925EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Patrick McHardy4277a082006-03-20 18:52:01 -0800927int netlink_has_listeners(struct sock *sk, unsigned int group)
928{
929 int res = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700930 unsigned long *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800931
Denis V. Lunevaed81562007-10-10 21:14:32 -0700932 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700933
934 rcu_read_lock();
935 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
936
Patrick McHardy4277a082006-03-20 18:52:01 -0800937 if (group - 1 < nl_table[sk->sk_protocol].groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700938 res = test_bit(group - 1, listeners);
939
940 rcu_read_unlock();
941
Patrick McHardy4277a082006-03-20 18:52:01 -0800942 return res;
943}
944EXPORT_SYMBOL_GPL(netlink_has_listeners);
945
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800946static inline int netlink_broadcast_deliver(struct sock *sk,
947 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct netlink_sock *nlk = nlk_sk(sk);
950
951 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
952 !test_bit(0, &nlk->state)) {
953 skb_set_owner_r(skb, sk);
954 skb_queue_tail(&sk->sk_receive_queue, skb);
955 sk->sk_data_ready(sk, skb->len);
956 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
957 }
958 return -1;
959}
960
961struct netlink_broadcast_data {
962 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200963 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 u32 pid;
965 u32 group;
966 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800967 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int congested;
969 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400970 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct sk_buff *skb, *skb2;
972};
973
974static inline int do_one_broadcast(struct sock *sk,
975 struct netlink_broadcast_data *p)
976{
977 struct netlink_sock *nlk = nlk_sk(sk);
978 int val;
979
980 if (p->exclude_sk == sk)
981 goto out;
982
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700983 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
984 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 goto out;
986
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900987 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200988 goto out;
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (p->failure) {
991 netlink_overrun(sk);
992 goto out;
993 }
994
995 sock_hold(sk);
996 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700997 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 p->skb2 = skb_clone(p->skb, p->allocation);
999 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -07001000 p->skb2 = skb_get(p->skb);
1001 /*
1002 * skb ownership may have been set when
1003 * delivered to a previous socket.
1004 */
1005 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007 }
1008 if (p->skb2 == NULL) {
1009 netlink_overrun(sk);
1010 /* Clone failed. Notify ALL listeners. */
1011 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001012 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1013 p->delivery_failure = 1;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001014 } else if (sk_filter(sk, p->skb2)) {
1015 kfree_skb(p->skb2);
1016 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1018 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001019 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1020 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 } else {
1022 p->congested |= val;
1023 p->delivered = 1;
1024 p->skb2 = NULL;
1025 }
1026 sock_put(sk);
1027
1028out:
1029 return 0;
1030}
1031
1032int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +01001033 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001035 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct netlink_broadcast_data info;
1037 struct hlist_node *node;
1038 struct sock *sk;
1039
1040 skb = netlink_trim(skb, allocation);
1041
1042 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001043 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 info.pid = pid;
1045 info.group = group;
1046 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001047 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 info.congested = 0;
1049 info.delivered = 0;
1050 info.allocation = allocation;
1051 info.skb = skb;
1052 info.skb2 = NULL;
1053
1054 /* While we sleep in clone, do not allow to change socket list */
1055
1056 netlink_lock_table();
1057
1058 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1059 do_one_broadcast(sk, &info);
1060
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001061 kfree_skb(skb);
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 netlink_unlock_table();
1064
Wei Yongjun91744f62009-02-25 00:34:41 +00001065 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001067 if (info.delivery_failure)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001068 return -ENOBUFS;
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (info.delivered) {
1071 if (info.congested && (allocation & __GFP_WAIT))
1072 yield();
1073 return 0;
1074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return -ESRCH;
1076}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001077EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079struct netlink_set_err_data {
1080 struct sock *exclude_sk;
1081 u32 pid;
1082 u32 group;
1083 int code;
1084};
1085
1086static inline int do_one_set_err(struct sock *sk,
1087 struct netlink_set_err_data *p)
1088{
1089 struct netlink_sock *nlk = nlk_sk(sk);
1090
1091 if (sk == p->exclude_sk)
1092 goto out;
1093
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001094 if (sock_net(sk) != sock_net(p->exclude_sk))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001095 goto out;
1096
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001097 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1098 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 goto out;
1100
1101 sk->sk_err = p->code;
1102 sk->sk_error_report(sk);
1103out:
1104 return 0;
1105}
1106
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001107/**
1108 * netlink_set_err - report error to broadcast listeners
1109 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1110 * @pid: the PID of a process that we want to skip (if any)
1111 * @groups: the broadcast group that will notice the error
1112 * @code: error code, must be negative (as usual in kernelspace)
1113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1115{
1116 struct netlink_set_err_data info;
1117 struct hlist_node *node;
1118 struct sock *sk;
1119
1120 info.exclude_sk = ssk;
1121 info.pid = pid;
1122 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001123 /* sk->sk_err wants a positive error value */
1124 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 read_lock(&nl_table_lock);
1127
1128 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1129 do_one_set_err(sk, &info);
1130
1131 read_unlock(&nl_table_lock);
1132}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001133EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Johannes Berg84659eb2007-07-18 15:47:05 -07001135/* must be called with netlink table grabbed */
1136static void netlink_update_socket_mc(struct netlink_sock *nlk,
1137 unsigned int group,
1138 int is_new)
1139{
1140 int old, new = !!is_new, subscriptions;
1141
1142 old = test_bit(group - 1, nlk->groups);
1143 subscriptions = nlk->subscriptions - old + new;
1144 if (new)
1145 __set_bit(group - 1, nlk->groups);
1146 else
1147 __clear_bit(group - 1, nlk->groups);
1148 netlink_update_subscriptions(&nlk->sk, subscriptions);
1149 netlink_update_listeners(&nlk->sk);
1150}
1151
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001152static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001153 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001154{
1155 struct sock *sk = sock->sk;
1156 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001157 unsigned int val = 0;
1158 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001159
1160 if (level != SOL_NETLINK)
1161 return -ENOPROTOOPT;
1162
1163 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001164 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001165 return -EFAULT;
1166
1167 switch (optname) {
1168 case NETLINK_PKTINFO:
1169 if (val)
1170 nlk->flags |= NETLINK_RECV_PKTINFO;
1171 else
1172 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1173 err = 0;
1174 break;
1175 case NETLINK_ADD_MEMBERSHIP:
1176 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001177 if (!netlink_capable(sock, NL_NONROOT_RECV))
1178 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001179 err = netlink_realloc_groups(sk);
1180 if (err)
1181 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001182 if (!val || val - 1 >= nlk->ngroups)
1183 return -EINVAL;
1184 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001185 netlink_update_socket_mc(nlk, val,
1186 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001187 netlink_table_ungrab();
1188 err = 0;
1189 break;
1190 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001191 case NETLINK_BROADCAST_ERROR:
1192 if (val)
1193 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1194 else
1195 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1196 err = 0;
1197 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001198 case NETLINK_NO_ENOBUFS:
1199 if (val) {
1200 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1201 clear_bit(0, &nlk->state);
1202 wake_up_interruptible(&nlk->wait);
1203 } else
1204 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1205 err = 0;
1206 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001207 default:
1208 err = -ENOPROTOOPT;
1209 }
1210 return err;
1211}
1212
1213static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001214 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001215{
1216 struct sock *sk = sock->sk;
1217 struct netlink_sock *nlk = nlk_sk(sk);
1218 int len, val, err;
1219
1220 if (level != SOL_NETLINK)
1221 return -ENOPROTOOPT;
1222
1223 if (get_user(len, optlen))
1224 return -EFAULT;
1225 if (len < 0)
1226 return -EINVAL;
1227
1228 switch (optname) {
1229 case NETLINK_PKTINFO:
1230 if (len < sizeof(int))
1231 return -EINVAL;
1232 len = sizeof(int);
1233 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001234 if (put_user(len, optlen) ||
1235 put_user(val, optval))
1236 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001237 err = 0;
1238 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001239 case NETLINK_BROADCAST_ERROR:
1240 if (len < sizeof(int))
1241 return -EINVAL;
1242 len = sizeof(int);
1243 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1244 if (put_user(len, optlen) ||
1245 put_user(val, optval))
1246 return -EFAULT;
1247 err = 0;
1248 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001249 case NETLINK_NO_ENOBUFS:
1250 if (len < sizeof(int))
1251 return -EINVAL;
1252 len = sizeof(int);
1253 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1254 if (put_user(len, optlen) ||
1255 put_user(val, optval))
1256 return -EFAULT;
1257 err = 0;
1258 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001259 default:
1260 err = -ENOPROTOOPT;
1261 }
1262 return err;
1263}
1264
1265static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1266{
1267 struct nl_pktinfo info;
1268
1269 info.group = NETLINK_CB(skb).dst_group;
1270 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1271}
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1274 struct msghdr *msg, size_t len)
1275{
1276 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1277 struct sock *sk = sock->sk;
1278 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001279 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001281 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 struct sk_buff *skb;
1283 int err;
1284 struct scm_cookie scm;
1285
1286 if (msg->msg_flags&MSG_OOB)
1287 return -EOPNOTSUPP;
1288
1289 if (NULL == siocb->scm)
1290 siocb->scm = &scm;
1291 err = scm_send(sock, msg, siocb->scm);
1292 if (err < 0)
1293 return err;
1294
1295 if (msg->msg_namelen) {
1296 if (addr->nl_family != AF_NETLINK)
1297 return -EINVAL;
1298 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001299 dst_group = ffs(addr->nl_groups);
1300 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return -EPERM;
1302 } else {
1303 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001304 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306
1307 if (!nlk->pid) {
1308 err = netlink_autobind(sock);
1309 if (err)
1310 goto out;
1311 }
1312
1313 err = -EMSGSIZE;
1314 if (len > sk->sk_sndbuf - 32)
1315 goto out;
1316 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001317 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001318 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 goto out;
1320
1321 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001322 NETLINK_CB(skb).dst_group = dst_group;
Al Viro0c11b942008-01-10 04:20:52 -05001323 NETLINK_CB(skb).loginuid = audit_get_loginuid(current);
Eric Paris25323862008-04-18 10:09:25 -04001324 NETLINK_CB(skb).sessionid = audit_get_sessionid(current);
Ahmed S. Darwish0ce784c2008-03-01 21:56:22 +02001325 security_task_getsecid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1327
1328 /* What can I do? Netlink is asynchronous, so that
1329 we will have to save current capabilities to
1330 check them, when this message will be delivered
1331 to corresponding kernel module. --ANK (980802)
1332 */
1333
1334 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001335 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 kfree_skb(skb);
1337 goto out;
1338 }
1339
1340 err = security_netlink_send(sk, skb);
1341 if (err) {
1342 kfree_skb(skb);
1343 goto out;
1344 }
1345
Patrick McHardyd629b832005-08-14 19:27:50 -07001346 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001348 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 }
1350 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1351
1352out:
1353 return err;
1354}
1355
1356static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1357 struct msghdr *msg, size_t len,
1358 int flags)
1359{
1360 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1361 struct scm_cookie scm;
1362 struct sock *sk = sock->sk;
1363 struct netlink_sock *nlk = nlk_sk(sk);
1364 int noblock = flags&MSG_DONTWAIT;
1365 size_t copied;
Johannes Berg1dacc762009-07-01 11:26:02 +00001366 struct sk_buff *skb, *frag __maybe_unused = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 int err;
1368
1369 if (flags&MSG_OOB)
1370 return -EOPNOTSUPP;
1371
1372 copied = 0;
1373
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001374 skb = skb_recv_datagram(sk, flags, noblock, &err);
1375 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 goto out;
1377
Johannes Berg1dacc762009-07-01 11:26:02 +00001378#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1379 if (unlikely(skb_shinfo(skb)->frag_list)) {
1380 bool need_compat = !!(flags & MSG_CMSG_COMPAT);
1381
1382 /*
1383 * If this skb has a frag_list, then here that means that
1384 * we will have to use the frag_list skb for compat tasks
1385 * and the regular skb for non-compat tasks.
1386 *
1387 * The skb might (and likely will) be cloned, so we can't
1388 * just reset frag_list and go on with things -- we need to
1389 * keep that. For the compat case that's easy -- simply get
1390 * a reference to the compat skb and free the regular one
1391 * including the frag. For the non-compat case, we need to
1392 * avoid sending the frag to the user -- so assign NULL but
1393 * restore it below before freeing the skb.
1394 */
1395 if (need_compat) {
1396 struct sk_buff *compskb = skb_shinfo(skb)->frag_list;
1397 skb_get(compskb);
1398 kfree_skb(skb);
1399 skb = compskb;
1400 } else {
1401 frag = skb_shinfo(skb)->frag_list;
1402 skb_shinfo(skb)->frag_list = NULL;
1403 }
1404 }
1405#endif
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 msg->msg_namelen = 0;
1408
1409 copied = skb->len;
1410 if (len < copied) {
1411 msg->msg_flags |= MSG_TRUNC;
1412 copied = len;
1413 }
1414
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001415 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1417
1418 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001419 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 addr->nl_family = AF_NETLINK;
1421 addr->nl_pad = 0;
1422 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001423 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 msg->msg_namelen = sizeof(*addr);
1425 }
1426
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001427 if (nlk->flags & NETLINK_RECV_PKTINFO)
1428 netlink_cmsg_recv_pktinfo(msg, skb);
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (NULL == siocb->scm) {
1431 memset(&scm, 0, sizeof(scm));
1432 siocb->scm = &scm;
1433 }
1434 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001435 if (flags & MSG_TRUNC)
1436 copied = skb->len;
Johannes Berg1dacc762009-07-01 11:26:02 +00001437
1438#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1439 skb_shinfo(skb)->frag_list = frag;
1440#endif
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 skb_free_datagram(sk, skb);
1443
1444 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1445 netlink_dump(sk);
1446
1447 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448out:
1449 netlink_rcv_wake(sk);
1450 return err ? : copied;
1451}
1452
1453static void netlink_data_ready(struct sock *sk, int len)
1454{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001455 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
1458/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001459 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 * complete set of kernel non-blocking support for message
1461 * queueing.
1462 */
1463
1464struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001465netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001466 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001467 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
1469 struct socket *sock;
1470 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001471 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001472 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001474 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001476 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return NULL;
1478
1479 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1480 return NULL;
1481
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001482 /*
1483 * We have to just have a reference on the net from sk, but don't
1484 * get_net it. Besides, we cannot get and then put the net here.
1485 * So we create one inside init_net and the move it to net.
1486 */
1487
1488 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1489 goto out_sock_release_nosk;
1490
1491 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001492 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001493
Patrick McHardy4277a082006-03-20 18:52:01 -08001494 if (groups < 32)
1495 groups = 32;
1496
Johannes Berg6c04bb12009-07-10 09:51:32 +00001497 listeners = kzalloc(NLGRPSZ(groups) + sizeof(struct listeners_rcu_head),
1498 GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001499 if (!listeners)
1500 goto out_sock_release;
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 sk->sk_data_ready = netlink_data_ready;
1503 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001504 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001506 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001507 goto out_sock_release;
1508
1509 nlk = nlk_sk(sk);
1510 nlk->flags |= NETLINK_KERNEL_SOCKET;
1511
1512 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001513 if (!nl_table[unit].registered) {
1514 nl_table[unit].groups = groups;
1515 nl_table[unit].listeners = listeners;
1516 nl_table[unit].cb_mutex = cb_mutex;
1517 nl_table[unit].module = module;
1518 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001519 } else {
1520 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001521 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001522 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001523 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001524 return sk;
1525
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001526out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001527 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001528 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001529 return NULL;
1530
1531out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001532 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001533 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001535EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001537
1538void
1539netlink_kernel_release(struct sock *sk)
1540{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001541 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001542}
1543EXPORT_SYMBOL(netlink_kernel_release);
1544
1545
Johannes Berg6c04bb12009-07-10 09:51:32 +00001546static void netlink_free_old_listeners(struct rcu_head *rcu_head)
1547{
1548 struct listeners_rcu_head *lrh;
1549
1550 lrh = container_of(rcu_head, struct listeners_rcu_head, rcu_head);
1551 kfree(lrh->ptr);
1552}
1553
Johannes Bergd136f1b2009-09-12 03:03:15 +00001554int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001555{
1556 unsigned long *listeners, *old = NULL;
Johannes Berg6c04bb12009-07-10 09:51:32 +00001557 struct listeners_rcu_head *old_rcu_head;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001558 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001559
1560 if (groups < 32)
1561 groups = 32;
1562
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001563 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Johannes Berg6c04bb12009-07-10 09:51:32 +00001564 listeners = kzalloc(NLGRPSZ(groups) +
1565 sizeof(struct listeners_rcu_head),
1566 GFP_ATOMIC);
Johannes Bergd136f1b2009-09-12 03:03:15 +00001567 if (!listeners)
1568 return -ENOMEM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001569 old = tbl->listeners;
1570 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1571 rcu_assign_pointer(tbl->listeners, listeners);
Johannes Berg6c04bb12009-07-10 09:51:32 +00001572 /*
1573 * Free the old memory after an RCU grace period so we
1574 * don't leak it. We use call_rcu() here in order to be
1575 * able to call this function from atomic contexts. The
1576 * allocation of this memory will have reserved enough
1577 * space for struct listeners_rcu_head at the end.
1578 */
1579 old_rcu_head = (void *)(tbl->listeners +
1580 NLGRPLONGS(tbl->groups));
1581 old_rcu_head->ptr = old;
1582 call_rcu(&old_rcu_head->rcu_head, netlink_free_old_listeners);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001583 }
1584 tbl->groups = groups;
1585
Johannes Bergd136f1b2009-09-12 03:03:15 +00001586 return 0;
1587}
1588
1589/**
1590 * netlink_change_ngroups - change number of multicast groups
1591 *
1592 * This changes the number of multicast groups that are available
1593 * on a certain netlink family. Note that it is not possible to
1594 * change the number of groups to below 32. Also note that it does
1595 * not implicitly call netlink_clear_multicast_users() when the
1596 * number of groups is reduced.
1597 *
1598 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1599 * @groups: The new number of groups.
1600 */
1601int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1602{
1603 int err;
1604
1605 netlink_table_grab();
1606 err = __netlink_change_ngroups(sk, groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001607 netlink_table_ungrab();
Johannes Bergd136f1b2009-09-12 03:03:15 +00001608
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001609 return err;
1610}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001611
Johannes Berg84659eb2007-07-18 15:47:05 -07001612/**
1613 * netlink_clear_multicast_users - kick off multicast listeners
1614 *
1615 * This function removes all listeners from the given group.
1616 * @ksk: The kernel netlink socket, as returned by
1617 * netlink_kernel_create().
1618 * @group: The multicast group to clear.
1619 */
1620void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1621{
1622 struct sock *sk;
1623 struct hlist_node *node;
1624 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1625
1626 netlink_table_grab();
1627
1628 sk_for_each_bound(sk, node, &tbl->mc_list)
1629 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1630
1631 netlink_table_ungrab();
1632}
Johannes Berg84659eb2007-07-18 15:47:05 -07001633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001635{
1636 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001638}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001639EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641static void netlink_destroy_callback(struct netlink_callback *cb)
1642{
Wei Yongjun91744f62009-02-25 00:34:41 +00001643 kfree_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 kfree(cb);
1645}
1646
1647/*
1648 * It looks a bit ugly.
1649 * It would be better to create kernel thread.
1650 */
1651
1652static int netlink_dump(struct sock *sk)
1653{
1654 struct netlink_sock *nlk = nlk_sk(sk);
1655 struct netlink_callback *cb;
1656 struct sk_buff *skb;
1657 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001658 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1661 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001662 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001664 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 cb = nlk->cb;
1667 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001668 err = -EINVAL;
1669 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
1672 len = cb->dump(skb, cb);
1673
1674 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001675 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001676
1677 if (sk_filter(sk, skb))
1678 kfree_skb(skb);
1679 else {
1680 skb_queue_tail(&sk->sk_receive_queue, skb);
1681 sk->sk_data_ready(sk, skb->len);
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return 0;
1684 }
1685
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001686 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1687 if (!nlh)
1688 goto errout_skb;
1689
1690 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1691
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001692 if (sk_filter(sk, skb))
1693 kfree_skb(skb);
1694 else {
1695 skb_queue_tail(&sk->sk_receive_queue, skb);
1696 sk->sk_data_ready(sk, skb->len);
1697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Thomas Grafa8f74b22005-11-10 02:25:52 +01001699 if (cb->done)
1700 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001702 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001706
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001707errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001708 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001709 kfree_skb(skb);
1710errout:
1711 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
1714int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
Patrick McHardy3a6c2b42009-08-25 16:07:40 +02001715 const struct nlmsghdr *nlh,
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001716 int (*dump)(struct sk_buff *skb,
1717 struct netlink_callback *),
1718 int (*done)(struct netlink_callback *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 struct netlink_callback *cb;
1721 struct sock *sk;
1722 struct netlink_sock *nlk;
1723
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001724 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (cb == NULL)
1726 return -ENOBUFS;
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 cb->dump = dump;
1729 cb->done = done;
1730 cb->nlh = nlh;
1731 atomic_inc(&skb->users);
1732 cb->skb = skb;
1733
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001734 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (sk == NULL) {
1736 netlink_destroy_callback(cb);
1737 return -ECONNREFUSED;
1738 }
1739 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001740 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001741 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001742 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001743 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 netlink_destroy_callback(cb);
1745 sock_put(sk);
1746 return -EBUSY;
1747 }
1748 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001749 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 netlink_dump(sk);
1752 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001753
1754 /* We successfully started a dump, by returning -EINTR we
1755 * signal not to send ACK even if it was requested.
1756 */
1757 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001759EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1762{
1763 struct sk_buff *skb;
1764 struct nlmsghdr *rep;
1765 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001766 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Thomas Graf339bf982006-11-10 14:10:15 -08001768 /* error messages get the original request appened */
1769 if (err)
1770 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Thomas Graf339bf982006-11-10 14:10:15 -08001772 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (!skb) {
1774 struct sock *sk;
1775
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001776 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001777 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 NETLINK_CB(in_skb).pid);
1779 if (sk) {
1780 sk->sk_err = ENOBUFS;
1781 sk->sk_error_report(sk);
1782 sock_put(sk);
1783 }
1784 return;
1785 }
1786
1787 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001788 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001789 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001791 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1793}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001794EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001796int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001797 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001798{
Thomas Graf82ace472005-11-10 02:25:53 +01001799 struct nlmsghdr *nlh;
1800 int err;
1801
1802 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001803 int msglen;
1804
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001805 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001806 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001807
Martin Murrayad8e4b72006-01-10 13:02:29 -08001808 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001809 return 0;
1810
Thomas Grafd35b6852007-03-22 23:28:46 -07001811 /* Only requests are handled by the kernel */
1812 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001813 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001814
Thomas Graf45e7ae72007-03-22 23:29:10 -07001815 /* Skip control messages */
1816 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001817 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001818
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001819 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001820 if (err == -EINTR)
1821 goto skip;
1822
1823ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001824 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001825 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001826
Denis V. Lunev5c582982007-10-23 20:29:25 -07001827skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001828 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001829 if (msglen > skb->len)
1830 msglen = skb->len;
1831 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001832 }
1833
1834 return 0;
1835}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001836EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001837
1838/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001839 * nlmsg_notify - send a notification netlink message
1840 * @sk: netlink socket to use
1841 * @skb: notification message
1842 * @pid: destination netlink pid for reports or 0
1843 * @group: destination multicast group or 0
1844 * @report: 1 to report back, 0 to disable
1845 * @flags: allocation flags
1846 */
1847int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1848 unsigned int group, int report, gfp_t flags)
1849{
1850 int err = 0;
1851
1852 if (group) {
1853 int exclude_pid = 0;
1854
1855 if (report) {
1856 atomic_inc(&skb->users);
1857 exclude_pid = pid;
1858 }
1859
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001860 /* errors reported via destination sk->sk_err, but propagate
1861 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1862 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001863 }
1864
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001865 if (report) {
1866 int err2;
1867
1868 err2 = nlmsg_unicast(sk, skb, pid);
1869 if (!err || err == -ESRCH)
1870 err = err2;
1871 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07001872
1873 return err;
1874}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001875EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877#ifdef CONFIG_PROC_FS
1878struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001879 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 int link;
1881 int hash_idx;
1882};
1883
1884static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1885{
1886 struct nl_seq_iter *iter = seq->private;
1887 int i, j;
1888 struct sock *s;
1889 struct hlist_node *node;
1890 loff_t off = 0;
1891
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001892 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct nl_pid_hash *hash = &nl_table[i].hash;
1894
1895 for (j = 0; j <= hash->mask; j++) {
1896 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001897 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001898 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (off == pos) {
1900 iter->link = i;
1901 iter->hash_idx = j;
1902 return s;
1903 }
1904 ++off;
1905 }
1906 }
1907 }
1908 return NULL;
1909}
1910
1911static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001912 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
1914 read_lock(&nl_table_lock);
1915 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1916}
1917
1918static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1919{
1920 struct sock *s;
1921 struct nl_seq_iter *iter;
1922 int i, j;
1923
1924 ++*pos;
1925
1926 if (v == SEQ_START_TOKEN)
1927 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001928
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001929 iter = seq->private;
1930 s = v;
1931 do {
1932 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001933 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (s)
1935 return s;
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 i = iter->link;
1938 j = iter->hash_idx + 1;
1939
1940 do {
1941 struct nl_pid_hash *hash = &nl_table[i].hash;
1942
1943 for (; j <= hash->mask; j++) {
1944 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001945 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001946 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (s) {
1948 iter->link = i;
1949 iter->hash_idx = j;
1950 return s;
1951 }
1952 }
1953
1954 j = 0;
1955 } while (++i < MAX_LINKS);
1956
1957 return NULL;
1958}
1959
1960static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001961 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
1963 read_unlock(&nl_table_lock);
1964}
1965
1966
1967static int netlink_seq_show(struct seq_file *seq, void *v)
1968{
1969 if (v == SEQ_START_TOKEN)
1970 seq_puts(seq,
1971 "sk Eth Pid Groups "
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001972 "Rmem Wmem Dump Locks Drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 else {
1974 struct sock *s = v;
1975 struct netlink_sock *nlk = nlk_sk(s);
1976
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001977 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %-8d %-8d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 s,
1979 s->sk_protocol,
1980 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001981 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001982 sk_rmem_alloc_get(s),
1983 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001985 atomic_read(&s->sk_refcnt),
1986 atomic_read(&s->sk_drops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 );
1988
1989 }
1990 return 0;
1991}
1992
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001993static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 .start = netlink_seq_start,
1995 .next = netlink_seq_next,
1996 .stop = netlink_seq_stop,
1997 .show = netlink_seq_show,
1998};
1999
2000
2001static int netlink_seq_open(struct inode *inode, struct file *file)
2002{
Denis V. Luneve372c412007-11-19 22:31:54 -08002003 return seq_open_net(inode, file, &netlink_seq_ops,
2004 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002005}
2006
Arjan van de Venda7071d2007-02-12 00:55:36 -08002007static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 .owner = THIS_MODULE,
2009 .open = netlink_seq_open,
2010 .read = seq_read,
2011 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002012 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013};
2014
2015#endif
2016
2017int netlink_register_notifier(struct notifier_block *nb)
2018{
Alan Sterne041c682006-03-27 01:16:30 -08002019 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002021EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023int netlink_unregister_notifier(struct notifier_block *nb)
2024{
Alan Sterne041c682006-03-27 01:16:30 -08002025 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002027EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002028
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002029static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 .family = PF_NETLINK,
2031 .owner = THIS_MODULE,
2032 .release = netlink_release,
2033 .bind = netlink_bind,
2034 .connect = netlink_connect,
2035 .socketpair = sock_no_socketpair,
2036 .accept = sock_no_accept,
2037 .getname = netlink_getname,
2038 .poll = datagram_poll,
2039 .ioctl = sock_no_ioctl,
2040 .listen = sock_no_listen,
2041 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002042 .setsockopt = netlink_setsockopt,
2043 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 .sendmsg = netlink_sendmsg,
2045 .recvmsg = netlink_recvmsg,
2046 .mmap = sock_no_mmap,
2047 .sendpage = sock_no_sendpage,
2048};
2049
2050static struct net_proto_family netlink_family_ops = {
2051 .family = PF_NETLINK,
2052 .create = netlink_create,
2053 .owner = THIS_MODULE, /* for consistency 8) */
2054};
2055
Pavel Emelyanov46650792007-10-08 20:38:39 -07002056static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002057{
2058#ifdef CONFIG_PROC_FS
2059 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2060 return -ENOMEM;
2061#endif
2062 return 0;
2063}
2064
Pavel Emelyanov46650792007-10-08 20:38:39 -07002065static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002066{
2067#ifdef CONFIG_PROC_FS
2068 proc_net_remove(net, "netlink");
2069#endif
2070}
2071
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002072static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002073 .init = netlink_net_init,
2074 .exit = netlink_net_exit,
2075};
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077static int __init netlink_proto_init(void)
2078{
2079 struct sk_buff *dummy_skb;
2080 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002081 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 unsigned int order;
2083 int err = proto_register(&netlink_proto, 0);
2084
2085 if (err != 0)
2086 goto out;
2087
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07002088 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002090 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002091 if (!nl_table)
2092 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (num_physpages >= (128 * 1024))
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002095 limit = num_physpages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 else
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002097 limit = num_physpages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002099 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2100 limit = (1UL << order) / sizeof(struct hlist_head);
2101 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 for (i = 0; i < MAX_LINKS; i++) {
2104 struct nl_pid_hash *hash = &nl_table[i].hash;
2105
Eric Dumazetea729122007-12-11 02:09:47 -08002106 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if (!hash->table) {
2108 while (i-- > 0)
2109 nl_pid_hash_free(nl_table[i].hash.table,
2110 1 * sizeof(*hash->table));
2111 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002112 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 hash->max_shift = order;
2115 hash->shift = 0;
2116 hash->mask = 0;
2117 hash->rehash_time = jiffies;
2118 }
2119
2120 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002121 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002122 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 rtnetlink_init();
2124out:
2125 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002126panic:
2127 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130core_initcall(netlink_proto_init);