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>
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/mutex.h>
59 #include <net/net_namespace.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))
68 /* struct sock has to be the first member of netlink_sock */
76 unsigned long *groups
;
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_rcu_head
{
87 struct rcu_head rcu_head
;
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
;
107 struct hlist_head
*table
;
108 unsigned long rehash_time
;
113 unsigned int entries
;
114 unsigned int max_shift
;
119 struct netlink_table
{
120 struct nl_pid_hash hash
;
121 struct hlist_head mc_list
;
122 unsigned long *listeners
;
123 unsigned int nl_nonroot
;
125 struct mutex
*cb_mutex
;
126 struct module
*module
;
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 u32
netlink_group_mask(u32 group
)
144 return group
? 1 << (group
- 1) : 0;
147 static 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
);
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
);
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
)
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
);
192 set_current_state(TASK_UNINTERRUPTIBLE
);
193 if (atomic_read(&nl_table_users
) == 0)
195 write_unlock_irq(&nl_table_lock
);
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
);
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
);
223 netlink_unlock_table(void)
225 if (atomic_dec_and_test(&nl_table_users
))
226 wake_up(&nl_table_wait
);
229 static inline struct sock
*netlink_lookup(struct net
*net
, int protocol
,
232 struct nl_pid_hash
*hash
= &nl_table
[protocol
].hash
;
233 struct hlist_head
*head
;
235 struct hlist_node
*node
;
237 read_lock(&nl_table_lock
);
238 head
= nl_pid_hashfn(hash
, pid
);
239 sk_for_each(sk
, node
, head
) {
240 if (net_eq(sock_net(sk
), net
) && (nlk_sk(sk
)->pid
== pid
)) {
247 read_unlock(&nl_table_lock
);
251 static inline struct hlist_head
*nl_pid_hash_zalloc(size_t size
)
253 if (size
<= PAGE_SIZE
)
254 return kzalloc(size
, GFP_ATOMIC
);
256 return (struct hlist_head
*)
257 __get_free_pages(GFP_ATOMIC
| __GFP_ZERO
,
261 static inline void nl_pid_hash_free(struct hlist_head
*table
, size_t size
)
263 if (size
<= PAGE_SIZE
)
266 free_pages((unsigned long)table
, get_order(size
));
269 static int nl_pid_hash_rehash(struct nl_pid_hash
*hash
, int grow
)
271 unsigned int omask
, mask
, shift
;
273 struct hlist_head
*otable
, *table
;
276 omask
= mask
= hash
->mask
;
277 osize
= size
= (mask
+ 1) * sizeof(*table
);
281 if (++shift
> hash
->max_shift
)
287 table
= nl_pid_hash_zalloc(size
);
291 otable
= hash
->table
;
295 get_random_bytes(&hash
->rnd
, sizeof(hash
->rnd
));
297 for (i
= 0; i
<= omask
; i
++) {
299 struct hlist_node
*node
, *tmp
;
301 sk_for_each_safe(sk
, node
, tmp
, &otable
[i
])
302 __sk_add_node(sk
, nl_pid_hashfn(hash
, nlk_sk(sk
)->pid
));
305 nl_pid_hash_free(otable
, osize
);
306 hash
->rehash_time
= jiffies
+ 10 * 60 * HZ
;
310 static inline int nl_pid_hash_dilute(struct nl_pid_hash
*hash
, int len
)
312 int avg
= hash
->entries
>> hash
->shift
;
314 if (unlikely(avg
> 1) && nl_pid_hash_rehash(hash
, 1))
317 if (unlikely(len
> avg
) && time_after(jiffies
, hash
->rehash_time
)) {
318 nl_pid_hash_rehash(hash
, 0);
325 static const struct proto_ops netlink_ops
;
328 netlink_update_listeners(struct sock
*sk
)
330 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
331 struct hlist_node
*node
;
335 for (i
= 0; i
< NLGRPLONGS(tbl
->groups
); i
++) {
337 sk_for_each_bound(sk
, node
, &tbl
->mc_list
) {
338 if (i
< NLGRPLONGS(nlk_sk(sk
)->ngroups
))
339 mask
|= nlk_sk(sk
)->groups
[i
];
341 tbl
->listeners
[i
] = mask
;
343 /* this function is only called with the netlink table "grabbed", which
344 * makes sure updates are visible before bind or setsockopt return. */
347 static int netlink_insert(struct sock
*sk
, struct net
*net
, u32 pid
)
349 struct nl_pid_hash
*hash
= &nl_table
[sk
->sk_protocol
].hash
;
350 struct hlist_head
*head
;
351 int err
= -EADDRINUSE
;
353 struct hlist_node
*node
;
356 netlink_table_grab();
357 head
= nl_pid_hashfn(hash
, pid
);
359 sk_for_each(osk
, node
, head
) {
360 if (net_eq(sock_net(osk
), net
) && (nlk_sk(osk
)->pid
== pid
))
372 if (BITS_PER_LONG
> 32 && unlikely(hash
->entries
>= UINT_MAX
))
375 if (len
&& nl_pid_hash_dilute(hash
, len
))
376 head
= nl_pid_hashfn(hash
, pid
);
378 nlk_sk(sk
)->pid
= pid
;
379 sk_add_node(sk
, head
);
383 netlink_table_ungrab();
387 static void netlink_remove(struct sock
*sk
)
389 netlink_table_grab();
390 if (sk_del_node_init(sk
))
391 nl_table
[sk
->sk_protocol
].hash
.entries
--;
392 if (nlk_sk(sk
)->subscriptions
)
393 __sk_del_bind_node(sk
);
394 netlink_table_ungrab();
397 static struct proto netlink_proto
= {
399 .owner
= THIS_MODULE
,
400 .obj_size
= sizeof(struct netlink_sock
),
403 static int __netlink_create(struct net
*net
, struct socket
*sock
,
404 struct mutex
*cb_mutex
, int protocol
)
407 struct netlink_sock
*nlk
;
409 sock
->ops
= &netlink_ops
;
411 sk
= sk_alloc(net
, PF_NETLINK
, GFP_KERNEL
, &netlink_proto
);
415 sock_init_data(sock
, sk
);
419 nlk
->cb_mutex
= cb_mutex
;
421 nlk
->cb_mutex
= &nlk
->cb_def_mutex
;
422 mutex_init(nlk
->cb_mutex
);
424 init_waitqueue_head(&nlk
->wait
);
426 sk
->sk_destruct
= netlink_sock_destruct
;
427 sk
->sk_protocol
= protocol
;
431 static int netlink_create(struct net
*net
, struct socket
*sock
, int protocol
)
433 struct module
*module
= NULL
;
434 struct mutex
*cb_mutex
;
435 struct netlink_sock
*nlk
;
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();
454 if (nl_table
[protocol
].registered
&&
455 try_module_get(nl_table
[protocol
].module
))
456 module
= nl_table
[protocol
].module
;
457 cb_mutex
= nl_table
[protocol
].cb_mutex
;
458 netlink_unlock_table();
460 err
= __netlink_create(net
, sock
, cb_mutex
, protocol
);
465 sock_prot_inuse_add(net
, &netlink_proto
, 1);
468 nlk
= nlk_sk(sock
->sk
);
469 nlk
->module
= module
;
478 static int netlink_release(struct socket
*sock
)
480 struct sock
*sk
= sock
->sk
;
481 struct netlink_sock
*nlk
;
491 * OK. Socket is unlinked, any packets that arrive now
496 wake_up_interruptible_all(&nlk
->wait
);
498 skb_queue_purge(&sk
->sk_write_queue
);
500 if (nlk
->pid
&& !nlk
->subscriptions
) {
501 struct netlink_notify n
= {
503 .protocol
= sk
->sk_protocol
,
506 atomic_notifier_call_chain(&netlink_chain
,
507 NETLINK_URELEASE
, &n
);
510 module_put(nlk
->module
);
512 netlink_table_grab();
513 if (netlink_is_kernel(sk
)) {
514 BUG_ON(nl_table
[sk
->sk_protocol
].registered
== 0);
515 if (--nl_table
[sk
->sk_protocol
].registered
== 0) {
516 kfree(nl_table
[sk
->sk_protocol
].listeners
);
517 nl_table
[sk
->sk_protocol
].module
= NULL
;
518 nl_table
[sk
->sk_protocol
].registered
= 0;
520 } else if (nlk
->subscriptions
)
521 netlink_update_listeners(sk
);
522 netlink_table_ungrab();
528 sock_prot_inuse_add(sock_net(sk
), &netlink_proto
, -1);
534 static int netlink_autobind(struct socket
*sock
)
536 struct sock
*sk
= sock
->sk
;
537 struct net
*net
= sock_net(sk
);
538 struct nl_pid_hash
*hash
= &nl_table
[sk
->sk_protocol
].hash
;
539 struct hlist_head
*head
;
541 struct hlist_node
*node
;
542 s32 pid
= current
->tgid
;
544 static s32 rover
= -4097;
548 netlink_table_grab();
549 head
= nl_pid_hashfn(hash
, pid
);
550 sk_for_each(osk
, node
, head
) {
551 if (!net_eq(sock_net(osk
), net
))
553 if (nlk_sk(osk
)->pid
== pid
) {
554 /* Bind collision, search negative pid values. */
558 netlink_table_ungrab();
562 netlink_table_ungrab();
564 err
= netlink_insert(sk
, net
, pid
);
565 if (err
== -EADDRINUSE
)
568 /* If 2 threads race to autobind, that is fine. */
575 static inline int netlink_capable(struct socket
*sock
, unsigned int flag
)
577 return (nl_table
[sock
->sk
->sk_protocol
].nl_nonroot
& flag
) ||
578 capable(CAP_NET_ADMIN
);
582 netlink_update_subscriptions(struct sock
*sk
, unsigned int subscriptions
)
584 struct netlink_sock
*nlk
= nlk_sk(sk
);
586 if (nlk
->subscriptions
&& !subscriptions
)
587 __sk_del_bind_node(sk
);
588 else if (!nlk
->subscriptions
&& subscriptions
)
589 sk_add_bind_node(sk
, &nl_table
[sk
->sk_protocol
].mc_list
);
590 nlk
->subscriptions
= subscriptions
;
593 static int netlink_realloc_groups(struct sock
*sk
)
595 struct netlink_sock
*nlk
= nlk_sk(sk
);
597 unsigned long *new_groups
;
600 netlink_table_grab();
602 groups
= nl_table
[sk
->sk_protocol
].groups
;
603 if (!nl_table
[sk
->sk_protocol
].registered
) {
608 if (nlk
->ngroups
>= groups
)
611 new_groups
= krealloc(nlk
->groups
, NLGRPSZ(groups
), GFP_ATOMIC
);
612 if (new_groups
== NULL
) {
616 memset((char *)new_groups
+ NLGRPSZ(nlk
->ngroups
), 0,
617 NLGRPSZ(groups
) - NLGRPSZ(nlk
->ngroups
));
619 nlk
->groups
= new_groups
;
620 nlk
->ngroups
= groups
;
622 netlink_table_ungrab();
626 static int netlink_bind(struct socket
*sock
, struct sockaddr
*addr
,
629 struct sock
*sk
= sock
->sk
;
630 struct net
*net
= sock_net(sk
);
631 struct netlink_sock
*nlk
= nlk_sk(sk
);
632 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
635 if (nladdr
->nl_family
!= AF_NETLINK
)
638 /* Only superuser is allowed to listen multicasts */
639 if (nladdr
->nl_groups
) {
640 if (!netlink_capable(sock
, NL_NONROOT_RECV
))
642 err
= netlink_realloc_groups(sk
);
648 if (nladdr
->nl_pid
!= nlk
->pid
)
651 err
= nladdr
->nl_pid
?
652 netlink_insert(sk
, net
, nladdr
->nl_pid
) :
653 netlink_autobind(sock
);
658 if (!nladdr
->nl_groups
&& (nlk
->groups
== NULL
|| !(u32
)nlk
->groups
[0]))
661 netlink_table_grab();
662 netlink_update_subscriptions(sk
, nlk
->subscriptions
+
663 hweight32(nladdr
->nl_groups
) -
664 hweight32(nlk
->groups
[0]));
665 nlk
->groups
[0] = (nlk
->groups
[0] & ~0xffffffffUL
) | nladdr
->nl_groups
;
666 netlink_update_listeners(sk
);
667 netlink_table_ungrab();
672 static int netlink_connect(struct socket
*sock
, struct sockaddr
*addr
,
676 struct sock
*sk
= sock
->sk
;
677 struct netlink_sock
*nlk
= nlk_sk(sk
);
678 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
680 if (addr
->sa_family
== AF_UNSPEC
) {
681 sk
->sk_state
= NETLINK_UNCONNECTED
;
686 if (addr
->sa_family
!= AF_NETLINK
)
689 /* Only superuser is allowed to send multicasts */
690 if (nladdr
->nl_groups
&& !netlink_capable(sock
, NL_NONROOT_SEND
))
694 err
= netlink_autobind(sock
);
697 sk
->sk_state
= NETLINK_CONNECTED
;
698 nlk
->dst_pid
= nladdr
->nl_pid
;
699 nlk
->dst_group
= ffs(nladdr
->nl_groups
);
705 static int netlink_getname(struct socket
*sock
, struct sockaddr
*addr
,
706 int *addr_len
, int peer
)
708 struct sock
*sk
= sock
->sk
;
709 struct netlink_sock
*nlk
= nlk_sk(sk
);
710 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
712 nladdr
->nl_family
= AF_NETLINK
;
714 *addr_len
= sizeof(*nladdr
);
717 nladdr
->nl_pid
= nlk
->dst_pid
;
718 nladdr
->nl_groups
= netlink_group_mask(nlk
->dst_group
);
720 nladdr
->nl_pid
= nlk
->pid
;
721 nladdr
->nl_groups
= nlk
->groups
? nlk
->groups
[0] : 0;
726 static void netlink_overrun(struct sock
*sk
)
728 struct netlink_sock
*nlk
= nlk_sk(sk
);
730 if (!(nlk
->flags
& NETLINK_RECV_NO_ENOBUFS
)) {
731 if (!test_and_set_bit(0, &nlk_sk(sk
)->state
)) {
732 sk
->sk_err
= ENOBUFS
;
733 sk
->sk_error_report(sk
);
736 atomic_inc(&sk
->sk_drops
);
739 static struct sock
*netlink_getsockbypid(struct sock
*ssk
, u32 pid
)
742 struct netlink_sock
*nlk
;
744 sock
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, pid
);
746 return ERR_PTR(-ECONNREFUSED
);
748 /* Don't bother queuing skb if kernel socket has no input function */
750 if (sock
->sk_state
== NETLINK_CONNECTED
&&
751 nlk
->dst_pid
!= nlk_sk(ssk
)->pid
) {
753 return ERR_PTR(-ECONNREFUSED
);
758 struct sock
*netlink_getsockbyfilp(struct file
*filp
)
760 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
763 if (!S_ISSOCK(inode
->i_mode
))
764 return ERR_PTR(-ENOTSOCK
);
766 sock
= SOCKET_I(inode
)->sk
;
767 if (sock
->sk_family
!= AF_NETLINK
)
768 return ERR_PTR(-EINVAL
);
775 * Attach a skb to a netlink socket.
776 * The caller must hold a reference to the destination socket. On error, the
777 * reference is dropped. The skb is not send to the destination, just all
778 * all error checks are performed and memory in the queue is reserved.
780 * < 0: error. skb freed, reference to sock dropped.
782 * 1: repeat lookup - reference dropped while waiting for socket memory.
784 int netlink_attachskb(struct sock
*sk
, struct sk_buff
*skb
,
785 long *timeo
, struct sock
*ssk
)
787 struct netlink_sock
*nlk
;
791 if (atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
792 test_bit(0, &nlk
->state
)) {
793 DECLARE_WAITQUEUE(wait
, current
);
795 if (!ssk
|| netlink_is_kernel(ssk
))
802 __set_current_state(TASK_INTERRUPTIBLE
);
803 add_wait_queue(&nlk
->wait
, &wait
);
805 if ((atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
806 test_bit(0, &nlk
->state
)) &&
807 !sock_flag(sk
, SOCK_DEAD
))
808 *timeo
= schedule_timeout(*timeo
);
810 __set_current_state(TASK_RUNNING
);
811 remove_wait_queue(&nlk
->wait
, &wait
);
814 if (signal_pending(current
)) {
816 return sock_intr_errno(*timeo
);
820 skb_set_owner_r(skb
, sk
);
824 int netlink_sendskb(struct sock
*sk
, struct sk_buff
*skb
)
828 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
829 sk
->sk_data_ready(sk
, len
);
834 void netlink_detachskb(struct sock
*sk
, struct sk_buff
*skb
)
840 static inline struct sk_buff
*netlink_trim(struct sk_buff
*skb
,
847 delta
= skb
->end
- skb
->tail
;
848 if (delta
* 2 < skb
->truesize
)
851 if (skb_shared(skb
)) {
852 struct sk_buff
*nskb
= skb_clone(skb
, allocation
);
859 if (!pskb_expand_head(skb
, 0, -delta
, allocation
))
860 skb
->truesize
-= delta
;
865 static inline void netlink_rcv_wake(struct sock
*sk
)
867 struct netlink_sock
*nlk
= nlk_sk(sk
);
869 if (skb_queue_empty(&sk
->sk_receive_queue
))
870 clear_bit(0, &nlk
->state
);
871 if (!test_bit(0, &nlk
->state
))
872 wake_up_interruptible(&nlk
->wait
);
875 static inline int netlink_unicast_kernel(struct sock
*sk
, struct sk_buff
*skb
)
878 struct netlink_sock
*nlk
= nlk_sk(sk
);
881 if (nlk
->netlink_rcv
!= NULL
) {
883 skb_set_owner_r(skb
, sk
);
884 nlk
->netlink_rcv(skb
);
891 int netlink_unicast(struct sock
*ssk
, struct sk_buff
*skb
,
892 u32 pid
, int nonblock
)
898 skb
= netlink_trim(skb
, gfp_any());
900 timeo
= sock_sndtimeo(ssk
, nonblock
);
902 sk
= netlink_getsockbypid(ssk
, pid
);
907 if (netlink_is_kernel(sk
))
908 return netlink_unicast_kernel(sk
, skb
);
910 if (sk_filter(sk
, skb
)) {
917 err
= netlink_attachskb(sk
, skb
, &timeo
, ssk
);
923 return netlink_sendskb(sk
, skb
);
925 EXPORT_SYMBOL(netlink_unicast
);
927 int netlink_has_listeners(struct sock
*sk
, unsigned int group
)
930 unsigned long *listeners
;
932 BUG_ON(!netlink_is_kernel(sk
));
935 listeners
= rcu_dereference(nl_table
[sk
->sk_protocol
].listeners
);
937 if (group
- 1 < nl_table
[sk
->sk_protocol
].groups
)
938 res
= test_bit(group
- 1, listeners
);
944 EXPORT_SYMBOL_GPL(netlink_has_listeners
);
946 static inline int netlink_broadcast_deliver(struct sock
*sk
,
949 struct netlink_sock
*nlk
= nlk_sk(sk
);
951 if (atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
&&
952 !test_bit(0, &nlk
->state
)) {
953 skb_set_owner_r(skb
, sk
);
954 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
955 sk
->sk_data_ready(sk
, skb
->len
);
956 return atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
;
961 struct netlink_broadcast_data
{
962 struct sock
*exclude_sk
;
967 int delivery_failure
;
971 struct sk_buff
*skb
, *skb2
;
974 static inline int do_one_broadcast(struct sock
*sk
,
975 struct netlink_broadcast_data
*p
)
977 struct netlink_sock
*nlk
= nlk_sk(sk
);
980 if (p
->exclude_sk
== sk
)
983 if (nlk
->pid
== p
->pid
|| p
->group
- 1 >= nlk
->ngroups
||
984 !test_bit(p
->group
- 1, nlk
->groups
))
987 if (!net_eq(sock_net(sk
), p
->net
))
996 if (p
->skb2
== NULL
) {
997 if (skb_shared(p
->skb
)) {
998 p
->skb2
= skb_clone(p
->skb
, p
->allocation
);
1000 p
->skb2
= skb_get(p
->skb
);
1002 * skb ownership may have been set when
1003 * delivered to a previous socket.
1005 skb_orphan(p
->skb2
);
1008 if (p
->skb2
== NULL
) {
1009 netlink_overrun(sk
);
1010 /* Clone failed. Notify ALL listeners. */
1012 if (nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
)
1013 p
->delivery_failure
= 1;
1014 } else if (sk_filter(sk
, p
->skb2
)) {
1017 } else if ((val
= netlink_broadcast_deliver(sk
, p
->skb2
)) < 0) {
1018 netlink_overrun(sk
);
1019 if (nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
)
1020 p
->delivery_failure
= 1;
1022 p
->congested
|= val
;
1032 int netlink_broadcast(struct sock
*ssk
, struct sk_buff
*skb
, u32 pid
,
1033 u32 group
, gfp_t allocation
)
1035 struct net
*net
= sock_net(ssk
);
1036 struct netlink_broadcast_data info
;
1037 struct hlist_node
*node
;
1040 skb
= netlink_trim(skb
, allocation
);
1042 info
.exclude_sk
= ssk
;
1047 info
.delivery_failure
= 0;
1050 info
.allocation
= allocation
;
1054 /* While we sleep in clone, do not allow to change socket list */
1056 netlink_lock_table();
1058 sk_for_each_bound(sk
, node
, &nl_table
[ssk
->sk_protocol
].mc_list
)
1059 do_one_broadcast(sk
, &info
);
1063 netlink_unlock_table();
1065 kfree_skb(info
.skb2
);
1067 if (info
.delivery_failure
)
1070 if (info
.delivered
) {
1071 if (info
.congested
&& (allocation
& __GFP_WAIT
))
1077 EXPORT_SYMBOL(netlink_broadcast
);
1079 struct netlink_set_err_data
{
1080 struct sock
*exclude_sk
;
1086 static inline int do_one_set_err(struct sock
*sk
,
1087 struct netlink_set_err_data
*p
)
1089 struct netlink_sock
*nlk
= nlk_sk(sk
);
1091 if (sk
== p
->exclude_sk
)
1094 if (sock_net(sk
) != sock_net(p
->exclude_sk
))
1097 if (nlk
->pid
== p
->pid
|| p
->group
- 1 >= nlk
->ngroups
||
1098 !test_bit(p
->group
- 1, nlk
->groups
))
1101 sk
->sk_err
= p
->code
;
1102 sk
->sk_error_report(sk
);
1108 * netlink_set_err - report error to broadcast listeners
1109 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1110 * @pid: the PID of a process that we want to skip (if any)
1111 * @groups: the broadcast group that will notice the error
1112 * @code: error code, must be negative (as usual in kernelspace)
1114 void netlink_set_err(struct sock
*ssk
, u32 pid
, u32 group
, int code
)
1116 struct netlink_set_err_data info
;
1117 struct hlist_node
*node
;
1120 info
.exclude_sk
= ssk
;
1123 /* sk->sk_err wants a positive error value */
1126 read_lock(&nl_table_lock
);
1128 sk_for_each_bound(sk
, node
, &nl_table
[ssk
->sk_protocol
].mc_list
)
1129 do_one_set_err(sk
, &info
);
1131 read_unlock(&nl_table_lock
);
1133 EXPORT_SYMBOL(netlink_set_err
);
1135 /* must be called with netlink table grabbed */
1136 static void netlink_update_socket_mc(struct netlink_sock
*nlk
,
1140 int old
, new = !!is_new
, subscriptions
;
1142 old
= test_bit(group
- 1, nlk
->groups
);
1143 subscriptions
= nlk
->subscriptions
- old
+ new;
1145 __set_bit(group
- 1, nlk
->groups
);
1147 __clear_bit(group
- 1, nlk
->groups
);
1148 netlink_update_subscriptions(&nlk
->sk
, subscriptions
);
1149 netlink_update_listeners(&nlk
->sk
);
1152 static int netlink_setsockopt(struct socket
*sock
, int level
, int optname
,
1153 char __user
*optval
, unsigned int optlen
)
1155 struct sock
*sk
= sock
->sk
;
1156 struct netlink_sock
*nlk
= nlk_sk(sk
);
1157 unsigned int val
= 0;
1160 if (level
!= SOL_NETLINK
)
1161 return -ENOPROTOOPT
;
1163 if (optlen
>= sizeof(int) &&
1164 get_user(val
, (unsigned int __user
*)optval
))
1168 case NETLINK_PKTINFO
:
1170 nlk
->flags
|= NETLINK_RECV_PKTINFO
;
1172 nlk
->flags
&= ~NETLINK_RECV_PKTINFO
;
1175 case NETLINK_ADD_MEMBERSHIP
:
1176 case NETLINK_DROP_MEMBERSHIP
: {
1177 if (!netlink_capable(sock
, NL_NONROOT_RECV
))
1179 err
= netlink_realloc_groups(sk
);
1182 if (!val
|| val
- 1 >= nlk
->ngroups
)
1184 netlink_table_grab();
1185 netlink_update_socket_mc(nlk
, val
,
1186 optname
== NETLINK_ADD_MEMBERSHIP
);
1187 netlink_table_ungrab();
1191 case NETLINK_BROADCAST_ERROR
:
1193 nlk
->flags
|= NETLINK_BROADCAST_SEND_ERROR
;
1195 nlk
->flags
&= ~NETLINK_BROADCAST_SEND_ERROR
;
1198 case NETLINK_NO_ENOBUFS
:
1200 nlk
->flags
|= NETLINK_RECV_NO_ENOBUFS
;
1201 clear_bit(0, &nlk
->state
);
1202 wake_up_interruptible(&nlk
->wait
);
1204 nlk
->flags
&= ~NETLINK_RECV_NO_ENOBUFS
;
1213 static int netlink_getsockopt(struct socket
*sock
, int level
, int optname
,
1214 char __user
*optval
, int __user
*optlen
)
1216 struct sock
*sk
= sock
->sk
;
1217 struct netlink_sock
*nlk
= nlk_sk(sk
);
1220 if (level
!= SOL_NETLINK
)
1221 return -ENOPROTOOPT
;
1223 if (get_user(len
, optlen
))
1229 case NETLINK_PKTINFO
:
1230 if (len
< sizeof(int))
1233 val
= nlk
->flags
& NETLINK_RECV_PKTINFO
? 1 : 0;
1234 if (put_user(len
, optlen
) ||
1235 put_user(val
, optval
))
1239 case NETLINK_BROADCAST_ERROR
:
1240 if (len
< sizeof(int))
1243 val
= nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
? 1 : 0;
1244 if (put_user(len
, optlen
) ||
1245 put_user(val
, optval
))
1249 case NETLINK_NO_ENOBUFS
:
1250 if (len
< sizeof(int))
1253 val
= nlk
->flags
& NETLINK_RECV_NO_ENOBUFS
? 1 : 0;
1254 if (put_user(len
, optlen
) ||
1255 put_user(val
, optval
))
1265 static void netlink_cmsg_recv_pktinfo(struct msghdr
*msg
, struct sk_buff
*skb
)
1267 struct nl_pktinfo info
;
1269 info
.group
= NETLINK_CB(skb
).dst_group
;
1270 put_cmsg(msg
, SOL_NETLINK
, NETLINK_PKTINFO
, sizeof(info
), &info
);
1273 static int netlink_sendmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1274 struct msghdr
*msg
, size_t len
)
1276 struct sock_iocb
*siocb
= kiocb_to_siocb(kiocb
);
1277 struct sock
*sk
= sock
->sk
;
1278 struct netlink_sock
*nlk
= nlk_sk(sk
);
1279 struct sockaddr_nl
*addr
= msg
->msg_name
;
1282 struct sk_buff
*skb
;
1284 struct scm_cookie scm
;
1286 if (msg
->msg_flags
&MSG_OOB
)
1289 if (NULL
== siocb
->scm
)
1291 err
= scm_send(sock
, msg
, siocb
->scm
);
1295 if (msg
->msg_namelen
) {
1296 if (addr
->nl_family
!= AF_NETLINK
)
1298 dst_pid
= addr
->nl_pid
;
1299 dst_group
= ffs(addr
->nl_groups
);
1300 if (dst_group
&& !netlink_capable(sock
, NL_NONROOT_SEND
))
1303 dst_pid
= nlk
->dst_pid
;
1304 dst_group
= nlk
->dst_group
;
1308 err
= netlink_autobind(sock
);
1314 if (len
> sk
->sk_sndbuf
- 32)
1317 skb
= alloc_skb(len
, GFP_KERNEL
);
1321 NETLINK_CB(skb
).pid
= nlk
->pid
;
1322 NETLINK_CB(skb
).dst_group
= dst_group
;
1323 NETLINK_CB(skb
).loginuid
= audit_get_loginuid(current
);
1324 NETLINK_CB(skb
).sessionid
= audit_get_sessionid(current
);
1325 security_task_getsecid(current
, &(NETLINK_CB(skb
).sid
));
1326 memcpy(NETLINK_CREDS(skb
), &siocb
->scm
->creds
, sizeof(struct ucred
));
1328 /* What can I do? Netlink is asynchronous, so that
1329 we will have to save current capabilities to
1330 check them, when this message will be delivered
1331 to corresponding kernel module. --ANK (980802)
1335 if (memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
)) {
1340 err
= security_netlink_send(sk
, skb
);
1347 atomic_inc(&skb
->users
);
1348 netlink_broadcast(sk
, skb
, dst_pid
, dst_group
, GFP_KERNEL
);
1350 err
= netlink_unicast(sk
, skb
, dst_pid
, msg
->msg_flags
&MSG_DONTWAIT
);
1356 static int netlink_recvmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1357 struct msghdr
*msg
, size_t len
,
1360 struct sock_iocb
*siocb
= kiocb_to_siocb(kiocb
);
1361 struct scm_cookie scm
;
1362 struct sock
*sk
= sock
->sk
;
1363 struct netlink_sock
*nlk
= nlk_sk(sk
);
1364 int noblock
= flags
&MSG_DONTWAIT
;
1366 struct sk_buff
*skb
, *data_skb
;
1374 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
1380 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1381 if (unlikely(skb_shinfo(skb
)->frag_list
)) {
1383 * If this skb has a frag_list, then here that means that we
1384 * will have to use the frag_list skb's data for compat tasks
1385 * and the regular skb's data for normal (non-compat) tasks.
1387 * If we need to send the compat skb, assign it to the
1388 * 'data_skb' variable so that it will be used below for data
1389 * copying. We keep 'skb' for everything else, including
1390 * freeing both later.
1392 if (flags
& MSG_CMSG_COMPAT
)
1393 data_skb
= skb_shinfo(skb
)->frag_list
;
1397 msg
->msg_namelen
= 0;
1399 copied
= data_skb
->len
;
1401 msg
->msg_flags
|= MSG_TRUNC
;
1405 skb_reset_transport_header(data_skb
);
1406 err
= skb_copy_datagram_iovec(data_skb
, 0, msg
->msg_iov
, copied
);
1408 if (msg
->msg_name
) {
1409 struct sockaddr_nl
*addr
= (struct sockaddr_nl
*)msg
->msg_name
;
1410 addr
->nl_family
= AF_NETLINK
;
1412 addr
->nl_pid
= NETLINK_CB(skb
).pid
;
1413 addr
->nl_groups
= netlink_group_mask(NETLINK_CB(skb
).dst_group
);
1414 msg
->msg_namelen
= sizeof(*addr
);
1417 if (nlk
->flags
& NETLINK_RECV_PKTINFO
)
1418 netlink_cmsg_recv_pktinfo(msg
, skb
);
1420 if (NULL
== siocb
->scm
) {
1421 memset(&scm
, 0, sizeof(scm
));
1424 siocb
->scm
->creds
= *NETLINK_CREDS(skb
);
1425 if (flags
& MSG_TRUNC
)
1426 copied
= data_skb
->len
;
1428 skb_free_datagram(sk
, skb
);
1430 if (nlk
->cb
&& atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
/ 2)
1433 scm_recv(sock
, msg
, siocb
->scm
, flags
);
1435 netlink_rcv_wake(sk
);
1436 return err
? : copied
;
1439 static void netlink_data_ready(struct sock
*sk
, int len
)
1445 * We export these functions to other modules. They provide a
1446 * complete set of kernel non-blocking support for message
1451 netlink_kernel_create(struct net
*net
, int unit
, unsigned int groups
,
1452 void (*input
)(struct sk_buff
*skb
),
1453 struct mutex
*cb_mutex
, struct module
*module
)
1455 struct socket
*sock
;
1457 struct netlink_sock
*nlk
;
1458 unsigned long *listeners
= NULL
;
1462 if (unit
< 0 || unit
>= MAX_LINKS
)
1465 if (sock_create_lite(PF_NETLINK
, SOCK_DGRAM
, unit
, &sock
))
1469 * We have to just have a reference on the net from sk, but don't
1470 * get_net it. Besides, we cannot get and then put the net here.
1471 * So we create one inside init_net and the move it to net.
1474 if (__netlink_create(&init_net
, sock
, cb_mutex
, unit
) < 0)
1475 goto out_sock_release_nosk
;
1478 sk_change_net(sk
, net
);
1483 listeners
= kzalloc(NLGRPSZ(groups
) + sizeof(struct listeners_rcu_head
),
1486 goto out_sock_release
;
1488 sk
->sk_data_ready
= netlink_data_ready
;
1490 nlk_sk(sk
)->netlink_rcv
= input
;
1492 if (netlink_insert(sk
, net
, 0))
1493 goto out_sock_release
;
1496 nlk
->flags
|= NETLINK_KERNEL_SOCKET
;
1498 netlink_table_grab();
1499 if (!nl_table
[unit
].registered
) {
1500 nl_table
[unit
].groups
= groups
;
1501 nl_table
[unit
].listeners
= listeners
;
1502 nl_table
[unit
].cb_mutex
= cb_mutex
;
1503 nl_table
[unit
].module
= module
;
1504 nl_table
[unit
].registered
= 1;
1507 nl_table
[unit
].registered
++;
1509 netlink_table_ungrab();
1514 netlink_kernel_release(sk
);
1517 out_sock_release_nosk
:
1521 EXPORT_SYMBOL(netlink_kernel_create
);
1525 netlink_kernel_release(struct sock
*sk
)
1527 sk_release_kernel(sk
);
1529 EXPORT_SYMBOL(netlink_kernel_release
);
1532 static void netlink_free_old_listeners(struct rcu_head
*rcu_head
)
1534 struct listeners_rcu_head
*lrh
;
1536 lrh
= container_of(rcu_head
, struct listeners_rcu_head
, rcu_head
);
1540 int __netlink_change_ngroups(struct sock
*sk
, unsigned int groups
)
1542 unsigned long *listeners
, *old
= NULL
;
1543 struct listeners_rcu_head
*old_rcu_head
;
1544 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
1549 if (NLGRPSZ(tbl
->groups
) < NLGRPSZ(groups
)) {
1550 listeners
= kzalloc(NLGRPSZ(groups
) +
1551 sizeof(struct listeners_rcu_head
),
1555 old
= tbl
->listeners
;
1556 memcpy(listeners
, old
, NLGRPSZ(tbl
->groups
));
1557 rcu_assign_pointer(tbl
->listeners
, listeners
);
1559 * Free the old memory after an RCU grace period so we
1560 * don't leak it. We use call_rcu() here in order to be
1561 * able to call this function from atomic contexts. The
1562 * allocation of this memory will have reserved enough
1563 * space for struct listeners_rcu_head at the end.
1565 old_rcu_head
= (void *)(tbl
->listeners
+
1566 NLGRPLONGS(tbl
->groups
));
1567 old_rcu_head
->ptr
= old
;
1568 call_rcu(&old_rcu_head
->rcu_head
, netlink_free_old_listeners
);
1570 tbl
->groups
= groups
;
1576 * netlink_change_ngroups - change number of multicast groups
1578 * This changes the number of multicast groups that are available
1579 * on a certain netlink family. Note that it is not possible to
1580 * change the number of groups to below 32. Also note that it does
1581 * not implicitly call netlink_clear_multicast_users() when the
1582 * number of groups is reduced.
1584 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1585 * @groups: The new number of groups.
1587 int netlink_change_ngroups(struct sock
*sk
, unsigned int groups
)
1591 netlink_table_grab();
1592 err
= __netlink_change_ngroups(sk
, groups
);
1593 netlink_table_ungrab();
1598 void __netlink_clear_multicast_users(struct sock
*ksk
, unsigned int group
)
1601 struct hlist_node
*node
;
1602 struct netlink_table
*tbl
= &nl_table
[ksk
->sk_protocol
];
1604 sk_for_each_bound(sk
, node
, &tbl
->mc_list
)
1605 netlink_update_socket_mc(nlk_sk(sk
), group
, 0);
1609 * netlink_clear_multicast_users - kick off multicast listeners
1611 * This function removes all listeners from the given group.
1612 * @ksk: The kernel netlink socket, as returned by
1613 * netlink_kernel_create().
1614 * @group: The multicast group to clear.
1616 void netlink_clear_multicast_users(struct sock
*ksk
, unsigned int group
)
1618 netlink_table_grab();
1619 __netlink_clear_multicast_users(ksk
, group
);
1620 netlink_table_ungrab();
1623 void netlink_set_nonroot(int protocol
, unsigned int flags
)
1625 if ((unsigned int)protocol
< MAX_LINKS
)
1626 nl_table
[protocol
].nl_nonroot
= flags
;
1628 EXPORT_SYMBOL(netlink_set_nonroot
);
1630 static void netlink_destroy_callback(struct netlink_callback
*cb
)
1637 * It looks a bit ugly.
1638 * It would be better to create kernel thread.
1641 static int netlink_dump(struct sock
*sk
)
1643 struct netlink_sock
*nlk
= nlk_sk(sk
);
1644 struct netlink_callback
*cb
;
1645 struct sk_buff
*skb
;
1646 struct nlmsghdr
*nlh
;
1647 int len
, err
= -ENOBUFS
;
1649 skb
= sock_rmalloc(sk
, NLMSG_GOODSIZE
, 0, GFP_KERNEL
);
1653 mutex_lock(nlk
->cb_mutex
);
1661 len
= cb
->dump(skb
, cb
);
1664 mutex_unlock(nlk
->cb_mutex
);
1666 if (sk_filter(sk
, skb
))
1669 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1670 sk
->sk_data_ready(sk
, skb
->len
);
1675 nlh
= nlmsg_put_answer(skb
, cb
, NLMSG_DONE
, sizeof(len
), NLM_F_MULTI
);
1679 memcpy(nlmsg_data(nlh
), &len
, sizeof(len
));
1681 if (sk_filter(sk
, skb
))
1684 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1685 sk
->sk_data_ready(sk
, skb
->len
);
1691 mutex_unlock(nlk
->cb_mutex
);
1693 netlink_destroy_callback(cb
);
1697 mutex_unlock(nlk
->cb_mutex
);
1703 int netlink_dump_start(struct sock
*ssk
, struct sk_buff
*skb
,
1704 const struct nlmsghdr
*nlh
,
1705 int (*dump
)(struct sk_buff
*skb
,
1706 struct netlink_callback
*),
1707 int (*done
)(struct netlink_callback
*))
1709 struct netlink_callback
*cb
;
1711 struct netlink_sock
*nlk
;
1713 cb
= kzalloc(sizeof(*cb
), GFP_KERNEL
);
1720 atomic_inc(&skb
->users
);
1723 sk
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, NETLINK_CB(skb
).pid
);
1725 netlink_destroy_callback(cb
);
1726 return -ECONNREFUSED
;
1729 /* A dump is in progress... */
1730 mutex_lock(nlk
->cb_mutex
);
1732 mutex_unlock(nlk
->cb_mutex
);
1733 netlink_destroy_callback(cb
);
1738 mutex_unlock(nlk
->cb_mutex
);
1743 /* We successfully started a dump, by returning -EINTR we
1744 * signal not to send ACK even if it was requested.
1748 EXPORT_SYMBOL(netlink_dump_start
);
1750 void netlink_ack(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, int err
)
1752 struct sk_buff
*skb
;
1753 struct nlmsghdr
*rep
;
1754 struct nlmsgerr
*errmsg
;
1755 size_t payload
= sizeof(*errmsg
);
1757 /* error messages get the original request appened */
1759 payload
+= nlmsg_len(nlh
);
1761 skb
= nlmsg_new(payload
, GFP_KERNEL
);
1765 sk
= netlink_lookup(sock_net(in_skb
->sk
),
1766 in_skb
->sk
->sk_protocol
,
1767 NETLINK_CB(in_skb
).pid
);
1769 sk
->sk_err
= ENOBUFS
;
1770 sk
->sk_error_report(sk
);
1776 rep
= __nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, nlh
->nlmsg_seq
,
1777 NLMSG_ERROR
, payload
, 0);
1778 errmsg
= nlmsg_data(rep
);
1779 errmsg
->error
= err
;
1780 memcpy(&errmsg
->msg
, nlh
, err
? nlh
->nlmsg_len
: sizeof(*nlh
));
1781 netlink_unicast(in_skb
->sk
, skb
, NETLINK_CB(in_skb
).pid
, MSG_DONTWAIT
);
1783 EXPORT_SYMBOL(netlink_ack
);
1785 int netlink_rcv_skb(struct sk_buff
*skb
, int (*cb
)(struct sk_buff
*,
1788 struct nlmsghdr
*nlh
;
1791 while (skb
->len
>= nlmsg_total_size(0)) {
1794 nlh
= nlmsg_hdr(skb
);
1797 if (nlh
->nlmsg_len
< NLMSG_HDRLEN
|| skb
->len
< nlh
->nlmsg_len
)
1800 /* Only requests are handled by the kernel */
1801 if (!(nlh
->nlmsg_flags
& NLM_F_REQUEST
))
1804 /* Skip control messages */
1805 if (nlh
->nlmsg_type
< NLMSG_MIN_TYPE
)
1813 if (nlh
->nlmsg_flags
& NLM_F_ACK
|| err
)
1814 netlink_ack(skb
, nlh
, err
);
1817 msglen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
1818 if (msglen
> skb
->len
)
1820 skb_pull(skb
, msglen
);
1825 EXPORT_SYMBOL(netlink_rcv_skb
);
1828 * nlmsg_notify - send a notification netlink message
1829 * @sk: netlink socket to use
1830 * @skb: notification message
1831 * @pid: destination netlink pid for reports or 0
1832 * @group: destination multicast group or 0
1833 * @report: 1 to report back, 0 to disable
1834 * @flags: allocation flags
1836 int nlmsg_notify(struct sock
*sk
, struct sk_buff
*skb
, u32 pid
,
1837 unsigned int group
, int report
, gfp_t flags
)
1842 int exclude_pid
= 0;
1845 atomic_inc(&skb
->users
);
1849 /* errors reported via destination sk->sk_err, but propagate
1850 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1851 err
= nlmsg_multicast(sk
, skb
, exclude_pid
, group
, flags
);
1857 err2
= nlmsg_unicast(sk
, skb
, pid
);
1858 if (!err
|| err
== -ESRCH
)
1864 EXPORT_SYMBOL(nlmsg_notify
);
1866 #ifdef CONFIG_PROC_FS
1867 struct nl_seq_iter
{
1868 struct seq_net_private p
;
1873 static struct sock
*netlink_seq_socket_idx(struct seq_file
*seq
, loff_t pos
)
1875 struct nl_seq_iter
*iter
= seq
->private;
1878 struct hlist_node
*node
;
1881 for (i
= 0; i
< MAX_LINKS
; i
++) {
1882 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
1884 for (j
= 0; j
<= hash
->mask
; j
++) {
1885 sk_for_each(s
, node
, &hash
->table
[j
]) {
1886 if (sock_net(s
) != seq_file_net(seq
))
1900 static void *netlink_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1901 __acquires(nl_table_lock
)
1903 read_lock(&nl_table_lock
);
1904 return *pos
? netlink_seq_socket_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
1907 static void *netlink_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1910 struct nl_seq_iter
*iter
;
1915 if (v
== SEQ_START_TOKEN
)
1916 return netlink_seq_socket_idx(seq
, 0);
1918 iter
= seq
->private;
1922 } while (s
&& sock_net(s
) != seq_file_net(seq
));
1927 j
= iter
->hash_idx
+ 1;
1930 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
1932 for (; j
<= hash
->mask
; j
++) {
1933 s
= sk_head(&hash
->table
[j
]);
1934 while (s
&& sock_net(s
) != seq_file_net(seq
))
1944 } while (++i
< MAX_LINKS
);
1949 static void netlink_seq_stop(struct seq_file
*seq
, void *v
)
1950 __releases(nl_table_lock
)
1952 read_unlock(&nl_table_lock
);
1956 static int netlink_seq_show(struct seq_file
*seq
, void *v
)
1958 if (v
== SEQ_START_TOKEN
)
1960 "sk Eth Pid Groups "
1961 "Rmem Wmem Dump Locks Drops\n");
1964 struct netlink_sock
*nlk
= nlk_sk(s
);
1966 seq_printf(seq
, "%p %-3d %-6d %08x %-8d %-8d %p %-8d %-8d\n",
1970 nlk
->groups
? (u32
)nlk
->groups
[0] : 0,
1971 sk_rmem_alloc_get(s
),
1972 sk_wmem_alloc_get(s
),
1974 atomic_read(&s
->sk_refcnt
),
1975 atomic_read(&s
->sk_drops
)
1982 static const struct seq_operations netlink_seq_ops
= {
1983 .start
= netlink_seq_start
,
1984 .next
= netlink_seq_next
,
1985 .stop
= netlink_seq_stop
,
1986 .show
= netlink_seq_show
,
1990 static int netlink_seq_open(struct inode
*inode
, struct file
*file
)
1992 return seq_open_net(inode
, file
, &netlink_seq_ops
,
1993 sizeof(struct nl_seq_iter
));
1996 static const struct file_operations netlink_seq_fops
= {
1997 .owner
= THIS_MODULE
,
1998 .open
= netlink_seq_open
,
2000 .llseek
= seq_lseek
,
2001 .release
= seq_release_net
,
2006 int netlink_register_notifier(struct notifier_block
*nb
)
2008 return atomic_notifier_chain_register(&netlink_chain
, nb
);
2010 EXPORT_SYMBOL(netlink_register_notifier
);
2012 int netlink_unregister_notifier(struct notifier_block
*nb
)
2014 return atomic_notifier_chain_unregister(&netlink_chain
, nb
);
2016 EXPORT_SYMBOL(netlink_unregister_notifier
);
2018 static const struct proto_ops netlink_ops
= {
2019 .family
= PF_NETLINK
,
2020 .owner
= THIS_MODULE
,
2021 .release
= netlink_release
,
2022 .bind
= netlink_bind
,
2023 .connect
= netlink_connect
,
2024 .socketpair
= sock_no_socketpair
,
2025 .accept
= sock_no_accept
,
2026 .getname
= netlink_getname
,
2027 .poll
= datagram_poll
,
2028 .ioctl
= sock_no_ioctl
,
2029 .listen
= sock_no_listen
,
2030 .shutdown
= sock_no_shutdown
,
2031 .setsockopt
= netlink_setsockopt
,
2032 .getsockopt
= netlink_getsockopt
,
2033 .sendmsg
= netlink_sendmsg
,
2034 .recvmsg
= netlink_recvmsg
,
2035 .mmap
= sock_no_mmap
,
2036 .sendpage
= sock_no_sendpage
,
2039 static struct net_proto_family netlink_family_ops
= {
2040 .family
= PF_NETLINK
,
2041 .create
= netlink_create
,
2042 .owner
= THIS_MODULE
, /* for consistency 8) */
2045 static int __net_init
netlink_net_init(struct net
*net
)
2047 #ifdef CONFIG_PROC_FS
2048 if (!proc_net_fops_create(net
, "netlink", 0, &netlink_seq_fops
))
2054 static void __net_exit
netlink_net_exit(struct net
*net
)
2056 #ifdef CONFIG_PROC_FS
2057 proc_net_remove(net
, "netlink");
2061 static struct pernet_operations __net_initdata netlink_net_ops
= {
2062 .init
= netlink_net_init
,
2063 .exit
= netlink_net_exit
,
2066 static int __init
netlink_proto_init(void)
2068 struct sk_buff
*dummy_skb
;
2070 unsigned long limit
;
2072 int err
= proto_register(&netlink_proto
, 0);
2077 BUILD_BUG_ON(sizeof(struct netlink_skb_parms
) > sizeof(dummy_skb
->cb
));
2079 nl_table
= kcalloc(MAX_LINKS
, sizeof(*nl_table
), GFP_KERNEL
);
2083 if (totalram_pages
>= (128 * 1024))
2084 limit
= totalram_pages
>> (21 - PAGE_SHIFT
);
2086 limit
= totalram_pages
>> (23 - PAGE_SHIFT
);
2088 order
= get_bitmask_order(limit
) - 1 + PAGE_SHIFT
;
2089 limit
= (1UL << order
) / sizeof(struct hlist_head
);
2090 order
= get_bitmask_order(min(limit
, (unsigned long)UINT_MAX
)) - 1;
2092 for (i
= 0; i
< MAX_LINKS
; i
++) {
2093 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
2095 hash
->table
= nl_pid_hash_zalloc(1 * sizeof(*hash
->table
));
2098 nl_pid_hash_free(nl_table
[i
].hash
.table
,
2099 1 * sizeof(*hash
->table
));
2103 hash
->max_shift
= order
;
2106 hash
->rehash_time
= jiffies
;
2109 sock_register(&netlink_family_ops
);
2110 register_pernet_subsys(&netlink_net_ops
);
2111 /* The netlink device handler may be needed early. */
2116 panic("netlink_init: Cannot allocate nl_table\n");
2119 core_initcall(netlink_proto_init
);