blob: 8c8377568a787c80540aac7e9ed6f122068010ca [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))
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700103 + nla_total_size(sizeof(struct inet_diag_msg))
Dmitry Yakunin83f73c5b2020-03-05 15:33:12 +0300104 + inet_diag_msg_attrs_size()
105 + nla_total_size(sizeof(struct inet_diag_meminfo))
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700106 + nla_total_size(SK_MEMINFO_VARS * sizeof(u32))
107 + nla_total_size(TCP_CA_NAME_MAX)
108 + nla_total_size(sizeof(struct tcpvegas_info))
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700109 + aux
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700110 + 64;
111}
112
Xin Longcb2050a2016-04-14 15:35:32 +0800113int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb,
114 struct inet_diag_msg *r, int ext,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900115 struct user_namespace *user_ns,
116 bool net_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700118 const struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Pavel Emelyanove4e541a2012-10-23 22:29:56 +0400120 if (nla_put_u8(skb, INET_DIAG_SHUTDOWN, sk->sk_shutdown))
121 goto errout;
122
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500123 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
124 * hence this needs to be included regardless of socket family.
125 */
126 if (ext & (1 << (INET_DIAG_TOS - 1)))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000127 if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
128 goto errout;
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500129
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000130#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300131 if (r->idiag_family == AF_INET6) {
Maciej Żenczykowski06236ac2011-11-07 14:23:11 +0000132 if (ext & (1 << (INET_DIAG_TCLASS - 1)))
Eric Dumazetefe42082013-10-03 15:42:29 -0700133 if (nla_put_u8(skb, INET_DIAG_TCLASS,
134 inet6_sk(sk)->tclass) < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000135 goto errout;
Phil Sutter20462152015-06-24 11:02:51 +0200136
Phil Sutter8220ea22015-07-10 11:39:57 +0200137 if (((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
138 nla_put_u8(skb, INET_DIAG_SKV6ONLY, ipv6_only_sock(sk)))
Phil Sutter20462152015-06-24 11:02:51 +0200139 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141#endif
142
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900143 if (net_admin && nla_put_u32(skb, INET_DIAG_MARK, sk->sk_mark))
144 goto errout;
145
Dmitry Yakunin83f73c5b2020-03-05 15:33:12 +0300146 if (ext & (1 << (INET_DIAG_CLASS_ID - 1)) ||
147 ext & (1 << (INET_DIAG_TCLASS - 1))) {
148 u32 classid = 0;
149
150#ifdef CONFIG_SOCK_CGROUP_DATA
151 classid = sock_cgroup_classid(&sk->sk_cgrp_data);
152#endif
153 /* Fallback to socket priority if class id isn't set.
154 * Classful qdiscs use it as direct reference to class.
155 * For cgroup2 classid is always zero.
156 */
157 if (!classid)
158 classid = sk->sk_priority;
159
160 if (nla_put_u32(skb, INET_DIAG_CLASS_ID, classid))
161 goto errout;
162 }
163
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600164 r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000165 r->idiag_inode = sock_i_ino(sk);
166
Xin Longcb2050a2016-04-14 15:35:32 +0800167 return 0;
168errout:
169 return 1;
170}
171EXPORT_SYMBOL_GPL(inet_diag_msg_attrs_fill);
172
173int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
174 struct sk_buff *skb, const struct inet_diag_req_v2 *req,
175 struct user_namespace *user_ns,
176 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900177 const struct nlmsghdr *unlh,
178 bool net_admin)
Xin Longcb2050a2016-04-14 15:35:32 +0800179{
180 const struct tcp_congestion_ops *ca_ops;
181 const struct inet_diag_handler *handler;
182 int ext = req->idiag_ext;
183 struct inet_diag_msg *r;
184 struct nlmsghdr *nlh;
185 struct nlattr *attr;
186 void *info = NULL;
187
188 handler = inet_diag_table[req->sdiag_protocol];
189 BUG_ON(!handler);
190
191 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
192 nlmsg_flags);
193 if (!nlh)
194 return -EMSGSIZE;
195
196 r = nlmsg_data(nlh);
197 BUG_ON(!sk_fullsock(sk));
198
199 inet_diag_msg_common_fill(r, sk);
200 r->idiag_state = sk->sk_state;
201 r->idiag_timer = 0;
202 r->idiag_retrans = 0;
203
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900204 if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns, net_admin))
Xin Longcb2050a2016-04-14 15:35:32 +0800205 goto errout;
206
Thomas Graf6e277ed2012-06-26 23:36:12 +0000207 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
208 struct inet_diag_meminfo minfo = {
209 .idiag_rmem = sk_rmem_alloc_get(sk),
Eric Dumazetab4e8462019-10-10 20:17:46 -0700210 .idiag_wmem = READ_ONCE(sk->sk_wmem_queued),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000211 .idiag_fmem = sk->sk_forward_alloc,
212 .idiag_tmem = sk_wmem_alloc_get(sk),
213 };
214
215 if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
216 goto errout;
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000217 }
218
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000219 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
220 if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000221 goto errout;
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000222
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300223 /*
224 * RAW sockets might have user-defined protocols assigned,
225 * so report the one supplied on socket creation.
226 */
227 if (sk->sk_type == SOCK_RAW) {
228 if (nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))
229 goto errout;
230 }
231
Eric Dumazete31c5e02015-03-10 07:15:53 -0700232 if (!icsk) {
Shan Wei62ad6fc2012-04-24 18:15:41 +0000233 handler->idiag_get_info(sk, r, NULL);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000234 goto out;
235 }
236
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000237 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
Yuchung Cheng57dde7f2017-01-12 22:11:33 -0800238 icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT ||
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000239 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300240 r->idiag_timer = 1;
241 r->idiag_retrans = icsk->icsk_retransmits;
Xin Longb7de5292016-04-19 15:10:01 +0800242 r->idiag_expires =
Eric Dumazet3828a932019-11-05 14:11:50 -0800243 jiffies_delta_to_msecs(icsk->icsk_timeout - jiffies);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700244 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300245 r->idiag_timer = 4;
246 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800247 r->idiag_expires =
Eric Dumazet3828a932019-11-05 14:11:50 -0800248 jiffies_delta_to_msecs(icsk->icsk_timeout - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 } else if (timer_pending(&sk->sk_timer)) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300250 r->idiag_timer = 2;
251 r->idiag_retrans = icsk->icsk_probes_out;
Xin Longb7de5292016-04-19 15:10:01 +0800252 r->idiag_expires =
Eric Dumazet3828a932019-11-05 14:11:50 -0800253 jiffies_delta_to_msecs(sk->sk_timer.expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 } else {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300255 r->idiag_timer = 0;
256 r->idiag_expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300258
Craig Gallek3fd22af2015-06-15 11:26:19 -0400259 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) {
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +0200260 attr = nla_reserve_64bit(skb, INET_DIAG_INFO,
261 handler->idiag_info_size,
262 INET_DIAG_PAD);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000263 if (!attr)
264 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Thomas Graf6e277ed2012-06-26 23:36:12 +0000266 info = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700269 if (ext & (1 << (INET_DIAG_CONG - 1))) {
270 int err = 0;
271
272 rcu_read_lock();
273 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
274 if (ca_ops)
275 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name);
276 rcu_read_unlock();
277 if (err < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000278 goto errout;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700279 }
Thomas Graf6e277ed2012-06-26 23:36:12 +0000280
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300281 handler->idiag_get_info(sk, r, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700283 if (ext & (1 << (INET_DIAG_INFO - 1)) && handler->idiag_get_aux)
284 if (handler->idiag_get_aux(sk, net_admin, skb) < 0)
285 goto errout;
286
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700287 if (sk->sk_state < TCP_TIME_WAIT) {
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700288 union tcp_cc_info info;
289 size_t sz = 0;
290 int attr;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700291
292 rcu_read_lock();
293 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
294 if (ca_ops && ca_ops->get_info)
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700295 sz = ca_ops->get_info(sk, ext, &attr, &info);
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700296 rcu_read_unlock();
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700297 if (sz && nla_put(skb, attr, sz, &info) < 0)
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700298 goto errout;
299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000301out:
Johannes Berg053c0952015-01-16 22:09:00 +0100302 nlmsg_end(skb, nlh);
303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Thomas Graf6e277ed2012-06-26 23:36:12 +0000305errout:
306 nlmsg_cancel(skb, nlh);
Patrick McHardy26932562007-01-31 23:16:40 -0800307 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000309EXPORT_SYMBOL_GPL(inet_sk_diag_fill);
310
311static int inet_csk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700312 struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700313 const struct inet_diag_req_v2 *req,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600314 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000315 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900316 const struct nlmsghdr *unlh,
317 bool net_admin)
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000318{
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900319 return inet_sk_diag_fill(sk, inet_csk(sk), skb, req, user_ns,
320 portid, seq, nlmsg_flags, unlh, net_admin);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000321}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700323static int inet_twsk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700324 struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000325 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800326 const struct nlmsghdr *unlh)
327{
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700328 struct inet_timewait_sock *tw = inet_twsk(sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800329 struct inet_diag_msg *r;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000330 struct nlmsghdr *nlh;
Eric Dumazet789f5582015-04-12 18:51:09 -0700331 long tmo;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800332
Eric W. Biederman15e47302012-09-07 20:12:54 +0000333 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000334 nlmsg_flags);
335 if (!nlh)
David S. Millerd1063522012-06-26 21:28:54 -0700336 return -EMSGSIZE;
David S. Millerd1063522012-06-26 21:28:54 -0700337
338 r = nlmsg_data(nlh);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800339 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
340
Eric Dumazeta4458342015-03-13 15:51:12 -0700341 inet_diag_msg_common_fill(r, sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800342 r->idiag_retrans = 0;
Daniel Borkmannb1aac812013-12-17 00:38:39 +0100343
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800344 r->idiag_state = tw->tw_substate;
345 r->idiag_timer = 3;
Eric Dumazet3828a932019-11-05 14:11:50 -0800346 tmo = tw->tw_timer.expires - jiffies;
347 r->idiag_expires = jiffies_delta_to_msecs(tmo);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800348 r->idiag_rqueue = 0;
349 r->idiag_wqueue = 0;
350 r->idiag_uid = 0;
351 r->idiag_inode = 0;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000352
Johannes Berg053c0952015-01-16 22:09:00 +0100353 nlmsg_end(skb, nlh);
354 return 0;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800355}
356
Eric Dumazeta58917f2015-03-15 21:12:14 -0700357static int inet_req_diag_fill(struct sock *sk, struct sk_buff *skb,
358 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900359 const struct nlmsghdr *unlh, bool net_admin)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700360{
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900361 struct request_sock *reqsk = inet_reqsk(sk);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700362 struct inet_diag_msg *r;
363 struct nlmsghdr *nlh;
364 long tmo;
365
366 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
367 nlmsg_flags);
368 if (!nlh)
369 return -EMSGSIZE;
370
371 r = nlmsg_data(nlh);
372 inet_diag_msg_common_fill(r, sk);
373 r->idiag_state = TCP_SYN_RECV;
374 r->idiag_timer = 1;
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900375 r->idiag_retrans = reqsk->num_retrans;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700376
377 BUILD_BUG_ON(offsetof(struct inet_request_sock, ir_cookie) !=
378 offsetof(struct sock, sk_cookie));
379
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700380 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies;
Eric Dumazet3828a932019-11-05 14:11:50 -0800381 r->idiag_expires = jiffies_delta_to_msecs(tmo);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700382 r->idiag_rqueue = 0;
383 r->idiag_wqueue = 0;
384 r->idiag_uid = 0;
385 r->idiag_inode = 0;
386
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900387 if (net_admin && nla_put_u32(skb, INET_DIAG_MARK,
388 inet_rsk(reqsk)->ir_mark))
389 return -EMSGSIZE;
390
Eric Dumazeta58917f2015-03-15 21:12:14 -0700391 nlmsg_end(skb, nlh);
392 return 0;
393}
394
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800395static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700396 const struct inet_diag_req_v2 *r,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600397 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000398 u32 portid, u32 seq, u16 nlmsg_flags,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900399 const struct nlmsghdr *unlh, bool net_admin)
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800400{
401 if (sk->sk_state == TCP_TIME_WAIT)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700402 return inet_twsk_diag_fill(sk, skb, portid, seq,
Eric Dumazetefe42082013-10-03 15:42:29 -0700403 nlmsg_flags, unlh);
404
Eric Dumazeta58917f2015-03-15 21:12:14 -0700405 if (sk->sk_state == TCP_NEW_SYN_RECV)
406 return inet_req_diag_fill(sk, skb, portid, seq,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900407 nlmsg_flags, unlh, net_admin);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700408
Eric Dumazetefe42082013-10-03 15:42:29 -0700409 return inet_csk_diag_fill(sk, skb, r, user_ns, portid, seq,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900410 nlmsg_flags, unlh, net_admin);
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800411}
412
Lorenzo Colittib613f562015-12-16 12:30:02 +0900413struct sock *inet_diag_find_one_icsk(struct net *net,
414 struct inet_hashinfo *hashinfo,
415 const struct inet_diag_req_v2 *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700417 struct sock *sk;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300418
Eric Dumazet2d331912016-04-01 08:52:15 -0700419 rcu_read_lock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700420 if (req->sdiag_family == AF_INET)
Craig Galleka5836362016-02-10 11:50:38 -0500421 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[0],
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300422 req->id.idiag_dport, req->id.idiag_src[0],
423 req->id.idiag_sport, req->id.idiag_if);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000424#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazet7c130672016-01-20 16:25:01 -0800425 else if (req->sdiag_family == AF_INET6) {
426 if (ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_dst) &&
427 ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_src))
Craig Galleka5836362016-02-10 11:50:38 -0500428 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[3],
Eric Dumazet7c130672016-01-20 16:25:01 -0800429 req->id.idiag_dport, req->id.idiag_src[3],
430 req->id.idiag_sport, req->id.idiag_if);
431 else
Craig Galleka5836362016-02-10 11:50:38 -0500432 sk = inet6_lookup(net, hashinfo, NULL, 0,
Eric Dumazet7c130672016-01-20 16:25:01 -0800433 (struct in6_addr *)req->id.idiag_dst,
434 req->id.idiag_dport,
435 (struct in6_addr *)req->id.idiag_src,
436 req->id.idiag_sport,
437 req->id.idiag_if);
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439#endif
Eric Dumazet2d331912016-04-01 08:52:15 -0700440 else {
441 rcu_read_unlock();
Lorenzo Colittib613f562015-12-16 12:30:02 +0900442 return ERR_PTR(-EINVAL);
Eric Dumazet2d331912016-04-01 08:52:15 -0700443 }
444 rcu_read_unlock();
Eric Dumazete31c5e02015-03-10 07:15:53 -0700445 if (!sk)
Lorenzo Colittib613f562015-12-16 12:30:02 +0900446 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Lorenzo Colittib613f562015-12-16 12:30:02 +0900448 if (sock_diag_check_cookie(sk, req->id.idiag_cookie)) {
449 sock_gen_put(sk);
450 return ERR_PTR(-ENOENT);
451 }
452
453 return sk;
454}
455EXPORT_SYMBOL_GPL(inet_diag_find_one_icsk);
456
457int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
458 struct sk_buff *in_skb,
459 const struct nlmsghdr *nlh,
460 const struct inet_diag_req_v2 *req)
461{
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700462 bool net_admin = netlink_net_capable(in_skb, CAP_NET_ADMIN);
Lorenzo Colittib613f562015-12-16 12:30:02 +0900463 struct net *net = sock_net(in_skb->sk);
464 struct sk_buff *rep;
465 struct sock *sk;
466 int err;
467
468 sk = inet_diag_find_one_icsk(net, hashinfo, req);
469 if (IS_ERR(sk))
470 return PTR_ERR(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700472 rep = nlmsg_new(inet_sk_attr_size(sk, req, net_admin), GFP_KERNEL);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000473 if (!rep) {
474 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto out;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000478 err = sk_diag_fill(sk, rep, req,
Patrick McHardye32123e2013-04-17 06:46:57 +0000479 sk_user_ns(NETLINK_CB(in_skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000480 NETLINK_CB(in_skb).portid,
Ivan Delalandeb37e8842017-08-31 09:59:38 -0700481 nlh->nlmsg_seq, 0, nlh, net_admin);
Patrick McHardy26932562007-01-31 23:16:40 -0800482 if (err < 0) {
483 WARN_ON(err == -EMSGSIZE);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000484 nlmsg_free(rep);
Patrick McHardy26932562007-01-31 23:16:40 -0800485 goto out;
486 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000487 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300488 MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (err > 0)
490 err = 0;
491
492out:
Eric Dumazetc1d607c2013-10-11 08:54:49 -0700493 if (sk)
494 sock_gen_put(sk);
495
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000496 return err;
497}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000498EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000499
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900500static int inet_diag_cmd_exact(int cmd, struct sk_buff *in_skb,
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000501 const struct nlmsghdr *nlh,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700502 const struct inet_diag_req_v2 *req)
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000503{
504 const struct inet_diag_handler *handler;
505 int err;
506
507 handler = inet_diag_lock_handler(req->sdiag_protocol);
508 if (IS_ERR(handler))
509 err = PTR_ERR(handler);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900510 else if (cmd == SOCK_DIAG_BY_FAMILY)
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000511 err = handler->dump_one(in_skb, nlh, req);
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +0900512 else if (cmd == SOCK_DESTROY && handler->destroy)
513 err = handler->destroy(in_skb, req);
514 else
515 err = -EOPNOTSUPP;
Herbert Xud523a322007-12-03 15:51:25 +1100516 inet_diag_unlock_handler(handler);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return err;
519}
520
Al Viro9f855292006-09-27 18:44:30 -0700521static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 int words = bits >> 5;
524
525 bits &= 0x1f;
526
527 if (words) {
528 if (memcmp(a1, a2, words << 2))
529 return 0;
530 }
531 if (bits) {
Al Viro9f855292006-09-27 18:44:30 -0700532 __be32 w1, w2;
533 __be32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 w1 = a1[words];
536 w2 = a2[words];
537
538 mask = htonl((0xffffffff) << (32 - bits));
539
540 if ((w1 ^ w2) & mask)
541 return 0;
542 }
543
544 return 1;
545}
546
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000547static int inet_diag_bc_run(const struct nlattr *_bc,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700548 const struct inet_diag_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000550 const void *bc = nla_data(_bc);
551 int len = nla_len(_bc);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 while (len > 0) {
554 int yes = 1;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300555 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300558 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300560 case INET_DIAG_BC_JMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 yes = 0;
562 break;
Kristian Evensenbbb61892017-12-27 18:27:58 +0100563 case INET_DIAG_BC_S_EQ:
564 yes = entry->sport == op[1].no;
565 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300566 case INET_DIAG_BC_S_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 yes = entry->sport >= op[1].no;
568 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300569 case INET_DIAG_BC_S_LE:
Roel Kluinb4ced2b2010-01-19 14:12:20 -0800570 yes = entry->sport <= op[1].no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
Kristian Evensenbbb61892017-12-27 18:27:58 +0100572 case INET_DIAG_BC_D_EQ:
573 yes = entry->dport == op[1].no;
574 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300575 case INET_DIAG_BC_D_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 yes = entry->dport >= op[1].no;
577 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300578 case INET_DIAG_BC_D_LE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 yes = entry->dport <= op[1].no;
580 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300581 case INET_DIAG_BC_AUTO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
583 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300584 case INET_DIAG_BC_S_COND:
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -0300585 case INET_DIAG_BC_D_COND: {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700586 const struct inet_diag_hostcond *cond;
587 const __be32 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Eric Dumazete31c5e02015-03-10 07:15:53 -0700589 cond = (const struct inet_diag_hostcond *)(op + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (cond->port != -1 &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300591 cond->port != (op->code == INET_DIAG_BC_S_COND ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 entry->sport : entry->dport)) {
593 yes = 0;
594 break;
595 }
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800596
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300597 if (op->code == INET_DIAG_BC_S_COND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 addr = entry->saddr;
599 else
600 addr = entry->daddr;
601
Neal Cardwellf67caec2012-12-08 19:43:23 +0000602 if (cond->family != AF_UNSPEC &&
603 cond->family != entry->family) {
604 if (entry->family == AF_INET6 &&
605 cond->family == AF_INET) {
606 if (addr[0] == 0 && addr[1] == 0 &&
607 addr[2] == htonl(0xffff) &&
608 bitstring_match(addr + 3,
609 cond->addr,
610 cond->prefix_len))
611 break;
612 }
613 yes = 0;
614 break;
615 }
616
617 if (cond->prefix_len == 0)
618 break;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800619 if (bitstring_match(addr, cond->addr,
620 cond->prefix_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 yes = 0;
623 break;
624 }
David Ahern637c8412016-06-23 18:42:51 -0700625 case INET_DIAG_BC_DEV_COND: {
626 u32 ifindex;
627
628 ifindex = *((const u32 *)(op + 1));
629 if (ifindex != entry->ifindex)
630 yes = 0;
631 break;
632 }
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900633 case INET_DIAG_BC_MARK_COND: {
634 struct inet_diag_markcond *cond;
635
636 cond = (struct inet_diag_markcond *)(op + 1);
637 if ((entry->mark & cond->mask) != cond->mark)
638 yes = 0;
639 break;
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800643 if (yes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 len -= op->yes;
645 bc += op->yes;
646 } else {
647 len -= op->no;
648 bc += op->no;
649 }
650 }
Eric Dumazeta02cec22010-09-22 20:43:57 +0000651 return len == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Eric Dumazeta4458342015-03-13 15:51:12 -0700654/* This helper is available for all sockets (ESTABLISH, TIMEWAIT, SYN_RECV)
655 */
656static void entry_fill_addrs(struct inet_diag_entry *entry,
657 const struct sock *sk)
658{
659#if IS_ENABLED(CONFIG_IPV6)
660 if (sk->sk_family == AF_INET6) {
661 entry->saddr = sk->sk_v6_rcv_saddr.s6_addr32;
662 entry->daddr = sk->sk_v6_daddr.s6_addr32;
663 } else
664#endif
665 {
666 entry->saddr = &sk->sk_rcv_saddr;
667 entry->daddr = &sk->sk_daddr;
668 }
669}
670
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000671int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
672{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000673 struct inet_sock *inet = inet_sk(sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700674 struct inet_diag_entry entry;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000675
Eric Dumazete31c5e02015-03-10 07:15:53 -0700676 if (!bc)
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000677 return 1;
678
679 entry.family = sk->sk_family;
Eric Dumazeta4458342015-03-13 15:51:12 -0700680 entry_fill_addrs(&entry, sk);
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000681 entry.sport = inet->inet_num;
682 entry.dport = ntohs(inet->inet_dport);
David Ahern637c8412016-06-23 18:42:51 -0700683 entry.ifindex = sk->sk_bound_dev_if;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700684 entry.userlocks = sk_fullsock(sk) ? sk->sk_userlocks : 0;
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900685 if (sk_fullsock(sk))
686 entry.mark = sk->sk_mark;
687 else if (sk->sk_state == TCP_NEW_SYN_RECV)
688 entry.mark = inet_rsk(inet_reqsk(sk))->ir_mark;
689 else
690 entry.mark = 0;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000691
692 return inet_diag_bc_run(bc, &entry);
693}
694EXPORT_SYMBOL_GPL(inet_diag_bc_sk);
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696static int valid_cc(const void *bc, int len, int cc)
697{
698 while (len >= 0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300699 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 if (cc > len)
702 return 0;
703 if (cc == len)
704 return 1;
Eric Dumazeteeb14972011-06-17 16:25:39 -0400705 if (op->yes < 4 || op->yes & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
707 len -= op->yes;
708 bc += op->yes;
709 }
710 return 0;
711}
712
David Ahern637c8412016-06-23 18:42:51 -0700713/* data is u32 ifindex */
714static bool valid_devcond(const struct inet_diag_bc_op *op, int len,
715 int *min_len)
716{
717 /* Check ifindex space. */
718 *min_len += sizeof(u32);
719 if (len < *min_len)
720 return false;
721
722 return true;
723}
Neal Cardwell405c0052012-12-08 19:43:22 +0000724/* Validate an inet_diag_hostcond. */
725static bool valid_hostcond(const struct inet_diag_bc_op *op, int len,
726 int *min_len)
727{
Neal Cardwell405c0052012-12-08 19:43:22 +0000728 struct inet_diag_hostcond *cond;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700729 int addr_len;
Neal Cardwell405c0052012-12-08 19:43:22 +0000730
731 /* Check hostcond space. */
732 *min_len += sizeof(struct inet_diag_hostcond);
733 if (len < *min_len)
734 return false;
735 cond = (struct inet_diag_hostcond *)(op + 1);
736
737 /* Check address family and address length. */
738 switch (cond->family) {
739 case AF_UNSPEC:
740 addr_len = 0;
741 break;
742 case AF_INET:
743 addr_len = sizeof(struct in_addr);
744 break;
745 case AF_INET6:
746 addr_len = sizeof(struct in6_addr);
747 break;
748 default:
749 return false;
750 }
751 *min_len += addr_len;
752 if (len < *min_len)
753 return false;
754
755 /* Check prefix length (in bits) vs address length (in bytes). */
756 if (cond->prefix_len > 8 * addr_len)
757 return false;
758
759 return true;
760}
761
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000762/* Validate a port comparison operator. */
Eric Dumazete31c5e02015-03-10 07:15:53 -0700763static bool valid_port_comparison(const struct inet_diag_bc_op *op,
764 int len, int *min_len)
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000765{
766 /* Port comparisons put the port in a follow-on inet_diag_bc_op. */
767 *min_len += sizeof(struct inet_diag_bc_op);
768 if (len < *min_len)
769 return false;
770 return true;
771}
772
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900773static bool valid_markcond(const struct inet_diag_bc_op *op, int len,
774 int *min_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900776 *min_len += sizeof(struct inet_diag_markcond);
777 return len >= *min_len;
778}
779
780static int inet_diag_bc_audit(const struct nlattr *attr,
781 const struct sk_buff *skb)
782{
783 bool net_admin = netlink_net_capable(skb, CAP_NET_ADMIN);
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +0900784 const void *bytecode, *bc;
785 int bytecode_len, len;
786
787 if (!attr || nla_len(attr) < sizeof(struct inet_diag_bc_op))
788 return -EINVAL;
789
790 bytecode = bc = nla_data(attr);
791 len = bytecode_len = nla_len(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 while (len > 0) {
Neal Cardwell405c0052012-12-08 19:43:22 +0000794 int min_len = sizeof(struct inet_diag_bc_op);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700795 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300798 case INET_DIAG_BC_S_COND:
799 case INET_DIAG_BC_D_COND:
Neal Cardwell405c0052012-12-08 19:43:22 +0000800 if (!valid_hostcond(bc, len, &min_len))
801 return -EINVAL;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000802 break;
David Ahern637c8412016-06-23 18:42:51 -0700803 case INET_DIAG_BC_DEV_COND:
804 if (!valid_devcond(bc, len, &min_len))
805 return -EINVAL;
806 break;
Kristian Evensenbbb61892017-12-27 18:27:58 +0100807 case INET_DIAG_BC_S_EQ:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300808 case INET_DIAG_BC_S_GE:
809 case INET_DIAG_BC_S_LE:
Kristian Evensenbbb61892017-12-27 18:27:58 +0100810 case INET_DIAG_BC_D_EQ:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300811 case INET_DIAG_BC_D_GE:
812 case INET_DIAG_BC_D_LE:
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000813 if (!valid_port_comparison(bc, len, &min_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return -EINVAL;
815 break;
Lorenzo Colittia52e95a2016-08-24 15:46:26 +0900816 case INET_DIAG_BC_MARK_COND:
817 if (!net_admin)
818 return -EPERM;
819 if (!valid_markcond(bc, len, &min_len))
820 return -EINVAL;
821 break;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000822 case INET_DIAG_BC_AUTO:
823 case INET_DIAG_BC_JMP:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300824 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 break;
826 default:
827 return -EINVAL;
828 }
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000829
830 if (op->code != INET_DIAG_BC_NOP) {
831 if (op->no < min_len || op->no > len + 4 || op->no & 3)
832 return -EINVAL;
833 if (op->no < len &&
834 !valid_cc(bytecode, bytecode_len, len - op->no))
835 return -EINVAL;
836 }
837
Neal Cardwell405c0052012-12-08 19:43:22 +0000838 if (op->yes < min_len || op->yes > len + 4 || op->yes & 3)
Eric Dumazeteeb14972011-06-17 16:25:39 -0400839 return -EINVAL;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800840 bc += op->yes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 len -= op->yes;
842 }
843 return len == 0 ? 0 : -EINVAL;
844}
845
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800846static int inet_csk_diag_dump(struct sock *sk,
847 struct sk_buff *skb,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000848 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700849 const struct inet_diag_req_v2 *r,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900850 const struct nlattr *bc,
851 bool net_admin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000853 if (!inet_diag_bc_sk(bc, sk))
854 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000856 return inet_csk_diag_fill(sk, skb, r,
Patrick McHardye32123e2013-04-17 06:46:57 +0000857 sk_user_ns(NETLINK_CB(cb->skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000858 NETLINK_CB(cb->skb).portid,
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900859 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh,
860 net_admin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Eric Dumazet49612722015-03-05 10:18:14 -0800863static void twsk_build_assert(void)
864{
865 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_family) !=
866 offsetof(struct sock, sk_family));
867
868 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_num) !=
869 offsetof(struct inet_sock, inet_num));
870
871 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_dport) !=
872 offsetof(struct inet_sock, inet_dport));
873
874 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_rcv_saddr) !=
875 offsetof(struct inet_sock, inet_rcv_saddr));
876
877 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_daddr) !=
878 offsetof(struct inet_sock, inet_daddr));
879
880#if IS_ENABLED(CONFIG_IPV6)
881 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_rcv_saddr) !=
882 offsetof(struct sock, sk_v6_rcv_saddr));
883
884 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_daddr) !=
885 offsetof(struct sock, sk_v6_daddr));
886#endif
887}
888
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000889void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700890 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700891 const struct inet_diag_req_v2 *r, struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900893 bool net_admin = netlink_net_capable(cb->skb, CAP_NET_ADMIN);
Eric Dumazet67db3e42016-11-04 11:54:32 -0700894 struct net *net = sock_net(skb->sk);
895 u32 idiag_states = r->idiag_states;
896 int i, num, s_i, s_num;
897 struct sock *sk;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800898
Eric Dumazet079096f2015-10-02 11:43:32 -0700899 if (idiag_states & TCPF_SYN_RECV)
900 idiag_states |= TCPF_NEW_SYN_RECV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 s_i = cb->args[1];
902 s_num = num = cb->args[2];
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (cb->args[0] == 0) {
Eric Dumazet9652dc22016-10-19 21:24:58 -0700905 if (!(idiag_states & TCPF_LISTEN) || r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 goto skip_listen_ht;
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300907
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700908 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800909 struct inet_listen_hashbucket *ilb;
Eric Dumazet8dbd76e2019-12-13 18:20:41 -0800910 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 num = 0;
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800913 ilb = &hashinfo->listening_hash[i];
Eric Dumazet9652dc22016-10-19 21:24:58 -0700914 spin_lock(&ilb->lock);
Eric Dumazet8dbd76e2019-12-13 18:20:41 -0800915 sk_nulls_for_each(sk, node, &ilb->nulls_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 struct inet_sock *inet = inet_sk(sk);
917
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000918 if (!net_eq(sock_net(sk), net))
919 continue;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (num < s_num) {
922 num++;
923 continue;
924 }
925
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000926 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazete31c5e02015-03-10 07:15:53 -0700927 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000928 goto next_listen;
929
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000930 if (r->id.idiag_sport != inet->inet_sport &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300931 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 goto next_listen;
933
Lorenzo Colittid545cac2016-09-08 00:42:25 +0900934 if (inet_csk_diag_dump(sk, skb, cb, r,
935 bc, net_admin) < 0) {
Eric Dumazet9652dc22016-10-19 21:24:58 -0700936 spin_unlock(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto done;
938 }
939
940next_listen:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 ++num;
942 }
Eric Dumazet9652dc22016-10-19 21:24:58 -0700943 spin_unlock(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 s_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947skip_listen_ht:
948 cb->args[0] = 1;
949 s_i = num = s_num = 0;
950 }
951
Eric Dumazet079096f2015-10-02 11:43:32 -0700952 if (!(idiag_states & ~TCPF_LISTEN))
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000953 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Eric Dumazet67db3e42016-11-04 11:54:32 -0700955#define SKARR_SZ 16
Eric Dumazetf373b532009-10-09 00:16:19 +0000956 for (i = s_i; i <= hashinfo->ehash_mask; i++) {
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300957 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
David S. Miller7e3aab42008-11-21 16:39:19 -0800958 spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800959 struct hlist_nulls_node *node;
Eric Dumazet67db3e42016-11-04 11:54:32 -0700960 struct sock *sk_arr[SKARR_SZ];
961 int num_arr[SKARR_SZ];
962 int idx, accum, res;
Andi Kleen6be547a2008-08-28 01:09:54 -0700963
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700964 if (hlist_nulls_empty(&head->chain))
Andi Kleen6be547a2008-08-28 01:09:54 -0700965 continue;
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (i > s_i)
968 s_num = 0;
969
Eric Dumazet67db3e42016-11-04 11:54:32 -0700970next_chunk:
971 num = 0;
972 accum = 0;
David S. Miller7e3aab42008-11-21 16:39:19 -0800973 spin_lock_bh(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800974 sk_nulls_for_each(sk, node, &head->chain) {
Eric Dumazet67db3e42016-11-04 11:54:32 -0700975 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000977 if (!net_eq(sock_net(sk), net))
978 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (num < s_num)
980 goto next_normal;
Neal Cardwell70315d22014-01-10 15:34:45 -0500981 state = (sk->sk_state == TCP_TIME_WAIT) ?
982 inet_twsk(sk)->tw_substate : sk->sk_state;
Eric Dumazet079096f2015-10-02 11:43:32 -0700983 if (!(idiag_states & (1 << state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 goto next_normal;
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000985 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700986 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000987 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700988 if (r->id.idiag_sport != htons(sk->sk_num) &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300989 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700991 if (r->id.idiag_dport != sk->sk_dport &&
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800992 r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 goto next_normal;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700994 twsk_build_assert();
995
996 if (!inet_diag_bc_sk(bc, sk))
997 goto next_normal;
998
Eric Dumazetf0c928d2018-12-20 15:28:56 -0800999 if (!refcount_inc_not_zero(&sk->sk_refcnt))
1000 goto next_normal;
1001
Eric Dumazet67db3e42016-11-04 11:54:32 -07001002 num_arr[accum] = num;
1003 sk_arr[accum] = sk;
1004 if (++accum == SKARR_SZ)
1005 break;
1006next_normal:
1007 ++num;
1008 }
1009 spin_unlock_bh(lock);
1010 res = 0;
1011 for (idx = 0; idx < accum; idx++) {
1012 if (res >= 0) {
1013 res = sk_diag_fill(sk_arr[idx], skb, r,
Eric Dumazeta58917f2015-03-15 21:12:14 -07001014 sk_user_ns(NETLINK_CB(cb->skb).sk),
1015 NETLINK_CB(cb->skb).portid,
1016 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Lorenzo Colittid545cac2016-09-08 00:42:25 +09001017 cb->nlh, net_admin);
Eric Dumazet67db3e42016-11-04 11:54:32 -07001018 if (res < 0)
1019 num = num_arr[idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
Eric Dumazet67db3e42016-11-04 11:54:32 -07001021 sock_gen_put(sk_arr[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
Eric Dumazet67db3e42016-11-04 11:54:32 -07001023 if (res < 0)
1024 break;
Eric Dumazetacffb582016-03-14 15:40:00 -07001025 cond_resched();
Eric Dumazet67db3e42016-11-04 11:54:32 -07001026 if (accum == SKARR_SZ) {
1027 s_num = num + 1;
1028 goto next_chunk;
1029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
1032done:
1033 cb->args[1] = i;
1034 cb->args[2] = num;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001035out:
1036 ;
1037}
Pavel Emelyanov1942c512011-12-09 06:23:18 +00001038EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001039
1040static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -07001041 const struct inet_diag_req_v2 *r,
Eric Dumazete31c5e02015-03-10 07:15:53 -07001042 struct nlattr *bc)
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001043{
1044 const struct inet_diag_handler *handler;
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +00001045 int err = 0;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001046
1047 handler = inet_diag_lock_handler(r->sdiag_protocol);
1048 if (!IS_ERR(handler))
Pavel Emelyanov1942c512011-12-09 06:23:18 +00001049 handler->dump(skb, cb, r, bc);
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +00001050 else
1051 err = PTR_ERR(handler);
Herbert Xud523a322007-12-03 15:51:25 +11001052 inet_diag_unlock_handler(handler);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +00001053
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +00001054 return err ? : skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001057static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
1058{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001059 int hdrlen = sizeof(struct inet_diag_req_v2);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001060 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001061
1062 if (nlmsg_attrlen(cb->nlh, hdrlen))
1063 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1064
David S. Millerd1063522012-06-26 21:28:54 -07001065 return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001066}
1067
Eric Dumazete31c5e02015-03-10 07:15:53 -07001068static int inet_diag_type2proto(int type)
Pavel Emelyanova029fe22011-12-06 07:59:32 +00001069{
1070 switch (type) {
1071 case TCPDIAG_GETSOCK:
1072 return IPPROTO_TCP;
1073 case DCCPDIAG_GETSOCK:
1074 return IPPROTO_DCCP;
1075 default:
1076 return 0;
1077 }
1078}
1079
Eric Dumazete31c5e02015-03-10 07:15:53 -07001080static int inet_diag_dump_compat(struct sk_buff *skb,
1081 struct netlink_callback *cb)
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001082{
David S. Millerd1063522012-06-26 21:28:54 -07001083 struct inet_diag_req *rc = nlmsg_data(cb->nlh);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001084 int hdrlen = sizeof(struct inet_diag_req);
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001085 struct inet_diag_req_v2 req;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001086 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001087
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +00001088 req.sdiag_family = AF_UNSPEC; /* compatibility */
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001089 req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
1090 req.idiag_ext = rc->idiag_ext;
1091 req.idiag_states = rc->idiag_states;
1092 req.id = rc->id;
1093
1094 if (nlmsg_attrlen(cb->nlh, hdrlen))
1095 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1096
1097 return __inet_diag_dump(skb, cb, &req, bc);
1098}
1099
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001100static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -07001101 const struct nlmsghdr *nlh)
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001102{
David S. Millerd1063522012-06-26 21:28:54 -07001103 struct inet_diag_req *rc = nlmsg_data(nlh);
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001104 struct inet_diag_req_v2 req;
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001105
1106 req.sdiag_family = rc->idiag_family;
1107 req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
1108 req.idiag_ext = rc->idiag_ext;
1109 req.idiag_states = rc->idiag_states;
1110 req.id = rc->id;
1111
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001112 return inet_diag_cmd_exact(SOCK_DIAG_BY_FAMILY, in_skb, nlh, &req);
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001113}
1114
Pavel Emelyanov8d341722011-12-06 07:57:06 +00001115static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Pavel Emelyanov3b09c842012-01-10 22:37:26 +00001117 int hdrlen = sizeof(struct inet_diag_req);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001118 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Thomas Grafead592b2007-03-22 23:30:35 -07001120 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
1121 nlmsg_len(nlh) < hdrlen)
1122 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
David S. Millerb8f3ab42011-01-18 12:40:38 -08001124 if (nlh->nlmsg_flags & NLM_F_DUMP) {
Thomas Grafead592b2007-03-22 23:30:35 -07001125 if (nlmsg_attrlen(nlh, hdrlen)) {
1126 struct nlattr *attr;
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001127 int err;
Thomas Grafead592b2007-03-22 23:30:35 -07001128
1129 attr = nlmsg_find_attr(nlh, hdrlen,
1130 INET_DIAG_REQ_BYTECODE);
Lorenzo Colittia52e95a2016-08-24 15:46:26 +09001131 err = inet_diag_bc_audit(attr, skb);
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001132 if (err)
1133 return err;
Thomas Grafead592b2007-03-22 23:30:35 -07001134 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001135 {
1136 struct netlink_dump_control c = {
1137 .dump = inet_diag_dump_compat,
1138 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001139 return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
Thomas Grafead592b2007-03-22 23:30:35 -07001142
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001143 return inet_diag_get_exact_compat(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001146static int inet_diag_handler_cmd(struct sk_buff *skb, struct nlmsghdr *h)
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001147{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001148 int hdrlen = sizeof(struct inet_diag_req_v2);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001149 struct net *net = sock_net(skb->sk);
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001150
1151 if (nlmsg_len(h) < hdrlen)
1152 return -EINVAL;
1153
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001154 if (h->nlmsg_type == SOCK_DIAG_BY_FAMILY &&
1155 h->nlmsg_flags & NLM_F_DUMP) {
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001156 if (nlmsg_attrlen(h, hdrlen)) {
1157 struct nlattr *attr;
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001158 int err;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001159
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001160 attr = nlmsg_find_attr(h, hdrlen,
1161 INET_DIAG_REQ_BYTECODE);
Lorenzo Colittia52e95a2016-08-24 15:46:26 +09001162 err = inet_diag_bc_audit(attr, skb);
Lorenzo Colitti627cc4a2016-08-24 15:46:25 +09001163 if (err)
1164 return err;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001165 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001166 {
1167 struct netlink_dump_control c = {
1168 .dump = inet_diag_dump,
1169 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001170 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001171 }
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001172 }
1173
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001174 return inet_diag_cmd_exact(h->nlmsg_type, skb, h, nlmsg_data(h));
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001175}
1176
Craig Gallek35ac8382015-06-15 11:26:20 -04001177static
1178int inet_diag_handler_get_info(struct sk_buff *skb, struct sock *sk)
1179{
1180 const struct inet_diag_handler *handler;
1181 struct nlmsghdr *nlh;
1182 struct nlattr *attr;
1183 struct inet_diag_msg *r;
1184 void *info = NULL;
1185 int err = 0;
1186
1187 nlh = nlmsg_put(skb, 0, 0, SOCK_DIAG_BY_FAMILY, sizeof(*r), 0);
1188 if (!nlh)
1189 return -ENOMEM;
1190
1191 r = nlmsg_data(nlh);
1192 memset(r, 0, sizeof(*r));
1193 inet_diag_msg_common_fill(r, sk);
Craig Galleke0df02e2015-06-17 10:59:10 -04001194 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_STREAM)
1195 r->id.idiag_sport = inet_sk(sk)->inet_sport;
Craig Gallek35ac8382015-06-15 11:26:20 -04001196 r->idiag_state = sk->sk_state;
1197
1198 if ((err = nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))) {
1199 nlmsg_cancel(skb, nlh);
1200 return err;
1201 }
1202
1203 handler = inet_diag_lock_handler(sk->sk_protocol);
1204 if (IS_ERR(handler)) {
1205 inet_diag_unlock_handler(handler);
1206 nlmsg_cancel(skb, nlh);
1207 return PTR_ERR(handler);
1208 }
1209
1210 attr = handler->idiag_info_size
Nicolas Dichtel6ed46d12016-04-26 10:06:14 +02001211 ? nla_reserve_64bit(skb, INET_DIAG_INFO,
1212 handler->idiag_info_size,
1213 INET_DIAG_PAD)
Craig Gallek35ac8382015-06-15 11:26:20 -04001214 : NULL;
1215 if (attr)
1216 info = nla_data(attr);
1217
1218 handler->idiag_get_info(sk, r, info);
1219 inet_diag_unlock_handler(handler);
1220
1221 nlmsg_end(skb, nlh);
1222 return 0;
1223}
1224
Shan Wei8dcf01f2012-04-24 18:21:07 +00001225static const struct sock_diag_handler inet_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001226 .family = AF_INET,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001227 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001228 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001229 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001230};
1231
Shan Wei8dcf01f2012-04-24 18:21:07 +00001232static const struct sock_diag_handler inet6_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001233 .family = AF_INET6,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001234 .dump = inet_diag_handler_cmd,
Craig Gallek35ac8382015-06-15 11:26:20 -04001235 .get_info = inet_diag_handler_get_info,
Lorenzo Colitti6eb5d2e2015-12-16 12:30:04 +09001236 .destroy = inet_diag_handler_cmd,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001237};
1238
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001239int inet_diag_register(const struct inet_diag_handler *h)
1240{
1241 const __u16 type = h->idiag_type;
1242 int err = -EINVAL;
1243
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001244 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001245 goto out;
1246
Herbert Xud523a322007-12-03 15:51:25 +11001247 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001248 err = -EEXIST;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001249 if (!inet_diag_table[type]) {
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001250 inet_diag_table[type] = h;
1251 err = 0;
1252 }
Herbert Xud523a322007-12-03 15:51:25 +11001253 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001254out:
1255 return err;
1256}
1257EXPORT_SYMBOL_GPL(inet_diag_register);
1258
1259void inet_diag_unregister(const struct inet_diag_handler *h)
1260{
1261 const __u16 type = h->idiag_type;
1262
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001263 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001264 return;
1265
Herbert Xud523a322007-12-03 15:51:25 +11001266 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001267 inet_diag_table[type] = NULL;
Herbert Xud523a322007-12-03 15:51:25 +11001268 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001269}
1270EXPORT_SYMBOL_GPL(inet_diag_unregister);
1271
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001272static int __init inet_diag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001274 const int inet_diag_table_size = (IPPROTO_MAX *
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001275 sizeof(struct inet_diag_handler *));
1276 int err = -ENOMEM;
1277
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001278 inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001279 if (!inet_diag_table)
1280 goto out;
1281
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001282 err = sock_diag_register(&inet_diag_handler);
1283 if (err)
1284 goto out_free_nl;
1285
1286 err = sock_diag_register(&inet6_diag_handler);
1287 if (err)
1288 goto out_free_inet;
1289
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001290 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001291out:
1292 return err;
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001293
1294out_free_inet:
1295 sock_diag_unregister(&inet_diag_handler);
1296out_free_nl:
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001297 kfree(inet_diag_table);
1298 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001301static void __exit inet_diag_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001303 sock_diag_unregister(&inet6_diag_handler);
1304 sock_diag_unregister(&inet_diag_handler);
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001305 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001306 kfree(inet_diag_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001309module_init(inet_diag_init);
1310module_exit(inet_diag_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311MODULE_LICENSE("GPL");
Pavel Emelyanovaec8dc622011-12-15 02:43:27 +00001312MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
1313MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);