2 * NETLINK Kernel-user communication protocol.
4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
5 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
12 * Tue Jun 26 14:36:48 MEST 2001 Herbert "herp" Rosmanith
13 * added netlink_proto_exit
14 * Tue Jan 22 18:32:44 BRST 2002 Arnaldo C. de Melo <acme@conectiva.com.br>
15 * use nlk_sk, as sk->protinfo is on a diet 8)
16 * Fri Jul 22 19:51:12 MEST 2005 Harald Welte <laforge@gnumonks.org>
17 * - inc module use count of module that owns
18 * the kernel socket in case userspace opens
19 * socket of same protocol
20 * - remove all module support, since netlink is
21 * mandatory if CONFIG_NET=y these days
24 #include <linux/module.h>
26 #include <linux/capability.h>
27 #include <linux/kernel.h>
28 #include <linux/init.h>
29 #include <linux/signal.h>
30 #include <linux/sched.h>
31 #include <linux/errno.h>
32 #include <linux/string.h>
33 #include <linux/stat.h>
34 #include <linux/socket.h>
36 #include <linux/fcntl.h>
37 #include <linux/termios.h>
38 #include <linux/sockios.h>
39 #include <linux/net.h>
41 #include <linux/slab.h>
42 #include <asm/uaccess.h>
43 #include <linux/skbuff.h>
44 #include <linux/netdevice.h>
45 #include <linux/rtnetlink.h>
46 #include <linux/proc_fs.h>
47 #include <linux/seq_file.h>
48 #include <linux/notifier.h>
49 #include <linux/security.h>
50 #include <linux/jhash.h>
51 #include <linux/jiffies.h>
52 #include <linux/random.h>
53 #include <linux/bitops.h>
55 #include <linux/types.h>
56 #include <linux/audit.h>
57 #include <linux/mutex.h>
59 #include <net/net_namespace.h>
62 #include <net/netlink.h>
64 #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8)
65 #define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long))
68 /* struct sock has to be the first member of netlink_sock */
76 unsigned long *groups
;
78 wait_queue_head_t wait
;
79 struct netlink_callback
*cb
;
80 struct mutex
*cb_mutex
;
81 struct mutex cb_def_mutex
;
82 void (*netlink_rcv
)(struct sk_buff
*skb
);
83 struct module
*module
;
86 struct listeners_rcu_head
{
87 struct rcu_head rcu_head
;
91 #define NETLINK_KERNEL_SOCKET 0x1
92 #define NETLINK_RECV_PKTINFO 0x2
93 #define NETLINK_BROADCAST_SEND_ERROR 0x4
94 #define NETLINK_RECV_NO_ENOBUFS 0x8
96 static inline struct netlink_sock
*nlk_sk(struct sock
*sk
)
98 return container_of(sk
, struct netlink_sock
, sk
);
101 static inline int netlink_is_kernel(struct sock
*sk
)
103 return nlk_sk(sk
)->flags
& NETLINK_KERNEL_SOCKET
;
107 struct hlist_head
*table
;
108 unsigned long rehash_time
;
113 unsigned int entries
;
114 unsigned int max_shift
;
119 struct netlink_table
{
120 struct nl_pid_hash hash
;
121 struct hlist_head mc_list
;
122 unsigned long *listeners
;
123 unsigned int nl_nonroot
;
125 struct mutex
*cb_mutex
;
126 struct module
*module
;
130 static struct netlink_table
*nl_table
;
132 static DECLARE_WAIT_QUEUE_HEAD(nl_table_wait
);
134 static int netlink_dump(struct sock
*sk
);
135 static void netlink_destroy_callback(struct netlink_callback
*cb
);
137 static DEFINE_RWLOCK(nl_table_lock
);
138 static atomic_t nl_table_users
= ATOMIC_INIT(0);
140 static ATOMIC_NOTIFIER_HEAD(netlink_chain
);
142 static u32
netlink_group_mask(u32 group
)
144 return group
? 1 << (group
- 1) : 0;
147 static struct hlist_head
*nl_pid_hashfn(struct nl_pid_hash
*hash
, u32 pid
)
149 return &hash
->table
[jhash_1word(pid
, hash
->rnd
) & hash
->mask
];
152 static void netlink_sock_destruct(struct sock
*sk
)
154 struct netlink_sock
*nlk
= nlk_sk(sk
);
158 nlk
->cb
->done(nlk
->cb
);
159 netlink_destroy_callback(nlk
->cb
);
162 skb_queue_purge(&sk
->sk_receive_queue
);
164 if (!sock_flag(sk
, SOCK_DEAD
)) {
165 printk(KERN_ERR
"Freeing alive netlink socket %p\n", sk
);
169 WARN_ON(atomic_read(&sk
->sk_rmem_alloc
));
170 WARN_ON(atomic_read(&sk
->sk_wmem_alloc
));
171 WARN_ON(nlk_sk(sk
)->groups
);
174 /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on
175 * SMP. Look, when several writers sleep and reader wakes them up, all but one
176 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
177 * this, _but_ remember, it adds useless work on UP machines.
180 static void netlink_table_grab(void)
181 __acquires(nl_table_lock
)
183 write_lock_irq(&nl_table_lock
);
185 if (atomic_read(&nl_table_users
)) {
186 DECLARE_WAITQUEUE(wait
, current
);
188 add_wait_queue_exclusive(&nl_table_wait
, &wait
);
190 set_current_state(TASK_UNINTERRUPTIBLE
);
191 if (atomic_read(&nl_table_users
) == 0)
193 write_unlock_irq(&nl_table_lock
);
195 write_lock_irq(&nl_table_lock
);
198 __set_current_state(TASK_RUNNING
);
199 remove_wait_queue(&nl_table_wait
, &wait
);
203 static void netlink_table_ungrab(void)
204 __releases(nl_table_lock
)
206 write_unlock_irq(&nl_table_lock
);
207 wake_up(&nl_table_wait
);
211 netlink_lock_table(void)
213 /* read_lock() synchronizes us to netlink_table_grab */
215 read_lock(&nl_table_lock
);
216 atomic_inc(&nl_table_users
);
217 read_unlock(&nl_table_lock
);
221 netlink_unlock_table(void)
223 if (atomic_dec_and_test(&nl_table_users
))
224 wake_up(&nl_table_wait
);
227 static inline struct sock
*netlink_lookup(struct net
*net
, int protocol
,
230 struct nl_pid_hash
*hash
= &nl_table
[protocol
].hash
;
231 struct hlist_head
*head
;
233 struct hlist_node
*node
;
235 read_lock(&nl_table_lock
);
236 head
= nl_pid_hashfn(hash
, pid
);
237 sk_for_each(sk
, node
, head
) {
238 if (net_eq(sock_net(sk
), net
) && (nlk_sk(sk
)->pid
== pid
)) {
245 read_unlock(&nl_table_lock
);
249 static inline struct hlist_head
*nl_pid_hash_zalloc(size_t size
)
251 if (size
<= PAGE_SIZE
)
252 return kzalloc(size
, GFP_ATOMIC
);
254 return (struct hlist_head
*)
255 __get_free_pages(GFP_ATOMIC
| __GFP_ZERO
,
259 static inline void nl_pid_hash_free(struct hlist_head
*table
, size_t size
)
261 if (size
<= PAGE_SIZE
)
264 free_pages((unsigned long)table
, get_order(size
));
267 static int nl_pid_hash_rehash(struct nl_pid_hash
*hash
, int grow
)
269 unsigned int omask
, mask
, shift
;
271 struct hlist_head
*otable
, *table
;
274 omask
= mask
= hash
->mask
;
275 osize
= size
= (mask
+ 1) * sizeof(*table
);
279 if (++shift
> hash
->max_shift
)
285 table
= nl_pid_hash_zalloc(size
);
289 otable
= hash
->table
;
293 get_random_bytes(&hash
->rnd
, sizeof(hash
->rnd
));
295 for (i
= 0; i
<= omask
; i
++) {
297 struct hlist_node
*node
, *tmp
;
299 sk_for_each_safe(sk
, node
, tmp
, &otable
[i
])
300 __sk_add_node(sk
, nl_pid_hashfn(hash
, nlk_sk(sk
)->pid
));
303 nl_pid_hash_free(otable
, osize
);
304 hash
->rehash_time
= jiffies
+ 10 * 60 * HZ
;
308 static inline int nl_pid_hash_dilute(struct nl_pid_hash
*hash
, int len
)
310 int avg
= hash
->entries
>> hash
->shift
;
312 if (unlikely(avg
> 1) && nl_pid_hash_rehash(hash
, 1))
315 if (unlikely(len
> avg
) && time_after(jiffies
, hash
->rehash_time
)) {
316 nl_pid_hash_rehash(hash
, 0);
323 static const struct proto_ops netlink_ops
;
326 netlink_update_listeners(struct sock
*sk
)
328 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
329 struct hlist_node
*node
;
333 for (i
= 0; i
< NLGRPLONGS(tbl
->groups
); i
++) {
335 sk_for_each_bound(sk
, node
, &tbl
->mc_list
) {
336 if (i
< NLGRPLONGS(nlk_sk(sk
)->ngroups
))
337 mask
|= nlk_sk(sk
)->groups
[i
];
339 tbl
->listeners
[i
] = mask
;
341 /* this function is only called with the netlink table "grabbed", which
342 * makes sure updates are visible before bind or setsockopt return. */
345 static int netlink_insert(struct sock
*sk
, struct net
*net
, u32 pid
)
347 struct nl_pid_hash
*hash
= &nl_table
[sk
->sk_protocol
].hash
;
348 struct hlist_head
*head
;
349 int err
= -EADDRINUSE
;
351 struct hlist_node
*node
;
354 netlink_table_grab();
355 head
= nl_pid_hashfn(hash
, pid
);
357 sk_for_each(osk
, node
, head
) {
358 if (net_eq(sock_net(osk
), net
) && (nlk_sk(osk
)->pid
== pid
))
370 if (BITS_PER_LONG
> 32 && unlikely(hash
->entries
>= UINT_MAX
))
373 if (len
&& nl_pid_hash_dilute(hash
, len
))
374 head
= nl_pid_hashfn(hash
, pid
);
376 nlk_sk(sk
)->pid
= pid
;
377 sk_add_node(sk
, head
);
381 netlink_table_ungrab();
385 static void netlink_remove(struct sock
*sk
)
387 netlink_table_grab();
388 if (sk_del_node_init(sk
))
389 nl_table
[sk
->sk_protocol
].hash
.entries
--;
390 if (nlk_sk(sk
)->subscriptions
)
391 __sk_del_bind_node(sk
);
392 netlink_table_ungrab();
395 static struct proto netlink_proto
= {
397 .owner
= THIS_MODULE
,
398 .obj_size
= sizeof(struct netlink_sock
),
401 static int __netlink_create(struct net
*net
, struct socket
*sock
,
402 struct mutex
*cb_mutex
, int protocol
)
405 struct netlink_sock
*nlk
;
407 sock
->ops
= &netlink_ops
;
409 sk
= sk_alloc(net
, PF_NETLINK
, GFP_KERNEL
, &netlink_proto
);
413 sock_init_data(sock
, sk
);
417 nlk
->cb_mutex
= cb_mutex
;
419 nlk
->cb_mutex
= &nlk
->cb_def_mutex
;
420 mutex_init(nlk
->cb_mutex
);
422 init_waitqueue_head(&nlk
->wait
);
424 sk
->sk_destruct
= netlink_sock_destruct
;
425 sk
->sk_protocol
= protocol
;
429 static int netlink_create(struct net
*net
, struct socket
*sock
, int protocol
)
431 struct module
*module
= NULL
;
432 struct mutex
*cb_mutex
;
433 struct netlink_sock
*nlk
;
436 sock
->state
= SS_UNCONNECTED
;
438 if (sock
->type
!= SOCK_RAW
&& sock
->type
!= SOCK_DGRAM
)
439 return -ESOCKTNOSUPPORT
;
441 if (protocol
< 0 || protocol
>= MAX_LINKS
)
442 return -EPROTONOSUPPORT
;
444 netlink_lock_table();
445 #ifdef CONFIG_MODULES
446 if (!nl_table
[protocol
].registered
) {
447 netlink_unlock_table();
448 request_module("net-pf-%d-proto-%d", PF_NETLINK
, protocol
);
449 netlink_lock_table();
452 if (nl_table
[protocol
].registered
&&
453 try_module_get(nl_table
[protocol
].module
))
454 module
= nl_table
[protocol
].module
;
455 cb_mutex
= nl_table
[protocol
].cb_mutex
;
456 netlink_unlock_table();
458 err
= __netlink_create(net
, sock
, cb_mutex
, protocol
);
463 sock_prot_inuse_add(net
, &netlink_proto
, 1);
466 nlk
= nlk_sk(sock
->sk
);
467 nlk
->module
= module
;
476 static int netlink_release(struct socket
*sock
)
478 struct sock
*sk
= sock
->sk
;
479 struct netlink_sock
*nlk
;
489 * OK. Socket is unlinked, any packets that arrive now
494 wake_up_interruptible_all(&nlk
->wait
);
496 skb_queue_purge(&sk
->sk_write_queue
);
498 if (nlk
->pid
&& !nlk
->subscriptions
) {
499 struct netlink_notify n
= {
501 .protocol
= sk
->sk_protocol
,
504 atomic_notifier_call_chain(&netlink_chain
,
505 NETLINK_URELEASE
, &n
);
508 module_put(nlk
->module
);
510 netlink_table_grab();
511 if (netlink_is_kernel(sk
)) {
512 BUG_ON(nl_table
[sk
->sk_protocol
].registered
== 0);
513 if (--nl_table
[sk
->sk_protocol
].registered
== 0) {
514 kfree(nl_table
[sk
->sk_protocol
].listeners
);
515 nl_table
[sk
->sk_protocol
].module
= NULL
;
516 nl_table
[sk
->sk_protocol
].registered
= 0;
518 } else if (nlk
->subscriptions
)
519 netlink_update_listeners(sk
);
520 netlink_table_ungrab();
526 sock_prot_inuse_add(sock_net(sk
), &netlink_proto
, -1);
532 static int netlink_autobind(struct socket
*sock
)
534 struct sock
*sk
= sock
->sk
;
535 struct net
*net
= sock_net(sk
);
536 struct nl_pid_hash
*hash
= &nl_table
[sk
->sk_protocol
].hash
;
537 struct hlist_head
*head
;
539 struct hlist_node
*node
;
540 s32 pid
= current
->tgid
;
542 static s32 rover
= -4097;
546 netlink_table_grab();
547 head
= nl_pid_hashfn(hash
, pid
);
548 sk_for_each(osk
, node
, head
) {
549 if (!net_eq(sock_net(osk
), net
))
551 if (nlk_sk(osk
)->pid
== pid
) {
552 /* Bind collision, search negative pid values. */
556 netlink_table_ungrab();
560 netlink_table_ungrab();
562 err
= netlink_insert(sk
, net
, pid
);
563 if (err
== -EADDRINUSE
)
566 /* If 2 threads race to autobind, that is fine. */
573 static inline int netlink_capable(struct socket
*sock
, unsigned int flag
)
575 return (nl_table
[sock
->sk
->sk_protocol
].nl_nonroot
& flag
) ||
576 capable(CAP_NET_ADMIN
);
580 netlink_update_subscriptions(struct sock
*sk
, unsigned int subscriptions
)
582 struct netlink_sock
*nlk
= nlk_sk(sk
);
584 if (nlk
->subscriptions
&& !subscriptions
)
585 __sk_del_bind_node(sk
);
586 else if (!nlk
->subscriptions
&& subscriptions
)
587 sk_add_bind_node(sk
, &nl_table
[sk
->sk_protocol
].mc_list
);
588 nlk
->subscriptions
= subscriptions
;
591 static int netlink_realloc_groups(struct sock
*sk
)
593 struct netlink_sock
*nlk
= nlk_sk(sk
);
595 unsigned long *new_groups
;
598 netlink_table_grab();
600 groups
= nl_table
[sk
->sk_protocol
].groups
;
601 if (!nl_table
[sk
->sk_protocol
].registered
) {
606 if (nlk
->ngroups
>= groups
)
609 new_groups
= krealloc(nlk
->groups
, NLGRPSZ(groups
), GFP_ATOMIC
);
610 if (new_groups
== NULL
) {
614 memset((char *)new_groups
+ NLGRPSZ(nlk
->ngroups
), 0,
615 NLGRPSZ(groups
) - NLGRPSZ(nlk
->ngroups
));
617 nlk
->groups
= new_groups
;
618 nlk
->ngroups
= groups
;
620 netlink_table_ungrab();
624 static int netlink_bind(struct socket
*sock
, struct sockaddr
*addr
,
627 struct sock
*sk
= sock
->sk
;
628 struct net
*net
= sock_net(sk
);
629 struct netlink_sock
*nlk
= nlk_sk(sk
);
630 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
633 if (nladdr
->nl_family
!= AF_NETLINK
)
636 /* Only superuser is allowed to listen multicasts */
637 if (nladdr
->nl_groups
) {
638 if (!netlink_capable(sock
, NL_NONROOT_RECV
))
640 err
= netlink_realloc_groups(sk
);
646 if (nladdr
->nl_pid
!= nlk
->pid
)
649 err
= nladdr
->nl_pid
?
650 netlink_insert(sk
, net
, nladdr
->nl_pid
) :
651 netlink_autobind(sock
);
656 if (!nladdr
->nl_groups
&& (nlk
->groups
== NULL
|| !(u32
)nlk
->groups
[0]))
659 netlink_table_grab();
660 netlink_update_subscriptions(sk
, nlk
->subscriptions
+
661 hweight32(nladdr
->nl_groups
) -
662 hweight32(nlk
->groups
[0]));
663 nlk
->groups
[0] = (nlk
->groups
[0] & ~0xffffffffUL
) | nladdr
->nl_groups
;
664 netlink_update_listeners(sk
);
665 netlink_table_ungrab();
670 static int netlink_connect(struct socket
*sock
, struct sockaddr
*addr
,
674 struct sock
*sk
= sock
->sk
;
675 struct netlink_sock
*nlk
= nlk_sk(sk
);
676 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
678 if (addr
->sa_family
== AF_UNSPEC
) {
679 sk
->sk_state
= NETLINK_UNCONNECTED
;
684 if (addr
->sa_family
!= AF_NETLINK
)
687 /* Only superuser is allowed to send multicasts */
688 if (nladdr
->nl_groups
&& !netlink_capable(sock
, NL_NONROOT_SEND
))
692 err
= netlink_autobind(sock
);
695 sk
->sk_state
= NETLINK_CONNECTED
;
696 nlk
->dst_pid
= nladdr
->nl_pid
;
697 nlk
->dst_group
= ffs(nladdr
->nl_groups
);
703 static int netlink_getname(struct socket
*sock
, struct sockaddr
*addr
,
704 int *addr_len
, int peer
)
706 struct sock
*sk
= sock
->sk
;
707 struct netlink_sock
*nlk
= nlk_sk(sk
);
708 struct sockaddr_nl
*nladdr
= (struct sockaddr_nl
*)addr
;
710 nladdr
->nl_family
= AF_NETLINK
;
712 *addr_len
= sizeof(*nladdr
);
715 nladdr
->nl_pid
= nlk
->dst_pid
;
716 nladdr
->nl_groups
= netlink_group_mask(nlk
->dst_group
);
718 nladdr
->nl_pid
= nlk
->pid
;
719 nladdr
->nl_groups
= nlk
->groups
? nlk
->groups
[0] : 0;
724 static void netlink_overrun(struct sock
*sk
)
726 struct netlink_sock
*nlk
= nlk_sk(sk
);
728 if (!(nlk
->flags
& NETLINK_RECV_NO_ENOBUFS
)) {
729 if (!test_and_set_bit(0, &nlk_sk(sk
)->state
)) {
730 sk
->sk_err
= ENOBUFS
;
731 sk
->sk_error_report(sk
);
734 atomic_inc(&sk
->sk_drops
);
737 static struct sock
*netlink_getsockbypid(struct sock
*ssk
, u32 pid
)
740 struct netlink_sock
*nlk
;
742 sock
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, pid
);
744 return ERR_PTR(-ECONNREFUSED
);
746 /* Don't bother queuing skb if kernel socket has no input function */
748 if (sock
->sk_state
== NETLINK_CONNECTED
&&
749 nlk
->dst_pid
!= nlk_sk(ssk
)->pid
) {
751 return ERR_PTR(-ECONNREFUSED
);
756 struct sock
*netlink_getsockbyfilp(struct file
*filp
)
758 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
761 if (!S_ISSOCK(inode
->i_mode
))
762 return ERR_PTR(-ENOTSOCK
);
764 sock
= SOCKET_I(inode
)->sk
;
765 if (sock
->sk_family
!= AF_NETLINK
)
766 return ERR_PTR(-EINVAL
);
773 * Attach a skb to a netlink socket.
774 * The caller must hold a reference to the destination socket. On error, the
775 * reference is dropped. The skb is not send to the destination, just all
776 * all error checks are performed and memory in the queue is reserved.
778 * < 0: error. skb freed, reference to sock dropped.
780 * 1: repeat lookup - reference dropped while waiting for socket memory.
782 int netlink_attachskb(struct sock
*sk
, struct sk_buff
*skb
,
783 long *timeo
, struct sock
*ssk
)
785 struct netlink_sock
*nlk
;
789 if (atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
790 test_bit(0, &nlk
->state
)) {
791 DECLARE_WAITQUEUE(wait
, current
);
793 if (!ssk
|| netlink_is_kernel(ssk
))
800 __set_current_state(TASK_INTERRUPTIBLE
);
801 add_wait_queue(&nlk
->wait
, &wait
);
803 if ((atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
||
804 test_bit(0, &nlk
->state
)) &&
805 !sock_flag(sk
, SOCK_DEAD
))
806 *timeo
= schedule_timeout(*timeo
);
808 __set_current_state(TASK_RUNNING
);
809 remove_wait_queue(&nlk
->wait
, &wait
);
812 if (signal_pending(current
)) {
814 return sock_intr_errno(*timeo
);
818 skb_set_owner_r(skb
, sk
);
822 int netlink_sendskb(struct sock
*sk
, struct sk_buff
*skb
)
826 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
827 sk
->sk_data_ready(sk
, len
);
832 void netlink_detachskb(struct sock
*sk
, struct sk_buff
*skb
)
838 static inline struct sk_buff
*netlink_trim(struct sk_buff
*skb
,
845 delta
= skb
->end
- skb
->tail
;
846 if (delta
* 2 < skb
->truesize
)
849 if (skb_shared(skb
)) {
850 struct sk_buff
*nskb
= skb_clone(skb
, allocation
);
857 if (!pskb_expand_head(skb
, 0, -delta
, allocation
))
858 skb
->truesize
-= delta
;
863 static inline void netlink_rcv_wake(struct sock
*sk
)
865 struct netlink_sock
*nlk
= nlk_sk(sk
);
867 if (skb_queue_empty(&sk
->sk_receive_queue
))
868 clear_bit(0, &nlk
->state
);
869 if (!test_bit(0, &nlk
->state
))
870 wake_up_interruptible(&nlk
->wait
);
873 static inline int netlink_unicast_kernel(struct sock
*sk
, struct sk_buff
*skb
)
876 struct netlink_sock
*nlk
= nlk_sk(sk
);
879 if (nlk
->netlink_rcv
!= NULL
) {
881 skb_set_owner_r(skb
, sk
);
882 nlk
->netlink_rcv(skb
);
889 int netlink_unicast(struct sock
*ssk
, struct sk_buff
*skb
,
890 u32 pid
, int nonblock
)
896 skb
= netlink_trim(skb
, gfp_any());
898 timeo
= sock_sndtimeo(ssk
, nonblock
);
900 sk
= netlink_getsockbypid(ssk
, pid
);
905 if (netlink_is_kernel(sk
))
906 return netlink_unicast_kernel(sk
, skb
);
908 if (sk_filter(sk
, skb
)) {
915 err
= netlink_attachskb(sk
, skb
, &timeo
, ssk
);
921 return netlink_sendskb(sk
, skb
);
923 EXPORT_SYMBOL(netlink_unicast
);
925 int netlink_has_listeners(struct sock
*sk
, unsigned int group
)
928 unsigned long *listeners
;
930 BUG_ON(!netlink_is_kernel(sk
));
933 listeners
= rcu_dereference(nl_table
[sk
->sk_protocol
].listeners
);
935 if (group
- 1 < nl_table
[sk
->sk_protocol
].groups
)
936 res
= test_bit(group
- 1, listeners
);
942 EXPORT_SYMBOL_GPL(netlink_has_listeners
);
944 static inline int netlink_broadcast_deliver(struct sock
*sk
,
947 struct netlink_sock
*nlk
= nlk_sk(sk
);
949 if (atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
&&
950 !test_bit(0, &nlk
->state
)) {
951 skb_set_owner_r(skb
, sk
);
952 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
953 sk
->sk_data_ready(sk
, skb
->len
);
954 return atomic_read(&sk
->sk_rmem_alloc
) > sk
->sk_rcvbuf
;
959 struct netlink_broadcast_data
{
960 struct sock
*exclude_sk
;
965 int delivery_failure
;
969 struct sk_buff
*skb
, *skb2
;
972 static inline int do_one_broadcast(struct sock
*sk
,
973 struct netlink_broadcast_data
*p
)
975 struct netlink_sock
*nlk
= nlk_sk(sk
);
978 if (p
->exclude_sk
== sk
)
981 if (nlk
->pid
== p
->pid
|| p
->group
- 1 >= nlk
->ngroups
||
982 !test_bit(p
->group
- 1, nlk
->groups
))
985 if (!net_eq(sock_net(sk
), p
->net
))
994 if (p
->skb2
== NULL
) {
995 if (skb_shared(p
->skb
)) {
996 p
->skb2
= skb_clone(p
->skb
, p
->allocation
);
998 p
->skb2
= skb_get(p
->skb
);
1000 * skb ownership may have been set when
1001 * delivered to a previous socket.
1003 skb_orphan(p
->skb2
);
1006 if (p
->skb2
== NULL
) {
1007 netlink_overrun(sk
);
1008 /* Clone failed. Notify ALL listeners. */
1010 if (nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
)
1011 p
->delivery_failure
= 1;
1012 } else if (sk_filter(sk
, p
->skb2
)) {
1015 } else if ((val
= netlink_broadcast_deliver(sk
, p
->skb2
)) < 0) {
1016 netlink_overrun(sk
);
1017 if (nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
)
1018 p
->delivery_failure
= 1;
1020 p
->congested
|= val
;
1030 int netlink_broadcast(struct sock
*ssk
, struct sk_buff
*skb
, u32 pid
,
1031 u32 group
, gfp_t allocation
)
1033 struct net
*net
= sock_net(ssk
);
1034 struct netlink_broadcast_data info
;
1035 struct hlist_node
*node
;
1038 skb
= netlink_trim(skb
, allocation
);
1040 info
.exclude_sk
= ssk
;
1045 info
.delivery_failure
= 0;
1048 info
.allocation
= allocation
;
1052 /* While we sleep in clone, do not allow to change socket list */
1054 netlink_lock_table();
1056 sk_for_each_bound(sk
, node
, &nl_table
[ssk
->sk_protocol
].mc_list
)
1057 do_one_broadcast(sk
, &info
);
1061 netlink_unlock_table();
1063 kfree_skb(info
.skb2
);
1065 if (info
.delivery_failure
)
1068 if (info
.delivered
) {
1069 if (info
.congested
&& (allocation
& __GFP_WAIT
))
1075 EXPORT_SYMBOL(netlink_broadcast
);
1077 struct netlink_set_err_data
{
1078 struct sock
*exclude_sk
;
1084 static inline int do_one_set_err(struct sock
*sk
,
1085 struct netlink_set_err_data
*p
)
1087 struct netlink_sock
*nlk
= nlk_sk(sk
);
1089 if (sk
== p
->exclude_sk
)
1092 if (sock_net(sk
) != sock_net(p
->exclude_sk
))
1095 if (nlk
->pid
== p
->pid
|| p
->group
- 1 >= nlk
->ngroups
||
1096 !test_bit(p
->group
- 1, nlk
->groups
))
1099 sk
->sk_err
= p
->code
;
1100 sk
->sk_error_report(sk
);
1106 * netlink_set_err - report error to broadcast listeners
1107 * @ssk: the kernel netlink socket, as returned by netlink_kernel_create()
1108 * @pid: the PID of a process that we want to skip (if any)
1109 * @groups: the broadcast group that will notice the error
1110 * @code: error code, must be negative (as usual in kernelspace)
1112 void netlink_set_err(struct sock
*ssk
, u32 pid
, u32 group
, int code
)
1114 struct netlink_set_err_data info
;
1115 struct hlist_node
*node
;
1118 info
.exclude_sk
= ssk
;
1121 /* sk->sk_err wants a positive error value */
1124 read_lock(&nl_table_lock
);
1126 sk_for_each_bound(sk
, node
, &nl_table
[ssk
->sk_protocol
].mc_list
)
1127 do_one_set_err(sk
, &info
);
1129 read_unlock(&nl_table_lock
);
1131 EXPORT_SYMBOL(netlink_set_err
);
1133 /* must be called with netlink table grabbed */
1134 static void netlink_update_socket_mc(struct netlink_sock
*nlk
,
1138 int old
, new = !!is_new
, subscriptions
;
1140 old
= test_bit(group
- 1, nlk
->groups
);
1141 subscriptions
= nlk
->subscriptions
- old
+ new;
1143 __set_bit(group
- 1, nlk
->groups
);
1145 __clear_bit(group
- 1, nlk
->groups
);
1146 netlink_update_subscriptions(&nlk
->sk
, subscriptions
);
1147 netlink_update_listeners(&nlk
->sk
);
1150 static int netlink_setsockopt(struct socket
*sock
, int level
, int optname
,
1151 char __user
*optval
, int optlen
)
1153 struct sock
*sk
= sock
->sk
;
1154 struct netlink_sock
*nlk
= nlk_sk(sk
);
1155 unsigned int val
= 0;
1158 if (level
!= SOL_NETLINK
)
1159 return -ENOPROTOOPT
;
1161 if (optlen
>= sizeof(int) &&
1162 get_user(val
, (unsigned int __user
*)optval
))
1166 case NETLINK_PKTINFO
:
1168 nlk
->flags
|= NETLINK_RECV_PKTINFO
;
1170 nlk
->flags
&= ~NETLINK_RECV_PKTINFO
;
1173 case NETLINK_ADD_MEMBERSHIP
:
1174 case NETLINK_DROP_MEMBERSHIP
: {
1175 if (!netlink_capable(sock
, NL_NONROOT_RECV
))
1177 err
= netlink_realloc_groups(sk
);
1180 if (!val
|| val
- 1 >= nlk
->ngroups
)
1182 netlink_table_grab();
1183 netlink_update_socket_mc(nlk
, val
,
1184 optname
== NETLINK_ADD_MEMBERSHIP
);
1185 netlink_table_ungrab();
1189 case NETLINK_BROADCAST_ERROR
:
1191 nlk
->flags
|= NETLINK_BROADCAST_SEND_ERROR
;
1193 nlk
->flags
&= ~NETLINK_BROADCAST_SEND_ERROR
;
1196 case NETLINK_NO_ENOBUFS
:
1198 nlk
->flags
|= NETLINK_RECV_NO_ENOBUFS
;
1199 clear_bit(0, &nlk
->state
);
1200 wake_up_interruptible(&nlk
->wait
);
1202 nlk
->flags
&= ~NETLINK_RECV_NO_ENOBUFS
;
1211 static int netlink_getsockopt(struct socket
*sock
, int level
, int optname
,
1212 char __user
*optval
, int __user
*optlen
)
1214 struct sock
*sk
= sock
->sk
;
1215 struct netlink_sock
*nlk
= nlk_sk(sk
);
1218 if (level
!= SOL_NETLINK
)
1219 return -ENOPROTOOPT
;
1221 if (get_user(len
, optlen
))
1227 case NETLINK_PKTINFO
:
1228 if (len
< sizeof(int))
1231 val
= nlk
->flags
& NETLINK_RECV_PKTINFO
? 1 : 0;
1232 if (put_user(len
, optlen
) ||
1233 put_user(val
, optval
))
1237 case NETLINK_BROADCAST_ERROR
:
1238 if (len
< sizeof(int))
1241 val
= nlk
->flags
& NETLINK_BROADCAST_SEND_ERROR
? 1 : 0;
1242 if (put_user(len
, optlen
) ||
1243 put_user(val
, optval
))
1247 case NETLINK_NO_ENOBUFS
:
1248 if (len
< sizeof(int))
1251 val
= nlk
->flags
& NETLINK_RECV_NO_ENOBUFS
? 1 : 0;
1252 if (put_user(len
, optlen
) ||
1253 put_user(val
, optval
))
1263 static void netlink_cmsg_recv_pktinfo(struct msghdr
*msg
, struct sk_buff
*skb
)
1265 struct nl_pktinfo info
;
1267 info
.group
= NETLINK_CB(skb
).dst_group
;
1268 put_cmsg(msg
, SOL_NETLINK
, NETLINK_PKTINFO
, sizeof(info
), &info
);
1271 static int netlink_sendmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1272 struct msghdr
*msg
, size_t len
)
1274 struct sock_iocb
*siocb
= kiocb_to_siocb(kiocb
);
1275 struct sock
*sk
= sock
->sk
;
1276 struct netlink_sock
*nlk
= nlk_sk(sk
);
1277 struct sockaddr_nl
*addr
= msg
->msg_name
;
1280 struct sk_buff
*skb
;
1282 struct scm_cookie scm
;
1284 if (msg
->msg_flags
&MSG_OOB
)
1287 if (NULL
== siocb
->scm
)
1289 err
= scm_send(sock
, msg
, siocb
->scm
);
1293 if (msg
->msg_namelen
) {
1294 if (addr
->nl_family
!= AF_NETLINK
)
1296 dst_pid
= addr
->nl_pid
;
1297 dst_group
= ffs(addr
->nl_groups
);
1298 if (dst_group
&& !netlink_capable(sock
, NL_NONROOT_SEND
))
1301 dst_pid
= nlk
->dst_pid
;
1302 dst_group
= nlk
->dst_group
;
1306 err
= netlink_autobind(sock
);
1312 if (len
> sk
->sk_sndbuf
- 32)
1315 skb
= alloc_skb(len
, GFP_KERNEL
);
1319 NETLINK_CB(skb
).pid
= nlk
->pid
;
1320 NETLINK_CB(skb
).dst_group
= dst_group
;
1321 NETLINK_CB(skb
).loginuid
= audit_get_loginuid(current
);
1322 NETLINK_CB(skb
).sessionid
= audit_get_sessionid(current
);
1323 security_task_getsecid(current
, &(NETLINK_CB(skb
).sid
));
1324 memcpy(NETLINK_CREDS(skb
), &siocb
->scm
->creds
, sizeof(struct ucred
));
1326 /* What can I do? Netlink is asynchronous, so that
1327 we will have to save current capabilities to
1328 check them, when this message will be delivered
1329 to corresponding kernel module. --ANK (980802)
1333 if (memcpy_fromiovec(skb_put(skb
, len
), msg
->msg_iov
, len
)) {
1338 err
= security_netlink_send(sk
, skb
);
1345 atomic_inc(&skb
->users
);
1346 netlink_broadcast(sk
, skb
, dst_pid
, dst_group
, GFP_KERNEL
);
1348 err
= netlink_unicast(sk
, skb
, dst_pid
, msg
->msg_flags
&MSG_DONTWAIT
);
1354 static int netlink_recvmsg(struct kiocb
*kiocb
, struct socket
*sock
,
1355 struct msghdr
*msg
, size_t len
,
1358 struct sock_iocb
*siocb
= kiocb_to_siocb(kiocb
);
1359 struct scm_cookie scm
;
1360 struct sock
*sk
= sock
->sk
;
1361 struct netlink_sock
*nlk
= nlk_sk(sk
);
1362 int noblock
= flags
&MSG_DONTWAIT
;
1364 struct sk_buff
*skb
, *frag __maybe_unused
= NULL
;
1372 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
1376 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1377 if (unlikely(skb_shinfo(skb
)->frag_list
)) {
1378 bool need_compat
= !!(flags
& MSG_CMSG_COMPAT
);
1381 * If this skb has a frag_list, then here that means that
1382 * we will have to use the frag_list skb for compat tasks
1383 * and the regular skb for non-compat tasks.
1385 * The skb might (and likely will) be cloned, so we can't
1386 * just reset frag_list and go on with things -- we need to
1387 * keep that. For the compat case that's easy -- simply get
1388 * a reference to the compat skb and free the regular one
1389 * including the frag. For the non-compat case, we need to
1390 * avoid sending the frag to the user -- so assign NULL but
1391 * restore it below before freeing the skb.
1394 struct sk_buff
*compskb
= skb_shinfo(skb
)->frag_list
;
1399 frag
= skb_shinfo(skb
)->frag_list
;
1400 skb_shinfo(skb
)->frag_list
= NULL
;
1405 msg
->msg_namelen
= 0;
1409 msg
->msg_flags
|= MSG_TRUNC
;
1413 skb_reset_transport_header(skb
);
1414 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1416 if (msg
->msg_name
) {
1417 struct sockaddr_nl
*addr
= (struct sockaddr_nl
*)msg
->msg_name
;
1418 addr
->nl_family
= AF_NETLINK
;
1420 addr
->nl_pid
= NETLINK_CB(skb
).pid
;
1421 addr
->nl_groups
= netlink_group_mask(NETLINK_CB(skb
).dst_group
);
1422 msg
->msg_namelen
= sizeof(*addr
);
1425 if (nlk
->flags
& NETLINK_RECV_PKTINFO
)
1426 netlink_cmsg_recv_pktinfo(msg
, skb
);
1428 if (NULL
== siocb
->scm
) {
1429 memset(&scm
, 0, sizeof(scm
));
1432 siocb
->scm
->creds
= *NETLINK_CREDS(skb
);
1433 if (flags
& MSG_TRUNC
)
1436 #ifdef CONFIG_COMPAT_NETLINK_MESSAGES
1437 skb_shinfo(skb
)->frag_list
= frag
;
1440 skb_free_datagram(sk
, skb
);
1442 if (nlk
->cb
&& atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
/ 2)
1445 scm_recv(sock
, msg
, siocb
->scm
, flags
);
1447 netlink_rcv_wake(sk
);
1448 return err
? : copied
;
1451 static void netlink_data_ready(struct sock
*sk
, int len
)
1457 * We export these functions to other modules. They provide a
1458 * complete set of kernel non-blocking support for message
1463 netlink_kernel_create(struct net
*net
, int unit
, unsigned int groups
,
1464 void (*input
)(struct sk_buff
*skb
),
1465 struct mutex
*cb_mutex
, struct module
*module
)
1467 struct socket
*sock
;
1469 struct netlink_sock
*nlk
;
1470 unsigned long *listeners
= NULL
;
1474 if (unit
< 0 || unit
>= MAX_LINKS
)
1477 if (sock_create_lite(PF_NETLINK
, SOCK_DGRAM
, unit
, &sock
))
1481 * We have to just have a reference on the net from sk, but don't
1482 * get_net it. Besides, we cannot get and then put the net here.
1483 * So we create one inside init_net and the move it to net.
1486 if (__netlink_create(&init_net
, sock
, cb_mutex
, unit
) < 0)
1487 goto out_sock_release_nosk
;
1490 sk_change_net(sk
, net
);
1495 listeners
= kzalloc(NLGRPSZ(groups
) + sizeof(struct listeners_rcu_head
),
1498 goto out_sock_release
;
1500 sk
->sk_data_ready
= netlink_data_ready
;
1502 nlk_sk(sk
)->netlink_rcv
= input
;
1504 if (netlink_insert(sk
, net
, 0))
1505 goto out_sock_release
;
1508 nlk
->flags
|= NETLINK_KERNEL_SOCKET
;
1510 netlink_table_grab();
1511 if (!nl_table
[unit
].registered
) {
1512 nl_table
[unit
].groups
= groups
;
1513 nl_table
[unit
].listeners
= listeners
;
1514 nl_table
[unit
].cb_mutex
= cb_mutex
;
1515 nl_table
[unit
].module
= module
;
1516 nl_table
[unit
].registered
= 1;
1519 nl_table
[unit
].registered
++;
1521 netlink_table_ungrab();
1526 netlink_kernel_release(sk
);
1529 out_sock_release_nosk
:
1533 EXPORT_SYMBOL(netlink_kernel_create
);
1537 netlink_kernel_release(struct sock
*sk
)
1539 sk_release_kernel(sk
);
1541 EXPORT_SYMBOL(netlink_kernel_release
);
1544 static void netlink_free_old_listeners(struct rcu_head
*rcu_head
)
1546 struct listeners_rcu_head
*lrh
;
1548 lrh
= container_of(rcu_head
, struct listeners_rcu_head
, rcu_head
);
1553 * netlink_change_ngroups - change number of multicast groups
1555 * This changes the number of multicast groups that are available
1556 * on a certain netlink family. Note that it is not possible to
1557 * change the number of groups to below 32. Also note that it does
1558 * not implicitly call netlink_clear_multicast_users() when the
1559 * number of groups is reduced.
1561 * @sk: The kernel netlink socket, as returned by netlink_kernel_create().
1562 * @groups: The new number of groups.
1564 int netlink_change_ngroups(struct sock
*sk
, unsigned int groups
)
1566 unsigned long *listeners
, *old
= NULL
;
1567 struct listeners_rcu_head
*old_rcu_head
;
1568 struct netlink_table
*tbl
= &nl_table
[sk
->sk_protocol
];
1574 netlink_table_grab();
1575 if (NLGRPSZ(tbl
->groups
) < NLGRPSZ(groups
)) {
1576 listeners
= kzalloc(NLGRPSZ(groups
) +
1577 sizeof(struct listeners_rcu_head
),
1583 old
= tbl
->listeners
;
1584 memcpy(listeners
, old
, NLGRPSZ(tbl
->groups
));
1585 rcu_assign_pointer(tbl
->listeners
, listeners
);
1587 * Free the old memory after an RCU grace period so we
1588 * don't leak it. We use call_rcu() here in order to be
1589 * able to call this function from atomic contexts. The
1590 * allocation of this memory will have reserved enough
1591 * space for struct listeners_rcu_head at the end.
1593 old_rcu_head
= (void *)(tbl
->listeners
+
1594 NLGRPLONGS(tbl
->groups
));
1595 old_rcu_head
->ptr
= old
;
1596 call_rcu(&old_rcu_head
->rcu_head
, netlink_free_old_listeners
);
1598 tbl
->groups
= groups
;
1601 netlink_table_ungrab();
1606 * netlink_clear_multicast_users - kick off multicast listeners
1608 * This function removes all listeners from the given group.
1609 * @ksk: The kernel netlink socket, as returned by
1610 * netlink_kernel_create().
1611 * @group: The multicast group to clear.
1613 void netlink_clear_multicast_users(struct sock
*ksk
, unsigned int group
)
1616 struct hlist_node
*node
;
1617 struct netlink_table
*tbl
= &nl_table
[ksk
->sk_protocol
];
1619 netlink_table_grab();
1621 sk_for_each_bound(sk
, node
, &tbl
->mc_list
)
1622 netlink_update_socket_mc(nlk_sk(sk
), group
, 0);
1624 netlink_table_ungrab();
1627 void netlink_set_nonroot(int protocol
, unsigned int flags
)
1629 if ((unsigned int)protocol
< MAX_LINKS
)
1630 nl_table
[protocol
].nl_nonroot
= flags
;
1632 EXPORT_SYMBOL(netlink_set_nonroot
);
1634 static void netlink_destroy_callback(struct netlink_callback
*cb
)
1641 * It looks a bit ugly.
1642 * It would be better to create kernel thread.
1645 static int netlink_dump(struct sock
*sk
)
1647 struct netlink_sock
*nlk
= nlk_sk(sk
);
1648 struct netlink_callback
*cb
;
1649 struct sk_buff
*skb
;
1650 struct nlmsghdr
*nlh
;
1651 int len
, err
= -ENOBUFS
;
1653 skb
= sock_rmalloc(sk
, NLMSG_GOODSIZE
, 0, GFP_KERNEL
);
1657 mutex_lock(nlk
->cb_mutex
);
1665 len
= cb
->dump(skb
, cb
);
1668 mutex_unlock(nlk
->cb_mutex
);
1670 if (sk_filter(sk
, skb
))
1673 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1674 sk
->sk_data_ready(sk
, skb
->len
);
1679 nlh
= nlmsg_put_answer(skb
, cb
, NLMSG_DONE
, sizeof(len
), NLM_F_MULTI
);
1683 memcpy(nlmsg_data(nlh
), &len
, sizeof(len
));
1685 if (sk_filter(sk
, skb
))
1688 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1689 sk
->sk_data_ready(sk
, skb
->len
);
1695 mutex_unlock(nlk
->cb_mutex
);
1697 netlink_destroy_callback(cb
);
1701 mutex_unlock(nlk
->cb_mutex
);
1707 int netlink_dump_start(struct sock
*ssk
, struct sk_buff
*skb
,
1708 const struct nlmsghdr
*nlh
,
1709 int (*dump
)(struct sk_buff
*skb
,
1710 struct netlink_callback
*),
1711 int (*done
)(struct netlink_callback
*))
1713 struct netlink_callback
*cb
;
1715 struct netlink_sock
*nlk
;
1717 cb
= kzalloc(sizeof(*cb
), GFP_KERNEL
);
1724 atomic_inc(&skb
->users
);
1727 sk
= netlink_lookup(sock_net(ssk
), ssk
->sk_protocol
, NETLINK_CB(skb
).pid
);
1729 netlink_destroy_callback(cb
);
1730 return -ECONNREFUSED
;
1733 /* A dump is in progress... */
1734 mutex_lock(nlk
->cb_mutex
);
1736 mutex_unlock(nlk
->cb_mutex
);
1737 netlink_destroy_callback(cb
);
1742 mutex_unlock(nlk
->cb_mutex
);
1747 /* We successfully started a dump, by returning -EINTR we
1748 * signal not to send ACK even if it was requested.
1752 EXPORT_SYMBOL(netlink_dump_start
);
1754 void netlink_ack(struct sk_buff
*in_skb
, struct nlmsghdr
*nlh
, int err
)
1756 struct sk_buff
*skb
;
1757 struct nlmsghdr
*rep
;
1758 struct nlmsgerr
*errmsg
;
1759 size_t payload
= sizeof(*errmsg
);
1761 /* error messages get the original request appened */
1763 payload
+= nlmsg_len(nlh
);
1765 skb
= nlmsg_new(payload
, GFP_KERNEL
);
1769 sk
= netlink_lookup(sock_net(in_skb
->sk
),
1770 in_skb
->sk
->sk_protocol
,
1771 NETLINK_CB(in_skb
).pid
);
1773 sk
->sk_err
= ENOBUFS
;
1774 sk
->sk_error_report(sk
);
1780 rep
= __nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, nlh
->nlmsg_seq
,
1781 NLMSG_ERROR
, sizeof(struct nlmsgerr
), 0);
1782 errmsg
= nlmsg_data(rep
);
1783 errmsg
->error
= err
;
1784 memcpy(&errmsg
->msg
, nlh
, err
? nlh
->nlmsg_len
: sizeof(*nlh
));
1785 netlink_unicast(in_skb
->sk
, skb
, NETLINK_CB(in_skb
).pid
, MSG_DONTWAIT
);
1787 EXPORT_SYMBOL(netlink_ack
);
1789 int netlink_rcv_skb(struct sk_buff
*skb
, int (*cb
)(struct sk_buff
*,
1792 struct nlmsghdr
*nlh
;
1795 while (skb
->len
>= nlmsg_total_size(0)) {
1798 nlh
= nlmsg_hdr(skb
);
1801 if (nlh
->nlmsg_len
< NLMSG_HDRLEN
|| skb
->len
< nlh
->nlmsg_len
)
1804 /* Only requests are handled by the kernel */
1805 if (!(nlh
->nlmsg_flags
& NLM_F_REQUEST
))
1808 /* Skip control messages */
1809 if (nlh
->nlmsg_type
< NLMSG_MIN_TYPE
)
1817 if (nlh
->nlmsg_flags
& NLM_F_ACK
|| err
)
1818 netlink_ack(skb
, nlh
, err
);
1821 msglen
= NLMSG_ALIGN(nlh
->nlmsg_len
);
1822 if (msglen
> skb
->len
)
1824 skb_pull(skb
, msglen
);
1829 EXPORT_SYMBOL(netlink_rcv_skb
);
1832 * nlmsg_notify - send a notification netlink message
1833 * @sk: netlink socket to use
1834 * @skb: notification message
1835 * @pid: destination netlink pid for reports or 0
1836 * @group: destination multicast group or 0
1837 * @report: 1 to report back, 0 to disable
1838 * @flags: allocation flags
1840 int nlmsg_notify(struct sock
*sk
, struct sk_buff
*skb
, u32 pid
,
1841 unsigned int group
, int report
, gfp_t flags
)
1846 int exclude_pid
= 0;
1849 atomic_inc(&skb
->users
);
1853 /* errors reported via destination sk->sk_err, but propagate
1854 * delivery errors if NETLINK_BROADCAST_ERROR flag is set */
1855 err
= nlmsg_multicast(sk
, skb
, exclude_pid
, group
, flags
);
1861 err2
= nlmsg_unicast(sk
, skb
, pid
);
1862 if (!err
|| err
== -ESRCH
)
1868 EXPORT_SYMBOL(nlmsg_notify
);
1870 #ifdef CONFIG_PROC_FS
1871 struct nl_seq_iter
{
1872 struct seq_net_private p
;
1877 static struct sock
*netlink_seq_socket_idx(struct seq_file
*seq
, loff_t pos
)
1879 struct nl_seq_iter
*iter
= seq
->private;
1882 struct hlist_node
*node
;
1885 for (i
= 0; i
< MAX_LINKS
; i
++) {
1886 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
1888 for (j
= 0; j
<= hash
->mask
; j
++) {
1889 sk_for_each(s
, node
, &hash
->table
[j
]) {
1890 if (sock_net(s
) != seq_file_net(seq
))
1904 static void *netlink_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1905 __acquires(nl_table_lock
)
1907 read_lock(&nl_table_lock
);
1908 return *pos
? netlink_seq_socket_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
1911 static void *netlink_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1914 struct nl_seq_iter
*iter
;
1919 if (v
== SEQ_START_TOKEN
)
1920 return netlink_seq_socket_idx(seq
, 0);
1922 iter
= seq
->private;
1926 } while (s
&& sock_net(s
) != seq_file_net(seq
));
1931 j
= iter
->hash_idx
+ 1;
1934 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
1936 for (; j
<= hash
->mask
; j
++) {
1937 s
= sk_head(&hash
->table
[j
]);
1938 while (s
&& sock_net(s
) != seq_file_net(seq
))
1948 } while (++i
< MAX_LINKS
);
1953 static void netlink_seq_stop(struct seq_file
*seq
, void *v
)
1954 __releases(nl_table_lock
)
1956 read_unlock(&nl_table_lock
);
1960 static int netlink_seq_show(struct seq_file
*seq
, void *v
)
1962 if (v
== SEQ_START_TOKEN
)
1964 "sk Eth Pid Groups "
1965 "Rmem Wmem Dump Locks Drops\n");
1968 struct netlink_sock
*nlk
= nlk_sk(s
);
1970 seq_printf(seq
, "%p %-3d %-6d %08x %-8d %-8d %p %-8d %-8d\n",
1974 nlk
->groups
? (u32
)nlk
->groups
[0] : 0,
1975 sk_rmem_alloc_get(s
),
1976 sk_wmem_alloc_get(s
),
1978 atomic_read(&s
->sk_refcnt
),
1979 atomic_read(&s
->sk_drops
)
1986 static const struct seq_operations netlink_seq_ops
= {
1987 .start
= netlink_seq_start
,
1988 .next
= netlink_seq_next
,
1989 .stop
= netlink_seq_stop
,
1990 .show
= netlink_seq_show
,
1994 static int netlink_seq_open(struct inode
*inode
, struct file
*file
)
1996 return seq_open_net(inode
, file
, &netlink_seq_ops
,
1997 sizeof(struct nl_seq_iter
));
2000 static const struct file_operations netlink_seq_fops
= {
2001 .owner
= THIS_MODULE
,
2002 .open
= netlink_seq_open
,
2004 .llseek
= seq_lseek
,
2005 .release
= seq_release_net
,
2010 int netlink_register_notifier(struct notifier_block
*nb
)
2012 return atomic_notifier_chain_register(&netlink_chain
, nb
);
2014 EXPORT_SYMBOL(netlink_register_notifier
);
2016 int netlink_unregister_notifier(struct notifier_block
*nb
)
2018 return atomic_notifier_chain_unregister(&netlink_chain
, nb
);
2020 EXPORT_SYMBOL(netlink_unregister_notifier
);
2022 static const struct proto_ops netlink_ops
= {
2023 .family
= PF_NETLINK
,
2024 .owner
= THIS_MODULE
,
2025 .release
= netlink_release
,
2026 .bind
= netlink_bind
,
2027 .connect
= netlink_connect
,
2028 .socketpair
= sock_no_socketpair
,
2029 .accept
= sock_no_accept
,
2030 .getname
= netlink_getname
,
2031 .poll
= datagram_poll
,
2032 .ioctl
= sock_no_ioctl
,
2033 .listen
= sock_no_listen
,
2034 .shutdown
= sock_no_shutdown
,
2035 .setsockopt
= netlink_setsockopt
,
2036 .getsockopt
= netlink_getsockopt
,
2037 .sendmsg
= netlink_sendmsg
,
2038 .recvmsg
= netlink_recvmsg
,
2039 .mmap
= sock_no_mmap
,
2040 .sendpage
= sock_no_sendpage
,
2043 static struct net_proto_family netlink_family_ops
= {
2044 .family
= PF_NETLINK
,
2045 .create
= netlink_create
,
2046 .owner
= THIS_MODULE
, /* for consistency 8) */
2049 static int __net_init
netlink_net_init(struct net
*net
)
2051 #ifdef CONFIG_PROC_FS
2052 if (!proc_net_fops_create(net
, "netlink", 0, &netlink_seq_fops
))
2058 static void __net_exit
netlink_net_exit(struct net
*net
)
2060 #ifdef CONFIG_PROC_FS
2061 proc_net_remove(net
, "netlink");
2065 static struct pernet_operations __net_initdata netlink_net_ops
= {
2066 .init
= netlink_net_init
,
2067 .exit
= netlink_net_exit
,
2070 static int __init
netlink_proto_init(void)
2072 struct sk_buff
*dummy_skb
;
2074 unsigned long limit
;
2076 int err
= proto_register(&netlink_proto
, 0);
2081 BUILD_BUG_ON(sizeof(struct netlink_skb_parms
) > sizeof(dummy_skb
->cb
));
2083 nl_table
= kcalloc(MAX_LINKS
, sizeof(*nl_table
), GFP_KERNEL
);
2087 if (num_physpages
>= (128 * 1024))
2088 limit
= num_physpages
>> (21 - PAGE_SHIFT
);
2090 limit
= num_physpages
>> (23 - PAGE_SHIFT
);
2092 order
= get_bitmask_order(limit
) - 1 + PAGE_SHIFT
;
2093 limit
= (1UL << order
) / sizeof(struct hlist_head
);
2094 order
= get_bitmask_order(min(limit
, (unsigned long)UINT_MAX
)) - 1;
2096 for (i
= 0; i
< MAX_LINKS
; i
++) {
2097 struct nl_pid_hash
*hash
= &nl_table
[i
].hash
;
2099 hash
->table
= nl_pid_hash_zalloc(1 * sizeof(*hash
->table
));
2102 nl_pid_hash_free(nl_table
[i
].hash
.table
,
2103 1 * sizeof(*hash
->table
));
2107 hash
->max_shift
= order
;
2110 hash
->rehash_time
= jiffies
;
2113 sock_register(&netlink_family_ops
);
2114 register_pernet_subsys(&netlink_net_ops
);
2115 /* The netlink device handler may be needed early. */
2120 panic("netlink_init: Cannot allocate nl_table\n");
2123 core_initcall(netlink_proto_init
);