blob: 25af1243649b7083a5b20ef7116635acf0f4ceef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03002 * inet_diag.c Module for monitoring INET transport protocols sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Ilpo Järvinen172589c2007-08-28 15:50:33 -070012#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/types.h>
15#include <linux/fcntl.h>
16#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/cache.h>
19#include <linux/init.h>
20#include <linux/time.h>
21
22#include <net/icmp.h>
23#include <net/tcp.h>
24#include <net/ipv6.h>
25#include <net/inet_common.h>
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030026#include <net/inet_connection_sock.h>
27#include <net/inet_hashtables.h>
28#include <net/inet_timewait_sock.h>
29#include <net/inet6_hashtables.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070030#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <linux/inet.h>
33#include <linux/stddef.h>
34
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -030035#include <linux/inet_diag.h>
Pavel Emelyanovd3664772011-12-06 07:58:03 +000036#include <linux/sock_diag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -030038static const struct inet_diag_handler **inet_diag_table;
39
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -030040struct inet_diag_entry {
Eric Dumazete31c5e02015-03-10 07:15:53 -070041 const __be32 *saddr;
42 const __be32 *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 u16 sport;
44 u16 dport;
45 u16 family;
46 u16 userlocks;
47};
48
Herbert Xud523a322007-12-03 15:51:25 +110049static DEFINE_MUTEX(inet_diag_table_mutex);
50
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000051static const struct inet_diag_handler *inet_diag_lock_handler(int proto)
Herbert Xud523a322007-12-03 15:51:25 +110052{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000053 if (!inet_diag_table[proto])
Pavel Emelyanovaec8dc62011-12-15 02:43:27 +000054 request_module("net-pf-%d-proto-%d-type-%d-%d", PF_NETLINK,
55 NETLINK_SOCK_DIAG, AF_INET, proto);
Herbert Xud523a322007-12-03 15:51:25 +110056
57 mutex_lock(&inet_diag_table_mutex);
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000058 if (!inet_diag_table[proto])
Herbert Xud523a322007-12-03 15:51:25 +110059 return ERR_PTR(-ENOENT);
60
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000061 return inet_diag_table[proto];
Herbert Xud523a322007-12-03 15:51:25 +110062}
63
Eric Dumazete31c5e02015-03-10 07:15:53 -070064static void inet_diag_unlock_handler(const struct inet_diag_handler *handler)
Herbert Xud523a322007-12-03 15:51:25 +110065{
66 mutex_unlock(&inet_diag_table_mutex);
67}
68
Xin Longcb2050a2016-04-14 15:35:32 +080069void inet_diag_msg_common_fill(struct inet_diag_msg *r, struct sock *sk)
Eric Dumazeta4458342015-03-13 15:51:12 -070070{
71 r->idiag_family = sk->sk_family;
72
73 r->id.idiag_sport = htons(sk->sk_num);
74 r->id.idiag_dport = sk->sk_dport;
75 r->id.idiag_if = sk->sk_bound_dev_if;
76 sock_diag_save_cookie(sk, r->id.idiag_cookie);
77
78#if IS_ENABLED(CONFIG_IPV6)
79 if (sk->sk_family == AF_INET6) {
80 *(struct in6_addr *)r->id.idiag_src = sk->sk_v6_rcv_saddr;
81 *(struct in6_addr *)r->id.idiag_dst = sk->sk_v6_daddr;
82 } else
83#endif
84 {
85 memset(&r->id.idiag_src, 0, sizeof(r->id.idiag_src));
86 memset(&r->id.idiag_dst, 0, sizeof(r->id.idiag_dst));
87
88 r->id.idiag_src[0] = sk->sk_rcv_saddr;
89 r->id.idiag_dst[0] = sk->sk_daddr;
90 }
91}
Xin Longcb2050a2016-04-14 15:35:32 +080092EXPORT_SYMBOL_GPL(inet_diag_msg_common_fill);
Eric Dumazeta4458342015-03-13 15:51:12 -070093
Eric Dumazetc8e2c802015-03-13 09:49:59 -070094static size_t inet_sk_attr_size(void)
95{
96 return nla_total_size(sizeof(struct tcp_info))
97 + nla_total_size(1) /* INET_DIAG_SHUTDOWN */
98 + nla_total_size(1) /* INET_DIAG_TOS */
99 + nla_total_size(1) /* INET_DIAG_TCLASS */
100 + nla_total_size(sizeof(struct inet_diag_meminfo))
101 + nla_total_size(sizeof(struct inet_diag_msg))
102 + nla_total_size(SK_MEMINFO_VARS * sizeof(u32))
103 + nla_total_size(TCP_CA_NAME_MAX)
104 + nla_total_size(sizeof(struct tcpvegas_info))
105 + 64;
106}
107
Xin Longcb2050a2016-04-14 15:35:32 +0800108int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb,
109 struct inet_diag_msg *r, int ext,
110 struct user_namespace *user_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700112 const struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Pavel Emelyanove4e541a2012-10-23 22:29:56 +0400114 if (nla_put_u8(skb, INET_DIAG_SHUTDOWN, sk->sk_shutdown))
115 goto errout;
116
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500117 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
118 * hence this needs to be included regardless of socket family.
119 */
120 if (ext & (1 << (INET_DIAG_TOS - 1)))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000121 if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
122 goto errout;
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500123
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000124#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300125 if (r->idiag_family == AF_INET6) {
Maciej Żenczykowski06236ac2011-11-07 14:23:11 +0000126 if (ext & (1 << (INET_DIAG_TCLASS - 1)))
Eric Dumazetefe42082013-10-03 15:42:29 -0700127 if (nla_put_u8(skb, INET_DIAG_TCLASS,
128 inet6_sk(sk)->tclass) < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000129 goto errout;
Phil Sutter20462152015-06-24 11:02:51 +0200130
Phil Sutter8220ea22015-07-10 11:39:57 +0200131 if (((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
132 nla_put_u8(skb, INET_DIAG_SKV6ONLY, ipv6_only_sock(sk)))
Phil Sutter20462152015-06-24 11:02:51 +0200133 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135#endif
136
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600137 r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000138 r->idiag_inode = sock_i_ino(sk);
139
Xin Longcb2050a2016-04-14 15:35:32 +0800140 return 0;
141errout:
142 return 1;
143}
144EXPORT_SYMBOL_GPL(inet_diag_msg_attrs_fill);
145
146int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
147 struct sk_buff *skb, const struct inet_diag_req_v2 *req,
148 struct user_namespace *user_ns,
149 u32 portid, u32 seq, u16 nlmsg_flags,
150 const struct nlmsghdr *unlh)
151{
152 const struct tcp_congestion_ops *ca_ops;
153 const struct inet_diag_handler *handler;
154 int ext = req->idiag_ext;
155 struct inet_diag_msg *r;
156 struct nlmsghdr *nlh;
157 struct nlattr *attr;
158 void *info = NULL;
159
160 handler = inet_diag_table[req->sdiag_protocol];
161 BUG_ON(!handler);
162
163 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
164 nlmsg_flags);
165 if (!nlh)
166 return -EMSGSIZE;
167
168 r = nlmsg_data(nlh);
169 BUG_ON(!sk_fullsock(sk));
170
171 inet_diag_msg_common_fill(r, sk);
172 r->idiag_state = sk->sk_state;
173 r->idiag_timer = 0;
174 r->idiag_retrans = 0;
175
176 if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns))
177 goto errout;
178
Thomas Graf6e277ed2012-06-26 23:36:12 +0000179 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
180 struct inet_diag_meminfo minfo = {
181 .idiag_rmem = sk_rmem_alloc_get(sk),
182 .idiag_wmem = sk->sk_wmem_queued,
183 .idiag_fmem = sk->sk_forward_alloc,
184 .idiag_tmem = sk_wmem_alloc_get(sk),
185 };
186
187 if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
188 goto errout;
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000189 }
190
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000191 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
192 if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000193 goto errout;
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000194
Eric Dumazete31c5e02015-03-10 07:15:53 -0700195 if (!icsk) {
Shan Wei62ad6fc2012-04-24 18:15:41 +0000196 handler->idiag_get_info(sk, r, NULL);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000197 goto out;
198 }
199
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000200 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
201 icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS ||
202 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300203 r->idiag_timer = 1;
204 r->idiag_retrans = icsk->icsk_retransmits;
Xin Longb7de5292016-04-19 15:10:01 +0800205 r->idiag_expires =
206 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700207 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300208 r->idiag_timer = 4;
209 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800210 r->idiag_expires =
211 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 } else if (timer_pending(&sk->sk_timer)) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300213 r->idiag_timer = 2;
214 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800215 r->idiag_expires =
216 jiffies_to_msecs(sk->sk_timer.expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 } else {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300218 r->idiag_timer = 0;
219 r->idiag_expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300221
Craig Gallek3fd22af2015-06-15 11:26:19 -0400222 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) {
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +0200223 attr = nla_reserve_64bit(skb, INET_DIAG_INFO,
224 handler->idiag_info_size,
225 INET_DIAG_PAD);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000226 if (!attr)
227 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Thomas Graf6e277ed2012-06-26 23:36:12 +0000229 info = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700232 if (ext & (1 << (INET_DIAG_CONG - 1))) {
233 int err = 0;
234
235 rcu_read_lock();
236 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
237 if (ca_ops)
238 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name);
239 rcu_read_unlock();
240 if (err < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000241 goto errout;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700242 }
Thomas Graf6e277ed2012-06-26 23:36:12 +0000243
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300244 handler->idiag_get_info(sk, r, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700246 if (sk->sk_state < TCP_TIME_WAIT) {
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700247 union tcp_cc_info info;
248 size_t sz = 0;
249 int attr;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700250
251 rcu_read_lock();
252 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
253 if (ca_ops && ca_ops->get_info)
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700254 sz = ca_ops->get_info(sk, ext, &attr, &info);
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700255 rcu_read_unlock();
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700256 if (sz && nla_put(skb, attr, sz, &info) < 0)
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700257 goto errout;
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000260out:
Johannes Berg053c0952015-01-16 22:09:00 +0100261 nlmsg_end(skb, nlh);
262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Thomas Graf6e277ed2012-06-26 23:36:12 +0000264errout:
265 nlmsg_cancel(skb, nlh);
Patrick McHardy26932562007-01-31 23:16:40 -0800266 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000268EXPORT_SYMBOL_GPL(inet_sk_diag_fill);
269
270static int inet_csk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700271 struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700272 const struct inet_diag_req_v2 *req,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600273 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000274 u32 portid, u32 seq, u16 nlmsg_flags,
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000275 const struct nlmsghdr *unlh)
276{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700277 return inet_sk_diag_fill(sk, inet_csk(sk), skb, req,
278 user_ns, portid, seq, nlmsg_flags, unlh);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000279}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700281static int inet_twsk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700282 struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000283 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800284 const struct nlmsghdr *unlh)
285{
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700286 struct inet_timewait_sock *tw = inet_twsk(sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800287 struct inet_diag_msg *r;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000288 struct nlmsghdr *nlh;
Eric Dumazet789f5582015-04-12 18:51:09 -0700289 long tmo;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800290
Eric W. Biederman15e47302012-09-07 20:12:54 +0000291 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000292 nlmsg_flags);
293 if (!nlh)
David S. Millerd1063522012-06-26 21:28:54 -0700294 return -EMSGSIZE;
David S. Millerd1063522012-06-26 21:28:54 -0700295
296 r = nlmsg_data(nlh);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800297 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
298
Eric Dumazet789f5582015-04-12 18:51:09 -0700299 tmo = tw->tw_timer.expires - jiffies;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800300 if (tmo < 0)
301 tmo = 0;
302
Eric Dumazeta4458342015-03-13 15:51:12 -0700303 inet_diag_msg_common_fill(r, sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800304 r->idiag_retrans = 0;
Daniel Borkmannb1aac812013-12-17 00:38:39 +0100305
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800306 r->idiag_state = tw->tw_substate;
307 r->idiag_timer = 3;
Eric Dumazet96f817f2013-10-03 14:27:25 -0700308 r->idiag_expires = jiffies_to_msecs(tmo);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800309 r->idiag_rqueue = 0;
310 r->idiag_wqueue = 0;
311 r->idiag_uid = 0;
312 r->idiag_inode = 0;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000313
Johannes Berg053c0952015-01-16 22:09:00 +0100314 nlmsg_end(skb, nlh);
315 return 0;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800316}
317
Eric Dumazeta58917f2015-03-15 21:12:14 -0700318static int inet_req_diag_fill(struct sock *sk, struct sk_buff *skb,
319 u32 portid, u32 seq, u16 nlmsg_flags,
320 const struct nlmsghdr *unlh)
321{
322 struct inet_diag_msg *r;
323 struct nlmsghdr *nlh;
324 long tmo;
325
326 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
327 nlmsg_flags);
328 if (!nlh)
329 return -EMSGSIZE;
330
331 r = nlmsg_data(nlh);
332 inet_diag_msg_common_fill(r, sk);
333 r->idiag_state = TCP_SYN_RECV;
334 r->idiag_timer = 1;
335 r->idiag_retrans = inet_reqsk(sk)->num_retrans;
336
337 BUILD_BUG_ON(offsetof(struct inet_request_sock, ir_cookie) !=
338 offsetof(struct sock, sk_cookie));
339
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700340 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700341 r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0;
342 r->idiag_rqueue = 0;
343 r->idiag_wqueue = 0;
344 r->idiag_uid = 0;
345 r->idiag_inode = 0;
346
347 nlmsg_end(skb, nlh);
348 return 0;
349}
350
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800351static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700352 const struct inet_diag_req_v2 *r,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600353 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000354 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800355 const struct nlmsghdr *unlh)
356{
357 if (sk->sk_state == TCP_TIME_WAIT)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700358 return inet_twsk_diag_fill(sk, skb, portid, seq,
Eric Dumazetefe42082013-10-03 15:42:29 -0700359 nlmsg_flags, unlh);
360
Eric Dumazeta58917f2015-03-15 21:12:14 -0700361 if (sk->sk_state == TCP_NEW_SYN_RECV)
362 return inet_req_diag_fill(sk, skb, portid, seq,
363 nlmsg_flags, unlh);
364
Eric Dumazetefe42082013-10-03 15:42:29 -0700365 return inet_csk_diag_fill(sk, skb, r, user_ns, portid, seq,
366 nlmsg_flags, unlh);
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800367}
368
Lorenzo Colittib613f562015-12-16 12:30:02 +0900369struct sock *inet_diag_find_one_icsk(struct net *net,
370 struct inet_hashinfo *hashinfo,
371 const struct inet_diag_req_v2 *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700373 struct sock *sk;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300374
Eric Dumazet2d331912016-04-01 08:52:15 -0700375 rcu_read_lock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700376 if (req->sdiag_family == AF_INET)
Craig Galleka5836362016-02-10 11:50:38 -0500377 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[0],
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300378 req->id.idiag_dport, req->id.idiag_src[0],
379 req->id.idiag_sport, req->id.idiag_if);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000380#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet7c130672016-01-20 16:25:01 -0800381 else if (req->sdiag_family == AF_INET6) {
382 if (ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_dst) &&
383 ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_src))
Craig Galleka5836362016-02-10 11:50:38 -0500384 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[3],
Eric Dumazet7c130672016-01-20 16:25:01 -0800385 req->id.idiag_dport, req->id.idiag_src[3],
386 req->id.idiag_sport, req->id.idiag_if);
387 else
Craig Galleka5836362016-02-10 11:50:38 -0500388 sk = inet6_lookup(net, hashinfo, NULL, 0,
Eric Dumazet7c130672016-01-20 16:25:01 -0800389 (struct in6_addr *)req->id.idiag_dst,
390 req->id.idiag_dport,
391 (struct in6_addr *)req->id.idiag_src,
392 req->id.idiag_sport,
393 req->id.idiag_if);
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#endif
Eric Dumazet2d331912016-04-01 08:52:15 -0700396 else {
397 rcu_read_unlock();
Lorenzo Colittib613f562015-12-16 12:30:02 +0900398 return ERR_PTR(-EINVAL);
Eric Dumazet2d331912016-04-01 08:52:15 -0700399 }
400 rcu_read_unlock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700401 if (!sk)
Lorenzo Colittib613f562015-12-16 12:30:02 +0900402 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Lorenzo Colittib613f562015-12-16 12:30:02 +0900404 if (sock_diag_check_cookie(sk, req->id.idiag_cookie)) {
405 sock_gen_put(sk);
406 return ERR_PTR(-ENOENT);
407 }
408
409 return sk;
410}
411EXPORT_SYMBOL_GPL(inet_diag_find_one_icsk);
412
413int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
414 struct sk_buff *in_skb,
415 const struct nlmsghdr *nlh,
416 const struct inet_diag_req_v2 *req)
417{
418 struct net *net = sock_net(in_skb->sk);
419 struct sk_buff *rep;
420 struct sock *sk;
421 int err;
422
423 sk = inet_diag_find_one_icsk(net, hashinfo, req);
424 if (IS_ERR(sk))
425 return PTR_ERR(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700427 rep = nlmsg_new(inet_sk_attr_size(), GFP_KERNEL);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000428 if (!rep) {
429 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto out;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000433 err = sk_diag_fill(sk, rep, req,
Patrick McHardye32123e2013-04-17 06:46:57 +0000434 sk_user_ns(NETLINK_CB(in_skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000435 NETLINK_CB(in_skb).portid,
Patrick McHardy26932562007-01-31 23:16:40 -0800436 nlh->nlmsg_seq, 0, nlh);
437 if (err < 0) {
438 WARN_ON(err == -EMSGSIZE);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000439 nlmsg_free(rep);
Patrick McHardy26932562007-01-31 23:16:40 -0800440 goto out;
441 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000442 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300443 MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (err > 0)
445 err = 0;
446
447out:
Eric Dumazetc1d607c2013-10-11 08:54:49 -0700448 if (sk)
449 sock_gen_put(sk);
450
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000451 return err;
452}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000453EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000454
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900455static int inet_diag_cmd_exact(int cmd, struct sk_buff *in_skb,
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000456 const struct nlmsghdr *nlh,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700457 const struct inet_diag_req_v2 *req)
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000458{
459 const struct inet_diag_handler *handler;
460 int err;
461
462 handler = inet_diag_lock_handler(req->sdiag_protocol);
463 if (IS_ERR(handler))
464 err = PTR_ERR(handler);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900465 else if (cmd == SOCK_DIAG_BY_FAMILY)
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000466 err = handler->dump_one(in_skb, nlh, req);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900467 else if (cmd == SOCK_DESTROY && handler->destroy)
468 err = handler->destroy(in_skb, req);
469 else
470 err = -EOPNOTSUPP;
Herbert Xud523a322007-12-03 15:51:25 +1100471 inet_diag_unlock_handler(handler);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return err;
474}
475
Al Viro9f855292006-09-27 18:44:30 -0700476static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 int words = bits >> 5;
479
480 bits &= 0x1f;
481
482 if (words) {
483 if (memcmp(a1, a2, words << 2))
484 return 0;
485 }
486 if (bits) {
Al Viro9f855292006-09-27 18:44:30 -0700487 __be32 w1, w2;
488 __be32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 w1 = a1[words];
491 w2 = a2[words];
492
493 mask = htonl((0xffffffff) << (32 - bits));
494
495 if ((w1 ^ w2) & mask)
496 return 0;
497 }
498
499 return 1;
500}
501
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000502static int inet_diag_bc_run(const struct nlattr *_bc,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700503 const struct inet_diag_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000505 const void *bc = nla_data(_bc);
506 int len = nla_len(_bc);
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 while (len > 0) {
509 int yes = 1;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300510 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300513 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300515 case INET_DIAG_BC_JMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 yes = 0;
517 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300518 case INET_DIAG_BC_S_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 yes = entry->sport >= op[1].no;
520 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300521 case INET_DIAG_BC_S_LE:
Roel Kluinb4ced2b2010-01-19 14:12:20 -0800522 yes = entry->sport <= op[1].no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300524 case INET_DIAG_BC_D_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 yes = entry->dport >= op[1].no;
526 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300527 case INET_DIAG_BC_D_LE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 yes = entry->dport <= op[1].no;
529 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300530 case INET_DIAG_BC_AUTO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
532 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300533 case INET_DIAG_BC_S_COND:
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -0300534 case INET_DIAG_BC_D_COND: {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700535 const struct inet_diag_hostcond *cond;
536 const __be32 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Eric Dumazete31c5e02015-03-10 07:15:53 -0700538 cond = (const struct inet_diag_hostcond *)(op + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (cond->port != -1 &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300540 cond->port != (op->code == INET_DIAG_BC_S_COND ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 entry->sport : entry->dport)) {
542 yes = 0;
543 break;
544 }
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800545
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300546 if (op->code == INET_DIAG_BC_S_COND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 addr = entry->saddr;
548 else
549 addr = entry->daddr;
550
Neal Cardwellf67caec2012-12-08 19:43:23 +0000551 if (cond->family != AF_UNSPEC &&
552 cond->family != entry->family) {
553 if (entry->family == AF_INET6 &&
554 cond->family == AF_INET) {
555 if (addr[0] == 0 && addr[1] == 0 &&
556 addr[2] == htonl(0xffff) &&
557 bitstring_match(addr + 3,
558 cond->addr,
559 cond->prefix_len))
560 break;
561 }
562 yes = 0;
563 break;
564 }
565
566 if (cond->prefix_len == 0)
567 break;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800568 if (bitstring_match(addr, cond->addr,
569 cond->prefix_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 yes = 0;
572 break;
573 }
574 }
575
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800576 if (yes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 len -= op->yes;
578 bc += op->yes;
579 } else {
580 len -= op->no;
581 bc += op->no;
582 }
583 }
Eric Dumazeta02cec22010-09-22 20:43:57 +0000584 return len == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Eric Dumazeta4458342015-03-13 15:51:12 -0700587/* This helper is available for all sockets (ESTABLISH, TIMEWAIT, SYN_RECV)
588 */
589static void entry_fill_addrs(struct inet_diag_entry *entry,
590 const struct sock *sk)
591{
592#if IS_ENABLED(CONFIG_IPV6)
593 if (sk->sk_family == AF_INET6) {
594 entry->saddr = sk->sk_v6_rcv_saddr.s6_addr32;
595 entry->daddr = sk->sk_v6_daddr.s6_addr32;
596 } else
597#endif
598 {
599 entry->saddr = &sk->sk_rcv_saddr;
600 entry->daddr = &sk->sk_daddr;
601 }
602}
603
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000604int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
605{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000606 struct inet_sock *inet = inet_sk(sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700607 struct inet_diag_entry entry;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000608
Eric Dumazete31c5e02015-03-10 07:15:53 -0700609 if (!bc)
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000610 return 1;
611
612 entry.family = sk->sk_family;
Eric Dumazeta4458342015-03-13 15:51:12 -0700613 entry_fill_addrs(&entry, sk);
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000614 entry.sport = inet->inet_num;
615 entry.dport = ntohs(inet->inet_dport);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700616 entry.userlocks = sk_fullsock(sk) ? sk->sk_userlocks : 0;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000617
618 return inet_diag_bc_run(bc, &entry);
619}
620EXPORT_SYMBOL_GPL(inet_diag_bc_sk);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622static int valid_cc(const void *bc, int len, int cc)
623{
624 while (len >= 0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300625 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 if (cc > len)
628 return 0;
629 if (cc == len)
630 return 1;
Eric Dumazeteeb14972011-06-17 16:25:39 -0400631 if (op->yes < 4 || op->yes & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
633 len -= op->yes;
634 bc += op->yes;
635 }
636 return 0;
637}
638
Neal Cardwell405c0052012-12-08 19:43:22 +0000639/* Validate an inet_diag_hostcond. */
640static bool valid_hostcond(const struct inet_diag_bc_op *op, int len,
641 int *min_len)
642{
Neal Cardwell405c0052012-12-08 19:43:22 +0000643 struct inet_diag_hostcond *cond;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700644 int addr_len;
Neal Cardwell405c0052012-12-08 19:43:22 +0000645
646 /* Check hostcond space. */
647 *min_len += sizeof(struct inet_diag_hostcond);
648 if (len < *min_len)
649 return false;
650 cond = (struct inet_diag_hostcond *)(op + 1);
651
652 /* Check address family and address length. */
653 switch (cond->family) {
654 case AF_UNSPEC:
655 addr_len = 0;
656 break;
657 case AF_INET:
658 addr_len = sizeof(struct in_addr);
659 break;
660 case AF_INET6:
661 addr_len = sizeof(struct in6_addr);
662 break;
663 default:
664 return false;
665 }
666 *min_len += addr_len;
667 if (len < *min_len)
668 return false;
669
670 /* Check prefix length (in bits) vs address length (in bytes). */
671 if (cond->prefix_len > 8 * addr_len)
672 return false;
673
674 return true;
675}
676
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000677/* Validate a port comparison operator. */
Eric Dumazete31c5e02015-03-10 07:15:53 -0700678static bool valid_port_comparison(const struct inet_diag_bc_op *op,
679 int len, int *min_len)
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000680{
681 /* Port comparisons put the port in a follow-on inet_diag_bc_op. */
682 *min_len += sizeof(struct inet_diag_bc_op);
683 if (len < *min_len)
684 return false;
685 return true;
686}
687
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300688static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Eric Dumazeteeb14972011-06-17 16:25:39 -0400690 const void *bc = bytecode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 int len = bytecode_len;
692
693 while (len > 0) {
Neal Cardwell405c0052012-12-08 19:43:22 +0000694 int min_len = sizeof(struct inet_diag_bc_op);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700695 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300698 case INET_DIAG_BC_S_COND:
699 case INET_DIAG_BC_D_COND:
Neal Cardwell405c0052012-12-08 19:43:22 +0000700 if (!valid_hostcond(bc, len, &min_len))
701 return -EINVAL;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000702 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300703 case INET_DIAG_BC_S_GE:
704 case INET_DIAG_BC_S_LE:
705 case INET_DIAG_BC_D_GE:
706 case INET_DIAG_BC_D_LE:
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000707 if (!valid_port_comparison(bc, len, &min_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EINVAL;
709 break;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000710 case INET_DIAG_BC_AUTO:
711 case INET_DIAG_BC_JMP:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300712 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 break;
714 default:
715 return -EINVAL;
716 }
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000717
718 if (op->code != INET_DIAG_BC_NOP) {
719 if (op->no < min_len || op->no > len + 4 || op->no & 3)
720 return -EINVAL;
721 if (op->no < len &&
722 !valid_cc(bytecode, bytecode_len, len - op->no))
723 return -EINVAL;
724 }
725
Neal Cardwell405c0052012-12-08 19:43:22 +0000726 if (op->yes < min_len || op->yes > len + 4 || op->yes & 3)
Eric Dumazeteeb14972011-06-17 16:25:39 -0400727 return -EINVAL;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800728 bc += op->yes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 len -= op->yes;
730 }
731 return len == 0 ? 0 : -EINVAL;
732}
733
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800734static int inet_csk_diag_dump(struct sock *sk,
735 struct sk_buff *skb,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000736 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700737 const struct inet_diag_req_v2 *r,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000738 const struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000740 if (!inet_diag_bc_sk(bc, sk))
741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000743 return inet_csk_diag_fill(sk, skb, r,
Patrick McHardye32123e2013-04-17 06:46:57 +0000744 sk_user_ns(NETLINK_CB(cb->skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000745 NETLINK_CB(cb->skb).portid,
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800746 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Eric Dumazet49612722015-03-05 10:18:14 -0800749static void twsk_build_assert(void)
750{
751 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_family) !=
752 offsetof(struct sock, sk_family));
753
754 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_num) !=
755 offsetof(struct inet_sock, inet_num));
756
757 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_dport) !=
758 offsetof(struct inet_sock, inet_dport));
759
760 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_rcv_saddr) !=
761 offsetof(struct inet_sock, inet_rcv_saddr));
762
763 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_daddr) !=
764 offsetof(struct inet_sock, inet_daddr));
765
766#if IS_ENABLED(CONFIG_IPV6)
767 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_rcv_saddr) !=
768 offsetof(struct sock, sk_v6_rcv_saddr));
769
770 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_daddr) !=
771 offsetof(struct sock, sk_v6_daddr));
772#endif
773}
774
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000775void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700776 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700777 const struct inet_diag_req_v2 *r, struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000779 struct net *net = sock_net(skb->sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700780 int i, num, s_i, s_num;
Eric Dumazet079096f2015-10-02 11:43:32 -0700781 u32 idiag_states = r->idiag_states;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800782
Eric Dumazet079096f2015-10-02 11:43:32 -0700783 if (idiag_states & TCPF_SYN_RECV)
784 idiag_states |= TCPF_NEW_SYN_RECV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 s_i = cb->args[1];
786 s_num = num = cb->args[2];
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (cb->args[0] == 0) {
Eric Dumazet079096f2015-10-02 11:43:32 -0700789 if (!(idiag_states & TCPF_LISTEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 goto skip_listen_ht;
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300791
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700792 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800793 struct inet_listen_hashbucket *ilb;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700794 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 num = 0;
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800797 ilb = &hashinfo->listening_hash[i];
798 spin_lock_bh(&ilb->lock);
Eric Dumazet3b24d852016-04-01 08:52:17 -0700799 sk_for_each(sk, &ilb->head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct inet_sock *inet = inet_sk(sk);
801
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000802 if (!net_eq(sock_net(sk), net))
803 continue;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (num < s_num) {
806 num++;
807 continue;
808 }
809
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000810 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazete31c5e02015-03-10 07:15:53 -0700811 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000812 goto next_listen;
813
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000814 if (r->id.idiag_sport != inet->inet_sport &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300815 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 goto next_listen;
817
Eric Dumazet079096f2015-10-02 11:43:32 -0700818 if (r->id.idiag_dport ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 cb->args[3] > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 goto next_listen;
821
Eric Dumazet079096f2015-10-02 11:43:32 -0700822 if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800823 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto done;
825 }
826
827next_listen:
828 cb->args[3] = 0;
829 cb->args[4] = 0;
830 ++num;
831 }
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800832 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 s_num = 0;
835 cb->args[3] = 0;
836 cb->args[4] = 0;
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838skip_listen_ht:
839 cb->args[0] = 1;
840 s_i = num = s_num = 0;
841 }
842
Eric Dumazet079096f2015-10-02 11:43:32 -0700843 if (!(idiag_states & ~TCPF_LISTEN))
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000844 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Eric Dumazetf373b532009-10-09 00:16:19 +0000846 for (i = s_i; i <= hashinfo->ehash_mask; i++) {
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300847 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
David S. Miller7e3aab42008-11-21 16:39:19 -0800848 spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800849 struct hlist_nulls_node *node;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700850 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Andi Kleen6be547a2008-08-28 01:09:54 -0700852 num = 0;
853
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700854 if (hlist_nulls_empty(&head->chain))
Andi Kleen6be547a2008-08-28 01:09:54 -0700855 continue;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (i > s_i)
858 s_num = 0;
859
David S. Miller7e3aab42008-11-21 16:39:19 -0800860 spin_lock_bh(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800861 sk_nulls_for_each(sk, node, &head->chain) {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700862 int state, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000864 if (!net_eq(sock_net(sk), net))
865 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (num < s_num)
867 goto next_normal;
Neal Cardwell70315d22014-01-10 15:34:45 -0500868 state = (sk->sk_state == TCP_TIME_WAIT) ?
869 inet_twsk(sk)->tw_substate : sk->sk_state;
Eric Dumazet079096f2015-10-02 11:43:32 -0700870 if (!(idiag_states & (1 << state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto next_normal;
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000872 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700873 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000874 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700875 if (r->id.idiag_sport != htons(sk->sk_num) &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300876 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700878 if (r->id.idiag_dport != sk->sk_dport &&
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800879 r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto next_normal;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700881 twsk_build_assert();
882
883 if (!inet_diag_bc_sk(bc, sk))
884 goto next_normal;
885
886 res = sk_diag_fill(sk, skb, r,
887 sk_user_ns(NETLINK_CB(cb->skb).sk),
888 NETLINK_CB(cb->skb).portid,
889 cb->nlh->nlmsg_seq, NLM_F_MULTI,
890 cb->nlh);
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700891 if (res < 0) {
David S. Miller7e3aab42008-11-21 16:39:19 -0800892 spin_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 goto done;
894 }
895next_normal:
896 ++num;
897 }
898
David S. Miller7e3aab42008-11-21 16:39:19 -0800899 spin_unlock_bh(lock);
Eric Dumazetacffb582016-03-14 15:40:00 -0700900 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903done:
904 cb->args[1] = i;
905 cb->args[2] = num;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000906out:
907 ;
908}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000909EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000910
911static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700912 const struct inet_diag_req_v2 *r,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700913 struct nlattr *bc)
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000914{
915 const struct inet_diag_handler *handler;
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000916 int err = 0;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000917
918 handler = inet_diag_lock_handler(r->sdiag_protocol);
919 if (!IS_ERR(handler))
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000920 handler->dump(skb, cb, r, bc);
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000921 else
922 err = PTR_ERR(handler);
Herbert Xud523a322007-12-03 15:51:25 +1100923 inet_diag_unlock_handler(handler);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000924
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000925 return err ? : skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000928static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
929{
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000930 int hdrlen = sizeof(struct inet_diag_req_v2);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700931 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000932
933 if (nlmsg_attrlen(cb->nlh, hdrlen))
934 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
935
David S. Millerd1063522012-06-26 21:28:54 -0700936 return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000937}
938
Eric Dumazete31c5e02015-03-10 07:15:53 -0700939static int inet_diag_type2proto(int type)
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000940{
941 switch (type) {
942 case TCPDIAG_GETSOCK:
943 return IPPROTO_TCP;
944 case DCCPDIAG_GETSOCK:
945 return IPPROTO_DCCP;
946 default:
947 return 0;
948 }
949}
950
Eric Dumazete31c5e02015-03-10 07:15:53 -0700951static int inet_diag_dump_compat(struct sk_buff *skb,
952 struct netlink_callback *cb)
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000953{
David S. Millerd1063522012-06-26 21:28:54 -0700954 struct inet_diag_req *rc = nlmsg_data(cb->nlh);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700955 int hdrlen = sizeof(struct inet_diag_req);
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000956 struct inet_diag_req_v2 req;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000957 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000958
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000959 req.sdiag_family = AF_UNSPEC; /* compatibility */
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000960 req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
961 req.idiag_ext = rc->idiag_ext;
962 req.idiag_states = rc->idiag_states;
963 req.id = rc->id;
964
965 if (nlmsg_attrlen(cb->nlh, hdrlen))
966 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
967
968 return __inet_diag_dump(skb, cb, &req, bc);
969}
970
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +0000971static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700972 const struct nlmsghdr *nlh)
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +0000973{
David S. Millerd1063522012-06-26 21:28:54 -0700974 struct inet_diag_req *rc = nlmsg_data(nlh);
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000975 struct inet_diag_req_v2 req;
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +0000976
977 req.sdiag_family = rc->idiag_family;
978 req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
979 req.idiag_ext = rc->idiag_ext;
980 req.idiag_states = rc->idiag_states;
981 req.id = rc->id;
982
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900983 return inet_diag_cmd_exact(SOCK_DIAG_BY_FAMILY, in_skb, nlh, &req);
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +0000984}
985
Pavel Emelyanov8d341722011-12-06 07:57:06 +0000986static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Pavel Emelyanov3b09c842012-01-10 22:37:26 +0000988 int hdrlen = sizeof(struct inet_diag_req);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000989 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Thomas Grafead592b2007-03-22 23:30:35 -0700991 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
992 nlmsg_len(nlh) < hdrlen)
993 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
David S. Millerb8f3ab42011-01-18 12:40:38 -0800995 if (nlh->nlmsg_flags & NLM_F_DUMP) {
Thomas Grafead592b2007-03-22 23:30:35 -0700996 if (nlmsg_attrlen(nlh, hdrlen)) {
997 struct nlattr *attr;
998
999 attr = nlmsg_find_attr(nlh, hdrlen,
1000 INET_DIAG_REQ_BYTECODE);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001001 if (!attr ||
Thomas Grafead592b2007-03-22 23:30:35 -07001002 nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
1003 inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
1004 return -EINVAL;
1005 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001006 {
1007 struct netlink_dump_control c = {
1008 .dump = inet_diag_dump_compat,
1009 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001010 return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Thomas Grafead592b2007-03-22 23:30:35 -07001013
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001014 return inet_diag_get_exact_compat(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001017static int inet_diag_handler_cmd(struct sk_buff *skb, struct nlmsghdr *h)
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001018{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001019 int hdrlen = sizeof(struct inet_diag_req_v2);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001020 struct net *net = sock_net(skb->sk);
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001021
1022 if (nlmsg_len(h) < hdrlen)
1023 return -EINVAL;
1024
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001025 if (h->nlmsg_type == SOCK_DIAG_BY_FAMILY &&
1026 h->nlmsg_flags & NLM_F_DUMP) {
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001027 if (nlmsg_attrlen(h, hdrlen)) {
1028 struct nlattr *attr;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001029
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001030 attr = nlmsg_find_attr(h, hdrlen,
1031 INET_DIAG_REQ_BYTECODE);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001032 if (!attr ||
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001033 nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
1034 inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
1035 return -EINVAL;
1036 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001037 {
1038 struct netlink_dump_control c = {
1039 .dump = inet_diag_dump,
1040 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001041 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001042 }
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001043 }
1044
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001045 return inet_diag_cmd_exact(h->nlmsg_type, skb, h, nlmsg_data(h));
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001046}
1047
Craig Gallek35ac8382015-06-15 11:26:20 -04001048static
1049int inet_diag_handler_get_info(struct sk_buff *skb, struct sock *sk)
1050{
1051 const struct inet_diag_handler *handler;
1052 struct nlmsghdr *nlh;
1053 struct nlattr *attr;
1054 struct inet_diag_msg *r;
1055 void *info = NULL;
1056 int err = 0;
1057
1058 nlh = nlmsg_put(skb, 0, 0, SOCK_DIAG_BY_FAMILY, sizeof(*r), 0);
1059 if (!nlh)
1060 return -ENOMEM;
1061
1062 r = nlmsg_data(nlh);
1063 memset(r, 0, sizeof(*r));
1064 inet_diag_msg_common_fill(r, sk);
Craig Galleke0df02e2015-06-17 10:59:10 -04001065 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_STREAM)
1066 r->id.idiag_sport = inet_sk(sk)->inet_sport;
Craig Gallek35ac8382015-06-15 11:26:20 -04001067 r->idiag_state = sk->sk_state;
1068
1069 if ((err = nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))) {
1070 nlmsg_cancel(skb, nlh);
1071 return err;
1072 }
1073
1074 handler = inet_diag_lock_handler(sk->sk_protocol);
1075 if (IS_ERR(handler)) {
1076 inet_diag_unlock_handler(handler);
1077 nlmsg_cancel(skb, nlh);
1078 return PTR_ERR(handler);
1079 }
1080
1081 attr = handler->idiag_info_size
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +02001082 ? nla_reserve_64bit(skb, INET_DIAG_INFO,
1083 handler->idiag_info_size,
1084 INET_DIAG_PAD)
Craig Gallek35ac8382015-06-15 11:26:20 -04001085 : NULL;
1086 if (attr)
1087 info = nla_data(attr);
1088
1089 handler->idiag_get_info(sk, r, info);
1090 inet_diag_unlock_handler(handler);
1091
1092 nlmsg_end(skb, nlh);
1093 return 0;
1094}
1095
Shan Wei8dcf01f2012-04-24 18:21:07 +00001096static const struct sock_diag_handler inet_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001097 .family = AF_INET,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001098 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001099 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001100 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001101};
1102
Shan Wei8dcf01f2012-04-24 18:21:07 +00001103static const struct sock_diag_handler inet6_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001104 .family = AF_INET6,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001105 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001106 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001107 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001108};
1109
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001110int inet_diag_register(const struct inet_diag_handler *h)
1111{
1112 const __u16 type = h->idiag_type;
1113 int err = -EINVAL;
1114
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001115 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001116 goto out;
1117
Herbert Xud523a322007-12-03 15:51:25 +11001118 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001119 err = -EEXIST;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001120 if (!inet_diag_table[type]) {
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001121 inet_diag_table[type] = h;
1122 err = 0;
1123 }
Herbert Xud523a322007-12-03 15:51:25 +11001124 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001125out:
1126 return err;
1127}
1128EXPORT_SYMBOL_GPL(inet_diag_register);
1129
1130void inet_diag_unregister(const struct inet_diag_handler *h)
1131{
1132 const __u16 type = h->idiag_type;
1133
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001134 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001135 return;
1136
Herbert Xud523a322007-12-03 15:51:25 +11001137 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001138 inet_diag_table[type] = NULL;
Herbert Xud523a322007-12-03 15:51:25 +11001139 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001140}
1141EXPORT_SYMBOL_GPL(inet_diag_unregister);
1142
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001143static int __init inet_diag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001145 const int inet_diag_table_size = (IPPROTO_MAX *
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001146 sizeof(struct inet_diag_handler *));
1147 int err = -ENOMEM;
1148
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001149 inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001150 if (!inet_diag_table)
1151 goto out;
1152
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001153 err = sock_diag_register(&inet_diag_handler);
1154 if (err)
1155 goto out_free_nl;
1156
1157 err = sock_diag_register(&inet6_diag_handler);
1158 if (err)
1159 goto out_free_inet;
1160
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001161 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001162out:
1163 return err;
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001164
1165out_free_inet:
1166 sock_diag_unregister(&inet_diag_handler);
1167out_free_nl:
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001168 kfree(inet_diag_table);
1169 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001172static void __exit inet_diag_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001174 sock_diag_unregister(&inet6_diag_handler);
1175 sock_diag_unregister(&inet_diag_handler);
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001176 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001177 kfree(inet_diag_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001180module_init(inet_diag_init);
1181module_exit(inet_diag_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182MODULE_LICENSE("GPL");
Pavel Emelyanovaec8dc62011-12-15 02:43:27 +00001183MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
1184MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);