blob: c3b1f3a0f4cf63df6c7e862f96e44c8653d3a476 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03002 * inet_diag.c Module for monitoring INET transport protocols sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Ilpo Järvinen172589c2007-08-28 15:50:33 -070012#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/types.h>
15#include <linux/fcntl.h>
16#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/cache.h>
19#include <linux/init.h>
20#include <linux/time.h>
21
22#include <net/icmp.h>
23#include <net/tcp.h>
24#include <net/ipv6.h>
25#include <net/inet_common.h>
Arnaldo Carvalho de Melo505cbfc2005-08-12 09:19:38 -030026#include <net/inet_connection_sock.h>
27#include <net/inet_hashtables.h>
28#include <net/inet_timewait_sock.h>
29#include <net/inet6_hashtables.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070030#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <linux/inet.h>
33#include <linux/stddef.h>
34
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -030035#include <linux/inet_diag.h>
Pavel Emelyanovd3664772011-12-06 07:58:03 +000036#include <linux/sock_diag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -030038static const struct inet_diag_handler **inet_diag_table;
39
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -030040struct inet_diag_entry {
Eric Dumazete31c5e02015-03-10 07:15:53 -070041 const __be32 *saddr;
42 const __be32 *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 u16 sport;
44 u16 dport;
45 u16 family;
46 u16 userlocks;
47};
48
Herbert Xud523a322007-12-03 15:51:25 +110049static DEFINE_MUTEX(inet_diag_table_mutex);
50
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000051static const struct inet_diag_handler *inet_diag_lock_handler(int proto)
Herbert Xud523a322007-12-03 15:51:25 +110052{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000053 if (!inet_diag_table[proto])
Pavel Emelyanovaec8dc62011-12-15 02:43:27 +000054 request_module("net-pf-%d-proto-%d-type-%d-%d", PF_NETLINK,
55 NETLINK_SOCK_DIAG, AF_INET, proto);
Herbert Xud523a322007-12-03 15:51:25 +110056
57 mutex_lock(&inet_diag_table_mutex);
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000058 if (!inet_diag_table[proto])
Herbert Xud523a322007-12-03 15:51:25 +110059 return ERR_PTR(-ENOENT);
60
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +000061 return inet_diag_table[proto];
Herbert Xud523a322007-12-03 15:51:25 +110062}
63
Eric Dumazete31c5e02015-03-10 07:15:53 -070064static void inet_diag_unlock_handler(const struct inet_diag_handler *handler)
Herbert Xud523a322007-12-03 15:51:25 +110065{
66 mutex_unlock(&inet_diag_table_mutex);
67}
68
Eric Dumazeta4458342015-03-13 15:51:12 -070069static void inet_diag_msg_common_fill(struct inet_diag_msg *r, struct sock *sk)
70{
71 r->idiag_family = sk->sk_family;
72
73 r->id.idiag_sport = htons(sk->sk_num);
74 r->id.idiag_dport = sk->sk_dport;
75 r->id.idiag_if = sk->sk_bound_dev_if;
76 sock_diag_save_cookie(sk, r->id.idiag_cookie);
77
78#if IS_ENABLED(CONFIG_IPV6)
79 if (sk->sk_family == AF_INET6) {
80 *(struct in6_addr *)r->id.idiag_src = sk->sk_v6_rcv_saddr;
81 *(struct in6_addr *)r->id.idiag_dst = sk->sk_v6_daddr;
82 } else
83#endif
84 {
85 memset(&r->id.idiag_src, 0, sizeof(r->id.idiag_src));
86 memset(&r->id.idiag_dst, 0, sizeof(r->id.idiag_dst));
87
88 r->id.idiag_src[0] = sk->sk_rcv_saddr;
89 r->id.idiag_dst[0] = sk->sk_daddr;
90 }
91}
92
Eric Dumazetc8e2c802015-03-13 09:49:59 -070093static size_t inet_sk_attr_size(void)
94{
95 return nla_total_size(sizeof(struct tcp_info))
96 + nla_total_size(1) /* INET_DIAG_SHUTDOWN */
97 + nla_total_size(1) /* INET_DIAG_TOS */
98 + nla_total_size(1) /* INET_DIAG_TCLASS */
99 + nla_total_size(sizeof(struct inet_diag_meminfo))
100 + nla_total_size(sizeof(struct inet_diag_msg))
101 + nla_total_size(SK_MEMINFO_VARS * sizeof(u32))
102 + nla_total_size(TCP_CA_NAME_MAX)
103 + nla_total_size(sizeof(struct tcpvegas_info))
104 + 64;
105}
106
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000107int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700108 struct sk_buff *skb, const struct inet_diag_req_v2 *req,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700109 struct user_namespace *user_ns,
110 u32 portid, u32 seq, u16 nlmsg_flags,
111 const struct nlmsghdr *unlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700113 const struct inet_sock *inet = inet_sk(sk);
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700114 const struct tcp_congestion_ops *ca_ops;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700115 const struct inet_diag_handler *handler;
116 int ext = req->idiag_ext;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300117 struct inet_diag_msg *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct nlmsghdr *nlh;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000119 struct nlattr *attr;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300120 void *info = NULL;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300121
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000122 handler = inet_diag_table[req->sdiag_protocol];
Eric Dumazete31c5e02015-03-10 07:15:53 -0700123 BUG_ON(!handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Eric W. Biederman15e47302012-09-07 20:12:54 +0000125 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000126 nlmsg_flags);
127 if (!nlh)
David S. Millerd1063522012-06-26 21:28:54 -0700128 return -EMSGSIZE;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300129
David S. Millerd1063522012-06-26 21:28:54 -0700130 r = nlmsg_data(nlh);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700131 BUG_ON(!sk_fullsock(sk));
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800132
Eric Dumazeta4458342015-03-13 15:51:12 -0700133 inet_diag_msg_common_fill(r, sk);
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300134 r->idiag_state = sk->sk_state;
135 r->idiag_timer = 0;
136 r->idiag_retrans = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Pavel Emelyanove4e541a2012-10-23 22:29:56 +0400138 if (nla_put_u8(skb, INET_DIAG_SHUTDOWN, sk->sk_shutdown))
139 goto errout;
140
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500141 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
142 * hence this needs to be included regardless of socket family.
143 */
144 if (ext & (1 << (INET_DIAG_TOS - 1)))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000145 if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
146 goto errout;
Maciej Żenczykowski717b6d82011-11-22 16:03:10 -0500147
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000148#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300149 if (r->idiag_family == AF_INET6) {
Maciej Żenczykowski06236ac2011-11-07 14:23:11 +0000150 if (ext & (1 << (INET_DIAG_TCLASS - 1)))
Eric Dumazetefe42082013-10-03 15:42:29 -0700151 if (nla_put_u8(skb, INET_DIAG_TCLASS,
152 inet6_sk(sk)->tclass) < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000153 goto errout;
Phil Sutter20462152015-06-24 11:02:51 +0200154
Phil Sutter8220ea22015-07-10 11:39:57 +0200155 if (((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
156 nla_put_u8(skb, INET_DIAG_SKV6ONLY, ipv6_only_sock(sk)))
Phil Sutter20462152015-06-24 11:02:51 +0200157 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159#endif
160
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600161 r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000162 r->idiag_inode = sock_i_ino(sk);
163
Thomas Graf6e277ed2012-06-26 23:36:12 +0000164 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
165 struct inet_diag_meminfo minfo = {
166 .idiag_rmem = sk_rmem_alloc_get(sk),
167 .idiag_wmem = sk->sk_wmem_queued,
168 .idiag_fmem = sk->sk_forward_alloc,
169 .idiag_tmem = sk_wmem_alloc_get(sk),
170 };
171
172 if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
173 goto errout;
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000174 }
175
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000176 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
177 if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
Thomas Graf6e277ed2012-06-26 23:36:12 +0000178 goto errout;
Pavel Emelyanovc0636fa2011-12-30 00:53:32 +0000179
Eric Dumazete31c5e02015-03-10 07:15:53 -0700180 if (!icsk) {
Shan Wei62ad6fc2012-04-24 18:15:41 +0000181 handler->idiag_get_info(sk, r, NULL);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000182 goto out;
183 }
184
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700185#define EXPIRES_IN_MS(tmo) DIV_ROUND_UP((tmo - jiffies) * 1000, HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000187 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
188 icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS ||
189 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300190 r->idiag_timer = 1;
191 r->idiag_retrans = icsk->icsk_retransmits;
192 r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700193 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300194 r->idiag_timer = 4;
195 r->idiag_retrans = icsk->icsk_probes_out;
196 r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 } else if (timer_pending(&sk->sk_timer)) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300198 r->idiag_timer = 2;
199 r->idiag_retrans = icsk->icsk_probes_out;
200 r->idiag_expires = EXPIRES_IN_MS(sk->sk_timer.expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 } else {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300202 r->idiag_timer = 0;
203 r->idiag_expires = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205#undef EXPIRES_IN_MS
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300206
Craig Gallek3fd22af2015-06-15 11:26:19 -0400207 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) {
Thomas Graf6e277ed2012-06-26 23:36:12 +0000208 attr = nla_reserve(skb, INET_DIAG_INFO,
Craig Gallek3fd22af2015-06-15 11:26:19 -0400209 handler->idiag_info_size);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000210 if (!attr)
211 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Thomas Graf6e277ed2012-06-26 23:36:12 +0000213 info = nla_data(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700216 if (ext & (1 << (INET_DIAG_CONG - 1))) {
217 int err = 0;
218
219 rcu_read_lock();
220 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
221 if (ca_ops)
222 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name);
223 rcu_read_unlock();
224 if (err < 0)
Thomas Graf6e277ed2012-06-26 23:36:12 +0000225 goto errout;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700226 }
Thomas Graf6e277ed2012-06-26 23:36:12 +0000227
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300228 handler->idiag_get_info(sk, r, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700230 if (sk->sk_state < TCP_TIME_WAIT) {
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700231 union tcp_cc_info info;
232 size_t sz = 0;
233 int attr;
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700234
235 rcu_read_lock();
236 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
237 if (ca_ops && ca_ops->get_info)
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700238 sz = ca_ops->get_info(sk, ext, &attr, &info);
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700239 rcu_read_unlock();
Eric Dumazet64f40ff2015-04-28 16:23:48 -0700240 if (sz && nla_put(skb, attr, sz, &info) < 0)
Eric Dumazet521f1cf2015-04-16 18:10:35 -0700241 goto errout;
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000244out:
Johannes Berg053c0952015-01-16 22:09:00 +0100245 nlmsg_end(skb, nlh);
246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Thomas Graf6e277ed2012-06-26 23:36:12 +0000248errout:
249 nlmsg_cancel(skb, nlh);
Patrick McHardy26932562007-01-31 23:16:40 -0800250 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000252EXPORT_SYMBOL_GPL(inet_sk_diag_fill);
253
254static int inet_csk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700255 struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700256 const struct inet_diag_req_v2 *req,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600257 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000258 u32 portid, u32 seq, u16 nlmsg_flags,
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000259 const struct nlmsghdr *unlh)
260{
Eric Dumazete31c5e02015-03-10 07:15:53 -0700261 return inet_sk_diag_fill(sk, inet_csk(sk), skb, req,
262 user_ns, portid, seq, nlmsg_flags, unlh);
Pavel Emelyanov3c4d05c2011-12-09 06:23:00 +0000263}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700265static int inet_twsk_diag_fill(struct sock *sk,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700266 struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000267 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800268 const struct nlmsghdr *unlh)
269{
Eric Dumazet33cf7c92015-03-11 18:53:14 -0700270 struct inet_timewait_sock *tw = inet_twsk(sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800271 struct inet_diag_msg *r;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000272 struct nlmsghdr *nlh;
Eric Dumazet789f5582015-04-12 18:51:09 -0700273 long tmo;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800274
Eric W. Biederman15e47302012-09-07 20:12:54 +0000275 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
Thomas Graf6e277ed2012-06-26 23:36:12 +0000276 nlmsg_flags);
277 if (!nlh)
David S. Millerd1063522012-06-26 21:28:54 -0700278 return -EMSGSIZE;
David S. Millerd1063522012-06-26 21:28:54 -0700279
280 r = nlmsg_data(nlh);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800281 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
282
Eric Dumazet789f5582015-04-12 18:51:09 -0700283 tmo = tw->tw_timer.expires - jiffies;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800284 if (tmo < 0)
285 tmo = 0;
286
Eric Dumazeta4458342015-03-13 15:51:12 -0700287 inet_diag_msg_common_fill(r, sk);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800288 r->idiag_retrans = 0;
Daniel Borkmannb1aac812013-12-17 00:38:39 +0100289
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800290 r->idiag_state = tw->tw_substate;
291 r->idiag_timer = 3;
Eric Dumazet96f817f2013-10-03 14:27:25 -0700292 r->idiag_expires = jiffies_to_msecs(tmo);
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800293 r->idiag_rqueue = 0;
294 r->idiag_wqueue = 0;
295 r->idiag_uid = 0;
296 r->idiag_inode = 0;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000297
Johannes Berg053c0952015-01-16 22:09:00 +0100298 nlmsg_end(skb, nlh);
299 return 0;
Arnaldo Carvalho de Meloc7d58aa2006-01-09 14:56:38 -0800300}
301
Eric Dumazeta58917f2015-03-15 21:12:14 -0700302static int inet_req_diag_fill(struct sock *sk, struct sk_buff *skb,
303 u32 portid, u32 seq, u16 nlmsg_flags,
304 const struct nlmsghdr *unlh)
305{
306 struct inet_diag_msg *r;
307 struct nlmsghdr *nlh;
308 long tmo;
309
310 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
311 nlmsg_flags);
312 if (!nlh)
313 return -EMSGSIZE;
314
315 r = nlmsg_data(nlh);
316 inet_diag_msg_common_fill(r, sk);
317 r->idiag_state = TCP_SYN_RECV;
318 r->idiag_timer = 1;
319 r->idiag_retrans = inet_reqsk(sk)->num_retrans;
320
321 BUILD_BUG_ON(offsetof(struct inet_request_sock, ir_cookie) !=
322 offsetof(struct sock, sk_cookie));
323
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700324 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700325 r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0;
326 r->idiag_rqueue = 0;
327 r->idiag_wqueue = 0;
328 r->idiag_uid = 0;
329 r->idiag_inode = 0;
330
331 nlmsg_end(skb, nlh);
332 return 0;
333}
334
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800335static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700336 const struct inet_diag_req_v2 *r,
Eric W. Biedermand06ca952012-05-24 17:58:08 -0600337 struct user_namespace *user_ns,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000338 u32 portid, u32 seq, u16 nlmsg_flags,
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800339 const struct nlmsghdr *unlh)
340{
341 if (sk->sk_state == TCP_TIME_WAIT)
Eric Dumazeta58917f2015-03-15 21:12:14 -0700342 return inet_twsk_diag_fill(sk, skb, portid, seq,
Eric Dumazetefe42082013-10-03 15:42:29 -0700343 nlmsg_flags, unlh);
344
Eric Dumazeta58917f2015-03-15 21:12:14 -0700345 if (sk->sk_state == TCP_NEW_SYN_RECV)
346 return inet_req_diag_fill(sk, skb, portid, seq,
347 nlmsg_flags, unlh);
348
Eric Dumazetefe42082013-10-03 15:42:29 -0700349 return inet_csk_diag_fill(sk, skb, r, user_ns, portid, seq,
350 nlmsg_flags, unlh);
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800351}
352
Eric Dumazete31c5e02015-03-10 07:15:53 -0700353int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
354 struct sk_buff *in_skb,
355 const struct nlmsghdr *nlh,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700356 const struct inet_diag_req_v2 *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000358 struct net *net = sock_net(in_skb->sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700359 struct sk_buff *rep;
360 struct sock *sk;
361 int err;
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300362
Herbert Xud523a322007-12-03 15:51:25 +1100363 err = -EINVAL;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700364 if (req->sdiag_family == AF_INET)
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000365 sk = inet_lookup(net, hashinfo, req->id.idiag_dst[0],
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300366 req->id.idiag_dport, req->id.idiag_src[0],
367 req->id.idiag_sport, req->id.idiag_if);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000368#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazete31c5e02015-03-10 07:15:53 -0700369 else if (req->sdiag_family == AF_INET6)
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000370 sk = inet6_lookup(net, hashinfo,
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300371 (struct in6_addr *)req->id.idiag_dst,
372 req->id.idiag_dport,
373 (struct in6_addr *)req->id.idiag_src,
374 req->id.idiag_sport,
375 req->id.idiag_if);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#endif
Eric Dumazete31c5e02015-03-10 07:15:53 -0700377 else
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000378 goto out_nosk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Herbert Xud523a322007-12-03 15:51:25 +1100380 err = -ENOENT;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700381 if (!sk)
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000382 goto out_nosk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Pavel Emelyanovf65c1b52011-12-15 02:43:44 +0000384 err = sock_diag_check_cookie(sk, req->id.idiag_cookie);
Pavel Emelyanovb005ab42011-12-09 06:21:53 +0000385 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto out;
387
Eric Dumazetc8e2c802015-03-13 09:49:59 -0700388 rep = nlmsg_new(inet_sk_attr_size(), GFP_KERNEL);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000389 if (!rep) {
390 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 goto out;
Thomas Graf6e277ed2012-06-26 23:36:12 +0000392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000394 err = sk_diag_fill(sk, rep, req,
Patrick McHardye32123e2013-04-17 06:46:57 +0000395 sk_user_ns(NETLINK_CB(in_skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000396 NETLINK_CB(in_skb).portid,
Patrick McHardy26932562007-01-31 23:16:40 -0800397 nlh->nlmsg_seq, 0, nlh);
398 if (err < 0) {
399 WARN_ON(err == -EMSGSIZE);
Thomas Graf6e277ed2012-06-26 23:36:12 +0000400 nlmsg_free(rep);
Patrick McHardy26932562007-01-31 23:16:40 -0800401 goto out;
402 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000403 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300404 MSG_DONTWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (err > 0)
406 err = 0;
407
408out:
Eric Dumazetc1d607c2013-10-11 08:54:49 -0700409 if (sk)
410 sock_gen_put(sk);
411
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000412out_nosk:
413 return err;
414}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000415EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000416
417static int inet_diag_get_exact(struct sk_buff *in_skb,
418 const struct nlmsghdr *nlh,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700419 const struct inet_diag_req_v2 *req)
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000420{
421 const struct inet_diag_handler *handler;
422 int err;
423
424 handler = inet_diag_lock_handler(req->sdiag_protocol);
425 if (IS_ERR(handler))
426 err = PTR_ERR(handler);
427 else
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000428 err = handler->dump_one(in_skb, nlh, req);
Herbert Xud523a322007-12-03 15:51:25 +1100429 inet_diag_unlock_handler(handler);
Pavel Emelyanov476f7db2011-12-09 06:22:10 +0000430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return err;
432}
433
Al Viro9f855292006-09-27 18:44:30 -0700434static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 int words = bits >> 5;
437
438 bits &= 0x1f;
439
440 if (words) {
441 if (memcmp(a1, a2, words << 2))
442 return 0;
443 }
444 if (bits) {
Al Viro9f855292006-09-27 18:44:30 -0700445 __be32 w1, w2;
446 __be32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 w1 = a1[words];
449 w2 = a2[words];
450
451 mask = htonl((0xffffffff) << (32 - bits));
452
453 if ((w1 ^ w2) & mask)
454 return 0;
455 }
456
457 return 1;
458}
459
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000460static int inet_diag_bc_run(const struct nlattr *_bc,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700461 const struct inet_diag_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000463 const void *bc = nla_data(_bc);
464 int len = nla_len(_bc);
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 while (len > 0) {
467 int yes = 1;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300468 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300471 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300473 case INET_DIAG_BC_JMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 yes = 0;
475 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300476 case INET_DIAG_BC_S_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 yes = entry->sport >= op[1].no;
478 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300479 case INET_DIAG_BC_S_LE:
Roel Kluinb4ced2b2010-01-19 14:12:20 -0800480 yes = entry->sport <= op[1].no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300482 case INET_DIAG_BC_D_GE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 yes = entry->dport >= op[1].no;
484 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300485 case INET_DIAG_BC_D_LE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 yes = entry->dport <= op[1].no;
487 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300488 case INET_DIAG_BC_AUTO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
490 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300491 case INET_DIAG_BC_S_COND:
Arnaldo Carvalho de Meloa8c21902005-08-12 12:56:38 -0300492 case INET_DIAG_BC_D_COND: {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700493 const struct inet_diag_hostcond *cond;
494 const __be32 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Eric Dumazete31c5e02015-03-10 07:15:53 -0700496 cond = (const struct inet_diag_hostcond *)(op + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (cond->port != -1 &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300498 cond->port != (op->code == INET_DIAG_BC_S_COND ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 entry->sport : entry->dport)) {
500 yes = 0;
501 break;
502 }
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800503
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300504 if (op->code == INET_DIAG_BC_S_COND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 addr = entry->saddr;
506 else
507 addr = entry->daddr;
508
Neal Cardwellf67caec2012-12-08 19:43:23 +0000509 if (cond->family != AF_UNSPEC &&
510 cond->family != entry->family) {
511 if (entry->family == AF_INET6 &&
512 cond->family == AF_INET) {
513 if (addr[0] == 0 && addr[1] == 0 &&
514 addr[2] == htonl(0xffff) &&
515 bitstring_match(addr + 3,
516 cond->addr,
517 cond->prefix_len))
518 break;
519 }
520 yes = 0;
521 break;
522 }
523
524 if (cond->prefix_len == 0)
525 break;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800526 if (bitstring_match(addr, cond->addr,
527 cond->prefix_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 yes = 0;
530 break;
531 }
532 }
533
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800534 if (yes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 len -= op->yes;
536 bc += op->yes;
537 } else {
538 len -= op->no;
539 bc += op->no;
540 }
541 }
Eric Dumazeta02cec22010-09-22 20:43:57 +0000542 return len == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Eric Dumazeta4458342015-03-13 15:51:12 -0700545/* This helper is available for all sockets (ESTABLISH, TIMEWAIT, SYN_RECV)
546 */
547static void entry_fill_addrs(struct inet_diag_entry *entry,
548 const struct sock *sk)
549{
550#if IS_ENABLED(CONFIG_IPV6)
551 if (sk->sk_family == AF_INET6) {
552 entry->saddr = sk->sk_v6_rcv_saddr.s6_addr32;
553 entry->daddr = sk->sk_v6_daddr.s6_addr32;
554 } else
555#endif
556 {
557 entry->saddr = &sk->sk_rcv_saddr;
558 entry->daddr = &sk->sk_daddr;
559 }
560}
561
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000562int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
563{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000564 struct inet_sock *inet = inet_sk(sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700565 struct inet_diag_entry entry;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000566
Eric Dumazete31c5e02015-03-10 07:15:53 -0700567 if (!bc)
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000568 return 1;
569
570 entry.family = sk->sk_family;
Eric Dumazeta4458342015-03-13 15:51:12 -0700571 entry_fill_addrs(&entry, sk);
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000572 entry.sport = inet->inet_num;
573 entry.dport = ntohs(inet->inet_dport);
Eric Dumazeta58917f2015-03-15 21:12:14 -0700574 entry.userlocks = sk_fullsock(sk) ? sk->sk_userlocks : 0;
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000575
576 return inet_diag_bc_run(bc, &entry);
577}
578EXPORT_SYMBOL_GPL(inet_diag_bc_sk);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static int valid_cc(const void *bc, int len, int cc)
581{
582 while (len >= 0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300583 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 if (cc > len)
586 return 0;
587 if (cc == len)
588 return 1;
Eric Dumazeteeb14972011-06-17 16:25:39 -0400589 if (op->yes < 4 || op->yes & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return 0;
591 len -= op->yes;
592 bc += op->yes;
593 }
594 return 0;
595}
596
Neal Cardwell405c0052012-12-08 19:43:22 +0000597/* Validate an inet_diag_hostcond. */
598static bool valid_hostcond(const struct inet_diag_bc_op *op, int len,
599 int *min_len)
600{
Neal Cardwell405c0052012-12-08 19:43:22 +0000601 struct inet_diag_hostcond *cond;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700602 int addr_len;
Neal Cardwell405c0052012-12-08 19:43:22 +0000603
604 /* Check hostcond space. */
605 *min_len += sizeof(struct inet_diag_hostcond);
606 if (len < *min_len)
607 return false;
608 cond = (struct inet_diag_hostcond *)(op + 1);
609
610 /* Check address family and address length. */
611 switch (cond->family) {
612 case AF_UNSPEC:
613 addr_len = 0;
614 break;
615 case AF_INET:
616 addr_len = sizeof(struct in_addr);
617 break;
618 case AF_INET6:
619 addr_len = sizeof(struct in6_addr);
620 break;
621 default:
622 return false;
623 }
624 *min_len += addr_len;
625 if (len < *min_len)
626 return false;
627
628 /* Check prefix length (in bits) vs address length (in bytes). */
629 if (cond->prefix_len > 8 * addr_len)
630 return false;
631
632 return true;
633}
634
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000635/* Validate a port comparison operator. */
Eric Dumazete31c5e02015-03-10 07:15:53 -0700636static bool valid_port_comparison(const struct inet_diag_bc_op *op,
637 int len, int *min_len)
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000638{
639 /* Port comparisons put the port in a follow-on inet_diag_bc_op. */
640 *min_len += sizeof(struct inet_diag_bc_op);
641 if (len < *min_len)
642 return false;
643 return true;
644}
645
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300646static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Eric Dumazeteeb14972011-06-17 16:25:39 -0400648 const void *bc = bytecode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int len = bytecode_len;
650
651 while (len > 0) {
Neal Cardwell405c0052012-12-08 19:43:22 +0000652 int min_len = sizeof(struct inet_diag_bc_op);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700653 const struct inet_diag_bc_op *op = bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 switch (op->code) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300656 case INET_DIAG_BC_S_COND:
657 case INET_DIAG_BC_D_COND:
Neal Cardwell405c0052012-12-08 19:43:22 +0000658 if (!valid_hostcond(bc, len, &min_len))
659 return -EINVAL;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000660 break;
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300661 case INET_DIAG_BC_S_GE:
662 case INET_DIAG_BC_S_LE:
663 case INET_DIAG_BC_D_GE:
664 case INET_DIAG_BC_D_LE:
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000665 if (!valid_port_comparison(bc, len, &min_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return -EINVAL;
667 break;
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000668 case INET_DIAG_BC_AUTO:
669 case INET_DIAG_BC_JMP:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300670 case INET_DIAG_BC_NOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
672 default:
673 return -EINVAL;
674 }
Neal Cardwell5e1f5422012-12-09 11:09:54 +0000675
676 if (op->code != INET_DIAG_BC_NOP) {
677 if (op->no < min_len || op->no > len + 4 || op->no & 3)
678 return -EINVAL;
679 if (op->no < len &&
680 !valid_cc(bytecode, bytecode_len, len - op->no))
681 return -EINVAL;
682 }
683
Neal Cardwell405c0052012-12-08 19:43:22 +0000684 if (op->yes < min_len || op->yes > len + 4 || op->yes & 3)
Eric Dumazeteeb14972011-06-17 16:25:39 -0400685 return -EINVAL;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800686 bc += op->yes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 len -= op->yes;
688 }
689 return len == 0 ? 0 : -EINVAL;
690}
691
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800692static int inet_csk_diag_dump(struct sock *sk,
693 struct sk_buff *skb,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000694 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700695 const struct inet_diag_req_v2 *r,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000696 const struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Pavel Emelyanov8d07d152011-12-09 06:22:44 +0000698 if (!inet_diag_bc_sk(bc, sk))
699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000701 return inet_csk_diag_fill(sk, skb, r,
Patrick McHardye32123e2013-04-17 06:46:57 +0000702 sk_user_ns(NETLINK_CB(cb->skb).sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +0000703 NETLINK_CB(cb->skb).portid,
Arnaldo Carvalho de Melodff2c032006-01-09 14:56:56 -0800704 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Eric Dumazet49612722015-03-05 10:18:14 -0800707static void twsk_build_assert(void)
708{
709 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_family) !=
710 offsetof(struct sock, sk_family));
711
712 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_num) !=
713 offsetof(struct inet_sock, inet_num));
714
715 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_dport) !=
716 offsetof(struct inet_sock, inet_dport));
717
718 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_rcv_saddr) !=
719 offsetof(struct inet_sock, inet_rcv_saddr));
720
721 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_daddr) !=
722 offsetof(struct inet_sock, inet_daddr));
723
724#if IS_ENABLED(CONFIG_IPV6)
725 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_rcv_saddr) !=
726 offsetof(struct sock, sk_v6_rcv_saddr));
727
728 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_daddr) !=
729 offsetof(struct sock, sk_v6_daddr));
730#endif
731}
732
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300733static int inet_diag_dump_reqs(struct sk_buff *skb, struct sock *sk,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000734 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700735 const struct inet_diag_req_v2 *r,
Pavel Emelyanov37f352b2011-12-06 07:57:26 +0000736 const struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700738 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 struct inet_sock *inet = inet_sk(sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700740 struct inet_diag_entry entry;
741 int j, s_j, reqnum, s_reqnum;
742 struct listen_sock *lopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 int err = 0;
744
745 s_j = cb->args[3];
746 s_reqnum = cb->args[4];
747
748 if (s_j > 0)
749 s_j--;
750
751 entry.family = sk->sk_family;
752
Hiroaki SHIMODA3b188442015-06-18 20:40:54 +0900753 spin_lock(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700755 lopt = icsk->icsk_accept_queue.listen_opt;
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700756 if (!lopt || !listen_sock_qlen(lopt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 goto out;
758
Eric Dumazete31c5e02015-03-10 07:15:53 -0700759 if (bc) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000760 entry.sport = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 entry.userlocks = sk->sk_userlocks;
762 }
763
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300764 for (j = s_j; j < lopt->nr_table_entries; j++) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700765 struct request_sock *req, *head = lopt->syn_table[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 reqnum = 0;
768 for (req = head; req; reqnum++, req = req->dl_next) {
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700769 struct inet_request_sock *ireq = inet_rsk(req);
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (reqnum < s_reqnum)
772 continue;
Eric Dumazet634fb9792013-10-09 15:21:29 -0700773 if (r->id.idiag_dport != ireq->ir_rmt_port &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300774 r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 continue;
776
777 if (bc) {
Eric Dumazeta4458342015-03-13 15:51:12 -0700778 /* Note: entry.sport and entry.userlocks are already set */
Eric Dumazet08d2cc3b2015-03-18 14:05:38 -0700779 entry_fill_addrs(&entry, req_to_sk(req));
Eric Dumazet634fb9792013-10-09 15:21:29 -0700780 entry.dport = ntohs(ireq->ir_rmt_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Pavel Emelyanov87c22ea2011-12-09 06:21:34 +0000782 if (!inet_diag_bc_run(bc, &entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 continue;
784 }
785
Eric Dumazet08d2cc3b2015-03-18 14:05:38 -0700786 err = inet_req_diag_fill(req_to_sk(req), skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700787 NETLINK_CB(cb->skb).portid,
Eric Dumazeta58917f2015-03-15 21:12:14 -0700788 cb->nlh->nlmsg_seq,
789 NLM_F_MULTI, cb->nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (err < 0) {
791 cb->args[3] = j + 1;
792 cb->args[4] = reqnum;
793 goto out;
794 }
795 }
796
797 s_reqnum = 0;
798 }
799
800out:
Hiroaki SHIMODA3b188442015-06-18 20:40:54 +0900801 spin_unlock(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 return err;
804}
805
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000806void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700807 struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700808 const struct inet_diag_req_v2 *r, struct nlattr *bc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000810 struct net *net = sock_net(skb->sk);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700811 int i, num, s_i, s_num;
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 s_i = cb->args[1];
814 s_num = num = cb->args[2];
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -0300815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (cb->args[0] == 0) {
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300817 if (!(r->idiag_states & (TCPF_LISTEN | TCPF_SYN_RECV)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 goto skip_listen_ht;
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300819
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700820 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800821 struct inet_listen_hashbucket *ilb;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700822 struct hlist_nulls_node *node;
823 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 num = 0;
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800826 ilb = &hashinfo->listening_hash[i];
827 spin_lock_bh(&ilb->lock);
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800828 sk_nulls_for_each(sk, node, &ilb->head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 struct inet_sock *inet = inet_sk(sk);
830
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000831 if (!net_eq(sock_net(sk), net))
832 continue;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (num < s_num) {
835 num++;
836 continue;
837 }
838
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000839 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazete31c5e02015-03-10 07:15:53 -0700840 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000841 goto next_listen;
842
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000843 if (r->id.idiag_sport != inet->inet_sport &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300844 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 goto next_listen;
846
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300847 if (!(r->idiag_states & TCPF_LISTEN) ||
848 r->id.idiag_dport ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 cb->args[3] > 0)
850 goto syn_recv;
851
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000852 if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800853 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto done;
855 }
856
857syn_recv:
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300858 if (!(r->idiag_states & TCPF_SYN_RECV))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 goto next_listen;
860
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000861 if (inet_diag_dump_reqs(skb, sk, cb, r, bc) < 0) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800862 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto done;
864 }
865
866next_listen:
867 cb->args[3] = 0;
868 cb->args[4] = 0;
869 ++num;
870 }
Eric Dumazet5caea4e2008-11-20 00:40:07 -0800871 spin_unlock_bh(&ilb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 s_num = 0;
874 cb->args[3] = 0;
875 cb->args[4] = 0;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877skip_listen_ht:
878 cb->args[0] = 1;
879 s_i = num = s_num = 0;
880 }
881
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300882 if (!(r->idiag_states & ~(TCPF_LISTEN | TCPF_SYN_RECV)))
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000883 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Eric Dumazetf373b532009-10-09 00:16:19 +0000885 for (i = s_i; i <= hashinfo->ehash_mask; i++) {
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -0300886 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
David S. Miller7e3aab42008-11-21 16:39:19 -0800887 spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800888 struct hlist_nulls_node *node;
Eric Dumazete31c5e02015-03-10 07:15:53 -0700889 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Andi Kleen6be547a2008-08-28 01:09:54 -0700891 num = 0;
892
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700893 if (hlist_nulls_empty(&head->chain))
Andi Kleen6be547a2008-08-28 01:09:54 -0700894 continue;
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (i > s_i)
897 s_num = 0;
898
David S. Miller7e3aab42008-11-21 16:39:19 -0800899 spin_lock_bh(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800900 sk_nulls_for_each(sk, node, &head->chain) {
Eric Dumazete31c5e02015-03-10 07:15:53 -0700901 int state, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000903 if (!net_eq(sock_net(sk), net))
904 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (num < s_num)
906 goto next_normal;
Neal Cardwell70315d22014-01-10 15:34:45 -0500907 state = (sk->sk_state == TCP_TIME_WAIT) ?
908 inet_twsk(sk)->tw_substate : sk->sk_state;
909 if (!(r->idiag_states & (1 << state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 goto next_normal;
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000911 if (r->sdiag_family != AF_UNSPEC &&
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700912 sk->sk_family != r->sdiag_family)
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000913 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700914 if (r->id.idiag_sport != htons(sk->sk_num) &&
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -0300915 r->id.idiag_sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 goto next_normal;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700917 if (r->id.idiag_dport != sk->sk_dport &&
Arnaldo Carvalho de Melo4e852c02006-01-09 14:56:19 -0800918 r->id.idiag_dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto next_normal;
Eric Dumazeta58917f2015-03-15 21:12:14 -0700920 twsk_build_assert();
921
922 if (!inet_diag_bc_sk(bc, sk))
923 goto next_normal;
924
925 res = sk_diag_fill(sk, skb, r,
926 sk_user_ns(NETLINK_CB(cb->skb).sk),
927 NETLINK_CB(cb->skb).portid,
928 cb->nlh->nlmsg_seq, NLM_F_MULTI,
929 cb->nlh);
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700930 if (res < 0) {
David S. Miller7e3aab42008-11-21 16:39:19 -0800931 spin_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 goto done;
933 }
934next_normal:
935 ++num;
936 }
937
David S. Miller7e3aab42008-11-21 16:39:19 -0800938 spin_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
941done:
942 cb->args[1] = i;
943 cb->args[2] = num;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000944out:
945 ;
946}
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000947EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000948
949static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
Eric Dumazet34160ea2015-03-10 07:15:54 -0700950 const struct inet_diag_req_v2 *r,
Eric Dumazete31c5e02015-03-10 07:15:53 -0700951 struct nlattr *bc)
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000952{
953 const struct inet_diag_handler *handler;
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000954 int err = 0;
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000955
956 handler = inet_diag_lock_handler(r->sdiag_protocol);
957 if (!IS_ERR(handler))
Pavel Emelyanov1942c512011-12-09 06:23:18 +0000958 handler->dump(skb, cb, r, bc);
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000959 else
960 err = PTR_ERR(handler);
Herbert Xud523a322007-12-03 15:51:25 +1100961 inet_diag_unlock_handler(handler);
Pavel Emelyanovefb3cb42011-12-09 06:22:26 +0000962
Cyrill Gorcunovcacb6ba2012-11-03 09:30:34 +0000963 return err ? : skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000966static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
967{
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000968 int hdrlen = sizeof(struct inet_diag_req_v2);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700969 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000970
971 if (nlmsg_attrlen(cb->nlh, hdrlen))
972 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
973
David S. Millerd1063522012-06-26 21:28:54 -0700974 return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000975}
976
Eric Dumazete31c5e02015-03-10 07:15:53 -0700977static int inet_diag_type2proto(int type)
Pavel Emelyanova029fe22011-12-06 07:59:32 +0000978{
979 switch (type) {
980 case TCPDIAG_GETSOCK:
981 return IPPROTO_TCP;
982 case DCCPDIAG_GETSOCK:
983 return IPPROTO_DCCP;
984 default:
985 return 0;
986 }
987}
988
Eric Dumazete31c5e02015-03-10 07:15:53 -0700989static int inet_diag_dump_compat(struct sk_buff *skb,
990 struct netlink_callback *cb)
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000991{
David S. Millerd1063522012-06-26 21:28:54 -0700992 struct inet_diag_req *rc = nlmsg_data(cb->nlh);
Eric Dumazete31c5e02015-03-10 07:15:53 -0700993 int hdrlen = sizeof(struct inet_diag_req);
Pavel Emelyanovc8991362012-01-10 22:36:35 +0000994 struct inet_diag_req_v2 req;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000995 struct nlattr *bc = NULL;
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000996
Pavel Emelyanovd23deaa2011-12-06 07:59:15 +0000997 req.sdiag_family = AF_UNSPEC; /* compatibility */
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +0000998 req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
999 req.idiag_ext = rc->idiag_ext;
1000 req.idiag_states = rc->idiag_states;
1001 req.id = rc->id;
1002
1003 if (nlmsg_attrlen(cb->nlh, hdrlen))
1004 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1005
1006 return __inet_diag_dump(skb, cb, &req, bc);
1007}
1008
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001009static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
Eric Dumazete31c5e02015-03-10 07:15:53 -07001010 const struct nlmsghdr *nlh)
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001011{
David S. Millerd1063522012-06-26 21:28:54 -07001012 struct inet_diag_req *rc = nlmsg_data(nlh);
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001013 struct inet_diag_req_v2 req;
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001014
1015 req.sdiag_family = rc->idiag_family;
1016 req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
1017 req.idiag_ext = rc->idiag_ext;
1018 req.idiag_states = rc->idiag_states;
1019 req.id = rc->id;
1020
1021 return inet_diag_get_exact(in_skb, nlh, &req);
1022}
1023
Pavel Emelyanov8d341722011-12-06 07:57:06 +00001024static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Pavel Emelyanov3b09c842012-01-10 22:37:26 +00001026 int hdrlen = sizeof(struct inet_diag_req);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001027 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Thomas Grafead592b2007-03-22 23:30:35 -07001029 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
1030 nlmsg_len(nlh) < hdrlen)
1031 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
David S. Millerb8f3ab42011-01-18 12:40:38 -08001033 if (nlh->nlmsg_flags & NLM_F_DUMP) {
Thomas Grafead592b2007-03-22 23:30:35 -07001034 if (nlmsg_attrlen(nlh, hdrlen)) {
1035 struct nlattr *attr;
1036
1037 attr = nlmsg_find_attr(nlh, hdrlen,
1038 INET_DIAG_REQ_BYTECODE);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001039 if (!attr ||
Thomas Grafead592b2007-03-22 23:30:35 -07001040 nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
1041 inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
1042 return -EINVAL;
1043 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001044 {
1045 struct netlink_dump_control c = {
1046 .dump = inet_diag_dump_compat,
1047 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001048 return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Thomas Grafead592b2007-03-22 23:30:35 -07001051
Pavel Emelyanovfe50ce22011-12-06 07:58:39 +00001052 return inet_diag_get_exact_compat(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001055static int inet_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
1056{
Pavel Emelyanovc8991362012-01-10 22:36:35 +00001057 int hdrlen = sizeof(struct inet_diag_req_v2);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001058 struct net *net = sock_net(skb->sk);
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001059
1060 if (nlmsg_len(h) < hdrlen)
1061 return -EINVAL;
1062
1063 if (h->nlmsg_flags & NLM_F_DUMP) {
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001064 if (nlmsg_attrlen(h, hdrlen)) {
1065 struct nlattr *attr;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001066
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001067 attr = nlmsg_find_attr(h, hdrlen,
1068 INET_DIAG_REQ_BYTECODE);
Eric Dumazete31c5e02015-03-10 07:15:53 -07001069 if (!attr ||
Pavel Emelyanov25c4cd22011-12-06 07:58:58 +00001070 nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
1071 inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
1072 return -EINVAL;
1073 }
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001074 {
1075 struct netlink_dump_control c = {
1076 .dump = inet_diag_dump,
1077 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +00001078 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00001079 }
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001080 }
1081
David S. Millerd1063522012-06-26 21:28:54 -07001082 return inet_diag_get_exact(skb, h, nlmsg_data(h));
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001083}
1084
Craig Gallek35ac8382015-06-15 11:26:20 -04001085static
1086int inet_diag_handler_get_info(struct sk_buff *skb, struct sock *sk)
1087{
1088 const struct inet_diag_handler *handler;
1089 struct nlmsghdr *nlh;
1090 struct nlattr *attr;
1091 struct inet_diag_msg *r;
1092 void *info = NULL;
1093 int err = 0;
1094
1095 nlh = nlmsg_put(skb, 0, 0, SOCK_DIAG_BY_FAMILY, sizeof(*r), 0);
1096 if (!nlh)
1097 return -ENOMEM;
1098
1099 r = nlmsg_data(nlh);
1100 memset(r, 0, sizeof(*r));
1101 inet_diag_msg_common_fill(r, sk);
Craig Galleke0df02e2015-06-17 10:59:10 -04001102 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_STREAM)
1103 r->id.idiag_sport = inet_sk(sk)->inet_sport;
Craig Gallek35ac8382015-06-15 11:26:20 -04001104 r->idiag_state = sk->sk_state;
1105
1106 if ((err = nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))) {
1107 nlmsg_cancel(skb, nlh);
1108 return err;
1109 }
1110
1111 handler = inet_diag_lock_handler(sk->sk_protocol);
1112 if (IS_ERR(handler)) {
1113 inet_diag_unlock_handler(handler);
1114 nlmsg_cancel(skb, nlh);
1115 return PTR_ERR(handler);
1116 }
1117
1118 attr = handler->idiag_info_size
1119 ? nla_reserve(skb, INET_DIAG_INFO, handler->idiag_info_size)
1120 : NULL;
1121 if (attr)
1122 info = nla_data(attr);
1123
1124 handler->idiag_get_info(sk, r, info);
1125 inet_diag_unlock_handler(handler);
1126
1127 nlmsg_end(skb, nlh);
1128 return 0;
1129}
1130
Shan Wei8dcf01f2012-04-24 18:21:07 +00001131static const struct sock_diag_handler inet_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001132 .family = AF_INET,
1133 .dump = inet_diag_handler_dump,
Craig Gallek35ac8382015-06-15 11:26:20 -04001134 .get_info = inet_diag_handler_get_info,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001135};
1136
Shan Wei8dcf01f2012-04-24 18:21:07 +00001137static const struct sock_diag_handler inet6_diag_handler = {
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001138 .family = AF_INET6,
1139 .dump = inet_diag_handler_dump,
Craig Gallek35ac8382015-06-15 11:26:20 -04001140 .get_info = inet_diag_handler_get_info,
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001141};
1142
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001143int inet_diag_register(const struct inet_diag_handler *h)
1144{
1145 const __u16 type = h->idiag_type;
1146 int err = -EINVAL;
1147
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001148 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001149 goto out;
1150
Herbert Xud523a322007-12-03 15:51:25 +11001151 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001152 err = -EEXIST;
Eric Dumazete31c5e02015-03-10 07:15:53 -07001153 if (!inet_diag_table[type]) {
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001154 inet_diag_table[type] = h;
1155 err = 0;
1156 }
Herbert Xud523a322007-12-03 15:51:25 +11001157 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001158out:
1159 return err;
1160}
1161EXPORT_SYMBOL_GPL(inet_diag_register);
1162
1163void inet_diag_unregister(const struct inet_diag_handler *h)
1164{
1165 const __u16 type = h->idiag_type;
1166
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001167 if (type >= IPPROTO_MAX)
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001168 return;
1169
Herbert Xud523a322007-12-03 15:51:25 +11001170 mutex_lock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001171 inet_diag_table[type] = NULL;
Herbert Xud523a322007-12-03 15:51:25 +11001172 mutex_unlock(&inet_diag_table_mutex);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001173}
1174EXPORT_SYMBOL_GPL(inet_diag_unregister);
1175
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001176static int __init inet_diag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Pavel Emelyanovf13c95f2011-12-06 08:05:24 +00001178 const int inet_diag_table_size = (IPPROTO_MAX *
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001179 sizeof(struct inet_diag_handler *));
1180 int err = -ENOMEM;
1181
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001182 inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001183 if (!inet_diag_table)
1184 goto out;
1185
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001186 err = sock_diag_register(&inet_diag_handler);
1187 if (err)
1188 goto out_free_nl;
1189
1190 err = sock_diag_register(&inet6_diag_handler);
1191 if (err)
1192 goto out_free_inet;
1193
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001194 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001195out:
1196 return err;
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001197
1198out_free_inet:
1199 sock_diag_unregister(&inet_diag_handler);
1200out_free_nl:
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001201 kfree(inet_diag_table);
1202 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001205static void __exit inet_diag_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Pavel Emelyanovd3664772011-12-06 07:58:03 +00001207 sock_diag_unregister(&inet6_diag_handler);
1208 sock_diag_unregister(&inet_diag_handler);
Pavel Emelyanov8ef874b2011-12-06 07:59:52 +00001209 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
Arnaldo Carvalho de Melo4f5736c2005-08-12 09:27:49 -03001210 kfree(inet_diag_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Arnaldo Carvalho de Melo73c1f4a2005-08-12 12:51:49 -03001213module_init(inet_diag_init);
1214module_exit(inet_diag_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215MODULE_LICENSE("GPL");
Pavel Emelyanovaec8dc62011-12-15 02:43:27 +00001216MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
1217MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);