2 * NETLINK Kernel-user communication protocol.
4 * Authors: Alan Cox <alan@redhat.com>
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>
36 #include <linux/fcntl.h>
37 #include <linux/termios.h>
38 #include <linux/sockios.h>
39 #include <linux/net.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>
55 #include <linux/types.h>
56 #include <linux/audit.h>
57 #include <linux/selinux.h>
58 #include <linux/mutex.h>
62 #include <net/netlink.h>
64 #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
67 /* struct sock has to be the first member of netlink_sock */
75 unsigned long *groups;
77 wait_queue_head_t wait;
78 struct netlink_callback *cb;
79 struct mutex *cb_mutex;
80 struct mutex cb_def_mutex;
81 void (*data_ready)(struct sock *sk, int bytes);
82 struct module *module;
85 #define NETLINK_KERNEL_SOCKET 0x1
86 #define NETLINK_RECV_PKTINFO 0x2
88 static inline struct netlink_sock *nlk_sk(struct sock *sk)
90 return (struct netlink_sock *)sk;
94 struct hlist_head *table;
95 unsigned long rehash_time;
100 unsigned int entries;
101 unsigned int max_shift;
106 struct netlink_table {
107 struct nl_pid_hash hash;
108 struct hlist_head mc_list;
109 unsigned long *listeners;
110 unsigned int nl_nonroot;
112 struct mutex *cb_mutex;
113 struct module *module;
117 static struct netlink_table *nl_table;
119 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait);
121 static int netlink_dump(struct sock *sk);
122 static void netlink_destroy_callback(struct netlink_callback *cb);
123 static void netlink_queue_skip(struct nlmsghdr *nlh, struct sk_buff *skb);
125 static DEFINE_RWLOCK(nl_table_lock);
126 static atomic_t nl_table_users = ATOMIC_INIT(0);
128 static ATOMIC_NOTIFIER_HEAD(netlink_chain);
130 static u32 netlink_group_mask(u32 group)
132 return group ? 1 << (group - 1) : 0;
135 static struct hlist_head *nl_pid_hashfn(struct nl_pid_hash *hash, u32 pid)
137 return &hash->table[jhash_1word(pid, hash->rnd) & hash->mask];
140 static void netlink_sock_destruct(struct sock *sk)
142 struct netlink_sock *nlk = nlk_sk(sk);
146 nlk->cb->done(nlk->cb);
147 netlink_destroy_callback(nlk->cb);
150 skb_queue_purge(&sk->sk_receive_queue);
152 if (!sock_flag(sk, SOCK_DEAD)) {
153 printk("Freeing alive netlink socket %p\n", sk);
156 BUG_TRAP(!atomic_read(&sk->sk_rmem_alloc));
157 BUG_TRAP(!atomic_read(&sk->sk_wmem_alloc));
158 BUG_TRAP(!nlk_sk(sk)->groups);
161 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on SMP.
162 * Look, when several writers sleep and reader wakes them up, all but one
163 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
164 * this, _but_ remember, it adds useless work on UP machines.
167 static void netlink_table_grab(void)
169 write_lock_irq(&nl_table_lock);
171 if (atomic_read(&nl_table_users)) {
172 DECLARE_WAITQUEUE(wait, current);
174 add_wait_queue_exclusive(&nl_table_wait, &wait);
176 set_current_state(TASK_UNINTERRUPTIBLE);
177 if (atomic_read(&nl_table_users) == 0)
179 write_unlock_irq(&nl_table_lock);
181 write_lock_irq(&nl_table_lock);
184 __set_current_state(TASK_RUNNING);
185 remove_wait_queue(&nl_table_wait, &wait);
189 static __inline__ void netlink_table_ungrab(void)
191 write_unlock_irq(&nl_table_lock);
192 wake_up(&nl_table_wait);
195 static __inline__ void
196 netlink_lock_table(void)
198 /* read_lock() synchronizes us to netlink_table_grab */
200 read_lock(&nl_table_lock);
201 atomic_inc(&nl_table_users);
202 read_unlock(&nl_table_lock);
205 static __inline__ void
206 netlink_unlock_table(void)
208 if (atomic_dec_and_test(&nl_table_users))
209 wake_up(&nl_table_wait);
212 static __inline__ struct sock *netlink_lookup(int protocol, u32 pid)
214 struct nl_pid_hash *hash = &nl_table[protocol].hash;
215 struct hlist_head *head;
217 struct hlist_node *node;
219 read_lock(&nl_table_lock);
220 head = nl_pid_hashfn(hash, pid);
221 sk_for_each(sk, node, head) {
222 if (nlk_sk(sk)->pid == pid) {
229 read_unlock(&nl_table_lock);
233 static inline struct hlist_head *nl_pid_hash_alloc(size_t size)
235 if (size <= PAGE_SIZE)
236 return kmalloc(size, GFP_ATOMIC);
238 return (struct hlist_head *)
239 __get_free_pages(GFP_ATOMIC, get_order(size));
242 static inline void nl_pid_hash_free(struct hlist_head *table, size_t size)
244 if (size <= PAGE_SIZE)
247 free_pages((unsigned long)table, get_order(size));
250 static int nl_pid_hash_rehash(struct nl_pid_hash *hash, int grow)
252 unsigned int omask, mask, shift;
254 struct hlist_head *otable, *table;
257 omask = mask = hash->mask;
258 osize = size = (mask + 1) * sizeof(*table);
262 if (++shift > hash->max_shift)
268 table = nl_pid_hash_alloc(size);
272 memset(table, 0, size);
273 otable = hash->table;
277 get_random_bytes(&hash->rnd, sizeof(hash->rnd));
279 for (i = 0; i <= omask; i++) {
281 struct hlist_node *node, *tmp;
283 sk_for_each_safe(sk, node, tmp, &otable[i])
284 __sk_add_node(sk, nl_pid_hashfn(hash, nlk_sk(sk)->pid));
287 nl_pid_hash_free(otable, osize);
288 hash->rehash_time = jiffies + 10 * 60 * HZ;
292 static inline int nl_pid_hash_dilute(struct nl_pid_hash *hash, int len)
294 int avg = hash->entries >> hash->shift;
296 if (unlikely(avg > 1) && nl_pid_hash_rehash(hash, 1))
299 if (unlikely(len > avg) && time_after(jiffies, hash->rehash_time)) {
300 nl_pid_hash_rehash(hash, 0);
307 static const struct proto_ops netlink_ops;
310 netlink_update_listeners(struct sock *sk)
312 struct netlink_table *tbl = &nl_table[sk->sk_protocol];
313 struct hlist_node *node;
317 for (i = 0; i < NLGRPSZ(tbl->groups)/sizeof(unsigned long); i++) {
319 sk_for_each_bound(sk, node, &tbl->mc_list)
320 mask |= nlk_sk(sk)->groups[i];
321 tbl->listeners[i] = mask;
323 /* this function is only called with the netlink table "grabbed", which
324 * makes sure updates are visible before bind or setsockopt return. */
327 static int netlink_insert(struct sock *sk, u32 pid)
329 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
330 struct hlist_head *head;
331 int err = -EADDRINUSE;
333 struct hlist_node *node;
336 netlink_table_grab();
337 head = nl_pid_hashfn(hash, pid);
339 sk_for_each(osk, node, head) {
340 if (nlk_sk(osk)->pid == pid)
352 if (BITS_PER_LONG > 32 && unlikely(hash->entries >= UINT_MAX))
355 if (len && nl_pid_hash_dilute(hash, len))
356 head = nl_pid_hashfn(hash, pid);
358 nlk_sk(sk)->pid = pid;
359 sk_add_node(sk, head);
363 netlink_table_ungrab();
367 static void netlink_remove(struct sock *sk)
369 netlink_table_grab();
370 if (sk_del_node_init(sk))
371 nl_table[sk->sk_protocol].hash.entries--;
372 if (nlk_sk(sk)->subscriptions)
373 __sk_del_bind_node(sk);
374 netlink_table_ungrab();
377 static struct proto netlink_proto = {
379 .owner = THIS_MODULE,
380 .obj_size = sizeof(struct netlink_sock),
383 static int __netlink_create(struct socket *sock, struct mutex *cb_mutex,
387 struct netlink_sock *nlk;
389 sock->ops = &netlink_ops;
391 sk = sk_alloc(PF_NETLINK, GFP_KERNEL, &netlink_proto, 1);
395 sock_init_data(sock, sk);
399 nlk->cb_mutex = cb_mutex;
401 nlk->cb_mutex = &nlk->cb_def_mutex;
402 mutex_init(nlk->cb_mutex);
404 init_waitqueue_head(&nlk->wait);
406 sk->sk_destruct = netlink_sock_destruct;
407 sk->sk_protocol = protocol;
411 static int netlink_create(struct socket *sock, int protocol)
413 struct module *module = NULL;
414 struct mutex *cb_mutex;
415 struct netlink_sock *nlk;
418 sock->state = SS_UNCONNECTED;
420 if (sock->type != SOCK_RAW && sock->type != SOCK_DGRAM)
421 return -ESOCKTNOSUPPORT;
423 if (protocol<0 || protocol >= MAX_LINKS)
424 return -EPROTONOSUPPORT;
426 netlink_lock_table();
428 if (!nl_table[protocol].registered) {
429 netlink_unlock_table();
430 request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
431 netlink_lock_table();
434 if (nl_table[protocol].registered &&
435 try_module_get(nl_table[protocol].module))
436 module = nl_table[protocol].module;
437 cb_mutex = nl_table[protocol].cb_mutex;
438 netlink_unlock_table();
440 if ((err = __netlink_create(sock, cb_mutex, protocol)) < 0)
443 nlk = nlk_sk(sock->sk);
444 nlk->module = module;
453 static int netlink_release(struct socket *sock)
455 struct sock *sk = sock->sk;
456 struct netlink_sock *nlk;
466 * OK. Socket is unlinked, any packets that arrive now
471 wake_up_interruptible_all(&nlk->wait);
473 skb_queue_purge(&sk->sk_write_queue);
475 if (nlk->pid && !nlk->subscriptions) {
476 struct netlink_notify n = {
477 .protocol = sk->sk_protocol,
480 atomic_notifier_call_chain(&netlink_chain,
481 NETLINK_URELEASE, &n);
484 module_put(nlk->module);
486 netlink_table_grab();
487 if (nlk->flags & NETLINK_KERNEL_SOCKET) {
488 kfree(nl_table[sk->sk_protocol].listeners);
489 nl_table[sk->sk_protocol].module = NULL;
490 nl_table[sk->sk_protocol].registered = 0;
491 } else if (nlk->subscriptions)
492 netlink_update_listeners(sk);
493 netlink_table_ungrab();
502 static int netlink_autobind(struct socket *sock)
504 struct sock *sk = sock->sk;
505 struct nl_pid_hash *hash = &nl_table[sk->sk_protocol].hash;
506 struct hlist_head *head;
508 struct hlist_node *node;
509 s32 pid = current->tgid;
511 static s32 rover = -4097;
515 netlink_table_grab();
516 head = nl_pid_hashfn(hash, pid);
517 sk_for_each(osk, node, head) {
518 if (nlk_sk(osk)->pid == pid) {
519 /* Bind collision, search negative pid values. */
523 netlink_table_ungrab();
527 netlink_table_ungrab();
529 err = netlink_insert(sk, pid);
530 if (err == -EADDRINUSE)
533 /* If 2 threads race to autobind, that is fine. */
540 static inline int netlink_capable(struct socket *sock, unsigned int flag)
542 return (nl_table[sock->sk->sk_protocol].nl_nonroot & flag) ||
543 capable(CAP_NET_ADMIN);
547 netlink_update_subscriptions(struct sock *sk, unsigned int subscriptions)
549 struct netlink_sock *nlk = nlk_sk(sk);
551 if (nlk->subscriptions && !subscriptions)
552 __sk_del_bind_node(sk);
553 else if (!nlk->subscriptions && subscriptions)
554 sk_add_bind_node(sk, &nl_table[sk->sk_protocol].mc_list);
555 nlk->subscriptions = subscriptions;
558 static int netlink_alloc_groups(struct sock *sk)
560 struct netlink_sock *nlk = nlk_sk(sk);
564 netlink_lock_table();
565 groups = nl_table[sk->sk_protocol].groups;
566 if (!nl_table[sk->sk_protocol].registered)
568 netlink_unlock_table();
573 nlk->groups = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
574 if (nlk->groups == NULL)
576 nlk->ngroups = groups;
580 static int netlink_bind(struct socket *sock, struct sockaddr *addr, int addr_len)
582 struct sock *sk = sock->sk;
583 struct netlink_sock *nlk = nlk_sk(sk);
584 struct sockaddr_nl *nladdr = (struct sockaddr_nl *)addr;
587 if (nladdr->nl_family != AF_NETLINK)
590 /* Only superuser is allowed to listen multicasts */
591 if (nladdr->nl_groups) {
592 if (!netlink_capable(sock, NL_NONROOT_RECV))
594 if (nlk->groups == NULL) {
595 err = netlink_alloc_groups(sk);
602 if (nladdr->nl_pid != nlk->pid)
605 err = nladdr->nl_pid ?
606 netlink_insert(sk, nladdr->nl_pid) :
607 netlink_autobind(sock);
612 if (!nladdr->nl_groups && (nlk->groups == NULL || !(u32)nlk->groups[0]))
615 netlink_table_grab();
616 netlink_update_subscriptions(sk, nlk->subscriptions +
617 hweight32(nladdr->nl_groups) -
618 hweight32(nlk->groups[0]));
619 nlk->groups[0] = (nlk->groups[0] & ~0xffffffffUL) | nladdr->nl_groups;
620 netlink_update_listeners(sk);
621 netlink_table_ungrab();
626 static int netlink_connect(struct socket *sock, struct sockaddr *addr,
630 struct sock *sk = sock->sk;
631 struct netlink_sock *nlk = nlk_sk(sk);
632 struct sockaddr_nl *nladdr=(struct sockaddr_nl*)addr;
634 if (addr->sa_family == AF_UNSPEC) {
635 sk->sk_state = NETLINK_UNCONNECTED;
640 if (addr->sa_family != AF_NETLINK)
643 /* Only superuser is allowed to send multicasts */
644 if (nladdr->nl_groups && !netlink_capable(sock, NL_NONROOT_SEND))
648 err = netlink_autobind(sock);
651 sk->sk_state = NETLINK_CONNECTED;
652 nlk->dst_pid = nladdr->nl_pid;
653 nlk->dst_group = ffs(nladdr->nl_groups);
659 static int netlink_getname(struct socket *sock, struct sockaddr *addr, int *addr_len, int peer)
661 struct sock *sk = sock->sk;
662 struct netlink_sock *nlk = nlk_sk(sk);
663 struct sockaddr_nl *nladdr=(struct sockaddr_nl *)addr;
665 nladdr->nl_family = AF_NETLINK;
667 *addr_len = sizeof(*nladdr);
670 nladdr->nl_pid = nlk->dst_pid;
671 nladdr->nl_groups = netlink_group_mask(nlk->dst_group);
673 nladdr->nl_pid = nlk->pid;
674 nladdr->nl_groups = nlk->groups ? nlk->groups[0] : 0;
679 static void netlink_overrun(struct sock *sk)
681 if (!test_and_set_bit(0, &nlk_sk(sk)->state)) {
682 sk->sk_err = ENOBUFS;
683 sk->sk_error_report(sk);
687 static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
689 int protocol = ssk->sk_protocol;
691 struct netlink_sock *nlk;
693 sock = netlink_lookup(protocol, pid);
695 return ERR_PTR(-ECONNREFUSED);
697 /* Don't bother queuing skb if kernel socket has no input function */
699 if ((nlk->pid == 0 && !nlk->data_ready) ||
700 (sock->sk_state == NETLINK_CONNECTED &&
701 nlk->dst_pid != nlk_sk(ssk)->pid)) {
703 return ERR_PTR(-ECONNREFUSED);
708 struct sock *netlink_getsockbyfilp(struct file *filp)
710 struct inode *inode = filp->f_path.dentry->d_inode;
713 if (!S_ISSOCK(inode->i_mode))
714 return ERR_PTR(-ENOTSOCK);
716 sock = SOCKET_I(inode)->sk;
717 if (sock->sk_family != AF_NETLINK)
718 return ERR_PTR(-EINVAL);
725 * Attach a skb to a netlink socket.
726 * The caller must hold a reference to the destination socket. On error, the
727 * reference is dropped. The skb is not send to the destination, just all
728 * all error checks are performed and memory in the queue is reserved.
730 * < 0: error. skb freed, reference to sock dropped.
732 * 1: repeat lookup - reference dropped while waiting for socket memory.
734 int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
735 long timeo, struct sock *ssk)
737 struct netlink_sock *nlk;
741 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
742 test_bit(0, &nlk->state)) {
743 DECLARE_WAITQUEUE(wait, current);
745 if (!ssk || nlk_sk(ssk)->pid == 0)
752 __set_current_state(TASK_INTERRUPTIBLE);
753 add_wait_queue(&nlk->wait, &wait);
755 if ((atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
756 test_bit(0, &nlk->state)) &&
757 !sock_flag(sk, SOCK_DEAD))
758 timeo = schedule_timeout(timeo);
760 __set_current_state(TASK_RUNNING);
761 remove_wait_queue(&nlk->wait, &wait);
764 if (signal_pending(current)) {
766 return sock_intr_errno(timeo);
770 skb_set_owner_r(skb, sk);
774 int netlink_sendskb(struct sock *sk, struct sk_buff *skb, int protocol)
778 skb_queue_tail(&sk->sk_receive_queue, skb);
779 sk->sk_data_ready(sk, len);
784 void netlink_detachskb(struct sock *sk, struct sk_buff *skb)
790 static inline struct sk_buff *netlink_trim(struct sk_buff *skb,
797 delta = skb->end - skb->tail;
798 if (delta * 2 < skb->truesize)
801 if (skb_shared(skb)) {
802 struct sk_buff *nskb = skb_clone(skb, allocation);
809 if (!pskb_expand_head(skb, 0, -delta, allocation))
810 skb->truesize -= delta;
815 int netlink_unicast(struct sock *ssk, struct sk_buff *skb, u32 pid, int nonblock)
821 skb = netlink_trim(skb, gfp_any());
823 timeo = sock_sndtimeo(ssk, nonblock);
825 sk = netlink_getsockbypid(ssk, pid);
830 err = netlink_attachskb(sk, skb, nonblock, timeo, ssk);
836 return netlink_sendskb(sk, skb, ssk->sk_protocol);
839 int netlink_has_listeners(struct sock *sk, unsigned int group)
843 BUG_ON(!(nlk_sk(sk)->flags & NETLINK_KERNEL_SOCKET));
844 if (group - 1 < nl_table[sk->sk_protocol].groups)
845 res = test_bit(group - 1, nl_table[sk->sk_protocol].listeners);
848 EXPORT_SYMBOL_GPL(netlink_has_listeners);
850 static __inline__ int netlink_broadcast_deliver(struct sock *sk, struct sk_buff *skb)
852 struct netlink_sock *nlk = nlk_sk(sk);
854 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
855 !test_bit(0, &nlk->state)) {
856 skb_set_owner_r(skb, sk);
857 skb_queue_tail(&sk->sk_receive_queue, skb);
858 sk->sk_data_ready(sk, skb->len);
859 return atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf;
864 struct netlink_broadcast_data {
865 struct sock *exclude_sk;
872 struct sk_buff *skb, *skb2;
875 static inline int do_one_broadcast(struct sock *sk,
876 struct netlink_broadcast_data *p)
878 struct netlink_sock *nlk = nlk_sk(sk);
881 if (p->exclude_sk == sk)
884 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
885 !test_bit(p->group - 1, nlk->groups))
894 if (p->skb2 == NULL) {
895 if (skb_shared(p->skb)) {
896 p->skb2 = skb_clone(p->skb, p->allocation);
898 p->skb2 = skb_get(p->skb);
900 * skb ownership may have been set when
901 * delivered to a previous socket.
906 if (p->skb2 == NULL) {
908 /* Clone failed. Notify ALL listeners. */
910 } else if ((val = netlink_broadcast_deliver(sk, p->skb2)) < 0) {
923 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,
924 u32 group, gfp_t allocation)
926 struct netlink_broadcast_data info;
927 struct hlist_node *node;
930 skb = netlink_trim(skb, allocation);
932 info.exclude_sk = ssk;
938 info.allocation = allocation;
942 /* While we sleep in clone, do not allow to change socket list */
944 netlink_lock_table();
946 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
947 do_one_broadcast(sk, &info);
951 netlink_unlock_table();
954 kfree_skb(info.skb2);
956 if (info.delivered) {
957 if (info.congested && (allocation & __GFP_WAIT))
966 struct netlink_set_err_data {
967 struct sock *exclude_sk;
973 static inline int do_one_set_err(struct sock *sk,
974 struct netlink_set_err_data *p)
976 struct netlink_sock *nlk = nlk_sk(sk);
978 if (sk == p->exclude_sk)
981 if (nlk->pid == p->pid || p->group - 1 >= nlk->ngroups ||
982 !test_bit(p->group - 1, nlk->groups))
985 sk->sk_err = p->code;
986 sk->sk_error_report(sk);
991 void netlink_set_err(struct sock *ssk, u32 pid, u32 group, int code)
993 struct netlink_set_err_data info;
994 struct hlist_node *node;
997 info.exclude_sk = ssk;
1002 read_lock(&nl_table_lock);
1004 sk_for_each_bound(sk, node, &nl_table[ssk->sk_protocol].mc_list)
1005 do_one_set_err(sk, &info);
1007 read_unlock(&nl_table_lock);
1010 static int netlink_setsockopt(struct socket *sock, int level, int optname,
1011 char __user *optval, int optlen)
1013 struct sock *sk = sock->sk;
1014 struct netlink_sock *nlk = nlk_sk(sk);
1017 if (level != SOL_NETLINK)
1018 return -ENOPROTOOPT;
1020 if (optlen >= sizeof(int) &&
1021 get_user(val, (int __user *)optval))
1025 case NETLINK_PKTINFO:
1027 nlk->flags |= NETLINK_RECV_PKTINFO;
1029 nlk->flags &= ~NETLINK_RECV_PKTINFO;
1032 case NETLINK_ADD_MEMBERSHIP:
1033 case NETLINK_DROP_MEMBERSHIP: {
1034 unsigned int subscriptions;
1035 int old, new = optname == NETLINK_ADD_MEMBERSHIP ? 1 : 0;
1037 if (!netlink_capable(sock, NL_NONROOT_RECV))
1039 if (nlk->groups == NULL) {
1040 err = netlink_alloc_groups(sk);
1044 if (!val || val - 1 >= nlk->ngroups)
1046 netlink_table_grab();
1047 old = test_bit(val - 1, nlk->groups);
1048 subscriptions = nlk->subscriptions - old + new;
1050 __set_bit(val - 1, nlk->groups);
1052 __clear_bit(val - 1, nlk->groups);
1053 netlink_update_subscriptions(sk, subscriptions);
1054 netlink_update_listeners(sk);
1055 netlink_table_ungrab();
1065 static int netlink_getsockopt(struct socket *sock, int level, int optname,
1066 char __user *optval, int __user *optlen)
1068 struct sock *sk = sock->sk;
1069 struct netlink_sock *nlk = nlk_sk(sk);
1072 if (level != SOL_NETLINK)
1073 return -ENOPROTOOPT;
1075 if (get_user(len, optlen))
1081 case NETLINK_PKTINFO:
1082 if (len < sizeof(int))
1085 val = nlk->flags & NETLINK_RECV_PKTINFO ? 1 : 0;
1086 if (put_user(len, optlen) ||
1087 put_user(val, optval))
1097 static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
1099 struct nl_pktinfo info;
1101 info.group = NETLINK_CB(skb).dst_group;
1102 put_cmsg(msg, SOL_NETLINK, NETLINK_PKTINFO, sizeof(info), &info);
1105 static inline void netlink_rcv_wake(struct sock *sk)
1107 struct netlink_sock *nlk = nlk_sk(sk);
1109 if (skb_queue_empty(&sk->sk_receive_queue))
1110 clear_bit(0, &nlk->state);
1111 if (!test_bit(0, &nlk->state))
1112 wake_up_interruptible(&nlk->wait);
1115 static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
1116 struct msghdr *msg, size_t len)
1118 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1119 struct sock *sk = sock->sk;
1120 struct netlink_sock *nlk = nlk_sk(sk);
1121 struct sockaddr_nl *addr=msg->msg_name;
1124 struct sk_buff *skb;
1126 struct scm_cookie scm;
1128 if (msg->msg_flags&MSG_OOB)
1131 if (NULL == siocb->scm)
1133 err = scm_send(sock, msg, siocb->scm);
1137 if (msg->msg_namelen) {
1138 if (addr->nl_family != AF_NETLINK)
1140 dst_pid = addr->nl_pid;
1141 dst_group = ffs(addr->nl_groups);
1142 if (dst_group && !netlink_capable(sock, NL_NONROOT_SEND))
1145 dst_pid = nlk->dst_pid;
1146 dst_group = nlk->dst_group;
1150 err = netlink_autobind(sock);
1156 if (len > sk->sk_sndbuf - 32)
1159 skb = alloc_skb(len, GFP_KERNEL);
1163 NETLINK_CB(skb).pid = nlk->pid;
1164 NETLINK_CB(skb).dst_group = dst_group;
1165 NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);
1166 selinux_get_task_sid(current, &(NETLINK_CB(skb).sid));
1167 memcpy(NETLINK_CREDS(skb), &siocb->scm->creds, sizeof(struct ucred));
1169 /* What can I do? Netlink is asynchronous, so that
1170 we will have to save current capabilities to
1171 check them, when this message will be delivered
1172 to corresponding kernel module. --ANK (980802)
1176 if (memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len)) {
1181 err = security_netlink_send(sk, skb);
1188 atomic_inc(&skb->users);
1189 netlink_broadcast(sk, skb, dst_pid, dst_group, GFP_KERNEL);
1191 err = netlink_unicast(sk, skb, dst_pid, msg->msg_flags&MSG_DONTWAIT);
1197 static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
1198 struct msghdr *msg, size_t len,
1201 struct sock_iocb *siocb = kiocb_to_siocb(kiocb);
1202 struct scm_cookie scm;
1203 struct sock *sk = sock->sk;
1204 struct netlink_sock *nlk = nlk_sk(sk);
1205 int noblock = flags&MSG_DONTWAIT;
1207 struct sk_buff *skb;
1215 skb = skb_recv_datagram(sk,flags,noblock,&err);
1219 msg->msg_namelen = 0;
1223 msg->msg_flags |= MSG_TRUNC;
1227 skb_reset_transport_header(skb);
1228 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1230 if (msg->msg_name) {
1231 struct sockaddr_nl *addr = (struct sockaddr_nl*)msg->msg_name;
1232 addr->nl_family = AF_NETLINK;
1234 addr->nl_pid = NETLINK_CB(skb).pid;
1235 addr->nl_groups = netlink_group_mask(NETLINK_CB(skb).dst_group);
1236 msg->msg_namelen = sizeof(*addr);
1239 if (nlk->flags & NETLINK_RECV_PKTINFO)
1240 netlink_cmsg_recv_pktinfo(msg, skb);
1242 if (NULL == siocb->scm) {
1243 memset(&scm, 0, sizeof(scm));
1246 siocb->scm->creds = *NETLINK_CREDS(skb);
1247 if (flags & MSG_TRUNC)
1249 skb_free_datagram(sk, skb);
1251 if (nlk->cb && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2)
1254 scm_recv(sock, msg, siocb->scm, flags);
1256 netlink_rcv_wake(sk);
1257 return err ? : copied;
1260 static void netlink_data_ready(struct sock *sk, int len)
1262 struct netlink_sock *nlk = nlk_sk(sk);
1264 if (nlk->data_ready)
1265 nlk->data_ready(sk, len);
1266 netlink_rcv_wake(sk);
1270 * We export these functions to other modules. They provide a
1271 * complete set of kernel non-blocking support for message
1276 netlink_kernel_create(int unit, unsigned int groups,
1277 void (*input)(struct sock *sk, int len),
1278 struct mutex *cb_mutex, struct module *module)
1280 struct socket *sock;
1282 struct netlink_sock *nlk;
1283 unsigned long *listeners = NULL;
1287 if (unit<0 || unit>=MAX_LINKS)
1290 if (sock_create_lite(PF_NETLINK, SOCK_DGRAM, unit, &sock))
1293 if (__netlink_create(sock, cb_mutex, unit) < 0)
1294 goto out_sock_release;
1299 listeners = kzalloc(NLGRPSZ(groups), GFP_KERNEL);
1301 goto out_sock_release;
1304 sk->sk_data_ready = netlink_data_ready;
1306 nlk_sk(sk)->data_ready = input;
1308 if (netlink_insert(sk, 0))
1309 goto out_sock_release;
1312 nlk->flags |= NETLINK_KERNEL_SOCKET;
1314 netlink_table_grab();
1315 nl_table[unit].groups = groups;
1316 nl_table[unit].listeners = listeners;
1317 nl_table[unit].cb_mutex = cb_mutex;
1318 nl_table[unit].module = module;
1319 nl_table[unit].registered = 1;
1320 netlink_table_ungrab();
1330 void netlink_set_nonroot(int protocol, unsigned int flags)
1332 if ((unsigned int)protocol < MAX_LINKS)
1333 nl_table[protocol].nl_nonroot = flags;
1336 static void netlink_destroy_callback(struct netlink_callback *cb)
1344 * It looks a bit ugly.
1345 * It would be better to create kernel thread.
1348 static int netlink_dump(struct sock *sk)
1350 struct netlink_sock *nlk = nlk_sk(sk);
1351 struct netlink_callback *cb;
1352 struct sk_buff *skb;
1353 struct nlmsghdr *nlh;
1354 int len, err = -ENOBUFS;
1356 skb = sock_rmalloc(sk, NLMSG_GOODSIZE, 0, GFP_KERNEL);
1360 mutex_lock(nlk->cb_mutex);
1368 len = cb->dump(skb, cb);
1371 mutex_unlock(nlk->cb_mutex);
1372 skb_queue_tail(&sk->sk_receive_queue, skb);
1373 sk->sk_data_ready(sk, len);
1377 nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
1381 memcpy(nlmsg_data(nlh), &len, sizeof(len));
1383 skb_queue_tail(&sk->sk_receive_queue, skb);
1384 sk->sk_data_ready(sk, skb->len);
1389 mutex_unlock(nlk->cb_mutex);
1391 netlink_destroy_callback(cb);
1395 mutex_unlock(nlk->cb_mutex);
1401 int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
1402 struct nlmsghdr *nlh,
1403 int (*dump)(struct sk_buff *skb, struct netlink_callback*),
1404 int (*done)(struct netlink_callback*))
1406 struct netlink_callback *cb;
1408 struct netlink_sock *nlk;
1410 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
1417 atomic_inc(&skb->users);
1420 sk = netlink_lookup(ssk->sk_protocol, NETLINK_CB(skb).pid);
1422 netlink_destroy_callback(cb);
1423 return -ECONNREFUSED;
1426 /* A dump is in progress... */
1427 mutex_lock(nlk->cb_mutex);
1429 mutex_unlock(nlk->cb_mutex);
1430 netlink_destroy_callback(cb);
1435 mutex_unlock(nlk->cb_mutex);
1440 /* We successfully started a dump, by returning -EINTR we
1441 * signal the queue mangement to interrupt processing of
1442 * any netlink messages so userspace gets a chance to read
1447 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err)
1449 struct sk_buff *skb;
1450 struct nlmsghdr *rep;
1451 struct nlmsgerr *errmsg;
1452 size_t payload = sizeof(*errmsg);
1454 /* error messages get the original request appened */
1456 payload += nlmsg_len(nlh);
1458 skb = nlmsg_new(payload, GFP_KERNEL);
1462 sk = netlink_lookup(in_skb->sk->sk_protocol,
1463 NETLINK_CB(in_skb).pid);
1465 sk->sk_err = ENOBUFS;
1466 sk->sk_error_report(sk);
1472 rep = __nlmsg_put(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
1473 NLMSG_ERROR, sizeof(struct nlmsgerr), 0);
1474 errmsg = nlmsg_data(rep);
1475 errmsg->error = err;
1476 memcpy(&errmsg->msg, nlh, err ? nlh->nlmsg_len : sizeof(*nlh));
1477 netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).pid, MSG_DONTWAIT);
1480 static int netlink_rcv_skb(struct sk_buff *skb, int (*cb)(struct sk_buff *,
1483 struct nlmsghdr *nlh;
1486 while (skb->len >= nlmsg_total_size(0)) {
1487 nlh = nlmsg_hdr(skb);
1490 if (nlh->nlmsg_len < NLMSG_HDRLEN || skb->len < nlh->nlmsg_len)
1493 /* Only requests are handled by the kernel */
1494 if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
1497 /* Skip control messages */
1498 if (nlh->nlmsg_type < NLMSG_MIN_TYPE)
1502 if (err == -EINTR) {
1503 /* Not an error, but we interrupt processing */
1504 netlink_queue_skip(nlh, skb);
1508 if (nlh->nlmsg_flags & NLM_F_ACK || err)
1509 netlink_ack(skb, nlh, err);
1511 netlink_queue_skip(nlh, skb);
1518 * nelink_run_queue - Process netlink receive queue.
1519 * @sk: Netlink socket containing the queue
1520 * @qlen: Place to store queue length upon entry
1521 * @cb: Callback function invoked for each netlink message found
1523 * Processes as much as there was in the queue upon entry and invokes
1524 * a callback function for each netlink message found. The callback
1525 * function may refuse a message by returning a negative error code
1526 * but setting the error pointer to 0 in which case this function
1527 * returns with a qlen != 0.
1529 * qlen must be initialized to 0 before the initial entry, afterwards
1530 * the function may be called repeatedly until qlen reaches 0.
1532 * The callback function may return -EINTR to signal that processing
1533 * of netlink messages shall be interrupted. In this case the message
1534 * currently being processed will NOT be requeued onto the receive
1537 void netlink_run_queue(struct sock *sk, unsigned int *qlen,
1538 int (*cb)(struct sk_buff *, struct nlmsghdr *))
1540 struct sk_buff *skb;
1542 if (!*qlen || *qlen > skb_queue_len(&sk->sk_receive_queue))
1543 *qlen = skb_queue_len(&sk->sk_receive_queue);
1545 for (; *qlen; (*qlen)--) {
1546 skb = skb_dequeue(&sk->sk_receive_queue);
1547 if (netlink_rcv_skb(skb, cb)) {
1549 skb_queue_head(&sk->sk_receive_queue, skb);
1562 * netlink_queue_skip - Skip netlink message while processing queue.
1563 * @nlh: Netlink message to be skipped
1564 * @skb: Socket buffer containing the netlink messages.
1566 * Pulls the given netlink message off the socket buffer so the next
1567 * call to netlink_queue_run() will not reconsider the message.
1569 static void netlink_queue_skip(struct nlmsghdr *nlh, struct sk_buff *skb)
1571 int msglen = NLMSG_ALIGN(nlh->nlmsg_len);
1573 if (msglen > skb->len)
1576 skb_pull(skb, msglen);
1580 * nlmsg_notify - send a notification netlink message
1581 * @sk: netlink socket to use
1582 * @skb: notification message
1583 * @pid: destination netlink pid for reports or 0
1584 * @group: destination multicast group or 0
1585 * @report: 1 to report back, 0 to disable
1586 * @flags: allocation flags
1588 int nlmsg_notify(struct sock *sk, struct sk_buff *skb, u32 pid,
1589 unsigned int group, int report, gfp_t flags)
1594 int exclude_pid = 0;
1597 atomic_inc(&skb->users);
1601 /* errors reported via destination sk->sk_err */
1602 nlmsg_multicast(sk, skb, exclude_pid, group, flags);
1606 err = nlmsg_unicast(sk, skb, pid);
1611 #ifdef CONFIG_PROC_FS
1612 struct nl_seq_iter {
1617 static struct sock *netlink_seq_socket_idx(struct seq_file *seq, loff_t pos)
1619 struct nl_seq_iter *iter = seq->private;
1622 struct hlist_node *node;
1625 for (i=0; i<MAX_LINKS; i++) {
1626 struct nl_pid_hash *hash = &nl_table[i].hash;
1628 for (j = 0; j <= hash->mask; j++) {
1629 sk_for_each(s, node, &hash->table[j]) {
1642 static void *netlink_seq_start(struct seq_file *seq, loff_t *pos)
1644 read_lock(&nl_table_lock);
1645 return *pos ? netlink_seq_socket_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1648 static void *netlink_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1651 struct nl_seq_iter *iter;
1656 if (v == SEQ_START_TOKEN)
1657 return netlink_seq_socket_idx(seq, 0);
1663 iter = seq->private;
1665 j = iter->hash_idx + 1;
1668 struct nl_pid_hash *hash = &nl_table[i].hash;
1670 for (; j <= hash->mask; j++) {
1671 s = sk_head(&hash->table[j]);
1680 } while (++i < MAX_LINKS);
1685 static void netlink_seq_stop(struct seq_file *seq, void *v)
1687 read_unlock(&nl_table_lock);
1691 static int netlink_seq_show(struct seq_file *seq, void *v)
1693 if (v == SEQ_START_TOKEN)
1695 "sk Eth Pid Groups "
1696 "Rmem Wmem Dump Locks\n");
1699 struct netlink_sock *nlk = nlk_sk(s);
1701 seq_printf(seq, "%p %-3d %-6d %08x %-8d %-8d %p %d\n",
1705 nlk->groups ? (u32)nlk->groups[0] : 0,
1706 atomic_read(&s->sk_rmem_alloc),
1707 atomic_read(&s->sk_wmem_alloc),
1709 atomic_read(&s->sk_refcnt)
1716 static const struct seq_operations netlink_seq_ops = {
1717 .start = netlink_seq_start,
1718 .next = netlink_seq_next,
1719 .stop = netlink_seq_stop,
1720 .show = netlink_seq_show,
1724 static int netlink_seq_open(struct inode *inode, struct file *file)
1726 struct seq_file *seq;
1727 struct nl_seq_iter *iter;
1730 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1734 err = seq_open(file, &netlink_seq_ops);
1740 seq = file->private_data;
1741 seq->private = iter;
1745 static const struct file_operations netlink_seq_fops = {
1746 .owner = THIS_MODULE,
1747 .open = netlink_seq_open,
1749 .llseek = seq_lseek,
1750 .release = seq_release_private,
1755 int netlink_register_notifier(struct notifier_block *nb)
1757 return atomic_notifier_chain_register(&netlink_chain, nb);
1760 int netlink_unregister_notifier(struct notifier_block *nb)
1762 return atomic_notifier_chain_unregister(&netlink_chain, nb);
1765 static const struct proto_ops netlink_ops = {
1766 .family = PF_NETLINK,
1767 .owner = THIS_MODULE,
1768 .release = netlink_release,
1769 .bind = netlink_bind,
1770 .connect = netlink_connect,
1771 .socketpair = sock_no_socketpair,
1772 .accept = sock_no_accept,
1773 .getname = netlink_getname,
1774 .poll = datagram_poll,
1775 .ioctl = sock_no_ioctl,
1776 .listen = sock_no_listen,
1777 .shutdown = sock_no_shutdown,
1778 .setsockopt = netlink_setsockopt,
1779 .getsockopt = netlink_getsockopt,
1780 .sendmsg = netlink_sendmsg,
1781 .recvmsg = netlink_recvmsg,
1782 .mmap = sock_no_mmap,
1783 .sendpage = sock_no_sendpage,
1786 static struct net_proto_family netlink_family_ops = {
1787 .family = PF_NETLINK,
1788 .create = netlink_create,
1789 .owner = THIS_MODULE, /* for consistency 8) */
1792 static int __init netlink_proto_init(void)
1794 struct sk_buff *dummy_skb;
1798 int err = proto_register(&netlink_proto, 0);
1803 BUILD_BUG_ON(sizeof(struct netlink_skb_parms) > sizeof(dummy_skb->cb));
1805 nl_table = kcalloc(MAX_LINKS, sizeof(*nl_table), GFP_KERNEL);
1809 if (num_physpages >= (128 * 1024))
1810 max = num_physpages >> (21 - PAGE_SHIFT);
1812 max = num_physpages >> (23 - PAGE_SHIFT);
1814 order = get_bitmask_order(max) - 1 + PAGE_SHIFT;
1815 max = (1UL << order) / sizeof(struct hlist_head);
1816 order = get_bitmask_order(max > UINT_MAX ? UINT_MAX : max) - 1;
1818 for (i = 0; i < MAX_LINKS; i++) {
1819 struct nl_pid_hash *hash = &nl_table[i].hash;
1821 hash->table = nl_pid_hash_alloc(1 * sizeof(*hash->table));
1824 nl_pid_hash_free(nl_table[i].hash.table,
1825 1 * sizeof(*hash->table));
1829 memset(hash->table, 0, 1 * sizeof(*hash->table));
1830 hash->max_shift = order;
1833 hash->rehash_time = jiffies;
1836 sock_register(&netlink_family_ops);
1837 #ifdef CONFIG_PROC_FS
1838 proc_net_fops_create("netlink", 0, &netlink_seq_fops);
1840 /* The netlink device handler may be needed early. */
1845 panic("netlink_init: Cannot allocate nl_table\n");
1848 core_initcall(netlink_proto_init);
1850 EXPORT_SYMBOL(netlink_ack);
1851 EXPORT_SYMBOL(netlink_run_queue);
1852 EXPORT_SYMBOL(netlink_broadcast);
1853 EXPORT_SYMBOL(netlink_dump_start);
1854 EXPORT_SYMBOL(netlink_kernel_create);
1855 EXPORT_SYMBOL(netlink_register_notifier);
1856 EXPORT_SYMBOL(netlink_set_nonroot);
1857 EXPORT_SYMBOL(netlink_unicast);
1858 EXPORT_SYMBOL(netlink_unregister_notifier);
1859 EXPORT_SYMBOL(nlmsg_notify);