net: Make sure BHs are disabled in sock_prot_inuse_add()
[deliverable/linux.git] / net / netlink / af_netlink.c
CommitLineData
1da177e4
LT
1/*
2 * NETLINK Kernel-user communication protocol.
3 *
113aa838 4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
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.
746fac4d 11 *
1da177e4
LT
12 * 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)
4fdb3bb7
HW
16 * 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
1da177e4
LT
22 */
23
1da177e4
LT
24#include <linux/module.h>
25
4fc268d2 26#include <linux/capability.h>
1da177e4
LT
27#include <linux/kernel.h>
28#include <linux/init.h>
1da177e4
LT
29#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>
1da177e4
LT
48#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>
54e0f520 56#include <linux/audit.h>
af65bdfc 57#include <linux/mutex.h>
54e0f520 58
457c4cbc 59#include <net/net_namespace.h>
1da177e4
LT
60#include <net/sock.h>
61#include <net/scm.h>
82ace47a 62#include <net/netlink.h>
1da177e4 63
f7fa9b10 64#define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
b4ff4f04 65#define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
1da177e4
LT
66
67struct netlink_sock {
68 /* struct sock has to be the first member of netlink_sock */
69 struct sock sk;
70 u32 pid;
1da177e4 71 u32 dst_pid;
d629b836 72 u32 dst_group;
f7fa9b10
PM
73 u32 flags;
74 u32 subscriptions;
75 u32 ngroups;
76 unsigned long *groups;
1da177e4
LT
77 unsigned long state;
78 wait_queue_head_t wait;
79 struct netlink_callback *cb;
af65bdfc
PM
80 struct mutex *cb_mutex;
81 struct mutex cb_def_mutex;
cd40b7d3 82 void (*netlink_rcv)(struct sk_buff *skb);
77247bbb 83 struct module *module;
1da177e4
LT
84};
85
77247bbb 86#define NETLINK_KERNEL_SOCKET 0x1
9a4595bc 87#define NETLINK_RECV_PKTINFO 0x2
77247bbb 88
1da177e4
LT
89static inline struct netlink_sock *nlk_sk(struct sock *sk)
90{
32b21e03 91 return container_of(sk, struct netlink_sock, sk);
1da177e4
LT
92}
93
aed81560
DL
94static inline int netlink_is_kernel(struct sock *sk)
95{
96 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
97}
98
1da177e4
LT
99struct nl_pid_hash {
100 struct hlist_head *table;
101 unsigned long rehash_time;
102
103 unsigned int mask;
104 unsigned int shift;
105
106 unsigned int entries;
107 unsigned int max_shift;
108
109 u32 rnd;
110};
111
112struct netlink_table {
113 struct nl_pid_hash hash;
114 struct hlist_head mc_list;
4277a083 115 unsigned long *listeners;
1da177e4 116 unsigned int nl_nonroot;
f7fa9b10 117 unsigned int groups;
af65bdfc 118 struct mutex *cb_mutex;
77247bbb 119 struct module *module;
ab33a171 120 int registered;
1da177e4
LT
121};
122
123static struct netlink_table *nl_table;
124
125static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
126
127static int netlink_dump(struct sock *sk);
128static void netlink_destroy_callback(struct netlink_callback *cb);
129
130static DEFINE_RWLOCK(nl_table_lock);
131static atomic_t nl_table_users = ATOMIC_INIT(0);
132
e041c683 133static ATOMIC_NOTIFIER_HEAD(netlink_chain);
1da177e4 134
d629b836
PM
135static u32 netlink_group_mask(u32 group)
136{
137 return group ? 1 << (group - 1) : 0;
138}
139
1da177e4
LT
140static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
141{
142 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
143}
144
145static void netlink_sock_destruct(struct sock *sk)
146{
3f660d66
HX
147 struct netlink_sock *nlk = nlk_sk(sk);
148
3f660d66
HX
149 if (nlk->cb) {
150 if (nlk->cb->done)
151 nlk->cb->done(nlk->cb);
152 netlink_destroy_callback(nlk->cb);
153 }
154
1da177e4
LT
155 skb_queue_purge(&sk->sk_receive_queue);
156
157 if (!sock_flag(sk, SOCK_DEAD)) {
6ac552fd 158 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
1da177e4
LT
159 return;
160 }
547b792c
IJ
161
162 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
163 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
164 WARN_ON(nlk_sk(sk)->groups);
1da177e4
LT
165}
166
6ac552fd
PM
167/* 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
1da177e4
LT
169 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
170 * this, _but_ remember, it adds useless work on UP machines.
171 */
172
173static void netlink_table_grab(void)
9a429c49 174 __acquires(nl_table_lock)
1da177e4 175{
6abd219c 176 write_lock_irq(&nl_table_lock);
1da177e4
LT
177
178 if (atomic_read(&nl_table_users)) {
179 DECLARE_WAITQUEUE(wait, current);
180
181 add_wait_queue_exclusive(&nl_table_wait, &wait);
6ac552fd 182 for (;;) {
1da177e4
LT
183 set_current_state(TASK_UNINTERRUPTIBLE);
184 if (atomic_read(&nl_table_users) == 0)
185 break;
6abd219c 186 write_unlock_irq(&nl_table_lock);
1da177e4 187 schedule();
6abd219c 188 write_lock_irq(&nl_table_lock);
1da177e4
LT
189 }
190
191 __set_current_state(TASK_RUNNING);
192 remove_wait_queue(&nl_table_wait, &wait);
193 }
194}
195
3f252526 196static void netlink_table_ungrab(void)
9a429c49 197 __releases(nl_table_lock)
1da177e4 198{
6abd219c 199 write_unlock_irq(&nl_table_lock);
1da177e4
LT
200 wake_up(&nl_table_wait);
201}
202
6ac552fd 203static inline void
1da177e4
LT
204netlink_lock_table(void)
205{
206 /* read_lock() synchronizes us to netlink_table_grab */
207
208 read_lock(&nl_table_lock);
209 atomic_inc(&nl_table_users);
210 read_unlock(&nl_table_lock);
211}
212
6ac552fd 213static inline void
1da177e4
LT
214netlink_unlock_table(void)
215{
216 if (atomic_dec_and_test(&nl_table_users))
217 wake_up(&nl_table_wait);
218}
219
6ac552fd
PM
220static inline struct sock *netlink_lookup(struct net *net, int protocol,
221 u32 pid)
1da177e4
LT
222{
223 struct nl_pid_hash *hash = &nl_table[protocol].hash;
224 struct hlist_head *head;
225 struct sock *sk;
226 struct hlist_node *node;
227
228 read_lock(&nl_table_lock);
229 head = nl_pid_hashfn(hash, pid);
230 sk_for_each(sk, node, head) {
878628fb 231 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
1da177e4
LT
232 sock_hold(sk);
233 goto found;
234 }
235 }
236 sk = NULL;
237found:
238 read_unlock(&nl_table_lock);
239 return sk;
240}
241
ea72912c 242static inline struct hlist_head *nl_pid_hash_zalloc(size_t size)
1da177e4
LT
243{
244 if (size <= PAGE_SIZE)
ea72912c 245 return kzalloc(size, GFP_ATOMIC);
1da177e4
LT
246 else
247 return (struct hlist_head *)
ea72912c
ED
248 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
249 get_order(size));
1da177e4
LT
250}
251
252static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
253{
254 if (size <= PAGE_SIZE)
255 kfree(table);
256 else
257 free_pages((unsigned long)table, get_order(size));
258}
259
260static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
261{
262 unsigned int omask, mask, shift;
263 size_t osize, size;
264 struct hlist_head *otable, *table;
265 int i;
266
267 omask = mask = hash->mask;
268 osize = size = (mask + 1) * sizeof(*table);
269 shift = hash->shift;
270
271 if (grow) {
272 if (++shift > hash->max_shift)
273 return 0;
274 mask = mask * 2 + 1;
275 size *= 2;
276 }
277
ea72912c 278 table = nl_pid_hash_zalloc(size);
1da177e4
LT
279 if (!table)
280 return 0;
281
1da177e4
LT
282 otable = hash->table;
283 hash->table = table;
284 hash->mask = mask;
285 hash->shift = shift;
286 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
287
288 for (i = 0; i <= omask; i++) {
289 struct sock *sk;
290 struct hlist_node *node, *tmp;
291
292 sk_for_each_safe(sk, node, tmp, &otable[i])
293 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
294 }
295
296 nl_pid_hash_free(otable, osize);
297 hash->rehash_time = jiffies + 10 * 60 * HZ;
298 return 1;
299}
300
301static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
302{
303 int avg = hash->entries >> hash->shift;
304
305 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
306 return 1;
307
308 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
309 nl_pid_hash_rehash(hash, 0);
310 return 1;
311 }
312
313 return 0;
314}
315
90ddc4f0 316static const struct proto_ops netlink_ops;
1da177e4 317
4277a083
PM
318static void
319netlink_update_listeners(struct sock *sk)
320{
321 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
322 struct hlist_node *node;
323 unsigned long mask;
324 unsigned int i;
325
b4ff4f04 326 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
4277a083 327 mask = 0;
b4ff4f04
JB
328 sk_for_each_bound(sk, node, &tbl->mc_list) {
329 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
330 mask |= nlk_sk(sk)->groups[i];
331 }
4277a083
PM
332 tbl->listeners[i] = mask;
333 }
334 /* this function is only called with the netlink table "grabbed", which
335 * makes sure updates are visible before bind or setsockopt return. */
336}
337
b4b51029 338static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
1da177e4
LT
339{
340 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
341 struct hlist_head *head;
342 int err = -EADDRINUSE;
343 struct sock *osk;
344 struct hlist_node *node;
345 int len;
346
347 netlink_table_grab();
348 head = nl_pid_hashfn(hash, pid);
349 len = 0;
350 sk_for_each(osk, node, head) {
878628fb 351 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
1da177e4
LT
352 break;
353 len++;
354 }
355 if (node)
356 goto err;
357
358 err = -EBUSY;
359 if (nlk_sk(sk)->pid)
360 goto err;
361
362 err = -ENOMEM;
363 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
364 goto err;
365
366 if (len && nl_pid_hash_dilute(hash, len))
367 head = nl_pid_hashfn(hash, pid);
368 hash->entries++;
369 nlk_sk(sk)->pid = pid;
370 sk_add_node(sk, head);
371 err = 0;
372
373err:
374 netlink_table_ungrab();
375 return err;
376}
377
378static void netlink_remove(struct sock *sk)
379{
380 netlink_table_grab();
d470e3b4
DM
381 if (sk_del_node_init(sk))
382 nl_table[sk->sk_protocol].hash.entries--;
f7fa9b10 383 if (nlk_sk(sk)->subscriptions)
1da177e4
LT
384 __sk_del_bind_node(sk);
385 netlink_table_ungrab();
386}
387
388static struct proto netlink_proto = {
389 .name = "NETLINK",
390 .owner = THIS_MODULE,
391 .obj_size = sizeof(struct netlink_sock),
392};
393
1b8d7ae4
EB
394static int __netlink_create(struct net *net, struct socket *sock,
395 struct mutex *cb_mutex, int protocol)
1da177e4
LT
396{
397 struct sock *sk;
398 struct netlink_sock *nlk;
ab33a171
PM
399
400 sock->ops = &netlink_ops;
401
6257ff21 402 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
ab33a171
PM
403 if (!sk)
404 return -ENOMEM;
405
406 sock_init_data(sock, sk);
407
408 nlk = nlk_sk(sk);
ffa4d721
PM
409 if (cb_mutex)
410 nlk->cb_mutex = cb_mutex;
411 else {
412 nlk->cb_mutex = &nlk->cb_def_mutex;
413 mutex_init(nlk->cb_mutex);
414 }
ab33a171
PM
415 init_waitqueue_head(&nlk->wait);
416
417 sk->sk_destruct = netlink_sock_destruct;
418 sk->sk_protocol = protocol;
419 return 0;
420}
421
1b8d7ae4 422static int netlink_create(struct net *net, struct socket *sock, int protocol)
ab33a171
PM
423{
424 struct module *module = NULL;
af65bdfc 425 struct mutex *cb_mutex;
f7fa9b10 426 struct netlink_sock *nlk;
ab33a171 427 int err = 0;
1da177e4
LT
428
429 sock->state = SS_UNCONNECTED;
430
431 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
432 return -ESOCKTNOSUPPORT;
433
6ac552fd 434 if (protocol < 0 || protocol >= MAX_LINKS)
1da177e4
LT
435 return -EPROTONOSUPPORT;
436
77247bbb 437 netlink_lock_table();
95a5afca 438#ifdef CONFIG_MODULES
ab33a171 439 if (!nl_table[protocol].registered) {
77247bbb 440 netlink_unlock_table();
4fdb3bb7 441 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
77247bbb 442 netlink_lock_table();
4fdb3bb7 443 }
ab33a171
PM
444#endif
445 if (nl_table[protocol].registered &&
446 try_module_get(nl_table[protocol].module))
447 module = nl_table[protocol].module;
af65bdfc 448 cb_mutex = nl_table[protocol].cb_mutex;
77247bbb 449 netlink_unlock_table();
4fdb3bb7 450
6ac552fd
PM
451 err = __netlink_create(net, sock, cb_mutex, protocol);
452 if (err < 0)
f7fa9b10
PM
453 goto out_module;
454
6f756a8c 455 local_bh_disable();
c1fd3b94 456 sock_prot_inuse_add(net, &netlink_proto, 1);
6f756a8c
DM
457 local_bh_enable();
458
f7fa9b10 459 nlk = nlk_sk(sock->sk);
f7fa9b10 460 nlk->module = module;
ab33a171
PM
461out:
462 return err;
1da177e4 463
ab33a171
PM
464out_module:
465 module_put(module);
466 goto out;
1da177e4
LT
467}
468
469static int netlink_release(struct socket *sock)
470{
471 struct sock *sk = sock->sk;
472 struct netlink_sock *nlk;
473
474 if (!sk)
475 return 0;
476
477 netlink_remove(sk);
ac57b3a9 478 sock_orphan(sk);
1da177e4
LT
479 nlk = nlk_sk(sk);
480
3f660d66
HX
481 /*
482 * OK. Socket is unlinked, any packets that arrive now
483 * will be purged.
484 */
1da177e4 485
1da177e4
LT
486 sock->sk = NULL;
487 wake_up_interruptible_all(&nlk->wait);
488
489 skb_queue_purge(&sk->sk_write_queue);
490
f7fa9b10 491 if (nlk->pid && !nlk->subscriptions) {
1da177e4 492 struct netlink_notify n = {
3b1e0a65 493 .net = sock_net(sk),
1da177e4
LT
494 .protocol = sk->sk_protocol,
495 .pid = nlk->pid,
496 };
e041c683
AS
497 atomic_notifier_call_chain(&netlink_chain,
498 NETLINK_URELEASE, &n);
746fac4d 499 }
4fdb3bb7 500
5e7c001c 501 module_put(nlk->module);
4fdb3bb7 502
4277a083 503 netlink_table_grab();
aed81560 504 if (netlink_is_kernel(sk)) {
869e58f8
DL
505 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
506 if (--nl_table[sk->sk_protocol].registered == 0) {
507 kfree(nl_table[sk->sk_protocol].listeners);
508 nl_table[sk->sk_protocol].module = NULL;
509 nl_table[sk->sk_protocol].registered = 0;
510 }
4277a083
PM
511 } else if (nlk->subscriptions)
512 netlink_update_listeners(sk);
513 netlink_table_ungrab();
77247bbb 514
f7fa9b10
PM
515 kfree(nlk->groups);
516 nlk->groups = NULL;
517
c1fd3b94 518 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
1da177e4
LT
519 sock_put(sk);
520 return 0;
521}
522
523static int netlink_autobind(struct socket *sock)
524{
525 struct sock *sk = sock->sk;
3b1e0a65 526 struct net *net = sock_net(sk);
1da177e4
LT
527 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
528 struct hlist_head *head;
529 struct sock *osk;
530 struct hlist_node *node;
c27bd492 531 s32 pid = current->tgid;
1da177e4
LT
532 int err;
533 static s32 rover = -4097;
534
535retry:
536 cond_resched();
537 netlink_table_grab();
538 head = nl_pid_hashfn(hash, pid);
539 sk_for_each(osk, node, head) {
878628fb 540 if (!net_eq(sock_net(osk), net))
b4b51029 541 continue;
1da177e4
LT
542 if (nlk_sk(osk)->pid == pid) {
543 /* Bind collision, search negative pid values. */
544 pid = rover--;
545 if (rover > -4097)
546 rover = -4097;
547 netlink_table_ungrab();
548 goto retry;
549 }
550 }
551 netlink_table_ungrab();
552
b4b51029 553 err = netlink_insert(sk, net, pid);
1da177e4
LT
554 if (err == -EADDRINUSE)
555 goto retry;
d470e3b4
DM
556
557 /* If 2 threads race to autobind, that is fine. */
558 if (err == -EBUSY)
559 err = 0;
560
561 return err;
1da177e4
LT
562}
563
746fac4d
YH
564static inline int netlink_capable(struct socket *sock, unsigned int flag)
565{
1da177e4
LT
566 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
567 capable(CAP_NET_ADMIN);
746fac4d 568}
1da177e4 569
f7fa9b10
PM
570static void
571netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
572{
573 struct netlink_sock *nlk = nlk_sk(sk);
574
575 if (nlk->subscriptions && !subscriptions)
576 __sk_del_bind_node(sk);
577 else if (!nlk->subscriptions && subscriptions)
578 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
579 nlk->subscriptions = subscriptions;
580}
581
b4ff4f04 582static int netlink_realloc_groups(struct sock *sk)
513c2500
PM
583{
584 struct netlink_sock *nlk = nlk_sk(sk);
585 unsigned int groups;
b4ff4f04 586 unsigned long *new_groups;
513c2500
PM
587 int err = 0;
588
b4ff4f04
JB
589 netlink_table_grab();
590
513c2500 591 groups = nl_table[sk->sk_protocol].groups;
b4ff4f04 592 if (!nl_table[sk->sk_protocol].registered) {
513c2500 593 err = -ENOENT;
b4ff4f04
JB
594 goto out_unlock;
595 }
513c2500 596
b4ff4f04
JB
597 if (nlk->ngroups >= groups)
598 goto out_unlock;
513c2500 599
b4ff4f04
JB
600 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
601 if (new_groups == NULL) {
602 err = -ENOMEM;
603 goto out_unlock;
604 }
6ac552fd 605 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
b4ff4f04
JB
606 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
607
608 nlk->groups = new_groups;
513c2500 609 nlk->ngroups = groups;
b4ff4f04
JB
610 out_unlock:
611 netlink_table_ungrab();
612 return err;
513c2500
PM
613}
614
6ac552fd
PM
615static int netlink_bind(struct socket *sock, struct sockaddr *addr,
616 int addr_len)
1da177e4
LT
617{
618 struct sock *sk = sock->sk;
3b1e0a65 619 struct net *net = sock_net(sk);
1da177e4
LT
620 struct netlink_sock *nlk = nlk_sk(sk);
621 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
622 int err;
746fac4d 623
1da177e4
LT
624 if (nladdr->nl_family != AF_NETLINK)
625 return -EINVAL;
626
627 /* Only superuser is allowed to listen multicasts */
513c2500
PM
628 if (nladdr->nl_groups) {
629 if (!netlink_capable(sock, NL_NONROOT_RECV))
630 return -EPERM;
b4ff4f04
JB
631 err = netlink_realloc_groups(sk);
632 if (err)
633 return err;
513c2500 634 }
1da177e4
LT
635
636 if (nlk->pid) {
637 if (nladdr->nl_pid != nlk->pid)
638 return -EINVAL;
639 } else {
640 err = nladdr->nl_pid ?
b4b51029 641 netlink_insert(sk, net, nladdr->nl_pid) :
1da177e4
LT
642 netlink_autobind(sock);
643 if (err)
644 return err;
645 }
646
513c2500 647 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
1da177e4
LT
648 return 0;
649
650 netlink_table_grab();
f7fa9b10 651 netlink_update_subscriptions(sk, nlk->subscriptions +
746fac4d
YH
652 hweight32(nladdr->nl_groups) -
653 hweight32(nlk->groups[0]));
654 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
4277a083 655 netlink_update_listeners(sk);
1da177e4
LT
656 netlink_table_ungrab();
657
658 return 0;
659}
660
661static int netlink_connect(struct socket *sock, struct sockaddr *addr,
662 int alen, int flags)
663{
664 int err = 0;
665 struct sock *sk = sock->sk;
666 struct netlink_sock *nlk = nlk_sk(sk);
6ac552fd 667 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
1da177e4
LT
668
669 if (addr->sa_family == AF_UNSPEC) {
670 sk->sk_state = NETLINK_UNCONNECTED;
671 nlk->dst_pid = 0;
d629b836 672 nlk->dst_group = 0;
1da177e4
LT
673 return 0;
674 }
675 if (addr->sa_family != AF_NETLINK)
676 return -EINVAL;
677
678 /* Only superuser is allowed to send multicasts */
679 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
680 return -EPERM;
681
682 if (!nlk->pid)
683 err = netlink_autobind(sock);
684
685 if (err == 0) {
686 sk->sk_state = NETLINK_CONNECTED;
687 nlk->dst_pid = nladdr->nl_pid;
d629b836 688 nlk->dst_group = ffs(nladdr->nl_groups);
1da177e4
LT
689 }
690
691 return err;
692}
693
6ac552fd
PM
694static int netlink_getname(struct socket *sock, struct sockaddr *addr,
695 int *addr_len, int peer)
1da177e4
LT
696{
697 struct sock *sk = sock->sk;
698 struct netlink_sock *nlk = nlk_sk(sk);
6ac552fd 699 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
746fac4d 700
1da177e4
LT
701 nladdr->nl_family = AF_NETLINK;
702 nladdr->nl_pad = 0;
703 *addr_len = sizeof(*nladdr);
704
705 if (peer) {
706 nladdr->nl_pid = nlk->dst_pid;
d629b836 707 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
1da177e4
LT
708 } else {
709 nladdr->nl_pid = nlk->pid;
513c2500 710 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
1da177e4
LT
711 }
712 return 0;
713}
714
715static void netlink_overrun(struct sock *sk)
716{
717 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
718 sk->sk_err = ENOBUFS;
719 sk->sk_error_report(sk);
720 }
721}
722
723static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
724{
1da177e4
LT
725 struct sock *sock;
726 struct netlink_sock *nlk;
727
3b1e0a65 728 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
1da177e4
LT
729 if (!sock)
730 return ERR_PTR(-ECONNREFUSED);
731
732 /* Don't bother queuing skb if kernel socket has no input function */
733 nlk = nlk_sk(sock);
cd40b7d3
DL
734 if (sock->sk_state == NETLINK_CONNECTED &&
735 nlk->dst_pid != nlk_sk(ssk)->pid) {
1da177e4
LT
736 sock_put(sock);
737 return ERR_PTR(-ECONNREFUSED);
738 }
739 return sock;
740}
741
742struct sock *netlink_getsockbyfilp(struct file *filp)
743{
6db5fc5d 744 struct inode *inode = filp->f_path.dentry->d_inode;
1da177e4
LT
745 struct sock *sock;
746
747 if (!S_ISSOCK(inode->i_mode))
748 return ERR_PTR(-ENOTSOCK);
749
750 sock = SOCKET_I(inode)->sk;
751 if (sock->sk_family != AF_NETLINK)
752 return ERR_PTR(-EINVAL);
753
754 sock_hold(sock);
755 return sock;
756}
757
758/*
759 * Attach a skb to a netlink socket.
760 * The caller must hold a reference to the destination socket. On error, the
761 * reference is dropped. The skb is not send to the destination, just all
762 * all error checks are performed and memory in the queue is reserved.
763 * Return values:
764 * < 0: error. skb freed, reference to sock dropped.
765 * 0: continue
766 * 1: repeat lookup - reference dropped while waiting for socket memory.
767 */
9457afee 768int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
c3d8d1e3 769 long *timeo, struct sock *ssk)
1da177e4
LT
770{
771 struct netlink_sock *nlk;
772
773 nlk = nlk_sk(sk);
774
775 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
776 test_bit(0, &nlk->state)) {
777 DECLARE_WAITQUEUE(wait, current);
c3d8d1e3 778 if (!*timeo) {
aed81560 779 if (!ssk || netlink_is_kernel(ssk))
1da177e4
LT
780 netlink_overrun(sk);
781 sock_put(sk);
782 kfree_skb(skb);
783 return -EAGAIN;
784 }
785
786 __set_current_state(TASK_INTERRUPTIBLE);
787 add_wait_queue(&nlk->wait, &wait);
788
789 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
790 test_bit(0, &nlk->state)) &&
791 !sock_flag(sk, SOCK_DEAD))
c3d8d1e3 792 *timeo = schedule_timeout(*timeo);
1da177e4
LT
793
794 __set_current_state(TASK_RUNNING);
795 remove_wait_queue(&nlk->wait, &wait);
796 sock_put(sk);
797
798 if (signal_pending(current)) {
799 kfree_skb(skb);
c3d8d1e3 800 return sock_intr_errno(*timeo);
1da177e4
LT
801 }
802 return 1;
803 }
804 skb_set_owner_r(skb, sk);
805 return 0;
806}
807
7ee015e0 808int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
1da177e4 809{
1da177e4
LT
810 int len = skb->len;
811
1da177e4
LT
812 skb_queue_tail(&sk->sk_receive_queue, skb);
813 sk->sk_data_ready(sk, len);
814 sock_put(sk);
815 return len;
816}
817
818void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
819{
820 kfree_skb(skb);
821 sock_put(sk);
822}
823
37da647d 824static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
dd0fc66f 825 gfp_t allocation)
1da177e4
LT
826{
827 int delta;
828
829 skb_orphan(skb);
830
4305b541 831 delta = skb->end - skb->tail;
1da177e4
LT
832 if (delta * 2 < skb->truesize)
833 return skb;
834
835 if (skb_shared(skb)) {
836 struct sk_buff *nskb = skb_clone(skb, allocation);
837 if (!nskb)
838 return skb;
839 kfree_skb(skb);
840 skb = nskb;
841 }
842
843 if (!pskb_expand_head(skb, 0, -delta, allocation))
844 skb->truesize -= delta;
845
846 return skb;
847}
848
cd40b7d3
DL
849static inline void netlink_rcv_wake(struct sock *sk)
850{
851 struct netlink_sock *nlk = nlk_sk(sk);
852
853 if (skb_queue_empty(&sk->sk_receive_queue))
854 clear_bit(0, &nlk->state);
855 if (!test_bit(0, &nlk->state))
856 wake_up_interruptible(&nlk->wait);
857}
858
859static inline int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
860{
861 int ret;
862 struct netlink_sock *nlk = nlk_sk(sk);
863
864 ret = -ECONNREFUSED;
865 if (nlk->netlink_rcv != NULL) {
866 ret = skb->len;
867 skb_set_owner_r(skb, sk);
868 nlk->netlink_rcv(skb);
869 }
870 kfree_skb(skb);
871 sock_put(sk);
872 return ret;
873}
874
875int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
876 u32 pid, int nonblock)
1da177e4
LT
877{
878 struct sock *sk;
879 int err;
880 long timeo;
881
882 skb = netlink_trim(skb, gfp_any());
883
884 timeo = sock_sndtimeo(ssk, nonblock);
885retry:
886 sk = netlink_getsockbypid(ssk, pid);
887 if (IS_ERR(sk)) {
888 kfree_skb(skb);
889 return PTR_ERR(sk);
890 }
cd40b7d3
DL
891 if (netlink_is_kernel(sk))
892 return netlink_unicast_kernel(sk, skb);
893
b1153f29 894 if (sk_filter(sk, skb)) {
84874607 895 err = skb->len;
b1153f29
SH
896 kfree_skb(skb);
897 sock_put(sk);
898 return err;
899 }
900
9457afee 901 err = netlink_attachskb(sk, skb, &timeo, ssk);
1da177e4
LT
902 if (err == 1)
903 goto retry;
904 if (err)
905 return err;
906
7ee015e0 907 return netlink_sendskb(sk, skb);
1da177e4 908}
6ac552fd 909EXPORT_SYMBOL(netlink_unicast);
1da177e4 910
4277a083
PM
911int netlink_has_listeners(struct sock *sk, unsigned int group)
912{
913 int res = 0;
b4ff4f04 914 unsigned long *listeners;
4277a083 915
aed81560 916 BUG_ON(!netlink_is_kernel(sk));
b4ff4f04
JB
917
918 rcu_read_lock();
919 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
920
4277a083 921 if (group - 1 < nl_table[sk->sk_protocol].groups)
b4ff4f04
JB
922 res = test_bit(group - 1, listeners);
923
924 rcu_read_unlock();
925
4277a083
PM
926 return res;
927}
928EXPORT_SYMBOL_GPL(netlink_has_listeners);
929
6ac552fd
PM
930static inline int netlink_broadcast_deliver(struct sock *sk,
931 struct sk_buff *skb)
1da177e4
LT
932{
933 struct netlink_sock *nlk = nlk_sk(sk);
934
935 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
936 !test_bit(0, &nlk->state)) {
937 skb_set_owner_r(skb, sk);
938 skb_queue_tail(&sk->sk_receive_queue, skb);
939 sk->sk_data_ready(sk, skb->len);
940 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
941 }
942 return -1;
943}
944
945struct netlink_broadcast_data {
946 struct sock *exclude_sk;
b4b51029 947 struct net *net;
1da177e4
LT
948 u32 pid;
949 u32 group;
950 int failure;
951 int congested;
952 int delivered;
7d877f3b 953 gfp_t allocation;
1da177e4
LT
954 struct sk_buff *skb, *skb2;
955};
956
957static inline int do_one_broadcast(struct sock *sk,
958 struct netlink_broadcast_data *p)
959{
960 struct netlink_sock *nlk = nlk_sk(sk);
961 int val;
962
963 if (p->exclude_sk == sk)
964 goto out;
965
f7fa9b10
PM
966 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
967 !test_bit(p->group - 1, nlk->groups))
1da177e4
LT
968 goto out;
969
878628fb 970 if (!net_eq(sock_net(sk), p->net))
b4b51029
EB
971 goto out;
972
1da177e4
LT
973 if (p->failure) {
974 netlink_overrun(sk);
975 goto out;
976 }
977
978 sock_hold(sk);
979 if (p->skb2 == NULL) {
68acc024 980 if (skb_shared(p->skb)) {
1da177e4
LT
981 p->skb2 = skb_clone(p->skb, p->allocation);
982 } else {
68acc024
TC
983 p->skb2 = skb_get(p->skb);
984 /*
985 * skb ownership may have been set when
986 * delivered to a previous socket.
987 */
988 skb_orphan(p->skb2);
1da177e4
LT
989 }
990 }
991 if (p->skb2 == NULL) {
992 netlink_overrun(sk);
993 /* Clone failed. Notify ALL listeners. */
994 p->failure = 1;
b1153f29
SH
995 } else if (sk_filter(sk, p->skb2)) {
996 kfree_skb(p->skb2);
997 p->skb2 = NULL;
1da177e4
LT
998 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
999 netlink_overrun(sk);
1000 } else {
1001 p->congested |= val;
1002 p->delivered = 1;
1003 p->skb2 = NULL;
1004 }
1005 sock_put(sk);
1006
1007out:
1008 return 0;
1009}
1010
1011int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
dd0fc66f 1012 u32 group, gfp_t allocation)
1da177e4 1013{
3b1e0a65 1014 struct net *net = sock_net(ssk);
1da177e4
LT
1015 struct netlink_broadcast_data info;
1016 struct hlist_node *node;
1017 struct sock *sk;
1018
1019 skb = netlink_trim(skb, allocation);
1020
1021 info.exclude_sk = ssk;
b4b51029 1022 info.net = net;
1da177e4
LT
1023 info.pid = pid;
1024 info.group = group;
1025 info.failure = 0;
1026 info.congested = 0;
1027 info.delivered = 0;
1028 info.allocation = allocation;
1029 info.skb = skb;
1030 info.skb2 = NULL;
1031
1032 /* While we sleep in clone, do not allow to change socket list */
1033
1034 netlink_lock_table();
1035
1036 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1037 do_one_broadcast(sk, &info);
1038
aa1c6a6f
TC
1039 kfree_skb(skb);
1040
1da177e4
LT
1041 netlink_unlock_table();
1042
1043 if (info.skb2)
1044 kfree_skb(info.skb2);
1da177e4
LT
1045
1046 if (info.delivered) {
1047 if (info.congested && (allocation & __GFP_WAIT))
1048 yield();
1049 return 0;
1050 }
1051 if (info.failure)
1052 return -ENOBUFS;
1053 return -ESRCH;
1054}
6ac552fd 1055EXPORT_SYMBOL(netlink_broadcast);
1da177e4
LT
1056
1057struct netlink_set_err_data {
1058 struct sock *exclude_sk;
1059 u32 pid;
1060 u32 group;
1061 int code;
1062};
1063
1064static inline int do_one_set_err(struct sock *sk,
1065 struct netlink_set_err_data *p)
1066{
1067 struct netlink_sock *nlk = nlk_sk(sk);
1068
1069 if (sk == p->exclude_sk)
1070 goto out;
1071
3b1e0a65 1072 if (sock_net(sk) != sock_net(p->exclude_sk))
b4b51029
EB
1073 goto out;
1074
f7fa9b10
PM
1075 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1076 !test_bit(p->group - 1, nlk->groups))
1da177e4
LT
1077 goto out;
1078
1079 sk->sk_err = p->code;
1080 sk->sk_error_report(sk);
1081out:
1082 return 0;
1083}
1084
1085void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1086{
1087 struct netlink_set_err_data info;
1088 struct hlist_node *node;
1089 struct sock *sk;
1090
1091 info.exclude_sk = ssk;
1092 info.pid = pid;
1093 info.group = group;
1094 info.code = code;
1095
1096 read_lock(&nl_table_lock);
1097
1098 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1099 do_one_set_err(sk, &info);
1100
1101 read_unlock(&nl_table_lock);
1102}
1103
84659eb5
JB
1104/* must be called with netlink table grabbed */
1105static void netlink_update_socket_mc(struct netlink_sock *nlk,
1106 unsigned int group,
1107 int is_new)
1108{
1109 int old, new = !!is_new, subscriptions;
1110
1111 old = test_bit(group - 1, nlk->groups);
1112 subscriptions = nlk->subscriptions - old + new;
1113 if (new)
1114 __set_bit(group - 1, nlk->groups);
1115 else
1116 __clear_bit(group - 1, nlk->groups);
1117 netlink_update_subscriptions(&nlk->sk, subscriptions);
1118 netlink_update_listeners(&nlk->sk);
1119}
1120
9a4595bc 1121static int netlink_setsockopt(struct socket *sock, int level, int optname,
746fac4d 1122 char __user *optval, int optlen)
9a4595bc
PM
1123{
1124 struct sock *sk = sock->sk;
1125 struct netlink_sock *nlk = nlk_sk(sk);
eb496534
JB
1126 unsigned int val = 0;
1127 int err;
9a4595bc
PM
1128
1129 if (level != SOL_NETLINK)
1130 return -ENOPROTOOPT;
1131
1132 if (optlen >= sizeof(int) &&
eb496534 1133 get_user(val, (unsigned int __user *)optval))
9a4595bc
PM
1134 return -EFAULT;
1135
1136 switch (optname) {
1137 case NETLINK_PKTINFO:
1138 if (val)
1139 nlk->flags |= NETLINK_RECV_PKTINFO;
1140 else
1141 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1142 err = 0;
1143 break;
1144 case NETLINK_ADD_MEMBERSHIP:
1145 case NETLINK_DROP_MEMBERSHIP: {
9a4595bc
PM
1146 if (!netlink_capable(sock, NL_NONROOT_RECV))
1147 return -EPERM;
b4ff4f04
JB
1148 err = netlink_realloc_groups(sk);
1149 if (err)
1150 return err;
9a4595bc
PM
1151 if (!val || val - 1 >= nlk->ngroups)
1152 return -EINVAL;
1153 netlink_table_grab();
84659eb5
JB
1154 netlink_update_socket_mc(nlk, val,
1155 optname == NETLINK_ADD_MEMBERSHIP);
9a4595bc
PM
1156 netlink_table_ungrab();
1157 err = 0;
1158 break;
1159 }
1160 default:
1161 err = -ENOPROTOOPT;
1162 }
1163 return err;
1164}
1165
1166static int netlink_getsockopt(struct socket *sock, int level, int optname,
746fac4d 1167 char __user *optval, int __user *optlen)
9a4595bc
PM
1168{
1169 struct sock *sk = sock->sk;
1170 struct netlink_sock *nlk = nlk_sk(sk);
1171 int len, val, err;
1172
1173 if (level != SOL_NETLINK)
1174 return -ENOPROTOOPT;
1175
1176 if (get_user(len, optlen))
1177 return -EFAULT;
1178 if (len < 0)
1179 return -EINVAL;
1180
1181 switch (optname) {
1182 case NETLINK_PKTINFO:
1183 if (len < sizeof(int))
1184 return -EINVAL;
1185 len = sizeof(int);
1186 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
a27b58fe
HC
1187 if (put_user(len, optlen) ||
1188 put_user(val, optval))
1189 return -EFAULT;
9a4595bc
PM
1190 err = 0;
1191 break;
1192 default:
1193 err = -ENOPROTOOPT;
1194 }
1195 return err;
1196}
1197
1198static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1199{
1200 struct nl_pktinfo info;
1201
1202 info.group = NETLINK_CB(skb).dst_group;
1203 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1204}
1205
1da177e4
LT
1206static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1207 struct msghdr *msg, size_t len)
1208{
1209 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1210 struct sock *sk = sock->sk;
1211 struct netlink_sock *nlk = nlk_sk(sk);
6ac552fd 1212 struct sockaddr_nl *addr = msg->msg_name;
1da177e4 1213 u32 dst_pid;
d629b836 1214 u32 dst_group;
1da177e4
LT
1215 struct sk_buff *skb;
1216 int err;
1217 struct scm_cookie scm;
1218
1219 if (msg->msg_flags&MSG_OOB)
1220 return -EOPNOTSUPP;
1221
1222 if (NULL == siocb->scm)
1223 siocb->scm = &scm;
1224 err = scm_send(sock, msg, siocb->scm);
1225 if (err < 0)
1226 return err;
1227
1228 if (msg->msg_namelen) {
1229 if (addr->nl_family != AF_NETLINK)
1230 return -EINVAL;
1231 dst_pid = addr->nl_pid;
d629b836
PM
1232 dst_group = ffs(addr->nl_groups);
1233 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
1da177e4
LT
1234 return -EPERM;
1235 } else {
1236 dst_pid = nlk->dst_pid;
d629b836 1237 dst_group = nlk->dst_group;
1da177e4
LT
1238 }
1239
1240 if (!nlk->pid) {
1241 err = netlink_autobind(sock);
1242 if (err)
1243 goto out;
1244 }
1245
1246 err = -EMSGSIZE;
1247 if (len > sk->sk_sndbuf - 32)
1248 goto out;
1249 err = -ENOBUFS;
339bf98f 1250 skb = alloc_skb(len, GFP_KERNEL);
6ac552fd 1251 if (skb == NULL)
1da177e4
LT
1252 goto out;
1253
1254 NETLINK_CB(skb).pid = nlk->pid;
d629b836 1255 NETLINK_CB(skb).dst_group = dst_group;
0c11b942 1256 NETLINK_CB(skb).loginuid = audit_get_loginuid(current);
2532386f 1257 NETLINK_CB(skb).sessionid = audit_get_sessionid(current);
0ce784ca 1258 security_task_getsecid(current, &(NETLINK_CB(skb).sid));
1da177e4
LT
1259 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1260
1261 /* What can I do? Netlink is asynchronous, so that
1262 we will have to save current capabilities to
1263 check them, when this message will be delivered
1264 to corresponding kernel module. --ANK (980802)
1265 */
1266
1267 err = -EFAULT;
6ac552fd 1268 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
1da177e4
LT
1269 kfree_skb(skb);
1270 goto out;
1271 }
1272
1273 err = security_netlink_send(sk, skb);
1274 if (err) {
1275 kfree_skb(skb);
1276 goto out;
1277 }
1278
d629b836 1279 if (dst_group) {
1da177e4 1280 atomic_inc(&skb->users);
d629b836 1281 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
1da177e4
LT
1282 }
1283 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1284
1285out:
1286 return err;
1287}
1288
1289static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1290 struct msghdr *msg, size_t len,
1291 int flags)
1292{
1293 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1294 struct scm_cookie scm;
1295 struct sock *sk = sock->sk;
1296 struct netlink_sock *nlk = nlk_sk(sk);
1297 int noblock = flags&MSG_DONTWAIT;
1298 size_t copied;
1299 struct sk_buff *skb;
1300 int err;
1301
1302 if (flags&MSG_OOB)
1303 return -EOPNOTSUPP;
1304
1305 copied = 0;
1306
6ac552fd
PM
1307 skb = skb_recv_datagram(sk, flags, noblock, &err);
1308 if (skb == NULL)
1da177e4
LT
1309 goto out;
1310
1311 msg->msg_namelen = 0;
1312
1313 copied = skb->len;
1314 if (len < copied) {
1315 msg->msg_flags |= MSG_TRUNC;
1316 copied = len;
1317 }
1318
badff6d0 1319 skb_reset_transport_header(skb);
1da177e4
LT
1320 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1321
1322 if (msg->msg_name) {
6ac552fd 1323 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
1da177e4
LT
1324 addr->nl_family = AF_NETLINK;
1325 addr->nl_pad = 0;
1326 addr->nl_pid = NETLINK_CB(skb).pid;
d629b836 1327 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1da177e4
LT
1328 msg->msg_namelen = sizeof(*addr);
1329 }
1330
cc9a06cd
PM
1331 if (nlk->flags & NETLINK_RECV_PKTINFO)
1332 netlink_cmsg_recv_pktinfo(msg, skb);
1333
1da177e4
LT
1334 if (NULL == siocb->scm) {
1335 memset(&scm, 0, sizeof(scm));
1336 siocb->scm = &scm;
1337 }
1338 siocb->scm->creds = *NETLINK_CREDS(skb);
188ccb55
PM
1339 if (flags & MSG_TRUNC)
1340 copied = skb->len;
1da177e4
LT
1341 skb_free_datagram(sk, skb);
1342
1343 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1344 netlink_dump(sk);
1345
1346 scm_recv(sock, msg, siocb->scm, flags);
1da177e4
LT
1347out:
1348 netlink_rcv_wake(sk);
1349 return err ? : copied;
1350}
1351
1352static void netlink_data_ready(struct sock *sk, int len)
1353{
cd40b7d3 1354 BUG();
1da177e4
LT
1355}
1356
1357/*
746fac4d 1358 * We export these functions to other modules. They provide a
1da177e4
LT
1359 * complete set of kernel non-blocking support for message
1360 * queueing.
1361 */
1362
1363struct sock *
b4b51029 1364netlink_kernel_create(struct net *net, int unit, unsigned int groups,
cd40b7d3 1365 void (*input)(struct sk_buff *skb),
af65bdfc 1366 struct mutex *cb_mutex, struct module *module)
1da177e4
LT
1367{
1368 struct socket *sock;
1369 struct sock *sk;
77247bbb 1370 struct netlink_sock *nlk;
4277a083 1371 unsigned long *listeners = NULL;
1da177e4 1372
fab2caf6 1373 BUG_ON(!nl_table);
1da177e4 1374
6ac552fd 1375 if (unit < 0 || unit >= MAX_LINKS)
1da177e4
LT
1376 return NULL;
1377
1378 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1379 return NULL;
1380
23fe1866
PE
1381 /*
1382 * We have to just have a reference on the net from sk, but don't
1383 * get_net it. Besides, we cannot get and then put the net here.
1384 * So we create one inside init_net and the move it to net.
1385 */
1386
1387 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1388 goto out_sock_release_nosk;
1389
1390 sk = sock->sk;
edf02087 1391 sk_change_net(sk, net);
4fdb3bb7 1392
4277a083
PM
1393 if (groups < 32)
1394 groups = 32;
1395
1396 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1397 if (!listeners)
1398 goto out_sock_release;
1399
1da177e4
LT
1400 sk->sk_data_ready = netlink_data_ready;
1401 if (input)
cd40b7d3 1402 nlk_sk(sk)->netlink_rcv = input;
1da177e4 1403
b4b51029 1404 if (netlink_insert(sk, net, 0))
77247bbb 1405 goto out_sock_release;
4fdb3bb7 1406
77247bbb
PM
1407 nlk = nlk_sk(sk);
1408 nlk->flags |= NETLINK_KERNEL_SOCKET;
4fdb3bb7 1409
4fdb3bb7 1410 netlink_table_grab();
b4b51029
EB
1411 if (!nl_table[unit].registered) {
1412 nl_table[unit].groups = groups;
1413 nl_table[unit].listeners = listeners;
1414 nl_table[unit].cb_mutex = cb_mutex;
1415 nl_table[unit].module = module;
1416 nl_table[unit].registered = 1;
f937f1f4
JJ
1417 } else {
1418 kfree(listeners);
869e58f8 1419 nl_table[unit].registered++;
b4b51029 1420 }
4fdb3bb7 1421 netlink_table_ungrab();
77247bbb
PM
1422 return sk;
1423
4fdb3bb7 1424out_sock_release:
4277a083 1425 kfree(listeners);
9dfbec1f 1426 netlink_kernel_release(sk);
23fe1866
PE
1427 return NULL;
1428
1429out_sock_release_nosk:
4fdb3bb7 1430 sock_release(sock);
77247bbb 1431 return NULL;
1da177e4 1432}
6ac552fd 1433EXPORT_SYMBOL(netlink_kernel_create);
1da177e4 1434
b7c6ba6e
DL
1435
1436void
1437netlink_kernel_release(struct sock *sk)
1438{
edf02087 1439 sk_release_kernel(sk);
b7c6ba6e
DL
1440}
1441EXPORT_SYMBOL(netlink_kernel_release);
1442
1443
b4ff4f04
JB
1444/**
1445 * netlink_change_ngroups - change number of multicast groups
1446 *
1447 * This changes the number of multicast groups that are available
1448 * on a certain netlink family. Note that it is not possible to
84659eb5
JB
1449 * change the number of groups to below 32. Also note that it does
1450 * not implicitly call netlink_clear_multicast_users() when the
1451 * number of groups is reduced.
b4ff4f04
JB
1452 *
1453 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1454 * @groups: The new number of groups.
1455 */
1456int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1457{
1458 unsigned long *listeners, *old = NULL;
1459 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1460 int err = 0;
1461
1462 if (groups < 32)
1463 groups = 32;
1464
1465 netlink_table_grab();
1466 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1467 listeners = kzalloc(NLGRPSZ(groups), GFP_ATOMIC);
1468 if (!listeners) {
1469 err = -ENOMEM;
1470 goto out_ungrab;
1471 }
1472 old = tbl->listeners;
1473 memcpy(listeners, old, NLGRPSZ(tbl->groups));
1474 rcu_assign_pointer(tbl->listeners, listeners);
1475 }
1476 tbl->groups = groups;
1477
1478 out_ungrab:
1479 netlink_table_ungrab();
1480 synchronize_rcu();
1481 kfree(old);
1482 return err;
1483}
1484EXPORT_SYMBOL(netlink_change_ngroups);
1485
84659eb5
JB
1486/**
1487 * netlink_clear_multicast_users - kick off multicast listeners
1488 *
1489 * This function removes all listeners from the given group.
1490 * @ksk: The kernel netlink socket, as returned by
1491 * netlink_kernel_create().
1492 * @group: The multicast group to clear.
1493 */
1494void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1495{
1496 struct sock *sk;
1497 struct hlist_node *node;
1498 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1499
1500 netlink_table_grab();
1501
1502 sk_for_each_bound(sk, node, &tbl->mc_list)
1503 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1504
1505 netlink_table_ungrab();
1506}
1507EXPORT_SYMBOL(netlink_clear_multicast_users);
1508
1da177e4 1509void netlink_set_nonroot(int protocol, unsigned int flags)
746fac4d
YH
1510{
1511 if ((unsigned int)protocol < MAX_LINKS)
1da177e4 1512 nl_table[protocol].nl_nonroot = flags;
746fac4d 1513}
6ac552fd 1514EXPORT_SYMBOL(netlink_set_nonroot);
1da177e4
LT
1515
1516static void netlink_destroy_callback(struct netlink_callback *cb)
1517{
1518 if (cb->skb)
1519 kfree_skb(cb->skb);
1520 kfree(cb);
1521}
1522
1523/*
1524 * It looks a bit ugly.
1525 * It would be better to create kernel thread.
1526 */
1527
1528static int netlink_dump(struct sock *sk)
1529{
1530 struct netlink_sock *nlk = nlk_sk(sk);
1531 struct netlink_callback *cb;
1532 struct sk_buff *skb;
1533 struct nlmsghdr *nlh;
bf8b79e4 1534 int len, err = -ENOBUFS;
746fac4d 1535
1da177e4
LT
1536 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1537 if (!skb)
bf8b79e4 1538 goto errout;
1da177e4 1539
af65bdfc 1540 mutex_lock(nlk->cb_mutex);
1da177e4
LT
1541
1542 cb = nlk->cb;
1543 if (cb == NULL) {
bf8b79e4
TG
1544 err = -EINVAL;
1545 goto errout_skb;
1da177e4
LT
1546 }
1547
1548 len = cb->dump(skb, cb);
1549
1550 if (len > 0) {
af65bdfc 1551 mutex_unlock(nlk->cb_mutex);
b1153f29
SH
1552
1553 if (sk_filter(sk, skb))
1554 kfree_skb(skb);
1555 else {
1556 skb_queue_tail(&sk->sk_receive_queue, skb);
1557 sk->sk_data_ready(sk, skb->len);
1558 }
1da177e4
LT
1559 return 0;
1560 }
1561
bf8b79e4
TG
1562 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1563 if (!nlh)
1564 goto errout_skb;
1565
1566 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1567
b1153f29
SH
1568 if (sk_filter(sk, skb))
1569 kfree_skb(skb);
1570 else {
1571 skb_queue_tail(&sk->sk_receive_queue, skb);
1572 sk->sk_data_ready(sk, skb->len);
1573 }
1da177e4 1574
a8f74b22
TG
1575 if (cb->done)
1576 cb->done(cb);
1da177e4 1577 nlk->cb = NULL;
af65bdfc 1578 mutex_unlock(nlk->cb_mutex);
1da177e4
LT
1579
1580 netlink_destroy_callback(cb);
1da177e4 1581 return 0;
1797754e 1582
bf8b79e4 1583errout_skb:
af65bdfc 1584 mutex_unlock(nlk->cb_mutex);
bf8b79e4
TG
1585 kfree_skb(skb);
1586errout:
1587 return err;
1da177e4
LT
1588}
1589
1590int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1591 struct nlmsghdr *nlh,
6ac552fd
PM
1592 int (*dump)(struct sk_buff *skb,
1593 struct netlink_callback *),
1594 int (*done)(struct netlink_callback *))
1da177e4
LT
1595{
1596 struct netlink_callback *cb;
1597 struct sock *sk;
1598 struct netlink_sock *nlk;
1599
0da974f4 1600 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
1da177e4
LT
1601 if (cb == NULL)
1602 return -ENOBUFS;
1603
1da177e4
LT
1604 cb->dump = dump;
1605 cb->done = done;
1606 cb->nlh = nlh;
1607 atomic_inc(&skb->users);
1608 cb->skb = skb;
1609
3b1e0a65 1610 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
1da177e4
LT
1611 if (sk == NULL) {
1612 netlink_destroy_callback(cb);
1613 return -ECONNREFUSED;
1614 }
1615 nlk = nlk_sk(sk);
3f660d66 1616 /* A dump is in progress... */
af65bdfc 1617 mutex_lock(nlk->cb_mutex);
3f660d66 1618 if (nlk->cb) {
af65bdfc 1619 mutex_unlock(nlk->cb_mutex);
1da177e4
LT
1620 netlink_destroy_callback(cb);
1621 sock_put(sk);
1622 return -EBUSY;
1623 }
1624 nlk->cb = cb;
af65bdfc 1625 mutex_unlock(nlk->cb_mutex);
1da177e4
LT
1626
1627 netlink_dump(sk);
1628 sock_put(sk);
5c58298c
DL
1629
1630 /* We successfully started a dump, by returning -EINTR we
1631 * signal not to send ACK even if it was requested.
1632 */
1633 return -EINTR;
1da177e4 1634}
6ac552fd 1635EXPORT_SYMBOL(netlink_dump_start);
1da177e4
LT
1636
1637void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1638{
1639 struct sk_buff *skb;
1640 struct nlmsghdr *rep;
1641 struct nlmsgerr *errmsg;
339bf98f 1642 size_t payload = sizeof(*errmsg);
1da177e4 1643
339bf98f
TG
1644 /* error messages get the original request appened */
1645 if (err)
1646 payload += nlmsg_len(nlh);
1da177e4 1647
339bf98f 1648 skb = nlmsg_new(payload, GFP_KERNEL);
1da177e4
LT
1649 if (!skb) {
1650 struct sock *sk;
1651
3b1e0a65 1652 sk = netlink_lookup(sock_net(in_skb->sk),
b4b51029 1653 in_skb->sk->sk_protocol,
1da177e4
LT
1654 NETLINK_CB(in_skb).pid);
1655 if (sk) {
1656 sk->sk_err = ENOBUFS;
1657 sk->sk_error_report(sk);
1658 sock_put(sk);
1659 }
1660 return;
1661 }
1662
1663 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
1797754e 1664 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
bf8b79e4 1665 errmsg = nlmsg_data(rep);
1da177e4 1666 errmsg->error = err;
bf8b79e4 1667 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
1da177e4
LT
1668 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1669}
6ac552fd 1670EXPORT_SYMBOL(netlink_ack);
1da177e4 1671
cd40b7d3 1672int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
1d00a4eb 1673 struct nlmsghdr *))
82ace47a 1674{
82ace47a
TG
1675 struct nlmsghdr *nlh;
1676 int err;
1677
1678 while (skb->len >= nlmsg_total_size(0)) {
cd40b7d3
DL
1679 int msglen;
1680
b529ccf2 1681 nlh = nlmsg_hdr(skb);
d35b6856 1682 err = 0;
82ace47a 1683
ad8e4b75 1684 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
82ace47a
TG
1685 return 0;
1686
d35b6856
TG
1687 /* Only requests are handled by the kernel */
1688 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
5c58298c 1689 goto ack;
45e7ae7f
TG
1690
1691 /* Skip control messages */
1692 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
5c58298c 1693 goto ack;
d35b6856 1694
1d00a4eb 1695 err = cb(skb, nlh);
5c58298c
DL
1696 if (err == -EINTR)
1697 goto skip;
1698
1699ack:
d35b6856 1700 if (nlh->nlmsg_flags & NLM_F_ACK || err)
82ace47a 1701 netlink_ack(skb, nlh, err);
82ace47a 1702
5c58298c 1703skip:
6ac552fd 1704 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
cd40b7d3
DL
1705 if (msglen > skb->len)
1706 msglen = skb->len;
1707 skb_pull(skb, msglen);
82ace47a
TG
1708 }
1709
1710 return 0;
1711}
6ac552fd 1712EXPORT_SYMBOL(netlink_rcv_skb);
82ace47a 1713
d387f6ad
TG
1714/**
1715 * nlmsg_notify - send a notification netlink message
1716 * @sk: netlink socket to use
1717 * @skb: notification message
1718 * @pid: destination netlink pid for reports or 0
1719 * @group: destination multicast group or 0
1720 * @report: 1 to report back, 0 to disable
1721 * @flags: allocation flags
1722 */
1723int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1724 unsigned int group, int report, gfp_t flags)
1725{
1726 int err = 0;
1727
1728 if (group) {
1729 int exclude_pid = 0;
1730
1731 if (report) {
1732 atomic_inc(&skb->users);
1733 exclude_pid = pid;
1734 }
1735
1736 /* errors reported via destination sk->sk_err */
1737 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1738 }
1739
1740 if (report)
1741 err = nlmsg_unicast(sk, skb, pid);
1742
1743 return err;
1744}
6ac552fd 1745EXPORT_SYMBOL(nlmsg_notify);
d387f6ad 1746
1da177e4
LT
1747#ifdef CONFIG_PROC_FS
1748struct nl_seq_iter {
e372c414 1749 struct seq_net_private p;
1da177e4
LT
1750 int link;
1751 int hash_idx;
1752};
1753
1754static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1755{
1756 struct nl_seq_iter *iter = seq->private;
1757 int i, j;
1758 struct sock *s;
1759 struct hlist_node *node;
1760 loff_t off = 0;
1761
6ac552fd 1762 for (i = 0; i < MAX_LINKS; i++) {
1da177e4
LT
1763 struct nl_pid_hash *hash = &nl_table[i].hash;
1764
1765 for (j = 0; j <= hash->mask; j++) {
1766 sk_for_each(s, node, &hash->table[j]) {
1218854a 1767 if (sock_net(s) != seq_file_net(seq))
b4b51029 1768 continue;
1da177e4
LT
1769 if (off == pos) {
1770 iter->link = i;
1771 iter->hash_idx = j;
1772 return s;
1773 }
1774 ++off;
1775 }
1776 }
1777 }
1778 return NULL;
1779}
1780
1781static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
9a429c49 1782 __acquires(nl_table_lock)
1da177e4
LT
1783{
1784 read_lock(&nl_table_lock);
1785 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1786}
1787
1788static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1789{
1790 struct sock *s;
1791 struct nl_seq_iter *iter;
1792 int i, j;
1793
1794 ++*pos;
1795
1796 if (v == SEQ_START_TOKEN)
1797 return netlink_seq_socket_idx(seq, 0);
746fac4d 1798
b4b51029
EB
1799 iter = seq->private;
1800 s = v;
1801 do {
1802 s = sk_next(s);
1218854a 1803 } while (s && sock_net(s) != seq_file_net(seq));
1da177e4
LT
1804 if (s)
1805 return s;
1806
1da177e4
LT
1807 i = iter->link;
1808 j = iter->hash_idx + 1;
1809
1810 do {
1811 struct nl_pid_hash *hash = &nl_table[i].hash;
1812
1813 for (; j <= hash->mask; j++) {
1814 s = sk_head(&hash->table[j]);
1218854a 1815 while (s && sock_net(s) != seq_file_net(seq))
b4b51029 1816 s = sk_next(s);
1da177e4
LT
1817 if (s) {
1818 iter->link = i;
1819 iter->hash_idx = j;
1820 return s;
1821 }
1822 }
1823
1824 j = 0;
1825 } while (++i < MAX_LINKS);
1826
1827 return NULL;
1828}
1829
1830static void netlink_seq_stop(struct seq_file *seq, void *v)
9a429c49 1831 __releases(nl_table_lock)
1da177e4
LT
1832{
1833 read_unlock(&nl_table_lock);
1834}
1835
1836
1837static int netlink_seq_show(struct seq_file *seq, void *v)
1838{
1839 if (v == SEQ_START_TOKEN)
1840 seq_puts(seq,
1841 "sk Eth Pid Groups "
1842 "Rmem Wmem Dump Locks\n");
1843 else {
1844 struct sock *s = v;
1845 struct netlink_sock *nlk = nlk_sk(s);
1846
1847 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1848 s,
1849 s->sk_protocol,
1850 nlk->pid,
513c2500 1851 nlk->groups ? (u32)nlk->groups[0] : 0,
1da177e4
LT
1852 atomic_read(&s->sk_rmem_alloc),
1853 atomic_read(&s->sk_wmem_alloc),
1854 nlk->cb,
1855 atomic_read(&s->sk_refcnt)
1856 );
1857
1858 }
1859 return 0;
1860}
1861
56b3d975 1862static const struct seq_operations netlink_seq_ops = {
1da177e4
LT
1863 .start = netlink_seq_start,
1864 .next = netlink_seq_next,
1865 .stop = netlink_seq_stop,
1866 .show = netlink_seq_show,
1867};
1868
1869
1870static int netlink_seq_open(struct inode *inode, struct file *file)
1871{
e372c414
DL
1872 return seq_open_net(inode, file, &netlink_seq_ops,
1873 sizeof(struct nl_seq_iter));
b4b51029
EB
1874}
1875
da7071d7 1876static const struct file_operations netlink_seq_fops = {
1da177e4
LT
1877 .owner = THIS_MODULE,
1878 .open = netlink_seq_open,
1879 .read = seq_read,
1880 .llseek = seq_lseek,
e372c414 1881 .release = seq_release_net,
1da177e4
LT
1882};
1883
1884#endif
1885
1886int netlink_register_notifier(struct notifier_block *nb)
1887{
e041c683 1888 return atomic_notifier_chain_register(&netlink_chain, nb);
1da177e4 1889}
6ac552fd 1890EXPORT_SYMBOL(netlink_register_notifier);
1da177e4
LT
1891
1892int netlink_unregister_notifier(struct notifier_block *nb)
1893{
e041c683 1894 return atomic_notifier_chain_unregister(&netlink_chain, nb);
1da177e4 1895}
6ac552fd 1896EXPORT_SYMBOL(netlink_unregister_notifier);
746fac4d 1897
90ddc4f0 1898static const struct proto_ops netlink_ops = {
1da177e4
LT
1899 .family = PF_NETLINK,
1900 .owner = THIS_MODULE,
1901 .release = netlink_release,
1902 .bind = netlink_bind,
1903 .connect = netlink_connect,
1904 .socketpair = sock_no_socketpair,
1905 .accept = sock_no_accept,
1906 .getname = netlink_getname,
1907 .poll = datagram_poll,
1908 .ioctl = sock_no_ioctl,
1909 .listen = sock_no_listen,
1910 .shutdown = sock_no_shutdown,
9a4595bc
PM
1911 .setsockopt = netlink_setsockopt,
1912 .getsockopt = netlink_getsockopt,
1da177e4
LT
1913 .sendmsg = netlink_sendmsg,
1914 .recvmsg = netlink_recvmsg,
1915 .mmap = sock_no_mmap,
1916 .sendpage = sock_no_sendpage,
1917};
1918
1919static struct net_proto_family netlink_family_ops = {
1920 .family = PF_NETLINK,
1921 .create = netlink_create,
1922 .owner = THIS_MODULE, /* for consistency 8) */
1923};
1924
4665079c 1925static int __net_init netlink_net_init(struct net *net)
b4b51029
EB
1926{
1927#ifdef CONFIG_PROC_FS
1928 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
1929 return -ENOMEM;
1930#endif
1931 return 0;
1932}
1933
4665079c 1934static void __net_exit netlink_net_exit(struct net *net)
b4b51029
EB
1935{
1936#ifdef CONFIG_PROC_FS
1937 proc_net_remove(net, "netlink");
1938#endif
1939}
1940
022cbae6 1941static struct pernet_operations __net_initdata netlink_net_ops = {
b4b51029
EB
1942 .init = netlink_net_init,
1943 .exit = netlink_net_exit,
1944};
1945
1da177e4
LT
1946static int __init netlink_proto_init(void)
1947{
1948 struct sk_buff *dummy_skb;
1949 int i;
26ff5ddc 1950 unsigned long limit;
1da177e4
LT
1951 unsigned int order;
1952 int err = proto_register(&netlink_proto, 0);
1953
1954 if (err != 0)
1955 goto out;
1956
ef047f5e 1957 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
1da177e4 1958
0da974f4 1959 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
fab2caf6
AM
1960 if (!nl_table)
1961 goto panic;
1da177e4 1962
1da177e4 1963 if (num_physpages >= (128 * 1024))
26ff5ddc 1964 limit = num_physpages >> (21 - PAGE_SHIFT);
1da177e4 1965 else
26ff5ddc 1966 limit = num_physpages >> (23 - PAGE_SHIFT);
1da177e4 1967
26ff5ddc
DC
1968 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
1969 limit = (1UL << order) / sizeof(struct hlist_head);
1970 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
1da177e4
LT
1971
1972 for (i = 0; i < MAX_LINKS; i++) {
1973 struct nl_pid_hash *hash = &nl_table[i].hash;
1974
ea72912c 1975 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
1da177e4
LT
1976 if (!hash->table) {
1977 while (i-- > 0)
1978 nl_pid_hash_free(nl_table[i].hash.table,
1979 1 * sizeof(*hash->table));
1980 kfree(nl_table);
fab2caf6 1981 goto panic;
1da177e4 1982 }
1da177e4
LT
1983 hash->max_shift = order;
1984 hash->shift = 0;
1985 hash->mask = 0;
1986 hash->rehash_time = jiffies;
1987 }
1988
1989 sock_register(&netlink_family_ops);
b4b51029 1990 register_pernet_subsys(&netlink_net_ops);
746fac4d 1991 /* The netlink device handler may be needed early. */
1da177e4
LT
1992 rtnetlink_init();
1993out:
1994 return err;
fab2caf6
AM
1995panic:
1996 panic("netlink_init: Cannot allocate nl_table\n");
1da177e4
LT
1997}
1998
1da177e4 1999core_initcall(netlink_proto_init);
This page took 0.586387 seconds and 5 git commands to generate.