blob: d0ff382c40ca96cfe66752379039218714c966a1 [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
180static void netlink_table_grab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800181 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700183 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (atomic_read(&nl_table_users)) {
186 DECLARE_WAITQUEUE(wait, current);
187
188 add_wait_queue_exclusive(&nl_table_wait, &wait);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800189 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 set_current_state(TASK_UNINTERRUPTIBLE);
191 if (atomic_read(&nl_table_users) == 0)
192 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700193 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700195 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
198 __set_current_state(TASK_RUNNING);
199 remove_wait_queue(&nl_table_wait, &wait);
200 }
201}
202
Ilpo Järvinen3f252522008-01-12 03:21:50 -0800203static void netlink_table_ungrab(void)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800204 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700206 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 wake_up(&nl_table_wait);
208}
209
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800210static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211netlink_lock_table(void)
212{
213 /* read_lock() synchronizes us to netlink_table_grab */
214
215 read_lock(&nl_table_lock);
216 atomic_inc(&nl_table_users);
217 read_unlock(&nl_table_lock);
218}
219
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800220static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221netlink_unlock_table(void)
222{
223 if (atomic_dec_and_test(&nl_table_users))
224 wake_up(&nl_table_wait);
225}
226
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800227static inline struct sock *netlink_lookup(struct net *net, int protocol,
228 u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct nl_pid_hash *hash = &nl_table[protocol].hash;
231 struct hlist_head *head;
232 struct sock *sk;
233 struct hlist_node *node;
234
235 read_lock(&nl_table_lock);
236 head = nl_pid_hashfn(hash, pid);
237 sk_for_each(sk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900238 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 sock_hold(sk);
240 goto found;
241 }
242 }
243 sk = NULL;
244found:
245 read_unlock(&nl_table_lock);
246 return sk;
247}
248
Eric Dumazetea729122007-12-11 02:09:47 -0800249static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800252 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 else
254 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800255 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
256 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
260{
261 if (size <= PAGE_SIZE)
262 kfree(table);
263 else
264 free_pages((unsigned long)table, get_order(size));
265}
266
267static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
268{
269 unsigned int omask, mask, shift;
270 size_t osize, size;
271 struct hlist_head *otable, *table;
272 int i;
273
274 omask = mask = hash->mask;
275 osize = size = (mask + 1) * sizeof(*table);
276 shift = hash->shift;
277
278 if (grow) {
279 if (++shift > hash->max_shift)
280 return 0;
281 mask = mask * 2 + 1;
282 size *= 2;
283 }
284
Eric Dumazetea729122007-12-11 02:09:47 -0800285 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!table)
287 return 0;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 otable = hash->table;
290 hash->table = table;
291 hash->mask = mask;
292 hash->shift = shift;
293 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
294
295 for (i = 0; i <= omask; i++) {
296 struct sock *sk;
297 struct hlist_node *node, *tmp;
298
299 sk_for_each_safe(sk, node, tmp, &otable[i])
300 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
301 }
302
303 nl_pid_hash_free(otable, osize);
304 hash->rehash_time = jiffies + 10 * 60 * HZ;
305 return 1;
306}
307
308static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
309{
310 int avg = hash->entries >> hash->shift;
311
312 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
313 return 1;
314
315 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
316 nl_pid_hash_rehash(hash, 0);
317 return 1;
318 }
319
320 return 0;
321}
322
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800323static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Patrick McHardy4277a082006-03-20 18:52:01 -0800325static void
326netlink_update_listeners(struct sock *sk)
327{
328 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
329 struct hlist_node *node;
330 unsigned long mask;
331 unsigned int i;
332
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700333 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800334 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700335 sk_for_each_bound(sk, node, &tbl->mc_list) {
336 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
337 mask |= nlk_sk(sk)->groups[i];
338 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800339 tbl->listeners[i] = mask;
340 }
341 /* this function is only called with the netlink table "grabbed", which
342 * makes sure updates are visible before bind or setsockopt return. */
343}
344
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200345static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
348 struct hlist_head *head;
349 int err = -EADDRINUSE;
350 struct sock *osk;
351 struct hlist_node *node;
352 int len;
353
354 netlink_table_grab();
355 head = nl_pid_hashfn(hash, pid);
356 len = 0;
357 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900358 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 len++;
361 }
362 if (node)
363 goto err;
364
365 err = -EBUSY;
366 if (nlk_sk(sk)->pid)
367 goto err;
368
369 err = -ENOMEM;
370 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
371 goto err;
372
373 if (len && nl_pid_hash_dilute(hash, len))
374 head = nl_pid_hashfn(hash, pid);
375 hash->entries++;
376 nlk_sk(sk)->pid = pid;
377 sk_add_node(sk, head);
378 err = 0;
379
380err:
381 netlink_table_ungrab();
382 return err;
383}
384
385static void netlink_remove(struct sock *sk)
386{
387 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700388 if (sk_del_node_init(sk))
389 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700390 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 __sk_del_bind_node(sk);
392 netlink_table_ungrab();
393}
394
395static struct proto netlink_proto = {
396 .name = "NETLINK",
397 .owner = THIS_MODULE,
398 .obj_size = sizeof(struct netlink_sock),
399};
400
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700401static int __netlink_create(struct net *net, struct socket *sock,
402 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct sock *sk;
405 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700406
407 sock->ops = &netlink_ops;
408
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700409 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700410 if (!sk)
411 return -ENOMEM;
412
413 sock_init_data(sock, sk);
414
415 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700416 if (cb_mutex)
417 nlk->cb_mutex = cb_mutex;
418 else {
419 nlk->cb_mutex = &nlk->cb_def_mutex;
420 mutex_init(nlk->cb_mutex);
421 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700422 init_waitqueue_head(&nlk->wait);
423
424 sk->sk_destruct = netlink_sock_destruct;
425 sk->sk_protocol = protocol;
426 return 0;
427}
428
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700429static int netlink_create(struct net *net, struct socket *sock, int protocol)
Patrick McHardyab33a172005-08-14 19:31:36 -0700430{
431 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700432 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700433 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700434 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 sock->state = SS_UNCONNECTED;
437
438 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
439 return -ESOCKTNOSUPPORT;
440
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800441 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return -EPROTONOSUPPORT;
443
Patrick McHardy77247bb2005-08-14 19:27:13 -0700444 netlink_lock_table();
Johannes Berg95a5afc2008-10-16 15:24:51 -0700445#ifdef CONFIG_MODULES
Patrick McHardyab33a172005-08-14 19:31:36 -0700446 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700447 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700448 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700449 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700450 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700451#endif
452 if (nl_table[protocol].registered &&
453 try_module_get(nl_table[protocol].module))
454 module = nl_table[protocol].module;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700455 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700456 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700457
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800458 err = __netlink_create(net, sock, cb_mutex, protocol);
459 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700460 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
David S. Miller6f756a82008-11-23 17:34:03 -0800462 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800463 sock_prot_inuse_add(net, &netlink_proto, 1);
David S. Miller6f756a82008-11-23 17:34:03 -0800464 local_bh_enable();
465
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700466 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700467 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700468out:
469 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Patrick McHardyab33a172005-08-14 19:31:36 -0700471out_module:
472 module_put(module);
473 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
476static int netlink_release(struct socket *sock)
477{
478 struct sock *sk = sock->sk;
479 struct netlink_sock *nlk;
480
481 if (!sk)
482 return 0;
483
484 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700485 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 nlk = nlk_sk(sk);
487
Herbert Xu3f660d62007-05-03 03:17:14 -0700488 /*
489 * OK. Socket is unlinked, any packets that arrive now
490 * will be purged.
491 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 sock->sk = NULL;
494 wake_up_interruptible_all(&nlk->wait);
495
496 skb_queue_purge(&sk->sk_write_queue);
497
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700498 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct netlink_notify n = {
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900500 .net = sock_net(sk),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 .protocol = sk->sk_protocol,
502 .pid = nlk->pid,
503 };
Alan Sterne041c682006-03-27 01:16:30 -0800504 atomic_notifier_call_chain(&netlink_chain,
505 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900506 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700507
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800508 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700509
Patrick McHardy4277a082006-03-20 18:52:01 -0800510 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700511 if (netlink_is_kernel(sk)) {
Denis V. Lunev869e58f2008-01-18 23:53:31 -0800512 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
513 if (--nl_table[sk->sk_protocol].registered == 0) {
514 kfree(nl_table[sk->sk_protocol].listeners);
515 nl_table[sk->sk_protocol].module = NULL;
516 nl_table[sk->sk_protocol].registered = 0;
517 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800518 } else if (nlk->subscriptions)
519 netlink_update_listeners(sk);
520 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700521
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700522 kfree(nlk->groups);
523 nlk->groups = NULL;
524
Eric Dumazet37558102008-11-24 14:05:22 -0800525 local_bh_disable();
Eric Dumazetc1fd3b92008-11-23 15:48:22 -0800526 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
Eric Dumazet37558102008-11-24 14:05:22 -0800527 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 sock_put(sk);
529 return 0;
530}
531
532static int netlink_autobind(struct socket *sock)
533{
534 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900535 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
537 struct hlist_head *head;
538 struct sock *osk;
539 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800540 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err;
542 static s32 rover = -4097;
543
544retry:
545 cond_resched();
546 netlink_table_grab();
547 head = nl_pid_hashfn(hash, pid);
548 sk_for_each(osk, node, head) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900549 if (!net_eq(sock_net(osk), net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200550 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (nlk_sk(osk)->pid == pid) {
552 /* Bind collision, search negative pid values. */
553 pid = rover--;
554 if (rover > -4097)
555 rover = -4097;
556 netlink_table_ungrab();
557 goto retry;
558 }
559 }
560 netlink_table_ungrab();
561
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200562 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (err == -EADDRINUSE)
564 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700565
566 /* If 2 threads race to autobind, that is fine. */
567 if (err == -EBUSY)
568 err = 0;
569
570 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900573static inline int netlink_capable(struct socket *sock, unsigned int flag)
574{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
576 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900577}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700579static void
580netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
581{
582 struct netlink_sock *nlk = nlk_sk(sk);
583
584 if (nlk->subscriptions && !subscriptions)
585 __sk_del_bind_node(sk);
586 else if (!nlk->subscriptions && subscriptions)
587 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
588 nlk->subscriptions = subscriptions;
589}
590
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700591static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700592{
593 struct netlink_sock *nlk = nlk_sk(sk);
594 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700595 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700596 int err = 0;
597
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700598 netlink_table_grab();
599
Patrick McHardy513c2502005-09-06 15:43:59 -0700600 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700601 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700602 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700603 goto out_unlock;
604 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700605
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700606 if (nlk->ngroups >= groups)
607 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700608
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700609 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
610 if (new_groups == NULL) {
611 err = -ENOMEM;
612 goto out_unlock;
613 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800614 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700615 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
616
617 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700618 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700619 out_unlock:
620 netlink_table_ungrab();
621 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700622}
623
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800624static int netlink_bind(struct socket *sock, struct sockaddr *addr,
625 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900628 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct netlink_sock *nlk = nlk_sk(sk);
630 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
631 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (nladdr->nl_family != AF_NETLINK)
634 return -EINVAL;
635
636 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700637 if (nladdr->nl_groups) {
638 if (!netlink_capable(sock, NL_NONROOT_RECV))
639 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700640 err = netlink_realloc_groups(sk);
641 if (err)
642 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 if (nlk->pid) {
646 if (nladdr->nl_pid != nlk->pid)
647 return -EINVAL;
648 } else {
649 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200650 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 netlink_autobind(sock);
652 if (err)
653 return err;
654 }
655
Patrick McHardy513c2502005-09-06 15:43:59 -0700656 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return 0;
658
659 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700660 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900661 hweight32(nladdr->nl_groups) -
662 hweight32(nlk->groups[0]));
663 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800664 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 netlink_table_ungrab();
666
667 return 0;
668}
669
670static int netlink_connect(struct socket *sock, struct sockaddr *addr,
671 int alen, int flags)
672{
673 int err = 0;
674 struct sock *sk = sock->sk;
675 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800676 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 if (addr->sa_family == AF_UNSPEC) {
679 sk->sk_state = NETLINK_UNCONNECTED;
680 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700681 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return 0;
683 }
684 if (addr->sa_family != AF_NETLINK)
685 return -EINVAL;
686
687 /* Only superuser is allowed to send multicasts */
688 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
689 return -EPERM;
690
691 if (!nlk->pid)
692 err = netlink_autobind(sock);
693
694 if (err == 0) {
695 sk->sk_state = NETLINK_CONNECTED;
696 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700697 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699
700 return err;
701}
702
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800703static int netlink_getname(struct socket *sock, struct sockaddr *addr,
704 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct sock *sk = sock->sk;
707 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800708 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 nladdr->nl_family = AF_NETLINK;
711 nladdr->nl_pad = 0;
712 *addr_len = sizeof(*nladdr);
713
714 if (peer) {
715 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700716 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 } else {
718 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700719 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721 return 0;
722}
723
724static void netlink_overrun(struct sock *sk)
725{
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700726 struct netlink_sock *nlk = nlk_sk(sk);
727
728 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
729 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
730 sk->sk_err = ENOBUFS;
731 sk->sk_error_report(sk);
732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -0700734 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
737static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
738{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 struct sock *sock;
740 struct netlink_sock *nlk;
741
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900742 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (!sock)
744 return ERR_PTR(-ECONNREFUSED);
745
746 /* Don't bother queuing skb if kernel socket has no input function */
747 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700748 if (sock->sk_state == NETLINK_CONNECTED &&
749 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 sock_put(sock);
751 return ERR_PTR(-ECONNREFUSED);
752 }
753 return sock;
754}
755
756struct sock *netlink_getsockbyfilp(struct file *filp)
757{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800758 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 struct sock *sock;
760
761 if (!S_ISSOCK(inode->i_mode))
762 return ERR_PTR(-ENOTSOCK);
763
764 sock = SOCKET_I(inode)->sk;
765 if (sock->sk_family != AF_NETLINK)
766 return ERR_PTR(-EINVAL);
767
768 sock_hold(sock);
769 return sock;
770}
771
772/*
773 * Attach a skb to a netlink socket.
774 * The caller must hold a reference to the destination socket. On error, the
775 * reference is dropped. The skb is not send to the destination, just all
776 * all error checks are performed and memory in the queue is reserved.
777 * Return values:
778 * < 0: error. skb freed, reference to sock dropped.
779 * 0: continue
780 * 1: repeat lookup - reference dropped while waiting for socket memory.
781 */
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700782int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800783 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 struct netlink_sock *nlk;
786
787 nlk = nlk_sk(sk);
788
789 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
790 test_bit(0, &nlk->state)) {
791 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800792 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700793 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 netlink_overrun(sk);
795 sock_put(sk);
796 kfree_skb(skb);
797 return -EAGAIN;
798 }
799
800 __set_current_state(TASK_INTERRUPTIBLE);
801 add_wait_queue(&nlk->wait, &wait);
802
803 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
804 test_bit(0, &nlk->state)) &&
805 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800806 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 __set_current_state(TASK_RUNNING);
809 remove_wait_queue(&nlk->wait, &wait);
810 sock_put(sk);
811
812 if (signal_pending(current)) {
813 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800814 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 return 1;
817 }
818 skb_set_owner_r(skb, sk);
819 return 0;
820}
821
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700822int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 int len = skb->len;
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 skb_queue_tail(&sk->sk_receive_queue, skb);
827 sk->sk_data_ready(sk, len);
828 sock_put(sk);
829 return len;
830}
831
832void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
833{
834 kfree_skb(skb);
835 sock_put(sk);
836}
837
Victor Fusco37da6472005-07-18 13:35:43 -0700838static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100839 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 int delta;
842
843 skb_orphan(skb);
844
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700845 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (delta * 2 < skb->truesize)
847 return skb;
848
849 if (skb_shared(skb)) {
850 struct sk_buff *nskb = skb_clone(skb, allocation);
851 if (!nskb)
852 return skb;
853 kfree_skb(skb);
854 skb = nskb;
855 }
856
857 if (!pskb_expand_head(skb, 0, -delta, allocation))
858 skb->truesize -= delta;
859
860 return skb;
861}
862
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700863static inline void netlink_rcv_wake(struct sock *sk)
864{
865 struct netlink_sock *nlk = nlk_sk(sk);
866
867 if (skb_queue_empty(&sk->sk_receive_queue))
868 clear_bit(0, &nlk->state);
869 if (!test_bit(0, &nlk->state))
870 wake_up_interruptible(&nlk->wait);
871}
872
873static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
874{
875 int ret;
876 struct netlink_sock *nlk = nlk_sk(sk);
877
878 ret = -ECONNREFUSED;
879 if (nlk->netlink_rcv != NULL) {
880 ret = skb->len;
881 skb_set_owner_r(skb, sk);
882 nlk->netlink_rcv(skb);
883 }
884 kfree_skb(skb);
885 sock_put(sk);
886 return ret;
887}
888
889int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
890 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
892 struct sock *sk;
893 int err;
894 long timeo;
895
896 skb = netlink_trim(skb, gfp_any());
897
898 timeo = sock_sndtimeo(ssk, nonblock);
899retry:
900 sk = netlink_getsockbypid(ssk, pid);
901 if (IS_ERR(sk)) {
902 kfree_skb(skb);
903 return PTR_ERR(sk);
904 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700905 if (netlink_is_kernel(sk))
906 return netlink_unicast_kernel(sk, skb);
907
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700908 if (sk_filter(sk, skb)) {
Wang Chen84874602008-07-01 19:55:09 -0700909 err = skb->len;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -0700910 kfree_skb(skb);
911 sock_put(sk);
912 return err;
913 }
914
Denis V. Lunev9457afe2008-06-05 11:23:39 -0700915 err = netlink_attachskb(sk, skb, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (err == 1)
917 goto retry;
918 if (err)
919 return err;
920
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700921 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800923EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Patrick McHardy4277a082006-03-20 18:52:01 -0800925int netlink_has_listeners(struct sock *sk, unsigned int group)
926{
927 int res = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700928 unsigned long *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800929
Denis V. Lunevaed81562007-10-10 21:14:32 -0700930 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700931
932 rcu_read_lock();
933 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
934
Patrick McHardy4277a082006-03-20 18:52:01 -0800935 if (group - 1 < nl_table[sk->sk_protocol].groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700936 res = test_bit(group - 1, listeners);
937
938 rcu_read_unlock();
939
Patrick McHardy4277a082006-03-20 18:52:01 -0800940 return res;
941}
942EXPORT_SYMBOL_GPL(netlink_has_listeners);
943
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800944static inline int netlink_broadcast_deliver(struct sock *sk,
945 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 struct netlink_sock *nlk = nlk_sk(sk);
948
949 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
950 !test_bit(0, &nlk->state)) {
951 skb_set_owner_r(skb, sk);
952 skb_queue_tail(&sk->sk_receive_queue, skb);
953 sk->sk_data_ready(sk, skb->len);
954 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
955 }
956 return -1;
957}
958
959struct netlink_broadcast_data {
960 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200961 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 u32 pid;
963 u32 group;
964 int failure;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800965 int delivery_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int congested;
967 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400968 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 struct sk_buff *skb, *skb2;
970};
971
972static inline int do_one_broadcast(struct sock *sk,
973 struct netlink_broadcast_data *p)
974{
975 struct netlink_sock *nlk = nlk_sk(sk);
976 int val;
977
978 if (p->exclude_sk == sk)
979 goto out;
980
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700981 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
982 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 goto out;
984
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900985 if (!net_eq(sock_net(sk), p->net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200986 goto out;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (p->failure) {
989 netlink_overrun(sk);
990 goto out;
991 }
992
993 sock_hold(sk);
994 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700995 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 p->skb2 = skb_clone(p->skb, p->allocation);
997 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700998 p->skb2 = skb_get(p->skb);
999 /*
1000 * skb ownership may have been set when
1001 * delivered to a previous socket.
1002 */
1003 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005 }
1006 if (p->skb2 == NULL) {
1007 netlink_overrun(sk);
1008 /* Clone failed. Notify ALL listeners. */
1009 p->failure = 1;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001010 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1011 p->delivery_failure = 1;
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001012 } else if (sk_filter(sk, p->skb2)) {
1013 kfree_skb(p->skb2);
1014 p->skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1016 netlink_overrun(sk);
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001017 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1018 p->delivery_failure = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 } else {
1020 p->congested |= val;
1021 p->delivered = 1;
1022 p->skb2 = NULL;
1023 }
1024 sock_put(sk);
1025
1026out:
1027 return 0;
1028}
1029
1030int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +01001031 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001033 struct net *net = sock_net(ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct netlink_broadcast_data info;
1035 struct hlist_node *node;
1036 struct sock *sk;
1037
1038 skb = netlink_trim(skb, allocation);
1039
1040 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001041 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 info.pid = pid;
1043 info.group = group;
1044 info.failure = 0;
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001045 info.delivery_failure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 info.congested = 0;
1047 info.delivered = 0;
1048 info.allocation = allocation;
1049 info.skb = skb;
1050 info.skb2 = NULL;
1051
1052 /* While we sleep in clone, do not allow to change socket list */
1053
1054 netlink_lock_table();
1055
1056 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1057 do_one_broadcast(sk, &info);
1058
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001059 kfree_skb(skb);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 netlink_unlock_table();
1062
Wei Yongjun91744f62009-02-25 00:34:41 +00001063 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001065 if (info.delivery_failure)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -08001066 return -ENOBUFS;
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (info.delivered) {
1069 if (info.congested && (allocation & __GFP_WAIT))
1070 yield();
1071 return 0;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return -ESRCH;
1074}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001075EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077struct netlink_set_err_data {
1078 struct sock *exclude_sk;
1079 u32 pid;
1080 u32 group;
1081 int code;
1082};
1083
1084static inline int do_one_set_err(struct sock *sk,
1085 struct netlink_set_err_data *p)
1086{
1087 struct netlink_sock *nlk = nlk_sk(sk);
1088
1089 if (sk == p->exclude_sk)
1090 goto out;
1091
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001092 if (sock_net(sk) != sock_net(p->exclude_sk))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001093 goto out;
1094
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001095 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1096 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 goto out;
1098
1099 sk->sk_err = p->code;
1100 sk->sk_error_report(sk);
1101out:
1102 return 0;
1103}
1104
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001105/**
1106 * netlink_set_err - report error to broadcast listeners
1107 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1108 * @pid: the PID of a process that we want to skip (if any)
1109 * @groups: the broadcast group that will notice the error
1110 * @code: error code, must be negative (as usual in kernelspace)
1111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1113{
1114 struct netlink_set_err_data info;
1115 struct hlist_node *node;
1116 struct sock *sk;
1117
1118 info.exclude_sk = ssk;
1119 info.pid = pid;
1120 info.group = group;
Pablo Neira Ayuso4843b932009-03-03 23:37:30 -08001121 /* sk->sk_err wants a positive error value */
1122 info.code = -code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 read_lock(&nl_table_lock);
1125
1126 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1127 do_one_set_err(sk, &info);
1128
1129 read_unlock(&nl_table_lock);
1130}
Pablo Neira Ayusodd5b6ce2009-03-23 13:21:06 +01001131EXPORT_SYMBOL(netlink_set_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Johannes Berg84659eb2007-07-18 15:47:05 -07001133/* must be called with netlink table grabbed */
1134static void netlink_update_socket_mc(struct netlink_sock *nlk,
1135 unsigned int group,
1136 int is_new)
1137{
1138 int old, new = !!is_new, subscriptions;
1139
1140 old = test_bit(group - 1, nlk->groups);
1141 subscriptions = nlk->subscriptions - old + new;
1142 if (new)
1143 __set_bit(group - 1, nlk->groups);
1144 else
1145 __clear_bit(group - 1, nlk->groups);
1146 netlink_update_subscriptions(&nlk->sk, subscriptions);
1147 netlink_update_listeners(&nlk->sk);
1148}
1149
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001150static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001151 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001152{
1153 struct sock *sk = sock->sk;
1154 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001155 unsigned int val = 0;
1156 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001157
1158 if (level != SOL_NETLINK)
1159 return -ENOPROTOOPT;
1160
1161 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001162 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001163 return -EFAULT;
1164
1165 switch (optname) {
1166 case NETLINK_PKTINFO:
1167 if (val)
1168 nlk->flags |= NETLINK_RECV_PKTINFO;
1169 else
1170 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1171 err = 0;
1172 break;
1173 case NETLINK_ADD_MEMBERSHIP:
1174 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001175 if (!netlink_capable(sock, NL_NONROOT_RECV))
1176 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001177 err = netlink_realloc_groups(sk);
1178 if (err)
1179 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001180 if (!val || val - 1 >= nlk->ngroups)
1181 return -EINVAL;
1182 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001183 netlink_update_socket_mc(nlk, val,
1184 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001185 netlink_table_ungrab();
1186 err = 0;
1187 break;
1188 }
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001189 case NETLINK_BROADCAST_ERROR:
1190 if (val)
1191 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1192 else
1193 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1194 err = 0;
1195 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001196 case NETLINK_NO_ENOBUFS:
1197 if (val) {
1198 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1199 clear_bit(0, &nlk->state);
1200 wake_up_interruptible(&nlk->wait);
1201 } else
1202 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1203 err = 0;
1204 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001205 default:
1206 err = -ENOPROTOOPT;
1207 }
1208 return err;
1209}
1210
1211static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001212 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001213{
1214 struct sock *sk = sock->sk;
1215 struct netlink_sock *nlk = nlk_sk(sk);
1216 int len, val, err;
1217
1218 if (level != SOL_NETLINK)
1219 return -ENOPROTOOPT;
1220
1221 if (get_user(len, optlen))
1222 return -EFAULT;
1223 if (len < 0)
1224 return -EINVAL;
1225
1226 switch (optname) {
1227 case NETLINK_PKTINFO:
1228 if (len < sizeof(int))
1229 return -EINVAL;
1230 len = sizeof(int);
1231 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001232 if (put_user(len, optlen) ||
1233 put_user(val, optval))
1234 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001235 err = 0;
1236 break;
Pablo Neira Ayusobe0c22a2009-02-18 01:40:43 +00001237 case NETLINK_BROADCAST_ERROR:
1238 if (len < sizeof(int))
1239 return -EINVAL;
1240 len = sizeof(int);
1241 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1242 if (put_user(len, optlen) ||
1243 put_user(val, optval))
1244 return -EFAULT;
1245 err = 0;
1246 break;
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001247 case NETLINK_NO_ENOBUFS:
1248 if (len < sizeof(int))
1249 return -EINVAL;
1250 len = sizeof(int);
1251 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1252 if (put_user(len, optlen) ||
1253 put_user(val, optval))
1254 return -EFAULT;
1255 err = 0;
1256 break;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001257 default:
1258 err = -ENOPROTOOPT;
1259 }
1260 return err;
1261}
1262
1263static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1264{
1265 struct nl_pktinfo info;
1266
1267 info.group = NETLINK_CB(skb).dst_group;
1268 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1269}
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1272 struct msghdr *msg, size_t len)
1273{
1274 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1275 struct sock *sk = sock->sk;
1276 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001277 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001279 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct sk_buff *skb;
1281 int err;
1282 struct scm_cookie scm;
1283
1284 if (msg->msg_flags&MSG_OOB)
1285 return -EOPNOTSUPP;
1286
1287 if (NULL == siocb->scm)
1288 siocb->scm = &scm;
1289 err = scm_send(sock, msg, siocb->scm);
1290 if (err < 0)
1291 return err;
1292
1293 if (msg->msg_namelen) {
1294 if (addr->nl_family != AF_NETLINK)
1295 return -EINVAL;
1296 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001297 dst_group = ffs(addr->nl_groups);
1298 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return -EPERM;
1300 } else {
1301 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001302 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304
1305 if (!nlk->pid) {
1306 err = netlink_autobind(sock);
1307 if (err)
1308 goto out;
1309 }
1310
1311 err = -EMSGSIZE;
1312 if (len > sk->sk_sndbuf - 32)
1313 goto out;
1314 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001315 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001316 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto out;
1318
1319 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001320 NETLINK_CB(skb).dst_group = dst_group;
Al Viro0c11b942008-01-10 04:20:52 -05001321 NETLINK_CB(skb).loginuid = audit_get_loginuid(current);
Eric Paris25323862008-04-18 10:09:25 -04001322 NETLINK_CB(skb).sessionid = audit_get_sessionid(current);
Ahmed S. Darwish0ce784c2008-03-01 21:56:22 +02001323 security_task_getsecid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1325
1326 /* What can I do? Netlink is asynchronous, so that
1327 we will have to save current capabilities to
1328 check them, when this message will be delivered
1329 to corresponding kernel module. --ANK (980802)
1330 */
1331
1332 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001333 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 kfree_skb(skb);
1335 goto out;
1336 }
1337
1338 err = security_netlink_send(sk, skb);
1339 if (err) {
1340 kfree_skb(skb);
1341 goto out;
1342 }
1343
Patrick McHardyd629b832005-08-14 19:27:50 -07001344 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001346 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1349
1350out:
1351 return err;
1352}
1353
1354static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1355 struct msghdr *msg, size_t len,
1356 int flags)
1357{
1358 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1359 struct scm_cookie scm;
1360 struct sock *sk = sock->sk;
1361 struct netlink_sock *nlk = nlk_sk(sk);
1362 int noblock = flags&MSG_DONTWAIT;
1363 size_t copied;
Johannes Berg1dacc762009-07-01 11:26:02 +00001364 struct sk_buff *skb, *frag __maybe_unused = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 int err;
1366
1367 if (flags&MSG_OOB)
1368 return -EOPNOTSUPP;
1369
1370 copied = 0;
1371
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001372 skb = skb_recv_datagram(sk, flags, noblock, &err);
1373 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 goto out;
1375
Johannes Berg1dacc762009-07-01 11:26:02 +00001376#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1377 if (unlikely(skb_shinfo(skb)->frag_list)) {
1378 bool need_compat = !!(flags & MSG_CMSG_COMPAT);
1379
1380 /*
1381 * If this skb has a frag_list, then here that means that
1382 * we will have to use the frag_list skb for compat tasks
1383 * and the regular skb for non-compat tasks.
1384 *
1385 * The skb might (and likely will) be cloned, so we can't
1386 * just reset frag_list and go on with things -- we need to
1387 * keep that. For the compat case that's easy -- simply get
1388 * a reference to the compat skb and free the regular one
1389 * including the frag. For the non-compat case, we need to
1390 * avoid sending the frag to the user -- so assign NULL but
1391 * restore it below before freeing the skb.
1392 */
1393 if (need_compat) {
1394 struct sk_buff *compskb = skb_shinfo(skb)->frag_list;
1395 skb_get(compskb);
1396 kfree_skb(skb);
1397 skb = compskb;
1398 } else {
1399 frag = skb_shinfo(skb)->frag_list;
1400 skb_shinfo(skb)->frag_list = NULL;
1401 }
1402 }
1403#endif
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 msg->msg_namelen = 0;
1406
1407 copied = skb->len;
1408 if (len < copied) {
1409 msg->msg_flags |= MSG_TRUNC;
1410 copied = len;
1411 }
1412
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001413 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1415
1416 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001417 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 addr->nl_family = AF_NETLINK;
1419 addr->nl_pad = 0;
1420 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001421 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 msg->msg_namelen = sizeof(*addr);
1423 }
1424
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001425 if (nlk->flags & NETLINK_RECV_PKTINFO)
1426 netlink_cmsg_recv_pktinfo(msg, skb);
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (NULL == siocb->scm) {
1429 memset(&scm, 0, sizeof(scm));
1430 siocb->scm = &scm;
1431 }
1432 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001433 if (flags & MSG_TRUNC)
1434 copied = skb->len;
Johannes Berg1dacc762009-07-01 11:26:02 +00001435
1436#ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1437 skb_shinfo(skb)->frag_list = frag;
1438#endif
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 skb_free_datagram(sk, skb);
1441
1442 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1443 netlink_dump(sk);
1444
1445 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446out:
1447 netlink_rcv_wake(sk);
1448 return err ? : copied;
1449}
1450
1451static void netlink_data_ready(struct sock *sk, int len)
1452{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001453 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
1456/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001457 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 * complete set of kernel non-blocking support for message
1459 * queueing.
1460 */
1461
1462struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001463netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001464 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001465 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 struct socket *sock;
1468 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001469 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001470 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001472 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001474 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return NULL;
1476
1477 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1478 return NULL;
1479
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001480 /*
1481 * We have to just have a reference on the net from sk, but don't
1482 * get_net it. Besides, we cannot get and then put the net here.
1483 * So we create one inside init_net and the move it to net.
1484 */
1485
1486 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1487 goto out_sock_release_nosk;
1488
1489 sk = sock->sk;
Denis V. Lunevedf02082008-02-29 11:18:32 -08001490 sk_change_net(sk, net);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001491
Patrick McHardy4277a082006-03-20 18:52:01 -08001492 if (groups < 32)
1493 groups = 32;
1494
Johannes Berg6c04bb12009-07-10 09:51:32 +00001495 listeners = kzalloc(NLGRPSZ(groups) + sizeof(struct listeners_rcu_head),
1496 GFP_KERNEL);
Patrick McHardy4277a082006-03-20 18:52:01 -08001497 if (!listeners)
1498 goto out_sock_release;
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 sk->sk_data_ready = netlink_data_ready;
1501 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001502 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001504 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001505 goto out_sock_release;
1506
1507 nlk = nlk_sk(sk);
1508 nlk->flags |= NETLINK_KERNEL_SOCKET;
1509
1510 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001511 if (!nl_table[unit].registered) {
1512 nl_table[unit].groups = groups;
1513 nl_table[unit].listeners = listeners;
1514 nl_table[unit].cb_mutex = cb_mutex;
1515 nl_table[unit].module = module;
1516 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001517 } else {
1518 kfree(listeners);
Denis V. Lunev869e58f2008-01-18 23:53:31 -08001519 nl_table[unit].registered++;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001520 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001521 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001522 return sk;
1523
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001524out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001525 kfree(listeners);
Denis V. Lunev9dfbec12008-02-29 11:17:56 -08001526 netlink_kernel_release(sk);
Pavel Emelyanov23fe1862008-01-30 19:31:06 -08001527 return NULL;
1528
1529out_sock_release_nosk:
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001530 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001531 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001533EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001535
1536void
1537netlink_kernel_release(struct sock *sk)
1538{
Denis V. Lunevedf02082008-02-29 11:18:32 -08001539 sk_release_kernel(sk);
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -08001540}
1541EXPORT_SYMBOL(netlink_kernel_release);
1542
1543
Johannes Berg6c04bb12009-07-10 09:51:32 +00001544static void netlink_free_old_listeners(struct rcu_head *rcu_head)
1545{
1546 struct listeners_rcu_head *lrh;
1547
1548 lrh = container_of(rcu_head, struct listeners_rcu_head, rcu_head);
1549 kfree(lrh->ptr);
1550}
1551
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001552/**
1553 * netlink_change_ngroups - change number of multicast groups
1554 *
1555 * This changes the number of multicast groups that are available
1556 * on a certain netlink family. Note that it is not possible to
Johannes Berg84659eb2007-07-18 15:47:05 -07001557 * change the number of groups to below 32. Also note that it does
1558 * not implicitly call netlink_clear_multicast_users() when the
1559 * number of groups is reduced.
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001560 *
1561 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1562 * @groups: The new number of groups.
1563 */
1564int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1565{
1566 unsigned long *listeners, *old = NULL;
Johannes Berg6c04bb12009-07-10 09:51:32 +00001567 struct listeners_rcu_head *old_rcu_head;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001568 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1569 int err = 0;
1570
1571 if (groups < 32)
1572 groups = 32;
1573
1574 netlink_table_grab();
1575 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
Johannes Berg6c04bb12009-07-10 09:51:32 +00001576 listeners = kzalloc(NLGRPSZ(groups) +
1577 sizeof(struct listeners_rcu_head),
1578 GFP_ATOMIC);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001579 if (!listeners) {
1580 err = -ENOMEM;
1581 goto out_ungrab;
1582 }
1583 old = tbl->listeners;
1584 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1585 rcu_assign_pointer(tbl->listeners, listeners);
Johannes Berg6c04bb12009-07-10 09:51:32 +00001586 /*
1587 * Free the old memory after an RCU grace period so we
1588 * don't leak it. We use call_rcu() here in order to be
1589 * able to call this function from atomic contexts. The
1590 * allocation of this memory will have reserved enough
1591 * space for struct listeners_rcu_head at the end.
1592 */
1593 old_rcu_head = (void *)(tbl->listeners +
1594 NLGRPLONGS(tbl->groups));
1595 old_rcu_head->ptr = old;
1596 call_rcu(&old_rcu_head->rcu_head, netlink_free_old_listeners);
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001597 }
1598 tbl->groups = groups;
1599
1600 out_ungrab:
1601 netlink_table_ungrab();
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001602 return err;
1603}
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001604
Johannes Berg84659eb2007-07-18 15:47:05 -07001605/**
1606 * netlink_clear_multicast_users - kick off multicast listeners
1607 *
1608 * This function removes all listeners from the given group.
1609 * @ksk: The kernel netlink socket, as returned by
1610 * netlink_kernel_create().
1611 * @group: The multicast group to clear.
1612 */
1613void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1614{
1615 struct sock *sk;
1616 struct hlist_node *node;
1617 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1618
1619 netlink_table_grab();
1620
1621 sk_for_each_bound(sk, node, &tbl->mc_list)
1622 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1623
1624 netlink_table_ungrab();
1625}
Johannes Berg84659eb2007-07-18 15:47:05 -07001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001628{
1629 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001631}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001632EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634static void netlink_destroy_callback(struct netlink_callback *cb)
1635{
Wei Yongjun91744f62009-02-25 00:34:41 +00001636 kfree_skb(cb->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 kfree(cb);
1638}
1639
1640/*
1641 * It looks a bit ugly.
1642 * It would be better to create kernel thread.
1643 */
1644
1645static int netlink_dump(struct sock *sk)
1646{
1647 struct netlink_sock *nlk = nlk_sk(sk);
1648 struct netlink_callback *cb;
1649 struct sk_buff *skb;
1650 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001651 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1654 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001655 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001657 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 cb = nlk->cb;
1660 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001661 err = -EINVAL;
1662 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664
1665 len = cb->dump(skb, cb);
1666
1667 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001668 mutex_unlock(nlk->cb_mutex);
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001669
1670 if (sk_filter(sk, skb))
1671 kfree_skb(skb);
1672 else {
1673 skb_queue_tail(&sk->sk_receive_queue, skb);
1674 sk->sk_data_ready(sk, skb->len);
1675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return 0;
1677 }
1678
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001679 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1680 if (!nlh)
1681 goto errout_skb;
1682
1683 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1684
Stephen Hemmingerb1153f22008-03-21 15:46:12 -07001685 if (sk_filter(sk, skb))
1686 kfree_skb(skb);
1687 else {
1688 skb_queue_tail(&sk->sk_receive_queue, skb);
1689 sk->sk_data_ready(sk, skb->len);
1690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Thomas Grafa8f74b22005-11-10 02:25:52 +01001692 if (cb->done)
1693 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001695 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001699
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001700errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001701 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001702 kfree_skb(skb);
1703errout:
1704 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
1707int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
Patrick McHardy3a6c2b42009-08-25 16:07:40 +02001708 const struct nlmsghdr *nlh,
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001709 int (*dump)(struct sk_buff *skb,
1710 struct netlink_callback *),
1711 int (*done)(struct netlink_callback *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 struct netlink_callback *cb;
1714 struct sock *sk;
1715 struct netlink_sock *nlk;
1716
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001717 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (cb == NULL)
1719 return -ENOBUFS;
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 cb->dump = dump;
1722 cb->done = done;
1723 cb->nlh = nlh;
1724 atomic_inc(&skb->users);
1725 cb->skb = skb;
1726
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001727 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (sk == NULL) {
1729 netlink_destroy_callback(cb);
1730 return -ECONNREFUSED;
1731 }
1732 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001733 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001734 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001735 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001736 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 netlink_destroy_callback(cb);
1738 sock_put(sk);
1739 return -EBUSY;
1740 }
1741 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001742 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 netlink_dump(sk);
1745 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001746
1747 /* We successfully started a dump, by returning -EINTR we
1748 * signal not to send ACK even if it was requested.
1749 */
1750 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001752EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1755{
1756 struct sk_buff *skb;
1757 struct nlmsghdr *rep;
1758 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001759 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Thomas Graf339bf982006-11-10 14:10:15 -08001761 /* error messages get the original request appened */
1762 if (err)
1763 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Thomas Graf339bf982006-11-10 14:10:15 -08001765 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (!skb) {
1767 struct sock *sk;
1768
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001769 sk = netlink_lookup(sock_net(in_skb->sk),
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001770 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 NETLINK_CB(in_skb).pid);
1772 if (sk) {
1773 sk->sk_err = ENOBUFS;
1774 sk->sk_error_report(sk);
1775 sock_put(sk);
1776 }
1777 return;
1778 }
1779
1780 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001781 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001782 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001784 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1786}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001787EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001789int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001790 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001791{
Thomas Graf82ace472005-11-10 02:25:53 +01001792 struct nlmsghdr *nlh;
1793 int err;
1794
1795 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001796 int msglen;
1797
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001798 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001799 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001800
Martin Murrayad8e4b72006-01-10 13:02:29 -08001801 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001802 return 0;
1803
Thomas Grafd35b6852007-03-22 23:28:46 -07001804 /* Only requests are handled by the kernel */
1805 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001806 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001807
Thomas Graf45e7ae72007-03-22 23:29:10 -07001808 /* Skip control messages */
1809 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001810 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001811
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001812 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001813 if (err == -EINTR)
1814 goto skip;
1815
1816ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001817 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001818 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001819
Denis V. Lunev5c582982007-10-23 20:29:25 -07001820skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001821 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001822 if (msglen > skb->len)
1823 msglen = skb->len;
1824 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001825 }
1826
1827 return 0;
1828}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001829EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001830
1831/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001832 * nlmsg_notify - send a notification netlink message
1833 * @sk: netlink socket to use
1834 * @skb: notification message
1835 * @pid: destination netlink pid for reports or 0
1836 * @group: destination multicast group or 0
1837 * @report: 1 to report back, 0 to disable
1838 * @flags: allocation flags
1839 */
1840int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1841 unsigned int group, int report, gfp_t flags)
1842{
1843 int err = 0;
1844
1845 if (group) {
1846 int exclude_pid = 0;
1847
1848 if (report) {
1849 atomic_inc(&skb->users);
1850 exclude_pid = pid;
1851 }
1852
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001853 /* errors reported via destination sk->sk_err, but propagate
1854 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1855 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001856 }
1857
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08001858 if (report) {
1859 int err2;
1860
1861 err2 = nlmsg_unicast(sk, skb, pid);
1862 if (!err || err == -ESRCH)
1863 err = err2;
1864 }
Thomas Grafd387f6a2006-08-15 00:31:06 -07001865
1866 return err;
1867}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001868EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870#ifdef CONFIG_PROC_FS
1871struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001872 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 int link;
1874 int hash_idx;
1875};
1876
1877static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1878{
1879 struct nl_seq_iter *iter = seq->private;
1880 int i, j;
1881 struct sock *s;
1882 struct hlist_node *node;
1883 loff_t off = 0;
1884
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001885 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 struct nl_pid_hash *hash = &nl_table[i].hash;
1887
1888 for (j = 0; j <= hash->mask; j++) {
1889 sk_for_each(s, node, &hash->table[j]) {
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001890 if (sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001891 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (off == pos) {
1893 iter->link = i;
1894 iter->hash_idx = j;
1895 return s;
1896 }
1897 ++off;
1898 }
1899 }
1900 }
1901 return NULL;
1902}
1903
1904static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001905 __acquires(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
1907 read_lock(&nl_table_lock);
1908 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1909}
1910
1911static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1912{
1913 struct sock *s;
1914 struct nl_seq_iter *iter;
1915 int i, j;
1916
1917 ++*pos;
1918
1919 if (v == SEQ_START_TOKEN)
1920 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001921
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001922 iter = seq->private;
1923 s = v;
1924 do {
1925 s = sk_next(s);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001926 } while (s && sock_net(s) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (s)
1928 return s;
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 i = iter->link;
1931 j = iter->hash_idx + 1;
1932
1933 do {
1934 struct nl_pid_hash *hash = &nl_table[i].hash;
1935
1936 for (; j <= hash->mask; j++) {
1937 s = sk_head(&hash->table[j]);
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001938 while (s && sock_net(s) != seq_file_net(seq))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001939 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (s) {
1941 iter->link = i;
1942 iter->hash_idx = j;
1943 return s;
1944 }
1945 }
1946
1947 j = 0;
1948 } while (++i < MAX_LINKS);
1949
1950 return NULL;
1951}
1952
1953static void netlink_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet9a429c42008-01-01 21:58:02 -08001954 __releases(nl_table_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 read_unlock(&nl_table_lock);
1957}
1958
1959
1960static int netlink_seq_show(struct seq_file *seq, void *v)
1961{
1962 if (v == SEQ_START_TOKEN)
1963 seq_puts(seq,
1964 "sk Eth Pid Groups "
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001965 "Rmem Wmem Dump Locks Drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 else {
1967 struct sock *s = v;
1968 struct netlink_sock *nlk = nlk_sk(s);
1969
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001970 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %-8d %-8d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 s,
1972 s->sk_protocol,
1973 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001974 nlk->groups ? (u32)nlk->groups[0] : 0,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001975 sk_rmem_alloc_get(s),
1976 sk_wmem_alloc_get(s),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 nlk->cb,
Pablo Neira Ayuso38938bf2009-03-24 16:37:55 -07001978 atomic_read(&s->sk_refcnt),
1979 atomic_read(&s->sk_drops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 );
1981
1982 }
1983 return 0;
1984}
1985
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001986static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 .start = netlink_seq_start,
1988 .next = netlink_seq_next,
1989 .stop = netlink_seq_stop,
1990 .show = netlink_seq_show,
1991};
1992
1993
1994static int netlink_seq_open(struct inode *inode, struct file *file)
1995{
Denis V. Luneve372c412007-11-19 22:31:54 -08001996 return seq_open_net(inode, file, &netlink_seq_ops,
1997 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001998}
1999
Arjan van de Venda7071d2007-02-12 00:55:36 -08002000static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 .owner = THIS_MODULE,
2002 .open = netlink_seq_open,
2003 .read = seq_read,
2004 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08002005 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006};
2007
2008#endif
2009
2010int netlink_register_notifier(struct notifier_block *nb)
2011{
Alan Sterne041c682006-03-27 01:16:30 -08002012 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002014EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016int netlink_unregister_notifier(struct notifier_block *nb)
2017{
Alan Sterne041c682006-03-27 01:16:30 -08002018 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08002020EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002021
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002022static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 .family = PF_NETLINK,
2024 .owner = THIS_MODULE,
2025 .release = netlink_release,
2026 .bind = netlink_bind,
2027 .connect = netlink_connect,
2028 .socketpair = sock_no_socketpair,
2029 .accept = sock_no_accept,
2030 .getname = netlink_getname,
2031 .poll = datagram_poll,
2032 .ioctl = sock_no_ioctl,
2033 .listen = sock_no_listen,
2034 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07002035 .setsockopt = netlink_setsockopt,
2036 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 .sendmsg = netlink_sendmsg,
2038 .recvmsg = netlink_recvmsg,
2039 .mmap = sock_no_mmap,
2040 .sendpage = sock_no_sendpage,
2041};
2042
2043static struct net_proto_family netlink_family_ops = {
2044 .family = PF_NETLINK,
2045 .create = netlink_create,
2046 .owner = THIS_MODULE, /* for consistency 8) */
2047};
2048
Pavel Emelyanov46650792007-10-08 20:38:39 -07002049static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002050{
2051#ifdef CONFIG_PROC_FS
2052 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2053 return -ENOMEM;
2054#endif
2055 return 0;
2056}
2057
Pavel Emelyanov46650792007-10-08 20:38:39 -07002058static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002059{
2060#ifdef CONFIG_PROC_FS
2061 proc_net_remove(net, "netlink");
2062#endif
2063}
2064
Denis V. Lunev022cbae2007-11-13 03:23:50 -08002065static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002066 .init = netlink_net_init,
2067 .exit = netlink_net_exit,
2068};
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070static int __init netlink_proto_init(void)
2071{
2072 struct sk_buff *dummy_skb;
2073 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002074 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 unsigned int order;
2076 int err = proto_register(&netlink_proto, 0);
2077
2078 if (err != 0)
2079 goto out;
2080
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07002081 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002083 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002084 if (!nl_table)
2085 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (num_physpages >= (128 * 1024))
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002088 limit = num_physpages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 else
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002090 limit = num_physpages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Denis Cheng26ff5dd2007-09-16 16:36:02 -07002092 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2093 limit = (1UL << order) / sizeof(struct hlist_head);
2094 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 for (i = 0; i < MAX_LINKS; i++) {
2097 struct nl_pid_hash *hash = &nl_table[i].hash;
2098
Eric Dumazetea729122007-12-11 02:09:47 -08002099 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (!hash->table) {
2101 while (i-- > 0)
2102 nl_pid_hash_free(nl_table[i].hash.table,
2103 1 * sizeof(*hash->table));
2104 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002105 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 hash->max_shift = order;
2108 hash->shift = 0;
2109 hash->mask = 0;
2110 hash->rehash_time = jiffies;
2111 }
2112
2113 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02002114 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09002115 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 rtnetlink_init();
2117out:
2118 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07002119panic:
2120 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123core_initcall(netlink_proto_init);