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