2 * NETLINK Kernel-user communication protocol.
4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
5 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6 * Patrick McHardy <kaber@trash.net>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
13 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
14 * added netlink_proto_exit
15 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
16 * use nlk_sk, as sk->protinfo is on a diet 8)
17 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
18 * - inc module use count of module that owns
19 * the kernel socket in case userspace opens
20 * socket of same protocol
21 * - remove all module support, since netlink is
22 * mandatory if CONFIG_NET=y these days
25 #include <linux/module.h>
27 #include <linux/capability.h>
28 #include <linux/kernel.h>
29 #include <linux/init.h>
30 #include <linux/signal.h>
31 #include <linux/sched.h>
32 #include <linux/errno.h>
33 #include <linux/string.h>
34 #include <linux/stat.h>
35 #include <linux/socket.h>
37 #include <linux/fcntl.h>
38 #include <linux/termios.h>
39 #include <linux/sockios.h>
40 #include <linux/net.h>
42 #include <linux/slab.h>
43 #include <asm/uaccess.h>
44 #include <linux/skbuff.h>
45 #include <linux/netdevice.h>
46 #include <linux/rtnetlink.h>
47 #include <linux/proc_fs.h>
48 #include <linux/seq_file.h>
49 #include <linux/notifier.h>
50 #include <linux/security.h>
51 #include <linux/jhash.h>
52 #include <linux/jiffies.h>
53 #include <linux/random.h>
54 #include <linux/bitops.h>
56 #include <linux/types.h>
57 #include <linux/audit.h>
58 #include <linux/mutex.h>
59 #include <linux/vmalloc.h>
60 #include <linux/if_arp.h>
61 #include <linux/rhashtable.h>
62 #include <asm/cacheflush.h>
63 #include <linux/hash.h>
64 #include <linux/genetlink.h>
66 #include <net/net_namespace.h>
69 #include <net/netlink.h>
71 #include "af_netlink.h"
75 unsigned long masks
[0];
79 #define NETLINK_S_CONGESTED 0x0
82 #define NETLINK_F_KERNEL_SOCKET 0x1
83 #define NETLINK_F_RECV_PKTINFO 0x2
84 #define NETLINK_F_BROADCAST_SEND_ERROR 0x4
85 #define NETLINK_F_RECV_NO_ENOBUFS 0x8
86 #define NETLINK_F_LISTEN_ALL_NSID 0x10
88 static inline int netlink_is_kernel(struct sock
*sk
)
90 return nlk_sk(sk
)->flags
& NETLINK_F_KERNEL_SOCKET
;
93 struct netlink_table
*nl_table __read_mostly
;
94 EXPORT_SYMBOL_GPL(nl_table
);
96 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait
);
98 static int netlink_dump(struct sock
*sk
);
99 static void netlink_skb_destructor(struct sk_buff
*skb
);
101 /* nl_table locking explained:
102 * Lookup and traversal are protected with an RCU read-side lock. Insertion
103 * and removal are protected with per bucket lock while using RCU list
104 * modification primitives and may run in parallel to RCU protected lookups.
105 * Destruction of the Netlink socket may only occur *after* nl_table_lock has
106 * been acquired * either during or after the socket has been removed from
107 * the list and after an RCU grace period.
109 DEFINE_RWLOCK(nl_table_lock
);
110 EXPORT_SYMBOL_GPL(nl_table_lock
);
111 static atomic_t nl_table_users
= ATOMIC_INIT(0);
113 #define nl_deref_protected(X) rcu_dereference_protected(X, lockdep_is_held(&nl_table_lock));
115 static ATOMIC_NOTIFIER_HEAD(netlink_chain
);
117 static DEFINE_SPINLOCK(netlink_tap_lock
);
118 static struct list_head netlink_tap_all __read_mostly
;
120 static const struct rhashtable_params netlink_rhashtable_params
;
122 static inline u32
netlink_group_mask(u32 group
)
124 return group
? 1 << (group
- 1) : 0;
127 int netlink_add_tap(struct netlink_tap
*nt
)
129 if (unlikely(nt
->dev
->type
!= ARPHRD_NETLINK
))
132 spin_lock(&netlink_tap_lock
);
133 list_add_rcu(&nt
->list
, &netlink_tap_all
);
134 spin_unlock(&netlink_tap_lock
);
136 __module_get(nt
->module
);
140 EXPORT_SYMBOL_GPL(netlink_add_tap
);
142 static int __netlink_remove_tap(struct netlink_tap
*nt
)
145 struct netlink_tap
*tmp
;
147 spin_lock(&netlink_tap_lock
);
149 list_for_each_entry(tmp
, &netlink_tap_all
, list
) {
151 list_del_rcu(&nt
->list
);
157 pr_warn("__netlink_remove_tap: %p not found\n", nt
);
159 spin_unlock(&netlink_tap_lock
);
162 module_put(nt
->module
);
164 return found
? 0 : -ENODEV
;
167 int netlink_remove_tap(struct netlink_tap
*nt
)
171 ret
= __netlink_remove_tap(nt
);
176 EXPORT_SYMBOL_GPL(netlink_remove_tap
);
178 static bool netlink_filter_tap(const struct sk_buff
*skb
)
180 struct sock
*sk
= skb
->sk
;
182 /* We take the more conservative approach and
183 * whitelist socket protocols that may pass.
185 switch (sk
->sk_protocol
) {
187 case NETLINK_USERSOCK
:
188 case NETLINK_SOCK_DIAG
:
191 case NETLINK_FIB_LOOKUP
:
192 case NETLINK_NETFILTER
:
193 case NETLINK_GENERIC
:
200 static int __netlink_deliver_tap_skb(struct sk_buff
*skb
,
201 struct net_device
*dev
)
203 struct sk_buff
*nskb
;
204 struct sock
*sk
= skb
->sk
;
208 nskb
= skb_clone(skb
, GFP_ATOMIC
);
211 nskb
->protocol
= htons((u16
) sk
->sk_protocol
);
212 nskb
->pkt_type
= netlink_is_kernel(sk
) ?
213 PACKET_KERNEL
: PACKET_USER
;
214 skb_reset_network_header(nskb
);
215 ret
= dev_queue_xmit(nskb
);
216 if (unlikely(ret
> 0))
217 ret
= net_xmit_errno(ret
);
224 static void __netlink_deliver_tap(struct sk_buff
*skb
)
227 struct netlink_tap
*tmp
;
229 if (!netlink_filter_tap(skb
))
232 list_for_each_entry_rcu(tmp
, &netlink_tap_all
, list
) {
233 ret
= __netlink_deliver_tap_skb(skb
, tmp
->dev
);
239 static void netlink_deliver_tap(struct sk_buff
*skb
)
243 if (unlikely(!list_empty(&netlink_tap_all
)))
244 __netlink_deliver_tap(skb
);
249 static void netlink_deliver_tap_kernel(struct sock
*dst
, struct sock
*src
,
252 if (!(netlink_is_kernel(dst
) && netlink_is_kernel(src
)))
253 netlink_deliver_tap(skb
);
256 static void netlink_overrun(struct sock
*sk
)
258 struct netlink_sock
*nlk
= nlk_sk(sk
);
260 if (!(nlk
->flags
& NETLINK_F_RECV_NO_ENOBUFS
)) {
261 if (!test_and_set_bit(NETLINK_S_CONGESTED
,
262 &nlk_sk(sk
)->state
)) {
263 sk
->sk_err
= ENOBUFS
;
264 sk
->sk_error_report(sk
);
267 atomic_inc(&sk
->sk_drops
);
270 static void netlink_rcv_wake(struct sock
*sk
)
272 struct netlink_sock
*nlk
= nlk_sk(sk
);
274 if (skb_queue_empty(&sk
->sk_receive_queue
))
275 clear_bit(NETLINK_S_CONGESTED
, &nlk
->state
);
276 if (!test_bit(NETLINK_S_CONGESTED
, &nlk
->state
))
277 wake_up_interruptible(&nlk
->wait
);
280 #ifdef CONFIG_NETLINK_MMAP
281 static bool netlink_skb_is_mmaped(const struct sk_buff
*skb
)
283 return NETLINK_CB(skb
).flags
& NETLINK_SKB_MMAPED
;
286 static bool netlink_rx_is_mmaped(struct sock
*sk
)
288 return nlk_sk(sk
)->rx_ring
.pg_vec
!= NULL
;
291 static bool netlink_tx_is_mmaped(struct sock
*sk
)
293 return nlk_sk(sk
)->tx_ring
.pg_vec
!= NULL
;
296 static __pure
struct page
*pgvec_to_page(const void *addr
)
298 if (is_vmalloc_addr(addr
))
299 return vmalloc_to_page(addr
);
301 return virt_to_page(addr
);
304 static void free_pg_vec(void **pg_vec
, unsigned int order
, unsigned int len
)
308 for (i
= 0; i
< len
; i
++) {
309 if (pg_vec
[i
] != NULL
) {
310 if (is_vmalloc_addr(pg_vec
[i
]))
313 free_pages((unsigned long)pg_vec
[i
], order
);
319 static void *alloc_one_pg_vec_page(unsigned long order
)
322 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_COMP
| __GFP_ZERO
|
323 __GFP_NOWARN
| __GFP_NORETRY
;
325 buffer
= (void *)__get_free_pages(gfp_flags
, order
);
329 buffer
= vzalloc((1 << order
) * PAGE_SIZE
);
333 gfp_flags
&= ~__GFP_NORETRY
;
334 return (void *)__get_free_pages(gfp_flags
, order
);
337 static void **alloc_pg_vec(struct netlink_sock
*nlk
,
338 struct nl_mmap_req
*req
, unsigned int order
)
340 unsigned int block_nr
= req
->nm_block_nr
;
344 pg_vec
= kcalloc(block_nr
, sizeof(void *), GFP_KERNEL
);
348 for (i
= 0; i
< block_nr
; i
++) {
349 pg_vec
[i
] = alloc_one_pg_vec_page(order
);
350 if (pg_vec
[i
] == NULL
)
356 free_pg_vec(pg_vec
, order
, block_nr
);
362 __netlink_set_ring(struct sock
*sk
, struct nl_mmap_req
*req
, bool tx_ring
, void **pg_vec
,
365 struct netlink_sock
*nlk
= nlk_sk(sk
);
366 struct sk_buff_head
*queue
;
367 struct netlink_ring
*ring
;
369 queue
= tx_ring
? &sk
->sk_write_queue
: &sk
->sk_receive_queue
;
370 ring
= tx_ring
? &nlk
->tx_ring
: &nlk
->rx_ring
;
372 spin_lock_bh(&queue
->lock
);
374 ring
->frame_max
= req
->nm_frame_nr
- 1;
376 ring
->frame_size
= req
->nm_frame_size
;
377 ring
->pg_vec_pages
= req
->nm_block_size
/ PAGE_SIZE
;
379 swap(ring
->pg_vec_len
, req
->nm_block_nr
);
380 swap(ring
->pg_vec_order
, order
);
381 swap(ring
->pg_vec
, pg_vec
);
383 __skb_queue_purge(queue
);
384 spin_unlock_bh(&queue
->lock
);
386 WARN_ON(atomic_read(&nlk
->mapped
));
389 free_pg_vec(pg_vec
, order
, req
->nm_block_nr
);
392 static int netlink_set_ring(struct sock
*sk
, struct nl_mmap_req
*req
,
395 struct netlink_sock
*nlk
= nlk_sk(sk
);
396 struct netlink_ring
*ring
;
397 void **pg_vec
= NULL
;
398 unsigned int order
= 0;
400 ring
= tx_ring
? &nlk
->tx_ring
: &nlk
->rx_ring
;
402 if (atomic_read(&nlk
->mapped
))
404 if (atomic_read(&ring
->pending
))
407 if (req
->nm_block_nr
) {
408 if (ring
->pg_vec
!= NULL
)
411 if ((int)req
->nm_block_size
<= 0)
413 if (!PAGE_ALIGNED(req
->nm_block_size
))
415 if (req
->nm_frame_size
< NL_MMAP_HDRLEN
)
417 if (!IS_ALIGNED(req
->nm_frame_size
, NL_MMAP_MSG_ALIGNMENT
))
420 ring
->frames_per_block
= req
->nm_block_size
/
422 if (ring
->frames_per_block
== 0)
424 if (ring
->frames_per_block
* req
->nm_block_nr
!=
428 order
= get_order(req
->nm_block_size
);
429 pg_vec
= alloc_pg_vec(nlk
, req
, order
);
433 if (req
->nm_frame_nr
)
437 mutex_lock(&nlk
->pg_vec_lock
);
438 if (atomic_read(&nlk
->mapped
) == 0) {
439 __netlink_set_ring(sk
, req
, tx_ring
, pg_vec
, order
);
440 mutex_unlock(&nlk
->pg_vec_lock
);
444 mutex_unlock(&nlk
->pg_vec_lock
);
447 free_pg_vec(pg_vec
, order
, req
->nm_block_nr
);
452 static void netlink_mm_open(struct vm_area_struct
*vma
)
454 struct file
*file
= vma
->vm_file
;
455 struct socket
*sock
= file
->private_data
;
456 struct sock
*sk
= sock
->sk
;
459 atomic_inc(&nlk_sk(sk
)->mapped
);
462 static void netlink_mm_close(struct vm_area_struct
*vma
)
464 struct file
*file
= vma
->vm_file
;
465 struct socket
*sock
= file
->private_data
;
466 struct sock
*sk
= sock
->sk
;
469 atomic_dec(&nlk_sk(sk
)->mapped
);
472 static const struct vm_operations_struct netlink_mmap_ops
= {
473 .open
= netlink_mm_open
,
474 .close
= netlink_mm_close
,
477 static int netlink_mmap(struct file
*file
, struct socket
*sock
,
478 struct vm_area_struct
*vma
)
480 struct sock
*sk
= sock
->sk
;
481 struct netlink_sock
*nlk
= nlk_sk(sk
);
482 struct netlink_ring
*ring
;
483 unsigned long start
, size
, expected
;
490 mutex_lock(&nlk
->pg_vec_lock
);
493 for (ring
= &nlk
->rx_ring
; ring
<= &nlk
->tx_ring
; ring
++) {
494 if (ring
->pg_vec
== NULL
)
496 expected
+= ring
->pg_vec_len
* ring
->pg_vec_pages
* PAGE_SIZE
;
502 size
= vma
->vm_end
- vma
->vm_start
;
503 if (size
!= expected
)
506 start
= vma
->vm_start
;
507 for (ring
= &nlk
->rx_ring
; ring
<= &nlk
->tx_ring
; ring
++) {
508 if (ring
->pg_vec
== NULL
)
511 for (i
= 0; i
< ring
->pg_vec_len
; i
++) {
513 void *kaddr
= ring
->pg_vec
[i
];
516 for (pg_num
= 0; pg_num
< ring
->pg_vec_pages
; pg_num
++) {
517 page
= pgvec_to_page(kaddr
);
518 err
= vm_insert_page(vma
, start
, page
);
527 atomic_inc(&nlk
->mapped
);
528 vma
->vm_ops
= &netlink_mmap_ops
;
531 mutex_unlock(&nlk
->pg_vec_lock
);
535 static void netlink_frame_flush_dcache(const struct nl_mmap_hdr
*hdr
, unsigned int nm_len
)
537 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
538 struct page
*p_start
, *p_end
;
540 /* First page is flushed through netlink_{get,set}_status */
541 p_start
= pgvec_to_page(hdr
+ PAGE_SIZE
);
542 p_end
= pgvec_to_page((void *)hdr
+ NL_MMAP_HDRLEN
+ nm_len
- 1);
543 while (p_start
<= p_end
) {
544 flush_dcache_page(p_start
);
550 static enum nl_mmap_status
netlink_get_status(const struct nl_mmap_hdr
*hdr
)
553 flush_dcache_page(pgvec_to_page(hdr
));
554 return hdr
->nm_status
;
557 static void netlink_set_status(struct nl_mmap_hdr
*hdr
,
558 enum nl_mmap_status status
)
561 hdr
->nm_status
= status
;
562 flush_dcache_page(pgvec_to_page(hdr
));
565 static struct nl_mmap_hdr
*
566 __netlink_lookup_frame(const struct netlink_ring
*ring
, unsigned int pos
)
568 unsigned int pg_vec_pos
, frame_off
;
570 pg_vec_pos
= pos
/ ring
->frames_per_block
;
571 frame_off
= pos
% ring
->frames_per_block
;
573 return ring
->pg_vec
[pg_vec_pos
] + (frame_off
* ring
->frame_size
);
576 static struct nl_mmap_hdr
*
577 netlink_lookup_frame(const struct netlink_ring
*ring
, unsigned int pos
,
578 enum nl_mmap_status status
)
580 struct nl_mmap_hdr
*hdr
;
582 hdr
= __netlink_lookup_frame(ring
, pos
);
583 if (netlink_get_status(hdr
) != status
)
589 static struct nl_mmap_hdr
*
590 netlink_current_frame(const struct netlink_ring
*ring
,
591 enum nl_mmap_status status
)
593 return netlink_lookup_frame(ring
, ring
->head
, status
);
596 static struct nl_mmap_hdr
*
597 netlink_previous_frame(const struct netlink_ring
*ring
,
598 enum nl_mmap_status status
)
602 prev
= ring
->head
? ring
->head
- 1 : ring
->frame_max
;
603 return netlink_lookup_frame(ring
, prev
, status
);
606 static void netlink_increment_head(struct netlink_ring
*ring
)
608 ring
->head
= ring
->head
!= ring
->frame_max
? ring
->head
+ 1 : 0;
611 static void netlink_forward_ring(struct netlink_ring
*ring
)
613 unsigned int head
= ring
->head
, pos
= head
;
614 const struct nl_mmap_hdr
*hdr
;
617 hdr
= __netlink_lookup_frame(ring
, pos
);
618 if (hdr
->nm_status
== NL_MMAP_STATUS_UNUSED
)
620 if (hdr
->nm_status
!= NL_MMAP_STATUS_SKIP
)
622 netlink_increment_head(ring
);
623 } while (ring
->head
!= head
);
626 static bool netlink_dump_space(struct netlink_sock
*nlk
)
628 struct netlink_ring
*ring
= &nlk
->rx_ring
;
629 struct nl_mmap_hdr
*hdr
;
632 hdr
= netlink_current_frame(ring
, NL_MMAP_STATUS_UNUSED
);
636 n
= ring
->head
+ ring
->frame_max
/ 2;
637 if (n
> ring
->frame_max
)
638 n
-= ring
->frame_max
;
640 hdr
= __netlink_lookup_frame(ring
, n
);
642 return hdr
->nm_status
== NL_MMAP_STATUS_UNUSED
;
645 static unsigned int netlink_poll(struct file
*file
, struct socket
*sock
,
648 struct sock
*sk
= sock
->sk
;
649 struct netlink_sock
*nlk
= nlk_sk(sk
);
653 if (nlk
->rx_ring
.pg_vec
!= NULL
) {
654 /* Memory mapped sockets don't call recvmsg(), so flow control
655 * for dumps is performed here. A dump is allowed to continue
656 * if at least half the ring is unused.
658 while (nlk
->cb_running
&& netlink_dump_space(nlk
)) {
659 err
= netlink_dump(sk
);
662 sk
->sk_error_report(sk
);
666 netlink_rcv_wake(sk
);
669 mask
= datagram_poll(file
, sock
, wait
);
671 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
672 if (nlk
->rx_ring
.pg_vec
) {
673 netlink_forward_ring(&nlk
->rx_ring
);
674 if (!netlink_previous_frame(&nlk
->rx_ring
, NL_MMAP_STATUS_UNUSED
))
675 mask
|= POLLIN
| POLLRDNORM
;
677 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
679 spin_lock_bh(&sk
->sk_write_queue
.lock
);
680 if (nlk
->tx_ring
.pg_vec
) {
681 if (netlink_current_frame(&nlk
->tx_ring
, NL_MMAP_STATUS_UNUSED
))
682 mask
|= POLLOUT
| POLLWRNORM
;
684 spin_unlock_bh(&sk
->sk_write_queue
.lock
);
689 static struct nl_mmap_hdr
*netlink_mmap_hdr(struct sk_buff
*skb
)
691 return (struct nl_mmap_hdr
*)(skb
->head
- NL_MMAP_HDRLEN
);
694 static void netlink_ring_setup_skb(struct sk_buff
*skb
, struct sock
*sk
,
695 struct netlink_ring
*ring
,
696 struct nl_mmap_hdr
*hdr
)
701 size
= ring
->frame_size
- NL_MMAP_HDRLEN
;
702 data
= (void *)hdr
+ NL_MMAP_HDRLEN
;
706 skb_reset_tail_pointer(skb
);
707 skb
->end
= skb
->tail
+ size
;
710 skb
->destructor
= netlink_skb_destructor
;
711 NETLINK_CB(skb
).flags
|= NETLINK_SKB_MMAPED
;
712 NETLINK_CB(skb
).sk
= sk
;
715 static int netlink_mmap_sendmsg(struct sock
*sk
, struct msghdr
*msg
,
716 u32 dst_portid
, u32 dst_group
,
717 struct scm_cookie
*scm
)
719 struct netlink_sock
*nlk
= nlk_sk(sk
);
720 struct netlink_ring
*ring
;
721 struct nl_mmap_hdr
*hdr
;
724 int err
= 0, len
= 0;
726 mutex_lock(&nlk
->pg_vec_lock
);
728 ring
= &nlk
->tx_ring
;
729 maxlen
= ring
->frame_size
- NL_MMAP_HDRLEN
;
734 hdr
= netlink_current_frame(ring
, NL_MMAP_STATUS_VALID
);
736 if (!(msg
->msg_flags
& MSG_DONTWAIT
) &&
737 atomic_read(&nlk
->tx_ring
.pending
))
742 nm_len
= ACCESS_ONCE(hdr
->nm_len
);
743 if (nm_len
> maxlen
) {
748 netlink_frame_flush_dcache(hdr
, nm_len
);
750 skb
= alloc_skb(nm_len
, GFP_KERNEL
);
755 __skb_put(skb
, nm_len
);
756 memcpy(skb
->data
, (void *)hdr
+ NL_MMAP_HDRLEN
, nm_len
);
757 netlink_set_status(hdr
, NL_MMAP_STATUS_UNUSED
);
759 netlink_increment_head(ring
);
761 NETLINK_CB(skb
).portid
= nlk
->portid
;
762 NETLINK_CB(skb
).dst_group
= dst_group
;
763 NETLINK_CB(skb
).creds
= scm
->creds
;
765 err
= security_netlink_send(sk
, skb
);
771 if (unlikely(dst_group
)) {
772 atomic_inc(&skb
->users
);
773 netlink_broadcast(sk
, skb
, dst_portid
, dst_group
,
776 err
= netlink_unicast(sk
, skb
, dst_portid
,
777 msg
->msg_flags
& MSG_DONTWAIT
);
782 } while (hdr
!= NULL
||
783 (!(msg
->msg_flags
& MSG_DONTWAIT
) &&
784 atomic_read(&nlk
->tx_ring
.pending
)));
789 mutex_unlock(&nlk
->pg_vec_lock
);
793 static void netlink_queue_mmaped_skb(struct sock
*sk
, struct sk_buff
*skb
)
795 struct nl_mmap_hdr
*hdr
;
797 hdr
= netlink_mmap_hdr(skb
);
798 hdr
->nm_len
= skb
->len
;
799 hdr
->nm_group
= NETLINK_CB(skb
).dst_group
;
800 hdr
->nm_pid
= NETLINK_CB(skb
).creds
.pid
;
801 hdr
->nm_uid
= from_kuid(sk_user_ns(sk
), NETLINK_CB(skb
).creds
.uid
);
802 hdr
->nm_gid
= from_kgid(sk_user_ns(sk
), NETLINK_CB(skb
).creds
.gid
);
803 netlink_frame_flush_dcache(hdr
, hdr
->nm_len
);
804 netlink_set_status(hdr
, NL_MMAP_STATUS_VALID
);
806 NETLINK_CB(skb
).flags
|= NETLINK_SKB_DELIVERED
;
810 static void netlink_ring_set_copied(struct sock
*sk
, struct sk_buff
*skb
)
812 struct netlink_sock
*nlk
= nlk_sk(sk
);
813 struct netlink_ring
*ring
= &nlk
->rx_ring
;
814 struct nl_mmap_hdr
*hdr
;
816 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
817 hdr
= netlink_current_frame(ring
, NL_MMAP_STATUS_UNUSED
);
819 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
824 netlink_increment_head(ring
);
825 __skb_queue_tail(&sk
->sk_receive_queue
, skb
);
826 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
828 hdr
->nm_len
= skb
->len
;
829 hdr
->nm_group
= NETLINK_CB(skb
).dst_group
;
830 hdr
->nm_pid
= NETLINK_CB(skb
).creds
.pid
;
831 hdr
->nm_uid
= from_kuid(sk_user_ns(sk
), NETLINK_CB(skb
).creds
.uid
);
832 hdr
->nm_gid
= from_kgid(sk_user_ns(sk
), NETLINK_CB(skb
).creds
.gid
);
833 netlink_set_status(hdr
, NL_MMAP_STATUS_COPY
);
836 #else /* CONFIG_NETLINK_MMAP */
837 #define netlink_skb_is_mmaped(skb) false
838 #define netlink_rx_is_mmaped(sk) false
839 #define netlink_tx_is_mmaped(sk) false
840 #define netlink_mmap sock_no_mmap
841 #define netlink_poll datagram_poll
842 #define netlink_mmap_sendmsg(sk, msg, dst_portid, dst_group, scm) 0
843 #endif /* CONFIG_NETLINK_MMAP */
845 static void netlink_skb_destructor(struct sk_buff
*skb
)
847 #ifdef CONFIG_NETLINK_MMAP
848 struct nl_mmap_hdr
*hdr
;
849 struct netlink_ring
*ring
;
852 /* If a packet from the kernel to userspace was freed because of an
853 * error without being delivered to userspace, the kernel must reset
854 * the status. In the direction userspace to kernel, the status is
855 * always reset here after the packet was processed and freed.
857 if (netlink_skb_is_mmaped(skb
)) {
858 hdr
= netlink_mmap_hdr(skb
);
859 sk
= NETLINK_CB(skb
).sk
;
861 if (NETLINK_CB(skb
).flags
& NETLINK_SKB_TX
) {
862 netlink_set_status(hdr
, NL_MMAP_STATUS_UNUSED
);
863 ring
= &nlk_sk(sk
)->tx_ring
;
865 if (!(NETLINK_CB(skb
).flags
& NETLINK_SKB_DELIVERED
)) {
867 netlink_set_status(hdr
, NL_MMAP_STATUS_VALID
);
869 ring
= &nlk_sk(sk
)->rx_ring
;
872 WARN_ON(atomic_read(&ring
->pending
) == 0);
873 atomic_dec(&ring
->pending
);
879 if (is_vmalloc_addr(skb
->head
)) {
881 !atomic_dec_return(&(skb_shinfo(skb
)->dataref
)))
890 static void netlink_skb_set_owner_r(struct sk_buff
*skb
, struct sock
*sk
)
892 WARN_ON(skb
->sk
!= NULL
);
894 skb
->destructor
= netlink_skb_destructor
;
895 atomic_add(skb
->truesize
, &sk
->sk_rmem_alloc
);
896 sk_mem_charge(sk
, skb
->truesize
);
899 static void netlink_sock_destruct(struct sock
*sk
)
901 struct netlink_sock
*nlk
= nlk_sk(sk
);
903 if (nlk
->cb_running
) {
905 nlk
->cb
.done(&nlk
->cb
);
907 module_put(nlk
->cb
.module
);
908 kfree_skb(nlk
->cb
.skb
);
911 skb_queue_purge(&sk
->sk_receive_queue
);
912 #ifdef CONFIG_NETLINK_MMAP
914 struct nl_mmap_req req
;
916 memset(&req
, 0, sizeof(req
));
917 if (nlk
->rx_ring
.pg_vec
)
918 __netlink_set_ring(sk
, &req
, false, NULL
, 0);
919 memset(&req
, 0, sizeof(req
));
920 if (nlk
->tx_ring
.pg_vec
)
921 __netlink_set_ring(sk
, &req
, true, NULL
, 0);
923 #endif /* CONFIG_NETLINK_MMAP */
925 if (!sock_flag(sk
, SOCK_DEAD
)) {
926 printk(KERN_ERR
"Freeing alive netlink socket %p\n", sk
);
930 WARN_ON(atomic_read(&sk
->sk_rmem_alloc
));
931 WARN_ON(atomic_read(&sk
->sk_wmem_alloc
));
932 WARN_ON(nlk_sk(sk
)->groups
);
935 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
936 * SMP. Look, when several writers sleep and reader wakes them up, all but one
937 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
938 * this, _but_ remember, it adds useless work on UP machines.
941 void netlink_table_grab(void)
942 __acquires(nl_table_lock
)
946 write_lock_irq(&nl_table_lock
);
948 if (atomic_read(&nl_table_users
)) {
949 DECLARE_WAITQUEUE(wait
, current
);
951 add_wait_queue_exclusive(&nl_table_wait
, &wait
);
953 set_current_state(TASK_UNINTERRUPTIBLE
);
954 if (atomic_read(&nl_table_users
) == 0)
956 write_unlock_irq(&nl_table_lock
);
958 write_lock_irq(&nl_table_lock
);
961 __set_current_state(TASK_RUNNING
);
962 remove_wait_queue(&nl_table_wait
, &wait
);
966 void netlink_table_ungrab(void)
967 __releases(nl_table_lock
)
969 write_unlock_irq(&nl_table_lock
);
970 wake_up(&nl_table_wait
);
974 netlink_lock_table(void)
976 /* read_lock() synchronizes us to netlink_table_grab */
978 read_lock(&nl_table_lock
);
979 atomic_inc(&nl_table_users
);
980 read_unlock(&nl_table_lock
);
984 netlink_unlock_table(void)
986 if (atomic_dec_and_test(&nl_table_users
))
987 wake_up(&nl_table_wait
);
990 struct netlink_compare_arg
996 /* Doing sizeof directly may yield 4 extra bytes on 64-bit. */
997 #define netlink_compare_arg_len \
998 (offsetof(struct netlink_compare_arg, portid) + sizeof(u32))
1000 static inline int netlink_compare(struct rhashtable_compare_arg
*arg
,
1003 const struct netlink_compare_arg
*x
= arg
->key
;
1004 const struct netlink_sock
*nlk
= ptr
;
1006 return nlk
->portid
!= x
->portid
||
1007 !net_eq(sock_net(&nlk
->sk
), read_pnet(&x
->pnet
));
1010 static void netlink_compare_arg_init(struct netlink_compare_arg
*arg
,
1011 struct net
*net
, u32 portid
)
1013 memset(arg
, 0, sizeof(*arg
));
1014 write_pnet(&arg
->pnet
, net
);
1015 arg
->portid
= portid
;
1018 static struct sock
*__netlink_lookup(struct netlink_table
*table
, u32 portid
,
1021 struct netlink_compare_arg arg
;
1023 netlink_compare_arg_init(&arg
, net
, portid
);
1024 return rhashtable_lookup_fast(&table
->hash
, &arg
,
1025 netlink_rhashtable_params
);
1028 static int __netlink_insert(struct netlink_table
*table
, struct sock
*sk
)
1030 struct netlink_compare_arg arg
;
1032 netlink_compare_arg_init(&arg
, sock_net(sk
), nlk_sk(sk
)->portid
);
1033 return rhashtable_lookup_insert_key(&table
->hash
, &arg
,
1035 netlink_rhashtable_params
);
1038 static struct sock
*netlink_lookup(struct net
*net
, int protocol
, u32 portid
)
1040 struct netlink_table
*table
= &nl_table
[protocol
];
1044 sk
= __netlink_lookup(table
, portid
, net
);
1052 static const struct proto_ops netlink_ops
;
1055 netlink_update_listeners(struct sock
*sk
)
1057 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
1060 struct listeners
*listeners
;
1062 listeners
= nl_deref_protected(tbl
->listeners
);
1066 for (i
= 0; i
< NLGRPLONGS(tbl
->groups
); i
++) {
1068 sk_for_each_bound(sk
, &tbl
->mc_list
) {
1069 if (i
< NLGRPLONGS(nlk_sk(sk
)->ngroups
))
1070 mask
|= nlk_sk(sk
)->groups
[i
];
1072 listeners
->masks
[i
] = mask
;
1074 /* this function is only called with the netlink table "grabbed", which
1075 * makes sure updates are visible before bind or setsockopt return. */
1078 static int netlink_insert(struct sock
*sk
, u32 portid
)
1080 struct netlink_table
*table
= &nl_table
[sk
->sk_protocol
];
1086 if (nlk_sk(sk
)->portid
)
1090 if (BITS_PER_LONG
> 32 &&
1091 unlikely(atomic_read(&table
->hash
.nelems
) >= UINT_MAX
))
1094 nlk_sk(sk
)->portid
= portid
;
1097 err
= __netlink_insert(table
, sk
);
1099 /* In case the hashtable backend returns with -EBUSY
1100 * from here, it must not escape to the caller.
1102 if (unlikely(err
== -EBUSY
))
1106 nlk_sk(sk
)->portid
= 0;
1115 static void netlink_remove(struct sock
*sk
)
1117 struct netlink_table
*table
;
1119 table
= &nl_table
[sk
->sk_protocol
];
1120 if (!rhashtable_remove_fast(&table
->hash
, &nlk_sk(sk
)->node
,
1121 netlink_rhashtable_params
)) {
1122 WARN_ON(atomic_read(&sk
->sk_refcnt
) == 1);
1126 netlink_table_grab();
1127 if (nlk_sk(sk
)->subscriptions
) {
1128 __sk_del_bind_node(sk
);
1129 netlink_update_listeners(sk
);
1131 if (sk
->sk_protocol
== NETLINK_GENERIC
)
1132 atomic_inc(&genl_sk_destructing_cnt
);
1133 netlink_table_ungrab();
1136 static struct proto netlink_proto
= {
1138 .owner
= THIS_MODULE
,
1139 .obj_size
= sizeof(struct netlink_sock
),
1142 static int __netlink_create(struct net
*net
, struct socket
*sock
,
1143 struct mutex
*cb_mutex
, int protocol
,
1147 struct netlink_sock
*nlk
;
1149 sock
->ops
= &netlink_ops
;
1151 sk
= sk_alloc(net
, PF_NETLINK
, GFP_KERNEL
, &netlink_proto
, kern
);
1155 sock_init_data(sock
, sk
);
1159 nlk
->cb_mutex
= cb_mutex
;
1161 nlk
->cb_mutex
= &nlk
->cb_def_mutex
;
1162 mutex_init(nlk
->cb_mutex
);
1164 init_waitqueue_head(&nlk
->wait
);
1165 #ifdef CONFIG_NETLINK_MMAP
1166 mutex_init(&nlk
->pg_vec_lock
);
1169 sk
->sk_destruct
= netlink_sock_destruct
;
1170 sk
->sk_protocol
= protocol
;
1174 static int netlink_create(struct net
*net
, struct socket
*sock
, int protocol
,
1177 struct module
*module
= NULL
;
1178 struct mutex
*cb_mutex
;
1179 struct netlink_sock
*nlk
;
1180 int (*bind
)(struct net
*net
, int group
);
1181 void (*unbind
)(struct net
*net
, int group
);
1184 sock
->state
= SS_UNCONNECTED
;
1186 if (sock
->type
!= SOCK_RAW
&& sock
->type
!= SOCK_DGRAM
)
1187 return -ESOCKTNOSUPPORT
;
1189 if (protocol
< 0 || protocol
>= MAX_LINKS
)
1190 return -EPROTONOSUPPORT
;
1192 netlink_lock_table();
1193 #ifdef CONFIG_MODULES
1194 if (!nl_table
[protocol
].registered
) {
1195 netlink_unlock_table();
1196 request_module("net-pf-%d-proto-%d", PF_NETLINK
, protocol
);
1197 netlink_lock_table();
1200 if (nl_table
[protocol
].registered
&&
1201 try_module_get(nl_table
[protocol
].module
))
1202 module
= nl_table
[protocol
].module
;
1204 err
= -EPROTONOSUPPORT
;
1205 cb_mutex
= nl_table
[protocol
].cb_mutex
;
1206 bind
= nl_table
[protocol
].bind
;
1207 unbind
= nl_table
[protocol
].unbind
;
1208 netlink_unlock_table();
1213 err
= __netlink_create(net
, sock
, cb_mutex
, protocol
, kern
);
1218 sock_prot_inuse_add(net
, &netlink_proto
, 1);
1221 nlk
= nlk_sk(sock
->sk
);
1222 nlk
->module
= module
;
1223 nlk
->netlink_bind
= bind
;
1224 nlk
->netlink_unbind
= unbind
;
1233 static void deferred_put_nlk_sk(struct rcu_head
*head
)
1235 struct netlink_sock
*nlk
= container_of(head
, struct netlink_sock
, rcu
);
1240 static int netlink_release(struct socket
*sock
)
1242 struct sock
*sk
= sock
->sk
;
1243 struct netlink_sock
*nlk
;
1253 * OK. Socket is unlinked, any packets that arrive now
1257 /* must not acquire netlink_table_lock in any way again before unbind
1258 * and notifying genetlink is done as otherwise it might deadlock
1260 if (nlk
->netlink_unbind
) {
1263 for (i
= 0; i
< nlk
->ngroups
; i
++)
1264 if (test_bit(i
, nlk
->groups
))
1265 nlk
->netlink_unbind(sock_net(sk
), i
+ 1);
1267 if (sk
->sk_protocol
== NETLINK_GENERIC
&&
1268 atomic_dec_return(&genl_sk_destructing_cnt
) == 0)
1269 wake_up(&genl_sk_destructing_waitq
);
1272 wake_up_interruptible_all(&nlk
->wait
);
1274 skb_queue_purge(&sk
->sk_write_queue
);
1277 struct netlink_notify n
= {
1278 .net
= sock_net(sk
),
1279 .protocol
= sk
->sk_protocol
,
1280 .portid
= nlk
->portid
,
1282 atomic_notifier_call_chain(&netlink_chain
,
1283 NETLINK_URELEASE
, &n
);
1286 module_put(nlk
->module
);
1288 if (netlink_is_kernel(sk
)) {
1289 netlink_table_grab();
1290 BUG_ON(nl_table
[sk
->sk_protocol
].registered
== 0);
1291 if (--nl_table
[sk
->sk_protocol
].registered
== 0) {
1292 struct listeners
*old
;
1294 old
= nl_deref_protected(nl_table
[sk
->sk_protocol
].listeners
);
1295 RCU_INIT_POINTER(nl_table
[sk
->sk_protocol
].listeners
, NULL
);
1296 kfree_rcu(old
, rcu
);
1297 nl_table
[sk
->sk_protocol
].module
= NULL
;
1298 nl_table
[sk
->sk_protocol
].bind
= NULL
;
1299 nl_table
[sk
->sk_protocol
].unbind
= NULL
;
1300 nl_table
[sk
->sk_protocol
].flags
= 0;
1301 nl_table
[sk
->sk_protocol
].registered
= 0;
1303 netlink_table_ungrab();
1310 sock_prot_inuse_add(sock_net(sk
), &netlink_proto
, -1);
1312 call_rcu(&nlk
->rcu
, deferred_put_nlk_sk
);
1316 static int netlink_autobind(struct socket
*sock
)
1318 struct sock
*sk
= sock
->sk
;
1319 struct net
*net
= sock_net(sk
);
1320 struct netlink_table
*table
= &nl_table
[sk
->sk_protocol
];
1321 s32 portid
= task_tgid_vnr(current
);
1329 ok
= !__netlink_lookup(table
, portid
, net
);
1332 /* Bind collision, search negative portid values. */
1334 /* rover will be in range [S32_MIN, -4097] */
1335 rover
= S32_MIN
+ prandom_u32_max(-4096 - S32_MIN
);
1336 else if (rover
>= -4096)
1342 err
= netlink_insert(sk
, portid
);
1343 if (err
== -EADDRINUSE
)
1346 /* If 2 threads race to autobind, that is fine. */
1354 * __netlink_ns_capable - General netlink message capability test
1355 * @nsp: NETLINK_CB of the socket buffer holding a netlink command from userspace.
1356 * @user_ns: The user namespace of the capability to use
1357 * @cap: The capability to use
1359 * Test to see if the opener of the socket we received the message
1360 * from had when the netlink socket was created and the sender of the
1361 * message has has the capability @cap in the user namespace @user_ns.
1363 bool __netlink_ns_capable(const struct netlink_skb_parms
*nsp
,
1364 struct user_namespace
*user_ns
, int cap
)
1366 return ((nsp
->flags
& NETLINK_SKB_DST
) ||
1367 file_ns_capable(nsp
->sk
->sk_socket
->file
, user_ns
, cap
)) &&
1368 ns_capable(user_ns
, cap
);
1370 EXPORT_SYMBOL(__netlink_ns_capable
);
1373 * netlink_ns_capable - General netlink message capability test
1374 * @skb: socket buffer holding a netlink command from userspace
1375 * @user_ns: The user namespace of the capability to use
1376 * @cap: The capability to use
1378 * Test to see if the opener of the socket we received the message
1379 * from had when the netlink socket was created and the sender of the
1380 * message has has the capability @cap in the user namespace @user_ns.
1382 bool netlink_ns_capable(const struct sk_buff
*skb
,
1383 struct user_namespace
*user_ns
, int cap
)
1385 return __netlink_ns_capable(&NETLINK_CB(skb
), user_ns
, cap
);
1387 EXPORT_SYMBOL(netlink_ns_capable
);
1390 * netlink_capable - Netlink global message capability test
1391 * @skb: socket buffer holding a netlink command from userspace
1392 * @cap: The capability to use
1394 * Test to see if the opener of the socket we received the message
1395 * from had when the netlink socket was created and the sender of the
1396 * message has has the capability @cap in all user namespaces.
1398 bool netlink_capable(const struct sk_buff
*skb
, int cap
)
1400 return netlink_ns_capable(skb
, &init_user_ns
, cap
);
1402 EXPORT_SYMBOL(netlink_capable
);
1405 * netlink_net_capable - Netlink network namespace message capability test
1406 * @skb: socket buffer holding a netlink command from userspace
1407 * @cap: The capability to use
1409 * Test to see if the opener of the socket we received the message
1410 * from had when the netlink socket was created and the sender of the
1411 * message has has the capability @cap over the network namespace of
1412 * the socket we received the message from.
1414 bool netlink_net_capable(const struct sk_buff
*skb
, int cap
)
1416 return netlink_ns_capable(skb
, sock_net(skb
->sk
)->user_ns
, cap
);
1418 EXPORT_SYMBOL(netlink_net_capable
);
1420 static inline int netlink_allowed(const struct socket
*sock
, unsigned int flag
)
1422 return (nl_table
[sock
->sk
->sk_protocol
].flags
& flag
) ||
1423 ns_capable(sock_net(sock
->sk
)->user_ns
, CAP_NET_ADMIN
);
1427 netlink_update_subscriptions(struct sock
*sk
, unsigned int subscriptions
)
1429 struct netlink_sock
*nlk
= nlk_sk(sk
);
1431 if (nlk
->subscriptions
&& !subscriptions
)
1432 __sk_del_bind_node(sk
);
1433 else if (!nlk
->subscriptions
&& subscriptions
)
1434 sk_add_bind_node(sk
, &nl_table
[sk
->sk_protocol
].mc_list
);
1435 nlk
->subscriptions
= subscriptions
;
1438 static int netlink_realloc_groups(struct sock
*sk
)
1440 struct netlink_sock
*nlk
= nlk_sk(sk
);
1441 unsigned int groups
;
1442 unsigned long *new_groups
;
1445 netlink_table_grab();
1447 groups
= nl_table
[sk
->sk_protocol
].groups
;
1448 if (!nl_table
[sk
->sk_protocol
].registered
) {
1453 if (nlk
->ngroups
>= groups
)
1456 new_groups
= krealloc(nlk
->groups
, NLGRPSZ(groups
), GFP_ATOMIC
);
1457 if (new_groups
== NULL
) {
1461 memset((char *)new_groups
+ NLGRPSZ(nlk
->ngroups
), 0,
1462 NLGRPSZ(groups
) - NLGRPSZ(nlk
->ngroups
));
1464 nlk
->groups
= new_groups
;
1465 nlk
->ngroups
= groups
;
1467 netlink_table_ungrab();
1471 static void netlink_undo_bind(int group
, long unsigned int groups
,
1474 struct netlink_sock
*nlk
= nlk_sk(sk
);
1477 if (!nlk
->netlink_unbind
)
1480 for (undo
= 0; undo
< group
; undo
++)
1481 if (test_bit(undo
, &groups
))
1482 nlk
->netlink_unbind(sock_net(sk
), undo
+ 1);
1485 static int netlink_bind(struct socket
*sock
, struct sockaddr
*addr
,
1488 struct sock
*sk
= sock
->sk
;
1489 struct net
*net
= sock_net(sk
);
1490 struct netlink_sock
*nlk
= nlk_sk(sk
);
1491 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
1493 long unsigned int groups
= nladdr
->nl_groups
;
1495 if (addr_len
< sizeof(struct sockaddr_nl
))
1498 if (nladdr
->nl_family
!= AF_NETLINK
)
1501 /* Only superuser is allowed to listen multicasts */
1503 if (!netlink_allowed(sock
, NL_CFG_F_NONROOT_RECV
))
1505 err
= netlink_realloc_groups(sk
);
1511 if (nladdr
->nl_pid
!= nlk
->portid
)
1514 if (nlk
->netlink_bind
&& groups
) {
1517 for (group
= 0; group
< nlk
->ngroups
; group
++) {
1518 if (!test_bit(group
, &groups
))
1520 err
= nlk
->netlink_bind(net
, group
+ 1);
1523 netlink_undo_bind(group
, groups
, sk
);
1529 err
= nladdr
->nl_pid
?
1530 netlink_insert(sk
, nladdr
->nl_pid
) :
1531 netlink_autobind(sock
);
1533 netlink_undo_bind(nlk
->ngroups
, groups
, sk
);
1538 if (!groups
&& (nlk
->groups
== NULL
|| !(u32
)nlk
->groups
[0]))
1541 netlink_table_grab();
1542 netlink_update_subscriptions(sk
, nlk
->subscriptions
+
1544 hweight32(nlk
->groups
[0]));
1545 nlk
->groups
[0] = (nlk
->groups
[0] & ~0xffffffffUL
) | groups
;
1546 netlink_update_listeners(sk
);
1547 netlink_table_ungrab();
1552 static int netlink_connect(struct socket
*sock
, struct sockaddr
*addr
,
1553 int alen
, int flags
)
1556 struct sock
*sk
= sock
->sk
;
1557 struct netlink_sock
*nlk
= nlk_sk(sk
);
1558 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
1560 if (alen
< sizeof(addr
->sa_family
))
1563 if (addr
->sa_family
== AF_UNSPEC
) {
1564 sk
->sk_state
= NETLINK_UNCONNECTED
;
1565 nlk
->dst_portid
= 0;
1569 if (addr
->sa_family
!= AF_NETLINK
)
1572 if ((nladdr
->nl_groups
|| nladdr
->nl_pid
) &&
1573 !netlink_allowed(sock
, NL_CFG_F_NONROOT_SEND
))
1577 err
= netlink_autobind(sock
);
1580 sk
->sk_state
= NETLINK_CONNECTED
;
1581 nlk
->dst_portid
= nladdr
->nl_pid
;
1582 nlk
->dst_group
= ffs(nladdr
->nl_groups
);
1588 static int netlink_getname(struct socket
*sock
, struct sockaddr
*addr
,
1589 int *addr_len
, int peer
)
1591 struct sock
*sk
= sock
->sk
;
1592 struct netlink_sock
*nlk
= nlk_sk(sk
);
1593 DECLARE_SOCKADDR(struct sockaddr_nl
*, nladdr
, addr
);
1595 nladdr
->nl_family
= AF_NETLINK
;
1597 *addr_len
= sizeof(*nladdr
);
1600 nladdr
->nl_pid
= nlk
->dst_portid
;
1601 nladdr
->nl_groups
= netlink_group_mask(nlk
->dst_group
);
1603 nladdr
->nl_pid
= nlk
->portid
;
1604 nladdr
->nl_groups
= nlk
->groups
? nlk
->groups
[0] : 0;
1609 static struct sock
*netlink_getsockbyportid(struct sock
*ssk
, u32 portid
)
1612 struct netlink_sock
*nlk
;
1614 sock
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, portid
);
1616 return ERR_PTR(-ECONNREFUSED
);
1618 /* Don't bother queuing skb if kernel socket has no input function */
1620 if (sock
->sk_state
== NETLINK_CONNECTED
&&
1621 nlk
->dst_portid
!= nlk_sk(ssk
)->portid
) {
1623 return ERR_PTR(-ECONNREFUSED
);
1628 struct sock
*netlink_getsockbyfilp(struct file
*filp
)
1630 struct inode
*inode
= file_inode(filp
);
1633 if (!S_ISSOCK(inode
->i_mode
))
1634 return ERR_PTR(-ENOTSOCK
);
1636 sock
= SOCKET_I(inode
)->sk
;
1637 if (sock
->sk_family
!= AF_NETLINK
)
1638 return ERR_PTR(-EINVAL
);
1644 static struct sk_buff
*netlink_alloc_large_skb(unsigned int size
,
1647 struct sk_buff
*skb
;
1650 if (size
<= NLMSG_GOODSIZE
|| broadcast
)
1651 return alloc_skb(size
, GFP_KERNEL
);
1653 size
= SKB_DATA_ALIGN(size
) +
1654 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
1656 data
= vmalloc(size
);
1660 skb
= __build_skb(data
, size
);
1664 skb
->destructor
= netlink_skb_destructor
;
1670 * Attach a skb to a netlink socket.
1671 * The caller must hold a reference to the destination socket. On error, the
1672 * reference is dropped. The skb is not send to the destination, just all
1673 * all error checks are performed and memory in the queue is reserved.
1675 * < 0: error. skb freed, reference to sock dropped.
1677 * 1: repeat lookup - reference dropped while waiting for socket memory.
1679 int netlink_attachskb(struct sock
*sk
, struct sk_buff
*skb
,
1680 long *timeo
, struct sock
*ssk
)
1682 struct netlink_sock
*nlk
;
1686 if ((atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
1687 test_bit(NETLINK_S_CONGESTED
, &nlk
->state
)) &&
1688 !netlink_skb_is_mmaped(skb
)) {
1689 DECLARE_WAITQUEUE(wait
, current
);
1691 if (!ssk
|| netlink_is_kernel(ssk
))
1692 netlink_overrun(sk
);
1698 __set_current_state(TASK_INTERRUPTIBLE
);
1699 add_wait_queue(&nlk
->wait
, &wait
);
1701 if ((atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
1702 test_bit(NETLINK_S_CONGESTED
, &nlk
->state
)) &&
1703 !sock_flag(sk
, SOCK_DEAD
))
1704 *timeo
= schedule_timeout(*timeo
);
1706 __set_current_state(TASK_RUNNING
);
1707 remove_wait_queue(&nlk
->wait
, &wait
);
1710 if (signal_pending(current
)) {
1712 return sock_intr_errno(*timeo
);
1716 netlink_skb_set_owner_r(skb
, sk
);
1720 static int __netlink_sendskb(struct sock
*sk
, struct sk_buff
*skb
)
1724 netlink_deliver_tap(skb
);
1726 #ifdef CONFIG_NETLINK_MMAP
1727 if (netlink_skb_is_mmaped(skb
))
1728 netlink_queue_mmaped_skb(sk
, skb
);
1729 else if (netlink_rx_is_mmaped(sk
))
1730 netlink_ring_set_copied(sk
, skb
);
1732 #endif /* CONFIG_NETLINK_MMAP */
1733 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1734 sk
->sk_data_ready(sk
);
1738 int netlink_sendskb(struct sock
*sk
, struct sk_buff
*skb
)
1740 int len
= __netlink_sendskb(sk
, skb
);
1746 void netlink_detachskb(struct sock
*sk
, struct sk_buff
*skb
)
1752 static struct sk_buff
*netlink_trim(struct sk_buff
*skb
, gfp_t allocation
)
1756 WARN_ON(skb
->sk
!= NULL
);
1757 if (netlink_skb_is_mmaped(skb
))
1760 delta
= skb
->end
- skb
->tail
;
1761 if (is_vmalloc_addr(skb
->head
) || delta
* 2 < skb
->truesize
)
1764 if (skb_shared(skb
)) {
1765 struct sk_buff
*nskb
= skb_clone(skb
, allocation
);
1772 if (!pskb_expand_head(skb
, 0, -delta
, allocation
))
1773 skb
->truesize
-= delta
;
1778 static int netlink_unicast_kernel(struct sock
*sk
, struct sk_buff
*skb
,
1782 struct netlink_sock
*nlk
= nlk_sk(sk
);
1784 ret
= -ECONNREFUSED
;
1785 if (nlk
->netlink_rcv
!= NULL
) {
1787 netlink_skb_set_owner_r(skb
, sk
);
1788 NETLINK_CB(skb
).sk
= ssk
;
1789 netlink_deliver_tap_kernel(sk
, ssk
, skb
);
1790 nlk
->netlink_rcv(skb
);
1799 int netlink_unicast(struct sock
*ssk
, struct sk_buff
*skb
,
1800 u32 portid
, int nonblock
)
1806 skb
= netlink_trim(skb
, gfp_any());
1808 timeo
= sock_sndtimeo(ssk
, nonblock
);
1810 sk
= netlink_getsockbyportid(ssk
, portid
);
1815 if (netlink_is_kernel(sk
))
1816 return netlink_unicast_kernel(sk
, skb
, ssk
);
1818 if (sk_filter(sk
, skb
)) {
1825 err
= netlink_attachskb(sk
, skb
, &timeo
, ssk
);
1831 return netlink_sendskb(sk
, skb
);
1833 EXPORT_SYMBOL(netlink_unicast
);
1835 struct sk_buff
*netlink_alloc_skb(struct sock
*ssk
, unsigned int size
,
1836 u32 dst_portid
, gfp_t gfp_mask
)
1838 #ifdef CONFIG_NETLINK_MMAP
1839 struct sock
*sk
= NULL
;
1840 struct sk_buff
*skb
;
1841 struct netlink_ring
*ring
;
1842 struct nl_mmap_hdr
*hdr
;
1843 unsigned int maxlen
;
1845 sk
= netlink_getsockbyportid(ssk
, dst_portid
);
1849 ring
= &nlk_sk(sk
)->rx_ring
;
1850 /* fast-path without atomic ops for common case: non-mmaped receiver */
1851 if (ring
->pg_vec
== NULL
)
1854 if (ring
->frame_size
- NL_MMAP_HDRLEN
< size
)
1857 skb
= alloc_skb_head(gfp_mask
);
1861 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
1862 /* check again under lock */
1863 if (ring
->pg_vec
== NULL
)
1866 /* check again under lock */
1867 maxlen
= ring
->frame_size
- NL_MMAP_HDRLEN
;
1871 netlink_forward_ring(ring
);
1872 hdr
= netlink_current_frame(ring
, NL_MMAP_STATUS_UNUSED
);
1875 netlink_ring_setup_skb(skb
, sk
, ring
, hdr
);
1876 netlink_set_status(hdr
, NL_MMAP_STATUS_RESERVED
);
1877 atomic_inc(&ring
->pending
);
1878 netlink_increment_head(ring
);
1880 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1885 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1886 netlink_overrun(sk
);
1893 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
1898 return alloc_skb(size
, gfp_mask
);
1900 EXPORT_SYMBOL_GPL(netlink_alloc_skb
);
1902 int netlink_has_listeners(struct sock
*sk
, unsigned int group
)
1905 struct listeners
*listeners
;
1907 BUG_ON(!netlink_is_kernel(sk
));
1910 listeners
= rcu_dereference(nl_table
[sk
->sk_protocol
].listeners
);
1912 if (listeners
&& group
- 1 < nl_table
[sk
->sk_protocol
].groups
)
1913 res
= test_bit(group
- 1, listeners
->masks
);
1919 EXPORT_SYMBOL_GPL(netlink_has_listeners
);
1921 static int netlink_broadcast_deliver(struct sock
*sk
, struct sk_buff
*skb
)
1923 struct netlink_sock
*nlk
= nlk_sk(sk
);
1925 if (atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
&&
1926 !test_bit(NETLINK_S_CONGESTED
, &nlk
->state
)) {
1927 netlink_skb_set_owner_r(skb
, sk
);
1928 __netlink_sendskb(sk
, skb
);
1929 return atomic_read(&sk
->sk_rmem_alloc
) > (sk
->sk_rcvbuf
>> 1);
1934 struct netlink_broadcast_data
{
1935 struct sock
*exclude_sk
;
1940 int delivery_failure
;
1944 struct sk_buff
*skb
, *skb2
;
1945 int (*tx_filter
)(struct sock
*dsk
, struct sk_buff
*skb
, void *data
);
1949 static void do_one_broadcast(struct sock
*sk
,
1950 struct netlink_broadcast_data
*p
)
1952 struct netlink_sock
*nlk
= nlk_sk(sk
);
1955 if (p
->exclude_sk
== sk
)
1958 if (nlk
->portid
== p
->portid
|| p
->group
- 1 >= nlk
->ngroups
||
1959 !test_bit(p
->group
- 1, nlk
->groups
))
1962 if (!net_eq(sock_net(sk
), p
->net
)) {
1963 if (!(nlk
->flags
& NETLINK_F_LISTEN_ALL_NSID
))
1966 if (!peernet_has_id(sock_net(sk
), p
->net
))
1969 if (!file_ns_capable(sk
->sk_socket
->file
, p
->net
->user_ns
,
1975 netlink_overrun(sk
);
1980 if (p
->skb2
== NULL
) {
1981 if (skb_shared(p
->skb
)) {
1982 p
->skb2
= skb_clone(p
->skb
, p
->allocation
);
1984 p
->skb2
= skb_get(p
->skb
);
1986 * skb ownership may have been set when
1987 * delivered to a previous socket.
1989 skb_orphan(p
->skb2
);
1992 if (p
->skb2
== NULL
) {
1993 netlink_overrun(sk
);
1994 /* Clone failed. Notify ALL listeners. */
1996 if (nlk
->flags
& NETLINK_F_BROADCAST_SEND_ERROR
)
1997 p
->delivery_failure
= 1;
2000 if (p
->tx_filter
&& p
->tx_filter(sk
, p
->skb2
, p
->tx_data
)) {
2005 if (sk_filter(sk
, p
->skb2
)) {
2010 NETLINK_CB(p
->skb2
).nsid
= peernet2id(sock_net(sk
), p
->net
);
2011 NETLINK_CB(p
->skb2
).nsid_is_set
= true;
2012 val
= netlink_broadcast_deliver(sk
, p
->skb2
);
2014 netlink_overrun(sk
);
2015 if (nlk
->flags
& NETLINK_F_BROADCAST_SEND_ERROR
)
2016 p
->delivery_failure
= 1;
2018 p
->congested
|= val
;
2026 int netlink_broadcast_filtered(struct sock
*ssk
, struct sk_buff
*skb
, u32 portid
,
2027 u32 group
, gfp_t allocation
,
2028 int (*filter
)(struct sock
*dsk
, struct sk_buff
*skb
, void *data
),
2031 struct net
*net
= sock_net(ssk
);
2032 struct netlink_broadcast_data info
;
2035 skb
= netlink_trim(skb
, allocation
);
2037 info
.exclude_sk
= ssk
;
2039 info
.portid
= portid
;
2042 info
.delivery_failure
= 0;
2045 info
.allocation
= allocation
;
2048 info
.tx_filter
= filter
;
2049 info
.tx_data
= filter_data
;
2051 /* While we sleep in clone, do not allow to change socket list */
2053 netlink_lock_table();
2055 sk_for_each_bound(sk
, &nl_table
[ssk
->sk_protocol
].mc_list
)
2056 do_one_broadcast(sk
, &info
);
2060 netlink_unlock_table();
2062 if (info
.delivery_failure
) {
2063 kfree_skb(info
.skb2
);
2066 consume_skb(info
.skb2
);
2068 if (info
.delivered
) {
2069 if (info
.congested
&& (allocation
& __GFP_WAIT
))
2075 EXPORT_SYMBOL(netlink_broadcast_filtered
);
2077 int netlink_broadcast(struct sock
*ssk
, struct sk_buff
*skb
, u32 portid
,
2078 u32 group
, gfp_t allocation
)
2080 return netlink_broadcast_filtered(ssk
, skb
, portid
, group
, allocation
,
2083 EXPORT_SYMBOL(netlink_broadcast
);
2085 struct netlink_set_err_data
{
2086 struct sock
*exclude_sk
;
2092 static int do_one_set_err(struct sock
*sk
, struct netlink_set_err_data
*p
)
2094 struct netlink_sock
*nlk
= nlk_sk(sk
);
2097 if (sk
== p
->exclude_sk
)
2100 if (!net_eq(sock_net(sk
), sock_net(p
->exclude_sk
)))
2103 if (nlk
->portid
== p
->portid
|| p
->group
- 1 >= nlk
->ngroups
||
2104 !test_bit(p
->group
- 1, nlk
->groups
))
2107 if (p
->code
== ENOBUFS
&& nlk
->flags
& NETLINK_F_RECV_NO_ENOBUFS
) {
2112 sk
->sk_err
= p
->code
;
2113 sk
->sk_error_report(sk
);
2119 * netlink_set_err - report error to broadcast listeners
2120 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
2121 * @portid: the PORTID of a process that we want to skip (if any)
2122 * @group: the broadcast group that will notice the error
2123 * @code: error code, must be negative (as usual in kernelspace)
2125 * This function returns the number of broadcast listeners that have set the
2126 * NETLINK_NO_ENOBUFS socket option.
2128 int netlink_set_err(struct sock
*ssk
, u32 portid
, u32 group
, int code
)
2130 struct netlink_set_err_data info
;
2134 info
.exclude_sk
= ssk
;
2135 info
.portid
= portid
;
2137 /* sk->sk_err wants a positive error value */
2140 read_lock(&nl_table_lock
);
2142 sk_for_each_bound(sk
, &nl_table
[ssk
->sk_protocol
].mc_list
)
2143 ret
+= do_one_set_err(sk
, &info
);
2145 read_unlock(&nl_table_lock
);
2148 EXPORT_SYMBOL(netlink_set_err
);
2150 /* must be called with netlink table grabbed */
2151 static void netlink_update_socket_mc(struct netlink_sock
*nlk
,
2155 int old
, new = !!is_new
, subscriptions
;
2157 old
= test_bit(group
- 1, nlk
->groups
);
2158 subscriptions
= nlk
->subscriptions
- old
+ new;
2160 __set_bit(group
- 1, nlk
->groups
);
2162 __clear_bit(group
- 1, nlk
->groups
);
2163 netlink_update_subscriptions(&nlk
->sk
, subscriptions
);
2164 netlink_update_listeners(&nlk
->sk
);
2167 static int netlink_setsockopt(struct socket
*sock
, int level
, int optname
,
2168 char __user
*optval
, unsigned int optlen
)
2170 struct sock
*sk
= sock
->sk
;
2171 struct netlink_sock
*nlk
= nlk_sk(sk
);
2172 unsigned int val
= 0;
2175 if (level
!= SOL_NETLINK
)
2176 return -ENOPROTOOPT
;
2178 if (optname
!= NETLINK_RX_RING
&& optname
!= NETLINK_TX_RING
&&
2179 optlen
>= sizeof(int) &&
2180 get_user(val
, (unsigned int __user
*)optval
))
2184 case NETLINK_PKTINFO
:
2186 nlk
->flags
|= NETLINK_F_RECV_PKTINFO
;
2188 nlk
->flags
&= ~NETLINK_F_RECV_PKTINFO
;
2191 case NETLINK_ADD_MEMBERSHIP
:
2192 case NETLINK_DROP_MEMBERSHIP
: {
2193 if (!netlink_allowed(sock
, NL_CFG_F_NONROOT_RECV
))
2195 err
= netlink_realloc_groups(sk
);
2198 if (!val
|| val
- 1 >= nlk
->ngroups
)
2200 if (optname
== NETLINK_ADD_MEMBERSHIP
&& nlk
->netlink_bind
) {
2201 err
= nlk
->netlink_bind(sock_net(sk
), val
);
2205 netlink_table_grab();
2206 netlink_update_socket_mc(nlk
, val
,
2207 optname
== NETLINK_ADD_MEMBERSHIP
);
2208 netlink_table_ungrab();
2209 if (optname
== NETLINK_DROP_MEMBERSHIP
&& nlk
->netlink_unbind
)
2210 nlk
->netlink_unbind(sock_net(sk
), val
);
2215 case NETLINK_BROADCAST_ERROR
:
2217 nlk
->flags
|= NETLINK_F_BROADCAST_SEND_ERROR
;
2219 nlk
->flags
&= ~NETLINK_F_BROADCAST_SEND_ERROR
;
2222 case NETLINK_NO_ENOBUFS
:
2224 nlk
->flags
|= NETLINK_F_RECV_NO_ENOBUFS
;
2225 clear_bit(NETLINK_S_CONGESTED
, &nlk
->state
);
2226 wake_up_interruptible(&nlk
->wait
);
2228 nlk
->flags
&= ~NETLINK_F_RECV_NO_ENOBUFS
;
2232 #ifdef CONFIG_NETLINK_MMAP
2233 case NETLINK_RX_RING
:
2234 case NETLINK_TX_RING
: {
2235 struct nl_mmap_req req
;
2237 /* Rings might consume more memory than queue limits, require
2240 if (!capable(CAP_NET_ADMIN
))
2242 if (optlen
< sizeof(req
))
2244 if (copy_from_user(&req
, optval
, sizeof(req
)))
2246 err
= netlink_set_ring(sk
, &req
,
2247 optname
== NETLINK_TX_RING
);
2250 #endif /* CONFIG_NETLINK_MMAP */
2251 case NETLINK_LISTEN_ALL_NSID
:
2252 if (!ns_capable(sock_net(sk
)->user_ns
, CAP_NET_BROADCAST
))
2256 nlk
->flags
|= NETLINK_F_LISTEN_ALL_NSID
;
2258 nlk
->flags
&= ~NETLINK_F_LISTEN_ALL_NSID
;
2267 static int netlink_getsockopt(struct socket
*sock
, int level
, int optname
,
2268 char __user
*optval
, int __user
*optlen
)
2270 struct sock
*sk
= sock
->sk
;
2271 struct netlink_sock
*nlk
= nlk_sk(sk
);
2274 if (level
!= SOL_NETLINK
)
2275 return -ENOPROTOOPT
;
2277 if (get_user(len
, optlen
))
2283 case NETLINK_PKTINFO
:
2284 if (len
< sizeof(int))
2287 val
= nlk
->flags
& NETLINK_F_RECV_PKTINFO
? 1 : 0;
2288 if (put_user(len
, optlen
) ||
2289 put_user(val
, optval
))
2293 case NETLINK_BROADCAST_ERROR
:
2294 if (len
< sizeof(int))
2297 val
= nlk
->flags
& NETLINK_F_BROADCAST_SEND_ERROR
? 1 : 0;
2298 if (put_user(len
, optlen
) ||
2299 put_user(val
, optval
))
2303 case NETLINK_NO_ENOBUFS
:
2304 if (len
< sizeof(int))
2307 val
= nlk
->flags
& NETLINK_F_RECV_NO_ENOBUFS
? 1 : 0;
2308 if (put_user(len
, optlen
) ||
2309 put_user(val
, optval
))
2313 case NETLINK_LIST_MEMBERSHIPS
: {
2314 int pos
, idx
, shift
;
2317 netlink_table_grab();
2318 for (pos
= 0; pos
* 8 < nlk
->ngroups
; pos
+= sizeof(u32
)) {
2319 if (len
- pos
< sizeof(u32
))
2322 idx
= pos
/ sizeof(unsigned long);
2323 shift
= (pos
% sizeof(unsigned long)) * 8;
2324 if (put_user((u32
)(nlk
->groups
[idx
] >> shift
),
2325 (u32 __user
*)(optval
+ pos
))) {
2330 if (put_user(ALIGN(nlk
->ngroups
/ 8, sizeof(u32
)), optlen
))
2332 netlink_table_ungrab();
2341 static void netlink_cmsg_recv_pktinfo(struct msghdr
*msg
, struct sk_buff
*skb
)
2343 struct nl_pktinfo info
;
2345 info
.group
= NETLINK_CB(skb
).dst_group
;
2346 put_cmsg(msg
, SOL_NETLINK
, NETLINK_PKTINFO
, sizeof(info
), &info
);
2349 static void netlink_cmsg_listen_all_nsid(struct sock
*sk
, struct msghdr
*msg
,
2350 struct sk_buff
*skb
)
2352 if (!NETLINK_CB(skb
).nsid_is_set
)
2355 put_cmsg(msg
, SOL_NETLINK
, NETLINK_LISTEN_ALL_NSID
, sizeof(int),
2356 &NETLINK_CB(skb
).nsid
);
2359 static int netlink_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
2361 struct sock
*sk
= sock
->sk
;
2362 struct netlink_sock
*nlk
= nlk_sk(sk
);
2363 DECLARE_SOCKADDR(struct sockaddr_nl
*, addr
, msg
->msg_name
);
2366 struct sk_buff
*skb
;
2368 struct scm_cookie scm
;
2369 u32 netlink_skb_flags
= 0;
2371 if (msg
->msg_flags
&MSG_OOB
)
2374 err
= scm_send(sock
, msg
, &scm
, true);
2378 if (msg
->msg_namelen
) {
2380 if (addr
->nl_family
!= AF_NETLINK
)
2382 dst_portid
= addr
->nl_pid
;
2383 dst_group
= ffs(addr
->nl_groups
);
2385 if ((dst_group
|| dst_portid
) &&
2386 !netlink_allowed(sock
, NL_CFG_F_NONROOT_SEND
))
2388 netlink_skb_flags
|= NETLINK_SKB_DST
;
2390 dst_portid
= nlk
->dst_portid
;
2391 dst_group
= nlk
->dst_group
;
2395 err
= netlink_autobind(sock
);
2400 /* It's a really convoluted way for userland to ask for mmaped
2401 * sendmsg(), but that's what we've got...
2403 if (netlink_tx_is_mmaped(sk
) &&
2404 iter_is_iovec(&msg
->msg_iter
) &&
2405 msg
->msg_iter
.nr_segs
== 1 &&
2406 msg
->msg_iter
.iov
->iov_base
== NULL
) {
2407 err
= netlink_mmap_sendmsg(sk
, msg
, dst_portid
, dst_group
,
2413 if (len
> sk
->sk_sndbuf
- 32)
2416 skb
= netlink_alloc_large_skb(len
, dst_group
);
2420 NETLINK_CB(skb
).portid
= nlk
->portid
;
2421 NETLINK_CB(skb
).dst_group
= dst_group
;
2422 NETLINK_CB(skb
).creds
= scm
.creds
;
2423 NETLINK_CB(skb
).flags
= netlink_skb_flags
;
2426 if (memcpy_from_msg(skb_put(skb
, len
), msg
, len
)) {
2431 err
= security_netlink_send(sk
, skb
);
2438 atomic_inc(&skb
->users
);
2439 netlink_broadcast(sk
, skb
, dst_portid
, dst_group
, GFP_KERNEL
);
2441 err
= netlink_unicast(sk
, skb
, dst_portid
, msg
->msg_flags
&MSG_DONTWAIT
);
2448 static int netlink_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
,
2451 struct scm_cookie scm
;
2452 struct sock
*sk
= sock
->sk
;
2453 struct netlink_sock
*nlk
= nlk_sk(sk
);
2454 int noblock
= flags
&MSG_DONTWAIT
;
2456 struct sk_buff
*skb
, *data_skb
;
2464 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
2470 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
2471 if (unlikely(skb_shinfo(skb
)->frag_list
)) {
2473 * If this skb has a frag_list, then here that means that we
2474 * will have to use the frag_list skb's data for compat tasks
2475 * and the regular skb's data for normal (non-compat) tasks.
2477 * If we need to send the compat skb, assign it to the
2478 * 'data_skb' variable so that it will be used below for data
2479 * copying. We keep 'skb' for everything else, including
2480 * freeing both later.
2482 if (flags
& MSG_CMSG_COMPAT
)
2483 data_skb
= skb_shinfo(skb
)->frag_list
;
2487 /* Record the max length of recvmsg() calls for future allocations */
2488 nlk
->max_recvmsg_len
= max(nlk
->max_recvmsg_len
, len
);
2489 nlk
->max_recvmsg_len
= min_t(size_t, nlk
->max_recvmsg_len
,
2492 copied
= data_skb
->len
;
2494 msg
->msg_flags
|= MSG_TRUNC
;
2498 skb_reset_transport_header(data_skb
);
2499 err
= skb_copy_datagram_msg(data_skb
, 0, msg
, copied
);
2501 if (msg
->msg_name
) {
2502 DECLARE_SOCKADDR(struct sockaddr_nl
*, addr
, msg
->msg_name
);
2503 addr
->nl_family
= AF_NETLINK
;
2505 addr
->nl_pid
= NETLINK_CB(skb
).portid
;
2506 addr
->nl_groups
= netlink_group_mask(NETLINK_CB(skb
).dst_group
);
2507 msg
->msg_namelen
= sizeof(*addr
);
2510 if (nlk
->flags
& NETLINK_F_RECV_PKTINFO
)
2511 netlink_cmsg_recv_pktinfo(msg
, skb
);
2512 if (nlk
->flags
& NETLINK_F_LISTEN_ALL_NSID
)
2513 netlink_cmsg_listen_all_nsid(sk
, msg
, skb
);
2515 memset(&scm
, 0, sizeof(scm
));
2516 scm
.creds
= *NETLINK_CREDS(skb
);
2517 if (flags
& MSG_TRUNC
)
2518 copied
= data_skb
->len
;
2520 skb_free_datagram(sk
, skb
);
2522 if (nlk
->cb_running
&&
2523 atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
/ 2) {
2524 ret
= netlink_dump(sk
);
2527 sk
->sk_error_report(sk
);
2531 scm_recv(sock
, msg
, &scm
, flags
);
2533 netlink_rcv_wake(sk
);
2534 return err
? : copied
;
2537 static void netlink_data_ready(struct sock
*sk
)
2543 * We export these functions to other modules. They provide a
2544 * complete set of kernel non-blocking support for message
2549 __netlink_kernel_create(struct net
*net
, int unit
, struct module
*module
,
2550 struct netlink_kernel_cfg
*cfg
)
2552 struct socket
*sock
;
2554 struct netlink_sock
*nlk
;
2555 struct listeners
*listeners
= NULL
;
2556 struct mutex
*cb_mutex
= cfg
? cfg
->cb_mutex
: NULL
;
2557 unsigned int groups
;
2561 if (unit
< 0 || unit
>= MAX_LINKS
)
2564 if (sock_create_lite(PF_NETLINK
, SOCK_DGRAM
, unit
, &sock
))
2567 if (__netlink_create(net
, sock
, cb_mutex
, unit
, 1) < 0)
2568 goto out_sock_release_nosk
;
2572 if (!cfg
|| cfg
->groups
< 32)
2575 groups
= cfg
->groups
;
2577 listeners
= kzalloc(sizeof(*listeners
) + NLGRPSZ(groups
), GFP_KERNEL
);
2579 goto out_sock_release
;
2581 sk
->sk_data_ready
= netlink_data_ready
;
2582 if (cfg
&& cfg
->input
)
2583 nlk_sk(sk
)->netlink_rcv
= cfg
->input
;
2585 if (netlink_insert(sk
, 0))
2586 goto out_sock_release
;
2589 nlk
->flags
|= NETLINK_F_KERNEL_SOCKET
;
2591 netlink_table_grab();
2592 if (!nl_table
[unit
].registered
) {
2593 nl_table
[unit
].groups
= groups
;
2594 rcu_assign_pointer(nl_table
[unit
].listeners
, listeners
);
2595 nl_table
[unit
].cb_mutex
= cb_mutex
;
2596 nl_table
[unit
].module
= module
;
2598 nl_table
[unit
].bind
= cfg
->bind
;
2599 nl_table
[unit
].unbind
= cfg
->unbind
;
2600 nl_table
[unit
].flags
= cfg
->flags
;
2602 nl_table
[unit
].compare
= cfg
->compare
;
2604 nl_table
[unit
].registered
= 1;
2607 nl_table
[unit
].registered
++;
2609 netlink_table_ungrab();
2614 netlink_kernel_release(sk
);
2617 out_sock_release_nosk
:
2621 EXPORT_SYMBOL(__netlink_kernel_create
);
2624 netlink_kernel_release(struct sock
*sk
)
2626 if (sk
== NULL
|| sk
->sk_socket
== NULL
)
2629 sock_release(sk
->sk_socket
);
2631 EXPORT_SYMBOL(netlink_kernel_release
);
2633 int __netlink_change_ngroups(struct sock
*sk
, unsigned int groups
)
2635 struct listeners
*new, *old
;
2636 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
2641 if (NLGRPSZ(tbl
->groups
) < NLGRPSZ(groups
)) {
2642 new = kzalloc(sizeof(*new) + NLGRPSZ(groups
), GFP_ATOMIC
);
2645 old
= nl_deref_protected(tbl
->listeners
);
2646 memcpy(new->masks
, old
->masks
, NLGRPSZ(tbl
->groups
));
2647 rcu_assign_pointer(tbl
->listeners
, new);
2649 kfree_rcu(old
, rcu
);
2651 tbl
->groups
= groups
;
2657 * netlink_change_ngroups - change number of multicast groups
2659 * This changes the number of multicast groups that are available
2660 * on a certain netlink family. Note that it is not possible to
2661 * change the number of groups to below 32. Also note that it does
2662 * not implicitly call netlink_clear_multicast_users() when the
2663 * number of groups is reduced.
2665 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
2666 * @groups: The new number of groups.
2668 int netlink_change_ngroups(struct sock
*sk
, unsigned int groups
)
2672 netlink_table_grab();
2673 err
= __netlink_change_ngroups(sk
, groups
);
2674 netlink_table_ungrab();
2679 void __netlink_clear_multicast_users(struct sock
*ksk
, unsigned int group
)
2682 struct netlink_table
*tbl
= &nl_table
[ksk
->sk_protocol
];
2684 sk_for_each_bound(sk
, &tbl
->mc_list
)
2685 netlink_update_socket_mc(nlk_sk(sk
), group
, 0);
2689 __nlmsg_put(struct sk_buff
*skb
, u32 portid
, u32 seq
, int type
, int len
, int flags
)
2691 struct nlmsghdr
*nlh
;
2692 int size
= nlmsg_msg_size(len
);
2694 nlh
= (struct nlmsghdr
*)skb_put(skb
, NLMSG_ALIGN(size
));
2695 nlh
->nlmsg_type
= type
;
2696 nlh
->nlmsg_len
= size
;
2697 nlh
->nlmsg_flags
= flags
;
2698 nlh
->nlmsg_pid
= portid
;
2699 nlh
->nlmsg_seq
= seq
;
2700 if (!__builtin_constant_p(size
) || NLMSG_ALIGN(size
) - size
!= 0)
2701 memset(nlmsg_data(nlh
) + len
, 0, NLMSG_ALIGN(size
) - size
);
2704 EXPORT_SYMBOL(__nlmsg_put
);
2707 * It looks a bit ugly.
2708 * It would be better to create kernel thread.
2711 static int netlink_dump(struct sock
*sk
)
2713 struct netlink_sock
*nlk
= nlk_sk(sk
);
2714 struct netlink_callback
*cb
;
2715 struct sk_buff
*skb
= NULL
;
2716 struct nlmsghdr
*nlh
;
2717 int len
, err
= -ENOBUFS
;
2720 mutex_lock(nlk
->cb_mutex
);
2721 if (!nlk
->cb_running
) {
2727 alloc_size
= max_t(int, cb
->min_dump_alloc
, NLMSG_GOODSIZE
);
2729 if (!netlink_rx_is_mmaped(sk
) &&
2730 atomic_read(&sk
->sk_rmem_alloc
) >= sk
->sk_rcvbuf
)
2733 /* NLMSG_GOODSIZE is small to avoid high order allocations being
2734 * required, but it makes sense to _attempt_ a 16K bytes allocation
2735 * to reduce number of system calls on dump operations, if user
2736 * ever provided a big enough buffer.
2738 if (alloc_size
< nlk
->max_recvmsg_len
) {
2739 skb
= netlink_alloc_skb(sk
,
2740 nlk
->max_recvmsg_len
,
2745 /* available room should be exact amount to avoid MSG_TRUNC */
2747 skb_reserve(skb
, skb_tailroom(skb
) -
2748 nlk
->max_recvmsg_len
);
2751 skb
= netlink_alloc_skb(sk
, alloc_size
, nlk
->portid
,
2755 netlink_skb_set_owner_r(skb
, sk
);
2757 len
= cb
->dump(skb
, cb
);
2760 mutex_unlock(nlk
->cb_mutex
);
2762 if (sk_filter(sk
, skb
))
2765 __netlink_sendskb(sk
, skb
);
2769 nlh
= nlmsg_put_answer(skb
, cb
, NLMSG_DONE
, sizeof(len
), NLM_F_MULTI
);
2773 nl_dump_check_consistent(cb
, nlh
);
2775 memcpy(nlmsg_data(nlh
), &len
, sizeof(len
));
2777 if (sk_filter(sk
, skb
))
2780 __netlink_sendskb(sk
, skb
);
2785 nlk
->cb_running
= false;
2786 mutex_unlock(nlk
->cb_mutex
);
2787 module_put(cb
->module
);
2788 consume_skb(cb
->skb
);
2792 mutex_unlock(nlk
->cb_mutex
);
2797 int __netlink_dump_start(struct sock
*ssk
, struct sk_buff
*skb
,
2798 const struct nlmsghdr
*nlh
,
2799 struct netlink_dump_control
*control
)
2801 struct netlink_callback
*cb
;
2803 struct netlink_sock
*nlk
;
2806 /* Memory mapped dump requests need to be copied to avoid looping
2807 * on the pending state in netlink_mmap_sendmsg() while the CB hold
2808 * a reference to the skb.
2810 if (netlink_skb_is_mmaped(skb
)) {
2811 skb
= skb_copy(skb
, GFP_KERNEL
);
2815 atomic_inc(&skb
->users
);
2817 sk
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, NETLINK_CB(skb
).portid
);
2819 ret
= -ECONNREFUSED
;
2824 mutex_lock(nlk
->cb_mutex
);
2825 /* A dump is in progress... */
2826 if (nlk
->cb_running
) {
2830 /* add reference of module which cb->dump belongs to */
2831 if (!try_module_get(control
->module
)) {
2832 ret
= -EPROTONOSUPPORT
;
2837 memset(cb
, 0, sizeof(*cb
));
2838 cb
->dump
= control
->dump
;
2839 cb
->done
= control
->done
;
2841 cb
->data
= control
->data
;
2842 cb
->module
= control
->module
;
2843 cb
->min_dump_alloc
= control
->min_dump_alloc
;
2846 nlk
->cb_running
= true;
2848 mutex_unlock(nlk
->cb_mutex
);
2850 ret
= netlink_dump(sk
);
2856 /* We successfully started a dump, by returning -EINTR we
2857 * signal not to send ACK even if it was requested.
2863 mutex_unlock(nlk
->cb_mutex
);
2868 EXPORT_SYMBOL(__netlink_dump_start
);
2870 void netlink_ack(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, int err
)
2872 struct sk_buff
*skb
;
2873 struct nlmsghdr
*rep
;
2874 struct nlmsgerr
*errmsg
;
2875 size_t payload
= sizeof(*errmsg
);
2877 /* error messages get the original request appened */
2879 payload
+= nlmsg_len(nlh
);
2881 skb
= netlink_alloc_skb(in_skb
->sk
, nlmsg_total_size(payload
),
2882 NETLINK_CB(in_skb
).portid
, GFP_KERNEL
);
2886 sk
= netlink_lookup(sock_net(in_skb
->sk
),
2887 in_skb
->sk
->sk_protocol
,
2888 NETLINK_CB(in_skb
).portid
);
2890 sk
->sk_err
= ENOBUFS
;
2891 sk
->sk_error_report(sk
);
2897 rep
= __nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, nlh
->nlmsg_seq
,
2898 NLMSG_ERROR
, payload
, 0);
2899 errmsg
= nlmsg_data(rep
);
2900 errmsg
->error
= err
;
2901 memcpy(&errmsg
->msg
, nlh
, err
? nlh
->nlmsg_len
: sizeof(*nlh
));
2902 netlink_unicast(in_skb
->sk
, skb
, NETLINK_CB(in_skb
).portid
, MSG_DONTWAIT
);
2904 EXPORT_SYMBOL(netlink_ack
);
2906 int netlink_rcv_skb(struct sk_buff
*skb
, int (*cb
)(struct sk_buff
*,
2909 struct nlmsghdr
*nlh
;
2912 while (skb
->len
>= nlmsg_total_size(0)) {
2915 nlh
= nlmsg_hdr(skb
);
2918 if (nlh
->nlmsg_len
< NLMSG_HDRLEN
|| skb
->len
< nlh
->nlmsg_len
)
2921 /* Only requests are handled by the kernel */
2922 if (!(nlh
->nlmsg_flags
& NLM_F_REQUEST
))
2925 /* Skip control messages */
2926 if (nlh
->nlmsg_type
< NLMSG_MIN_TYPE
)
2934 if (nlh
->nlmsg_flags
& NLM_F_ACK
|| err
)
2935 netlink_ack(skb
, nlh
, err
);
2938 msglen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
2939 if (msglen
> skb
->len
)
2941 skb_pull(skb
, msglen
);
2946 EXPORT_SYMBOL(netlink_rcv_skb
);
2949 * nlmsg_notify - send a notification netlink message
2950 * @sk: netlink socket to use
2951 * @skb: notification message
2952 * @portid: destination netlink portid for reports or 0
2953 * @group: destination multicast group or 0
2954 * @report: 1 to report back, 0 to disable
2955 * @flags: allocation flags
2957 int nlmsg_notify(struct sock
*sk
, struct sk_buff
*skb
, u32 portid
,
2958 unsigned int group
, int report
, gfp_t flags
)
2963 int exclude_portid
= 0;
2966 atomic_inc(&skb
->users
);
2967 exclude_portid
= portid
;
2970 /* errors reported via destination sk->sk_err, but propagate
2971 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
2972 err
= nlmsg_multicast(sk
, skb
, exclude_portid
, group
, flags
);
2978 err2
= nlmsg_unicast(sk
, skb
, portid
);
2979 if (!err
|| err
== -ESRCH
)
2985 EXPORT_SYMBOL(nlmsg_notify
);
2987 #ifdef CONFIG_PROC_FS
2988 struct nl_seq_iter
{
2989 struct seq_net_private p
;
2990 struct rhashtable_iter hti
;
2994 static int netlink_walk_start(struct nl_seq_iter
*iter
)
2998 err
= rhashtable_walk_init(&nl_table
[iter
->link
].hash
, &iter
->hti
);
3000 iter
->link
= MAX_LINKS
;
3004 err
= rhashtable_walk_start(&iter
->hti
);
3005 return err
== -EAGAIN
? 0 : err
;
3008 static void netlink_walk_stop(struct nl_seq_iter
*iter
)
3010 rhashtable_walk_stop(&iter
->hti
);
3011 rhashtable_walk_exit(&iter
->hti
);
3014 static void *__netlink_seq_next(struct seq_file
*seq
)
3016 struct nl_seq_iter
*iter
= seq
->private;
3017 struct netlink_sock
*nlk
;
3023 nlk
= rhashtable_walk_next(&iter
->hti
);
3026 if (PTR_ERR(nlk
) == -EAGAIN
)
3035 netlink_walk_stop(iter
);
3036 if (++iter
->link
>= MAX_LINKS
)
3039 err
= netlink_walk_start(iter
);
3041 return ERR_PTR(err
);
3043 } while (sock_net(&nlk
->sk
) != seq_file_net(seq
));
3048 static void *netlink_seq_start(struct seq_file
*seq
, loff_t
*posp
)
3050 struct nl_seq_iter
*iter
= seq
->private;
3051 void *obj
= SEQ_START_TOKEN
;
3057 err
= netlink_walk_start(iter
);
3059 return ERR_PTR(err
);
3061 for (pos
= *posp
; pos
&& obj
&& !IS_ERR(obj
); pos
--)
3062 obj
= __netlink_seq_next(seq
);
3067 static void *netlink_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
3070 return __netlink_seq_next(seq
);
3073 static void netlink_seq_stop(struct seq_file
*seq
, void *v
)
3075 struct nl_seq_iter
*iter
= seq
->private;
3077 if (iter
->link
>= MAX_LINKS
)
3080 netlink_walk_stop(iter
);
3084 static int netlink_seq_show(struct seq_file
*seq
, void *v
)
3086 if (v
== SEQ_START_TOKEN
) {
3088 "sk Eth Pid Groups "
3089 "Rmem Wmem Dump Locks Drops Inode\n");
3092 struct netlink_sock
*nlk
= nlk_sk(s
);
3094 seq_printf(seq
, "%pK %-3d %-6u %08x %-8d %-8d %d %-8d %-8d %-8lu\n",
3098 nlk
->groups
? (u32
)nlk
->groups
[0] : 0,
3099 sk_rmem_alloc_get(s
),
3100 sk_wmem_alloc_get(s
),
3102 atomic_read(&s
->sk_refcnt
),
3103 atomic_read(&s
->sk_drops
),
3111 static const struct seq_operations netlink_seq_ops
= {
3112 .start
= netlink_seq_start
,
3113 .next
= netlink_seq_next
,
3114 .stop
= netlink_seq_stop
,
3115 .show
= netlink_seq_show
,
3119 static int netlink_seq_open(struct inode
*inode
, struct file
*file
)
3121 return seq_open_net(inode
, file
, &netlink_seq_ops
,
3122 sizeof(struct nl_seq_iter
));
3125 static const struct file_operations netlink_seq_fops
= {
3126 .owner
= THIS_MODULE
,
3127 .open
= netlink_seq_open
,
3129 .llseek
= seq_lseek
,
3130 .release
= seq_release_net
,
3135 int netlink_register_notifier(struct notifier_block
*nb
)
3137 return atomic_notifier_chain_register(&netlink_chain
, nb
);
3139 EXPORT_SYMBOL(netlink_register_notifier
);
3141 int netlink_unregister_notifier(struct notifier_block
*nb
)
3143 return atomic_notifier_chain_unregister(&netlink_chain
, nb
);
3145 EXPORT_SYMBOL(netlink_unregister_notifier
);
3147 static const struct proto_ops netlink_ops
= {
3148 .family
= PF_NETLINK
,
3149 .owner
= THIS_MODULE
,
3150 .release
= netlink_release
,
3151 .bind
= netlink_bind
,
3152 .connect
= netlink_connect
,
3153 .socketpair
= sock_no_socketpair
,
3154 .accept
= sock_no_accept
,
3155 .getname
= netlink_getname
,
3156 .poll
= netlink_poll
,
3157 .ioctl
= sock_no_ioctl
,
3158 .listen
= sock_no_listen
,
3159 .shutdown
= sock_no_shutdown
,
3160 .setsockopt
= netlink_setsockopt
,
3161 .getsockopt
= netlink_getsockopt
,
3162 .sendmsg
= netlink_sendmsg
,
3163 .recvmsg
= netlink_recvmsg
,
3164 .mmap
= netlink_mmap
,
3165 .sendpage
= sock_no_sendpage
,
3168 static const struct net_proto_family netlink_family_ops
= {
3169 .family
= PF_NETLINK
,
3170 .create
= netlink_create
,
3171 .owner
= THIS_MODULE
, /* for consistency 8) */
3174 static int __net_init
netlink_net_init(struct net
*net
)
3176 #ifdef CONFIG_PROC_FS
3177 if (!proc_create("netlink", 0, net
->proc_net
, &netlink_seq_fops
))
3183 static void __net_exit
netlink_net_exit(struct net
*net
)
3185 #ifdef CONFIG_PROC_FS
3186 remove_proc_entry("netlink", net
->proc_net
);
3190 static void __init
netlink_add_usersock_entry(void)
3192 struct listeners
*listeners
;
3195 listeners
= kzalloc(sizeof(*listeners
) + NLGRPSZ(groups
), GFP_KERNEL
);
3197 panic("netlink_add_usersock_entry: Cannot allocate listeners\n");
3199 netlink_table_grab();
3201 nl_table
[NETLINK_USERSOCK
].groups
= groups
;
3202 rcu_assign_pointer(nl_table
[NETLINK_USERSOCK
].listeners
, listeners
);
3203 nl_table
[NETLINK_USERSOCK
].module
= THIS_MODULE
;
3204 nl_table
[NETLINK_USERSOCK
].registered
= 1;
3205 nl_table
[NETLINK_USERSOCK
].flags
= NL_CFG_F_NONROOT_SEND
;
3207 netlink_table_ungrab();
3210 static struct pernet_operations __net_initdata netlink_net_ops
= {
3211 .init
= netlink_net_init
,
3212 .exit
= netlink_net_exit
,
3215 static inline u32
netlink_hash(const void *data
, u32 len
, u32 seed
)
3217 const struct netlink_sock
*nlk
= data
;
3218 struct netlink_compare_arg arg
;
3220 netlink_compare_arg_init(&arg
, sock_net(&nlk
->sk
), nlk
->portid
);
3221 return jhash2((u32
*)&arg
, netlink_compare_arg_len
/ sizeof(u32
), seed
);
3224 static const struct rhashtable_params netlink_rhashtable_params
= {
3225 .head_offset
= offsetof(struct netlink_sock
, node
),
3226 .key_len
= netlink_compare_arg_len
,
3227 .obj_hashfn
= netlink_hash
,
3228 .obj_cmpfn
= netlink_compare
,
3229 .automatic_shrinking
= true,
3232 static int __init
netlink_proto_init(void)
3235 int err
= proto_register(&netlink_proto
, 0);
3240 BUILD_BUG_ON(sizeof(struct netlink_skb_parms
) > FIELD_SIZEOF(struct sk_buff
, cb
));
3242 nl_table
= kcalloc(MAX_LINKS
, sizeof(*nl_table
), GFP_KERNEL
);
3246 for (i
= 0; i
< MAX_LINKS
; i
++) {
3247 if (rhashtable_init(&nl_table
[i
].hash
,
3248 &netlink_rhashtable_params
) < 0) {
3250 rhashtable_destroy(&nl_table
[i
].hash
);
3256 INIT_LIST_HEAD(&netlink_tap_all
);
3258 netlink_add_usersock_entry();
3260 sock_register(&netlink_family_ops
);
3261 register_pernet_subsys(&netlink_net_ops
);
3262 /* The netlink device handler may be needed early. */
3267 panic("netlink_init: Cannot allocate nl_table\n");
3270 core_initcall(netlink_proto_init
);