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
;
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
;
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 struct listeners __rcu
*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 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
);
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 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
;
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
)) {
246 read_unlock(&nl_table_lock
);
250 static struct hlist_head
*nl_pid_hash_zalloc(size_t size
)
252 if (size
<= PAGE_SIZE
)
253 return kzalloc(size
, GFP_ATOMIC
);
255 return (struct hlist_head
*)
256 __get_free_pages(GFP_ATOMIC
| __GFP_ZERO
,
260 static void nl_pid_hash_free(struct hlist_head
*table
, size_t size
)
262 if (size
<= PAGE_SIZE
)
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
;
272 struct hlist_head
*otable
, *table
;
275 omask
= mask
= hash
->mask
;
276 osize
= size
= (mask
+ 1) * sizeof(*table
);
280 if (++shift
> hash
->max_shift
)
286 table
= nl_pid_hash_zalloc(size
);
290 otable
= hash
->table
;
294 get_random_bytes(&hash
->rnd
, sizeof(hash
->rnd
));
296 for (i
= 0; i
<= omask
; i
++) {
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
;
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))
316 if (unlikely(len
> avg
) && time_after(jiffies
, hash
->rehash_time
)) {
317 nl_pid_hash_rehash(hash
, 0);
324 static const struct proto_ops netlink_ops
;
327 netlink_update_listeners(struct sock
*sk
)
329 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
330 struct hlist_node
*node
;
334 for (i
= 0; i
< NLGRPLONGS(tbl
->groups
); i
++) {
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
;
352 struct hlist_node
*node
;
355 netlink_table_grab();
356 head
= nl_pid_hashfn(hash
, pid
);
358 sk_for_each(osk
, node
, head
) {
359 if (net_eq(sock_net(osk
), net
) && (nlk_sk(osk
)->pid
== pid
))
371 if (BITS_PER_LONG
> 32 && unlikely(hash
->entries
>= UINT_MAX
))
374 if (len
&& nl_pid_hash_dilute(hash
, len
))
375 head
= nl_pid_hashfn(hash
, pid
);
377 nlk_sk(sk
)->pid
= pid
;
378 sk_add_node(sk
, head
);
382 netlink_table_ungrab();
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
= {
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
)
406 struct netlink_sock
*nlk
;
408 sock
->ops
= &netlink_ops
;
410 sk
= sk_alloc(net
, PF_NETLINK
, GFP_KERNEL
, &netlink_proto
);
414 sock_init_data(sock
, sk
);
418 nlk
->cb_mutex
= cb_mutex
;
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
;
430 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
;
458 err
= -EPROTONOSUPPORT
;
459 cb_mutex
= nl_table
[protocol
].cb_mutex
;
460 netlink_unlock_table();
465 err
= __netlink_create(net
, sock
, cb_mutex
, protocol
);
470 sock_prot_inuse_add(net
, &netlink_proto
, 1);
473 nlk
= nlk_sk(sock
->sk
);
474 nlk
->module
= module
;
483 static int netlink_release(struct socket
*sock
)
485 struct sock
*sk
= sock
->sk
;
486 struct netlink_sock
*nlk
;
496 * OK. Socket is unlinked, any packets that arrive now
501 wake_up_interruptible_all(&nlk
->wait
);
503 skb_queue_purge(&sk
->sk_write_queue
);
506 struct netlink_notify n
= {
508 .protocol
= sk
->sk_protocol
,
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();
533 sock_prot_inuse_add(sock_net(sk
), &netlink_proto
, -1);
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
;
546 struct hlist_node
*node
;
547 s32 pid
= task_tgid_vnr(current
);
549 static s32 rover
= -4097;
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
))
558 if (nlk_sk(osk
)->pid
== pid
) {
559 /* Bind collision, search negative pid values. */
563 netlink_table_ungrab();
567 netlink_table_ungrab();
569 err
= netlink_insert(sk
, net
, pid
);
570 if (err
== -EADDRINUSE
)
573 /* If 2 threads race to autobind, that is fine. */
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
);
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
);
602 unsigned long *new_groups
;
605 netlink_table_grab();
607 groups
= nl_table
[sk
->sk_protocol
].groups
;
608 if (!nl_table
[sk
->sk_protocol
].registered
) {
613 if (nlk
->ngroups
>= groups
)
616 new_groups
= krealloc(nlk
->groups
, NLGRPSZ(groups
), GFP_ATOMIC
);
617 if (new_groups
== NULL
) {
621 memset((char *)new_groups
+ NLGRPSZ(nlk
->ngroups
), 0,
622 NLGRPSZ(groups
) - NLGRPSZ(nlk
->ngroups
));
624 nlk
->groups
= new_groups
;
625 nlk
->ngroups
= groups
;
627 netlink_table_ungrab();
631 static int netlink_bind(struct socket
*sock
, struct sockaddr
*addr
,
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
;
640 if (nladdr
->nl_family
!= AF_NETLINK
)
643 /* Only superuser is allowed to listen multicasts */
644 if (nladdr
->nl_groups
) {
645 if (!netlink_capable(sock
, NL_NONROOT_RECV
))
647 err
= netlink_realloc_groups(sk
);
653 if (nladdr
->nl_pid
!= nlk
->pid
)
656 err
= nladdr
->nl_pid
?
657 netlink_insert(sk
, net
, nladdr
->nl_pid
) :
658 netlink_autobind(sock
);
663 if (!nladdr
->nl_groups
&& (nlk
->groups
== NULL
|| !(u32
)nlk
->groups
[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();
677 static int netlink_connect(struct socket
*sock
, struct sockaddr
*addr
,
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
))
688 if (addr
->sa_family
== AF_UNSPEC
) {
689 sk
->sk_state
= NETLINK_UNCONNECTED
;
694 if (addr
->sa_family
!= AF_NETLINK
)
697 /* Only superuser is allowed to send multicasts */
698 if (nladdr
->nl_groups
&& !netlink_capable(sock
, NL_NONROOT_SEND
))
702 err
= netlink_autobind(sock
);
705 sk
->sk_state
= NETLINK_CONNECTED
;
706 nlk
->dst_pid
= nladdr
->nl_pid
;
707 nlk
->dst_group
= ffs(nladdr
->nl_groups
);
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
;
722 *addr_len
= sizeof(*nladdr
);
725 nladdr
->nl_pid
= nlk
->dst_pid
;
726 nladdr
->nl_groups
= netlink_group_mask(nlk
->dst_group
);
728 nladdr
->nl_pid
= nlk
->pid
;
729 nladdr
->nl_groups
= nlk
->groups
? nlk
->groups
[0] : 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
)
750 struct netlink_sock
*nlk
;
752 sock
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, pid
);
754 return ERR_PTR(-ECONNREFUSED
);
756 /* Don't bother queuing skb if kernel socket has no input function */
758 if (sock
->sk_state
== NETLINK_CONNECTED
&&
759 nlk
->dst_pid
!= nlk_sk(ssk
)->pid
) {
761 return ERR_PTR(-ECONNREFUSED
);
766 struct sock
*netlink_getsockbyfilp(struct file
*filp
)
768 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
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
);
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.
788 * < 0: error. skb freed, reference to sock dropped.
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
;
799 if (atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
800 test_bit(0, &nlk
->state
)) {
801 DECLARE_WAITQUEUE(wait
, current
);
803 if (!ssk
|| netlink_is_kernel(ssk
))
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
);
822 if (signal_pending(current
)) {
824 return sock_intr_errno(*timeo
);
828 skb_set_owner_r(skb
, sk
);
832 static int __netlink_sendskb(struct sock
*sk
, struct sk_buff
*skb
)
836 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
837 sk
->sk_data_ready(sk
, len
);
841 int netlink_sendskb(struct sock
*sk
, struct sk_buff
*skb
)
843 int len
= __netlink_sendskb(sk
, skb
);
849 void netlink_detachskb(struct sock
*sk
, struct sk_buff
*skb
)
855 static struct sk_buff
*netlink_trim(struct sk_buff
*skb
, gfp_t allocation
)
861 delta
= skb
->end
- skb
->tail
;
862 if (delta
* 2 < skb
->truesize
)
865 if (skb_shared(skb
)) {
866 struct sk_buff
*nskb
= skb_clone(skb
, allocation
);
873 if (!pskb_expand_head(skb
, 0, -delta
, allocation
))
874 skb
->truesize
-= delta
;
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
)
892 struct netlink_sock
*nlk
= nlk_sk(sk
);
895 if (nlk
->netlink_rcv
!= NULL
) {
897 skb_set_owner_r(skb
, sk
);
898 nlk
->netlink_rcv(skb
);
905 int netlink_unicast(struct sock
*ssk
, struct sk_buff
*skb
,
906 u32 pid
, int nonblock
)
912 skb
= netlink_trim(skb
, gfp_any());
914 timeo
= sock_sndtimeo(ssk
, nonblock
);
916 sk
= netlink_getsockbypid(ssk
, pid
);
921 if (netlink_is_kernel(sk
))
922 return netlink_unicast_kernel(sk
, skb
);
924 if (sk_filter(sk
, skb
)) {
931 err
= netlink_attachskb(sk
, skb
, &timeo
, ssk
);
937 return netlink_sendskb(sk
, skb
);
939 EXPORT_SYMBOL(netlink_unicast
);
941 int netlink_has_listeners(struct sock
*sk
, unsigned int group
)
944 struct listeners
*listeners
;
946 BUG_ON(!netlink_is_kernel(sk
));
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
);
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);
973 struct netlink_broadcast_data
{
974 struct sock
*exclude_sk
;
979 int delivery_failure
;
983 struct sk_buff
*skb
, *skb2
;
984 int (*tx_filter
)(struct sock
*dsk
, struct sk_buff
*skb
, void *data
);
988 static int do_one_broadcast(struct sock
*sk
,
989 struct netlink_broadcast_data
*p
)
991 struct netlink_sock
*nlk
= nlk_sk(sk
);
994 if (p
->exclude_sk
== sk
)
997 if (nlk
->pid
== p
->pid
|| p
->group
- 1 >= nlk
->ngroups
||
998 !test_bit(p
->group
- 1, nlk
->groups
))
1001 if (!net_eq(sock_net(sk
), p
->net
))
1005 netlink_overrun(sk
);
1010 if (p
->skb2
== NULL
) {
1011 if (skb_shared(p
->skb
)) {
1012 p
->skb2
= skb_clone(p
->skb
, p
->allocation
);
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. */
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
)) {
1031 } else if (sk_filter(sk
, p
->skb2
)) {
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;
1039 p
->congested
|= val
;
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
),
1054 struct net
*net
= sock_net(ssk
);
1055 struct netlink_broadcast_data info
;
1056 struct hlist_node
*node
;
1059 skb
= netlink_trim(skb
, allocation
);
1061 info
.exclude_sk
= ssk
;
1066 info
.delivery_failure
= 0;
1069 info
.allocation
= allocation
;
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
);
1084 netlink_unlock_table();
1086 if (info
.delivery_failure
) {
1087 kfree_skb(info
.skb2
);
1090 consume_skb(info
.skb2
);
1092 if (info
.delivered
) {
1093 if (info
.congested
&& (allocation
& __GFP_WAIT
))
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
,
1107 EXPORT_SYMBOL(netlink_broadcast
);
1109 struct netlink_set_err_data
{
1110 struct sock
*exclude_sk
;
1116 static int do_one_set_err(struct sock
*sk
, struct netlink_set_err_data
*p
)
1118 struct netlink_sock
*nlk
= nlk_sk(sk
);
1121 if (sk
== p
->exclude_sk
)
1124 if (!net_eq(sock_net(sk
), sock_net(p
->exclude_sk
)))
1127 if (nlk
->pid
== p
->pid
|| p
->group
- 1 >= nlk
->ngroups
||
1128 !test_bit(p
->group
- 1, nlk
->groups
))
1131 if (p
->code
== ENOBUFS
&& nlk
->flags
& NETLINK_RECV_NO_ENOBUFS
) {
1136 sk
->sk_err
= p
->code
;
1137 sk
->sk_error_report(sk
);
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
;
1159 info
.exclude_sk
= ssk
;
1162 /* sk->sk_err wants a positive error value */
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
);
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
,
1180 int old
, new = !!is_new
, subscriptions
;
1182 old
= test_bit(group
- 1, nlk
->groups
);
1183 subscriptions
= nlk
->subscriptions
- old
+ new;
1185 __set_bit(group
- 1, nlk
->groups
);
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;
1200 if (level
!= SOL_NETLINK
)
1201 return -ENOPROTOOPT
;
1203 if (optlen
>= sizeof(int) &&
1204 get_user(val
, (unsigned int __user
*)optval
))
1208 case NETLINK_PKTINFO
:
1210 nlk
->flags
|= NETLINK_RECV_PKTINFO
;
1212 nlk
->flags
&= ~NETLINK_RECV_PKTINFO
;
1215 case NETLINK_ADD_MEMBERSHIP
:
1216 case NETLINK_DROP_MEMBERSHIP
: {
1217 if (!netlink_capable(sock
, NL_NONROOT_RECV
))
1219 err
= netlink_realloc_groups(sk
);
1222 if (!val
|| val
- 1 >= nlk
->ngroups
)
1224 netlink_table_grab();
1225 netlink_update_socket_mc(nlk
, val
,
1226 optname
== NETLINK_ADD_MEMBERSHIP
);
1227 netlink_table_ungrab();
1231 case NETLINK_BROADCAST_ERROR
:
1233 nlk
->flags
|= NETLINK_BROADCAST_SEND_ERROR
;
1235 nlk
->flags
&= ~NETLINK_BROADCAST_SEND_ERROR
;
1238 case NETLINK_NO_ENOBUFS
:
1240 nlk
->flags
|= NETLINK_RECV_NO_ENOBUFS
;
1241 clear_bit(0, &nlk
->state
);
1242 wake_up_interruptible(&nlk
->wait
);
1244 nlk
->flags
&= ~NETLINK_RECV_NO_ENOBUFS
;
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
);
1260 if (level
!= SOL_NETLINK
)
1261 return -ENOPROTOOPT
;
1263 if (get_user(len
, optlen
))
1269 case NETLINK_PKTINFO
:
1270 if (len
< sizeof(int))
1273 val
= nlk
->flags
& NETLINK_RECV_PKTINFO
? 1 : 0;
1274 if (put_user(len
, optlen
) ||
1275 put_user(val
, optval
))
1279 case NETLINK_BROADCAST_ERROR
:
1280 if (len
< sizeof(int))
1283 val
= nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
? 1 : 0;
1284 if (put_user(len
, optlen
) ||
1285 put_user(val
, optval
))
1289 case NETLINK_NO_ENOBUFS
:
1290 if (len
< sizeof(int))
1293 val
= nlk
->flags
& NETLINK_RECV_NO_ENOBUFS
? 1 : 0;
1294 if (put_user(len
, optlen
) ||
1295 put_user(val
, optval
))
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
;
1322 struct sk_buff
*skb
;
1324 struct scm_cookie scm
;
1326 if (msg
->msg_flags
&MSG_OOB
)
1329 if (NULL
== siocb
->scm
)
1332 err
= scm_send(sock
, msg
, siocb
->scm
);
1336 if (msg
->msg_namelen
) {
1338 if (addr
->nl_family
!= AF_NETLINK
)
1340 dst_pid
= addr
->nl_pid
;
1341 dst_group
= ffs(addr
->nl_groups
);
1343 if (dst_group
&& !netlink_capable(sock
, NL_NONROOT_SEND
))
1346 dst_pid
= nlk
->dst_pid
;
1347 dst_group
= nlk
->dst_group
;
1351 err
= netlink_autobind(sock
);
1357 if (len
> sk
->sk_sndbuf
- 32)
1360 skb
= alloc_skb(len
, GFP_KERNEL
);
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
));
1369 if (memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
)) {
1374 err
= security_netlink_send(sk
, skb
);
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
);
1387 scm_destroy(siocb
->scm
);
1391 static int netlink_recvmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1392 struct msghdr
*msg
, size_t len
,
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
;
1401 struct sk_buff
*skb
, *data_skb
;
1409 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
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
;
1432 msg
->msg_namelen
= 0;
1434 copied
= data_skb
->len
;
1436 msg
->msg_flags
|= MSG_TRUNC
;
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
;
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
));
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
);
1469 sk
->sk_error_report(sk
);
1473 scm_recv(sock
, msg
, siocb
->scm
, flags
);
1475 netlink_rcv_wake(sk
);
1476 return err
? : copied
;
1479 static void netlink_data_ready(struct sock
*sk
, int len
)
1485 * We export these functions to other modules. They provide a
1486 * complete set of kernel non-blocking support for message
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
;
1497 struct netlink_sock
*nlk
;
1498 struct listeners
*listeners
= NULL
;
1502 if (unit
< 0 || unit
>= MAX_LINKS
)
1505 if (sock_create_lite(PF_NETLINK
, SOCK_DGRAM
, unit
, &sock
))
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
;
1518 sk_change_net(sk
, net
);
1523 listeners
= kzalloc(sizeof(*listeners
) + NLGRPSZ(groups
), GFP_KERNEL
);
1525 goto out_sock_release
;
1527 sk
->sk_data_ready
= netlink_data_ready
;
1529 nlk_sk(sk
)->netlink_rcv
= input
;
1531 if (netlink_insert(sk
, net
, 0))
1532 goto out_sock_release
;
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;
1546 nl_table
[unit
].registered
++;
1548 netlink_table_ungrab();
1553 netlink_kernel_release(sk
);
1556 out_sock_release_nosk
:
1560 EXPORT_SYMBOL(netlink_kernel_create
);
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
];
1578 if (NLGRPSZ(tbl
->groups
) < NLGRPSZ(groups
)) {
1579 new = kzalloc(sizeof(*new) + NLGRPSZ(groups
), GFP_ATOMIC
);
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
;
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
)
1609 netlink_table_grab();
1610 err
= __netlink_change_ngroups(sk
, groups
);
1611 netlink_table_ungrab();
1616 void __netlink_clear_multicast_users(struct sock
*ksk
, unsigned int group
)
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
)
1655 __nlmsg_put(struct sk_buff
*skb
, u32 pid
, u32 seq
, int type
, int len
, int flags
)
1657 struct nlmsghdr
*nlh
;
1658 int size
= NLMSG_LENGTH(len
);
1660 nlh
= (struct nlmsghdr
*)skb_put(skb
, NLMSG_ALIGN(size
));
1661 nlh
->nlmsg_type
= type
;
1662 nlh
->nlmsg_len
= size
;
1663 nlh
->nlmsg_flags
= flags
;
1664 nlh
->nlmsg_pid
= pid
;
1665 nlh
->nlmsg_seq
= seq
;
1666 if (!__builtin_constant_p(size
) || NLMSG_ALIGN(size
) - size
!= 0)
1667 memset(NLMSG_DATA(nlh
) + len
, 0, NLMSG_ALIGN(size
) - size
);
1670 EXPORT_SYMBOL(__nlmsg_put
);
1673 * It looks a bit ugly.
1674 * It would be better to create kernel thread.
1677 static int netlink_dump(struct sock
*sk
)
1679 struct netlink_sock
*nlk
= nlk_sk(sk
);
1680 struct netlink_callback
*cb
;
1681 struct sk_buff
*skb
= NULL
;
1682 struct nlmsghdr
*nlh
;
1683 int len
, err
= -ENOBUFS
;
1686 mutex_lock(nlk
->cb_mutex
);
1694 alloc_size
= max_t(int, cb
->min_dump_alloc
, NLMSG_GOODSIZE
);
1696 skb
= sock_rmalloc(sk
, alloc_size
, 0, GFP_KERNEL
);
1700 len
= cb
->dump(skb
, cb
);
1703 mutex_unlock(nlk
->cb_mutex
);
1705 if (sk_filter(sk
, skb
))
1708 __netlink_sendskb(sk
, skb
);
1712 nlh
= nlmsg_put_answer(skb
, cb
, NLMSG_DONE
, sizeof(len
), NLM_F_MULTI
);
1716 nl_dump_check_consistent(cb
, nlh
);
1718 memcpy(nlmsg_data(nlh
), &len
, sizeof(len
));
1720 if (sk_filter(sk
, skb
))
1723 __netlink_sendskb(sk
, skb
);
1728 mutex_unlock(nlk
->cb_mutex
);
1730 netlink_destroy_callback(cb
);
1734 mutex_unlock(nlk
->cb_mutex
);
1739 int netlink_dump_start(struct sock
*ssk
, struct sk_buff
*skb
,
1740 const struct nlmsghdr
*nlh
,
1741 struct netlink_dump_control
*control
)
1743 struct netlink_callback
*cb
;
1745 struct netlink_sock
*nlk
;
1748 cb
= kzalloc(sizeof(*cb
), GFP_KERNEL
);
1752 cb
->dump
= control
->dump
;
1753 cb
->done
= control
->done
;
1755 cb
->data
= control
->data
;
1756 cb
->min_dump_alloc
= control
->min_dump_alloc
;
1757 atomic_inc(&skb
->users
);
1760 sk
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, NETLINK_CB(skb
).pid
);
1762 netlink_destroy_callback(cb
);
1763 return -ECONNREFUSED
;
1766 /* A dump is in progress... */
1767 mutex_lock(nlk
->cb_mutex
);
1769 mutex_unlock(nlk
->cb_mutex
);
1770 netlink_destroy_callback(cb
);
1775 mutex_unlock(nlk
->cb_mutex
);
1777 ret
= netlink_dump(sk
);
1784 /* We successfully started a dump, by returning -EINTR we
1785 * signal not to send ACK even if it was requested.
1789 EXPORT_SYMBOL(netlink_dump_start
);
1791 void netlink_ack(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, int err
)
1793 struct sk_buff
*skb
;
1794 struct nlmsghdr
*rep
;
1795 struct nlmsgerr
*errmsg
;
1796 size_t payload
= sizeof(*errmsg
);
1798 /* error messages get the original request appened */
1800 payload
+= nlmsg_len(nlh
);
1802 skb
= nlmsg_new(payload
, GFP_KERNEL
);
1806 sk
= netlink_lookup(sock_net(in_skb
->sk
),
1807 in_skb
->sk
->sk_protocol
,
1808 NETLINK_CB(in_skb
).pid
);
1810 sk
->sk_err
= ENOBUFS
;
1811 sk
->sk_error_report(sk
);
1817 rep
= __nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, nlh
->nlmsg_seq
,
1818 NLMSG_ERROR
, payload
, 0);
1819 errmsg
= nlmsg_data(rep
);
1820 errmsg
->error
= err
;
1821 memcpy(&errmsg
->msg
, nlh
, err
? nlh
->nlmsg_len
: sizeof(*nlh
));
1822 netlink_unicast(in_skb
->sk
, skb
, NETLINK_CB(in_skb
).pid
, MSG_DONTWAIT
);
1824 EXPORT_SYMBOL(netlink_ack
);
1826 int netlink_rcv_skb(struct sk_buff
*skb
, int (*cb
)(struct sk_buff
*,
1829 struct nlmsghdr
*nlh
;
1832 while (skb
->len
>= nlmsg_total_size(0)) {
1835 nlh
= nlmsg_hdr(skb
);
1838 if (nlh
->nlmsg_len
< NLMSG_HDRLEN
|| skb
->len
< nlh
->nlmsg_len
)
1841 /* Only requests are handled by the kernel */
1842 if (!(nlh
->nlmsg_flags
& NLM_F_REQUEST
))
1845 /* Skip control messages */
1846 if (nlh
->nlmsg_type
< NLMSG_MIN_TYPE
)
1854 if (nlh
->nlmsg_flags
& NLM_F_ACK
|| err
)
1855 netlink_ack(skb
, nlh
, err
);
1858 msglen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
1859 if (msglen
> skb
->len
)
1861 skb_pull(skb
, msglen
);
1866 EXPORT_SYMBOL(netlink_rcv_skb
);
1869 * nlmsg_notify - send a notification netlink message
1870 * @sk: netlink socket to use
1871 * @skb: notification message
1872 * @pid: destination netlink pid for reports or 0
1873 * @group: destination multicast group or 0
1874 * @report: 1 to report back, 0 to disable
1875 * @flags: allocation flags
1877 int nlmsg_notify(struct sock
*sk
, struct sk_buff
*skb
, u32 pid
,
1878 unsigned int group
, int report
, gfp_t flags
)
1883 int exclude_pid
= 0;
1886 atomic_inc(&skb
->users
);
1890 /* errors reported via destination sk->sk_err, but propagate
1891 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1892 err
= nlmsg_multicast(sk
, skb
, exclude_pid
, group
, flags
);
1898 err2
= nlmsg_unicast(sk
, skb
, pid
);
1899 if (!err
|| err
== -ESRCH
)
1905 EXPORT_SYMBOL(nlmsg_notify
);
1907 #ifdef CONFIG_PROC_FS
1908 struct nl_seq_iter
{
1909 struct seq_net_private p
;
1914 static struct sock
*netlink_seq_socket_idx(struct seq_file
*seq
, loff_t pos
)
1916 struct nl_seq_iter
*iter
= seq
->private;
1919 struct hlist_node
*node
;
1922 for (i
= 0; i
< MAX_LINKS
; i
++) {
1923 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
1925 for (j
= 0; j
<= hash
->mask
; j
++) {
1926 sk_for_each(s
, node
, &hash
->table
[j
]) {
1927 if (sock_net(s
) != seq_file_net(seq
))
1941 static void *netlink_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1942 __acquires(nl_table_lock
)
1944 read_lock(&nl_table_lock
);
1945 return *pos
? netlink_seq_socket_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
1948 static void *netlink_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1951 struct nl_seq_iter
*iter
;
1956 if (v
== SEQ_START_TOKEN
)
1957 return netlink_seq_socket_idx(seq
, 0);
1959 iter
= seq
->private;
1963 } while (s
&& sock_net(s
) != seq_file_net(seq
));
1968 j
= iter
->hash_idx
+ 1;
1971 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
1973 for (; j
<= hash
->mask
; j
++) {
1974 s
= sk_head(&hash
->table
[j
]);
1975 while (s
&& sock_net(s
) != seq_file_net(seq
))
1985 } while (++i
< MAX_LINKS
);
1990 static void netlink_seq_stop(struct seq_file
*seq
, void *v
)
1991 __releases(nl_table_lock
)
1993 read_unlock(&nl_table_lock
);
1997 static int netlink_seq_show(struct seq_file
*seq
, void *v
)
1999 if (v
== SEQ_START_TOKEN
)
2001 "sk Eth Pid Groups "
2002 "Rmem Wmem Dump Locks Drops Inode\n");
2005 struct netlink_sock
*nlk
= nlk_sk(s
);
2007 seq_printf(seq
, "%pK %-3d %-6d %08x %-8d %-8d %pK %-8d %-8d %-8lu\n",
2011 nlk
->groups
? (u32
)nlk
->groups
[0] : 0,
2012 sk_rmem_alloc_get(s
),
2013 sk_wmem_alloc_get(s
),
2015 atomic_read(&s
->sk_refcnt
),
2016 atomic_read(&s
->sk_drops
),
2024 static const struct seq_operations netlink_seq_ops
= {
2025 .start
= netlink_seq_start
,
2026 .next
= netlink_seq_next
,
2027 .stop
= netlink_seq_stop
,
2028 .show
= netlink_seq_show
,
2032 static int netlink_seq_open(struct inode
*inode
, struct file
*file
)
2034 return seq_open_net(inode
, file
, &netlink_seq_ops
,
2035 sizeof(struct nl_seq_iter
));
2038 static const struct file_operations netlink_seq_fops
= {
2039 .owner
= THIS_MODULE
,
2040 .open
= netlink_seq_open
,
2042 .llseek
= seq_lseek
,
2043 .release
= seq_release_net
,
2048 int netlink_register_notifier(struct notifier_block
*nb
)
2050 return atomic_notifier_chain_register(&netlink_chain
, nb
);
2052 EXPORT_SYMBOL(netlink_register_notifier
);
2054 int netlink_unregister_notifier(struct notifier_block
*nb
)
2056 return atomic_notifier_chain_unregister(&netlink_chain
, nb
);
2058 EXPORT_SYMBOL(netlink_unregister_notifier
);
2060 static const struct proto_ops netlink_ops
= {
2061 .family
= PF_NETLINK
,
2062 .owner
= THIS_MODULE
,
2063 .release
= netlink_release
,
2064 .bind
= netlink_bind
,
2065 .connect
= netlink_connect
,
2066 .socketpair
= sock_no_socketpair
,
2067 .accept
= sock_no_accept
,
2068 .getname
= netlink_getname
,
2069 .poll
= datagram_poll
,
2070 .ioctl
= sock_no_ioctl
,
2071 .listen
= sock_no_listen
,
2072 .shutdown
= sock_no_shutdown
,
2073 .setsockopt
= netlink_setsockopt
,
2074 .getsockopt
= netlink_getsockopt
,
2075 .sendmsg
= netlink_sendmsg
,
2076 .recvmsg
= netlink_recvmsg
,
2077 .mmap
= sock_no_mmap
,
2078 .sendpage
= sock_no_sendpage
,
2081 static const struct net_proto_family netlink_family_ops
= {
2082 .family
= PF_NETLINK
,
2083 .create
= netlink_create
,
2084 .owner
= THIS_MODULE
, /* for consistency 8) */
2087 static int __net_init
netlink_net_init(struct net
*net
)
2089 #ifdef CONFIG_PROC_FS
2090 if (!proc_net_fops_create(net
, "netlink", 0, &netlink_seq_fops
))
2096 static void __net_exit
netlink_net_exit(struct net
*net
)
2098 #ifdef CONFIG_PROC_FS
2099 proc_net_remove(net
, "netlink");
2103 static void __init
netlink_add_usersock_entry(void)
2105 struct listeners
*listeners
;
2108 listeners
= kzalloc(sizeof(*listeners
) + NLGRPSZ(groups
), GFP_KERNEL
);
2110 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
2112 netlink_table_grab();
2114 nl_table
[NETLINK_USERSOCK
].groups
= groups
;
2115 rcu_assign_pointer(nl_table
[NETLINK_USERSOCK
].listeners
, listeners
);
2116 nl_table
[NETLINK_USERSOCK
].module
= THIS_MODULE
;
2117 nl_table
[NETLINK_USERSOCK
].registered
= 1;
2119 netlink_table_ungrab();
2122 static struct pernet_operations __net_initdata netlink_net_ops
= {
2123 .init
= netlink_net_init
,
2124 .exit
= netlink_net_exit
,
2127 static int __init
netlink_proto_init(void)
2129 struct sk_buff
*dummy_skb
;
2131 unsigned long limit
;
2133 int err
= proto_register(&netlink_proto
, 0);
2138 BUILD_BUG_ON(sizeof(struct netlink_skb_parms
) > sizeof(dummy_skb
->cb
));
2140 nl_table
= kcalloc(MAX_LINKS
, sizeof(*nl_table
), GFP_KERNEL
);
2144 if (totalram_pages
>= (128 * 1024))
2145 limit
= totalram_pages
>> (21 - PAGE_SHIFT
);
2147 limit
= totalram_pages
>> (23 - PAGE_SHIFT
);
2149 order
= get_bitmask_order(limit
) - 1 + PAGE_SHIFT
;
2150 limit
= (1UL << order
) / sizeof(struct hlist_head
);
2151 order
= get_bitmask_order(min(limit
, (unsigned long)UINT_MAX
)) - 1;
2153 for (i
= 0; i
< MAX_LINKS
; i
++) {
2154 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
2156 hash
->table
= nl_pid_hash_zalloc(1 * sizeof(*hash
->table
));
2159 nl_pid_hash_free(nl_table
[i
].hash
.table
,
2160 1 * sizeof(*hash
->table
));
2164 hash
->max_shift
= order
;
2167 hash
->rehash_time
= jiffies
;
2170 netlink_add_usersock_entry();
2172 sock_register(&netlink_family_ops
);
2173 register_pernet_subsys(&netlink_net_ops
);
2174 /* The netlink device handler may be needed early. */
2179 panic("netlink_init: Cannot allocate nl_table\n");
2182 core_initcall(netlink_proto_init
);