blob: 641cfbc278d8534acbc7514bc4a5d3d31c255fec [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
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66struct netlink_sock {
67 /* struct sock has to be the first member of netlink_sock */
68 struct sock sk;
69 u32 pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -070071 u32 dst_group;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -070072 u32 flags;
73 u32 subscriptions;
74 u32 ngroups;
75 unsigned long *groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned long state;
77 wait_queue_head_t wait;
78 struct netlink_callback *cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -070079 struct mutex *cb_mutex;
80 struct mutex cb_def_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 void (*data_ready)(struct sock *sk, int bytes);
Patrick McHardy77247bb2005-08-14 19:27:13 -070082 struct module *module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Patrick McHardy77247bb2005-08-14 19:27:13 -070085#define NETLINK_KERNEL_SOCKET 0x1
Patrick McHardy9a4595b2005-08-15 12:32:15 -070086#define NETLINK_RECV_PKTINFO 0x2
Patrick McHardy77247bb2005-08-14 19:27:13 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static inline struct netlink_sock *nlk_sk(struct sock *sk)
89{
90 return (struct netlink_sock *)sk;
91}
92
93struct nl_pid_hash {
94 struct hlist_head *table;
95 unsigned long rehash_time;
96
97 unsigned int mask;
98 unsigned int shift;
99
100 unsigned int entries;
101 unsigned int max_shift;
102
103 u32 rnd;
104};
105
106struct netlink_table {
107 struct nl_pid_hash hash;
108 struct hlist_head mc_list;
Patrick McHardy4277a082006-03-20 18:52:01 -0800109 unsigned long *listeners;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 unsigned int nl_nonroot;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700111 unsigned int groups;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700112 struct mutex *cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700113 struct module *module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700114 int registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117static struct netlink_table *nl_table;
118
119static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
120
121static int netlink_dump(struct sock *sk);
122static void netlink_destroy_callback(struct netlink_callback *cb);
Adrian Bunk42bad1d2007-04-26 00:57:41 -0700123static void netlink_queue_skip(struct nlmsghdr *nlh, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125static DEFINE_RWLOCK(nl_table_lock);
126static atomic_t nl_table_users = ATOMIC_INIT(0);
127
Alan Sterne041c682006-03-27 01:16:30 -0800128static ATOMIC_NOTIFIER_HEAD(netlink_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Patrick McHardyd629b832005-08-14 19:27:50 -0700130static u32 netlink_group_mask(u32 group)
131{
132 return group ? 1 << (group - 1) : 0;
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
136{
137 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
138}
139
140static void netlink_sock_destruct(struct sock *sk)
141{
Herbert Xu3f660d62007-05-03 03:17:14 -0700142 struct netlink_sock *nlk = nlk_sk(sk);
143
Herbert Xu3f660d62007-05-03 03:17:14 -0700144 if (nlk->cb) {
145 if (nlk->cb->done)
146 nlk->cb->done(nlk->cb);
147 netlink_destroy_callback(nlk->cb);
148 }
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 skb_queue_purge(&sk->sk_receive_queue);
151
152 if (!sock_flag(sk, SOCK_DEAD)) {
153 printk("Freeing alive netlink socket %p\n", sk);
154 return;
155 }
156 BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
157 BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700158 BUG_TRAP(!nlk_sk(sk)->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on SMP.
162 * Look, when several writers sleep and reader wakes them up, all but one
163 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
164 * this, _but_ remember, it adds useless work on UP machines.
165 */
166
167static void netlink_table_grab(void)
168{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700169 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 if (atomic_read(&nl_table_users)) {
172 DECLARE_WAITQUEUE(wait, current);
173
174 add_wait_queue_exclusive(&nl_table_wait, &wait);
175 for(;;) {
176 set_current_state(TASK_UNINTERRUPTIBLE);
177 if (atomic_read(&nl_table_users) == 0)
178 break;
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700179 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 schedule();
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700181 write_lock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 __set_current_state(TASK_RUNNING);
185 remove_wait_queue(&nl_table_wait, &wait);
186 }
187}
188
189static __inline__ void netlink_table_ungrab(void)
190{
Arjan van de Ven6abd2192006-07-03 00:24:07 -0700191 write_unlock_irq(&nl_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 wake_up(&nl_table_wait);
193}
194
195static __inline__ void
196netlink_lock_table(void)
197{
198 /* read_lock() synchronizes us to netlink_table_grab */
199
200 read_lock(&nl_table_lock);
201 atomic_inc(&nl_table_users);
202 read_unlock(&nl_table_lock);
203}
204
205static __inline__ void
206netlink_unlock_table(void)
207{
208 if (atomic_dec_and_test(&nl_table_users))
209 wake_up(&nl_table_wait);
210}
211
212static __inline__ struct sock *netlink_lookup(int protocol, u32 pid)
213{
214 struct nl_pid_hash *hash = &nl_table[protocol].hash;
215 struct hlist_head *head;
216 struct sock *sk;
217 struct hlist_node *node;
218
219 read_lock(&nl_table_lock);
220 head = nl_pid_hashfn(hash, pid);
221 sk_for_each(sk, node, head) {
222 if (nlk_sk(sk)->pid == pid) {
223 sock_hold(sk);
224 goto found;
225 }
226 }
227 sk = NULL;
228found:
229 read_unlock(&nl_table_lock);
230 return sk;
231}
232
233static inline struct hlist_head *nl_pid_hash_alloc(size_t size)
234{
235 if (size <= PAGE_SIZE)
236 return kmalloc(size, GFP_ATOMIC);
237 else
238 return (struct hlist_head *)
239 __get_free_pages(GFP_ATOMIC, get_order(size));
240}
241
242static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
243{
244 if (size <= PAGE_SIZE)
245 kfree(table);
246 else
247 free_pages((unsigned long)table, get_order(size));
248}
249
250static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
251{
252 unsigned int omask, mask, shift;
253 size_t osize, size;
254 struct hlist_head *otable, *table;
255 int i;
256
257 omask = mask = hash->mask;
258 osize = size = (mask + 1) * sizeof(*table);
259 shift = hash->shift;
260
261 if (grow) {
262 if (++shift > hash->max_shift)
263 return 0;
264 mask = mask * 2 + 1;
265 size *= 2;
266 }
267
268 table = nl_pid_hash_alloc(size);
269 if (!table)
270 return 0;
271
272 memset(table, 0, size);
273 otable = hash->table;
274 hash->table = table;
275 hash->mask = mask;
276 hash->shift = shift;
277 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
278
279 for (i = 0; i <= omask; i++) {
280 struct sock *sk;
281 struct hlist_node *node, *tmp;
282
283 sk_for_each_safe(sk, node, tmp, &otable[i])
284 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
285 }
286
287 nl_pid_hash_free(otable, osize);
288 hash->rehash_time = jiffies + 10 * 60 * HZ;
289 return 1;
290}
291
292static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
293{
294 int avg = hash->entries >> hash->shift;
295
296 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
297 return 1;
298
299 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
300 nl_pid_hash_rehash(hash, 0);
301 return 1;
302 }
303
304 return 0;
305}
306
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800307static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Patrick McHardy4277a082006-03-20 18:52:01 -0800309static void
310netlink_update_listeners(struct sock *sk)
311{
312 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
313 struct hlist_node *node;
314 unsigned long mask;
315 unsigned int i;
316
317 for (i = 0; i < NLGRPSZ(tbl->groups)/sizeof(unsigned long); i++) {
318 mask = 0;
319 sk_for_each_bound(sk, node, &tbl->mc_list)
320 mask |= nlk_sk(sk)->groups[i];
321 tbl->listeners[i] = mask;
322 }
323 /* this function is only called with the netlink table "grabbed", which
324 * makes sure updates are visible before bind or setsockopt return. */
325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static int netlink_insert(struct sock *sk, u32 pid)
328{
329 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
330 struct hlist_head *head;
331 int err = -EADDRINUSE;
332 struct sock *osk;
333 struct hlist_node *node;
334 int len;
335
336 netlink_table_grab();
337 head = nl_pid_hashfn(hash, pid);
338 len = 0;
339 sk_for_each(osk, node, head) {
340 if (nlk_sk(osk)->pid == pid)
341 break;
342 len++;
343 }
344 if (node)
345 goto err;
346
347 err = -EBUSY;
348 if (nlk_sk(sk)->pid)
349 goto err;
350
351 err = -ENOMEM;
352 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
353 goto err;
354
355 if (len && nl_pid_hash_dilute(hash, len))
356 head = nl_pid_hashfn(hash, pid);
357 hash->entries++;
358 nlk_sk(sk)->pid = pid;
359 sk_add_node(sk, head);
360 err = 0;
361
362err:
363 netlink_table_ungrab();
364 return err;
365}
366
367static void netlink_remove(struct sock *sk)
368{
369 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700370 if (sk_del_node_init(sk))
371 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700372 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 __sk_del_bind_node(sk);
374 netlink_table_ungrab();
375}
376
377static struct proto netlink_proto = {
378 .name = "NETLINK",
379 .owner = THIS_MODULE,
380 .obj_size = sizeof(struct netlink_sock),
381};
382
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700383static int __netlink_create(struct socket *sock, struct mutex *cb_mutex,
384 int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct sock *sk;
387 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700388
389 sock->ops = &netlink_ops;
390
391 sk = sk_alloc(PF_NETLINK, GFP_KERNEL, &netlink_proto, 1);
392 if (!sk)
393 return -ENOMEM;
394
395 sock_init_data(sock, sk);
396
397 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700398 if (cb_mutex)
399 nlk->cb_mutex = cb_mutex;
400 else {
401 nlk->cb_mutex = &nlk->cb_def_mutex;
402 mutex_init(nlk->cb_mutex);
403 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700404 init_waitqueue_head(&nlk->wait);
405
406 sk->sk_destruct = netlink_sock_destruct;
407 sk->sk_protocol = protocol;
408 return 0;
409}
410
411static int netlink_create(struct socket *sock, int protocol)
412{
413 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700414 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700415 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700416 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 sock->state = SS_UNCONNECTED;
419
420 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
421 return -ESOCKTNOSUPPORT;
422
423 if (protocol<0 || protocol >= MAX_LINKS)
424 return -EPROTONOSUPPORT;
425
Patrick McHardy77247bb2005-08-14 19:27:13 -0700426 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700427#ifdef CONFIG_KMOD
Patrick McHardyab33a172005-08-14 19:31:36 -0700428 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700429 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700430 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700431 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700432 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700433#endif
434 if (nl_table[protocol].registered &&
435 try_module_get(nl_table[protocol].module))
436 module = nl_table[protocol].module;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700437 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700438 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700439
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700440 if ((err = __netlink_create(sock, cb_mutex, protocol)) < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700441 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700443 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700444 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700445out:
446 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Patrick McHardyab33a172005-08-14 19:31:36 -0700448out_module:
449 module_put(module);
450 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453static int netlink_release(struct socket *sock)
454{
455 struct sock *sk = sock->sk;
456 struct netlink_sock *nlk;
457
458 if (!sk)
459 return 0;
460
461 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700462 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 nlk = nlk_sk(sk);
464
Herbert Xu3f660d62007-05-03 03:17:14 -0700465 /*
466 * OK. Socket is unlinked, any packets that arrive now
467 * will be purged.
468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 sock->sk = NULL;
471 wake_up_interruptible_all(&nlk->wait);
472
473 skb_queue_purge(&sk->sk_write_queue);
474
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700475 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct netlink_notify n = {
477 .protocol = sk->sk_protocol,
478 .pid = nlk->pid,
479 };
Alan Sterne041c682006-03-27 01:16:30 -0800480 atomic_notifier_call_chain(&netlink_chain,
481 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900482 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700483
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800484 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700485
Patrick McHardy4277a082006-03-20 18:52:01 -0800486 netlink_table_grab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700487 if (nlk->flags & NETLINK_KERNEL_SOCKET) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800488 kfree(nl_table[sk->sk_protocol].listeners);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700489 nl_table[sk->sk_protocol].module = NULL;
Patrick McHardyab33a172005-08-14 19:31:36 -0700490 nl_table[sk->sk_protocol].registered = 0;
Patrick McHardy4277a082006-03-20 18:52:01 -0800491 } else if (nlk->subscriptions)
492 netlink_update_listeners(sk);
493 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700494
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700495 kfree(nlk->groups);
496 nlk->groups = NULL;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 sock_put(sk);
499 return 0;
500}
501
502static int netlink_autobind(struct socket *sock)
503{
504 struct sock *sk = sock->sk;
505 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
506 struct hlist_head *head;
507 struct sock *osk;
508 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800509 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 int err;
511 static s32 rover = -4097;
512
513retry:
514 cond_resched();
515 netlink_table_grab();
516 head = nl_pid_hashfn(hash, pid);
517 sk_for_each(osk, node, head) {
518 if (nlk_sk(osk)->pid == pid) {
519 /* Bind collision, search negative pid values. */
520 pid = rover--;
521 if (rover > -4097)
522 rover = -4097;
523 netlink_table_ungrab();
524 goto retry;
525 }
526 }
527 netlink_table_ungrab();
528
529 err = netlink_insert(sk, pid);
530 if (err == -EADDRINUSE)
531 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700532
533 /* If 2 threads race to autobind, that is fine. */
534 if (err == -EBUSY)
535 err = 0;
536
537 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900540static inline int netlink_capable(struct socket *sock, unsigned int flag)
541{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
543 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900544}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700546static void
547netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
548{
549 struct netlink_sock *nlk = nlk_sk(sk);
550
551 if (nlk->subscriptions && !subscriptions)
552 __sk_del_bind_node(sk);
553 else if (!nlk->subscriptions && subscriptions)
554 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
555 nlk->subscriptions = subscriptions;
556}
557
Patrick McHardy513c2502005-09-06 15:43:59 -0700558static int netlink_alloc_groups(struct sock *sk)
559{
560 struct netlink_sock *nlk = nlk_sk(sk);
561 unsigned int groups;
562 int err = 0;
563
564 netlink_lock_table();
565 groups = nl_table[sk->sk_protocol].groups;
566 if (!nl_table[sk->sk_protocol].registered)
567 err = -ENOENT;
568 netlink_unlock_table();
569
570 if (err)
571 return err;
572
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700573 nlk->groups = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
Patrick McHardy513c2502005-09-06 15:43:59 -0700574 if (nlk->groups == NULL)
575 return -ENOMEM;
Patrick McHardy513c2502005-09-06 15:43:59 -0700576 nlk->ngroups = groups;
577 return 0;
578}
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static int netlink_bind(struct socket *sock, struct sockaddr *addr, int addr_len)
581{
582 struct sock *sk = sock->sk;
583 struct netlink_sock *nlk = nlk_sk(sk);
584 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
585 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (nladdr->nl_family != AF_NETLINK)
588 return -EINVAL;
589
590 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700591 if (nladdr->nl_groups) {
592 if (!netlink_capable(sock, NL_NONROOT_RECV))
593 return -EPERM;
594 if (nlk->groups == NULL) {
595 err = netlink_alloc_groups(sk);
596 if (err)
597 return err;
598 }
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (nlk->pid) {
602 if (nladdr->nl_pid != nlk->pid)
603 return -EINVAL;
604 } else {
605 err = nladdr->nl_pid ?
606 netlink_insert(sk, nladdr->nl_pid) :
607 netlink_autobind(sock);
608 if (err)
609 return err;
610 }
611
Patrick McHardy513c2502005-09-06 15:43:59 -0700612 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return 0;
614
615 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700616 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900617 hweight32(nladdr->nl_groups) -
618 hweight32(nlk->groups[0]));
619 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800620 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 netlink_table_ungrab();
622
623 return 0;
624}
625
626static int netlink_connect(struct socket *sock, struct sockaddr *addr,
627 int alen, int flags)
628{
629 int err = 0;
630 struct sock *sk = sock->sk;
631 struct netlink_sock *nlk = nlk_sk(sk);
632 struct sockaddr_nl *nladdr=(struct sockaddr_nl*)addr;
633
634 if (addr->sa_family == AF_UNSPEC) {
635 sk->sk_state = NETLINK_UNCONNECTED;
636 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700637 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639 }
640 if (addr->sa_family != AF_NETLINK)
641 return -EINVAL;
642
643 /* Only superuser is allowed to send multicasts */
644 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
645 return -EPERM;
646
647 if (!nlk->pid)
648 err = netlink_autobind(sock);
649
650 if (err == 0) {
651 sk->sk_state = NETLINK_CONNECTED;
652 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700653 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
656 return err;
657}
658
659static int netlink_getname(struct socket *sock, struct sockaddr *addr, int *addr_len, int peer)
660{
661 struct sock *sk = sock->sk;
662 struct netlink_sock *nlk = nlk_sk(sk);
663 struct sockaddr_nl *nladdr=(struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 nladdr->nl_family = AF_NETLINK;
666 nladdr->nl_pad = 0;
667 *addr_len = sizeof(*nladdr);
668
669 if (peer) {
670 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700671 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 } else {
673 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700674 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 return 0;
677}
678
679static void netlink_overrun(struct sock *sk)
680{
681 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
682 sk->sk_err = ENOBUFS;
683 sk->sk_error_report(sk);
684 }
685}
686
687static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
688{
689 int protocol = ssk->sk_protocol;
690 struct sock *sock;
691 struct netlink_sock *nlk;
692
693 sock = netlink_lookup(protocol, pid);
694 if (!sock)
695 return ERR_PTR(-ECONNREFUSED);
696
697 /* Don't bother queuing skb if kernel socket has no input function */
698 nlk = nlk_sk(sock);
699 if ((nlk->pid == 0 && !nlk->data_ready) ||
700 (sock->sk_state == NETLINK_CONNECTED &&
701 nlk->dst_pid != nlk_sk(ssk)->pid)) {
702 sock_put(sock);
703 return ERR_PTR(-ECONNREFUSED);
704 }
705 return sock;
706}
707
708struct sock *netlink_getsockbyfilp(struct file *filp)
709{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800710 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 struct sock *sock;
712
713 if (!S_ISSOCK(inode->i_mode))
714 return ERR_PTR(-ENOTSOCK);
715
716 sock = SOCKET_I(inode)->sk;
717 if (sock->sk_family != AF_NETLINK)
718 return ERR_PTR(-EINVAL);
719
720 sock_hold(sock);
721 return sock;
722}
723
724/*
725 * Attach a skb to a netlink socket.
726 * The caller must hold a reference to the destination socket. On error, the
727 * reference is dropped. The skb is not send to the destination, just all
728 * all error checks are performed and memory in the queue is reserved.
729 * Return values:
730 * < 0: error. skb freed, reference to sock dropped.
731 * 0: continue
732 * 1: repeat lookup - reference dropped while waiting for socket memory.
733 */
Alexey Kuznetsova70ea992006-02-09 16:40:11 -0800734int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
735 long timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 struct netlink_sock *nlk;
738
739 nlk = nlk_sk(sk);
740
741 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
742 test_bit(0, &nlk->state)) {
743 DECLARE_WAITQUEUE(wait, current);
744 if (!timeo) {
Alexey Kuznetsova70ea992006-02-09 16:40:11 -0800745 if (!ssk || nlk_sk(ssk)->pid == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 netlink_overrun(sk);
747 sock_put(sk);
748 kfree_skb(skb);
749 return -EAGAIN;
750 }
751
752 __set_current_state(TASK_INTERRUPTIBLE);
753 add_wait_queue(&nlk->wait, &wait);
754
755 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
756 test_bit(0, &nlk->state)) &&
757 !sock_flag(sk, SOCK_DEAD))
758 timeo = schedule_timeout(timeo);
759
760 __set_current_state(TASK_RUNNING);
761 remove_wait_queue(&nlk->wait, &wait);
762 sock_put(sk);
763
764 if (signal_pending(current)) {
765 kfree_skb(skb);
766 return sock_intr_errno(timeo);
767 }
768 return 1;
769 }
770 skb_set_owner_r(skb, sk);
771 return 0;
772}
773
774int netlink_sendskb(struct sock *sk, struct sk_buff *skb, int protocol)
775{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 int len = skb->len;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 skb_queue_tail(&sk->sk_receive_queue, skb);
779 sk->sk_data_ready(sk, len);
780 sock_put(sk);
781 return len;
782}
783
784void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
785{
786 kfree_skb(skb);
787 sock_put(sk);
788}
789
Victor Fusco37da6472005-07-18 13:35:43 -0700790static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100791 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 int delta;
794
795 skb_orphan(skb);
796
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700797 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (delta * 2 < skb->truesize)
799 return skb;
800
801 if (skb_shared(skb)) {
802 struct sk_buff *nskb = skb_clone(skb, allocation);
803 if (!nskb)
804 return skb;
805 kfree_skb(skb);
806 skb = nskb;
807 }
808
809 if (!pskb_expand_head(skb, 0, -delta, allocation))
810 skb->truesize -= delta;
811
812 return skb;
813}
814
815int netlink_unicast(struct sock *ssk, struct sk_buff *skb, u32 pid, int nonblock)
816{
817 struct sock *sk;
818 int err;
819 long timeo;
820
821 skb = netlink_trim(skb, gfp_any());
822
823 timeo = sock_sndtimeo(ssk, nonblock);
824retry:
825 sk = netlink_getsockbypid(ssk, pid);
826 if (IS_ERR(sk)) {
827 kfree_skb(skb);
828 return PTR_ERR(sk);
829 }
Alexey Kuznetsova70ea992006-02-09 16:40:11 -0800830 err = netlink_attachskb(sk, skb, nonblock, timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (err == 1)
832 goto retry;
833 if (err)
834 return err;
835
836 return netlink_sendskb(sk, skb, ssk->sk_protocol);
837}
838
Patrick McHardy4277a082006-03-20 18:52:01 -0800839int netlink_has_listeners(struct sock *sk, unsigned int group)
840{
841 int res = 0;
842
843 BUG_ON(!(nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET));
844 if (group - 1 < nl_table[sk->sk_protocol].groups)
845 res = test_bit(group - 1, nl_table[sk->sk_protocol].listeners);
846 return res;
847}
848EXPORT_SYMBOL_GPL(netlink_has_listeners);
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850static __inline__ int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
851{
852 struct netlink_sock *nlk = nlk_sk(sk);
853
854 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
855 !test_bit(0, &nlk->state)) {
856 skb_set_owner_r(skb, sk);
857 skb_queue_tail(&sk->sk_receive_queue, skb);
858 sk->sk_data_ready(sk, skb->len);
859 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
860 }
861 return -1;
862}
863
864struct netlink_broadcast_data {
865 struct sock *exclude_sk;
866 u32 pid;
867 u32 group;
868 int failure;
869 int congested;
870 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400871 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 struct sk_buff *skb, *skb2;
873};
874
875static inline int do_one_broadcast(struct sock *sk,
876 struct netlink_broadcast_data *p)
877{
878 struct netlink_sock *nlk = nlk_sk(sk);
879 int val;
880
881 if (p->exclude_sk == sk)
882 goto out;
883
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700884 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
885 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto out;
887
888 if (p->failure) {
889 netlink_overrun(sk);
890 goto out;
891 }
892
893 sock_hold(sk);
894 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700895 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 p->skb2 = skb_clone(p->skb, p->allocation);
897 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700898 p->skb2 = skb_get(p->skb);
899 /*
900 * skb ownership may have been set when
901 * delivered to a previous socket.
902 */
903 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905 }
906 if (p->skb2 == NULL) {
907 netlink_overrun(sk);
908 /* Clone failed. Notify ALL listeners. */
909 p->failure = 1;
910 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
911 netlink_overrun(sk);
912 } else {
913 p->congested |= val;
914 p->delivered = 1;
915 p->skb2 = NULL;
916 }
917 sock_put(sk);
918
919out:
920 return 0;
921}
922
923int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +0100924 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
926 struct netlink_broadcast_data info;
927 struct hlist_node *node;
928 struct sock *sk;
929
930 skb = netlink_trim(skb, allocation);
931
932 info.exclude_sk = ssk;
933 info.pid = pid;
934 info.group = group;
935 info.failure = 0;
936 info.congested = 0;
937 info.delivered = 0;
938 info.allocation = allocation;
939 info.skb = skb;
940 info.skb2 = NULL;
941
942 /* While we sleep in clone, do not allow to change socket list */
943
944 netlink_lock_table();
945
946 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
947 do_one_broadcast(sk, &info);
948
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -0700949 kfree_skb(skb);
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 netlink_unlock_table();
952
953 if (info.skb2)
954 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 if (info.delivered) {
957 if (info.congested && (allocation & __GFP_WAIT))
958 yield();
959 return 0;
960 }
961 if (info.failure)
962 return -ENOBUFS;
963 return -ESRCH;
964}
965
966struct netlink_set_err_data {
967 struct sock *exclude_sk;
968 u32 pid;
969 u32 group;
970 int code;
971};
972
973static inline int do_one_set_err(struct sock *sk,
974 struct netlink_set_err_data *p)
975{
976 struct netlink_sock *nlk = nlk_sk(sk);
977
978 if (sk == p->exclude_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
985 sk->sk_err = p->code;
986 sk->sk_error_report(sk);
987out:
988 return 0;
989}
990
991void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
992{
993 struct netlink_set_err_data info;
994 struct hlist_node *node;
995 struct sock *sk;
996
997 info.exclude_sk = ssk;
998 info.pid = pid;
999 info.group = group;
1000 info.code = code;
1001
1002 read_lock(&nl_table_lock);
1003
1004 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1005 do_one_set_err(sk, &info);
1006
1007 read_unlock(&nl_table_lock);
1008}
1009
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001010static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001011 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001012{
1013 struct sock *sk = sock->sk;
1014 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001015 unsigned int val = 0;
1016 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001017
1018 if (level != SOL_NETLINK)
1019 return -ENOPROTOOPT;
1020
1021 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001022 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001023 return -EFAULT;
1024
1025 switch (optname) {
1026 case NETLINK_PKTINFO:
1027 if (val)
1028 nlk->flags |= NETLINK_RECV_PKTINFO;
1029 else
1030 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1031 err = 0;
1032 break;
1033 case NETLINK_ADD_MEMBERSHIP:
1034 case NETLINK_DROP_MEMBERSHIP: {
1035 unsigned int subscriptions;
1036 int old, new = optname == NETLINK_ADD_MEMBERSHIP ? 1 : 0;
1037
1038 if (!netlink_capable(sock, NL_NONROOT_RECV))
1039 return -EPERM;
Patrick McHardy513c2502005-09-06 15:43:59 -07001040 if (nlk->groups == NULL) {
1041 err = netlink_alloc_groups(sk);
1042 if (err)
1043 return err;
1044 }
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001045 if (!val || val - 1 >= nlk->ngroups)
1046 return -EINVAL;
1047 netlink_table_grab();
1048 old = test_bit(val - 1, nlk->groups);
1049 subscriptions = nlk->subscriptions - old + new;
1050 if (new)
1051 __set_bit(val - 1, nlk->groups);
1052 else
1053 __clear_bit(val - 1, nlk->groups);
1054 netlink_update_subscriptions(sk, subscriptions);
Patrick McHardy4277a082006-03-20 18:52:01 -08001055 netlink_update_listeners(sk);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001056 netlink_table_ungrab();
1057 err = 0;
1058 break;
1059 }
1060 default:
1061 err = -ENOPROTOOPT;
1062 }
1063 return err;
1064}
1065
1066static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001067 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001068{
1069 struct sock *sk = sock->sk;
1070 struct netlink_sock *nlk = nlk_sk(sk);
1071 int len, val, err;
1072
1073 if (level != SOL_NETLINK)
1074 return -ENOPROTOOPT;
1075
1076 if (get_user(len, optlen))
1077 return -EFAULT;
1078 if (len < 0)
1079 return -EINVAL;
1080
1081 switch (optname) {
1082 case NETLINK_PKTINFO:
1083 if (len < sizeof(int))
1084 return -EINVAL;
1085 len = sizeof(int);
1086 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001087 if (put_user(len, optlen) ||
1088 put_user(val, optval))
1089 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001090 err = 0;
1091 break;
1092 default:
1093 err = -ENOPROTOOPT;
1094 }
1095 return err;
1096}
1097
1098static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1099{
1100 struct nl_pktinfo info;
1101
1102 info.group = NETLINK_CB(skb).dst_group;
1103 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1104}
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106static inline void netlink_rcv_wake(struct sock *sk)
1107{
1108 struct netlink_sock *nlk = nlk_sk(sk);
1109
David S. Millerb03efcf2005-07-08 14:57:23 -07001110 if (skb_queue_empty(&sk->sk_receive_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 clear_bit(0, &nlk->state);
1112 if (!test_bit(0, &nlk->state))
1113 wake_up_interruptible(&nlk->wait);
1114}
1115
1116static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1117 struct msghdr *msg, size_t len)
1118{
1119 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1120 struct sock *sk = sock->sk;
1121 struct netlink_sock *nlk = nlk_sk(sk);
1122 struct sockaddr_nl *addr=msg->msg_name;
1123 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001124 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct sk_buff *skb;
1126 int err;
1127 struct scm_cookie scm;
1128
1129 if (msg->msg_flags&MSG_OOB)
1130 return -EOPNOTSUPP;
1131
1132 if (NULL == siocb->scm)
1133 siocb->scm = &scm;
1134 err = scm_send(sock, msg, siocb->scm);
1135 if (err < 0)
1136 return err;
1137
1138 if (msg->msg_namelen) {
1139 if (addr->nl_family != AF_NETLINK)
1140 return -EINVAL;
1141 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001142 dst_group = ffs(addr->nl_groups);
1143 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return -EPERM;
1145 } else {
1146 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001147 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
1150 if (!nlk->pid) {
1151 err = netlink_autobind(sock);
1152 if (err)
1153 goto out;
1154 }
1155
1156 err = -EMSGSIZE;
1157 if (len > sk->sk_sndbuf - 32)
1158 goto out;
1159 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001160 skb = alloc_skb(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (skb==NULL)
1162 goto out;
1163
1164 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001165 NETLINK_CB(skb).dst_group = dst_group;
Serge Hallync94c2572005-04-29 16:27:17 +01001166 NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);
Steve Grubbe7c34972006-04-03 09:08:13 -04001167 selinux_get_task_sid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1169
1170 /* What can I do? Netlink is asynchronous, so that
1171 we will have to save current capabilities to
1172 check them, when this message will be delivered
1173 to corresponding kernel module. --ANK (980802)
1174 */
1175
1176 err = -EFAULT;
1177 if (memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len)) {
1178 kfree_skb(skb);
1179 goto out;
1180 }
1181
1182 err = security_netlink_send(sk, skb);
1183 if (err) {
1184 kfree_skb(skb);
1185 goto out;
1186 }
1187
Patrick McHardyd629b832005-08-14 19:27:50 -07001188 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001190 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1193
1194out:
1195 return err;
1196}
1197
1198static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1199 struct msghdr *msg, size_t len,
1200 int flags)
1201{
1202 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1203 struct scm_cookie scm;
1204 struct sock *sk = sock->sk;
1205 struct netlink_sock *nlk = nlk_sk(sk);
1206 int noblock = flags&MSG_DONTWAIT;
1207 size_t copied;
1208 struct sk_buff *skb;
1209 int err;
1210
1211 if (flags&MSG_OOB)
1212 return -EOPNOTSUPP;
1213
1214 copied = 0;
1215
1216 skb = skb_recv_datagram(sk,flags,noblock,&err);
1217 if (skb==NULL)
1218 goto out;
1219
1220 msg->msg_namelen = 0;
1221
1222 copied = skb->len;
1223 if (len < copied) {
1224 msg->msg_flags |= MSG_TRUNC;
1225 copied = len;
1226 }
1227
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001228 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1230
1231 if (msg->msg_name) {
1232 struct sockaddr_nl *addr = (struct sockaddr_nl*)msg->msg_name;
1233 addr->nl_family = AF_NETLINK;
1234 addr->nl_pad = 0;
1235 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001236 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 msg->msg_namelen = sizeof(*addr);
1238 }
1239
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001240 if (nlk->flags & NETLINK_RECV_PKTINFO)
1241 netlink_cmsg_recv_pktinfo(msg, skb);
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (NULL == siocb->scm) {
1244 memset(&scm, 0, sizeof(scm));
1245 siocb->scm = &scm;
1246 }
1247 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001248 if (flags & MSG_TRUNC)
1249 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 skb_free_datagram(sk, skb);
1251
1252 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1253 netlink_dump(sk);
1254
1255 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256out:
1257 netlink_rcv_wake(sk);
1258 return err ? : copied;
1259}
1260
1261static void netlink_data_ready(struct sock *sk, int len)
1262{
1263 struct netlink_sock *nlk = nlk_sk(sk);
1264
1265 if (nlk->data_ready)
1266 nlk->data_ready(sk, len);
1267 netlink_rcv_wake(sk);
1268}
1269
1270/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001271 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * complete set of kernel non-blocking support for message
1273 * queueing.
1274 */
1275
1276struct sock *
Patrick McHardy06628602005-08-15 12:33:26 -07001277netlink_kernel_create(int unit, unsigned int groups,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001278 void (*input)(struct sock *sk, int len),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001279 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 struct socket *sock;
1282 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001283 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001284 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001286 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 if (unit<0 || unit>=MAX_LINKS)
1289 return NULL;
1290
1291 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1292 return NULL;
1293
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001294 if (__netlink_create(sock, cb_mutex, unit) < 0)
Patrick McHardy77247bb2005-08-14 19:27:13 -07001295 goto out_sock_release;
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001296
Patrick McHardy4277a082006-03-20 18:52:01 -08001297 if (groups < 32)
1298 groups = 32;
1299
1300 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1301 if (!listeners)
1302 goto out_sock_release;
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 sk = sock->sk;
1305 sk->sk_data_ready = netlink_data_ready;
1306 if (input)
1307 nlk_sk(sk)->data_ready = input;
1308
Patrick McHardy77247bb2005-08-14 19:27:13 -07001309 if (netlink_insert(sk, 0))
1310 goto out_sock_release;
1311
1312 nlk = nlk_sk(sk);
1313 nlk->flags |= NETLINK_KERNEL_SOCKET;
1314
1315 netlink_table_grab();
Patrick McHardy4277a082006-03-20 18:52:01 -08001316 nl_table[unit].groups = groups;
1317 nl_table[unit].listeners = listeners;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001318 nl_table[unit].cb_mutex = cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001319 nl_table[unit].module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -07001320 nl_table[unit].registered = 1;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001321 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001322
1323 return sk;
1324
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001325out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001326 kfree(listeners);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001327 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001328 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
1331void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001332{
1333 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337static void netlink_destroy_callback(struct netlink_callback *cb)
1338{
1339 if (cb->skb)
1340 kfree_skb(cb->skb);
1341 kfree(cb);
1342}
1343
1344/*
1345 * It looks a bit ugly.
1346 * It would be better to create kernel thread.
1347 */
1348
1349static int netlink_dump(struct sock *sk)
1350{
1351 struct netlink_sock *nlk = nlk_sk(sk);
1352 struct netlink_callback *cb;
1353 struct sk_buff *skb;
1354 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001355 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1358 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001359 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001361 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 cb = nlk->cb;
1364 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001365 err = -EINVAL;
1366 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
1369 len = cb->dump(skb, cb);
1370
1371 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001372 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 skb_queue_tail(&sk->sk_receive_queue, skb);
1374 sk->sk_data_ready(sk, len);
1375 return 0;
1376 }
1377
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001378 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1379 if (!nlh)
1380 goto errout_skb;
1381
1382 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 skb_queue_tail(&sk->sk_receive_queue, skb);
1385 sk->sk_data_ready(sk, skb->len);
1386
Thomas Grafa8f74b22005-11-10 02:25:52 +01001387 if (cb->done)
1388 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001390 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001394
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001395errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001396 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001397 kfree_skb(skb);
1398errout:
1399 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
1402int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1403 struct nlmsghdr *nlh,
1404 int (*dump)(struct sk_buff *skb, struct netlink_callback*),
1405 int (*done)(struct netlink_callback*))
1406{
1407 struct netlink_callback *cb;
1408 struct sock *sk;
1409 struct netlink_sock *nlk;
1410
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001411 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (cb == NULL)
1413 return -ENOBUFS;
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 cb->dump = dump;
1416 cb->done = done;
1417 cb->nlh = nlh;
1418 atomic_inc(&skb->users);
1419 cb->skb = skb;
1420
1421 sk = netlink_lookup(ssk->sk_protocol, NETLINK_CB(skb).pid);
1422 if (sk == NULL) {
1423 netlink_destroy_callback(cb);
1424 return -ECONNREFUSED;
1425 }
1426 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001427 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001428 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001429 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001430 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 netlink_destroy_callback(cb);
1432 sock_put(sk);
1433 return -EBUSY;
1434 }
1435 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001436 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 netlink_dump(sk);
1439 sock_put(sk);
Thomas Grafc702e802007-03-22 23:30:55 -07001440
1441 /* We successfully started a dump, by returning -EINTR we
1442 * signal the queue mangement to interrupt processing of
1443 * any netlink messages so userspace gets a chance to read
1444 * the results. */
1445 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1449{
1450 struct sk_buff *skb;
1451 struct nlmsghdr *rep;
1452 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001453 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Thomas Graf339bf982006-11-10 14:10:15 -08001455 /* error messages get the original request appened */
1456 if (err)
1457 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Thomas Graf339bf982006-11-10 14:10:15 -08001459 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (!skb) {
1461 struct sock *sk;
1462
1463 sk = netlink_lookup(in_skb->sk->sk_protocol,
1464 NETLINK_CB(in_skb).pid);
1465 if (sk) {
1466 sk->sk_err = ENOBUFS;
1467 sk->sk_error_report(sk);
1468 sock_put(sk);
1469 }
1470 return;
1471 }
1472
1473 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001474 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001475 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001477 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1479}
1480
Thomas Graf82ace472005-11-10 02:25:53 +01001481static int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001482 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001483{
Thomas Graf82ace472005-11-10 02:25:53 +01001484 struct nlmsghdr *nlh;
1485 int err;
1486
1487 while (skb->len >= nlmsg_total_size(0)) {
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001488 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001489 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001490
Martin Murrayad8e4b72006-01-10 13:02:29 -08001491 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001492 return 0;
1493
Thomas Grafd35b6852007-03-22 23:28:46 -07001494 /* Only requests are handled by the kernel */
1495 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1496 goto skip;
1497
Thomas Graf45e7ae72007-03-22 23:29:10 -07001498 /* Skip control messages */
1499 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
1500 goto skip;
1501
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001502 err = cb(skb, nlh);
1503 if (err == -EINTR) {
1504 /* Not an error, but we interrupt processing */
1505 netlink_queue_skip(nlh, skb);
1506 return err;
Thomas Grafd35b6852007-03-22 23:28:46 -07001507 }
1508skip:
1509 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001510 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001511
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001512 netlink_queue_skip(nlh, skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001513 }
1514
1515 return 0;
1516}
1517
1518/**
1519 * nelink_run_queue - Process netlink receive queue.
1520 * @sk: Netlink socket containing the queue
1521 * @qlen: Place to store queue length upon entry
1522 * @cb: Callback function invoked for each netlink message found
1523 *
1524 * Processes as much as there was in the queue upon entry and invokes
1525 * a callback function for each netlink message found. The callback
1526 * function may refuse a message by returning a negative error code
1527 * but setting the error pointer to 0 in which case this function
1528 * returns with a qlen != 0.
1529 *
1530 * qlen must be initialized to 0 before the initial entry, afterwards
1531 * the function may be called repeatedly until qlen reaches 0.
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001532 *
1533 * The callback function may return -EINTR to signal that processing
1534 * of netlink messages shall be interrupted. In this case the message
1535 * currently being processed will NOT be requeued onto the receive
1536 * queue.
Thomas Graf82ace472005-11-10 02:25:53 +01001537 */
1538void netlink_run_queue(struct sock *sk, unsigned int *qlen,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001539 int (*cb)(struct sk_buff *, struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001540{
1541 struct sk_buff *skb;
1542
1543 if (!*qlen || *qlen > skb_queue_len(&sk->sk_receive_queue))
1544 *qlen = skb_queue_len(&sk->sk_receive_queue);
1545
1546 for (; *qlen; (*qlen)--) {
1547 skb = skb_dequeue(&sk->sk_receive_queue);
1548 if (netlink_rcv_skb(skb, cb)) {
1549 if (skb->len)
1550 skb_queue_head(&sk->sk_receive_queue, skb);
1551 else {
1552 kfree_skb(skb);
1553 (*qlen)--;
1554 }
1555 break;
1556 }
1557
1558 kfree_skb(skb);
1559 }
1560}
1561
1562/**
1563 * netlink_queue_skip - Skip netlink message while processing queue.
1564 * @nlh: Netlink message to be skipped
1565 * @skb: Socket buffer containing the netlink messages.
1566 *
1567 * Pulls the given netlink message off the socket buffer so the next
1568 * call to netlink_queue_run() will not reconsider the message.
1569 */
Adrian Bunk42bad1d2007-04-26 00:57:41 -07001570static void netlink_queue_skip(struct nlmsghdr *nlh, struct sk_buff *skb)
Thomas Graf82ace472005-11-10 02:25:53 +01001571{
1572 int msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1573
1574 if (msglen > skb->len)
1575 msglen = skb->len;
1576
1577 skb_pull(skb, msglen);
1578}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Thomas Grafd387f6a2006-08-15 00:31:06 -07001580/**
1581 * nlmsg_notify - send a notification netlink message
1582 * @sk: netlink socket to use
1583 * @skb: notification message
1584 * @pid: destination netlink pid for reports or 0
1585 * @group: destination multicast group or 0
1586 * @report: 1 to report back, 0 to disable
1587 * @flags: allocation flags
1588 */
1589int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1590 unsigned int group, int report, gfp_t flags)
1591{
1592 int err = 0;
1593
1594 if (group) {
1595 int exclude_pid = 0;
1596
1597 if (report) {
1598 atomic_inc(&skb->users);
1599 exclude_pid = pid;
1600 }
1601
1602 /* errors reported via destination sk->sk_err */
1603 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1604 }
1605
1606 if (report)
1607 err = nlmsg_unicast(sk, skb, pid);
1608
1609 return err;
1610}
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612#ifdef CONFIG_PROC_FS
1613struct nl_seq_iter {
1614 int link;
1615 int hash_idx;
1616};
1617
1618static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1619{
1620 struct nl_seq_iter *iter = seq->private;
1621 int i, j;
1622 struct sock *s;
1623 struct hlist_node *node;
1624 loff_t off = 0;
1625
1626 for (i=0; i<MAX_LINKS; i++) {
1627 struct nl_pid_hash *hash = &nl_table[i].hash;
1628
1629 for (j = 0; j <= hash->mask; j++) {
1630 sk_for_each(s, node, &hash->table[j]) {
1631 if (off == pos) {
1632 iter->link = i;
1633 iter->hash_idx = j;
1634 return s;
1635 }
1636 ++off;
1637 }
1638 }
1639 }
1640 return NULL;
1641}
1642
1643static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1644{
1645 read_lock(&nl_table_lock);
1646 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1647}
1648
1649static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1650{
1651 struct sock *s;
1652 struct nl_seq_iter *iter;
1653 int i, j;
1654
1655 ++*pos;
1656
1657 if (v == SEQ_START_TOKEN)
1658 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 s = sk_next(v);
1661 if (s)
1662 return s;
1663
1664 iter = seq->private;
1665 i = iter->link;
1666 j = iter->hash_idx + 1;
1667
1668 do {
1669 struct nl_pid_hash *hash = &nl_table[i].hash;
1670
1671 for (; j <= hash->mask; j++) {
1672 s = sk_head(&hash->table[j]);
1673 if (s) {
1674 iter->link = i;
1675 iter->hash_idx = j;
1676 return s;
1677 }
1678 }
1679
1680 j = 0;
1681 } while (++i < MAX_LINKS);
1682
1683 return NULL;
1684}
1685
1686static void netlink_seq_stop(struct seq_file *seq, void *v)
1687{
1688 read_unlock(&nl_table_lock);
1689}
1690
1691
1692static int netlink_seq_show(struct seq_file *seq, void *v)
1693{
1694 if (v == SEQ_START_TOKEN)
1695 seq_puts(seq,
1696 "sk Eth Pid Groups "
1697 "Rmem Wmem Dump Locks\n");
1698 else {
1699 struct sock *s = v;
1700 struct netlink_sock *nlk = nlk_sk(s);
1701
1702 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1703 s,
1704 s->sk_protocol,
1705 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001706 nlk->groups ? (u32)nlk->groups[0] : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 atomic_read(&s->sk_rmem_alloc),
1708 atomic_read(&s->sk_wmem_alloc),
1709 nlk->cb,
1710 atomic_read(&s->sk_refcnt)
1711 );
1712
1713 }
1714 return 0;
1715}
1716
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001717static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 .start = netlink_seq_start,
1719 .next = netlink_seq_next,
1720 .stop = netlink_seq_stop,
1721 .show = netlink_seq_show,
1722};
1723
1724
1725static int netlink_seq_open(struct inode *inode, struct file *file)
1726{
1727 struct seq_file *seq;
1728 struct nl_seq_iter *iter;
1729 int err;
1730
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001731 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (!iter)
1733 return -ENOMEM;
1734
1735 err = seq_open(file, &netlink_seq_ops);
1736 if (err) {
1737 kfree(iter);
1738 return err;
1739 }
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 seq = file->private_data;
1742 seq->private = iter;
1743 return 0;
1744}
1745
Arjan van de Venda7071d2007-02-12 00:55:36 -08001746static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 .owner = THIS_MODULE,
1748 .open = netlink_seq_open,
1749 .read = seq_read,
1750 .llseek = seq_lseek,
1751 .release = seq_release_private,
1752};
1753
1754#endif
1755
1756int netlink_register_notifier(struct notifier_block *nb)
1757{
Alan Sterne041c682006-03-27 01:16:30 -08001758 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
1761int netlink_unregister_notifier(struct notifier_block *nb)
1762{
Alan Sterne041c682006-03-27 01:16:30 -08001763 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001765
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001766static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 .family = PF_NETLINK,
1768 .owner = THIS_MODULE,
1769 .release = netlink_release,
1770 .bind = netlink_bind,
1771 .connect = netlink_connect,
1772 .socketpair = sock_no_socketpair,
1773 .accept = sock_no_accept,
1774 .getname = netlink_getname,
1775 .poll = datagram_poll,
1776 .ioctl = sock_no_ioctl,
1777 .listen = sock_no_listen,
1778 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001779 .setsockopt = netlink_setsockopt,
1780 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 .sendmsg = netlink_sendmsg,
1782 .recvmsg = netlink_recvmsg,
1783 .mmap = sock_no_mmap,
1784 .sendpage = sock_no_sendpage,
1785};
1786
1787static struct net_proto_family netlink_family_ops = {
1788 .family = PF_NETLINK,
1789 .create = netlink_create,
1790 .owner = THIS_MODULE, /* for consistency 8) */
1791};
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793static int __init netlink_proto_init(void)
1794{
1795 struct sk_buff *dummy_skb;
1796 int i;
1797 unsigned long max;
1798 unsigned int order;
1799 int err = proto_register(&netlink_proto, 0);
1800
1801 if (err != 0)
1802 goto out;
1803
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001804 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001806 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001807 if (!nl_table)
1808 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (num_physpages >= (128 * 1024))
1811 max = num_physpages >> (21 - PAGE_SHIFT);
1812 else
1813 max = num_physpages >> (23 - PAGE_SHIFT);
1814
1815 order = get_bitmask_order(max) - 1 + PAGE_SHIFT;
1816 max = (1UL << order) / sizeof(struct hlist_head);
1817 order = get_bitmask_order(max > UINT_MAX ? UINT_MAX : max) - 1;
1818
1819 for (i = 0; i < MAX_LINKS; i++) {
1820 struct nl_pid_hash *hash = &nl_table[i].hash;
1821
1822 hash->table = nl_pid_hash_alloc(1 * sizeof(*hash->table));
1823 if (!hash->table) {
1824 while (i-- > 0)
1825 nl_pid_hash_free(nl_table[i].hash.table,
1826 1 * sizeof(*hash->table));
1827 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001828 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830 memset(hash->table, 0, 1 * sizeof(*hash->table));
1831 hash->max_shift = order;
1832 hash->shift = 0;
1833 hash->mask = 0;
1834 hash->rehash_time = jiffies;
1835 }
1836
1837 sock_register(&netlink_family_ops);
1838#ifdef CONFIG_PROC_FS
1839 proc_net_fops_create("netlink", 0, &netlink_seq_fops);
1840#endif
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001841 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 rtnetlink_init();
1843out:
1844 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001845panic:
1846 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849core_initcall(netlink_proto_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851EXPORT_SYMBOL(netlink_ack);
Thomas Graf82ace472005-11-10 02:25:53 +01001852EXPORT_SYMBOL(netlink_run_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853EXPORT_SYMBOL(netlink_broadcast);
1854EXPORT_SYMBOL(netlink_dump_start);
1855EXPORT_SYMBOL(netlink_kernel_create);
1856EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857EXPORT_SYMBOL(netlink_set_nonroot);
1858EXPORT_SYMBOL(netlink_unicast);
1859EXPORT_SYMBOL(netlink_unregister_notifier);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001860EXPORT_SYMBOL(nlmsg_notify);