1 #include <linux/mutex.h>
2 #include <linux/socket.h>
3 #include <linux/skbuff.h>
4 #include <net/netlink.h>
5 #include <net/net_namespace.h>
6 #include <linux/module.h>
8 #include <linux/kernel.h>
10 #include <linux/workqueue.h>
12 #include <linux/inet_diag.h>
13 #include <linux/sock_diag.h>
15 static const struct sock_diag_handler
*sock_diag_handlers
[AF_MAX
];
16 static int (*inet_rcv_compat
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
);
17 static DEFINE_MUTEX(sock_diag_table_mutex
);
18 static struct workqueue_struct
*broadcast_wq
;
20 static u64
sock_gen_cookie(struct sock
*sk
)
23 u64 res
= atomic64_read(&sk
->sk_cookie
);
27 res
= atomic64_inc_return(&sock_net(sk
)->cookie_gen
);
28 atomic64_cmpxchg(&sk
->sk_cookie
, 0, res
);
32 int sock_diag_check_cookie(struct sock
*sk
, const __u32
*cookie
)
36 if (cookie
[0] == INET_DIAG_NOCOOKIE
&& cookie
[1] == INET_DIAG_NOCOOKIE
)
39 res
= sock_gen_cookie(sk
);
40 if ((u32
)res
!= cookie
[0] || (u32
)(res
>> 32) != cookie
[1])
45 EXPORT_SYMBOL_GPL(sock_diag_check_cookie
);
47 void sock_diag_save_cookie(struct sock
*sk
, __u32
*cookie
)
49 u64 res
= sock_gen_cookie(sk
);
52 cookie
[1] = (u32
)(res
>> 32);
54 EXPORT_SYMBOL_GPL(sock_diag_save_cookie
);
56 int sock_diag_put_meminfo(struct sock
*sk
, struct sk_buff
*skb
, int attrtype
)
58 u32 mem
[SK_MEMINFO_VARS
];
60 mem
[SK_MEMINFO_RMEM_ALLOC
] = sk_rmem_alloc_get(sk
);
61 mem
[SK_MEMINFO_RCVBUF
] = sk
->sk_rcvbuf
;
62 mem
[SK_MEMINFO_WMEM_ALLOC
] = sk_wmem_alloc_get(sk
);
63 mem
[SK_MEMINFO_SNDBUF
] = sk
->sk_sndbuf
;
64 mem
[SK_MEMINFO_FWD_ALLOC
] = sk
->sk_forward_alloc
;
65 mem
[SK_MEMINFO_WMEM_QUEUED
] = sk
->sk_wmem_queued
;
66 mem
[SK_MEMINFO_OPTMEM
] = atomic_read(&sk
->sk_omem_alloc
);
67 mem
[SK_MEMINFO_BACKLOG
] = sk
->sk_backlog
.len
;
69 return nla_put(skb
, attrtype
, sizeof(mem
), &mem
);
71 EXPORT_SYMBOL_GPL(sock_diag_put_meminfo
);
73 int sock_diag_put_filterinfo(bool may_report_filterinfo
, struct sock
*sk
,
74 struct sk_buff
*skb
, int attrtype
)
76 struct sock_fprog_kern
*fprog
;
77 struct sk_filter
*filter
;
82 if (!may_report_filterinfo
) {
83 nla_reserve(skb
, attrtype
, 0);
88 filter
= rcu_dereference(sk
->sk_filter
);
92 fprog
= filter
->prog
->orig_prog
;
93 flen
= bpf_classic_proglen(fprog
);
95 attr
= nla_reserve(skb
, attrtype
, flen
);
101 memcpy(nla_data(attr
), fprog
->filter
, flen
);
106 EXPORT_SYMBOL(sock_diag_put_filterinfo
);
108 struct broadcast_sk
{
110 struct work_struct work
;
113 static size_t sock_diag_nlmsg_size(void)
115 return NLMSG_ALIGN(sizeof(struct inet_diag_msg
)
116 + nla_total_size(sizeof(u8
)) /* INET_DIAG_PROTOCOL */
117 + nla_total_size(sizeof(struct tcp_info
))); /* INET_DIAG_INFO */
120 static void sock_diag_broadcast_destroy_work(struct work_struct
*work
)
122 struct broadcast_sk
*bsk
=
123 container_of(work
, struct broadcast_sk
, work
);
124 struct sock
*sk
= bsk
->sk
;
125 const struct sock_diag_handler
*hndl
;
127 const enum sknetlink_groups group
= sock_diag_destroy_group(sk
);
130 WARN_ON(group
== SKNLGRP_NONE
);
132 skb
= nlmsg_new(sock_diag_nlmsg_size(), GFP_KERNEL
);
136 mutex_lock(&sock_diag_table_mutex
);
137 hndl
= sock_diag_handlers
[sk
->sk_family
];
138 if (hndl
&& hndl
->get_info
)
139 err
= hndl
->get_info(skb
, sk
);
140 mutex_unlock(&sock_diag_table_mutex
);
143 nlmsg_multicast(sock_net(sk
)->diag_nlsk
, skb
, 0, group
,
152 void sock_diag_broadcast_destroy(struct sock
*sk
)
154 /* Note, this function is often called from an interrupt context. */
155 struct broadcast_sk
*bsk
=
156 kmalloc(sizeof(struct broadcast_sk
), GFP_ATOMIC
);
158 return sk_destruct(sk
);
160 INIT_WORK(&bsk
->work
, sock_diag_broadcast_destroy_work
);
161 queue_work(broadcast_wq
, &bsk
->work
);
164 void sock_diag_register_inet_compat(int (*fn
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
))
166 mutex_lock(&sock_diag_table_mutex
);
167 inet_rcv_compat
= fn
;
168 mutex_unlock(&sock_diag_table_mutex
);
170 EXPORT_SYMBOL_GPL(sock_diag_register_inet_compat
);
172 void sock_diag_unregister_inet_compat(int (*fn
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
))
174 mutex_lock(&sock_diag_table_mutex
);
175 inet_rcv_compat
= NULL
;
176 mutex_unlock(&sock_diag_table_mutex
);
178 EXPORT_SYMBOL_GPL(sock_diag_unregister_inet_compat
);
180 int sock_diag_register(const struct sock_diag_handler
*hndl
)
184 if (hndl
->family
>= AF_MAX
)
187 mutex_lock(&sock_diag_table_mutex
);
188 if (sock_diag_handlers
[hndl
->family
])
191 sock_diag_handlers
[hndl
->family
] = hndl
;
192 mutex_unlock(&sock_diag_table_mutex
);
196 EXPORT_SYMBOL_GPL(sock_diag_register
);
198 void sock_diag_unregister(const struct sock_diag_handler
*hnld
)
200 int family
= hnld
->family
;
202 if (family
>= AF_MAX
)
205 mutex_lock(&sock_diag_table_mutex
);
206 BUG_ON(sock_diag_handlers
[family
] != hnld
);
207 sock_diag_handlers
[family
] = NULL
;
208 mutex_unlock(&sock_diag_table_mutex
);
210 EXPORT_SYMBOL_GPL(sock_diag_unregister
);
212 static int __sock_diag_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
215 struct sock_diag_req
*req
= nlmsg_data(nlh
);
216 const struct sock_diag_handler
*hndl
;
218 if (nlmsg_len(nlh
) < sizeof(*req
))
221 if (req
->sdiag_family
>= AF_MAX
)
224 if (sock_diag_handlers
[req
->sdiag_family
] == NULL
)
225 request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK
,
226 NETLINK_SOCK_DIAG
, req
->sdiag_family
);
228 mutex_lock(&sock_diag_table_mutex
);
229 hndl
= sock_diag_handlers
[req
->sdiag_family
];
233 err
= hndl
->dump(skb
, nlh
);
234 mutex_unlock(&sock_diag_table_mutex
);
239 static int sock_diag_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
243 switch (nlh
->nlmsg_type
) {
244 case TCPDIAG_GETSOCK
:
245 case DCCPDIAG_GETSOCK
:
246 if (inet_rcv_compat
== NULL
)
247 request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK
,
248 NETLINK_SOCK_DIAG
, AF_INET
);
250 mutex_lock(&sock_diag_table_mutex
);
251 if (inet_rcv_compat
!= NULL
)
252 ret
= inet_rcv_compat(skb
, nlh
);
255 mutex_unlock(&sock_diag_table_mutex
);
258 case SOCK_DIAG_BY_FAMILY
:
259 return __sock_diag_rcv_msg(skb
, nlh
);
265 static DEFINE_MUTEX(sock_diag_mutex
);
267 static void sock_diag_rcv(struct sk_buff
*skb
)
269 mutex_lock(&sock_diag_mutex
);
270 netlink_rcv_skb(skb
, &sock_diag_rcv_msg
);
271 mutex_unlock(&sock_diag_mutex
);
274 static int sock_diag_bind(struct net
*net
, int group
)
277 case SKNLGRP_INET_TCP_DESTROY
:
278 case SKNLGRP_INET_UDP_DESTROY
:
279 if (!sock_diag_handlers
[AF_INET
])
280 request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK
,
281 NETLINK_SOCK_DIAG
, AF_INET
);
283 case SKNLGRP_INET6_TCP_DESTROY
:
284 case SKNLGRP_INET6_UDP_DESTROY
:
285 if (!sock_diag_handlers
[AF_INET6
])
286 request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK
,
287 NETLINK_SOCK_DIAG
, AF_INET
);
293 static int __net_init
diag_net_init(struct net
*net
)
295 struct netlink_kernel_cfg cfg
= {
296 .groups
= SKNLGRP_MAX
,
297 .input
= sock_diag_rcv
,
298 .bind
= sock_diag_bind
,
299 .flags
= NL_CFG_F_NONROOT_RECV
,
302 net
->diag_nlsk
= netlink_kernel_create(net
, NETLINK_SOCK_DIAG
, &cfg
);
303 return net
->diag_nlsk
== NULL
? -ENOMEM
: 0;
306 static void __net_exit
diag_net_exit(struct net
*net
)
308 netlink_kernel_release(net
->diag_nlsk
);
309 net
->diag_nlsk
= NULL
;
312 static struct pernet_operations diag_net_ops
= {
313 .init
= diag_net_init
,
314 .exit
= diag_net_exit
,
317 static int __init
sock_diag_init(void)
319 broadcast_wq
= alloc_workqueue("sock_diag_events", 0, 0);
320 BUG_ON(!broadcast_wq
);
321 return register_pernet_subsys(&diag_net_ops
);
324 static void __exit
sock_diag_exit(void)
326 unregister_pernet_subsys(&diag_net_ops
);
327 destroy_workqueue(broadcast_wq
);
330 module_init(sock_diag_init
);
331 module_exit(sock_diag_exit
);
332 MODULE_LICENSE("GPL");
333 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_SOCK_DIAG
);