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