blob: 7dc79b973e6edcc64e668e14c71c732ca1187e8f [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03003 * inet_diag.c Module for monitoring INET transport protocols sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Ilpo Järvinen172589c2007-08-28 15:50:33 -07008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10#include <linux/types.h>
11#include <linux/fcntl.h>
12#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/cache.h>
15#include <linux/init.h>
16#include <linux/time.h>
17
18#include <net/icmp.h>
19#include <net/tcp.h>
20#include <net/ipv6.h>
21#include <net/inet_common.h>
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030022#include <net/inet_connection_sock.h>
23#include <net/inet_hashtables.h>
24#include <net/inet_timewait_sock.h>
25#include <net/inet6_hashtables.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070026#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <linux/inet.h>
29#include <linux/stddef.h>
30
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -030031#include <linux/inet_diag.h>
Pavel Emelyanovd3664772011-12-06 07:58:03 +000032#include <linux/sock_diag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -030034static const struct inet_diag_handler **inet_diag_table;
35
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -030036struct inet_diag_entry {
Eric Dumazete31c5e02015-03-10 07:15:53 -070037 const __be32 *saddr;
38 const __be32 *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 u16 sport;
40 u16 dport;
41 u16 family;
42 u16 userlocks;
David Ahern637c8412016-06-23 18:42:51 -070043 u32 ifindex;
Lorenzo Colittia52e95a2016-08-24 15:46:26 +090044 u32 mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Herbert Xud523a322007-12-03 15:51:25 +110047static DEFINE_MUTEX(inet_diag_table_mutex);
48
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000049static const struct inet_diag_handler *inet_diag_lock_handler(int proto)
Herbert Xud523a322007-12-03 15:51:25 +110050{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000051 if (!inet_diag_table[proto])
Xin Longbf2ae2e2018-03-10 18:57:50 +080052 sock_load_diag_module(AF_INET, proto);
Herbert Xud523a322007-12-03 15:51:25 +110053
54 mutex_lock(&inet_diag_table_mutex);
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000055 if (!inet_diag_table[proto])
Herbert Xud523a322007-12-03 15:51:25 +110056 return ERR_PTR(-ENOENT);
57
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000058 return inet_diag_table[proto];
Herbert Xud523a322007-12-03 15:51:25 +110059}
60
Eric Dumazete31c5e02015-03-10 07:15:53 -070061static void inet_diag_unlock_handler(const struct inet_diag_handler *handler)
Herbert Xud523a322007-12-03 15:51:25 +110062{
63 mutex_unlock(&inet_diag_table_mutex);
64}
65
Xin Longcb2050a2016-04-14 15:35:32 +080066void inet_diag_msg_common_fill(struct inet_diag_msg *r, struct sock *sk)
Eric Dumazeta4458342015-03-13 15:51:12 -070067{
68 r->idiag_family = sk->sk_family;
69
70 r->id.idiag_sport = htons(sk->sk_num);
71 r->id.idiag_dport = sk->sk_dport;
72 r->id.idiag_if = sk->sk_bound_dev_if;
73 sock_diag_save_cookie(sk, r->id.idiag_cookie);
74
75#if IS_ENABLED(CONFIG_IPV6)
76 if (sk->sk_family == AF_INET6) {
77 *(struct in6_addr *)r->id.idiag_src = sk->sk_v6_rcv_saddr;
78 *(struct in6_addr *)r->id.idiag_dst = sk->sk_v6_daddr;
79 } else
80#endif
81 {
82 memset(&r->id.idiag_src, 0, sizeof(r->id.idiag_src));
83 memset(&r->id.idiag_dst, 0, sizeof(r->id.idiag_dst));
84
85 r->id.idiag_src[0] = sk->sk_rcv_saddr;
86 r->id.idiag_dst[0] = sk->sk_daddr;
87 }
88}
Xin Longcb2050a2016-04-14 15:35:32 +080089EXPORT_SYMBOL_GPL(inet_diag_msg_common_fill);
Eric Dumazeta4458342015-03-13 15:51:12 -070090
Ivan Delalandeb37e8842017-08-31 09:59:38 -070091static size_t inet_sk_attr_size(struct sock *sk,
92 const struct inet_diag_req_v2 *req,
93 bool net_admin)
Eric Dumazetc8e2c802015-03-13 09:49:59 -070094{
Ivan Delalandeb37e8842017-08-31 09:59:38 -070095 const struct inet_diag_handler *handler;
96 size_t aux = 0;
97
98 handler = inet_diag_table[req->sdiag_protocol];
99 if (handler && handler->idiag_get_aux_size)
100 aux = handler->idiag_get_aux_size(sk, net_admin);
101
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700102 return nla_total_size(sizeof(struct tcp_info))
103 + nla_total_size(1) /* INET_DIAG_SHUTDOWN */
104 + nla_total_size(1) /* INET_DIAG_TOS */
105 + nla_total_size(1) /* INET_DIAG_TCLASS */
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900106 + nla_total_size(4) /* INET_DIAG_MARK */
Konstantin Khlebnikov1ec17db2019-02-09 13:35:52 +0300107 + nla_total_size(4) /* INET_DIAG_CLASS_ID */
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700108 + nla_total_size(sizeof(struct inet_diag_meminfo))
109 + nla_total_size(sizeof(struct inet_diag_msg))
110 + nla_total_size(SK_MEMINFO_VARS * sizeof(u32))
111 + nla_total_size(TCP_CA_NAME_MAX)
112 + nla_total_size(sizeof(struct tcpvegas_info))
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700113 + aux
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700114 + 64;
115}
116
Xin Longcb2050a2016-04-14 15:35:32 +0800117int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb,
118 struct inet_diag_msg *r, int ext,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900119 struct user_namespace *user_ns,
120 bool net_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700122 const struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Pavel Emelyanove4e541a2012-10-23 22:29:56 +0400124 if (nla_put_u8(skb, INET_DIAG_SHUTDOWN, sk->sk_shutdown))
125 goto errout;
126
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500127 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
128 * hence this needs to be included regardless of socket family.
129 */
130 if (ext & (1 << (INET_DIAG_TOS - 1)))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000131 if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
132 goto errout;
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500133
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000134#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300135 if (r->idiag_family == AF_INET6) {
Maciej Żenczykowski06236ac2011-11-07 14:23:11 +0000136 if (ext & (1 << (INET_DIAG_TCLASS - 1)))
Eric Dumazetefe42082013-10-03 15:42:29 -0700137 if (nla_put_u8(skb, INET_DIAG_TCLASS,
138 inet6_sk(sk)->tclass) < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000139 goto errout;
Phil Sutter20462152015-06-24 11:02:51 +0200140
Phil Sutter8220ea22015-07-10 11:39:57 +0200141 if (((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
142 nla_put_u8(skb, INET_DIAG_SKV6ONLY, ipv6_only_sock(sk)))
Phil Sutter20462152015-06-24 11:02:51 +0200143 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145#endif
146
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900147 if (net_admin && nla_put_u32(skb, INET_DIAG_MARK, sk->sk_mark))
148 goto errout;
149
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600150 r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000151 r->idiag_inode = sock_i_ino(sk);
152
Xin Longcb2050a2016-04-14 15:35:32 +0800153 return 0;
154errout:
155 return 1;
156}
157EXPORT_SYMBOL_GPL(inet_diag_msg_attrs_fill);
158
159int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
160 struct sk_buff *skb, const struct inet_diag_req_v2 *req,
161 struct user_namespace *user_ns,
162 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900163 const struct nlmsghdr *unlh,
164 bool net_admin)
Xin Longcb2050a2016-04-14 15:35:32 +0800165{
166 const struct tcp_congestion_ops *ca_ops;
167 const struct inet_diag_handler *handler;
168 int ext = req->idiag_ext;
169 struct inet_diag_msg *r;
170 struct nlmsghdr *nlh;
171 struct nlattr *attr;
172 void *info = NULL;
173
174 handler = inet_diag_table[req->sdiag_protocol];
175 BUG_ON(!handler);
176
177 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
178 nlmsg_flags);
179 if (!nlh)
180 return -EMSGSIZE;
181
182 r = nlmsg_data(nlh);
183 BUG_ON(!sk_fullsock(sk));
184
185 inet_diag_msg_common_fill(r, sk);
186 r->idiag_state = sk->sk_state;
187 r->idiag_timer = 0;
188 r->idiag_retrans = 0;
189
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900190 if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns, net_admin))
Xin Longcb2050a2016-04-14 15:35:32 +0800191 goto errout;
192
Thomas Graf6e277ed2012-06-26 23:36:12 +0000193 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
194 struct inet_diag_meminfo minfo = {
195 .idiag_rmem = sk_rmem_alloc_get(sk),
Eric Dumazetab4e8462019-10-10 20:17:46 -0700196 .idiag_wmem = READ_ONCE(sk->sk_wmem_queued),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000197 .idiag_fmem = sk->sk_forward_alloc,
198 .idiag_tmem = sk_wmem_alloc_get(sk),
199 };
200
201 if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
202 goto errout;
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000203 }
204
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000205 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
206 if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000207 goto errout;
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000208
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300209 /*
210 * RAW sockets might have user-defined protocols assigned,
211 * so report the one supplied on socket creation.
212 */
213 if (sk->sk_type == SOCK_RAW) {
214 if (nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))
215 goto errout;
216 }
217
Eric Dumazete31c5e02015-03-10 07:15:53 -0700218 if (!icsk) {
Shan Wei62ad6fc2012-04-24 18:15:41 +0000219 handler->idiag_get_info(sk, r, NULL);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000220 goto out;
221 }
222
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000223 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
Yuchung Cheng57dde7f2017-01-12 22:11:33 -0800224 icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT ||
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000225 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300226 r->idiag_timer = 1;
227 r->idiag_retrans = icsk->icsk_retransmits;
Xin Longb7de5292016-04-19 15:10:01 +0800228 r->idiag_expires =
229 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700230 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300231 r->idiag_timer = 4;
232 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800233 r->idiag_expires =
234 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 } else if (timer_pending(&sk->sk_timer)) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300236 r->idiag_timer = 2;
237 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800238 r->idiag_expires =
239 jiffies_to_msecs(sk->sk_timer.expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 } else {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300241 r->idiag_timer = 0;
242 r->idiag_expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300244
Craig Gallek3fd22af2015-06-15 11:26:19 -0400245 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) {
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +0200246 attr = nla_reserve_64bit(skb, INET_DIAG_INFO,
247 handler->idiag_info_size,
248 INET_DIAG_PAD);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000249 if (!attr)
250 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Thomas Graf6e277ed2012-06-26 23:36:12 +0000252 info = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700255 if (ext & (1 << (INET_DIAG_CONG - 1))) {
256 int err = 0;
257
258 rcu_read_lock();
259 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
260 if (ca_ops)
261 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name);
262 rcu_read_unlock();
263 if (err < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000264 goto errout;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700265 }
Thomas Graf6e277ed2012-06-26 23:36:12 +0000266
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300267 handler->idiag_get_info(sk, r, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700269 if (ext & (1 << (INET_DIAG_INFO - 1)) && handler->idiag_get_aux)
270 if (handler->idiag_get_aux(sk, net_admin, skb) < 0)
271 goto errout;
272
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700273 if (sk->sk_state < TCP_TIME_WAIT) {
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700274 union tcp_cc_info info;
275 size_t sz = 0;
276 int attr;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700277
278 rcu_read_lock();
279 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
280 if (ca_ops && ca_ops->get_info)
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700281 sz = ca_ops->get_info(sk, ext, &attr, &info);
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700282 rcu_read_unlock();
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700283 if (sz && nla_put(skb, attr, sz, &info) < 0)
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700284 goto errout;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Konstantin Khlebnikov1ec17db2019-02-09 13:35:52 +0300287 if (ext & (1 << (INET_DIAG_CLASS_ID - 1)) ||
288 ext & (1 << (INET_DIAG_TCLASS - 1))) {
Levin, Alexander (Sasha Levin)0888e372017-08-17 00:35:11 +0000289 u32 classid = 0;
290
291#ifdef CONFIG_SOCK_CGROUP_DATA
292 classid = sock_cgroup_classid(&sk->sk_cgrp_data);
293#endif
Konstantin Khlebnikov1ec17db2019-02-09 13:35:52 +0300294 /* Fallback to socket priority if class id isn't set.
295 * Classful qdiscs use it as direct reference to class.
296 * For cgroup2 classid is always zero.
297 */
298 if (!classid)
299 classid = sk->sk_priority;
Levin, Alexander (Sasha Levin)0888e372017-08-17 00:35:11 +0000300
301 if (nla_put_u32(skb, INET_DIAG_CLASS_ID, classid))
302 goto errout;
303 }
304
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000305out:
Johannes Berg053c0952015-01-16 22:09:00 +0100306 nlmsg_end(skb, nlh);
307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Thomas Graf6e277ed2012-06-26 23:36:12 +0000309errout:
310 nlmsg_cancel(skb, nlh);
Patrick McHardy26932562007-01-31 23:16:40 -0800311 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000313EXPORT_SYMBOL_GPL(inet_sk_diag_fill);
314
315static int inet_csk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700316 struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700317 const struct inet_diag_req_v2 *req,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600318 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000319 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900320 const struct nlmsghdr *unlh,
321 bool net_admin)
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000322{
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900323 return inet_sk_diag_fill(sk, inet_csk(sk), skb, req, user_ns,
324 portid, seq, nlmsg_flags, unlh, net_admin);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000325}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700327static int inet_twsk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700328 struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000329 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800330 const struct nlmsghdr *unlh)
331{
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700332 struct inet_timewait_sock *tw = inet_twsk(sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800333 struct inet_diag_msg *r;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000334 struct nlmsghdr *nlh;
Eric Dumazet789f5582015-04-12 18:51:09 -0700335 long tmo;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800336
Eric W. Biederman15e47302012-09-07 20:12:54 +0000337 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000338 nlmsg_flags);
339 if (!nlh)
David S. Millerd1063522012-06-26 21:28:54 -0700340 return -EMSGSIZE;
David S. Millerd1063522012-06-26 21:28:54 -0700341
342 r = nlmsg_data(nlh);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800343 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
344
Eric Dumazet789f5582015-04-12 18:51:09 -0700345 tmo = tw->tw_timer.expires - jiffies;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800346 if (tmo < 0)
347 tmo = 0;
348
Eric Dumazeta4458342015-03-13 15:51:12 -0700349 inet_diag_msg_common_fill(r, sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800350 r->idiag_retrans = 0;
Daniel Borkmannb1aac812013-12-17 00:38:39 +0100351
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800352 r->idiag_state = tw->tw_substate;
353 r->idiag_timer = 3;
Eric Dumazet96f817f2013-10-03 14:27:25 -0700354 r->idiag_expires = jiffies_to_msecs(tmo);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800355 r->idiag_rqueue = 0;
356 r->idiag_wqueue = 0;
357 r->idiag_uid = 0;
358 r->idiag_inode = 0;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000359
Johannes Berg053c0952015-01-16 22:09:00 +0100360 nlmsg_end(skb, nlh);
361 return 0;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800362}
363
Eric Dumazeta58917f2015-03-15 21:12:14 -0700364static int inet_req_diag_fill(struct sock *sk, struct sk_buff *skb,
365 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900366 const struct nlmsghdr *unlh, bool net_admin)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700367{
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900368 struct request_sock *reqsk = inet_reqsk(sk);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700369 struct inet_diag_msg *r;
370 struct nlmsghdr *nlh;
371 long tmo;
372
373 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
374 nlmsg_flags);
375 if (!nlh)
376 return -EMSGSIZE;
377
378 r = nlmsg_data(nlh);
379 inet_diag_msg_common_fill(r, sk);
380 r->idiag_state = TCP_SYN_RECV;
381 r->idiag_timer = 1;
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900382 r->idiag_retrans = reqsk->num_retrans;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700383
384 BUILD_BUG_ON(offsetof(struct inet_request_sock, ir_cookie) !=
385 offsetof(struct sock, sk_cookie));
386
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700387 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700388 r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0;
389 r->idiag_rqueue = 0;
390 r->idiag_wqueue = 0;
391 r->idiag_uid = 0;
392 r->idiag_inode = 0;
393
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900394 if (net_admin && nla_put_u32(skb, INET_DIAG_MARK,
395 inet_rsk(reqsk)->ir_mark))
396 return -EMSGSIZE;
397
Eric Dumazeta58917f2015-03-15 21:12:14 -0700398 nlmsg_end(skb, nlh);
399 return 0;
400}
401
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800402static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700403 const struct inet_diag_req_v2 *r,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600404 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000405 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900406 const struct nlmsghdr *unlh, bool net_admin)
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800407{
408 if (sk->sk_state == TCP_TIME_WAIT)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700409 return inet_twsk_diag_fill(sk, skb, portid, seq,
Eric Dumazetefe42082013-10-03 15:42:29 -0700410 nlmsg_flags, unlh);
411
Eric Dumazeta58917f2015-03-15 21:12:14 -0700412 if (sk->sk_state == TCP_NEW_SYN_RECV)
413 return inet_req_diag_fill(sk, skb, portid, seq,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900414 nlmsg_flags, unlh, net_admin);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700415
Eric Dumazetefe42082013-10-03 15:42:29 -0700416 return inet_csk_diag_fill(sk, skb, r, user_ns, portid, seq,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900417 nlmsg_flags, unlh, net_admin);
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800418}
419
Lorenzo Colittib613f562015-12-16 12:30:02 +0900420struct sock *inet_diag_find_one_icsk(struct net *net,
421 struct inet_hashinfo *hashinfo,
422 const struct inet_diag_req_v2 *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700424 struct sock *sk;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300425
Eric Dumazet2d331912016-04-01 08:52:15 -0700426 rcu_read_lock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700427 if (req->sdiag_family == AF_INET)
Craig Galleka5836362016-02-10 11:50:38 -0500428 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[0],
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300429 req->id.idiag_dport, req->id.idiag_src[0],
430 req->id.idiag_sport, req->id.idiag_if);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000431#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet7c130672016-01-20 16:25:01 -0800432 else if (req->sdiag_family == AF_INET6) {
433 if (ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_dst) &&
434 ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_src))
Craig Galleka5836362016-02-10 11:50:38 -0500435 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[3],
Eric Dumazet7c130672016-01-20 16:25:01 -0800436 req->id.idiag_dport, req->id.idiag_src[3],
437 req->id.idiag_sport, req->id.idiag_if);
438 else
Craig Galleka5836362016-02-10 11:50:38 -0500439 sk = inet6_lookup(net, hashinfo, NULL, 0,
Eric Dumazet7c130672016-01-20 16:25:01 -0800440 (struct in6_addr *)req->id.idiag_dst,
441 req->id.idiag_dport,
442 (struct in6_addr *)req->id.idiag_src,
443 req->id.idiag_sport,
444 req->id.idiag_if);
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#endif
Eric Dumazet2d331912016-04-01 08:52:15 -0700447 else {
448 rcu_read_unlock();
Lorenzo Colittib613f562015-12-16 12:30:02 +0900449 return ERR_PTR(-EINVAL);
Eric Dumazet2d331912016-04-01 08:52:15 -0700450 }
451 rcu_read_unlock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700452 if (!sk)
Lorenzo Colittib613f562015-12-16 12:30:02 +0900453 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Lorenzo Colittib613f562015-12-16 12:30:02 +0900455 if (sock_diag_check_cookie(sk, req->id.idiag_cookie)) {
456 sock_gen_put(sk);
457 return ERR_PTR(-ENOENT);
458 }
459
460 return sk;
461}
462EXPORT_SYMBOL_GPL(inet_diag_find_one_icsk);
463
464int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
465 struct sk_buff *in_skb,
466 const struct nlmsghdr *nlh,
467 const struct inet_diag_req_v2 *req)
468{
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700469 bool net_admin = netlink_net_capable(in_skb, CAP_NET_ADMIN);
Lorenzo Colittib613f562015-12-16 12:30:02 +0900470 struct net *net = sock_net(in_skb->sk);
471 struct sk_buff *rep;
472 struct sock *sk;
473 int err;
474
475 sk = inet_diag_find_one_icsk(net, hashinfo, req);
476 if (IS_ERR(sk))
477 return PTR_ERR(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700479 rep = nlmsg_new(inet_sk_attr_size(sk, req, net_admin), GFP_KERNEL);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000480 if (!rep) {
481 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto out;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000485 err = sk_diag_fill(sk, rep, req,
Patrick McHardye32123e2013-04-17 06:46:57 +0000486 sk_user_ns(NETLINK_CB(in_skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000487 NETLINK_CB(in_skb).portid,
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700488 nlh->nlmsg_seq, 0, nlh, net_admin);
Patrick McHardy26932562007-01-31 23:16:40 -0800489 if (err < 0) {
490 WARN_ON(err == -EMSGSIZE);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000491 nlmsg_free(rep);
Patrick McHardy26932562007-01-31 23:16:40 -0800492 goto out;
493 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000494 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300495 MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (err > 0)
497 err = 0;
498
499out:
Eric Dumazetc1d607c2013-10-11 08:54:49 -0700500 if (sk)
501 sock_gen_put(sk);
502
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000503 return err;
504}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000505EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000506
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900507static int inet_diag_cmd_exact(int cmd, struct sk_buff *in_skb,
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000508 const struct nlmsghdr *nlh,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700509 const struct inet_diag_req_v2 *req)
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000510{
511 const struct inet_diag_handler *handler;
512 int err;
513
514 handler = inet_diag_lock_handler(req->sdiag_protocol);
515 if (IS_ERR(handler))
516 err = PTR_ERR(handler);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900517 else if (cmd == SOCK_DIAG_BY_FAMILY)
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000518 err = handler->dump_one(in_skb, nlh, req);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900519 else if (cmd == SOCK_DESTROY && handler->destroy)
520 err = handler->destroy(in_skb, req);
521 else
522 err = -EOPNOTSUPP;
Herbert Xud523a322007-12-03 15:51:25 +1100523 inet_diag_unlock_handler(handler);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return err;
526}
527
Al Viro9f855292006-09-27 18:44:30 -0700528static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 int words = bits >> 5;
531
532 bits &= 0x1f;
533
534 if (words) {
535 if (memcmp(a1, a2, words << 2))
536 return 0;
537 }
538 if (bits) {
Al Viro9f855292006-09-27 18:44:30 -0700539 __be32 w1, w2;
540 __be32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 w1 = a1[words];
543 w2 = a2[words];
544
545 mask = htonl((0xffffffff) << (32 - bits));
546
547 if ((w1 ^ w2) & mask)
548 return 0;
549 }
550
551 return 1;
552}
553
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000554static int inet_diag_bc_run(const struct nlattr *_bc,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700555 const struct inet_diag_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000557 const void *bc = nla_data(_bc);
558 int len = nla_len(_bc);
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 while (len > 0) {
561 int yes = 1;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300562 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300565 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300567 case INET_DIAG_BC_JMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 yes = 0;
569 break;
Kristian Evensenbbb61892017-12-27 18:27:58 +0100570 case INET_DIAG_BC_S_EQ:
571 yes = entry->sport == op[1].no;
572 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300573 case INET_DIAG_BC_S_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 yes = entry->sport >= op[1].no;
575 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300576 case INET_DIAG_BC_S_LE:
Roel Kluinb4ced2b2010-01-19 14:12:20 -0800577 yes = entry->sport <= op[1].no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
Kristian Evensenbbb61892017-12-27 18:27:58 +0100579 case INET_DIAG_BC_D_EQ:
580 yes = entry->dport == op[1].no;
581 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300582 case INET_DIAG_BC_D_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 yes = entry->dport >= op[1].no;
584 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300585 case INET_DIAG_BC_D_LE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 yes = entry->dport <= op[1].no;
587 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300588 case INET_DIAG_BC_AUTO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
590 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300591 case INET_DIAG_BC_S_COND:
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -0300592 case INET_DIAG_BC_D_COND: {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700593 const struct inet_diag_hostcond *cond;
594 const __be32 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Eric Dumazete31c5e02015-03-10 07:15:53 -0700596 cond = (const struct inet_diag_hostcond *)(op + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (cond->port != -1 &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300598 cond->port != (op->code == INET_DIAG_BC_S_COND ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 entry->sport : entry->dport)) {
600 yes = 0;
601 break;
602 }
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800603
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300604 if (op->code == INET_DIAG_BC_S_COND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 addr = entry->saddr;
606 else
607 addr = entry->daddr;
608
Neal Cardwellf67caec2012-12-08 19:43:23 +0000609 if (cond->family != AF_UNSPEC &&
610 cond->family != entry->family) {
611 if (entry->family == AF_INET6 &&
612 cond->family == AF_INET) {
613 if (addr[0] == 0 && addr[1] == 0 &&
614 addr[2] == htonl(0xffff) &&
615 bitstring_match(addr + 3,
616 cond->addr,
617 cond->prefix_len))
618 break;
619 }
620 yes = 0;
621 break;
622 }
623
624 if (cond->prefix_len == 0)
625 break;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800626 if (bitstring_match(addr, cond->addr,
627 cond->prefix_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 yes = 0;
630 break;
631 }
David Ahern637c8412016-06-23 18:42:51 -0700632 case INET_DIAG_BC_DEV_COND: {
633 u32 ifindex;
634
635 ifindex = *((const u32 *)(op + 1));
636 if (ifindex != entry->ifindex)
637 yes = 0;
638 break;
639 }
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900640 case INET_DIAG_BC_MARK_COND: {
641 struct inet_diag_markcond *cond;
642
643 cond = (struct inet_diag_markcond *)(op + 1);
644 if ((entry->mark & cond->mask) != cond->mark)
645 yes = 0;
646 break;
647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800650 if (yes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 len -= op->yes;
652 bc += op->yes;
653 } else {
654 len -= op->no;
655 bc += op->no;
656 }
657 }
Eric Dumazeta02cec22010-09-22 20:43:57 +0000658 return len == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Eric Dumazeta4458342015-03-13 15:51:12 -0700661/* This helper is available for all sockets (ESTABLISH, TIMEWAIT, SYN_RECV)
662 */
663static void entry_fill_addrs(struct inet_diag_entry *entry,
664 const struct sock *sk)
665{
666#if IS_ENABLED(CONFIG_IPV6)
667 if (sk->sk_family == AF_INET6) {
668 entry->saddr = sk->sk_v6_rcv_saddr.s6_addr32;
669 entry->daddr = sk->sk_v6_daddr.s6_addr32;
670 } else
671#endif
672 {
673 entry->saddr = &sk->sk_rcv_saddr;
674 entry->daddr = &sk->sk_daddr;
675 }
676}
677
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000678int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
679{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000680 struct inet_sock *inet = inet_sk(sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700681 struct inet_diag_entry entry;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000682
Eric Dumazete31c5e02015-03-10 07:15:53 -0700683 if (!bc)
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000684 return 1;
685
686 entry.family = sk->sk_family;
Eric Dumazeta4458342015-03-13 15:51:12 -0700687 entry_fill_addrs(&entry, sk);
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000688 entry.sport = inet->inet_num;
689 entry.dport = ntohs(inet->inet_dport);
David Ahern637c8412016-06-23 18:42:51 -0700690 entry.ifindex = sk->sk_bound_dev_if;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700691 entry.userlocks = sk_fullsock(sk) ? sk->sk_userlocks : 0;
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900692 if (sk_fullsock(sk))
693 entry.mark = sk->sk_mark;
694 else if (sk->sk_state == TCP_NEW_SYN_RECV)
695 entry.mark = inet_rsk(inet_reqsk(sk))->ir_mark;
696 else
697 entry.mark = 0;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000698
699 return inet_diag_bc_run(bc, &entry);
700}
701EXPORT_SYMBOL_GPL(inet_diag_bc_sk);
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703static int valid_cc(const void *bc, int len, int cc)
704{
705 while (len >= 0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300706 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 if (cc > len)
709 return 0;
710 if (cc == len)
711 return 1;
Eric Dumazeteeb14972011-06-17 16:25:39 -0400712 if (op->yes < 4 || op->yes & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return 0;
714 len -= op->yes;
715 bc += op->yes;
716 }
717 return 0;
718}
719
David Ahern637c8412016-06-23 18:42:51 -0700720/* data is u32 ifindex */
721static bool valid_devcond(const struct inet_diag_bc_op *op, int len,
722 int *min_len)
723{
724 /* Check ifindex space. */
725 *min_len += sizeof(u32);
726 if (len < *min_len)
727 return false;
728
729 return true;
730}
Neal Cardwell405c0052012-12-08 19:43:22 +0000731/* Validate an inet_diag_hostcond. */
732static bool valid_hostcond(const struct inet_diag_bc_op *op, int len,
733 int *min_len)
734{
Neal Cardwell405c0052012-12-08 19:43:22 +0000735 struct inet_diag_hostcond *cond;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700736 int addr_len;
Neal Cardwell405c0052012-12-08 19:43:22 +0000737
738 /* Check hostcond space. */
739 *min_len += sizeof(struct inet_diag_hostcond);
740 if (len < *min_len)
741 return false;
742 cond = (struct inet_diag_hostcond *)(op + 1);
743
744 /* Check address family and address length. */
745 switch (cond->family) {
746 case AF_UNSPEC:
747 addr_len = 0;
748 break;
749 case AF_INET:
750 addr_len = sizeof(struct in_addr);
751 break;
752 case AF_INET6:
753 addr_len = sizeof(struct in6_addr);
754 break;
755 default:
756 return false;
757 }
758 *min_len += addr_len;
759 if (len < *min_len)
760 return false;
761
762 /* Check prefix length (in bits) vs address length (in bytes). */
763 if (cond->prefix_len > 8 * addr_len)
764 return false;
765
766 return true;
767}
768
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000769/* Validate a port comparison operator. */
Eric Dumazete31c5e02015-03-10 07:15:53 -0700770static bool valid_port_comparison(const struct inet_diag_bc_op *op,
771 int len, int *min_len)
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000772{
773 /* Port comparisons put the port in a follow-on inet_diag_bc_op. */
774 *min_len += sizeof(struct inet_diag_bc_op);
775 if (len < *min_len)
776 return false;
777 return true;
778}
779
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900780static bool valid_markcond(const struct inet_diag_bc_op *op, int len,
781 int *min_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900783 *min_len += sizeof(struct inet_diag_markcond);
784 return len >= *min_len;
785}
786
787static int inet_diag_bc_audit(const struct nlattr *attr,
788 const struct sk_buff *skb)
789{
790 bool net_admin = netlink_net_capable(skb, CAP_NET_ADMIN);
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +0900791 const void *bytecode, *bc;
792 int bytecode_len, len;
793
794 if (!attr || nla_len(attr) < sizeof(struct inet_diag_bc_op))
795 return -EINVAL;
796
797 bytecode = bc = nla_data(attr);
798 len = bytecode_len = nla_len(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 while (len > 0) {
Neal Cardwell405c0052012-12-08 19:43:22 +0000801 int min_len = sizeof(struct inet_diag_bc_op);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700802 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300805 case INET_DIAG_BC_S_COND:
806 case INET_DIAG_BC_D_COND:
Neal Cardwell405c0052012-12-08 19:43:22 +0000807 if (!valid_hostcond(bc, len, &min_len))
808 return -EINVAL;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000809 break;
David Ahern637c8412016-06-23 18:42:51 -0700810 case INET_DIAG_BC_DEV_COND:
811 if (!valid_devcond(bc, len, &min_len))
812 return -EINVAL;
813 break;
Kristian Evensenbbb61892017-12-27 18:27:58 +0100814 case INET_DIAG_BC_S_EQ:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300815 case INET_DIAG_BC_S_GE:
816 case INET_DIAG_BC_S_LE:
Kristian Evensenbbb61892017-12-27 18:27:58 +0100817 case INET_DIAG_BC_D_EQ:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300818 case INET_DIAG_BC_D_GE:
819 case INET_DIAG_BC_D_LE:
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000820 if (!valid_port_comparison(bc, len, &min_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return -EINVAL;
822 break;
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900823 case INET_DIAG_BC_MARK_COND:
824 if (!net_admin)
825 return -EPERM;
826 if (!valid_markcond(bc, len, &min_len))
827 return -EINVAL;
828 break;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000829 case INET_DIAG_BC_AUTO:
830 case INET_DIAG_BC_JMP:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300831 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 break;
833 default:
834 return -EINVAL;
835 }
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000836
837 if (op->code != INET_DIAG_BC_NOP) {
838 if (op->no < min_len || op->no > len + 4 || op->no & 3)
839 return -EINVAL;
840 if (op->no < len &&
841 !valid_cc(bytecode, bytecode_len, len - op->no))
842 return -EINVAL;
843 }
844
Neal Cardwell405c0052012-12-08 19:43:22 +0000845 if (op->yes < min_len || op->yes > len + 4 || op->yes & 3)
Eric Dumazeteeb14972011-06-17 16:25:39 -0400846 return -EINVAL;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800847 bc += op->yes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 len -= op->yes;
849 }
850 return len == 0 ? 0 : -EINVAL;
851}
852
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800853static int inet_csk_diag_dump(struct sock *sk,
854 struct sk_buff *skb,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000855 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700856 const struct inet_diag_req_v2 *r,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900857 const struct nlattr *bc,
858 bool net_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000860 if (!inet_diag_bc_sk(bc, sk))
861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000863 return inet_csk_diag_fill(sk, skb, r,
Patrick McHardye32123e2013-04-17 06:46:57 +0000864 sk_user_ns(NETLINK_CB(cb->skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000865 NETLINK_CB(cb->skb).portid,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900866 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh,
867 net_admin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Eric Dumazet49612722015-03-05 10:18:14 -0800870static void twsk_build_assert(void)
871{
872 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_family) !=
873 offsetof(struct sock, sk_family));
874
875 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_num) !=
876 offsetof(struct inet_sock, inet_num));
877
878 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_dport) !=
879 offsetof(struct inet_sock, inet_dport));
880
881 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_rcv_saddr) !=
882 offsetof(struct inet_sock, inet_rcv_saddr));
883
884 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_daddr) !=
885 offsetof(struct inet_sock, inet_daddr));
886
887#if IS_ENABLED(CONFIG_IPV6)
888 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_rcv_saddr) !=
889 offsetof(struct sock, sk_v6_rcv_saddr));
890
891 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_daddr) !=
892 offsetof(struct sock, sk_v6_daddr));
893#endif
894}
895
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000896void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700897 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700898 const struct inet_diag_req_v2 *r, struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900900 bool net_admin = netlink_net_capable(cb->skb, CAP_NET_ADMIN);
Eric Dumazet67db3e42016-11-04 11:54:32 -0700901 struct net *net = sock_net(skb->sk);
902 u32 idiag_states = r->idiag_states;
903 int i, num, s_i, s_num;
904 struct sock *sk;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800905
Eric Dumazet079096f2015-10-02 11:43:32 -0700906 if (idiag_states & TCPF_SYN_RECV)
907 idiag_states |= TCPF_NEW_SYN_RECV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 s_i = cb->args[1];
909 s_num = num = cb->args[2];
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (cb->args[0] == 0) {
Eric Dumazet9652dc22016-10-19 21:24:58 -0700912 if (!(idiag_states & TCPF_LISTEN) || r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 goto skip_listen_ht;
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300914
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700915 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800916 struct inet_listen_hashbucket *ilb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 num = 0;
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800919 ilb = &hashinfo->listening_hash[i];
Eric Dumazet9652dc22016-10-19 21:24:58 -0700920 spin_lock(&ilb->lock);
Eric Dumazet3b24d852016-04-01 08:52:17 -0700921 sk_for_each(sk, &ilb->head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct inet_sock *inet = inet_sk(sk);
923
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000924 if (!net_eq(sock_net(sk), net))
925 continue;
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (num < s_num) {
928 num++;
929 continue;
930 }
931
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000932 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazete31c5e02015-03-10 07:15:53 -0700933 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000934 goto next_listen;
935
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000936 if (r->id.idiag_sport != inet->inet_sport &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300937 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto next_listen;
939
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900940 if (inet_csk_diag_dump(sk, skb, cb, r,
941 bc, net_admin) < 0) {
Eric Dumazet9652dc22016-10-19 21:24:58 -0700942 spin_unlock(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 goto done;
944 }
945
946next_listen:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 ++num;
948 }
Eric Dumazet9652dc22016-10-19 21:24:58 -0700949 spin_unlock(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 s_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953skip_listen_ht:
954 cb->args[0] = 1;
955 s_i = num = s_num = 0;
956 }
957
Eric Dumazet079096f2015-10-02 11:43:32 -0700958 if (!(idiag_states & ~TCPF_LISTEN))
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000959 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Eric Dumazet67db3e42016-11-04 11:54:32 -0700961#define SKARR_SZ 16
Eric Dumazetf373b532009-10-09 00:16:19 +0000962 for (i = s_i; i <= hashinfo->ehash_mask; i++) {
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300963 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
David S. Miller7e3aab42008-11-21 16:39:19 -0800964 spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800965 struct hlist_nulls_node *node;
Eric Dumazet67db3e42016-11-04 11:54:32 -0700966 struct sock *sk_arr[SKARR_SZ];
967 int num_arr[SKARR_SZ];
968 int idx, accum, res;
Andi Kleen6be547a2008-08-28 01:09:54 -0700969
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700970 if (hlist_nulls_empty(&head->chain))
Andi Kleen6be547a2008-08-28 01:09:54 -0700971 continue;
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (i > s_i)
974 s_num = 0;
975
Eric Dumazet67db3e42016-11-04 11:54:32 -0700976next_chunk:
977 num = 0;
978 accum = 0;
David S. Miller7e3aab42008-11-21 16:39:19 -0800979 spin_lock_bh(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800980 sk_nulls_for_each(sk, node, &head->chain) {
Eric Dumazet67db3e42016-11-04 11:54:32 -0700981 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000983 if (!net_eq(sock_net(sk), net))
984 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (num < s_num)
986 goto next_normal;
Neal Cardwell70315d22014-01-10 15:34:45 -0500987 state = (sk->sk_state == TCP_TIME_WAIT) ?
988 inet_twsk(sk)->tw_substate : sk->sk_state;
Eric Dumazet079096f2015-10-02 11:43:32 -0700989 if (!(idiag_states & (1 << state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 goto next_normal;
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000991 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700992 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000993 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700994 if (r->id.idiag_sport != htons(sk->sk_num) &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300995 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700997 if (r->id.idiag_dport != sk->sk_dport &&
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800998 r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto next_normal;
Eric Dumazeta58917f2015-03-15 21:12:14 -07001000 twsk_build_assert();
1001
1002 if (!inet_diag_bc_sk(bc, sk))
1003 goto next_normal;
1004
Eric Dumazetf0c928d2018-12-20 15:28:56 -08001005 if (!refcount_inc_not_zero(&sk->sk_refcnt))
1006 goto next_normal;
1007
Eric Dumazet67db3e42016-11-04 11:54:32 -07001008 num_arr[accum] = num;
1009 sk_arr[accum] = sk;
1010 if (++accum == SKARR_SZ)
1011 break;
1012next_normal:
1013 ++num;
1014 }
1015 spin_unlock_bh(lock);
1016 res = 0;
1017 for (idx = 0; idx < accum; idx++) {
1018 if (res >= 0) {
1019 res = sk_diag_fill(sk_arr[idx], skb, r,
Eric Dumazeta58917f2015-03-15 21:12:14 -07001020 sk_user_ns(NETLINK_CB(cb->skb).sk),
1021 NETLINK_CB(cb->skb).portid,
1022 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Lorenzo Colittid545cac2016-09-08 00:42:25 +09001023 cb->nlh, net_admin);
Eric Dumazet67db3e42016-11-04 11:54:32 -07001024 if (res < 0)
1025 num = num_arr[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Eric Dumazet67db3e42016-11-04 11:54:32 -07001027 sock_gen_put(sk_arr[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
Eric Dumazet67db3e42016-11-04 11:54:32 -07001029 if (res < 0)
1030 break;
Eric Dumazetacffb582016-03-14 15:40:00 -07001031 cond_resched();
Eric Dumazet67db3e42016-11-04 11:54:32 -07001032 if (accum == SKARR_SZ) {
1033 s_num = num + 1;
1034 goto next_chunk;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
1038done:
1039 cb->args[1] = i;
1040 cb->args[2] = num;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001041out:
1042 ;
1043}
Pavel Emelyanov1942c512011-12-09 06:23:18 +00001044EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001045
1046static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -07001047 const struct inet_diag_req_v2 *r,
Eric Dumazete31c5e02015-03-10 07:15:53 -07001048 struct nlattr *bc)
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001049{
1050 const struct inet_diag_handler *handler;
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +00001051 int err = 0;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001052
1053 handler = inet_diag_lock_handler(r->sdiag_protocol);
1054 if (!IS_ERR(handler))
Pavel Emelyanov1942c512011-12-09 06:23:18 +00001055 handler->dump(skb, cb, r, bc);
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +00001056 else
1057 err = PTR_ERR(handler);
Herbert Xud523a322007-12-03 15:51:25 +11001058 inet_diag_unlock_handler(handler);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001059
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +00001060 return err ? : skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001063static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
1064{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001065 int hdrlen = sizeof(struct inet_diag_req_v2);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001066 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001067
1068 if (nlmsg_attrlen(cb->nlh, hdrlen))
1069 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1070
David S. Millerd1063522012-06-26 21:28:54 -07001071 return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001072}
1073
Eric Dumazete31c5e02015-03-10 07:15:53 -07001074static int inet_diag_type2proto(int type)
Pavel Emelyanova029fe22011-12-06 07:59:32 +00001075{
1076 switch (type) {
1077 case TCPDIAG_GETSOCK:
1078 return IPPROTO_TCP;
1079 case DCCPDIAG_GETSOCK:
1080 return IPPROTO_DCCP;
1081 default:
1082 return 0;
1083 }
1084}
1085
Eric Dumazete31c5e02015-03-10 07:15:53 -07001086static int inet_diag_dump_compat(struct sk_buff *skb,
1087 struct netlink_callback *cb)
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001088{
David S. Millerd1063522012-06-26 21:28:54 -07001089 struct inet_diag_req *rc = nlmsg_data(cb->nlh);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001090 int hdrlen = sizeof(struct inet_diag_req);
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001091 struct inet_diag_req_v2 req;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001092 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001093
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +00001094 req.sdiag_family = AF_UNSPEC; /* compatibility */
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001095 req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
1096 req.idiag_ext = rc->idiag_ext;
1097 req.idiag_states = rc->idiag_states;
1098 req.id = rc->id;
1099
1100 if (nlmsg_attrlen(cb->nlh, hdrlen))
1101 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1102
1103 return __inet_diag_dump(skb, cb, &req, bc);
1104}
1105
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001106static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -07001107 const struct nlmsghdr *nlh)
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001108{
David S. Millerd1063522012-06-26 21:28:54 -07001109 struct inet_diag_req *rc = nlmsg_data(nlh);
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001110 struct inet_diag_req_v2 req;
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001111
1112 req.sdiag_family = rc->idiag_family;
1113 req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
1114 req.idiag_ext = rc->idiag_ext;
1115 req.idiag_states = rc->idiag_states;
1116 req.id = rc->id;
1117
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001118 return inet_diag_cmd_exact(SOCK_DIAG_BY_FAMILY, in_skb, nlh, &req);
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001119}
1120
Pavel Emelyanov8d341722011-12-06 07:57:06 +00001121static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Pavel Emelyanov3b09c842012-01-10 22:37:26 +00001123 int hdrlen = sizeof(struct inet_diag_req);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001124 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Thomas Grafead592b2007-03-22 23:30:35 -07001126 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
1127 nlmsg_len(nlh) < hdrlen)
1128 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
David S. Millerb8f3ab42011-01-18 12:40:38 -08001130 if (nlh->nlmsg_flags & NLM_F_DUMP) {
Thomas Grafead592b2007-03-22 23:30:35 -07001131 if (nlmsg_attrlen(nlh, hdrlen)) {
1132 struct nlattr *attr;
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001133 int err;
Thomas Grafead592b2007-03-22 23:30:35 -07001134
1135 attr = nlmsg_find_attr(nlh, hdrlen,
1136 INET_DIAG_REQ_BYTECODE);
Lorenzo Colittia52e95a2016-08-24 15:46:26 +09001137 err = inet_diag_bc_audit(attr, skb);
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001138 if (err)
1139 return err;
Thomas Grafead592b2007-03-22 23:30:35 -07001140 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001141 {
1142 struct netlink_dump_control c = {
1143 .dump = inet_diag_dump_compat,
1144 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001145 return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
Thomas Grafead592b2007-03-22 23:30:35 -07001148
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001149 return inet_diag_get_exact_compat(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001152static int inet_diag_handler_cmd(struct sk_buff *skb, struct nlmsghdr *h)
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001153{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001154 int hdrlen = sizeof(struct inet_diag_req_v2);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001155 struct net *net = sock_net(skb->sk);
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001156
1157 if (nlmsg_len(h) < hdrlen)
1158 return -EINVAL;
1159
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001160 if (h->nlmsg_type == SOCK_DIAG_BY_FAMILY &&
1161 h->nlmsg_flags & NLM_F_DUMP) {
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001162 if (nlmsg_attrlen(h, hdrlen)) {
1163 struct nlattr *attr;
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001164 int err;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001165
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001166 attr = nlmsg_find_attr(h, hdrlen,
1167 INET_DIAG_REQ_BYTECODE);
Lorenzo Colittia52e95a2016-08-24 15:46:26 +09001168 err = inet_diag_bc_audit(attr, skb);
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001169 if (err)
1170 return err;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001171 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001172 {
1173 struct netlink_dump_control c = {
1174 .dump = inet_diag_dump,
1175 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001176 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001177 }
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001178 }
1179
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001180 return inet_diag_cmd_exact(h->nlmsg_type, skb, h, nlmsg_data(h));
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001181}
1182
Craig Gallek35ac8382015-06-15 11:26:20 -04001183static
1184int inet_diag_handler_get_info(struct sk_buff *skb, struct sock *sk)
1185{
1186 const struct inet_diag_handler *handler;
1187 struct nlmsghdr *nlh;
1188 struct nlattr *attr;
1189 struct inet_diag_msg *r;
1190 void *info = NULL;
1191 int err = 0;
1192
1193 nlh = nlmsg_put(skb, 0, 0, SOCK_DIAG_BY_FAMILY, sizeof(*r), 0);
1194 if (!nlh)
1195 return -ENOMEM;
1196
1197 r = nlmsg_data(nlh);
1198 memset(r, 0, sizeof(*r));
1199 inet_diag_msg_common_fill(r, sk);
Craig Galleke0df02e2015-06-17 10:59:10 -04001200 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_STREAM)
1201 r->id.idiag_sport = inet_sk(sk)->inet_sport;
Craig Gallek35ac8382015-06-15 11:26:20 -04001202 r->idiag_state = sk->sk_state;
1203
1204 if ((err = nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))) {
1205 nlmsg_cancel(skb, nlh);
1206 return err;
1207 }
1208
1209 handler = inet_diag_lock_handler(sk->sk_protocol);
1210 if (IS_ERR(handler)) {
1211 inet_diag_unlock_handler(handler);
1212 nlmsg_cancel(skb, nlh);
1213 return PTR_ERR(handler);
1214 }
1215
1216 attr = handler->idiag_info_size
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +02001217 ? nla_reserve_64bit(skb, INET_DIAG_INFO,
1218 handler->idiag_info_size,
1219 INET_DIAG_PAD)
Craig Gallek35ac8382015-06-15 11:26:20 -04001220 : NULL;
1221 if (attr)
1222 info = nla_data(attr);
1223
1224 handler->idiag_get_info(sk, r, info);
1225 inet_diag_unlock_handler(handler);
1226
1227 nlmsg_end(skb, nlh);
1228 return 0;
1229}
1230
Shan Wei8dcf01f2012-04-24 18:21:07 +00001231static const struct sock_diag_handler inet_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001232 .family = AF_INET,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001233 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001234 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001235 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001236};
1237
Shan Wei8dcf01f2012-04-24 18:21:07 +00001238static const struct sock_diag_handler inet6_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001239 .family = AF_INET6,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001240 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001241 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001242 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001243};
1244
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001245int inet_diag_register(const struct inet_diag_handler *h)
1246{
1247 const __u16 type = h->idiag_type;
1248 int err = -EINVAL;
1249
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001250 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001251 goto out;
1252
Herbert Xud523a322007-12-03 15:51:25 +11001253 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001254 err = -EEXIST;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001255 if (!inet_diag_table[type]) {
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001256 inet_diag_table[type] = h;
1257 err = 0;
1258 }
Herbert Xud523a322007-12-03 15:51:25 +11001259 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001260out:
1261 return err;
1262}
1263EXPORT_SYMBOL_GPL(inet_diag_register);
1264
1265void inet_diag_unregister(const struct inet_diag_handler *h)
1266{
1267 const __u16 type = h->idiag_type;
1268
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001269 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001270 return;
1271
Herbert Xud523a322007-12-03 15:51:25 +11001272 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001273 inet_diag_table[type] = NULL;
Herbert Xud523a322007-12-03 15:51:25 +11001274 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001275}
1276EXPORT_SYMBOL_GPL(inet_diag_unregister);
1277
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001278static int __init inet_diag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001280 const int inet_diag_table_size = (IPPROTO_MAX *
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001281 sizeof(struct inet_diag_handler *));
1282 int err = -ENOMEM;
1283
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001284 inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001285 if (!inet_diag_table)
1286 goto out;
1287
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001288 err = sock_diag_register(&inet_diag_handler);
1289 if (err)
1290 goto out_free_nl;
1291
1292 err = sock_diag_register(&inet6_diag_handler);
1293 if (err)
1294 goto out_free_inet;
1295
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001296 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001297out:
1298 return err;
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001299
1300out_free_inet:
1301 sock_diag_unregister(&inet_diag_handler);
1302out_free_nl:
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001303 kfree(inet_diag_table);
1304 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001307static void __exit inet_diag_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001309 sock_diag_unregister(&inet6_diag_handler);
1310 sock_diag_unregister(&inet_diag_handler);
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001311 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001312 kfree(inet_diag_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001315module_init(inet_diag_init);
1316module_exit(inet_diag_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317MODULE_LICENSE("GPL");
Pavel Emelyanovaec8dc622011-12-15 02:43:27 +00001318MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
1319MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);