blob: 1518244ffad9018ce4b3b62c4cfb802e8a001d34 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NETLINK Kernel-user communication protocol.
3 *
4 * Authors: Alan Cox <alan@redhat.com>
5 * 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>
Steve Grubbe7c34972006-04-03 09:08:13 -040057#include <linux/selinux.h>
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070058#include <linux/mutex.h>
Andrew Morton54e0f522005-04-30 07:07:04 +010059
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020060#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <net/sock.h>
62#include <net/scm.h>
Thomas Graf82ace472005-11-10 02:25:53 +010063#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070065#define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
Johannes Bergb4ff4f02007-07-18 15:46:06 -070066#define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68struct netlink_sock {
69 /* struct sock has to be the first member of netlink_sock */
70 struct sock sk;
71 u32 pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -070073 u32 dst_group;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070074 u32 flags;
75 u32 subscriptions;
76 u32 ngroups;
77 unsigned long *groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 unsigned long state;
79 wait_queue_head_t wait;
80 struct netlink_callback *cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070081 struct mutex *cb_mutex;
82 struct mutex cb_def_mutex;
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -070083 void (*netlink_rcv)(struct sk_buff *skb);
Patrick McHardy77247bb2005-08-14 19:27:13 -070084 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
Patrick McHardy77247bb2005-08-14 19:27:13 -070087#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070088#define NETLINK_RECV_PKTINFO 0x2
Patrick McHardy77247bb2005-08-14 19:27:13 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline struct netlink_sock *nlk_sk(struct sock *sk)
91{
Denis Cheng32b21e02007-08-28 15:41:11 -070092 return container_of(sk, struct netlink_sock, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Denis V. Lunevaed81562007-10-10 21:14:32 -070095static inline int netlink_is_kernel(struct sock *sk)
96{
97 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100struct nl_pid_hash {
101 struct hlist_head *table;
102 unsigned long rehash_time;
103
104 unsigned int mask;
105 unsigned int shift;
106
107 unsigned int entries;
108 unsigned int max_shift;
109
110 u32 rnd;
111};
112
113struct netlink_table {
114 struct nl_pid_hash hash;
115 struct hlist_head mc_list;
Patrick McHardy4277a082006-03-20 18:52:01 -0800116 unsigned long *listeners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned int nl_nonroot;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700118 unsigned int groups;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700119 struct mutex *cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700120 struct module *module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700121 int registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
124static struct netlink_table *nl_table;
125
126static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
127
128static int netlink_dump(struct sock *sk);
129static void netlink_destroy_callback(struct netlink_callback *cb);
130
131static DEFINE_RWLOCK(nl_table_lock);
132static atomic_t nl_table_users = ATOMIC_INIT(0);
133
Alan Sterne041c682006-03-27 01:16:30 -0800134static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Patrick McHardyd629b832005-08-14 19:27:50 -0700136static u32 netlink_group_mask(u32 group)
137{
138 return group ? 1 << (group - 1) : 0;
139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
142{
143 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
144}
145
146static void netlink_sock_destruct(struct sock *sk)
147{
Herbert Xu3f660d62007-05-03 03:17:14 -0700148 struct netlink_sock *nlk = nlk_sk(sk);
149
Herbert Xu3f660d62007-05-03 03:17:14 -0700150 if (nlk->cb) {
151 if (nlk->cb->done)
152 nlk->cb->done(nlk->cb);
153 netlink_destroy_callback(nlk->cb);
154 }
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 skb_queue_purge(&sk->sk_receive_queue);
157
158 if (!sock_flag(sk, SOCK_DEAD)) {
159 printk("Freeing alive netlink socket %p\n", sk);
160 return;
161 }
162 BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
163 BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700164 BUG_TRAP(!nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on SMP.
168 * Look, when several writers sleep and reader wakes them up, all but one
169 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
170 * this, _but_ remember, it adds useless work on UP machines.
171 */
172
173static void netlink_table_grab(void)
174{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700175 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (atomic_read(&nl_table_users)) {
178 DECLARE_WAITQUEUE(wait, current);
179
180 add_wait_queue_exclusive(&nl_table_wait, &wait);
181 for(;;) {
182 set_current_state(TASK_UNINTERRUPTIBLE);
183 if (atomic_read(&nl_table_users) == 0)
184 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700185 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700187 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 __set_current_state(TASK_RUNNING);
191 remove_wait_queue(&nl_table_wait, &wait);
192 }
193}
194
195static __inline__ void netlink_table_ungrab(void)
196{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700197 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 wake_up(&nl_table_wait);
199}
200
201static __inline__ void
202netlink_lock_table(void)
203{
204 /* read_lock() synchronizes us to netlink_table_grab */
205
206 read_lock(&nl_table_lock);
207 atomic_inc(&nl_table_users);
208 read_unlock(&nl_table_lock);
209}
210
211static __inline__ void
212netlink_unlock_table(void)
213{
214 if (atomic_dec_and_test(&nl_table_users))
215 wake_up(&nl_table_wait);
216}
217
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200218static __inline__ struct sock *netlink_lookup(struct net *net, int protocol, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 struct nl_pid_hash *hash = &nl_table[protocol].hash;
221 struct hlist_head *head;
222 struct sock *sk;
223 struct hlist_node *node;
224
225 read_lock(&nl_table_lock);
226 head = nl_pid_hashfn(hash, pid);
227 sk_for_each(sk, node, head) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200228 if ((sk->sk_net == net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 sock_hold(sk);
230 goto found;
231 }
232 }
233 sk = NULL;
234found:
235 read_unlock(&nl_table_lock);
236 return sk;
237}
238
239static inline struct hlist_head *nl_pid_hash_alloc(size_t size)
240{
241 if (size <= PAGE_SIZE)
242 return kmalloc(size, GFP_ATOMIC);
243 else
244 return (struct hlist_head *)
245 __get_free_pages(GFP_ATOMIC, get_order(size));
246}
247
248static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
249{
250 if (size <= PAGE_SIZE)
251 kfree(table);
252 else
253 free_pages((unsigned long)table, get_order(size));
254}
255
256static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
257{
258 unsigned int omask, mask, shift;
259 size_t osize, size;
260 struct hlist_head *otable, *table;
261 int i;
262
263 omask = mask = hash->mask;
264 osize = size = (mask + 1) * sizeof(*table);
265 shift = hash->shift;
266
267 if (grow) {
268 if (++shift > hash->max_shift)
269 return 0;
270 mask = mask * 2 + 1;
271 size *= 2;
272 }
273
274 table = nl_pid_hash_alloc(size);
275 if (!table)
276 return 0;
277
278 memset(table, 0, size);
279 otable = hash->table;
280 hash->table = table;
281 hash->mask = mask;
282 hash->shift = shift;
283 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
284
285 for (i = 0; i <= omask; i++) {
286 struct sock *sk;
287 struct hlist_node *node, *tmp;
288
289 sk_for_each_safe(sk, node, tmp, &otable[i])
290 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
291 }
292
293 nl_pid_hash_free(otable, osize);
294 hash->rehash_time = jiffies + 10 * 60 * HZ;
295 return 1;
296}
297
298static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
299{
300 int avg = hash->entries >> hash->shift;
301
302 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
303 return 1;
304
305 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
306 nl_pid_hash_rehash(hash, 0);
307 return 1;
308 }
309
310 return 0;
311}
312
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800313static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Patrick McHardy4277a082006-03-20 18:52:01 -0800315static void
316netlink_update_listeners(struct sock *sk)
317{
318 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
319 struct hlist_node *node;
320 unsigned long mask;
321 unsigned int i;
322
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700323 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800324 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700325 sk_for_each_bound(sk, node, &tbl->mc_list) {
326 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
327 mask |= nlk_sk(sk)->groups[i];
328 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800329 tbl->listeners[i] = mask;
330 }
331 /* this function is only called with the netlink table "grabbed", which
332 * makes sure updates are visible before bind or setsockopt return. */
333}
334
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200335static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
338 struct hlist_head *head;
339 int err = -EADDRINUSE;
340 struct sock *osk;
341 struct hlist_node *node;
342 int len;
343
344 netlink_table_grab();
345 head = nl_pid_hashfn(hash, pid);
346 len = 0;
347 sk_for_each(osk, node, head) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200348 if ((osk->sk_net == net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 break;
350 len++;
351 }
352 if (node)
353 goto err;
354
355 err = -EBUSY;
356 if (nlk_sk(sk)->pid)
357 goto err;
358
359 err = -ENOMEM;
360 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
361 goto err;
362
363 if (len && nl_pid_hash_dilute(hash, len))
364 head = nl_pid_hashfn(hash, pid);
365 hash->entries++;
366 nlk_sk(sk)->pid = pid;
367 sk_add_node(sk, head);
368 err = 0;
369
370err:
371 netlink_table_ungrab();
372 return err;
373}
374
375static void netlink_remove(struct sock *sk)
376{
377 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700378 if (sk_del_node_init(sk))
379 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700380 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 __sk_del_bind_node(sk);
382 netlink_table_ungrab();
383}
384
385static struct proto netlink_proto = {
386 .name = "NETLINK",
387 .owner = THIS_MODULE,
388 .obj_size = sizeof(struct netlink_sock),
389};
390
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700391static int __netlink_create(struct net *net, struct socket *sock,
392 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct sock *sk;
395 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700396
397 sock->ops = &netlink_ops;
398
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700399 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700400 if (!sk)
401 return -ENOMEM;
402
403 sock_init_data(sock, sk);
404
405 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700406 if (cb_mutex)
407 nlk->cb_mutex = cb_mutex;
408 else {
409 nlk->cb_mutex = &nlk->cb_def_mutex;
410 mutex_init(nlk->cb_mutex);
411 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700412 init_waitqueue_head(&nlk->wait);
413
414 sk->sk_destruct = netlink_sock_destruct;
415 sk->sk_protocol = protocol;
416 return 0;
417}
418
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700419static int netlink_create(struct net *net, struct socket *sock, int protocol)
Patrick McHardyab33a172005-08-14 19:31:36 -0700420{
421 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700422 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700423 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700424 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 sock->state = SS_UNCONNECTED;
427
428 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
429 return -ESOCKTNOSUPPORT;
430
431 if (protocol<0 || protocol >= MAX_LINKS)
432 return -EPROTONOSUPPORT;
433
Patrick McHardy77247bb2005-08-14 19:27:13 -0700434 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700435#ifdef CONFIG_KMOD
Patrick McHardyab33a172005-08-14 19:31:36 -0700436 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700437 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700438 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700439 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700440 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700441#endif
442 if (nl_table[protocol].registered &&
443 try_module_get(nl_table[protocol].module))
444 module = nl_table[protocol].module;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700445 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700446 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700447
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700448 if ((err = __netlink_create(net, sock, cb_mutex, protocol)) < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700449 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700451 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700452 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700453out:
454 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Patrick McHardyab33a172005-08-14 19:31:36 -0700456out_module:
457 module_put(module);
458 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
461static int netlink_release(struct socket *sock)
462{
463 struct sock *sk = sock->sk;
464 struct netlink_sock *nlk;
465
466 if (!sk)
467 return 0;
468
469 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700470 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 nlk = nlk_sk(sk);
472
Herbert Xu3f660d62007-05-03 03:17:14 -0700473 /*
474 * OK. Socket is unlinked, any packets that arrive now
475 * will be purged.
476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 sock->sk = NULL;
479 wake_up_interruptible_all(&nlk->wait);
480
481 skb_queue_purge(&sk->sk_write_queue);
482
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700483 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct netlink_notify n = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200485 .net = sk->sk_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 .protocol = sk->sk_protocol,
487 .pid = nlk->pid,
488 };
Alan Sterne041c682006-03-27 01:16:30 -0800489 atomic_notifier_call_chain(&netlink_chain,
490 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900491 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700492
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800493 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700494
Patrick McHardy4277a082006-03-20 18:52:01 -0800495 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700496 if (netlink_is_kernel(sk)) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800497 kfree(nl_table[sk->sk_protocol].listeners);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700498 nl_table[sk->sk_protocol].module = NULL;
Patrick McHardyab33a172005-08-14 19:31:36 -0700499 nl_table[sk->sk_protocol].registered = 0;
Patrick McHardy4277a082006-03-20 18:52:01 -0800500 } else if (nlk->subscriptions)
501 netlink_update_listeners(sk);
502 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700503
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700504 kfree(nlk->groups);
505 nlk->groups = NULL;
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sock_put(sk);
508 return 0;
509}
510
511static int netlink_autobind(struct socket *sock)
512{
513 struct sock *sk = sock->sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200514 struct net *net = sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
516 struct hlist_head *head;
517 struct sock *osk;
518 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800519 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int err;
521 static s32 rover = -4097;
522
523retry:
524 cond_resched();
525 netlink_table_grab();
526 head = nl_pid_hashfn(hash, pid);
527 sk_for_each(osk, node, head) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200528 if ((osk->sk_net != net))
529 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (nlk_sk(osk)->pid == pid) {
531 /* Bind collision, search negative pid values. */
532 pid = rover--;
533 if (rover > -4097)
534 rover = -4097;
535 netlink_table_ungrab();
536 goto retry;
537 }
538 }
539 netlink_table_ungrab();
540
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200541 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (err == -EADDRINUSE)
543 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700544
545 /* If 2 threads race to autobind, that is fine. */
546 if (err == -EBUSY)
547 err = 0;
548
549 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900552static inline int netlink_capable(struct socket *sock, unsigned int flag)
553{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
555 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900556}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700558static void
559netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
560{
561 struct netlink_sock *nlk = nlk_sk(sk);
562
563 if (nlk->subscriptions && !subscriptions)
564 __sk_del_bind_node(sk);
565 else if (!nlk->subscriptions && subscriptions)
566 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
567 nlk->subscriptions = subscriptions;
568}
569
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700570static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700571{
572 struct netlink_sock *nlk = nlk_sk(sk);
573 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700574 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700575 int err = 0;
576
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700577 netlink_table_grab();
578
Patrick McHardy513c2502005-09-06 15:43:59 -0700579 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700580 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700581 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700582 goto out_unlock;
583 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700584
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700585 if (nlk->ngroups >= groups)
586 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700587
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700588 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
589 if (new_groups == NULL) {
590 err = -ENOMEM;
591 goto out_unlock;
592 }
593 memset((char*)new_groups + NLGRPSZ(nlk->ngroups), 0,
594 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
595
596 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700597 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700598 out_unlock:
599 netlink_table_ungrab();
600 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603static int netlink_bind(struct socket *sock, struct sockaddr *addr, int addr_len)
604{
605 struct sock *sk = sock->sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200606 struct net *net = sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct netlink_sock *nlk = nlk_sk(sk);
608 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
609 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (nladdr->nl_family != AF_NETLINK)
612 return -EINVAL;
613
614 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700615 if (nladdr->nl_groups) {
616 if (!netlink_capable(sock, NL_NONROOT_RECV))
617 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700618 err = netlink_realloc_groups(sk);
619 if (err)
620 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (nlk->pid) {
624 if (nladdr->nl_pid != nlk->pid)
625 return -EINVAL;
626 } else {
627 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200628 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 netlink_autobind(sock);
630 if (err)
631 return err;
632 }
633
Patrick McHardy513c2502005-09-06 15:43:59 -0700634 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 0;
636
637 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700638 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900639 hweight32(nladdr->nl_groups) -
640 hweight32(nlk->groups[0]));
641 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800642 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 netlink_table_ungrab();
644
645 return 0;
646}
647
648static int netlink_connect(struct socket *sock, struct sockaddr *addr,
649 int alen, int flags)
650{
651 int err = 0;
652 struct sock *sk = sock->sk;
653 struct netlink_sock *nlk = nlk_sk(sk);
654 struct sockaddr_nl *nladdr=(struct sockaddr_nl*)addr;
655
656 if (addr->sa_family == AF_UNSPEC) {
657 sk->sk_state = NETLINK_UNCONNECTED;
658 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700659 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
661 }
662 if (addr->sa_family != AF_NETLINK)
663 return -EINVAL;
664
665 /* Only superuser is allowed to send multicasts */
666 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
667 return -EPERM;
668
669 if (!nlk->pid)
670 err = netlink_autobind(sock);
671
672 if (err == 0) {
673 sk->sk_state = NETLINK_CONNECTED;
674 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700675 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
678 return err;
679}
680
681static int netlink_getname(struct socket *sock, struct sockaddr *addr, int *addr_len, int peer)
682{
683 struct sock *sk = sock->sk;
684 struct netlink_sock *nlk = nlk_sk(sk);
685 struct sockaddr_nl *nladdr=(struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 nladdr->nl_family = AF_NETLINK;
688 nladdr->nl_pad = 0;
689 *addr_len = sizeof(*nladdr);
690
691 if (peer) {
692 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700693 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 } else {
695 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700696 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698 return 0;
699}
700
701static void netlink_overrun(struct sock *sk)
702{
703 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
704 sk->sk_err = ENOBUFS;
705 sk->sk_error_report(sk);
706 }
707}
708
709static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
710{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 struct sock *sock;
712 struct netlink_sock *nlk;
713
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700714 sock = netlink_lookup(ssk->sk_net, ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!sock)
716 return ERR_PTR(-ECONNREFUSED);
717
718 /* Don't bother queuing skb if kernel socket has no input function */
719 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700720 if (sock->sk_state == NETLINK_CONNECTED &&
721 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 sock_put(sock);
723 return ERR_PTR(-ECONNREFUSED);
724 }
725 return sock;
726}
727
728struct sock *netlink_getsockbyfilp(struct file *filp)
729{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800730 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct sock *sock;
732
733 if (!S_ISSOCK(inode->i_mode))
734 return ERR_PTR(-ENOTSOCK);
735
736 sock = SOCKET_I(inode)->sk;
737 if (sock->sk_family != AF_NETLINK)
738 return ERR_PTR(-EINVAL);
739
740 sock_hold(sock);
741 return sock;
742}
743
744/*
745 * Attach a skb to a netlink socket.
746 * The caller must hold a reference to the destination socket. On error, the
747 * reference is dropped. The skb is not send to the destination, just all
748 * all error checks are performed and memory in the queue is reserved.
749 * Return values:
750 * < 0: error. skb freed, reference to sock dropped.
751 * 0: continue
752 * 1: repeat lookup - reference dropped while waiting for socket memory.
753 */
Alexey Kuznetsova70ea992006-02-09 16:40:11 -0800754int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800755 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct netlink_sock *nlk;
758
759 nlk = nlk_sk(sk);
760
761 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
762 test_bit(0, &nlk->state)) {
763 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800764 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700765 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 netlink_overrun(sk);
767 sock_put(sk);
768 kfree_skb(skb);
769 return -EAGAIN;
770 }
771
772 __set_current_state(TASK_INTERRUPTIBLE);
773 add_wait_queue(&nlk->wait, &wait);
774
775 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
776 test_bit(0, &nlk->state)) &&
777 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800778 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 __set_current_state(TASK_RUNNING);
781 remove_wait_queue(&nlk->wait, &wait);
782 sock_put(sk);
783
784 if (signal_pending(current)) {
785 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800786 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788 return 1;
789 }
790 skb_set_owner_r(skb, sk);
791 return 0;
792}
793
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700794int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int len = skb->len;
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 skb_queue_tail(&sk->sk_receive_queue, skb);
799 sk->sk_data_ready(sk, len);
800 sock_put(sk);
801 return len;
802}
803
804void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
805{
806 kfree_skb(skb);
807 sock_put(sk);
808}
809
Victor Fusco37da6472005-07-18 13:35:43 -0700810static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100811 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 int delta;
814
815 skb_orphan(skb);
816
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700817 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (delta * 2 < skb->truesize)
819 return skb;
820
821 if (skb_shared(skb)) {
822 struct sk_buff *nskb = skb_clone(skb, allocation);
823 if (!nskb)
824 return skb;
825 kfree_skb(skb);
826 skb = nskb;
827 }
828
829 if (!pskb_expand_head(skb, 0, -delta, allocation))
830 skb->truesize -= delta;
831
832 return skb;
833}
834
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700835static inline void netlink_rcv_wake(struct sock *sk)
836{
837 struct netlink_sock *nlk = nlk_sk(sk);
838
839 if (skb_queue_empty(&sk->sk_receive_queue))
840 clear_bit(0, &nlk->state);
841 if (!test_bit(0, &nlk->state))
842 wake_up_interruptible(&nlk->wait);
843}
844
845static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
846{
847 int ret;
848 struct netlink_sock *nlk = nlk_sk(sk);
849
850 ret = -ECONNREFUSED;
851 if (nlk->netlink_rcv != NULL) {
852 ret = skb->len;
853 skb_set_owner_r(skb, sk);
854 nlk->netlink_rcv(skb);
855 }
856 kfree_skb(skb);
857 sock_put(sk);
858 return ret;
859}
860
861int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
862 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 struct sock *sk;
865 int err;
866 long timeo;
867
868 skb = netlink_trim(skb, gfp_any());
869
870 timeo = sock_sndtimeo(ssk, nonblock);
871retry:
872 sk = netlink_getsockbypid(ssk, pid);
873 if (IS_ERR(sk)) {
874 kfree_skb(skb);
875 return PTR_ERR(sk);
876 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700877 if (netlink_is_kernel(sk))
878 return netlink_unicast_kernel(sk, skb);
879
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800880 err = netlink_attachskb(sk, skb, nonblock, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (err == 1)
882 goto retry;
883 if (err)
884 return err;
885
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700886 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Patrick McHardy4277a082006-03-20 18:52:01 -0800889int netlink_has_listeners(struct sock *sk, unsigned int group)
890{
891 int res = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700892 unsigned long *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800893
Denis V. Lunevaed81562007-10-10 21:14:32 -0700894 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700895
896 rcu_read_lock();
897 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
898
Patrick McHardy4277a082006-03-20 18:52:01 -0800899 if (group - 1 < nl_table[sk->sk_protocol].groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700900 res = test_bit(group - 1, listeners);
901
902 rcu_read_unlock();
903
Patrick McHardy4277a082006-03-20 18:52:01 -0800904 return res;
905}
906EXPORT_SYMBOL_GPL(netlink_has_listeners);
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908static __inline__ int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
909{
910 struct netlink_sock *nlk = nlk_sk(sk);
911
912 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
913 !test_bit(0, &nlk->state)) {
914 skb_set_owner_r(skb, sk);
915 skb_queue_tail(&sk->sk_receive_queue, skb);
916 sk->sk_data_ready(sk, skb->len);
917 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
918 }
919 return -1;
920}
921
922struct netlink_broadcast_data {
923 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200924 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 u32 pid;
926 u32 group;
927 int failure;
928 int congested;
929 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400930 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 struct sk_buff *skb, *skb2;
932};
933
934static inline int do_one_broadcast(struct sock *sk,
935 struct netlink_broadcast_data *p)
936{
937 struct netlink_sock *nlk = nlk_sk(sk);
938 int val;
939
940 if (p->exclude_sk == sk)
941 goto out;
942
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700943 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
944 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 goto out;
946
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200947 if ((sk->sk_net != p->net))
948 goto out;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (p->failure) {
951 netlink_overrun(sk);
952 goto out;
953 }
954
955 sock_hold(sk);
956 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700957 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 p->skb2 = skb_clone(p->skb, p->allocation);
959 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700960 p->skb2 = skb_get(p->skb);
961 /*
962 * skb ownership may have been set when
963 * delivered to a previous socket.
964 */
965 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967 }
968 if (p->skb2 == NULL) {
969 netlink_overrun(sk);
970 /* Clone failed. Notify ALL listeners. */
971 p->failure = 1;
972 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
973 netlink_overrun(sk);
974 } else {
975 p->congested |= val;
976 p->delivered = 1;
977 p->skb2 = NULL;
978 }
979 sock_put(sk);
980
981out:
982 return 0;
983}
984
985int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +0100986 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200988 struct net *net = ssk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 struct netlink_broadcast_data info;
990 struct hlist_node *node;
991 struct sock *sk;
992
993 skb = netlink_trim(skb, allocation);
994
995 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200996 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 info.pid = pid;
998 info.group = group;
999 info.failure = 0;
1000 info.congested = 0;
1001 info.delivered = 0;
1002 info.allocation = allocation;
1003 info.skb = skb;
1004 info.skb2 = NULL;
1005
1006 /* While we sleep in clone, do not allow to change socket list */
1007
1008 netlink_lock_table();
1009
1010 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1011 do_one_broadcast(sk, &info);
1012
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001013 kfree_skb(skb);
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 netlink_unlock_table();
1016
1017 if (info.skb2)
1018 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 if (info.delivered) {
1021 if (info.congested && (allocation & __GFP_WAIT))
1022 yield();
1023 return 0;
1024 }
1025 if (info.failure)
1026 return -ENOBUFS;
1027 return -ESRCH;
1028}
1029
1030struct netlink_set_err_data {
1031 struct sock *exclude_sk;
1032 u32 pid;
1033 u32 group;
1034 int code;
1035};
1036
1037static inline int do_one_set_err(struct sock *sk,
1038 struct netlink_set_err_data *p)
1039{
1040 struct netlink_sock *nlk = nlk_sk(sk);
1041
1042 if (sk == p->exclude_sk)
1043 goto out;
1044
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001045 if (sk->sk_net != p->exclude_sk->sk_net)
1046 goto out;
1047
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001048 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1049 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 goto out;
1051
1052 sk->sk_err = p->code;
1053 sk->sk_error_report(sk);
1054out:
1055 return 0;
1056}
1057
1058void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1059{
1060 struct netlink_set_err_data info;
1061 struct hlist_node *node;
1062 struct sock *sk;
1063
1064 info.exclude_sk = ssk;
1065 info.pid = pid;
1066 info.group = group;
1067 info.code = code;
1068
1069 read_lock(&nl_table_lock);
1070
1071 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1072 do_one_set_err(sk, &info);
1073
1074 read_unlock(&nl_table_lock);
1075}
1076
Johannes Berg84659eb2007-07-18 15:47:05 -07001077/* must be called with netlink table grabbed */
1078static void netlink_update_socket_mc(struct netlink_sock *nlk,
1079 unsigned int group,
1080 int is_new)
1081{
1082 int old, new = !!is_new, subscriptions;
1083
1084 old = test_bit(group - 1, nlk->groups);
1085 subscriptions = nlk->subscriptions - old + new;
1086 if (new)
1087 __set_bit(group - 1, nlk->groups);
1088 else
1089 __clear_bit(group - 1, nlk->groups);
1090 netlink_update_subscriptions(&nlk->sk, subscriptions);
1091 netlink_update_listeners(&nlk->sk);
1092}
1093
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001094static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001095 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001096{
1097 struct sock *sk = sock->sk;
1098 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001099 unsigned int val = 0;
1100 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001101
1102 if (level != SOL_NETLINK)
1103 return -ENOPROTOOPT;
1104
1105 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001106 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001107 return -EFAULT;
1108
1109 switch (optname) {
1110 case NETLINK_PKTINFO:
1111 if (val)
1112 nlk->flags |= NETLINK_RECV_PKTINFO;
1113 else
1114 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1115 err = 0;
1116 break;
1117 case NETLINK_ADD_MEMBERSHIP:
1118 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001119 if (!netlink_capable(sock, NL_NONROOT_RECV))
1120 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001121 err = netlink_realloc_groups(sk);
1122 if (err)
1123 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001124 if (!val || val - 1 >= nlk->ngroups)
1125 return -EINVAL;
1126 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001127 netlink_update_socket_mc(nlk, val,
1128 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001129 netlink_table_ungrab();
1130 err = 0;
1131 break;
1132 }
1133 default:
1134 err = -ENOPROTOOPT;
1135 }
1136 return err;
1137}
1138
1139static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001140 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001141{
1142 struct sock *sk = sock->sk;
1143 struct netlink_sock *nlk = nlk_sk(sk);
1144 int len, val, err;
1145
1146 if (level != SOL_NETLINK)
1147 return -ENOPROTOOPT;
1148
1149 if (get_user(len, optlen))
1150 return -EFAULT;
1151 if (len < 0)
1152 return -EINVAL;
1153
1154 switch (optname) {
1155 case NETLINK_PKTINFO:
1156 if (len < sizeof(int))
1157 return -EINVAL;
1158 len = sizeof(int);
1159 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001160 if (put_user(len, optlen) ||
1161 put_user(val, optval))
1162 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001163 err = 0;
1164 break;
1165 default:
1166 err = -ENOPROTOOPT;
1167 }
1168 return err;
1169}
1170
1171static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1172{
1173 struct nl_pktinfo info;
1174
1175 info.group = NETLINK_CB(skb).dst_group;
1176 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1177}
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1180 struct msghdr *msg, size_t len)
1181{
1182 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1183 struct sock *sk = sock->sk;
1184 struct netlink_sock *nlk = nlk_sk(sk);
1185 struct sockaddr_nl *addr=msg->msg_name;
1186 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001187 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 struct sk_buff *skb;
1189 int err;
1190 struct scm_cookie scm;
1191
1192 if (msg->msg_flags&MSG_OOB)
1193 return -EOPNOTSUPP;
1194
1195 if (NULL == siocb->scm)
1196 siocb->scm = &scm;
1197 err = scm_send(sock, msg, siocb->scm);
1198 if (err < 0)
1199 return err;
1200
1201 if (msg->msg_namelen) {
1202 if (addr->nl_family != AF_NETLINK)
1203 return -EINVAL;
1204 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001205 dst_group = ffs(addr->nl_groups);
1206 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return -EPERM;
1208 } else {
1209 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001210 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212
1213 if (!nlk->pid) {
1214 err = netlink_autobind(sock);
1215 if (err)
1216 goto out;
1217 }
1218
1219 err = -EMSGSIZE;
1220 if (len > sk->sk_sndbuf - 32)
1221 goto out;
1222 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001223 skb = alloc_skb(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (skb==NULL)
1225 goto out;
1226
1227 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001228 NETLINK_CB(skb).dst_group = dst_group;
Serge Hallync94c2572005-04-29 16:27:17 +01001229 NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);
Steve Grubbe7c34972006-04-03 09:08:13 -04001230 selinux_get_task_sid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1232
1233 /* What can I do? Netlink is asynchronous, so that
1234 we will have to save current capabilities to
1235 check them, when this message will be delivered
1236 to corresponding kernel module. --ANK (980802)
1237 */
1238
1239 err = -EFAULT;
1240 if (memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len)) {
1241 kfree_skb(skb);
1242 goto out;
1243 }
1244
1245 err = security_netlink_send(sk, skb);
1246 if (err) {
1247 kfree_skb(skb);
1248 goto out;
1249 }
1250
Patrick McHardyd629b832005-08-14 19:27:50 -07001251 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001253 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1256
1257out:
1258 return err;
1259}
1260
1261static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1262 struct msghdr *msg, size_t len,
1263 int flags)
1264{
1265 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1266 struct scm_cookie scm;
1267 struct sock *sk = sock->sk;
1268 struct netlink_sock *nlk = nlk_sk(sk);
1269 int noblock = flags&MSG_DONTWAIT;
1270 size_t copied;
1271 struct sk_buff *skb;
1272 int err;
1273
1274 if (flags&MSG_OOB)
1275 return -EOPNOTSUPP;
1276
1277 copied = 0;
1278
1279 skb = skb_recv_datagram(sk,flags,noblock,&err);
1280 if (skb==NULL)
1281 goto out;
1282
1283 msg->msg_namelen = 0;
1284
1285 copied = skb->len;
1286 if (len < copied) {
1287 msg->msg_flags |= MSG_TRUNC;
1288 copied = len;
1289 }
1290
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001291 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1293
1294 if (msg->msg_name) {
1295 struct sockaddr_nl *addr = (struct sockaddr_nl*)msg->msg_name;
1296 addr->nl_family = AF_NETLINK;
1297 addr->nl_pad = 0;
1298 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001299 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 msg->msg_namelen = sizeof(*addr);
1301 }
1302
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001303 if (nlk->flags & NETLINK_RECV_PKTINFO)
1304 netlink_cmsg_recv_pktinfo(msg, skb);
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (NULL == siocb->scm) {
1307 memset(&scm, 0, sizeof(scm));
1308 siocb->scm = &scm;
1309 }
1310 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001311 if (flags & MSG_TRUNC)
1312 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 skb_free_datagram(sk, skb);
1314
1315 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1316 netlink_dump(sk);
1317
1318 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319out:
1320 netlink_rcv_wake(sk);
1321 return err ? : copied;
1322}
1323
1324static void netlink_data_ready(struct sock *sk, int len)
1325{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001326 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
1329/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001330 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 * complete set of kernel non-blocking support for message
1332 * queueing.
1333 */
1334
1335struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001336netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001337 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001338 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 struct socket *sock;
1341 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001342 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001343 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001345 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 if (unit<0 || unit>=MAX_LINKS)
1348 return NULL;
1349
1350 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1351 return NULL;
1352
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001353 if (__netlink_create(net, sock, cb_mutex, unit) < 0)
Patrick McHardy77247bb2005-08-14 19:27:13 -07001354 goto out_sock_release;
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001355
Patrick McHardy4277a082006-03-20 18:52:01 -08001356 if (groups < 32)
1357 groups = 32;
1358
1359 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1360 if (!listeners)
1361 goto out_sock_release;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 sk = sock->sk;
1364 sk->sk_data_ready = netlink_data_ready;
1365 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001366 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001368 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001369 goto out_sock_release;
1370
1371 nlk = nlk_sk(sk);
1372 nlk->flags |= NETLINK_KERNEL_SOCKET;
1373
1374 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001375 if (!nl_table[unit].registered) {
1376 nl_table[unit].groups = groups;
1377 nl_table[unit].listeners = listeners;
1378 nl_table[unit].cb_mutex = cb_mutex;
1379 nl_table[unit].module = module;
1380 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001381 } else {
1382 kfree(listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001383 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001384 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001385
1386 return sk;
1387
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001388out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001389 kfree(listeners);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001390 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001391 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001394/**
1395 * netlink_change_ngroups - change number of multicast groups
1396 *
1397 * This changes the number of multicast groups that are available
1398 * on a certain netlink family. Note that it is not possible to
Johannes Berg84659eb2007-07-18 15:47:05 -07001399 * change the number of groups to below 32. Also note that it does
1400 * not implicitly call netlink_clear_multicast_users() when the
1401 * number of groups is reduced.
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001402 *
1403 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1404 * @groups: The new number of groups.
1405 */
1406int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1407{
1408 unsigned long *listeners, *old = NULL;
1409 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1410 int err = 0;
1411
1412 if (groups < 32)
1413 groups = 32;
1414
1415 netlink_table_grab();
1416 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1417 listeners = kzalloc(NLGRPSZ(groups), GFP_ATOMIC);
1418 if (!listeners) {
1419 err = -ENOMEM;
1420 goto out_ungrab;
1421 }
1422 old = tbl->listeners;
1423 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1424 rcu_assign_pointer(tbl->listeners, listeners);
1425 }
1426 tbl->groups = groups;
1427
1428 out_ungrab:
1429 netlink_table_ungrab();
1430 synchronize_rcu();
1431 kfree(old);
1432 return err;
1433}
1434EXPORT_SYMBOL(netlink_change_ngroups);
1435
Johannes Berg84659eb2007-07-18 15:47:05 -07001436/**
1437 * netlink_clear_multicast_users - kick off multicast listeners
1438 *
1439 * This function removes all listeners from the given group.
1440 * @ksk: The kernel netlink socket, as returned by
1441 * netlink_kernel_create().
1442 * @group: The multicast group to clear.
1443 */
1444void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1445{
1446 struct sock *sk;
1447 struct hlist_node *node;
1448 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1449
1450 netlink_table_grab();
1451
1452 sk_for_each_bound(sk, node, &tbl->mc_list)
1453 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1454
1455 netlink_table_ungrab();
1456}
1457EXPORT_SYMBOL(netlink_clear_multicast_users);
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001460{
1461 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001463}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465static void netlink_destroy_callback(struct netlink_callback *cb)
1466{
1467 if (cb->skb)
1468 kfree_skb(cb->skb);
1469 kfree(cb);
1470}
1471
1472/*
1473 * It looks a bit ugly.
1474 * It would be better to create kernel thread.
1475 */
1476
1477static int netlink_dump(struct sock *sk)
1478{
1479 struct netlink_sock *nlk = nlk_sk(sk);
1480 struct netlink_callback *cb;
1481 struct sk_buff *skb;
1482 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001483 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1486 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001487 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001489 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 cb = nlk->cb;
1492 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001493 err = -EINVAL;
1494 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496
1497 len = cb->dump(skb, cb);
1498
1499 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001500 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 skb_queue_tail(&sk->sk_receive_queue, skb);
1502 sk->sk_data_ready(sk, len);
1503 return 0;
1504 }
1505
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001506 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1507 if (!nlh)
1508 goto errout_skb;
1509
1510 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 skb_queue_tail(&sk->sk_receive_queue, skb);
1513 sk->sk_data_ready(sk, skb->len);
1514
Thomas Grafa8f74b22005-11-10 02:25:52 +01001515 if (cb->done)
1516 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001518 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001522
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001523errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001524 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001525 kfree_skb(skb);
1526errout:
1527 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
1530int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1531 struct nlmsghdr *nlh,
1532 int (*dump)(struct sk_buff *skb, struct netlink_callback*),
1533 int (*done)(struct netlink_callback*))
1534{
1535 struct netlink_callback *cb;
1536 struct sock *sk;
1537 struct netlink_sock *nlk;
1538
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001539 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (cb == NULL)
1541 return -ENOBUFS;
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 cb->dump = dump;
1544 cb->done = done;
1545 cb->nlh = nlh;
1546 atomic_inc(&skb->users);
1547 cb->skb = skb;
1548
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001549 sk = netlink_lookup(ssk->sk_net, ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (sk == NULL) {
1551 netlink_destroy_callback(cb);
1552 return -ECONNREFUSED;
1553 }
1554 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001555 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001556 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001557 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001558 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 netlink_destroy_callback(cb);
1560 sock_put(sk);
1561 return -EBUSY;
1562 }
1563 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001564 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 netlink_dump(sk);
1567 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001568
1569 /* We successfully started a dump, by returning -EINTR we
1570 * signal not to send ACK even if it was requested.
1571 */
1572 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1576{
1577 struct sk_buff *skb;
1578 struct nlmsghdr *rep;
1579 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001580 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Thomas Graf339bf982006-11-10 14:10:15 -08001582 /* error messages get the original request appened */
1583 if (err)
1584 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Thomas Graf339bf982006-11-10 14:10:15 -08001586 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (!skb) {
1588 struct sock *sk;
1589
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001590 sk = netlink_lookup(in_skb->sk->sk_net,
1591 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 NETLINK_CB(in_skb).pid);
1593 if (sk) {
1594 sk->sk_err = ENOBUFS;
1595 sk->sk_error_report(sk);
1596 sock_put(sk);
1597 }
1598 return;
1599 }
1600
1601 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001602 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001603 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001605 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1607}
1608
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001609int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001610 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001611{
Thomas Graf82ace472005-11-10 02:25:53 +01001612 struct nlmsghdr *nlh;
1613 int err;
1614
1615 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001616 int msglen;
1617
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001618 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001619 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001620
Martin Murrayad8e4b72006-01-10 13:02:29 -08001621 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001622 return 0;
1623
Thomas Grafd35b6852007-03-22 23:28:46 -07001624 /* Only requests are handled by the kernel */
1625 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001626 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001627
Thomas Graf45e7ae72007-03-22 23:29:10 -07001628 /* Skip control messages */
1629 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001630 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001631
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001632 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001633 if (err == -EINTR)
1634 goto skip;
1635
1636ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001637 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001638 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001639
Denis V. Lunev5c582982007-10-23 20:29:25 -07001640skip:
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001641 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1642 if (msglen > skb->len)
1643 msglen = skb->len;
1644 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001645 }
1646
1647 return 0;
1648}
1649
1650/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001651 * nlmsg_notify - send a notification netlink message
1652 * @sk: netlink socket to use
1653 * @skb: notification message
1654 * @pid: destination netlink pid for reports or 0
1655 * @group: destination multicast group or 0
1656 * @report: 1 to report back, 0 to disable
1657 * @flags: allocation flags
1658 */
1659int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1660 unsigned int group, int report, gfp_t flags)
1661{
1662 int err = 0;
1663
1664 if (group) {
1665 int exclude_pid = 0;
1666
1667 if (report) {
1668 atomic_inc(&skb->users);
1669 exclude_pid = pid;
1670 }
1671
1672 /* errors reported via destination sk->sk_err */
1673 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1674 }
1675
1676 if (report)
1677 err = nlmsg_unicast(sk, skb, pid);
1678
1679 return err;
1680}
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682#ifdef CONFIG_PROC_FS
1683struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001684 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int link;
1686 int hash_idx;
1687};
1688
1689static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1690{
1691 struct nl_seq_iter *iter = seq->private;
1692 int i, j;
1693 struct sock *s;
1694 struct hlist_node *node;
1695 loff_t off = 0;
1696
1697 for (i=0; i<MAX_LINKS; i++) {
1698 struct nl_pid_hash *hash = &nl_table[i].hash;
1699
1700 for (j = 0; j <= hash->mask; j++) {
1701 sk_for_each(s, node, &hash->table[j]) {
Denis V. Luneve372c412007-11-19 22:31:54 -08001702 if (iter->p.net != s->sk_net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001703 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if (off == pos) {
1705 iter->link = i;
1706 iter->hash_idx = j;
1707 return s;
1708 }
1709 ++off;
1710 }
1711 }
1712 }
1713 return NULL;
1714}
1715
1716static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1717{
1718 read_lock(&nl_table_lock);
1719 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1720}
1721
1722static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1723{
1724 struct sock *s;
1725 struct nl_seq_iter *iter;
1726 int i, j;
1727
1728 ++*pos;
1729
1730 if (v == SEQ_START_TOKEN)
1731 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001732
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001733 iter = seq->private;
1734 s = v;
1735 do {
1736 s = sk_next(s);
Denis V. Luneve372c412007-11-19 22:31:54 -08001737 } while (s && (iter->p.net != s->sk_net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (s)
1739 return s;
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 i = iter->link;
1742 j = iter->hash_idx + 1;
1743
1744 do {
1745 struct nl_pid_hash *hash = &nl_table[i].hash;
1746
1747 for (; j <= hash->mask; j++) {
1748 s = sk_head(&hash->table[j]);
Denis V. Luneve372c412007-11-19 22:31:54 -08001749 while (s && (iter->p.net != s->sk_net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001750 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (s) {
1752 iter->link = i;
1753 iter->hash_idx = j;
1754 return s;
1755 }
1756 }
1757
1758 j = 0;
1759 } while (++i < MAX_LINKS);
1760
1761 return NULL;
1762}
1763
1764static void netlink_seq_stop(struct seq_file *seq, void *v)
1765{
1766 read_unlock(&nl_table_lock);
1767}
1768
1769
1770static int netlink_seq_show(struct seq_file *seq, void *v)
1771{
1772 if (v == SEQ_START_TOKEN)
1773 seq_puts(seq,
1774 "sk Eth Pid Groups "
1775 "Rmem Wmem Dump Locks\n");
1776 else {
1777 struct sock *s = v;
1778 struct netlink_sock *nlk = nlk_sk(s);
1779
1780 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1781 s,
1782 s->sk_protocol,
1783 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001784 nlk->groups ? (u32)nlk->groups[0] : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 atomic_read(&s->sk_rmem_alloc),
1786 atomic_read(&s->sk_wmem_alloc),
1787 nlk->cb,
1788 atomic_read(&s->sk_refcnt)
1789 );
1790
1791 }
1792 return 0;
1793}
1794
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001795static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 .start = netlink_seq_start,
1797 .next = netlink_seq_next,
1798 .stop = netlink_seq_stop,
1799 .show = netlink_seq_show,
1800};
1801
1802
1803static int netlink_seq_open(struct inode *inode, struct file *file)
1804{
Denis V. Luneve372c412007-11-19 22:31:54 -08001805 return seq_open_net(inode, file, &netlink_seq_ops,
1806 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001807}
1808
Arjan van de Venda7071d2007-02-12 00:55:36 -08001809static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 .owner = THIS_MODULE,
1811 .open = netlink_seq_open,
1812 .read = seq_read,
1813 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08001814 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815};
1816
1817#endif
1818
1819int netlink_register_notifier(struct notifier_block *nb)
1820{
Alan Sterne041c682006-03-27 01:16:30 -08001821 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
1824int netlink_unregister_notifier(struct notifier_block *nb)
1825{
Alan Sterne041c682006-03-27 01:16:30 -08001826 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001828
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001829static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 .family = PF_NETLINK,
1831 .owner = THIS_MODULE,
1832 .release = netlink_release,
1833 .bind = netlink_bind,
1834 .connect = netlink_connect,
1835 .socketpair = sock_no_socketpair,
1836 .accept = sock_no_accept,
1837 .getname = netlink_getname,
1838 .poll = datagram_poll,
1839 .ioctl = sock_no_ioctl,
1840 .listen = sock_no_listen,
1841 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001842 .setsockopt = netlink_setsockopt,
1843 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 .sendmsg = netlink_sendmsg,
1845 .recvmsg = netlink_recvmsg,
1846 .mmap = sock_no_mmap,
1847 .sendpage = sock_no_sendpage,
1848};
1849
1850static struct net_proto_family netlink_family_ops = {
1851 .family = PF_NETLINK,
1852 .create = netlink_create,
1853 .owner = THIS_MODULE, /* for consistency 8) */
1854};
1855
Pavel Emelyanov46650792007-10-08 20:38:39 -07001856static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001857{
1858#ifdef CONFIG_PROC_FS
1859 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
1860 return -ENOMEM;
1861#endif
1862 return 0;
1863}
1864
Pavel Emelyanov46650792007-10-08 20:38:39 -07001865static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001866{
1867#ifdef CONFIG_PROC_FS
1868 proc_net_remove(net, "netlink");
1869#endif
1870}
1871
Denis V. Lunev022cbae2007-11-13 03:23:50 -08001872static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001873 .init = netlink_net_init,
1874 .exit = netlink_net_exit,
1875};
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877static int __init netlink_proto_init(void)
1878{
1879 struct sk_buff *dummy_skb;
1880 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001881 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 unsigned int order;
1883 int err = proto_register(&netlink_proto, 0);
1884
1885 if (err != 0)
1886 goto out;
1887
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001888 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001890 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001891 if (!nl_table)
1892 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (num_physpages >= (128 * 1024))
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001895 limit = num_physpages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 else
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001897 limit = num_physpages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001899 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
1900 limit = (1UL << order) / sizeof(struct hlist_head);
1901 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 for (i = 0; i < MAX_LINKS; i++) {
1904 struct nl_pid_hash *hash = &nl_table[i].hash;
1905
1906 hash->table = nl_pid_hash_alloc(1 * sizeof(*hash->table));
1907 if (!hash->table) {
1908 while (i-- > 0)
1909 nl_pid_hash_free(nl_table[i].hash.table,
1910 1 * sizeof(*hash->table));
1911 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001912 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914 memset(hash->table, 0, 1 * sizeof(*hash->table));
1915 hash->max_shift = order;
1916 hash->shift = 0;
1917 hash->mask = 0;
1918 hash->rehash_time = jiffies;
1919 }
1920
1921 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001922 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001923 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 rtnetlink_init();
1925out:
1926 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001927panic:
1928 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931core_initcall(netlink_proto_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933EXPORT_SYMBOL(netlink_ack);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001934EXPORT_SYMBOL(netlink_rcv_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935EXPORT_SYMBOL(netlink_broadcast);
1936EXPORT_SYMBOL(netlink_dump_start);
1937EXPORT_SYMBOL(netlink_kernel_create);
1938EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939EXPORT_SYMBOL(netlink_set_nonroot);
1940EXPORT_SYMBOL(netlink_unicast);
1941EXPORT_SYMBOL(netlink_unregister_notifier);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001942EXPORT_SYMBOL(nlmsg_notify);