blob: dbd7cad1c9a958ea09f780bc5837be4805edd7ca [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)) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800159 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 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
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800167/* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
168 * SMP. Look, when several writers sleep and reader wakes them up, all but one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * 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);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800181 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 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
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800195static inline void netlink_table_ungrab(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
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
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800201static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202netlink_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
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800211static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212netlink_unlock_table(void)
213{
214 if (atomic_dec_and_test(&nl_table_users))
215 wake_up(&nl_table_wait);
216}
217
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800218static inline struct sock *netlink_lookup(struct net *net, int protocol,
219 u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 struct nl_pid_hash *hash = &nl_table[protocol].hash;
222 struct hlist_head *head;
223 struct sock *sk;
224 struct hlist_node *node;
225
226 read_lock(&nl_table_lock);
227 head = nl_pid_hashfn(hash, pid);
228 sk_for_each(sk, node, head) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200229 if ((sk->sk_net == net) && (nlk_sk(sk)->pid == pid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 sock_hold(sk);
231 goto found;
232 }
233 }
234 sk = NULL;
235found:
236 read_unlock(&nl_table_lock);
237 return sk;
238}
239
Eric Dumazetea729122007-12-11 02:09:47 -0800240static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 if (size <= PAGE_SIZE)
Eric Dumazetea729122007-12-11 02:09:47 -0800243 return kzalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 else
245 return (struct hlist_head *)
Eric Dumazetea729122007-12-11 02:09:47 -0800246 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
247 get_order(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
251{
252 if (size <= PAGE_SIZE)
253 kfree(table);
254 else
255 free_pages((unsigned long)table, get_order(size));
256}
257
258static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
259{
260 unsigned int omask, mask, shift;
261 size_t osize, size;
262 struct hlist_head *otable, *table;
263 int i;
264
265 omask = mask = hash->mask;
266 osize = size = (mask + 1) * sizeof(*table);
267 shift = hash->shift;
268
269 if (grow) {
270 if (++shift > hash->max_shift)
271 return 0;
272 mask = mask * 2 + 1;
273 size *= 2;
274 }
275
Eric Dumazetea729122007-12-11 02:09:47 -0800276 table = nl_pid_hash_zalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (!table)
278 return 0;
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 otable = hash->table;
281 hash->table = table;
282 hash->mask = mask;
283 hash->shift = shift;
284 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
285
286 for (i = 0; i <= omask; i++) {
287 struct sock *sk;
288 struct hlist_node *node, *tmp;
289
290 sk_for_each_safe(sk, node, tmp, &otable[i])
291 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
292 }
293
294 nl_pid_hash_free(otable, osize);
295 hash->rehash_time = jiffies + 10 * 60 * HZ;
296 return 1;
297}
298
299static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
300{
301 int avg = hash->entries >> hash->shift;
302
303 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
304 return 1;
305
306 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
307 nl_pid_hash_rehash(hash, 0);
308 return 1;
309 }
310
311 return 0;
312}
313
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800314static const struct proto_ops netlink_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Patrick McHardy4277a082006-03-20 18:52:01 -0800316static void
317netlink_update_listeners(struct sock *sk)
318{
319 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
320 struct hlist_node *node;
321 unsigned long mask;
322 unsigned int i;
323
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700324 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800325 mask = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700326 sk_for_each_bound(sk, node, &tbl->mc_list) {
327 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
328 mask |= nlk_sk(sk)->groups[i];
329 }
Patrick McHardy4277a082006-03-20 18:52:01 -0800330 tbl->listeners[i] = mask;
331 }
332 /* this function is only called with the netlink table "grabbed", which
333 * makes sure updates are visible before bind or setsockopt return. */
334}
335
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200336static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
339 struct hlist_head *head;
340 int err = -EADDRINUSE;
341 struct sock *osk;
342 struct hlist_node *node;
343 int len;
344
345 netlink_table_grab();
346 head = nl_pid_hashfn(hash, pid);
347 len = 0;
348 sk_for_each(osk, node, head) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200349 if ((osk->sk_net == net) && (nlk_sk(osk)->pid == pid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
351 len++;
352 }
353 if (node)
354 goto err;
355
356 err = -EBUSY;
357 if (nlk_sk(sk)->pid)
358 goto err;
359
360 err = -ENOMEM;
361 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
362 goto err;
363
364 if (len && nl_pid_hash_dilute(hash, len))
365 head = nl_pid_hashfn(hash, pid);
366 hash->entries++;
367 nlk_sk(sk)->pid = pid;
368 sk_add_node(sk, head);
369 err = 0;
370
371err:
372 netlink_table_ungrab();
373 return err;
374}
375
376static void netlink_remove(struct sock *sk)
377{
378 netlink_table_grab();
David S. Millerd470e3b2005-06-26 15:31:51 -0700379 if (sk_del_node_init(sk))
380 nl_table[sk->sk_protocol].hash.entries--;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700381 if (nlk_sk(sk)->subscriptions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 __sk_del_bind_node(sk);
383 netlink_table_ungrab();
384}
385
386static struct proto netlink_proto = {
387 .name = "NETLINK",
388 .owner = THIS_MODULE,
389 .obj_size = sizeof(struct netlink_sock),
390};
391
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700392static int __netlink_create(struct net *net, struct socket *sock,
393 struct mutex *cb_mutex, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct sock *sk;
396 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700397
398 sock->ops = &netlink_ops;
399
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700400 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
Patrick McHardyab33a172005-08-14 19:31:36 -0700401 if (!sk)
402 return -ENOMEM;
403
404 sock_init_data(sock, sk);
405
406 nlk = nlk_sk(sk);
Patrick McHardyffa4d722007-04-25 14:01:17 -0700407 if (cb_mutex)
408 nlk->cb_mutex = cb_mutex;
409 else {
410 nlk->cb_mutex = &nlk->cb_def_mutex;
411 mutex_init(nlk->cb_mutex);
412 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700413 init_waitqueue_head(&nlk->wait);
414
415 sk->sk_destruct = netlink_sock_destruct;
416 sk->sk_protocol = protocol;
417 return 0;
418}
419
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700420static int netlink_create(struct net *net, struct socket *sock, int protocol)
Patrick McHardyab33a172005-08-14 19:31:36 -0700421{
422 struct module *module = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700423 struct mutex *cb_mutex;
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700424 struct netlink_sock *nlk;
Patrick McHardyab33a172005-08-14 19:31:36 -0700425 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 sock->state = SS_UNCONNECTED;
428
429 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
430 return -ESOCKTNOSUPPORT;
431
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800432 if (protocol < 0 || protocol >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return -EPROTONOSUPPORT;
434
Patrick McHardy77247bb2005-08-14 19:27:13 -0700435 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700436#ifdef CONFIG_KMOD
Patrick McHardyab33a172005-08-14 19:31:36 -0700437 if (!nl_table[protocol].registered) {
Patrick McHardy77247bb2005-08-14 19:27:13 -0700438 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700439 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700440 netlink_lock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700441 }
Patrick McHardyab33a172005-08-14 19:31:36 -0700442#endif
443 if (nl_table[protocol].registered &&
444 try_module_get(nl_table[protocol].module))
445 module = nl_table[protocol].module;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -0700446 cb_mutex = nl_table[protocol].cb_mutex;
Patrick McHardy77247bb2005-08-14 19:27:13 -0700447 netlink_unlock_table();
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700448
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800449 err = __netlink_create(net, sock, cb_mutex, protocol);
450 if (err < 0)
Patrick McHardyab33a172005-08-14 19:31:36 -0700451 goto out_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700453 nlk = nlk_sk(sock->sk);
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700454 nlk->module = module;
Patrick McHardyab33a172005-08-14 19:31:36 -0700455out:
456 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Patrick McHardyab33a172005-08-14 19:31:36 -0700458out_module:
459 module_put(module);
460 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463static int netlink_release(struct socket *sock)
464{
465 struct sock *sk = sock->sk;
466 struct netlink_sock *nlk;
467
468 if (!sk)
469 return 0;
470
471 netlink_remove(sk);
Denis Lunevac57b3a2007-04-18 17:05:58 -0700472 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 nlk = nlk_sk(sk);
474
Herbert Xu3f660d62007-05-03 03:17:14 -0700475 /*
476 * OK. Socket is unlinked, any packets that arrive now
477 * will be purged.
478 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 sock->sk = NULL;
481 wake_up_interruptible_all(&nlk->wait);
482
483 skb_queue_purge(&sk->sk_write_queue);
484
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700485 if (nlk->pid && !nlk->subscriptions) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 struct netlink_notify n = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200487 .net = sk->sk_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .protocol = sk->sk_protocol,
489 .pid = nlk->pid,
490 };
Alan Sterne041c682006-03-27 01:16:30 -0800491 atomic_notifier_call_chain(&netlink_chain,
492 NETLINK_URELEASE, &n);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900493 }
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700494
Mariusz Kozlowski5e7c0012007-01-02 15:24:30 -0800495 module_put(nlk->module);
Harald Welte4fdb3bb2005-08-09 19:40:55 -0700496
Patrick McHardy4277a082006-03-20 18:52:01 -0800497 netlink_table_grab();
Denis V. Lunevaed81562007-10-10 21:14:32 -0700498 if (netlink_is_kernel(sk)) {
Patrick McHardy4277a082006-03-20 18:52:01 -0800499 kfree(nl_table[sk->sk_protocol].listeners);
Patrick McHardy77247bb2005-08-14 19:27:13 -0700500 nl_table[sk->sk_protocol].module = NULL;
Patrick McHardyab33a172005-08-14 19:31:36 -0700501 nl_table[sk->sk_protocol].registered = 0;
Patrick McHardy4277a082006-03-20 18:52:01 -0800502 } else if (nlk->subscriptions)
503 netlink_update_listeners(sk);
504 netlink_table_ungrab();
Patrick McHardy77247bb2005-08-14 19:27:13 -0700505
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700506 kfree(nlk->groups);
507 nlk->groups = NULL;
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 sock_put(sk);
510 return 0;
511}
512
513static int netlink_autobind(struct socket *sock)
514{
515 struct sock *sk = sock->sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200516 struct net *net = sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
518 struct hlist_head *head;
519 struct sock *osk;
520 struct hlist_node *node;
Herbert Xuc27bd492005-11-22 14:41:50 -0800521 s32 pid = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 int err;
523 static s32 rover = -4097;
524
525retry:
526 cond_resched();
527 netlink_table_grab();
528 head = nl_pid_hashfn(hash, pid);
529 sk_for_each(osk, node, head) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200530 if ((osk->sk_net != net))
531 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (nlk_sk(osk)->pid == pid) {
533 /* Bind collision, search negative pid values. */
534 pid = rover--;
535 if (rover > -4097)
536 rover = -4097;
537 netlink_table_ungrab();
538 goto retry;
539 }
540 }
541 netlink_table_ungrab();
542
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200543 err = netlink_insert(sk, net, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (err == -EADDRINUSE)
545 goto retry;
David S. Millerd470e3b2005-06-26 15:31:51 -0700546
547 /* If 2 threads race to autobind, that is fine. */
548 if (err == -EBUSY)
549 err = 0;
550
551 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900554static inline int netlink_capable(struct socket *sock, unsigned int flag)
555{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
557 capable(CAP_NET_ADMIN);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900558}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700560static void
561netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
562{
563 struct netlink_sock *nlk = nlk_sk(sk);
564
565 if (nlk->subscriptions && !subscriptions)
566 __sk_del_bind_node(sk);
567 else if (!nlk->subscriptions && subscriptions)
568 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
569 nlk->subscriptions = subscriptions;
570}
571
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700572static int netlink_realloc_groups(struct sock *sk)
Patrick McHardy513c2502005-09-06 15:43:59 -0700573{
574 struct netlink_sock *nlk = nlk_sk(sk);
575 unsigned int groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700576 unsigned long *new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700577 int err = 0;
578
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700579 netlink_table_grab();
580
Patrick McHardy513c2502005-09-06 15:43:59 -0700581 groups = nl_table[sk->sk_protocol].groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700582 if (!nl_table[sk->sk_protocol].registered) {
Patrick McHardy513c2502005-09-06 15:43:59 -0700583 err = -ENOENT;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700584 goto out_unlock;
585 }
Patrick McHardy513c2502005-09-06 15:43:59 -0700586
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700587 if (nlk->ngroups >= groups)
588 goto out_unlock;
Patrick McHardy513c2502005-09-06 15:43:59 -0700589
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700590 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
591 if (new_groups == NULL) {
592 err = -ENOMEM;
593 goto out_unlock;
594 }
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800595 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700596 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
597
598 nlk->groups = new_groups;
Patrick McHardy513c2502005-09-06 15:43:59 -0700599 nlk->ngroups = groups;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700600 out_unlock:
601 netlink_table_ungrab();
602 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700603}
604
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800605static int netlink_bind(struct socket *sock, struct sockaddr *addr,
606 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct sock *sk = sock->sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200609 struct net *net = sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct netlink_sock *nlk = nlk_sk(sk);
611 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
612 int err;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (nladdr->nl_family != AF_NETLINK)
615 return -EINVAL;
616
617 /* Only superuser is allowed to listen multicasts */
Patrick McHardy513c2502005-09-06 15:43:59 -0700618 if (nladdr->nl_groups) {
619 if (!netlink_capable(sock, NL_NONROOT_RECV))
620 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700621 err = netlink_realloc_groups(sk);
622 if (err)
623 return err;
Patrick McHardy513c2502005-09-06 15:43:59 -0700624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (nlk->pid) {
627 if (nladdr->nl_pid != nlk->pid)
628 return -EINVAL;
629 } else {
630 err = nladdr->nl_pid ?
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200631 netlink_insert(sk, net, nladdr->nl_pid) :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 netlink_autobind(sock);
633 if (err)
634 return err;
635 }
636
Patrick McHardy513c2502005-09-06 15:43:59 -0700637 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639
640 netlink_table_grab();
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700641 netlink_update_subscriptions(sk, nlk->subscriptions +
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900642 hweight32(nladdr->nl_groups) -
643 hweight32(nlk->groups[0]));
644 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
Patrick McHardy4277a082006-03-20 18:52:01 -0800645 netlink_update_listeners(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 netlink_table_ungrab();
647
648 return 0;
649}
650
651static int netlink_connect(struct socket *sock, struct sockaddr *addr,
652 int alen, int flags)
653{
654 int err = 0;
655 struct sock *sk = sock->sk;
656 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800657 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (addr->sa_family == AF_UNSPEC) {
660 sk->sk_state = NETLINK_UNCONNECTED;
661 nlk->dst_pid = 0;
Patrick McHardyd629b832005-08-14 19:27:50 -0700662 nlk->dst_group = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return 0;
664 }
665 if (addr->sa_family != AF_NETLINK)
666 return -EINVAL;
667
668 /* Only superuser is allowed to send multicasts */
669 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
670 return -EPERM;
671
672 if (!nlk->pid)
673 err = netlink_autobind(sock);
674
675 if (err == 0) {
676 sk->sk_state = NETLINK_CONNECTED;
677 nlk->dst_pid = nladdr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700678 nlk->dst_group = ffs(nladdr->nl_groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
681 return err;
682}
683
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800684static int netlink_getname(struct socket *sock, struct sockaddr *addr,
685 int *addr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct sock *sk = sock->sk;
688 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800689 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +0900690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 nladdr->nl_family = AF_NETLINK;
692 nladdr->nl_pad = 0;
693 *addr_len = sizeof(*nladdr);
694
695 if (peer) {
696 nladdr->nl_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -0700697 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 } else {
699 nladdr->nl_pid = nlk->pid;
Patrick McHardy513c2502005-09-06 15:43:59 -0700700 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702 return 0;
703}
704
705static void netlink_overrun(struct sock *sk)
706{
707 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
708 sk->sk_err = ENOBUFS;
709 sk->sk_error_report(sk);
710 }
711}
712
713static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
714{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct sock *sock;
716 struct netlink_sock *nlk;
717
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700718 sock = netlink_lookup(ssk->sk_net, ssk->sk_protocol, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!sock)
720 return ERR_PTR(-ECONNREFUSED);
721
722 /* Don't bother queuing skb if kernel socket has no input function */
723 nlk = nlk_sk(sock);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700724 if (sock->sk_state == NETLINK_CONNECTED &&
725 nlk->dst_pid != nlk_sk(ssk)->pid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 sock_put(sock);
727 return ERR_PTR(-ECONNREFUSED);
728 }
729 return sock;
730}
731
732struct sock *netlink_getsockbyfilp(struct file *filp)
733{
Josef Sipek6db5fc52006-12-08 02:37:25 -0800734 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct sock *sock;
736
737 if (!S_ISSOCK(inode->i_mode))
738 return ERR_PTR(-ENOTSOCK);
739
740 sock = SOCKET_I(inode)->sk;
741 if (sock->sk_family != AF_NETLINK)
742 return ERR_PTR(-EINVAL);
743
744 sock_hold(sock);
745 return sock;
746}
747
748/*
749 * Attach a skb to a netlink socket.
750 * The caller must hold a reference to the destination socket. On error, the
751 * reference is dropped. The skb is not send to the destination, just all
752 * all error checks are performed and memory in the queue is reserved.
753 * Return values:
754 * < 0: error. skb freed, reference to sock dropped.
755 * 0: continue
756 * 1: repeat lookup - reference dropped while waiting for socket memory.
757 */
Alexey Kuznetsova70ea992006-02-09 16:40:11 -0800758int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800759 long *timeo, struct sock *ssk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 struct netlink_sock *nlk;
762
763 nlk = nlk_sk(sk);
764
765 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
766 test_bit(0, &nlk->state)) {
767 DECLARE_WAITQUEUE(wait, current);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800768 if (!*timeo) {
Denis V. Lunevaed81562007-10-10 21:14:32 -0700769 if (!ssk || netlink_is_kernel(ssk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 netlink_overrun(sk);
771 sock_put(sk);
772 kfree_skb(skb);
773 return -EAGAIN;
774 }
775
776 __set_current_state(TASK_INTERRUPTIBLE);
777 add_wait_queue(&nlk->wait, &wait);
778
779 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
780 test_bit(0, &nlk->state)) &&
781 !sock_flag(sk, SOCK_DEAD))
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800782 *timeo = schedule_timeout(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 __set_current_state(TASK_RUNNING);
785 remove_wait_queue(&nlk->wait, &wait);
786 sock_put(sk);
787
788 if (signal_pending(current)) {
789 kfree_skb(skb);
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800790 return sock_intr_errno(*timeo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792 return 1;
793 }
794 skb_set_owner_r(skb, sk);
795 return 0;
796}
797
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700798int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 int len = skb->len;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 skb_queue_tail(&sk->sk_receive_queue, skb);
803 sk->sk_data_ready(sk, len);
804 sock_put(sk);
805 return len;
806}
807
808void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
809{
810 kfree_skb(skb);
811 sock_put(sk);
812}
813
Victor Fusco37da6472005-07-18 13:35:43 -0700814static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
Al Virodd0fc662005-10-07 07:46:04 +0100815 gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 int delta;
818
819 skb_orphan(skb);
820
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700821 delta = skb->end - skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (delta * 2 < skb->truesize)
823 return skb;
824
825 if (skb_shared(skb)) {
826 struct sk_buff *nskb = skb_clone(skb, allocation);
827 if (!nskb)
828 return skb;
829 kfree_skb(skb);
830 skb = nskb;
831 }
832
833 if (!pskb_expand_head(skb, 0, -delta, allocation))
834 skb->truesize -= delta;
835
836 return skb;
837}
838
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700839static inline void netlink_rcv_wake(struct sock *sk)
840{
841 struct netlink_sock *nlk = nlk_sk(sk);
842
843 if (skb_queue_empty(&sk->sk_receive_queue))
844 clear_bit(0, &nlk->state);
845 if (!test_bit(0, &nlk->state))
846 wake_up_interruptible(&nlk->wait);
847}
848
849static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
850{
851 int ret;
852 struct netlink_sock *nlk = nlk_sk(sk);
853
854 ret = -ECONNREFUSED;
855 if (nlk->netlink_rcv != NULL) {
856 ret = skb->len;
857 skb_set_owner_r(skb, sk);
858 nlk->netlink_rcv(skb);
859 }
860 kfree_skb(skb);
861 sock_put(sk);
862 return ret;
863}
864
865int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
866 u32 pid, int nonblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct sock *sk;
869 int err;
870 long timeo;
871
872 skb = netlink_trim(skb, gfp_any());
873
874 timeo = sock_sndtimeo(ssk, nonblock);
875retry:
876 sk = netlink_getsockbypid(ssk, pid);
877 if (IS_ERR(sk)) {
878 kfree_skb(skb);
879 return PTR_ERR(sk);
880 }
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -0700881 if (netlink_is_kernel(sk))
882 return netlink_unicast_kernel(sk, skb);
883
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -0800884 err = netlink_attachskb(sk, skb, nonblock, &timeo, ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (err == 1)
886 goto retry;
887 if (err)
888 return err;
889
Denis V. Lunev7ee015e2007-10-10 21:14:03 -0700890 return netlink_sendskb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800892EXPORT_SYMBOL(netlink_unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Patrick McHardy4277a082006-03-20 18:52:01 -0800894int netlink_has_listeners(struct sock *sk, unsigned int group)
895{
896 int res = 0;
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700897 unsigned long *listeners;
Patrick McHardy4277a082006-03-20 18:52:01 -0800898
Denis V. Lunevaed81562007-10-10 21:14:32 -0700899 BUG_ON(!netlink_is_kernel(sk));
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700900
901 rcu_read_lock();
902 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
903
Patrick McHardy4277a082006-03-20 18:52:01 -0800904 if (group - 1 < nl_table[sk->sk_protocol].groups)
Johannes Bergb4ff4f02007-07-18 15:46:06 -0700905 res = test_bit(group - 1, listeners);
906
907 rcu_read_unlock();
908
Patrick McHardy4277a082006-03-20 18:52:01 -0800909 return res;
910}
911EXPORT_SYMBOL_GPL(netlink_has_listeners);
912
Patrick McHardy6ac552f2007-12-04 00:19:38 -0800913static inline int netlink_broadcast_deliver(struct sock *sk,
914 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 struct netlink_sock *nlk = nlk_sk(sk);
917
918 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
919 !test_bit(0, &nlk->state)) {
920 skb_set_owner_r(skb, sk);
921 skb_queue_tail(&sk->sk_receive_queue, skb);
922 sk->sk_data_ready(sk, skb->len);
923 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
924 }
925 return -1;
926}
927
928struct netlink_broadcast_data {
929 struct sock *exclude_sk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200930 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 u32 pid;
932 u32 group;
933 int failure;
934 int congested;
935 int delivered;
Al Viro7d877f32005-10-21 03:20:43 -0400936 gfp_t allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 struct sk_buff *skb, *skb2;
938};
939
940static inline int do_one_broadcast(struct sock *sk,
941 struct netlink_broadcast_data *p)
942{
943 struct netlink_sock *nlk = nlk_sk(sk);
944 int val;
945
946 if (p->exclude_sk == sk)
947 goto out;
948
Patrick McHardyf7fa9b12005-08-15 12:29:13 -0700949 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
950 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 goto out;
952
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200953 if ((sk->sk_net != p->net))
954 goto out;
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (p->failure) {
957 netlink_overrun(sk);
958 goto out;
959 }
960
961 sock_hold(sk);
962 if (p->skb2 == NULL) {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700963 if (skb_shared(p->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 p->skb2 = skb_clone(p->skb, p->allocation);
965 } else {
Tommy S. Christensen68acc022005-05-19 13:06:35 -0700966 p->skb2 = skb_get(p->skb);
967 /*
968 * skb ownership may have been set when
969 * delivered to a previous socket.
970 */
971 skb_orphan(p->skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973 }
974 if (p->skb2 == NULL) {
975 netlink_overrun(sk);
976 /* Clone failed. Notify ALL listeners. */
977 p->failure = 1;
978 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
979 netlink_overrun(sk);
980 } else {
981 p->congested |= val;
982 p->delivered = 1;
983 p->skb2 = NULL;
984 }
985 sock_put(sk);
986
987out:
988 return 0;
989}
990
991int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
Al Virodd0fc662005-10-07 07:46:04 +0100992 u32 group, gfp_t allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200994 struct net *net = ssk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 struct netlink_broadcast_data info;
996 struct hlist_node *node;
997 struct sock *sk;
998
999 skb = netlink_trim(skb, allocation);
1000
1001 info.exclude_sk = ssk;
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001002 info.net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 info.pid = pid;
1004 info.group = group;
1005 info.failure = 0;
1006 info.congested = 0;
1007 info.delivered = 0;
1008 info.allocation = allocation;
1009 info.skb = skb;
1010 info.skb2 = NULL;
1011
1012 /* While we sleep in clone, do not allow to change socket list */
1013
1014 netlink_lock_table();
1015
1016 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1017 do_one_broadcast(sk, &info);
1018
Tommy S. Christensenaa1c6a62005-05-19 13:07:32 -07001019 kfree_skb(skb);
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 netlink_unlock_table();
1022
1023 if (info.skb2)
1024 kfree_skb(info.skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (info.delivered) {
1027 if (info.congested && (allocation & __GFP_WAIT))
1028 yield();
1029 return 0;
1030 }
1031 if (info.failure)
1032 return -ENOBUFS;
1033 return -ESRCH;
1034}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001035EXPORT_SYMBOL(netlink_broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037struct netlink_set_err_data {
1038 struct sock *exclude_sk;
1039 u32 pid;
1040 u32 group;
1041 int code;
1042};
1043
1044static inline int do_one_set_err(struct sock *sk,
1045 struct netlink_set_err_data *p)
1046{
1047 struct netlink_sock *nlk = nlk_sk(sk);
1048
1049 if (sk == p->exclude_sk)
1050 goto out;
1051
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001052 if (sk->sk_net != p->exclude_sk->sk_net)
1053 goto out;
1054
Patrick McHardyf7fa9b12005-08-15 12:29:13 -07001055 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1056 !test_bit(p->group - 1, nlk->groups))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 goto out;
1058
1059 sk->sk_err = p->code;
1060 sk->sk_error_report(sk);
1061out:
1062 return 0;
1063}
1064
1065void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1066{
1067 struct netlink_set_err_data info;
1068 struct hlist_node *node;
1069 struct sock *sk;
1070
1071 info.exclude_sk = ssk;
1072 info.pid = pid;
1073 info.group = group;
1074 info.code = code;
1075
1076 read_lock(&nl_table_lock);
1077
1078 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1079 do_one_set_err(sk, &info);
1080
1081 read_unlock(&nl_table_lock);
1082}
1083
Johannes Berg84659eb2007-07-18 15:47:05 -07001084/* must be called with netlink table grabbed */
1085static void netlink_update_socket_mc(struct netlink_sock *nlk,
1086 unsigned int group,
1087 int is_new)
1088{
1089 int old, new = !!is_new, subscriptions;
1090
1091 old = test_bit(group - 1, nlk->groups);
1092 subscriptions = nlk->subscriptions - old + new;
1093 if (new)
1094 __set_bit(group - 1, nlk->groups);
1095 else
1096 __clear_bit(group - 1, nlk->groups);
1097 netlink_update_subscriptions(&nlk->sk, subscriptions);
1098 netlink_update_listeners(&nlk->sk);
1099}
1100
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001101static int netlink_setsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001102 char __user *optval, int optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001103{
1104 struct sock *sk = sock->sk;
1105 struct netlink_sock *nlk = nlk_sk(sk);
Johannes Bergeb496532007-07-18 02:07:51 -07001106 unsigned int val = 0;
1107 int err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001108
1109 if (level != SOL_NETLINK)
1110 return -ENOPROTOOPT;
1111
1112 if (optlen >= sizeof(int) &&
Johannes Bergeb496532007-07-18 02:07:51 -07001113 get_user(val, (unsigned int __user *)optval))
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001114 return -EFAULT;
1115
1116 switch (optname) {
1117 case NETLINK_PKTINFO:
1118 if (val)
1119 nlk->flags |= NETLINK_RECV_PKTINFO;
1120 else
1121 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1122 err = 0;
1123 break;
1124 case NETLINK_ADD_MEMBERSHIP:
1125 case NETLINK_DROP_MEMBERSHIP: {
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001126 if (!netlink_capable(sock, NL_NONROOT_RECV))
1127 return -EPERM;
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001128 err = netlink_realloc_groups(sk);
1129 if (err)
1130 return err;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001131 if (!val || val - 1 >= nlk->ngroups)
1132 return -EINVAL;
1133 netlink_table_grab();
Johannes Berg84659eb2007-07-18 15:47:05 -07001134 netlink_update_socket_mc(nlk, val,
1135 optname == NETLINK_ADD_MEMBERSHIP);
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001136 netlink_table_ungrab();
1137 err = 0;
1138 break;
1139 }
1140 default:
1141 err = -ENOPROTOOPT;
1142 }
1143 return err;
1144}
1145
1146static int netlink_getsockopt(struct socket *sock, int level, int optname,
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001147 char __user *optval, int __user *optlen)
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001148{
1149 struct sock *sk = sock->sk;
1150 struct netlink_sock *nlk = nlk_sk(sk);
1151 int len, val, err;
1152
1153 if (level != SOL_NETLINK)
1154 return -ENOPROTOOPT;
1155
1156 if (get_user(len, optlen))
1157 return -EFAULT;
1158 if (len < 0)
1159 return -EINVAL;
1160
1161 switch (optname) {
1162 case NETLINK_PKTINFO:
1163 if (len < sizeof(int))
1164 return -EINVAL;
1165 len = sizeof(int);
1166 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
Heiko Carstensa27b58f2006-10-30 15:06:12 -08001167 if (put_user(len, optlen) ||
1168 put_user(val, optval))
1169 return -EFAULT;
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001170 err = 0;
1171 break;
1172 default:
1173 err = -ENOPROTOOPT;
1174 }
1175 return err;
1176}
1177
1178static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1179{
1180 struct nl_pktinfo info;
1181
1182 info.group = NETLINK_CB(skb).dst_group;
1183 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1187 struct msghdr *msg, size_t len)
1188{
1189 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1190 struct sock *sk = sock->sk;
1191 struct netlink_sock *nlk = nlk_sk(sk);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001192 struct sockaddr_nl *addr = msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 u32 dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001194 u32 dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 struct sk_buff *skb;
1196 int err;
1197 struct scm_cookie scm;
1198
1199 if (msg->msg_flags&MSG_OOB)
1200 return -EOPNOTSUPP;
1201
1202 if (NULL == siocb->scm)
1203 siocb->scm = &scm;
1204 err = scm_send(sock, msg, siocb->scm);
1205 if (err < 0)
1206 return err;
1207
1208 if (msg->msg_namelen) {
1209 if (addr->nl_family != AF_NETLINK)
1210 return -EINVAL;
1211 dst_pid = addr->nl_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001212 dst_group = ffs(addr->nl_groups);
1213 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return -EPERM;
1215 } else {
1216 dst_pid = nlk->dst_pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001217 dst_group = nlk->dst_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219
1220 if (!nlk->pid) {
1221 err = netlink_autobind(sock);
1222 if (err)
1223 goto out;
1224 }
1225
1226 err = -EMSGSIZE;
1227 if (len > sk->sk_sndbuf - 32)
1228 goto out;
1229 err = -ENOBUFS;
Thomas Graf339bf982006-11-10 14:10:15 -08001230 skb = alloc_skb(len, GFP_KERNEL);
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001231 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 goto out;
1233
1234 NETLINK_CB(skb).pid = nlk->pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001235 NETLINK_CB(skb).dst_group = dst_group;
Serge Hallync94c2572005-04-29 16:27:17 +01001236 NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);
Steve Grubbe7c34972006-04-03 09:08:13 -04001237 selinux_get_task_sid(current, &(NETLINK_CB(skb).sid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1239
1240 /* What can I do? Netlink is asynchronous, so that
1241 we will have to save current capabilities to
1242 check them, when this message will be delivered
1243 to corresponding kernel module. --ANK (980802)
1244 */
1245
1246 err = -EFAULT;
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001247 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 kfree_skb(skb);
1249 goto out;
1250 }
1251
1252 err = security_netlink_send(sk, skb);
1253 if (err) {
1254 kfree_skb(skb);
1255 goto out;
1256 }
1257
Patrick McHardyd629b832005-08-14 19:27:50 -07001258 if (dst_group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 atomic_inc(&skb->users);
Patrick McHardyd629b832005-08-14 19:27:50 -07001260 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1263
1264out:
1265 return err;
1266}
1267
1268static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1269 struct msghdr *msg, size_t len,
1270 int flags)
1271{
1272 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1273 struct scm_cookie scm;
1274 struct sock *sk = sock->sk;
1275 struct netlink_sock *nlk = nlk_sk(sk);
1276 int noblock = flags&MSG_DONTWAIT;
1277 size_t copied;
1278 struct sk_buff *skb;
1279 int err;
1280
1281 if (flags&MSG_OOB)
1282 return -EOPNOTSUPP;
1283
1284 copied = 0;
1285
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001286 skb = skb_recv_datagram(sk, flags, noblock, &err);
1287 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 goto out;
1289
1290 msg->msg_namelen = 0;
1291
1292 copied = skb->len;
1293 if (len < copied) {
1294 msg->msg_flags |= MSG_TRUNC;
1295 copied = len;
1296 }
1297
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001298 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1300
1301 if (msg->msg_name) {
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001302 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 addr->nl_family = AF_NETLINK;
1304 addr->nl_pad = 0;
1305 addr->nl_pid = NETLINK_CB(skb).pid;
Patrick McHardyd629b832005-08-14 19:27:50 -07001306 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 msg->msg_namelen = sizeof(*addr);
1308 }
1309
Patrick McHardycc9a06c2006-03-12 20:34:27 -08001310 if (nlk->flags & NETLINK_RECV_PKTINFO)
1311 netlink_cmsg_recv_pktinfo(msg, skb);
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (NULL == siocb->scm) {
1314 memset(&scm, 0, sizeof(scm));
1315 siocb->scm = &scm;
1316 }
1317 siocb->scm->creds = *NETLINK_CREDS(skb);
Patrick McHardy188ccb52007-05-03 03:27:01 -07001318 if (flags & MSG_TRUNC)
1319 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 skb_free_datagram(sk, skb);
1321
1322 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1323 netlink_dump(sk);
1324
1325 scm_recv(sock, msg, siocb->scm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326out:
1327 netlink_rcv_wake(sk);
1328 return err ? : copied;
1329}
1330
1331static void netlink_data_ready(struct sock *sk, int len)
1332{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001333 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336/*
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001337 * We export these functions to other modules. They provide a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 * complete set of kernel non-blocking support for message
1339 * queueing.
1340 */
1341
1342struct sock *
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001343netlink_kernel_create(struct net *net, int unit, unsigned int groups,
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001344 void (*input)(struct sk_buff *skb),
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001345 struct mutex *cb_mutex, struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 struct socket *sock;
1348 struct sock *sk;
Patrick McHardy77247bb2005-08-14 19:27:13 -07001349 struct netlink_sock *nlk;
Patrick McHardy4277a082006-03-20 18:52:01 -08001350 unsigned long *listeners = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001352 BUG_ON(!nl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001354 if (unit < 0 || unit >= MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return NULL;
1356
1357 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1358 return NULL;
1359
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001360 if (__netlink_create(net, sock, cb_mutex, unit) < 0)
Patrick McHardy77247bb2005-08-14 19:27:13 -07001361 goto out_sock_release;
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001362
Patrick McHardy4277a082006-03-20 18:52:01 -08001363 if (groups < 32)
1364 groups = 32;
1365
1366 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1367 if (!listeners)
1368 goto out_sock_release;
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 sk = sock->sk;
1371 sk->sk_data_ready = netlink_data_ready;
1372 if (input)
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001373 nlk_sk(sk)->netlink_rcv = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001375 if (netlink_insert(sk, net, 0))
Patrick McHardy77247bb2005-08-14 19:27:13 -07001376 goto out_sock_release;
1377
1378 nlk = nlk_sk(sk);
1379 nlk->flags |= NETLINK_KERNEL_SOCKET;
1380
1381 netlink_table_grab();
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001382 if (!nl_table[unit].registered) {
1383 nl_table[unit].groups = groups;
1384 nl_table[unit].listeners = listeners;
1385 nl_table[unit].cb_mutex = cb_mutex;
1386 nl_table[unit].module = module;
1387 nl_table[unit].registered = 1;
Jesper Juhlf937f1f462007-10-15 01:39:12 -07001388 } else {
1389 kfree(listeners);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001390 }
Patrick McHardy77247bb2005-08-14 19:27:13 -07001391 netlink_table_ungrab();
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001392
1393 return sk;
1394
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001395out_sock_release:
Patrick McHardy4277a082006-03-20 18:52:01 -08001396 kfree(listeners);
Harald Welte4fdb3bb2005-08-09 19:40:55 -07001397 sock_release(sock);
Patrick McHardy77247bb2005-08-14 19:27:13 -07001398 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001400EXPORT_SYMBOL(netlink_kernel_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001402/**
1403 * netlink_change_ngroups - change number of multicast groups
1404 *
1405 * This changes the number of multicast groups that are available
1406 * on a certain netlink family. Note that it is not possible to
Johannes Berg84659eb2007-07-18 15:47:05 -07001407 * change the number of groups to below 32. Also note that it does
1408 * not implicitly call netlink_clear_multicast_users() when the
1409 * number of groups is reduced.
Johannes Bergb4ff4f02007-07-18 15:46:06 -07001410 *
1411 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1412 * @groups: The new number of groups.
1413 */
1414int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1415{
1416 unsigned long *listeners, *old = NULL;
1417 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1418 int err = 0;
1419
1420 if (groups < 32)
1421 groups = 32;
1422
1423 netlink_table_grab();
1424 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1425 listeners = kzalloc(NLGRPSZ(groups), GFP_ATOMIC);
1426 if (!listeners) {
1427 err = -ENOMEM;
1428 goto out_ungrab;
1429 }
1430 old = tbl->listeners;
1431 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1432 rcu_assign_pointer(tbl->listeners, listeners);
1433 }
1434 tbl->groups = groups;
1435
1436 out_ungrab:
1437 netlink_table_ungrab();
1438 synchronize_rcu();
1439 kfree(old);
1440 return err;
1441}
1442EXPORT_SYMBOL(netlink_change_ngroups);
1443
Johannes Berg84659eb2007-07-18 15:47:05 -07001444/**
1445 * netlink_clear_multicast_users - kick off multicast listeners
1446 *
1447 * This function removes all listeners from the given group.
1448 * @ksk: The kernel netlink socket, as returned by
1449 * netlink_kernel_create().
1450 * @group: The multicast group to clear.
1451 */
1452void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1453{
1454 struct sock *sk;
1455 struct hlist_node *node;
1456 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1457
1458 netlink_table_grab();
1459
1460 sk_for_each_bound(sk, node, &tbl->mc_list)
1461 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1462
1463 netlink_table_ungrab();
1464}
1465EXPORT_SYMBOL(netlink_clear_multicast_users);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467void netlink_set_nonroot(int protocol, unsigned int flags)
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001468{
1469 if ((unsigned int)protocol < MAX_LINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 nl_table[protocol].nl_nonroot = flags;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001471}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001472EXPORT_SYMBOL(netlink_set_nonroot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474static void netlink_destroy_callback(struct netlink_callback *cb)
1475{
1476 if (cb->skb)
1477 kfree_skb(cb->skb);
1478 kfree(cb);
1479}
1480
1481/*
1482 * It looks a bit ugly.
1483 * It would be better to create kernel thread.
1484 */
1485
1486static int netlink_dump(struct sock *sk)
1487{
1488 struct netlink_sock *nlk = nlk_sk(sk);
1489 struct netlink_callback *cb;
1490 struct sk_buff *skb;
1491 struct nlmsghdr *nlh;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001492 int len, err = -ENOBUFS;
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1495 if (!skb)
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001496 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001498 mutex_lock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 cb = nlk->cb;
1501 if (cb == NULL) {
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001502 err = -EINVAL;
1503 goto errout_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505
1506 len = cb->dump(skb, cb);
1507
1508 if (len > 0) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001509 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 skb_queue_tail(&sk->sk_receive_queue, skb);
1511 sk->sk_data_ready(sk, len);
1512 return 0;
1513 }
1514
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001515 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1516 if (!nlh)
1517 goto errout_skb;
1518
1519 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 skb_queue_tail(&sk->sk_receive_queue, skb);
1522 sk->sk_data_ready(sk, skb->len);
1523
Thomas Grafa8f74b22005-11-10 02:25:52 +01001524 if (cb->done)
1525 cb->done(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 nlk->cb = NULL;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001527 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 netlink_destroy_callback(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 return 0;
Thomas Graf17977542005-06-18 22:53:48 -07001531
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001532errout_skb:
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001533 mutex_unlock(nlk->cb_mutex);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001534 kfree_skb(skb);
1535errout:
1536 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1540 struct nlmsghdr *nlh,
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001541 int (*dump)(struct sk_buff *skb,
1542 struct netlink_callback *),
1543 int (*done)(struct netlink_callback *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 struct netlink_callback *cb;
1546 struct sock *sk;
1547 struct netlink_sock *nlk;
1548
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001549 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (cb == NULL)
1551 return -ENOBUFS;
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 cb->dump = dump;
1554 cb->done = done;
1555 cb->nlh = nlh;
1556 atomic_inc(&skb->users);
1557 cb->skb = skb;
1558
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001559 sk = netlink_lookup(ssk->sk_net, ssk->sk_protocol, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (sk == NULL) {
1561 netlink_destroy_callback(cb);
1562 return -ECONNREFUSED;
1563 }
1564 nlk = nlk_sk(sk);
Herbert Xu3f660d62007-05-03 03:17:14 -07001565 /* A dump is in progress... */
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001566 mutex_lock(nlk->cb_mutex);
Herbert Xu3f660d62007-05-03 03:17:14 -07001567 if (nlk->cb) {
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001568 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 netlink_destroy_callback(cb);
1570 sock_put(sk);
1571 return -EBUSY;
1572 }
1573 nlk->cb = cb;
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07001574 mutex_unlock(nlk->cb_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 netlink_dump(sk);
1577 sock_put(sk);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001578
1579 /* We successfully started a dump, by returning -EINTR we
1580 * signal not to send ACK even if it was requested.
1581 */
1582 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001584EXPORT_SYMBOL(netlink_dump_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1587{
1588 struct sk_buff *skb;
1589 struct nlmsghdr *rep;
1590 struct nlmsgerr *errmsg;
Thomas Graf339bf982006-11-10 14:10:15 -08001591 size_t payload = sizeof(*errmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Thomas Graf339bf982006-11-10 14:10:15 -08001593 /* error messages get the original request appened */
1594 if (err)
1595 payload += nlmsg_len(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Thomas Graf339bf982006-11-10 14:10:15 -08001597 skb = nlmsg_new(payload, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (!skb) {
1599 struct sock *sk;
1600
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001601 sk = netlink_lookup(in_skb->sk->sk_net,
1602 in_skb->sk->sk_protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 NETLINK_CB(in_skb).pid);
1604 if (sk) {
1605 sk->sk_err = ENOBUFS;
1606 sk->sk_error_report(sk);
1607 sock_put(sk);
1608 }
1609 return;
1610 }
1611
1612 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Thomas Graf17977542005-06-18 22:53:48 -07001613 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001614 errmsg = nlmsg_data(rep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 errmsg->error = err;
Thomas Grafbf8b79e2006-08-04 23:03:29 -07001616 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1618}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001619EXPORT_SYMBOL(netlink_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001621int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001622 struct nlmsghdr *))
Thomas Graf82ace472005-11-10 02:25:53 +01001623{
Thomas Graf82ace472005-11-10 02:25:53 +01001624 struct nlmsghdr *nlh;
1625 int err;
1626
1627 while (skb->len >= nlmsg_total_size(0)) {
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001628 int msglen;
1629
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -07001630 nlh = nlmsg_hdr(skb);
Thomas Grafd35b6852007-03-22 23:28:46 -07001631 err = 0;
Thomas Graf82ace472005-11-10 02:25:53 +01001632
Martin Murrayad8e4b72006-01-10 13:02:29 -08001633 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
Thomas Graf82ace472005-11-10 02:25:53 +01001634 return 0;
1635
Thomas Grafd35b6852007-03-22 23:28:46 -07001636 /* Only requests are handled by the kernel */
1637 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
Denis V. Lunev5c582982007-10-23 20:29:25 -07001638 goto ack;
Thomas Grafd35b6852007-03-22 23:28:46 -07001639
Thomas Graf45e7ae72007-03-22 23:29:10 -07001640 /* Skip control messages */
1641 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
Denis V. Lunev5c582982007-10-23 20:29:25 -07001642 goto ack;
Thomas Graf45e7ae72007-03-22 23:29:10 -07001643
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001644 err = cb(skb, nlh);
Denis V. Lunev5c582982007-10-23 20:29:25 -07001645 if (err == -EINTR)
1646 goto skip;
1647
1648ack:
Thomas Grafd35b6852007-03-22 23:28:46 -07001649 if (nlh->nlmsg_flags & NLM_F_ACK || err)
Thomas Graf82ace472005-11-10 02:25:53 +01001650 netlink_ack(skb, nlh, err);
Thomas Graf82ace472005-11-10 02:25:53 +01001651
Denis V. Lunev5c582982007-10-23 20:29:25 -07001652skip:
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001653 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07001654 if (msglen > skb->len)
1655 msglen = skb->len;
1656 skb_pull(skb, msglen);
Thomas Graf82ace472005-11-10 02:25:53 +01001657 }
1658
1659 return 0;
1660}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001661EXPORT_SYMBOL(netlink_rcv_skb);
Thomas Graf82ace472005-11-10 02:25:53 +01001662
1663/**
Thomas Grafd387f6a2006-08-15 00:31:06 -07001664 * nlmsg_notify - send a notification netlink message
1665 * @sk: netlink socket to use
1666 * @skb: notification message
1667 * @pid: destination netlink pid for reports or 0
1668 * @group: destination multicast group or 0
1669 * @report: 1 to report back, 0 to disable
1670 * @flags: allocation flags
1671 */
1672int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1673 unsigned int group, int report, gfp_t flags)
1674{
1675 int err = 0;
1676
1677 if (group) {
1678 int exclude_pid = 0;
1679
1680 if (report) {
1681 atomic_inc(&skb->users);
1682 exclude_pid = pid;
1683 }
1684
1685 /* errors reported via destination sk->sk_err */
1686 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1687 }
1688
1689 if (report)
1690 err = nlmsg_unicast(sk, skb, pid);
1691
1692 return err;
1693}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001694EXPORT_SYMBOL(nlmsg_notify);
Thomas Grafd387f6a2006-08-15 00:31:06 -07001695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696#ifdef CONFIG_PROC_FS
1697struct nl_seq_iter {
Denis V. Luneve372c412007-11-19 22:31:54 -08001698 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 int link;
1700 int hash_idx;
1701};
1702
1703static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1704{
1705 struct nl_seq_iter *iter = seq->private;
1706 int i, j;
1707 struct sock *s;
1708 struct hlist_node *node;
1709 loff_t off = 0;
1710
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001711 for (i = 0; i < MAX_LINKS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct nl_pid_hash *hash = &nl_table[i].hash;
1713
1714 for (j = 0; j <= hash->mask; j++) {
1715 sk_for_each(s, node, &hash->table[j]) {
Denis V. Luneve372c412007-11-19 22:31:54 -08001716 if (iter->p.net != s->sk_net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001717 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (off == pos) {
1719 iter->link = i;
1720 iter->hash_idx = j;
1721 return s;
1722 }
1723 ++off;
1724 }
1725 }
1726 }
1727 return NULL;
1728}
1729
1730static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1731{
1732 read_lock(&nl_table_lock);
1733 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1734}
1735
1736static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1737{
1738 struct sock *s;
1739 struct nl_seq_iter *iter;
1740 int i, j;
1741
1742 ++*pos;
1743
1744 if (v == SEQ_START_TOKEN)
1745 return netlink_seq_socket_idx(seq, 0);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001746
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001747 iter = seq->private;
1748 s = v;
1749 do {
1750 s = sk_next(s);
Denis V. Luneve372c412007-11-19 22:31:54 -08001751 } while (s && (iter->p.net != s->sk_net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (s)
1753 return s;
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 i = iter->link;
1756 j = iter->hash_idx + 1;
1757
1758 do {
1759 struct nl_pid_hash *hash = &nl_table[i].hash;
1760
1761 for (; j <= hash->mask; j++) {
1762 s = sk_head(&hash->table[j]);
Denis V. Luneve372c412007-11-19 22:31:54 -08001763 while (s && (iter->p.net != s->sk_net))
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001764 s = sk_next(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (s) {
1766 iter->link = i;
1767 iter->hash_idx = j;
1768 return s;
1769 }
1770 }
1771
1772 j = 0;
1773 } while (++i < MAX_LINKS);
1774
1775 return NULL;
1776}
1777
1778static void netlink_seq_stop(struct seq_file *seq, void *v)
1779{
1780 read_unlock(&nl_table_lock);
1781}
1782
1783
1784static int netlink_seq_show(struct seq_file *seq, void *v)
1785{
1786 if (v == SEQ_START_TOKEN)
1787 seq_puts(seq,
1788 "sk Eth Pid Groups "
1789 "Rmem Wmem Dump Locks\n");
1790 else {
1791 struct sock *s = v;
1792 struct netlink_sock *nlk = nlk_sk(s);
1793
1794 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1795 s,
1796 s->sk_protocol,
1797 nlk->pid,
Patrick McHardy513c2502005-09-06 15:43:59 -07001798 nlk->groups ? (u32)nlk->groups[0] : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 atomic_read(&s->sk_rmem_alloc),
1800 atomic_read(&s->sk_wmem_alloc),
1801 nlk->cb,
1802 atomic_read(&s->sk_refcnt)
1803 );
1804
1805 }
1806 return 0;
1807}
1808
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001809static const struct seq_operations netlink_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 .start = netlink_seq_start,
1811 .next = netlink_seq_next,
1812 .stop = netlink_seq_stop,
1813 .show = netlink_seq_show,
1814};
1815
1816
1817static int netlink_seq_open(struct inode *inode, struct file *file)
1818{
Denis V. Luneve372c412007-11-19 22:31:54 -08001819 return seq_open_net(inode, file, &netlink_seq_ops,
1820 sizeof(struct nl_seq_iter));
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001821}
1822
Arjan van de Venda7071d2007-02-12 00:55:36 -08001823static const struct file_operations netlink_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 .owner = THIS_MODULE,
1825 .open = netlink_seq_open,
1826 .read = seq_read,
1827 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08001828 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829};
1830
1831#endif
1832
1833int netlink_register_notifier(struct notifier_block *nb)
1834{
Alan Sterne041c682006-03-27 01:16:30 -08001835 return atomic_notifier_chain_register(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001837EXPORT_SYMBOL(netlink_register_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839int netlink_unregister_notifier(struct notifier_block *nb)
1840{
Alan Sterne041c682006-03-27 01:16:30 -08001841 return atomic_notifier_chain_unregister(&netlink_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
Patrick McHardy6ac552f2007-12-04 00:19:38 -08001843EXPORT_SYMBOL(netlink_unregister_notifier);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001844
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001845static const struct proto_ops netlink_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 .family = PF_NETLINK,
1847 .owner = THIS_MODULE,
1848 .release = netlink_release,
1849 .bind = netlink_bind,
1850 .connect = netlink_connect,
1851 .socketpair = sock_no_socketpair,
1852 .accept = sock_no_accept,
1853 .getname = netlink_getname,
1854 .poll = datagram_poll,
1855 .ioctl = sock_no_ioctl,
1856 .listen = sock_no_listen,
1857 .shutdown = sock_no_shutdown,
Patrick McHardy9a4595b2005-08-15 12:32:15 -07001858 .setsockopt = netlink_setsockopt,
1859 .getsockopt = netlink_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 .sendmsg = netlink_sendmsg,
1861 .recvmsg = netlink_recvmsg,
1862 .mmap = sock_no_mmap,
1863 .sendpage = sock_no_sendpage,
1864};
1865
1866static struct net_proto_family netlink_family_ops = {
1867 .family = PF_NETLINK,
1868 .create = netlink_create,
1869 .owner = THIS_MODULE, /* for consistency 8) */
1870};
1871
Pavel Emelyanov46650792007-10-08 20:38:39 -07001872static int __net_init netlink_net_init(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001873{
1874#ifdef CONFIG_PROC_FS
1875 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
1876 return -ENOMEM;
1877#endif
1878 return 0;
1879}
1880
Pavel Emelyanov46650792007-10-08 20:38:39 -07001881static void __net_exit netlink_net_exit(struct net *net)
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001882{
1883#ifdef CONFIG_PROC_FS
1884 proc_net_remove(net, "netlink");
1885#endif
1886}
1887
Denis V. Lunev022cbae2007-11-13 03:23:50 -08001888static struct pernet_operations __net_initdata netlink_net_ops = {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001889 .init = netlink_net_init,
1890 .exit = netlink_net_exit,
1891};
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893static int __init netlink_proto_init(void)
1894{
1895 struct sk_buff *dummy_skb;
1896 int i;
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001897 unsigned long limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 unsigned int order;
1899 int err = proto_register(&netlink_proto, 0);
1900
1901 if (err != 0)
1902 goto out;
1903
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001904 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001906 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001907 if (!nl_table)
1908 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (num_physpages >= (128 * 1024))
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001911 limit = num_physpages >> (21 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 else
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001913 limit = num_physpages >> (23 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Denis Cheng26ff5dd2007-09-16 16:36:02 -07001915 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
1916 limit = (1UL << order) / sizeof(struct hlist_head);
1917 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 for (i = 0; i < MAX_LINKS; i++) {
1920 struct nl_pid_hash *hash = &nl_table[i].hash;
1921
Eric Dumazetea729122007-12-11 02:09:47 -08001922 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (!hash->table) {
1924 while (i-- > 0)
1925 nl_pid_hash_free(nl_table[i].hash.table,
1926 1 * sizeof(*hash->table));
1927 kfree(nl_table);
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001928 goto panic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 hash->max_shift = order;
1931 hash->shift = 0;
1932 hash->mask = 0;
1933 hash->rehash_time = jiffies;
1934 }
1935
1936 sock_register(&netlink_family_ops);
Eric W. Biedermanb4b51022007-09-12 13:05:38 +02001937 register_pernet_subsys(&netlink_net_ops);
YOSHIFUJI Hideaki746fac42007-02-09 23:25:07 +09001938 /* The netlink device handler may be needed early. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 rtnetlink_init();
1940out:
1941 return err;
Akinobu Mitafab2caf2006-08-29 02:15:24 -07001942panic:
1943 panic("netlink_init: Cannot allocate nl_table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946core_initcall(netlink_proto_init);