spi-topcliff-pch: Fix issue for transmitting over 4KByte
[zen-stable.git] / net / netlink / af_netlink.c
blob467af9cbfb97d44d49647ef58071f8e744dbfff6
1 /*
2 * NETLINK Kernel-user communication protocol.
4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
5 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
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.
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)
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
24 #include <linux/module.h>
26 #include <linux/capability.h>
27 #include <linux/kernel.h>
28 #include <linux/init.h>
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>
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>
56 #include <linux/audit.h>
57 #include <linux/mutex.h>
59 #include <net/net_namespace.h>
60 #include <net/sock.h>
61 #include <net/scm.h>
62 #include <net/netlink.h>
64 #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
65 #define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
67 struct netlink_sock {
68 /* struct sock has to be the first member of netlink_sock */
69 struct sock sk;
70 u32 pid;
71 u32 dst_pid;
72 u32 dst_group;
73 u32 flags;
74 u32 subscriptions;
75 u32 ngroups;
76 unsigned long *groups;
77 unsigned long state;
78 wait_queue_head_t wait;
79 struct netlink_callback *cb;
80 struct mutex *cb_mutex;
81 struct mutex cb_def_mutex;
82 void (*netlink_rcv)(struct sk_buff *skb);
83 struct module *module;
86 struct listeners {
87 struct rcu_head rcu;
88 unsigned long masks[0];
91 #define NETLINK_KERNEL_SOCKET 0x1
92 #define NETLINK_RECV_PKTINFO 0x2
93 #define NETLINK_BROADCAST_SEND_ERROR 0x4
94 #define NETLINK_RECV_NO_ENOBUFS 0x8
96 static inline struct netlink_sock *nlk_sk(struct sock *sk)
98 return container_of(sk, struct netlink_sock, sk);
101 static inline int netlink_is_kernel(struct sock *sk)
103 return nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET;
106 struct nl_pid_hash {
107 struct hlist_head *table;
108 unsigned long rehash_time;
110 unsigned int mask;
111 unsigned int shift;
113 unsigned int entries;
114 unsigned int max_shift;
116 u32 rnd;
119 struct netlink_table {
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;
130 static struct netlink_table *nl_table;
132 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
134 static int netlink_dump(struct sock *sk);
135 static void netlink_destroy_callback(struct netlink_callback *cb);
137 static DEFINE_RWLOCK(nl_table_lock);
138 static atomic_t nl_table_users = ATOMIC_INIT(0);
140 static ATOMIC_NOTIFIER_HEAD(netlink_chain);
142 static inline u32 netlink_group_mask(u32 group)
144 return group ? 1 << (group - 1) : 0;
147 static inline struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
149 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
152 static void netlink_sock_destruct(struct sock *sk)
154 struct netlink_sock *nlk = nlk_sk(sk);
156 if (nlk->cb) {
157 if (nlk->cb->done)
158 nlk->cb->done(nlk->cb);
159 netlink_destroy_callback(nlk->cb);
162 skb_queue_purge(&sk->sk_receive_queue);
164 if (!sock_flag(sk, SOCK_DEAD)) {
165 printk(KERN_ERR "Freeing alive netlink socket %p\n", sk);
166 return;
169 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
170 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
171 WARN_ON(nlk_sk(sk)->groups);
174 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
175 * SMP. Look, when several writers sleep and reader wakes them up, all but one
176 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
177 * this, _but_ remember, it adds useless work on UP machines.
180 void netlink_table_grab(void)
181 __acquires(nl_table_lock)
183 might_sleep();
185 write_lock_irq(&nl_table_lock);
187 if (atomic_read(&nl_table_users)) {
188 DECLARE_WAITQUEUE(wait, current);
190 add_wait_queue_exclusive(&nl_table_wait, &wait);
191 for (;;) {
192 set_current_state(TASK_UNINTERRUPTIBLE);
193 if (atomic_read(&nl_table_users) == 0)
194 break;
195 write_unlock_irq(&nl_table_lock);
196 schedule();
197 write_lock_irq(&nl_table_lock);
200 __set_current_state(TASK_RUNNING);
201 remove_wait_queue(&nl_table_wait, &wait);
205 void netlink_table_ungrab(void)
206 __releases(nl_table_lock)
208 write_unlock_irq(&nl_table_lock);
209 wake_up(&nl_table_wait);
212 static inline void
213 netlink_lock_table(void)
215 /* read_lock() synchronizes us to netlink_table_grab */
217 read_lock(&nl_table_lock);
218 atomic_inc(&nl_table_users);
219 read_unlock(&nl_table_lock);
222 static inline void
223 netlink_unlock_table(void)
225 if (atomic_dec_and_test(&nl_table_users))
226 wake_up(&nl_table_wait);
229 static struct sock *netlink_lookup(struct net *net, int protocol, u32 pid)
231 struct nl_pid_hash *hash = &nl_table[protocol].hash;
232 struct hlist_head *head;
233 struct sock *sk;
234 struct hlist_node *node;
236 read_lock(&nl_table_lock);
237 head = nl_pid_hashfn(hash, pid);
238 sk_for_each(sk, node, head) {
239 if (net_eq(sock_net(sk), net) && (nlk_sk(sk)->pid == pid)) {
240 sock_hold(sk);
241 goto found;
244 sk = NULL;
245 found:
246 read_unlock(&nl_table_lock);
247 return sk;
250 static struct hlist_head *nl_pid_hash_zalloc(size_t size)
252 if (size <= PAGE_SIZE)
253 return kzalloc(size, GFP_ATOMIC);
254 else
255 return (struct hlist_head *)
256 __get_free_pages(GFP_ATOMIC | __GFP_ZERO,
257 get_order(size));
260 static void nl_pid_hash_free(struct hlist_head *table, size_t size)
262 if (size <= PAGE_SIZE)
263 kfree(table);
264 else
265 free_pages((unsigned long)table, get_order(size));
268 static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
270 unsigned int omask, mask, shift;
271 size_t osize, size;
272 struct hlist_head *otable, *table;
273 int i;
275 omask = mask = hash->mask;
276 osize = size = (mask + 1) * sizeof(*table);
277 shift = hash->shift;
279 if (grow) {
280 if (++shift > hash->max_shift)
281 return 0;
282 mask = mask * 2 + 1;
283 size *= 2;
286 table = nl_pid_hash_zalloc(size);
287 if (!table)
288 return 0;
290 otable = hash->table;
291 hash->table = table;
292 hash->mask = mask;
293 hash->shift = shift;
294 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
296 for (i = 0; i <= omask; i++) {
297 struct sock *sk;
298 struct hlist_node *node, *tmp;
300 sk_for_each_safe(sk, node, tmp, &otable[i])
301 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
304 nl_pid_hash_free(otable, osize);
305 hash->rehash_time = jiffies + 10 * 60 * HZ;
306 return 1;
309 static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
311 int avg = hash->entries >> hash->shift;
313 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
314 return 1;
316 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
317 nl_pid_hash_rehash(hash, 0);
318 return 1;
321 return 0;
324 static const struct proto_ops netlink_ops;
326 static void
327 netlink_update_listeners(struct sock *sk)
329 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
330 struct hlist_node *node;
331 unsigned long mask;
332 unsigned int i;
334 for (i = 0; i < NLGRPLONGS(tbl->groups); i++) {
335 mask = 0;
336 sk_for_each_bound(sk, node, &tbl->mc_list) {
337 if (i < NLGRPLONGS(nlk_sk(sk)->ngroups))
338 mask |= nlk_sk(sk)->groups[i];
340 tbl->listeners->masks[i] = mask;
342 /* this function is only called with the netlink table "grabbed", which
343 * makes sure updates are visible before bind or setsockopt return. */
346 static int netlink_insert(struct sock *sk, struct net *net, u32 pid)
348 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
349 struct hlist_head *head;
350 int err = -EADDRINUSE;
351 struct sock *osk;
352 struct hlist_node *node;
353 int len;
355 netlink_table_grab();
356 head = nl_pid_hashfn(hash, pid);
357 len = 0;
358 sk_for_each(osk, node, head) {
359 if (net_eq(sock_net(osk), net) && (nlk_sk(osk)->pid == pid))
360 break;
361 len++;
363 if (node)
364 goto err;
366 err = -EBUSY;
367 if (nlk_sk(sk)->pid)
368 goto err;
370 err = -ENOMEM;
371 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
372 goto err;
374 if (len && nl_pid_hash_dilute(hash, len))
375 head = nl_pid_hashfn(hash, pid);
376 hash->entries++;
377 nlk_sk(sk)->pid = pid;
378 sk_add_node(sk, head);
379 err = 0;
381 err:
382 netlink_table_ungrab();
383 return err;
386 static void netlink_remove(struct sock *sk)
388 netlink_table_grab();
389 if (sk_del_node_init(sk))
390 nl_table[sk->sk_protocol].hash.entries--;
391 if (nlk_sk(sk)->subscriptions)
392 __sk_del_bind_node(sk);
393 netlink_table_ungrab();
396 static struct proto netlink_proto = {
397 .name = "NETLINK",
398 .owner = THIS_MODULE,
399 .obj_size = sizeof(struct netlink_sock),
402 static int __netlink_create(struct net *net, struct socket *sock,
403 struct mutex *cb_mutex, int protocol)
405 struct sock *sk;
406 struct netlink_sock *nlk;
408 sock->ops = &netlink_ops;
410 sk = sk_alloc(net, PF_NETLINK, GFP_KERNEL, &netlink_proto);
411 if (!sk)
412 return -ENOMEM;
414 sock_init_data(sock, sk);
416 nlk = nlk_sk(sk);
417 if (cb_mutex)
418 nlk->cb_mutex = cb_mutex;
419 else {
420 nlk->cb_mutex = &nlk->cb_def_mutex;
421 mutex_init(nlk->cb_mutex);
423 init_waitqueue_head(&nlk->wait);
425 sk->sk_destruct = netlink_sock_destruct;
426 sk->sk_protocol = protocol;
427 return 0;
430 static int netlink_create(struct net *net, struct socket *sock, int protocol,
431 int kern)
433 struct module *module = NULL;
434 struct mutex *cb_mutex;
435 struct netlink_sock *nlk;
436 int err = 0;
438 sock->state = SS_UNCONNECTED;
440 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
441 return -ESOCKTNOSUPPORT;
443 if (protocol < 0 || protocol >= MAX_LINKS)
444 return -EPROTONOSUPPORT;
446 netlink_lock_table();
447 #ifdef CONFIG_MODULES
448 if (!nl_table[protocol].registered) {
449 netlink_unlock_table();
450 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
451 netlink_lock_table();
453 #endif
454 if (nl_table[protocol].registered &&
455 try_module_get(nl_table[protocol].module))
456 module = nl_table[protocol].module;
457 else
458 err = -EPROTONOSUPPORT;
459 cb_mutex = nl_table[protocol].cb_mutex;
460 netlink_unlock_table();
462 if (err < 0)
463 goto out;
465 err = __netlink_create(net, sock, cb_mutex, protocol);
466 if (err < 0)
467 goto out_module;
469 local_bh_disable();
470 sock_prot_inuse_add(net, &netlink_proto, 1);
471 local_bh_enable();
473 nlk = nlk_sk(sock->sk);
474 nlk->module = module;
475 out:
476 return err;
478 out_module:
479 module_put(module);
480 goto out;
483 static int netlink_release(struct socket *sock)
485 struct sock *sk = sock->sk;
486 struct netlink_sock *nlk;
488 if (!sk)
489 return 0;
491 netlink_remove(sk);
492 sock_orphan(sk);
493 nlk = nlk_sk(sk);
496 * OK. Socket is unlinked, any packets that arrive now
497 * will be purged.
500 sock->sk = NULL;
501 wake_up_interruptible_all(&nlk->wait);
503 skb_queue_purge(&sk->sk_write_queue);
505 if (nlk->pid) {
506 struct netlink_notify n = {
507 .net = sock_net(sk),
508 .protocol = sk->sk_protocol,
509 .pid = nlk->pid,
511 atomic_notifier_call_chain(&netlink_chain,
512 NETLINK_URELEASE, &n);
515 module_put(nlk->module);
517 netlink_table_grab();
518 if (netlink_is_kernel(sk)) {
519 BUG_ON(nl_table[sk->sk_protocol].registered == 0);
520 if (--nl_table[sk->sk_protocol].registered == 0) {
521 kfree(nl_table[sk->sk_protocol].listeners);
522 nl_table[sk->sk_protocol].module = NULL;
523 nl_table[sk->sk_protocol].registered = 0;
525 } else if (nlk->subscriptions)
526 netlink_update_listeners(sk);
527 netlink_table_ungrab();
529 kfree(nlk->groups);
530 nlk->groups = NULL;
532 local_bh_disable();
533 sock_prot_inuse_add(sock_net(sk), &netlink_proto, -1);
534 local_bh_enable();
535 sock_put(sk);
536 return 0;
539 static int netlink_autobind(struct socket *sock)
541 struct sock *sk = sock->sk;
542 struct net *net = sock_net(sk);
543 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
544 struct hlist_head *head;
545 struct sock *osk;
546 struct hlist_node *node;
547 s32 pid = task_tgid_vnr(current);
548 int err;
549 static s32 rover = -4097;
551 retry:
552 cond_resched();
553 netlink_table_grab();
554 head = nl_pid_hashfn(hash, pid);
555 sk_for_each(osk, node, head) {
556 if (!net_eq(sock_net(osk), net))
557 continue;
558 if (nlk_sk(osk)->pid == pid) {
559 /* Bind collision, search negative pid values. */
560 pid = rover--;
561 if (rover > -4097)
562 rover = -4097;
563 netlink_table_ungrab();
564 goto retry;
567 netlink_table_ungrab();
569 err = netlink_insert(sk, net, pid);
570 if (err == -EADDRINUSE)
571 goto retry;
573 /* If 2 threads race to autobind, that is fine. */
574 if (err == -EBUSY)
575 err = 0;
577 return err;
580 static inline int netlink_capable(const struct socket *sock, unsigned int flag)
582 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
583 capable(CAP_NET_ADMIN);
586 static void
587 netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
589 struct netlink_sock *nlk = nlk_sk(sk);
591 if (nlk->subscriptions && !subscriptions)
592 __sk_del_bind_node(sk);
593 else if (!nlk->subscriptions && subscriptions)
594 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
595 nlk->subscriptions = subscriptions;
598 static int netlink_realloc_groups(struct sock *sk)
600 struct netlink_sock *nlk = nlk_sk(sk);
601 unsigned int groups;
602 unsigned long *new_groups;
603 int err = 0;
605 netlink_table_grab();
607 groups = nl_table[sk->sk_protocol].groups;
608 if (!nl_table[sk->sk_protocol].registered) {
609 err = -ENOENT;
610 goto out_unlock;
613 if (nlk->ngroups >= groups)
614 goto out_unlock;
616 new_groups = krealloc(nlk->groups, NLGRPSZ(groups), GFP_ATOMIC);
617 if (new_groups == NULL) {
618 err = -ENOMEM;
619 goto out_unlock;
621 memset((char *)new_groups + NLGRPSZ(nlk->ngroups), 0,
622 NLGRPSZ(groups) - NLGRPSZ(nlk->ngroups));
624 nlk->groups = new_groups;
625 nlk->ngroups = groups;
626 out_unlock:
627 netlink_table_ungrab();
628 return err;
631 static int netlink_bind(struct socket *sock, struct sockaddr *addr,
632 int addr_len)
634 struct sock *sk = sock->sk;
635 struct net *net = sock_net(sk);
636 struct netlink_sock *nlk = nlk_sk(sk);
637 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
638 int err;
640 if (nladdr->nl_family != AF_NETLINK)
641 return -EINVAL;
643 /* Only superuser is allowed to listen multicasts */
644 if (nladdr->nl_groups) {
645 if (!netlink_capable(sock, NL_NONROOT_RECV))
646 return -EPERM;
647 err = netlink_realloc_groups(sk);
648 if (err)
649 return err;
652 if (nlk->pid) {
653 if (nladdr->nl_pid != nlk->pid)
654 return -EINVAL;
655 } else {
656 err = nladdr->nl_pid ?
657 netlink_insert(sk, net, nladdr->nl_pid) :
658 netlink_autobind(sock);
659 if (err)
660 return err;
663 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
664 return 0;
666 netlink_table_grab();
667 netlink_update_subscriptions(sk, nlk->subscriptions +
668 hweight32(nladdr->nl_groups) -
669 hweight32(nlk->groups[0]));
670 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
671 netlink_update_listeners(sk);
672 netlink_table_ungrab();
674 return 0;
677 static int netlink_connect(struct socket *sock, struct sockaddr *addr,
678 int alen, int flags)
680 int err = 0;
681 struct sock *sk = sock->sk;
682 struct netlink_sock *nlk = nlk_sk(sk);
683 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
685 if (alen < sizeof(addr->sa_family))
686 return -EINVAL;
688 if (addr->sa_family == AF_UNSPEC) {
689 sk->sk_state = NETLINK_UNCONNECTED;
690 nlk->dst_pid = 0;
691 nlk->dst_group = 0;
692 return 0;
694 if (addr->sa_family != AF_NETLINK)
695 return -EINVAL;
697 /* Only superuser is allowed to send multicasts */
698 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
699 return -EPERM;
701 if (!nlk->pid)
702 err = netlink_autobind(sock);
704 if (err == 0) {
705 sk->sk_state = NETLINK_CONNECTED;
706 nlk->dst_pid = nladdr->nl_pid;
707 nlk->dst_group = ffs(nladdr->nl_groups);
710 return err;
713 static int netlink_getname(struct socket *sock, struct sockaddr *addr,
714 int *addr_len, int peer)
716 struct sock *sk = sock->sk;
717 struct netlink_sock *nlk = nlk_sk(sk);
718 DECLARE_SOCKADDR(struct sockaddr_nl *, nladdr, addr);
720 nladdr->nl_family = AF_NETLINK;
721 nladdr->nl_pad = 0;
722 *addr_len = sizeof(*nladdr);
724 if (peer) {
725 nladdr->nl_pid = nlk->dst_pid;
726 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
727 } else {
728 nladdr->nl_pid = nlk->pid;
729 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
731 return 0;
734 static void netlink_overrun(struct sock *sk)
736 struct netlink_sock *nlk = nlk_sk(sk);
738 if (!(nlk->flags & NETLINK_RECV_NO_ENOBUFS)) {
739 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
740 sk->sk_err = ENOBUFS;
741 sk->sk_error_report(sk);
744 atomic_inc(&sk->sk_drops);
747 static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
749 struct sock *sock;
750 struct netlink_sock *nlk;
752 sock = netlink_lookup(sock_net(ssk), ssk->sk_protocol, pid);
753 if (!sock)
754 return ERR_PTR(-ECONNREFUSED);
756 /* Don't bother queuing skb if kernel socket has no input function */
757 nlk = nlk_sk(sock);
758 if (sock->sk_state == NETLINK_CONNECTED &&
759 nlk->dst_pid != nlk_sk(ssk)->pid) {
760 sock_put(sock);
761 return ERR_PTR(-ECONNREFUSED);
763 return sock;
766 struct sock *netlink_getsockbyfilp(struct file *filp)
768 struct inode *inode = filp->f_path.dentry->d_inode;
769 struct sock *sock;
771 if (!S_ISSOCK(inode->i_mode))
772 return ERR_PTR(-ENOTSOCK);
774 sock = SOCKET_I(inode)->sk;
775 if (sock->sk_family != AF_NETLINK)
776 return ERR_PTR(-EINVAL);
778 sock_hold(sock);
779 return sock;
783 * Attach a skb to a netlink socket.
784 * The caller must hold a reference to the destination socket. On error, the
785 * reference is dropped. The skb is not send to the destination, just all
786 * all error checks are performed and memory in the queue is reserved.
787 * Return values:
788 * < 0: error. skb freed, reference to sock dropped.
789 * 0: continue
790 * 1: repeat lookup - reference dropped while waiting for socket memory.
792 int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
793 long *timeo, struct sock *ssk)
795 struct netlink_sock *nlk;
797 nlk = nlk_sk(sk);
799 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
800 test_bit(0, &nlk->state)) {
801 DECLARE_WAITQUEUE(wait, current);
802 if (!*timeo) {
803 if (!ssk || netlink_is_kernel(ssk))
804 netlink_overrun(sk);
805 sock_put(sk);
806 kfree_skb(skb);
807 return -EAGAIN;
810 __set_current_state(TASK_INTERRUPTIBLE);
811 add_wait_queue(&nlk->wait, &wait);
813 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
814 test_bit(0, &nlk->state)) &&
815 !sock_flag(sk, SOCK_DEAD))
816 *timeo = schedule_timeout(*timeo);
818 __set_current_state(TASK_RUNNING);
819 remove_wait_queue(&nlk->wait, &wait);
820 sock_put(sk);
822 if (signal_pending(current)) {
823 kfree_skb(skb);
824 return sock_intr_errno(*timeo);
826 return 1;
828 skb_set_owner_r(skb, sk);
829 return 0;
832 static int __netlink_sendskb(struct sock *sk, struct sk_buff *skb)
834 int len = skb->len;
836 skb_queue_tail(&sk->sk_receive_queue, skb);
837 sk->sk_data_ready(sk, len);
838 return len;
841 int netlink_sendskb(struct sock *sk, struct sk_buff *skb)
843 int len = __netlink_sendskb(sk, skb);
845 sock_put(sk);
846 return len;
849 void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
851 kfree_skb(skb);
852 sock_put(sk);
855 static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
857 int delta;
859 skb_orphan(skb);
861 delta = skb->end - skb->tail;
862 if (delta * 2 < skb->truesize)
863 return skb;
865 if (skb_shared(skb)) {
866 struct sk_buff *nskb = skb_clone(skb, allocation);
867 if (!nskb)
868 return skb;
869 kfree_skb(skb);
870 skb = nskb;
873 if (!pskb_expand_head(skb, 0, -delta, allocation))
874 skb->truesize -= delta;
876 return skb;
879 static void netlink_rcv_wake(struct sock *sk)
881 struct netlink_sock *nlk = nlk_sk(sk);
883 if (skb_queue_empty(&sk->sk_receive_queue))
884 clear_bit(0, &nlk->state);
885 if (!test_bit(0, &nlk->state))
886 wake_up_interruptible(&nlk->wait);
889 static int netlink_unicast_kernel(struct sock *sk, struct sk_buff *skb)
891 int ret;
892 struct netlink_sock *nlk = nlk_sk(sk);
894 ret = -ECONNREFUSED;
895 if (nlk->netlink_rcv != NULL) {
896 ret = skb->len;
897 skb_set_owner_r(skb, sk);
898 nlk->netlink_rcv(skb);
900 kfree_skb(skb);
901 sock_put(sk);
902 return ret;
905 int netlink_unicast(struct sock *ssk, struct sk_buff *skb,
906 u32 pid, int nonblock)
908 struct sock *sk;
909 int err;
910 long timeo;
912 skb = netlink_trim(skb, gfp_any());
914 timeo = sock_sndtimeo(ssk, nonblock);
915 retry:
916 sk = netlink_getsockbypid(ssk, pid);
917 if (IS_ERR(sk)) {
918 kfree_skb(skb);
919 return PTR_ERR(sk);
921 if (netlink_is_kernel(sk))
922 return netlink_unicast_kernel(sk, skb);
924 if (sk_filter(sk, skb)) {
925 err = skb->len;
926 kfree_skb(skb);
927 sock_put(sk);
928 return err;
931 err = netlink_attachskb(sk, skb, &timeo, ssk);
932 if (err == 1)
933 goto retry;
934 if (err)
935 return err;
937 return netlink_sendskb(sk, skb);
939 EXPORT_SYMBOL(netlink_unicast);
941 int netlink_has_listeners(struct sock *sk, unsigned int group)
943 int res = 0;
944 struct listeners *listeners;
946 BUG_ON(!netlink_is_kernel(sk));
948 rcu_read_lock();
949 listeners = rcu_dereference(nl_table[sk->sk_protocol].listeners);
951 if (group - 1 < nl_table[sk->sk_protocol].groups)
952 res = test_bit(group - 1, listeners->masks);
954 rcu_read_unlock();
956 return res;
958 EXPORT_SYMBOL_GPL(netlink_has_listeners);
960 static int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
962 struct netlink_sock *nlk = nlk_sk(sk);
964 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
965 !test_bit(0, &nlk->state)) {
966 skb_set_owner_r(skb, sk);
967 __netlink_sendskb(sk, skb);
968 return atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1);
970 return -1;
973 struct netlink_broadcast_data {
974 struct sock *exclude_sk;
975 struct net *net;
976 u32 pid;
977 u32 group;
978 int failure;
979 int delivery_failure;
980 int congested;
981 int delivered;
982 gfp_t allocation;
983 struct sk_buff *skb, *skb2;
984 int (*tx_filter)(struct sock *dsk, struct sk_buff *skb, void *data);
985 void *tx_data;
988 static int do_one_broadcast(struct sock *sk,
989 struct netlink_broadcast_data *p)
991 struct netlink_sock *nlk = nlk_sk(sk);
992 int val;
994 if (p->exclude_sk == sk)
995 goto out;
997 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
998 !test_bit(p->group - 1, nlk->groups))
999 goto out;
1001 if (!net_eq(sock_net(sk), p->net))
1002 goto out;
1004 if (p->failure) {
1005 netlink_overrun(sk);
1006 goto out;
1009 sock_hold(sk);
1010 if (p->skb2 == NULL) {
1011 if (skb_shared(p->skb)) {
1012 p->skb2 = skb_clone(p->skb, p->allocation);
1013 } else {
1014 p->skb2 = skb_get(p->skb);
1016 * skb ownership may have been set when
1017 * delivered to a previous socket.
1019 skb_orphan(p->skb2);
1022 if (p->skb2 == NULL) {
1023 netlink_overrun(sk);
1024 /* Clone failed. Notify ALL listeners. */
1025 p->failure = 1;
1026 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1027 p->delivery_failure = 1;
1028 } else if (p->tx_filter && p->tx_filter(sk, p->skb2, p->tx_data)) {
1029 kfree_skb(p->skb2);
1030 p->skb2 = NULL;
1031 } else if (sk_filter(sk, p->skb2)) {
1032 kfree_skb(p->skb2);
1033 p->skb2 = NULL;
1034 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
1035 netlink_overrun(sk);
1036 if (nlk->flags & NETLINK_BROADCAST_SEND_ERROR)
1037 p->delivery_failure = 1;
1038 } else {
1039 p->congested |= val;
1040 p->delivered = 1;
1041 p->skb2 = NULL;
1043 sock_put(sk);
1045 out:
1046 return 0;
1049 int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 pid,
1050 u32 group, gfp_t allocation,
1051 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
1052 void *filter_data)
1054 struct net *net = sock_net(ssk);
1055 struct netlink_broadcast_data info;
1056 struct hlist_node *node;
1057 struct sock *sk;
1059 skb = netlink_trim(skb, allocation);
1061 info.exclude_sk = ssk;
1062 info.net = net;
1063 info.pid = pid;
1064 info.group = group;
1065 info.failure = 0;
1066 info.delivery_failure = 0;
1067 info.congested = 0;
1068 info.delivered = 0;
1069 info.allocation = allocation;
1070 info.skb = skb;
1071 info.skb2 = NULL;
1072 info.tx_filter = filter;
1073 info.tx_data = filter_data;
1075 /* While we sleep in clone, do not allow to change socket list */
1077 netlink_lock_table();
1079 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1080 do_one_broadcast(sk, &info);
1082 consume_skb(skb);
1084 netlink_unlock_table();
1086 if (info.delivery_failure) {
1087 kfree_skb(info.skb2);
1088 return -ENOBUFS;
1089 } else
1090 consume_skb(info.skb2);
1092 if (info.delivered) {
1093 if (info.congested && (allocation & __GFP_WAIT))
1094 yield();
1095 return 0;
1097 return -ESRCH;
1099 EXPORT_SYMBOL(netlink_broadcast_filtered);
1101 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
1102 u32 group, gfp_t allocation)
1104 return netlink_broadcast_filtered(ssk, skb, pid, group, allocation,
1105 NULL, NULL);
1107 EXPORT_SYMBOL(netlink_broadcast);
1109 struct netlink_set_err_data {
1110 struct sock *exclude_sk;
1111 u32 pid;
1112 u32 group;
1113 int code;
1116 static int do_one_set_err(struct sock *sk, struct netlink_set_err_data *p)
1118 struct netlink_sock *nlk = nlk_sk(sk);
1119 int ret = 0;
1121 if (sk == p->exclude_sk)
1122 goto out;
1124 if (!net_eq(sock_net(sk), sock_net(p->exclude_sk)))
1125 goto out;
1127 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
1128 !test_bit(p->group - 1, nlk->groups))
1129 goto out;
1131 if (p->code == ENOBUFS && nlk->flags & NETLINK_RECV_NO_ENOBUFS) {
1132 ret = 1;
1133 goto out;
1136 sk->sk_err = p->code;
1137 sk->sk_error_report(sk);
1138 out:
1139 return ret;
1143 * netlink_set_err - report error to broadcast listeners
1144 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1145 * @pid: the PID of a process that we want to skip (if any)
1146 * @groups: the broadcast group that will notice the error
1147 * @code: error code, must be negative (as usual in kernelspace)
1149 * This function returns the number of broadcast listeners that have set the
1150 * NETLINK_RECV_NO_ENOBUFS socket option.
1152 int netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
1154 struct netlink_set_err_data info;
1155 struct hlist_node *node;
1156 struct sock *sk;
1157 int ret = 0;
1159 info.exclude_sk = ssk;
1160 info.pid = pid;
1161 info.group = group;
1162 /* sk->sk_err wants a positive error value */
1163 info.code = -code;
1165 read_lock(&nl_table_lock);
1167 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1168 ret += do_one_set_err(sk, &info);
1170 read_unlock(&nl_table_lock);
1171 return ret;
1173 EXPORT_SYMBOL(netlink_set_err);
1175 /* must be called with netlink table grabbed */
1176 static void netlink_update_socket_mc(struct netlink_sock *nlk,
1177 unsigned int group,
1178 int is_new)
1180 int old, new = !!is_new, subscriptions;
1182 old = test_bit(group - 1, nlk->groups);
1183 subscriptions = nlk->subscriptions - old + new;
1184 if (new)
1185 __set_bit(group - 1, nlk->groups);
1186 else
1187 __clear_bit(group - 1, nlk->groups);
1188 netlink_update_subscriptions(&nlk->sk, subscriptions);
1189 netlink_update_listeners(&nlk->sk);
1192 static int netlink_setsockopt(struct socket *sock, int level, int optname,
1193 char __user *optval, unsigned int optlen)
1195 struct sock *sk = sock->sk;
1196 struct netlink_sock *nlk = nlk_sk(sk);
1197 unsigned int val = 0;
1198 int err;
1200 if (level != SOL_NETLINK)
1201 return -ENOPROTOOPT;
1203 if (optlen >= sizeof(int) &&
1204 get_user(val, (unsigned int __user *)optval))
1205 return -EFAULT;
1207 switch (optname) {
1208 case NETLINK_PKTINFO:
1209 if (val)
1210 nlk->flags |= NETLINK_RECV_PKTINFO;
1211 else
1212 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1213 err = 0;
1214 break;
1215 case NETLINK_ADD_MEMBERSHIP:
1216 case NETLINK_DROP_MEMBERSHIP: {
1217 if (!netlink_capable(sock, NL_NONROOT_RECV))
1218 return -EPERM;
1219 err = netlink_realloc_groups(sk);
1220 if (err)
1221 return err;
1222 if (!val || val - 1 >= nlk->ngroups)
1223 return -EINVAL;
1224 netlink_table_grab();
1225 netlink_update_socket_mc(nlk, val,
1226 optname == NETLINK_ADD_MEMBERSHIP);
1227 netlink_table_ungrab();
1228 err = 0;
1229 break;
1231 case NETLINK_BROADCAST_ERROR:
1232 if (val)
1233 nlk->flags |= NETLINK_BROADCAST_SEND_ERROR;
1234 else
1235 nlk->flags &= ~NETLINK_BROADCAST_SEND_ERROR;
1236 err = 0;
1237 break;
1238 case NETLINK_NO_ENOBUFS:
1239 if (val) {
1240 nlk->flags |= NETLINK_RECV_NO_ENOBUFS;
1241 clear_bit(0, &nlk->state);
1242 wake_up_interruptible(&nlk->wait);
1243 } else
1244 nlk->flags &= ~NETLINK_RECV_NO_ENOBUFS;
1245 err = 0;
1246 break;
1247 default:
1248 err = -ENOPROTOOPT;
1250 return err;
1253 static int netlink_getsockopt(struct socket *sock, int level, int optname,
1254 char __user *optval, int __user *optlen)
1256 struct sock *sk = sock->sk;
1257 struct netlink_sock *nlk = nlk_sk(sk);
1258 int len, val, err;
1260 if (level != SOL_NETLINK)
1261 return -ENOPROTOOPT;
1263 if (get_user(len, optlen))
1264 return -EFAULT;
1265 if (len < 0)
1266 return -EINVAL;
1268 switch (optname) {
1269 case NETLINK_PKTINFO:
1270 if (len < sizeof(int))
1271 return -EINVAL;
1272 len = sizeof(int);
1273 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
1274 if (put_user(len, optlen) ||
1275 put_user(val, optval))
1276 return -EFAULT;
1277 err = 0;
1278 break;
1279 case NETLINK_BROADCAST_ERROR:
1280 if (len < sizeof(int))
1281 return -EINVAL;
1282 len = sizeof(int);
1283 val = nlk->flags & NETLINK_BROADCAST_SEND_ERROR ? 1 : 0;
1284 if (put_user(len, optlen) ||
1285 put_user(val, optval))
1286 return -EFAULT;
1287 err = 0;
1288 break;
1289 case NETLINK_NO_ENOBUFS:
1290 if (len < sizeof(int))
1291 return -EINVAL;
1292 len = sizeof(int);
1293 val = nlk->flags & NETLINK_RECV_NO_ENOBUFS ? 1 : 0;
1294 if (put_user(len, optlen) ||
1295 put_user(val, optval))
1296 return -EFAULT;
1297 err = 0;
1298 break;
1299 default:
1300 err = -ENOPROTOOPT;
1302 return err;
1305 static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1307 struct nl_pktinfo info;
1309 info.group = NETLINK_CB(skb).dst_group;
1310 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1313 static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1314 struct msghdr *msg, size_t len)
1316 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1317 struct sock *sk = sock->sk;
1318 struct netlink_sock *nlk = nlk_sk(sk);
1319 struct sockaddr_nl *addr = msg->msg_name;
1320 u32 dst_pid;
1321 u32 dst_group;
1322 struct sk_buff *skb;
1323 int err;
1324 struct scm_cookie scm;
1326 if (msg->msg_flags&MSG_OOB)
1327 return -EOPNOTSUPP;
1329 if (NULL == siocb->scm)
1330 siocb->scm = &scm;
1332 err = scm_send(sock, msg, siocb->scm);
1333 if (err < 0)
1334 return err;
1336 if (msg->msg_namelen) {
1337 err = -EINVAL;
1338 if (addr->nl_family != AF_NETLINK)
1339 goto out;
1340 dst_pid = addr->nl_pid;
1341 dst_group = ffs(addr->nl_groups);
1342 err = -EPERM;
1343 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
1344 goto out;
1345 } else {
1346 dst_pid = nlk->dst_pid;
1347 dst_group = nlk->dst_group;
1350 if (!nlk->pid) {
1351 err = netlink_autobind(sock);
1352 if (err)
1353 goto out;
1356 err = -EMSGSIZE;
1357 if (len > sk->sk_sndbuf - 32)
1358 goto out;
1359 err = -ENOBUFS;
1360 skb = alloc_skb(len, GFP_KERNEL);
1361 if (skb == NULL)
1362 goto out;
1364 NETLINK_CB(skb).pid = nlk->pid;
1365 NETLINK_CB(skb).dst_group = dst_group;
1366 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1368 err = -EFAULT;
1369 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) {
1370 kfree_skb(skb);
1371 goto out;
1374 err = security_netlink_send(sk, skb);
1375 if (err) {
1376 kfree_skb(skb);
1377 goto out;
1380 if (dst_group) {
1381 atomic_inc(&skb->users);
1382 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
1384 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1386 out:
1387 scm_destroy(siocb->scm);
1388 return err;
1391 static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1392 struct msghdr *msg, size_t len,
1393 int flags)
1395 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1396 struct scm_cookie scm;
1397 struct sock *sk = sock->sk;
1398 struct netlink_sock *nlk = nlk_sk(sk);
1399 int noblock = flags&MSG_DONTWAIT;
1400 size_t copied;
1401 struct sk_buff *skb, *data_skb;
1402 int err, ret;
1404 if (flags&MSG_OOB)
1405 return -EOPNOTSUPP;
1407 copied = 0;
1409 skb = skb_recv_datagram(sk, flags, noblock, &err);
1410 if (skb == NULL)
1411 goto out;
1413 data_skb = skb;
1415 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1416 if (unlikely(skb_shinfo(skb)->frag_list)) {
1418 * If this skb has a frag_list, then here that means that we
1419 * will have to use the frag_list skb's data for compat tasks
1420 * and the regular skb's data for normal (non-compat) tasks.
1422 * If we need to send the compat skb, assign it to the
1423 * 'data_skb' variable so that it will be used below for data
1424 * copying. We keep 'skb' for everything else, including
1425 * freeing both later.
1427 if (flags & MSG_CMSG_COMPAT)
1428 data_skb = skb_shinfo(skb)->frag_list;
1430 #endif
1432 msg->msg_namelen = 0;
1434 copied = data_skb->len;
1435 if (len < copied) {
1436 msg->msg_flags |= MSG_TRUNC;
1437 copied = len;
1440 skb_reset_transport_header(data_skb);
1441 err = skb_copy_datagram_iovec(data_skb, 0, msg->msg_iov, copied);
1443 if (msg->msg_name) {
1444 struct sockaddr_nl *addr = (struct sockaddr_nl *)msg->msg_name;
1445 addr->nl_family = AF_NETLINK;
1446 addr->nl_pad = 0;
1447 addr->nl_pid = NETLINK_CB(skb).pid;
1448 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1449 msg->msg_namelen = sizeof(*addr);
1452 if (nlk->flags & NETLINK_RECV_PKTINFO)
1453 netlink_cmsg_recv_pktinfo(msg, skb);
1455 if (NULL == siocb->scm) {
1456 memset(&scm, 0, sizeof(scm));
1457 siocb->scm = &scm;
1459 siocb->scm->creds = *NETLINK_CREDS(skb);
1460 if (flags & MSG_TRUNC)
1461 copied = data_skb->len;
1463 skb_free_datagram(sk, skb);
1465 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
1466 ret = netlink_dump(sk);
1467 if (ret) {
1468 sk->sk_err = ret;
1469 sk->sk_error_report(sk);
1473 scm_recv(sock, msg, siocb->scm, flags);
1474 out:
1475 netlink_rcv_wake(sk);
1476 return err ? : copied;
1479 static void netlink_data_ready(struct sock *sk, int len)
1481 BUG();
1485 * We export these functions to other modules. They provide a
1486 * complete set of kernel non-blocking support for message
1487 * queueing.
1490 struct sock *
1491 netlink_kernel_create(struct net *net, int unit, unsigned int groups,
1492 void (*input)(struct sk_buff *skb),
1493 struct mutex *cb_mutex, struct module *module)
1495 struct socket *sock;
1496 struct sock *sk;
1497 struct netlink_sock *nlk;
1498 struct listeners *listeners = NULL;
1500 BUG_ON(!nl_table);
1502 if (unit < 0 || unit >= MAX_LINKS)
1503 return NULL;
1505 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1506 return NULL;
1509 * We have to just have a reference on the net from sk, but don't
1510 * get_net it. Besides, we cannot get and then put the net here.
1511 * So we create one inside init_net and the move it to net.
1514 if (__netlink_create(&init_net, sock, cb_mutex, unit) < 0)
1515 goto out_sock_release_nosk;
1517 sk = sock->sk;
1518 sk_change_net(sk, net);
1520 if (groups < 32)
1521 groups = 32;
1523 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
1524 if (!listeners)
1525 goto out_sock_release;
1527 sk->sk_data_ready = netlink_data_ready;
1528 if (input)
1529 nlk_sk(sk)->netlink_rcv = input;
1531 if (netlink_insert(sk, net, 0))
1532 goto out_sock_release;
1534 nlk = nlk_sk(sk);
1535 nlk->flags |= NETLINK_KERNEL_SOCKET;
1537 netlink_table_grab();
1538 if (!nl_table[unit].registered) {
1539 nl_table[unit].groups = groups;
1540 rcu_assign_pointer(nl_table[unit].listeners, listeners);
1541 nl_table[unit].cb_mutex = cb_mutex;
1542 nl_table[unit].module = module;
1543 nl_table[unit].registered = 1;
1544 } else {
1545 kfree(listeners);
1546 nl_table[unit].registered++;
1548 netlink_table_ungrab();
1549 return sk;
1551 out_sock_release:
1552 kfree(listeners);
1553 netlink_kernel_release(sk);
1554 return NULL;
1556 out_sock_release_nosk:
1557 sock_release(sock);
1558 return NULL;
1560 EXPORT_SYMBOL(netlink_kernel_create);
1563 void
1564 netlink_kernel_release(struct sock *sk)
1566 sk_release_kernel(sk);
1568 EXPORT_SYMBOL(netlink_kernel_release);
1570 int __netlink_change_ngroups(struct sock *sk, unsigned int groups)
1572 struct listeners *new, *old;
1573 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
1575 if (groups < 32)
1576 groups = 32;
1578 if (NLGRPSZ(tbl->groups) < NLGRPSZ(groups)) {
1579 new = kzalloc(sizeof(*new) + NLGRPSZ(groups), GFP_ATOMIC);
1580 if (!new)
1581 return -ENOMEM;
1582 old = rcu_dereference_protected(tbl->listeners, 1);
1583 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups));
1584 rcu_assign_pointer(tbl->listeners, new);
1586 kfree_rcu(old, rcu);
1588 tbl->groups = groups;
1590 return 0;
1594 * netlink_change_ngroups - change number of multicast groups
1596 * This changes the number of multicast groups that are available
1597 * on a certain netlink family. Note that it is not possible to
1598 * change the number of groups to below 32. Also note that it does
1599 * not implicitly call netlink_clear_multicast_users() when the
1600 * number of groups is reduced.
1602 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1603 * @groups: The new number of groups.
1605 int netlink_change_ngroups(struct sock *sk, unsigned int groups)
1607 int err;
1609 netlink_table_grab();
1610 err = __netlink_change_ngroups(sk, groups);
1611 netlink_table_ungrab();
1613 return err;
1616 void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1618 struct sock *sk;
1619 struct hlist_node *node;
1620 struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
1622 sk_for_each_bound(sk, node, &tbl->mc_list)
1623 netlink_update_socket_mc(nlk_sk(sk), group, 0);
1627 * netlink_clear_multicast_users - kick off multicast listeners
1629 * This function removes all listeners from the given group.
1630 * @ksk: The kernel netlink socket, as returned by
1631 * netlink_kernel_create().
1632 * @group: The multicast group to clear.
1634 void netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
1636 netlink_table_grab();
1637 __netlink_clear_multicast_users(ksk, group);
1638 netlink_table_ungrab();
1641 void netlink_set_nonroot(int protocol, unsigned int flags)
1643 if ((unsigned int)protocol < MAX_LINKS)
1644 nl_table[protocol].nl_nonroot = flags;
1646 EXPORT_SYMBOL(netlink_set_nonroot);
1648 static void netlink_destroy_callback(struct netlink_callback *cb)
1650 kfree_skb(cb->skb);
1651 kfree(cb);
1655 * It looks a bit ugly.
1656 * It would be better to create kernel thread.
1659 static int netlink_dump(struct sock *sk)
1661 struct netlink_sock *nlk = nlk_sk(sk);
1662 struct netlink_callback *cb;
1663 struct sk_buff *skb = NULL;
1664 struct nlmsghdr *nlh;
1665 int len, err = -ENOBUFS;
1666 int alloc_size;
1668 mutex_lock(nlk->cb_mutex);
1670 cb = nlk->cb;
1671 if (cb == NULL) {
1672 err = -EINVAL;
1673 goto errout_skb;
1676 alloc_size = max_t(int, cb->min_dump_alloc, NLMSG_GOODSIZE);
1678 skb = sock_rmalloc(sk, alloc_size, 0, GFP_KERNEL);
1679 if (!skb)
1680 goto errout_skb;
1682 len = cb->dump(skb, cb);
1684 if (len > 0) {
1685 mutex_unlock(nlk->cb_mutex);
1687 if (sk_filter(sk, skb))
1688 kfree_skb(skb);
1689 else
1690 __netlink_sendskb(sk, skb);
1691 return 0;
1694 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1695 if (!nlh)
1696 goto errout_skb;
1698 nl_dump_check_consistent(cb, nlh);
1700 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1702 if (sk_filter(sk, skb))
1703 kfree_skb(skb);
1704 else
1705 __netlink_sendskb(sk, skb);
1707 if (cb->done)
1708 cb->done(cb);
1709 nlk->cb = NULL;
1710 mutex_unlock(nlk->cb_mutex);
1712 netlink_destroy_callback(cb);
1713 return 0;
1715 errout_skb:
1716 mutex_unlock(nlk->cb_mutex);
1717 kfree_skb(skb);
1718 return err;
1721 int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1722 const struct nlmsghdr *nlh,
1723 int (*dump)(struct sk_buff *skb,
1724 struct netlink_callback *),
1725 int (*done)(struct netlink_callback *),
1726 u16 min_dump_alloc)
1728 struct netlink_callback *cb;
1729 struct sock *sk;
1730 struct netlink_sock *nlk;
1731 int ret;
1733 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
1734 if (cb == NULL)
1735 return -ENOBUFS;
1737 cb->dump = dump;
1738 cb->done = done;
1739 cb->nlh = nlh;
1740 cb->min_dump_alloc = min_dump_alloc;
1741 atomic_inc(&skb->users);
1742 cb->skb = skb;
1744 sk = netlink_lookup(sock_net(ssk), ssk->sk_protocol, NETLINK_CB(skb).pid);
1745 if (sk == NULL) {
1746 netlink_destroy_callback(cb);
1747 return -ECONNREFUSED;
1749 nlk = nlk_sk(sk);
1750 /* A dump is in progress... */
1751 mutex_lock(nlk->cb_mutex);
1752 if (nlk->cb) {
1753 mutex_unlock(nlk->cb_mutex);
1754 netlink_destroy_callback(cb);
1755 sock_put(sk);
1756 return -EBUSY;
1758 nlk->cb = cb;
1759 mutex_unlock(nlk->cb_mutex);
1761 ret = netlink_dump(sk);
1763 sock_put(sk);
1765 if (ret)
1766 return ret;
1768 /* We successfully started a dump, by returning -EINTR we
1769 * signal not to send ACK even if it was requested.
1771 return -EINTR;
1773 EXPORT_SYMBOL(netlink_dump_start);
1775 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1777 struct sk_buff *skb;
1778 struct nlmsghdr *rep;
1779 struct nlmsgerr *errmsg;
1780 size_t payload = sizeof(*errmsg);
1782 /* error messages get the original request appened */
1783 if (err)
1784 payload += nlmsg_len(nlh);
1786 skb = nlmsg_new(payload, GFP_KERNEL);
1787 if (!skb) {
1788 struct sock *sk;
1790 sk = netlink_lookup(sock_net(in_skb->sk),
1791 in_skb->sk->sk_protocol,
1792 NETLINK_CB(in_skb).pid);
1793 if (sk) {
1794 sk->sk_err = ENOBUFS;
1795 sk->sk_error_report(sk);
1796 sock_put(sk);
1798 return;
1801 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
1802 NLMSG_ERROR, payload, 0);
1803 errmsg = nlmsg_data(rep);
1804 errmsg->error = err;
1805 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
1806 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1808 EXPORT_SYMBOL(netlink_ack);
1810 int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
1811 struct nlmsghdr *))
1813 struct nlmsghdr *nlh;
1814 int err;
1816 while (skb->len >= nlmsg_total_size(0)) {
1817 int msglen;
1819 nlh = nlmsg_hdr(skb);
1820 err = 0;
1822 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
1823 return 0;
1825 /* Only requests are handled by the kernel */
1826 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1827 goto ack;
1829 /* Skip control messages */
1830 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
1831 goto ack;
1833 err = cb(skb, nlh);
1834 if (err == -EINTR)
1835 goto skip;
1837 ack:
1838 if (nlh->nlmsg_flags & NLM_F_ACK || err)
1839 netlink_ack(skb, nlh, err);
1841 skip:
1842 msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1843 if (msglen > skb->len)
1844 msglen = skb->len;
1845 skb_pull(skb, msglen);
1848 return 0;
1850 EXPORT_SYMBOL(netlink_rcv_skb);
1853 * nlmsg_notify - send a notification netlink message
1854 * @sk: netlink socket to use
1855 * @skb: notification message
1856 * @pid: destination netlink pid for reports or 0
1857 * @group: destination multicast group or 0
1858 * @report: 1 to report back, 0 to disable
1859 * @flags: allocation flags
1861 int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1862 unsigned int group, int report, gfp_t flags)
1864 int err = 0;
1866 if (group) {
1867 int exclude_pid = 0;
1869 if (report) {
1870 atomic_inc(&skb->users);
1871 exclude_pid = pid;
1874 /* errors reported via destination sk->sk_err, but propagate
1875 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1876 err = nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1879 if (report) {
1880 int err2;
1882 err2 = nlmsg_unicast(sk, skb, pid);
1883 if (!err || err == -ESRCH)
1884 err = err2;
1887 return err;
1889 EXPORT_SYMBOL(nlmsg_notify);
1891 #ifdef CONFIG_PROC_FS
1892 struct nl_seq_iter {
1893 struct seq_net_private p;
1894 int link;
1895 int hash_idx;
1898 static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1900 struct nl_seq_iter *iter = seq->private;
1901 int i, j;
1902 struct sock *s;
1903 struct hlist_node *node;
1904 loff_t off = 0;
1906 for (i = 0; i < MAX_LINKS; i++) {
1907 struct nl_pid_hash *hash = &nl_table[i].hash;
1909 for (j = 0; j <= hash->mask; j++) {
1910 sk_for_each(s, node, &hash->table[j]) {
1911 if (sock_net(s) != seq_file_net(seq))
1912 continue;
1913 if (off == pos) {
1914 iter->link = i;
1915 iter->hash_idx = j;
1916 return s;
1918 ++off;
1922 return NULL;
1925 static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1926 __acquires(nl_table_lock)
1928 read_lock(&nl_table_lock);
1929 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1932 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1934 struct sock *s;
1935 struct nl_seq_iter *iter;
1936 int i, j;
1938 ++*pos;
1940 if (v == SEQ_START_TOKEN)
1941 return netlink_seq_socket_idx(seq, 0);
1943 iter = seq->private;
1944 s = v;
1945 do {
1946 s = sk_next(s);
1947 } while (s && sock_net(s) != seq_file_net(seq));
1948 if (s)
1949 return s;
1951 i = iter->link;
1952 j = iter->hash_idx + 1;
1954 do {
1955 struct nl_pid_hash *hash = &nl_table[i].hash;
1957 for (; j <= hash->mask; j++) {
1958 s = sk_head(&hash->table[j]);
1959 while (s && sock_net(s) != seq_file_net(seq))
1960 s = sk_next(s);
1961 if (s) {
1962 iter->link = i;
1963 iter->hash_idx = j;
1964 return s;
1968 j = 0;
1969 } while (++i < MAX_LINKS);
1971 return NULL;
1974 static void netlink_seq_stop(struct seq_file *seq, void *v)
1975 __releases(nl_table_lock)
1977 read_unlock(&nl_table_lock);
1981 static int netlink_seq_show(struct seq_file *seq, void *v)
1983 if (v == SEQ_START_TOKEN)
1984 seq_puts(seq,
1985 "sk Eth Pid Groups "
1986 "Rmem Wmem Dump Locks Drops Inode\n");
1987 else {
1988 struct sock *s = v;
1989 struct netlink_sock *nlk = nlk_sk(s);
1991 seq_printf(seq, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
1993 s->sk_protocol,
1994 nlk->pid,
1995 nlk->groups ? (u32)nlk->groups[0] : 0,
1996 sk_rmem_alloc_get(s),
1997 sk_wmem_alloc_get(s),
1998 nlk->cb,
1999 atomic_read(&s->sk_refcnt),
2000 atomic_read(&s->sk_drops),
2001 sock_i_ino(s)
2005 return 0;
2008 static const struct seq_operations netlink_seq_ops = {
2009 .start = netlink_seq_start,
2010 .next = netlink_seq_next,
2011 .stop = netlink_seq_stop,
2012 .show = netlink_seq_show,
2016 static int netlink_seq_open(struct inode *inode, struct file *file)
2018 return seq_open_net(inode, file, &netlink_seq_ops,
2019 sizeof(struct nl_seq_iter));
2022 static const struct file_operations netlink_seq_fops = {
2023 .owner = THIS_MODULE,
2024 .open = netlink_seq_open,
2025 .read = seq_read,
2026 .llseek = seq_lseek,
2027 .release = seq_release_net,
2030 #endif
2032 int netlink_register_notifier(struct notifier_block *nb)
2034 return atomic_notifier_chain_register(&netlink_chain, nb);
2036 EXPORT_SYMBOL(netlink_register_notifier);
2038 int netlink_unregister_notifier(struct notifier_block *nb)
2040 return atomic_notifier_chain_unregister(&netlink_chain, nb);
2042 EXPORT_SYMBOL(netlink_unregister_notifier);
2044 static const struct proto_ops netlink_ops = {
2045 .family = PF_NETLINK,
2046 .owner = THIS_MODULE,
2047 .release = netlink_release,
2048 .bind = netlink_bind,
2049 .connect = netlink_connect,
2050 .socketpair = sock_no_socketpair,
2051 .accept = sock_no_accept,
2052 .getname = netlink_getname,
2053 .poll = datagram_poll,
2054 .ioctl = sock_no_ioctl,
2055 .listen = sock_no_listen,
2056 .shutdown = sock_no_shutdown,
2057 .setsockopt = netlink_setsockopt,
2058 .getsockopt = netlink_getsockopt,
2059 .sendmsg = netlink_sendmsg,
2060 .recvmsg = netlink_recvmsg,
2061 .mmap = sock_no_mmap,
2062 .sendpage = sock_no_sendpage,
2065 static const struct net_proto_family netlink_family_ops = {
2066 .family = PF_NETLINK,
2067 .create = netlink_create,
2068 .owner = THIS_MODULE, /* for consistency 8) */
2071 static int __net_init netlink_net_init(struct net *net)
2073 #ifdef CONFIG_PROC_FS
2074 if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops))
2075 return -ENOMEM;
2076 #endif
2077 return 0;
2080 static void __net_exit netlink_net_exit(struct net *net)
2082 #ifdef CONFIG_PROC_FS
2083 proc_net_remove(net, "netlink");
2084 #endif
2087 static void __init netlink_add_usersock_entry(void)
2089 struct listeners *listeners;
2090 int groups = 32;
2092 listeners = kzalloc(sizeof(*listeners) + NLGRPSZ(groups), GFP_KERNEL);
2093 if (!listeners)
2094 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
2096 netlink_table_grab();
2098 nl_table[NETLINK_USERSOCK].groups = groups;
2099 rcu_assign_pointer(nl_table[NETLINK_USERSOCK].listeners, listeners);
2100 nl_table[NETLINK_USERSOCK].module = THIS_MODULE;
2101 nl_table[NETLINK_USERSOCK].registered = 1;
2103 netlink_table_ungrab();
2106 static struct pernet_operations __net_initdata netlink_net_ops = {
2107 .init = netlink_net_init,
2108 .exit = netlink_net_exit,
2111 static int __init netlink_proto_init(void)
2113 struct sk_buff *dummy_skb;
2114 int i;
2115 unsigned long limit;
2116 unsigned int order;
2117 int err = proto_register(&netlink_proto, 0);
2119 if (err != 0)
2120 goto out;
2122 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
2124 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
2125 if (!nl_table)
2126 goto panic;
2128 if (totalram_pages >= (128 * 1024))
2129 limit = totalram_pages >> (21 - PAGE_SHIFT);
2130 else
2131 limit = totalram_pages >> (23 - PAGE_SHIFT);
2133 order = get_bitmask_order(limit) - 1 + PAGE_SHIFT;
2134 limit = (1UL << order) / sizeof(struct hlist_head);
2135 order = get_bitmask_order(min(limit, (unsigned long)UINT_MAX)) - 1;
2137 for (i = 0; i < MAX_LINKS; i++) {
2138 struct nl_pid_hash *hash = &nl_table[i].hash;
2140 hash->table = nl_pid_hash_zalloc(1 * sizeof(*hash->table));
2141 if (!hash->table) {
2142 while (i-- > 0)
2143 nl_pid_hash_free(nl_table[i].hash.table,
2144 1 * sizeof(*hash->table));
2145 kfree(nl_table);
2146 goto panic;
2148 hash->max_shift = order;
2149 hash->shift = 0;
2150 hash->mask = 0;
2151 hash->rehash_time = jiffies;
2154 netlink_add_usersock_entry();
2156 sock_register(&netlink_family_ops);
2157 register_pernet_subsys(&netlink_net_ops);
2158 /* The netlink device handler may be needed early. */
2159 rtnetlink_init();
2160 out:
2161 return err;
2162 panic:
2163 panic("netlink_init: Cannot allocate nl_table\n");
2166 core_initcall(netlink_proto_init);