blob: 38c2c47fe0e89ada9358f0bad11ffb195679f912 [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;
David Ahern637c8412016-06-23 18:42:51 -070047 u32 ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
Herbert Xud523a322007-12-03 15:51:25 +110050static DEFINE_MUTEX(inet_diag_table_mutex);
51
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000052static const struct inet_diag_handler *inet_diag_lock_handler(int proto)
Herbert Xud523a322007-12-03 15:51:25 +110053{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000054 if (!inet_diag_table[proto])
Pavel Emelyanovaec8dc62011-12-15 02:43:27 +000055 request_module("net-pf-%d-proto-%d-type-%d-%d", PF_NETLINK,
56 NETLINK_SOCK_DIAG, AF_INET, proto);
Herbert Xud523a322007-12-03 15:51:25 +110057
58 mutex_lock(&inet_diag_table_mutex);
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000059 if (!inet_diag_table[proto])
Herbert Xud523a322007-12-03 15:51:25 +110060 return ERR_PTR(-ENOENT);
61
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000062 return inet_diag_table[proto];
Herbert Xud523a322007-12-03 15:51:25 +110063}
64
Eric Dumazete31c5e02015-03-10 07:15:53 -070065static void inet_diag_unlock_handler(const struct inet_diag_handler *handler)
Herbert Xud523a322007-12-03 15:51:25 +110066{
67 mutex_unlock(&inet_diag_table_mutex);
68}
69
Xin Longcb2050a2016-04-14 15:35:32 +080070void inet_diag_msg_common_fill(struct inet_diag_msg *r, struct sock *sk)
Eric Dumazeta4458342015-03-13 15:51:12 -070071{
72 r->idiag_family = sk->sk_family;
73
74 r->id.idiag_sport = htons(sk->sk_num);
75 r->id.idiag_dport = sk->sk_dport;
76 r->id.idiag_if = sk->sk_bound_dev_if;
77 sock_diag_save_cookie(sk, r->id.idiag_cookie);
78
79#if IS_ENABLED(CONFIG_IPV6)
80 if (sk->sk_family == AF_INET6) {
81 *(struct in6_addr *)r->id.idiag_src = sk->sk_v6_rcv_saddr;
82 *(struct in6_addr *)r->id.idiag_dst = sk->sk_v6_daddr;
83 } else
84#endif
85 {
86 memset(&r->id.idiag_src, 0, sizeof(r->id.idiag_src));
87 memset(&r->id.idiag_dst, 0, sizeof(r->id.idiag_dst));
88
89 r->id.idiag_src[0] = sk->sk_rcv_saddr;
90 r->id.idiag_dst[0] = sk->sk_daddr;
91 }
92}
Xin Longcb2050a2016-04-14 15:35:32 +080093EXPORT_SYMBOL_GPL(inet_diag_msg_common_fill);
Eric Dumazeta4458342015-03-13 15:51:12 -070094
Eric Dumazetc8e2c802015-03-13 09:49:59 -070095static size_t inet_sk_attr_size(void)
96{
97 return nla_total_size(sizeof(struct tcp_info))
98 + nla_total_size(1) /* INET_DIAG_SHUTDOWN */
99 + nla_total_size(1) /* INET_DIAG_TOS */
100 + nla_total_size(1) /* INET_DIAG_TCLASS */
101 + nla_total_size(sizeof(struct inet_diag_meminfo))
102 + nla_total_size(sizeof(struct inet_diag_msg))
103 + nla_total_size(SK_MEMINFO_VARS * sizeof(u32))
104 + nla_total_size(TCP_CA_NAME_MAX)
105 + nla_total_size(sizeof(struct tcpvegas_info))
106 + 64;
107}
108
Xin Longcb2050a2016-04-14 15:35:32 +0800109int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb,
110 struct inet_diag_msg *r, int ext,
111 struct user_namespace *user_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700113 const struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Pavel Emelyanove4e541a2012-10-23 22:29:56 +0400115 if (nla_put_u8(skb, INET_DIAG_SHUTDOWN, sk->sk_shutdown))
116 goto errout;
117
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500118 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
119 * hence this needs to be included regardless of socket family.
120 */
121 if (ext & (1 << (INET_DIAG_TOS - 1)))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000122 if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
123 goto errout;
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500124
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000125#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300126 if (r->idiag_family == AF_INET6) {
Maciej Żenczykowski06236ac2011-11-07 14:23:11 +0000127 if (ext & (1 << (INET_DIAG_TCLASS - 1)))
Eric Dumazetefe42082013-10-03 15:42:29 -0700128 if (nla_put_u8(skb, INET_DIAG_TCLASS,
129 inet6_sk(sk)->tclass) < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000130 goto errout;
Phil Sutter20462152015-06-24 11:02:51 +0200131
Phil Sutter8220ea22015-07-10 11:39:57 +0200132 if (((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
133 nla_put_u8(skb, INET_DIAG_SKV6ONLY, ipv6_only_sock(sk)))
Phil Sutter20462152015-06-24 11:02:51 +0200134 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136#endif
137
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600138 r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000139 r->idiag_inode = sock_i_ino(sk);
140
Xin Longcb2050a2016-04-14 15:35:32 +0800141 return 0;
142errout:
143 return 1;
144}
145EXPORT_SYMBOL_GPL(inet_diag_msg_attrs_fill);
146
147int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
148 struct sk_buff *skb, const struct inet_diag_req_v2 *req,
149 struct user_namespace *user_ns,
150 u32 portid, u32 seq, u16 nlmsg_flags,
151 const struct nlmsghdr *unlh)
152{
153 const struct tcp_congestion_ops *ca_ops;
154 const struct inet_diag_handler *handler;
155 int ext = req->idiag_ext;
156 struct inet_diag_msg *r;
157 struct nlmsghdr *nlh;
158 struct nlattr *attr;
159 void *info = NULL;
160
161 handler = inet_diag_table[req->sdiag_protocol];
162 BUG_ON(!handler);
163
164 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
165 nlmsg_flags);
166 if (!nlh)
167 return -EMSGSIZE;
168
169 r = nlmsg_data(nlh);
170 BUG_ON(!sk_fullsock(sk));
171
172 inet_diag_msg_common_fill(r, sk);
173 r->idiag_state = sk->sk_state;
174 r->idiag_timer = 0;
175 r->idiag_retrans = 0;
176
177 if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns))
178 goto errout;
179
Thomas Graf6e277ed2012-06-26 23:36:12 +0000180 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
181 struct inet_diag_meminfo minfo = {
182 .idiag_rmem = sk_rmem_alloc_get(sk),
183 .idiag_wmem = sk->sk_wmem_queued,
184 .idiag_fmem = sk->sk_forward_alloc,
185 .idiag_tmem = sk_wmem_alloc_get(sk),
186 };
187
188 if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
189 goto errout;
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000190 }
191
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000192 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
193 if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000194 goto errout;
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000195
Eric Dumazete31c5e02015-03-10 07:15:53 -0700196 if (!icsk) {
Shan Wei62ad6fc2012-04-24 18:15:41 +0000197 handler->idiag_get_info(sk, r, NULL);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000198 goto out;
199 }
200
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000201 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
202 icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS ||
203 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300204 r->idiag_timer = 1;
205 r->idiag_retrans = icsk->icsk_retransmits;
Xin Longb7de5292016-04-19 15:10:01 +0800206 r->idiag_expires =
207 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700208 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300209 r->idiag_timer = 4;
210 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800211 r->idiag_expires =
212 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 } else if (timer_pending(&sk->sk_timer)) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300214 r->idiag_timer = 2;
215 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800216 r->idiag_expires =
217 jiffies_to_msecs(sk->sk_timer.expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 } else {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300219 r->idiag_timer = 0;
220 r->idiag_expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300222
Craig Gallek3fd22af2015-06-15 11:26:19 -0400223 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) {
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +0200224 attr = nla_reserve_64bit(skb, INET_DIAG_INFO,
225 handler->idiag_info_size,
226 INET_DIAG_PAD);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000227 if (!attr)
228 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Thomas Graf6e277ed2012-06-26 23:36:12 +0000230 info = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700233 if (ext & (1 << (INET_DIAG_CONG - 1))) {
234 int err = 0;
235
236 rcu_read_lock();
237 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
238 if (ca_ops)
239 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name);
240 rcu_read_unlock();
241 if (err < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000242 goto errout;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700243 }
Thomas Graf6e277ed2012-06-26 23:36:12 +0000244
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300245 handler->idiag_get_info(sk, r, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700247 if (sk->sk_state < TCP_TIME_WAIT) {
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700248 union tcp_cc_info info;
249 size_t sz = 0;
250 int attr;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700251
252 rcu_read_lock();
253 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
254 if (ca_ops && ca_ops->get_info)
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700255 sz = ca_ops->get_info(sk, ext, &attr, &info);
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700256 rcu_read_unlock();
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700257 if (sz && nla_put(skb, attr, sz, &info) < 0)
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700258 goto errout;
259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000261out:
Johannes Berg053c0952015-01-16 22:09:00 +0100262 nlmsg_end(skb, nlh);
263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Thomas Graf6e277ed2012-06-26 23:36:12 +0000265errout:
266 nlmsg_cancel(skb, nlh);
Patrick McHardy26932562007-01-31 23:16:40 -0800267 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000269EXPORT_SYMBOL_GPL(inet_sk_diag_fill);
270
271static int inet_csk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700272 struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700273 const struct inet_diag_req_v2 *req,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600274 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000275 u32 portid, u32 seq, u16 nlmsg_flags,
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000276 const struct nlmsghdr *unlh)
277{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700278 return inet_sk_diag_fill(sk, inet_csk(sk), skb, req,
279 user_ns, portid, seq, nlmsg_flags, unlh);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000280}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700282static int inet_twsk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700283 struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000284 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800285 const struct nlmsghdr *unlh)
286{
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700287 struct inet_timewait_sock *tw = inet_twsk(sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800288 struct inet_diag_msg *r;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000289 struct nlmsghdr *nlh;
Eric Dumazet789f5582015-04-12 18:51:09 -0700290 long tmo;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800291
Eric W. Biederman15e47302012-09-07 20:12:54 +0000292 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000293 nlmsg_flags);
294 if (!nlh)
David S. Millerd1063522012-06-26 21:28:54 -0700295 return -EMSGSIZE;
David S. Millerd1063522012-06-26 21:28:54 -0700296
297 r = nlmsg_data(nlh);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800298 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
299
Eric Dumazet789f5582015-04-12 18:51:09 -0700300 tmo = tw->tw_timer.expires - jiffies;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800301 if (tmo < 0)
302 tmo = 0;
303
Eric Dumazeta4458342015-03-13 15:51:12 -0700304 inet_diag_msg_common_fill(r, sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800305 r->idiag_retrans = 0;
Daniel Borkmannb1aac812013-12-17 00:38:39 +0100306
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800307 r->idiag_state = tw->tw_substate;
308 r->idiag_timer = 3;
Eric Dumazet96f817f2013-10-03 14:27:25 -0700309 r->idiag_expires = jiffies_to_msecs(tmo);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800310 r->idiag_rqueue = 0;
311 r->idiag_wqueue = 0;
312 r->idiag_uid = 0;
313 r->idiag_inode = 0;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000314
Johannes Berg053c0952015-01-16 22:09:00 +0100315 nlmsg_end(skb, nlh);
316 return 0;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800317}
318
Eric Dumazeta58917f2015-03-15 21:12:14 -0700319static int inet_req_diag_fill(struct sock *sk, struct sk_buff *skb,
320 u32 portid, u32 seq, u16 nlmsg_flags,
321 const struct nlmsghdr *unlh)
322{
323 struct inet_diag_msg *r;
324 struct nlmsghdr *nlh;
325 long tmo;
326
327 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
328 nlmsg_flags);
329 if (!nlh)
330 return -EMSGSIZE;
331
332 r = nlmsg_data(nlh);
333 inet_diag_msg_common_fill(r, sk);
334 r->idiag_state = TCP_SYN_RECV;
335 r->idiag_timer = 1;
336 r->idiag_retrans = inet_reqsk(sk)->num_retrans;
337
338 BUILD_BUG_ON(offsetof(struct inet_request_sock, ir_cookie) !=
339 offsetof(struct sock, sk_cookie));
340
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700341 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700342 r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0;
343 r->idiag_rqueue = 0;
344 r->idiag_wqueue = 0;
345 r->idiag_uid = 0;
346 r->idiag_inode = 0;
347
348 nlmsg_end(skb, nlh);
349 return 0;
350}
351
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800352static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700353 const struct inet_diag_req_v2 *r,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600354 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000355 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800356 const struct nlmsghdr *unlh)
357{
358 if (sk->sk_state == TCP_TIME_WAIT)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700359 return inet_twsk_diag_fill(sk, skb, portid, seq,
Eric Dumazetefe42082013-10-03 15:42:29 -0700360 nlmsg_flags, unlh);
361
Eric Dumazeta58917f2015-03-15 21:12:14 -0700362 if (sk->sk_state == TCP_NEW_SYN_RECV)
363 return inet_req_diag_fill(sk, skb, portid, seq,
364 nlmsg_flags, unlh);
365
Eric Dumazetefe42082013-10-03 15:42:29 -0700366 return inet_csk_diag_fill(sk, skb, r, user_ns, portid, seq,
367 nlmsg_flags, unlh);
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800368}
369
Lorenzo Colittib613f562015-12-16 12:30:02 +0900370struct sock *inet_diag_find_one_icsk(struct net *net,
371 struct inet_hashinfo *hashinfo,
372 const struct inet_diag_req_v2 *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700374 struct sock *sk;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300375
Eric Dumazet2d331912016-04-01 08:52:15 -0700376 rcu_read_lock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700377 if (req->sdiag_family == AF_INET)
Craig Galleka5836362016-02-10 11:50:38 -0500378 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[0],
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300379 req->id.idiag_dport, req->id.idiag_src[0],
380 req->id.idiag_sport, req->id.idiag_if);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000381#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet7c130672016-01-20 16:25:01 -0800382 else if (req->sdiag_family == AF_INET6) {
383 if (ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_dst) &&
384 ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_src))
Craig Galleka5836362016-02-10 11:50:38 -0500385 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[3],
Eric Dumazet7c130672016-01-20 16:25:01 -0800386 req->id.idiag_dport, req->id.idiag_src[3],
387 req->id.idiag_sport, req->id.idiag_if);
388 else
Craig Galleka5836362016-02-10 11:50:38 -0500389 sk = inet6_lookup(net, hashinfo, NULL, 0,
Eric Dumazet7c130672016-01-20 16:25:01 -0800390 (struct in6_addr *)req->id.idiag_dst,
391 req->id.idiag_dport,
392 (struct in6_addr *)req->id.idiag_src,
393 req->id.idiag_sport,
394 req->id.idiag_if);
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396#endif
Eric Dumazet2d331912016-04-01 08:52:15 -0700397 else {
398 rcu_read_unlock();
Lorenzo Colittib613f562015-12-16 12:30:02 +0900399 return ERR_PTR(-EINVAL);
Eric Dumazet2d331912016-04-01 08:52:15 -0700400 }
401 rcu_read_unlock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700402 if (!sk)
Lorenzo Colittib613f562015-12-16 12:30:02 +0900403 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Lorenzo Colittib613f562015-12-16 12:30:02 +0900405 if (sock_diag_check_cookie(sk, req->id.idiag_cookie)) {
406 sock_gen_put(sk);
407 return ERR_PTR(-ENOENT);
408 }
409
410 return sk;
411}
412EXPORT_SYMBOL_GPL(inet_diag_find_one_icsk);
413
414int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
415 struct sk_buff *in_skb,
416 const struct nlmsghdr *nlh,
417 const struct inet_diag_req_v2 *req)
418{
419 struct net *net = sock_net(in_skb->sk);
420 struct sk_buff *rep;
421 struct sock *sk;
422 int err;
423
424 sk = inet_diag_find_one_icsk(net, hashinfo, req);
425 if (IS_ERR(sk))
426 return PTR_ERR(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700428 rep = nlmsg_new(inet_sk_attr_size(), GFP_KERNEL);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000429 if (!rep) {
430 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 goto out;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000434 err = sk_diag_fill(sk, rep, req,
Patrick McHardye32123e2013-04-17 06:46:57 +0000435 sk_user_ns(NETLINK_CB(in_skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000436 NETLINK_CB(in_skb).portid,
Patrick McHardy26932562007-01-31 23:16:40 -0800437 nlh->nlmsg_seq, 0, nlh);
438 if (err < 0) {
439 WARN_ON(err == -EMSGSIZE);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000440 nlmsg_free(rep);
Patrick McHardy26932562007-01-31 23:16:40 -0800441 goto out;
442 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000443 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300444 MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (err > 0)
446 err = 0;
447
448out:
Eric Dumazetc1d607c2013-10-11 08:54:49 -0700449 if (sk)
450 sock_gen_put(sk);
451
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000452 return err;
453}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000454EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000455
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900456static int inet_diag_cmd_exact(int cmd, struct sk_buff *in_skb,
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000457 const struct nlmsghdr *nlh,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700458 const struct inet_diag_req_v2 *req)
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000459{
460 const struct inet_diag_handler *handler;
461 int err;
462
463 handler = inet_diag_lock_handler(req->sdiag_protocol);
464 if (IS_ERR(handler))
465 err = PTR_ERR(handler);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900466 else if (cmd == SOCK_DIAG_BY_FAMILY)
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000467 err = handler->dump_one(in_skb, nlh, req);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900468 else if (cmd == SOCK_DESTROY && handler->destroy)
469 err = handler->destroy(in_skb, req);
470 else
471 err = -EOPNOTSUPP;
Herbert Xud523a322007-12-03 15:51:25 +1100472 inet_diag_unlock_handler(handler);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return err;
475}
476
Al Viro9f855292006-09-27 18:44:30 -0700477static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 int words = bits >> 5;
480
481 bits &= 0x1f;
482
483 if (words) {
484 if (memcmp(a1, a2, words << 2))
485 return 0;
486 }
487 if (bits) {
Al Viro9f855292006-09-27 18:44:30 -0700488 __be32 w1, w2;
489 __be32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 w1 = a1[words];
492 w2 = a2[words];
493
494 mask = htonl((0xffffffff) << (32 - bits));
495
496 if ((w1 ^ w2) & mask)
497 return 0;
498 }
499
500 return 1;
501}
502
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000503static int inet_diag_bc_run(const struct nlattr *_bc,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700504 const struct inet_diag_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000506 const void *bc = nla_data(_bc);
507 int len = nla_len(_bc);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 while (len > 0) {
510 int yes = 1;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300511 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300514 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300516 case INET_DIAG_BC_JMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 yes = 0;
518 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300519 case INET_DIAG_BC_S_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 yes = entry->sport >= op[1].no;
521 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300522 case INET_DIAG_BC_S_LE:
Roel Kluinb4ced2b2010-01-19 14:12:20 -0800523 yes = entry->sport <= op[1].no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300525 case INET_DIAG_BC_D_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 yes = entry->dport >= op[1].no;
527 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300528 case INET_DIAG_BC_D_LE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 yes = entry->dport <= op[1].no;
530 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300531 case INET_DIAG_BC_AUTO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
533 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300534 case INET_DIAG_BC_S_COND:
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -0300535 case INET_DIAG_BC_D_COND: {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700536 const struct inet_diag_hostcond *cond;
537 const __be32 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Eric Dumazete31c5e02015-03-10 07:15:53 -0700539 cond = (const struct inet_diag_hostcond *)(op + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (cond->port != -1 &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300541 cond->port != (op->code == INET_DIAG_BC_S_COND ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 entry->sport : entry->dport)) {
543 yes = 0;
544 break;
545 }
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800546
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300547 if (op->code == INET_DIAG_BC_S_COND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 addr = entry->saddr;
549 else
550 addr = entry->daddr;
551
Neal Cardwellf67caec2012-12-08 19:43:23 +0000552 if (cond->family != AF_UNSPEC &&
553 cond->family != entry->family) {
554 if (entry->family == AF_INET6 &&
555 cond->family == AF_INET) {
556 if (addr[0] == 0 && addr[1] == 0 &&
557 addr[2] == htonl(0xffff) &&
558 bitstring_match(addr + 3,
559 cond->addr,
560 cond->prefix_len))
561 break;
562 }
563 yes = 0;
564 break;
565 }
566
567 if (cond->prefix_len == 0)
568 break;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800569 if (bitstring_match(addr, cond->addr,
570 cond->prefix_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 yes = 0;
573 break;
574 }
David Ahern637c8412016-06-23 18:42:51 -0700575 case INET_DIAG_BC_DEV_COND: {
576 u32 ifindex;
577
578 ifindex = *((const u32 *)(op + 1));
579 if (ifindex != entry->ifindex)
580 yes = 0;
581 break;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800585 if (yes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 len -= op->yes;
587 bc += op->yes;
588 } else {
589 len -= op->no;
590 bc += op->no;
591 }
592 }
Eric Dumazeta02cec22010-09-22 20:43:57 +0000593 return len == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Eric Dumazeta4458342015-03-13 15:51:12 -0700596/* This helper is available for all sockets (ESTABLISH, TIMEWAIT, SYN_RECV)
597 */
598static void entry_fill_addrs(struct inet_diag_entry *entry,
599 const struct sock *sk)
600{
601#if IS_ENABLED(CONFIG_IPV6)
602 if (sk->sk_family == AF_INET6) {
603 entry->saddr = sk->sk_v6_rcv_saddr.s6_addr32;
604 entry->daddr = sk->sk_v6_daddr.s6_addr32;
605 } else
606#endif
607 {
608 entry->saddr = &sk->sk_rcv_saddr;
609 entry->daddr = &sk->sk_daddr;
610 }
611}
612
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000613int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
614{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000615 struct inet_sock *inet = inet_sk(sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700616 struct inet_diag_entry entry;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000617
Eric Dumazete31c5e02015-03-10 07:15:53 -0700618 if (!bc)
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000619 return 1;
620
621 entry.family = sk->sk_family;
Eric Dumazeta4458342015-03-13 15:51:12 -0700622 entry_fill_addrs(&entry, sk);
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000623 entry.sport = inet->inet_num;
624 entry.dport = ntohs(inet->inet_dport);
David Ahern637c8412016-06-23 18:42:51 -0700625 entry.ifindex = sk->sk_bound_dev_if;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700626 entry.userlocks = sk_fullsock(sk) ? sk->sk_userlocks : 0;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000627
628 return inet_diag_bc_run(bc, &entry);
629}
630EXPORT_SYMBOL_GPL(inet_diag_bc_sk);
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632static int valid_cc(const void *bc, int len, int cc)
633{
634 while (len >= 0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300635 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 if (cc > len)
638 return 0;
639 if (cc == len)
640 return 1;
Eric Dumazeteeb14972011-06-17 16:25:39 -0400641 if (op->yes < 4 || op->yes & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643 len -= op->yes;
644 bc += op->yes;
645 }
646 return 0;
647}
648
David Ahern637c8412016-06-23 18:42:51 -0700649/* data is u32 ifindex */
650static bool valid_devcond(const struct inet_diag_bc_op *op, int len,
651 int *min_len)
652{
653 /* Check ifindex space. */
654 *min_len += sizeof(u32);
655 if (len < *min_len)
656 return false;
657
658 return true;
659}
Neal Cardwell405c0052012-12-08 19:43:22 +0000660/* Validate an inet_diag_hostcond. */
661static bool valid_hostcond(const struct inet_diag_bc_op *op, int len,
662 int *min_len)
663{
Neal Cardwell405c0052012-12-08 19:43:22 +0000664 struct inet_diag_hostcond *cond;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700665 int addr_len;
Neal Cardwell405c0052012-12-08 19:43:22 +0000666
667 /* Check hostcond space. */
668 *min_len += sizeof(struct inet_diag_hostcond);
669 if (len < *min_len)
670 return false;
671 cond = (struct inet_diag_hostcond *)(op + 1);
672
673 /* Check address family and address length. */
674 switch (cond->family) {
675 case AF_UNSPEC:
676 addr_len = 0;
677 break;
678 case AF_INET:
679 addr_len = sizeof(struct in_addr);
680 break;
681 case AF_INET6:
682 addr_len = sizeof(struct in6_addr);
683 break;
684 default:
685 return false;
686 }
687 *min_len += addr_len;
688 if (len < *min_len)
689 return false;
690
691 /* Check prefix length (in bits) vs address length (in bytes). */
692 if (cond->prefix_len > 8 * addr_len)
693 return false;
694
695 return true;
696}
697
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000698/* Validate a port comparison operator. */
Eric Dumazete31c5e02015-03-10 07:15:53 -0700699static bool valid_port_comparison(const struct inet_diag_bc_op *op,
700 int len, int *min_len)
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000701{
702 /* Port comparisons put the port in a follow-on inet_diag_bc_op. */
703 *min_len += sizeof(struct inet_diag_bc_op);
704 if (len < *min_len)
705 return false;
706 return true;
707}
708
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300709static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Eric Dumazeteeb14972011-06-17 16:25:39 -0400711 const void *bc = bytecode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int len = bytecode_len;
713
714 while (len > 0) {
Neal Cardwell405c0052012-12-08 19:43:22 +0000715 int min_len = sizeof(struct inet_diag_bc_op);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700716 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300719 case INET_DIAG_BC_S_COND:
720 case INET_DIAG_BC_D_COND:
Neal Cardwell405c0052012-12-08 19:43:22 +0000721 if (!valid_hostcond(bc, len, &min_len))
722 return -EINVAL;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000723 break;
David Ahern637c8412016-06-23 18:42:51 -0700724 case INET_DIAG_BC_DEV_COND:
725 if (!valid_devcond(bc, len, &min_len))
726 return -EINVAL;
727 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300728 case INET_DIAG_BC_S_GE:
729 case INET_DIAG_BC_S_LE:
730 case INET_DIAG_BC_D_GE:
731 case INET_DIAG_BC_D_LE:
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000732 if (!valid_port_comparison(bc, len, &min_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return -EINVAL;
734 break;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000735 case INET_DIAG_BC_AUTO:
736 case INET_DIAG_BC_JMP:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300737 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 break;
739 default:
740 return -EINVAL;
741 }
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000742
743 if (op->code != INET_DIAG_BC_NOP) {
744 if (op->no < min_len || op->no > len + 4 || op->no & 3)
745 return -EINVAL;
746 if (op->no < len &&
747 !valid_cc(bytecode, bytecode_len, len - op->no))
748 return -EINVAL;
749 }
750
Neal Cardwell405c0052012-12-08 19:43:22 +0000751 if (op->yes < min_len || op->yes > len + 4 || op->yes & 3)
Eric Dumazeteeb14972011-06-17 16:25:39 -0400752 return -EINVAL;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800753 bc += op->yes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 len -= op->yes;
755 }
756 return len == 0 ? 0 : -EINVAL;
757}
758
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800759static int inet_csk_diag_dump(struct sock *sk,
760 struct sk_buff *skb,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000761 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700762 const struct inet_diag_req_v2 *r,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000763 const struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000765 if (!inet_diag_bc_sk(bc, sk))
766 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000768 return inet_csk_diag_fill(sk, skb, r,
Patrick McHardye32123e2013-04-17 06:46:57 +0000769 sk_user_ns(NETLINK_CB(cb->skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000770 NETLINK_CB(cb->skb).portid,
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800771 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Eric Dumazet49612722015-03-05 10:18:14 -0800774static void twsk_build_assert(void)
775{
776 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_family) !=
777 offsetof(struct sock, sk_family));
778
779 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_num) !=
780 offsetof(struct inet_sock, inet_num));
781
782 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_dport) !=
783 offsetof(struct inet_sock, inet_dport));
784
785 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_rcv_saddr) !=
786 offsetof(struct inet_sock, inet_rcv_saddr));
787
788 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_daddr) !=
789 offsetof(struct inet_sock, inet_daddr));
790
791#if IS_ENABLED(CONFIG_IPV6)
792 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_rcv_saddr) !=
793 offsetof(struct sock, sk_v6_rcv_saddr));
794
795 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_daddr) !=
796 offsetof(struct sock, sk_v6_daddr));
797#endif
798}
799
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000800void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700801 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700802 const struct inet_diag_req_v2 *r, struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000804 struct net *net = sock_net(skb->sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700805 int i, num, s_i, s_num;
Eric Dumazet079096f2015-10-02 11:43:32 -0700806 u32 idiag_states = r->idiag_states;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800807
Eric Dumazet079096f2015-10-02 11:43:32 -0700808 if (idiag_states & TCPF_SYN_RECV)
809 idiag_states |= TCPF_NEW_SYN_RECV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 s_i = cb->args[1];
811 s_num = num = cb->args[2];
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (cb->args[0] == 0) {
Eric Dumazet079096f2015-10-02 11:43:32 -0700814 if (!(idiag_states & TCPF_LISTEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto skip_listen_ht;
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300816
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700817 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800818 struct inet_listen_hashbucket *ilb;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700819 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 num = 0;
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800822 ilb = &hashinfo->listening_hash[i];
823 spin_lock_bh(&ilb->lock);
Eric Dumazet3b24d852016-04-01 08:52:17 -0700824 sk_for_each(sk, &ilb->head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 struct inet_sock *inet = inet_sk(sk);
826
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000827 if (!net_eq(sock_net(sk), net))
828 continue;
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (num < s_num) {
831 num++;
832 continue;
833 }
834
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000835 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazete31c5e02015-03-10 07:15:53 -0700836 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000837 goto next_listen;
838
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000839 if (r->id.idiag_sport != inet->inet_sport &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300840 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto next_listen;
842
Eric Dumazet079096f2015-10-02 11:43:32 -0700843 if (r->id.idiag_dport ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 cb->args[3] > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 goto next_listen;
846
Eric Dumazet079096f2015-10-02 11:43:32 -0700847 if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800848 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto done;
850 }
851
852next_listen:
853 cb->args[3] = 0;
854 cb->args[4] = 0;
855 ++num;
856 }
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800857 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 s_num = 0;
860 cb->args[3] = 0;
861 cb->args[4] = 0;
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863skip_listen_ht:
864 cb->args[0] = 1;
865 s_i = num = s_num = 0;
866 }
867
Eric Dumazet079096f2015-10-02 11:43:32 -0700868 if (!(idiag_states & ~TCPF_LISTEN))
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000869 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Eric Dumazetf373b532009-10-09 00:16:19 +0000871 for (i = s_i; i <= hashinfo->ehash_mask; i++) {
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300872 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
David S. Miller7e3aab42008-11-21 16:39:19 -0800873 spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800874 struct hlist_nulls_node *node;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700875 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Andi Kleen6be547a2008-08-28 01:09:54 -0700877 num = 0;
878
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700879 if (hlist_nulls_empty(&head->chain))
Andi Kleen6be547a2008-08-28 01:09:54 -0700880 continue;
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (i > s_i)
883 s_num = 0;
884
David S. Miller7e3aab42008-11-21 16:39:19 -0800885 spin_lock_bh(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800886 sk_nulls_for_each(sk, node, &head->chain) {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700887 int state, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000889 if (!net_eq(sock_net(sk), net))
890 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (num < s_num)
892 goto next_normal;
Neal Cardwell70315d22014-01-10 15:34:45 -0500893 state = (sk->sk_state == TCP_TIME_WAIT) ?
894 inet_twsk(sk)->tw_substate : sk->sk_state;
Eric Dumazet079096f2015-10-02 11:43:32 -0700895 if (!(idiag_states & (1 << state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 goto next_normal;
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000897 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700898 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000899 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700900 if (r->id.idiag_sport != htons(sk->sk_num) &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300901 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700903 if (r->id.idiag_dport != sk->sk_dport &&
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800904 r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 goto next_normal;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700906 twsk_build_assert();
907
908 if (!inet_diag_bc_sk(bc, sk))
909 goto next_normal;
910
911 res = sk_diag_fill(sk, skb, r,
912 sk_user_ns(NETLINK_CB(cb->skb).sk),
913 NETLINK_CB(cb->skb).portid,
914 cb->nlh->nlmsg_seq, NLM_F_MULTI,
915 cb->nlh);
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700916 if (res < 0) {
David S. Miller7e3aab42008-11-21 16:39:19 -0800917 spin_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto done;
919 }
920next_normal:
921 ++num;
922 }
923
David S. Miller7e3aab42008-11-21 16:39:19 -0800924 spin_unlock_bh(lock);
Eric Dumazetacffb582016-03-14 15:40:00 -0700925 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
928done:
929 cb->args[1] = i;
930 cb->args[2] = num;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000931out:
932 ;
933}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000934EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000935
936static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700937 const struct inet_diag_req_v2 *r,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700938 struct nlattr *bc)
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000939{
940 const struct inet_diag_handler *handler;
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000941 int err = 0;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000942
943 handler = inet_diag_lock_handler(r->sdiag_protocol);
944 if (!IS_ERR(handler))
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000945 handler->dump(skb, cb, r, bc);
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000946 else
947 err = PTR_ERR(handler);
Herbert Xud523a322007-12-03 15:51:25 +1100948 inet_diag_unlock_handler(handler);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000949
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000950 return err ? : skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000953static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
954{
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000955 int hdrlen = sizeof(struct inet_diag_req_v2);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700956 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000957
958 if (nlmsg_attrlen(cb->nlh, hdrlen))
959 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
960
David S. Millerd1063522012-06-26 21:28:54 -0700961 return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000962}
963
Eric Dumazete31c5e02015-03-10 07:15:53 -0700964static int inet_diag_type2proto(int type)
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000965{
966 switch (type) {
967 case TCPDIAG_GETSOCK:
968 return IPPROTO_TCP;
969 case DCCPDIAG_GETSOCK:
970 return IPPROTO_DCCP;
971 default:
972 return 0;
973 }
974}
975
Eric Dumazete31c5e02015-03-10 07:15:53 -0700976static int inet_diag_dump_compat(struct sk_buff *skb,
977 struct netlink_callback *cb)
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000978{
David S. Millerd1063522012-06-26 21:28:54 -0700979 struct inet_diag_req *rc = nlmsg_data(cb->nlh);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700980 int hdrlen = sizeof(struct inet_diag_req);
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000981 struct inet_diag_req_v2 req;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000982 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000983
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000984 req.sdiag_family = AF_UNSPEC; /* compatibility */
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000985 req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
986 req.idiag_ext = rc->idiag_ext;
987 req.idiag_states = rc->idiag_states;
988 req.id = rc->id;
989
990 if (nlmsg_attrlen(cb->nlh, hdrlen))
991 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
992
993 return __inet_diag_dump(skb, cb, &req, bc);
994}
995
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +0000996static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700997 const struct nlmsghdr *nlh)
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +0000998{
David S. Millerd1063522012-06-26 21:28:54 -0700999 struct inet_diag_req *rc = nlmsg_data(nlh);
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001000 struct inet_diag_req_v2 req;
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001001
1002 req.sdiag_family = rc->idiag_family;
1003 req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
1004 req.idiag_ext = rc->idiag_ext;
1005 req.idiag_states = rc->idiag_states;
1006 req.id = rc->id;
1007
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001008 return inet_diag_cmd_exact(SOCK_DIAG_BY_FAMILY, in_skb, nlh, &req);
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001009}
1010
Pavel Emelyanov8d341722011-12-06 07:57:06 +00001011static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Pavel Emelyanov3b09c842012-01-10 22:37:26 +00001013 int hdrlen = sizeof(struct inet_diag_req);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001014 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Thomas Grafead592b2007-03-22 23:30:35 -07001016 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
1017 nlmsg_len(nlh) < hdrlen)
1018 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
David S. Millerb8f3ab42011-01-18 12:40:38 -08001020 if (nlh->nlmsg_flags & NLM_F_DUMP) {
Thomas Grafead592b2007-03-22 23:30:35 -07001021 if (nlmsg_attrlen(nlh, hdrlen)) {
1022 struct nlattr *attr;
1023
1024 attr = nlmsg_find_attr(nlh, hdrlen,
1025 INET_DIAG_REQ_BYTECODE);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001026 if (!attr ||
Thomas Grafead592b2007-03-22 23:30:35 -07001027 nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
1028 inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
1029 return -EINVAL;
1030 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001031 {
1032 struct netlink_dump_control c = {
1033 .dump = inet_diag_dump_compat,
1034 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001035 return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Thomas Grafead592b2007-03-22 23:30:35 -07001038
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001039 return inet_diag_get_exact_compat(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001042static int inet_diag_handler_cmd(struct sk_buff *skb, struct nlmsghdr *h)
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001043{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001044 int hdrlen = sizeof(struct inet_diag_req_v2);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001045 struct net *net = sock_net(skb->sk);
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001046
1047 if (nlmsg_len(h) < hdrlen)
1048 return -EINVAL;
1049
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001050 if (h->nlmsg_type == SOCK_DIAG_BY_FAMILY &&
1051 h->nlmsg_flags & NLM_F_DUMP) {
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001052 if (nlmsg_attrlen(h, hdrlen)) {
1053 struct nlattr *attr;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001054
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001055 attr = nlmsg_find_attr(h, hdrlen,
1056 INET_DIAG_REQ_BYTECODE);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001057 if (!attr ||
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001058 nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
1059 inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
1060 return -EINVAL;
1061 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001062 {
1063 struct netlink_dump_control c = {
1064 .dump = inet_diag_dump,
1065 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001066 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001067 }
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001068 }
1069
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001070 return inet_diag_cmd_exact(h->nlmsg_type, skb, h, nlmsg_data(h));
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001071}
1072
Craig Gallek35ac8382015-06-15 11:26:20 -04001073static
1074int inet_diag_handler_get_info(struct sk_buff *skb, struct sock *sk)
1075{
1076 const struct inet_diag_handler *handler;
1077 struct nlmsghdr *nlh;
1078 struct nlattr *attr;
1079 struct inet_diag_msg *r;
1080 void *info = NULL;
1081 int err = 0;
1082
1083 nlh = nlmsg_put(skb, 0, 0, SOCK_DIAG_BY_FAMILY, sizeof(*r), 0);
1084 if (!nlh)
1085 return -ENOMEM;
1086
1087 r = nlmsg_data(nlh);
1088 memset(r, 0, sizeof(*r));
1089 inet_diag_msg_common_fill(r, sk);
Craig Galleke0df02e2015-06-17 10:59:10 -04001090 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_STREAM)
1091 r->id.idiag_sport = inet_sk(sk)->inet_sport;
Craig Gallek35ac8382015-06-15 11:26:20 -04001092 r->idiag_state = sk->sk_state;
1093
1094 if ((err = nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))) {
1095 nlmsg_cancel(skb, nlh);
1096 return err;
1097 }
1098
1099 handler = inet_diag_lock_handler(sk->sk_protocol);
1100 if (IS_ERR(handler)) {
1101 inet_diag_unlock_handler(handler);
1102 nlmsg_cancel(skb, nlh);
1103 return PTR_ERR(handler);
1104 }
1105
1106 attr = handler->idiag_info_size
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +02001107 ? nla_reserve_64bit(skb, INET_DIAG_INFO,
1108 handler->idiag_info_size,
1109 INET_DIAG_PAD)
Craig Gallek35ac8382015-06-15 11:26:20 -04001110 : NULL;
1111 if (attr)
1112 info = nla_data(attr);
1113
1114 handler->idiag_get_info(sk, r, info);
1115 inet_diag_unlock_handler(handler);
1116
1117 nlmsg_end(skb, nlh);
1118 return 0;
1119}
1120
Shan Wei8dcf01f2012-04-24 18:21:07 +00001121static const struct sock_diag_handler inet_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001122 .family = AF_INET,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001123 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001124 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001125 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001126};
1127
Shan Wei8dcf01f2012-04-24 18:21:07 +00001128static const struct sock_diag_handler inet6_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001129 .family = AF_INET6,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001130 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001131 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001132 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001133};
1134
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001135int inet_diag_register(const struct inet_diag_handler *h)
1136{
1137 const __u16 type = h->idiag_type;
1138 int err = -EINVAL;
1139
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001140 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001141 goto out;
1142
Herbert Xud523a322007-12-03 15:51:25 +11001143 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001144 err = -EEXIST;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001145 if (!inet_diag_table[type]) {
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001146 inet_diag_table[type] = h;
1147 err = 0;
1148 }
Herbert Xud523a322007-12-03 15:51:25 +11001149 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001150out:
1151 return err;
1152}
1153EXPORT_SYMBOL_GPL(inet_diag_register);
1154
1155void inet_diag_unregister(const struct inet_diag_handler *h)
1156{
1157 const __u16 type = h->idiag_type;
1158
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001159 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001160 return;
1161
Herbert Xud523a322007-12-03 15:51:25 +11001162 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001163 inet_diag_table[type] = NULL;
Herbert Xud523a322007-12-03 15:51:25 +11001164 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001165}
1166EXPORT_SYMBOL_GPL(inet_diag_unregister);
1167
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001168static int __init inet_diag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001170 const int inet_diag_table_size = (IPPROTO_MAX *
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001171 sizeof(struct inet_diag_handler *));
1172 int err = -ENOMEM;
1173
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001174 inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001175 if (!inet_diag_table)
1176 goto out;
1177
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001178 err = sock_diag_register(&inet_diag_handler);
1179 if (err)
1180 goto out_free_nl;
1181
1182 err = sock_diag_register(&inet6_diag_handler);
1183 if (err)
1184 goto out_free_inet;
1185
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001186 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001187out:
1188 return err;
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001189
1190out_free_inet:
1191 sock_diag_unregister(&inet_diag_handler);
1192out_free_nl:
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001193 kfree(inet_diag_table);
1194 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001197static void __exit inet_diag_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001199 sock_diag_unregister(&inet6_diag_handler);
1200 sock_diag_unregister(&inet_diag_handler);
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001201 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001202 kfree(inet_diag_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001205module_init(inet_diag_init);
1206module_exit(inet_diag_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207MODULE_LICENSE("GPL");
Pavel Emelyanovaec8dc62011-12-15 02:43:27 +00001208MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
1209MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);