blob: 366728cbee4a692394696f13e6aacf0331990eed [file] [log] [blame]
David S. Miller51c5d0c2012-07-10 00:49:14 -07001#include <linux/rcupdate.h>
2#include <linux/spinlock.h>
3#include <linux/jiffies.h>
David S. Millerab92bb22012-07-09 16:19:30 -07004#include <linux/module.h>
David S. Miller4aabd8e2012-07-09 16:07:30 -07005#include <linux/cache.h>
David S. Miller51c5d0c2012-07-10 00:49:14 -07006#include <linux/slab.h>
7#include <linux/init.h>
David S. Miller4aabd8e2012-07-09 16:07:30 -07008#include <linux/tcp.h>
Eric Dumazet5815d5e2012-07-19 23:02:34 +00009#include <linux/hash.h>
Julian Anastasovd23ff702012-09-04 11:03:15 +000010#include <linux/tcp_metrics.h>
Eric Dumazet976a7022012-11-16 05:31:53 +000011#include <linux/vmalloc.h>
David S. Miller4aabd8e2012-07-09 16:07:30 -070012
13#include <net/inet_connection_sock.h>
David S. Miller51c5d0c2012-07-10 00:49:14 -070014#include <net/net_namespace.h>
David S. Millerab92bb22012-07-09 16:19:30 -070015#include <net/request_sock.h>
David S. Miller51c5d0c2012-07-10 00:49:14 -070016#include <net/inetpeer.h>
David S. Miller4aabd8e2012-07-09 16:07:30 -070017#include <net/sock.h>
David S. Miller51c5d0c2012-07-10 00:49:14 -070018#include <net/ipv6.h>
David S. Miller4aabd8e2012-07-09 16:07:30 -070019#include <net/dst.h>
20#include <net/tcp.h>
Julian Anastasovd23ff702012-09-04 11:03:15 +000021#include <net/genetlink.h>
David S. Miller4aabd8e2012-07-09 16:07:30 -070022
23int sysctl_tcp_nometrics_save __read_mostly;
24
David S. Miller41804422014-01-18 00:55:41 -080025static struct tcp_metrics_block *__tcp_get_metrics(const struct inetpeer_addr *saddr,
26 const struct inetpeer_addr *daddr,
Christoph Paasch77f99ad2014-01-16 20:01:21 +010027 struct net *net, unsigned int hash);
28
Yuchung Cheng1fe4c482012-07-19 06:43:06 +000029struct tcp_fastopen_metrics {
30 u16 mss;
Yuchung Chengaab48742012-07-19 06:43:10 +000031 u16 syn_loss:10; /* Recurring Fast Open SYN losses */
32 unsigned long last_syn_loss; /* Last Fast Open SYN loss */
Yuchung Cheng1fe4c482012-07-19 06:43:06 +000033 struct tcp_fastopen_cookie cookie;
34};
35
Eric Dumazet740b0f12014-02-26 14:02:48 -080036/* TCP_METRIC_MAX includes 2 extra fields for userspace compatibility
37 * Kernel only stores RTT and RTTVAR in usec resolution
38 */
39#define TCP_METRIC_MAX_KERNEL (TCP_METRIC_MAX - 2)
40
David S. Miller51c5d0c2012-07-10 00:49:14 -070041struct tcp_metrics_block {
42 struct tcp_metrics_block __rcu *tcpm_next;
Eric W. Biederman849e8a02015-03-13 00:05:52 -050043 possible_net_t tcpm_net;
Christoph Paascha5443022014-01-08 16:05:56 +010044 struct inetpeer_addr tcpm_saddr;
Christoph Paasch324fd552014-01-08 16:05:55 +010045 struct inetpeer_addr tcpm_daddr;
David S. Miller51c5d0c2012-07-10 00:49:14 -070046 unsigned long tcpm_stamp;
David S. Miller81166dd2012-07-10 03:14:24 -070047 u32 tcpm_ts;
48 u32 tcpm_ts_stamp;
David S. Miller51c5d0c2012-07-10 00:49:14 -070049 u32 tcpm_lock;
Eric Dumazet740b0f12014-02-26 14:02:48 -080050 u32 tcpm_vals[TCP_METRIC_MAX_KERNEL + 1];
Yuchung Cheng1fe4c482012-07-19 06:43:06 +000051 struct tcp_fastopen_metrics tcpm_fastopen;
Julian Anastasovd23ff702012-09-04 11:03:15 +000052
53 struct rcu_head rcu_head;
David S. Miller51c5d0c2012-07-10 00:49:14 -070054};
55
Eric W. Biederman849e8a02015-03-13 00:05:52 -050056static inline struct net *tm_net(struct tcp_metrics_block *tm)
57{
58 return read_pnet(&tm->tcpm_net);
59}
60
David S. Miller51c5d0c2012-07-10 00:49:14 -070061static bool tcp_metric_locked(struct tcp_metrics_block *tm,
62 enum tcp_metric_index idx)
63{
64 return tm->tcpm_lock & (1 << idx);
65}
66
67static u32 tcp_metric_get(struct tcp_metrics_block *tm,
68 enum tcp_metric_index idx)
69{
70 return tm->tcpm_vals[idx];
71}
72
David S. Miller51c5d0c2012-07-10 00:49:14 -070073static void tcp_metric_set(struct tcp_metrics_block *tm,
74 enum tcp_metric_index idx,
75 u32 val)
76{
77 tm->tcpm_vals[idx] = val;
78}
79
David S. Miller51c5d0c2012-07-10 00:49:14 -070080static bool addr_same(const struct inetpeer_addr *a,
81 const struct inetpeer_addr *b)
82{
83 const struct in6_addr *a6, *b6;
84
85 if (a->family != b->family)
86 return false;
87 if (a->family == AF_INET)
88 return a->addr.a4 == b->addr.a4;
89
90 a6 = (const struct in6_addr *) &a->addr.a6[0];
91 b6 = (const struct in6_addr *) &b->addr.a6[0];
92
93 return ipv6_addr_equal(a6, b6);
94}
95
96struct tcpm_hash_bucket {
97 struct tcp_metrics_block __rcu *chain;
98};
99
Eric W. Biederman098a6972015-03-13 00:07:44 -0500100static struct tcpm_hash_bucket *tcp_metrics_hash __read_mostly;
101static unsigned int tcp_metrics_hash_log __read_mostly;
102
David S. Miller51c5d0c2012-07-10 00:49:14 -0700103static DEFINE_SPINLOCK(tcp_metrics_lock);
104
Eric Dumazet740b0f12014-02-26 14:02:48 -0800105static void tcpm_suck_dst(struct tcp_metrics_block *tm,
106 const struct dst_entry *dst,
Eric Dumazetefeaa552013-05-03 19:12:45 +0000107 bool fastopen_clear)
David S. Miller51c5d0c2012-07-10 00:49:14 -0700108{
Eric Dumazet740b0f12014-02-26 14:02:48 -0800109 u32 msval;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700110 u32 val;
111
Julian Anastasov9a0a9502012-07-23 10:46:38 +0300112 tm->tcpm_stamp = jiffies;
113
David S. Miller51c5d0c2012-07-10 00:49:14 -0700114 val = 0;
115 if (dst_metric_locked(dst, RTAX_RTT))
116 val |= 1 << TCP_METRIC_RTT;
117 if (dst_metric_locked(dst, RTAX_RTTVAR))
118 val |= 1 << TCP_METRIC_RTTVAR;
119 if (dst_metric_locked(dst, RTAX_SSTHRESH))
120 val |= 1 << TCP_METRIC_SSTHRESH;
121 if (dst_metric_locked(dst, RTAX_CWND))
122 val |= 1 << TCP_METRIC_CWND;
123 if (dst_metric_locked(dst, RTAX_REORDERING))
124 val |= 1 << TCP_METRIC_REORDERING;
125 tm->tcpm_lock = val;
126
Eric Dumazet740b0f12014-02-26 14:02:48 -0800127 msval = dst_metric_raw(dst, RTAX_RTT);
128 tm->tcpm_vals[TCP_METRIC_RTT] = msval * USEC_PER_MSEC;
129
130 msval = dst_metric_raw(dst, RTAX_RTTVAR);
131 tm->tcpm_vals[TCP_METRIC_RTTVAR] = msval * USEC_PER_MSEC;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700132 tm->tcpm_vals[TCP_METRIC_SSTHRESH] = dst_metric_raw(dst, RTAX_SSTHRESH);
133 tm->tcpm_vals[TCP_METRIC_CWND] = dst_metric_raw(dst, RTAX_CWND);
134 tm->tcpm_vals[TCP_METRIC_REORDERING] = dst_metric_raw(dst, RTAX_REORDERING);
David S. Miller81166dd2012-07-10 03:14:24 -0700135 tm->tcpm_ts = 0;
136 tm->tcpm_ts_stamp = 0;
Eric Dumazetefeaa552013-05-03 19:12:45 +0000137 if (fastopen_clear) {
138 tm->tcpm_fastopen.mss = 0;
139 tm->tcpm_fastopen.syn_loss = 0;
140 tm->tcpm_fastopen.cookie.len = 0;
141 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700142}
143
Christoph Paasch77f99ad2014-01-16 20:01:21 +0100144#define TCP_METRICS_TIMEOUT (60 * 60 * HZ)
145
146static void tcpm_check_stamp(struct tcp_metrics_block *tm, struct dst_entry *dst)
147{
148 if (tm && unlikely(time_after(jiffies, tm->tcpm_stamp + TCP_METRICS_TIMEOUT)))
149 tcpm_suck_dst(tm, dst, false);
150}
151
152#define TCP_METRICS_RECLAIM_DEPTH 5
153#define TCP_METRICS_RECLAIM_PTR (struct tcp_metrics_block *) 0x1UL
154
David S. Miller51c5d0c2012-07-10 00:49:14 -0700155static struct tcp_metrics_block *tcpm_new(struct dst_entry *dst,
Christoph Paascha5443022014-01-08 16:05:56 +0100156 struct inetpeer_addr *saddr,
Christoph Paasch324fd552014-01-08 16:05:55 +0100157 struct inetpeer_addr *daddr,
Christoph Paasch77f99ad2014-01-16 20:01:21 +0100158 unsigned int hash)
David S. Miller51c5d0c2012-07-10 00:49:14 -0700159{
160 struct tcp_metrics_block *tm;
161 struct net *net;
Christoph Paasch77f99ad2014-01-16 20:01:21 +0100162 bool reclaim = false;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700163
164 spin_lock_bh(&tcp_metrics_lock);
165 net = dev_net(dst->dev);
Christoph Paasch77f99ad2014-01-16 20:01:21 +0100166
167 /* While waiting for the spin-lock the cache might have been populated
168 * with this entry and so we have to check again.
169 */
David S. Miller41804422014-01-18 00:55:41 -0800170 tm = __tcp_get_metrics(saddr, daddr, net, hash);
Christoph Paasch77f99ad2014-01-16 20:01:21 +0100171 if (tm == TCP_METRICS_RECLAIM_PTR) {
172 reclaim = true;
173 tm = NULL;
174 }
175 if (tm) {
176 tcpm_check_stamp(tm, dst);
177 goto out_unlock;
178 }
179
David S. Miller51c5d0c2012-07-10 00:49:14 -0700180 if (unlikely(reclaim)) {
181 struct tcp_metrics_block *oldest;
182
Eric W. Biederman098a6972015-03-13 00:07:44 -0500183 oldest = rcu_dereference(tcp_metrics_hash[hash].chain);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700184 for (tm = rcu_dereference(oldest->tcpm_next); tm;
185 tm = rcu_dereference(tm->tcpm_next)) {
186 if (time_before(tm->tcpm_stamp, oldest->tcpm_stamp))
187 oldest = tm;
188 }
189 tm = oldest;
190 } else {
191 tm = kmalloc(sizeof(*tm), GFP_ATOMIC);
192 if (!tm)
193 goto out_unlock;
194 }
Eric W. Biederman849e8a02015-03-13 00:05:52 -0500195 write_pnet(&tm->tcpm_net, net);
Christoph Paascha5443022014-01-08 16:05:56 +0100196 tm->tcpm_saddr = *saddr;
Christoph Paasch324fd552014-01-08 16:05:55 +0100197 tm->tcpm_daddr = *daddr;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700198
Eric Dumazetefeaa552013-05-03 19:12:45 +0000199 tcpm_suck_dst(tm, dst, true);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700200
201 if (likely(!reclaim)) {
Eric W. Biederman098a6972015-03-13 00:07:44 -0500202 tm->tcpm_next = tcp_metrics_hash[hash].chain;
203 rcu_assign_pointer(tcp_metrics_hash[hash].chain, tm);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700204 }
205
206out_unlock:
207 spin_unlock_bh(&tcp_metrics_lock);
208 return tm;
209}
210
David S. Miller51c5d0c2012-07-10 00:49:14 -0700211static struct tcp_metrics_block *tcp_get_encode(struct tcp_metrics_block *tm, int depth)
212{
213 if (tm)
214 return tm;
215 if (depth > TCP_METRICS_RECLAIM_DEPTH)
216 return TCP_METRICS_RECLAIM_PTR;
217 return NULL;
218}
219
Christoph Paascha5443022014-01-08 16:05:56 +0100220static struct tcp_metrics_block *__tcp_get_metrics(const struct inetpeer_addr *saddr,
221 const struct inetpeer_addr *daddr,
David S. Miller51c5d0c2012-07-10 00:49:14 -0700222 struct net *net, unsigned int hash)
223{
224 struct tcp_metrics_block *tm;
225 int depth = 0;
226
Eric W. Biederman098a6972015-03-13 00:07:44 -0500227 for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700228 tm = rcu_dereference(tm->tcpm_next)) {
Christoph Paascha5443022014-01-08 16:05:56 +0100229 if (addr_same(&tm->tcpm_saddr, saddr) &&
Eric W. Biederman849e8a02015-03-13 00:05:52 -0500230 addr_same(&tm->tcpm_daddr, daddr) &&
231 net_eq(tm_net(tm), net))
David S. Miller51c5d0c2012-07-10 00:49:14 -0700232 break;
233 depth++;
234 }
235 return tcp_get_encode(tm, depth);
236}
237
238static struct tcp_metrics_block *__tcp_get_metrics_req(struct request_sock *req,
239 struct dst_entry *dst)
240{
241 struct tcp_metrics_block *tm;
Christoph Paascha5443022014-01-08 16:05:56 +0100242 struct inetpeer_addr saddr, daddr;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700243 unsigned int hash;
244 struct net *net;
245
Christoph Paascha5443022014-01-08 16:05:56 +0100246 saddr.family = req->rsk_ops->family;
Christoph Paasch324fd552014-01-08 16:05:55 +0100247 daddr.family = req->rsk_ops->family;
248 switch (daddr.family) {
David S. Miller51c5d0c2012-07-10 00:49:14 -0700249 case AF_INET:
Christoph Paascha5443022014-01-08 16:05:56 +0100250 saddr.addr.a4 = inet_rsk(req)->ir_loc_addr;
Christoph Paasch324fd552014-01-08 16:05:55 +0100251 daddr.addr.a4 = inet_rsk(req)->ir_rmt_addr;
252 hash = (__force unsigned int) daddr.addr.a4;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700253 break;
Eric Dumazet634fb9792013-10-09 15:21:29 -0700254#if IS_ENABLED(CONFIG_IPV6)
David S. Miller51c5d0c2012-07-10 00:49:14 -0700255 case AF_INET6:
Christoph Paascha5443022014-01-08 16:05:56 +0100256 *(struct in6_addr *)saddr.addr.a6 = inet_rsk(req)->ir_v6_loc_addr;
Christoph Paasch324fd552014-01-08 16:05:55 +0100257 *(struct in6_addr *)daddr.addr.a6 = inet_rsk(req)->ir_v6_rmt_addr;
Eric Dumazet634fb9792013-10-09 15:21:29 -0700258 hash = ipv6_addr_hash(&inet_rsk(req)->ir_v6_rmt_addr);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700259 break;
Eric Dumazet634fb9792013-10-09 15:21:29 -0700260#endif
David S. Miller51c5d0c2012-07-10 00:49:14 -0700261 default:
262 return NULL;
263 }
264
David S. Miller51c5d0c2012-07-10 00:49:14 -0700265 net = dev_net(dst->dev);
Eric W. Biederman3e5da622015-03-13 00:05:24 -0500266 hash ^= net_hash_mix(net);
Eric W. Biederman098a6972015-03-13 00:07:44 -0500267 hash = hash_32(hash, tcp_metrics_hash_log);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700268
Eric W. Biederman098a6972015-03-13 00:07:44 -0500269 for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700270 tm = rcu_dereference(tm->tcpm_next)) {
Christoph Paascha5443022014-01-08 16:05:56 +0100271 if (addr_same(&tm->tcpm_saddr, &saddr) &&
Eric W. Biederman849e8a02015-03-13 00:05:52 -0500272 addr_same(&tm->tcpm_daddr, &daddr) &&
273 net_eq(tm_net(tm), net))
David S. Miller51c5d0c2012-07-10 00:49:14 -0700274 break;
275 }
276 tcpm_check_stamp(tm, dst);
277 return tm;
278}
279
David S. Miller81166dd2012-07-10 03:14:24 -0700280static struct tcp_metrics_block *__tcp_get_metrics_tw(struct inet_timewait_sock *tw)
281{
David S. Miller81166dd2012-07-10 03:14:24 -0700282 struct tcp_metrics_block *tm;
Christoph Paascha5443022014-01-08 16:05:56 +0100283 struct inetpeer_addr saddr, daddr;
David S. Miller81166dd2012-07-10 03:14:24 -0700284 unsigned int hash;
285 struct net *net;
286
Christoph Paasch3ad88cf2014-01-22 13:58:44 +0100287 if (tw->tw_family == AF_INET) {
288 saddr.family = AF_INET;
Christoph Paascha5443022014-01-08 16:05:56 +0100289 saddr.addr.a4 = tw->tw_rcv_saddr;
Christoph Paasch3ad88cf2014-01-22 13:58:44 +0100290 daddr.family = AF_INET;
Christoph Paasch324fd552014-01-08 16:05:55 +0100291 daddr.addr.a4 = tw->tw_daddr;
292 hash = (__force unsigned int) daddr.addr.a4;
David S. Miller81166dd2012-07-10 03:14:24 -0700293 }
Christoph Paasch3ad88cf2014-01-22 13:58:44 +0100294#if IS_ENABLED(CONFIG_IPV6)
295 else if (tw->tw_family == AF_INET6) {
296 if (ipv6_addr_v4mapped(&tw->tw_v6_daddr)) {
297 saddr.family = AF_INET;
298 saddr.addr.a4 = tw->tw_rcv_saddr;
299 daddr.family = AF_INET;
300 daddr.addr.a4 = tw->tw_daddr;
301 hash = (__force unsigned int) daddr.addr.a4;
302 } else {
303 saddr.family = AF_INET6;
304 *(struct in6_addr *)saddr.addr.a6 = tw->tw_v6_rcv_saddr;
305 daddr.family = AF_INET6;
306 *(struct in6_addr *)daddr.addr.a6 = tw->tw_v6_daddr;
307 hash = ipv6_addr_hash(&tw->tw_v6_daddr);
308 }
309 }
310#endif
311 else
312 return NULL;
David S. Miller81166dd2012-07-10 03:14:24 -0700313
David S. Miller81166dd2012-07-10 03:14:24 -0700314 net = twsk_net(tw);
Eric W. Biederman3e5da622015-03-13 00:05:24 -0500315 hash ^= net_hash_mix(net);
Eric W. Biederman098a6972015-03-13 00:07:44 -0500316 hash = hash_32(hash, tcp_metrics_hash_log);
David S. Miller81166dd2012-07-10 03:14:24 -0700317
Eric W. Biederman098a6972015-03-13 00:07:44 -0500318 for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm;
David S. Miller81166dd2012-07-10 03:14:24 -0700319 tm = rcu_dereference(tm->tcpm_next)) {
Christoph Paascha5443022014-01-08 16:05:56 +0100320 if (addr_same(&tm->tcpm_saddr, &saddr) &&
Eric W. Biederman849e8a02015-03-13 00:05:52 -0500321 addr_same(&tm->tcpm_daddr, &daddr) &&
322 net_eq(tm_net(tm), net))
David S. Miller81166dd2012-07-10 03:14:24 -0700323 break;
324 }
325 return tm;
326}
327
David S. Miller51c5d0c2012-07-10 00:49:14 -0700328static struct tcp_metrics_block *tcp_get_metrics(struct sock *sk,
329 struct dst_entry *dst,
330 bool create)
331{
332 struct tcp_metrics_block *tm;
Christoph Paascha5443022014-01-08 16:05:56 +0100333 struct inetpeer_addr saddr, daddr;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700334 unsigned int hash;
335 struct net *net;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700336
Christoph Paasch3ad88cf2014-01-22 13:58:44 +0100337 if (sk->sk_family == AF_INET) {
338 saddr.family = AF_INET;
Christoph Paascha5443022014-01-08 16:05:56 +0100339 saddr.addr.a4 = inet_sk(sk)->inet_saddr;
Christoph Paasch3ad88cf2014-01-22 13:58:44 +0100340 daddr.family = AF_INET;
Christoph Paasch324fd552014-01-08 16:05:55 +0100341 daddr.addr.a4 = inet_sk(sk)->inet_daddr;
342 hash = (__force unsigned int) daddr.addr.a4;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700343 }
Christoph Paasch3ad88cf2014-01-22 13:58:44 +0100344#if IS_ENABLED(CONFIG_IPV6)
345 else if (sk->sk_family == AF_INET6) {
346 if (ipv6_addr_v4mapped(&sk->sk_v6_daddr)) {
347 saddr.family = AF_INET;
348 saddr.addr.a4 = inet_sk(sk)->inet_saddr;
349 daddr.family = AF_INET;
350 daddr.addr.a4 = inet_sk(sk)->inet_daddr;
351 hash = (__force unsigned int) daddr.addr.a4;
352 } else {
353 saddr.family = AF_INET6;
354 *(struct in6_addr *)saddr.addr.a6 = sk->sk_v6_rcv_saddr;
355 daddr.family = AF_INET6;
356 *(struct in6_addr *)daddr.addr.a6 = sk->sk_v6_daddr;
357 hash = ipv6_addr_hash(&sk->sk_v6_daddr);
358 }
359 }
360#endif
361 else
362 return NULL;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700363
David S. Miller51c5d0c2012-07-10 00:49:14 -0700364 net = dev_net(dst->dev);
Eric W. Biederman3e5da622015-03-13 00:05:24 -0500365 hash ^= net_hash_mix(net);
Eric W. Biederman098a6972015-03-13 00:07:44 -0500366 hash = hash_32(hash, tcp_metrics_hash_log);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700367
Christoph Paascha5443022014-01-08 16:05:56 +0100368 tm = __tcp_get_metrics(&saddr, &daddr, net, hash);
Christoph Paasch77f99ad2014-01-16 20:01:21 +0100369 if (tm == TCP_METRICS_RECLAIM_PTR)
David S. Miller51c5d0c2012-07-10 00:49:14 -0700370 tm = NULL;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700371 if (!tm && create)
David S. Miller41804422014-01-18 00:55:41 -0800372 tm = tcpm_new(dst, &saddr, &daddr, hash);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700373 else
374 tcpm_check_stamp(tm, dst);
375
376 return tm;
377}
378
David S. Miller4aabd8e2012-07-09 16:07:30 -0700379/* Save metrics learned by this TCP session. This function is called
380 * only, when TCP finishes successfully i.e. when it enters TIME-WAIT
381 * or goes from LAST-ACK to CLOSE.
382 */
383void tcp_update_metrics(struct sock *sk)
384{
David S. Miller51c5d0c2012-07-10 00:49:14 -0700385 const struct inet_connection_sock *icsk = inet_csk(sk);
David S. Miller4aabd8e2012-07-09 16:07:30 -0700386 struct dst_entry *dst = __sk_dst_get(sk);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700387 struct tcp_sock *tp = tcp_sk(sk);
388 struct tcp_metrics_block *tm;
389 unsigned long rtt;
390 u32 val;
391 int m;
David S. Miller4aabd8e2012-07-09 16:07:30 -0700392
David S. Miller51c5d0c2012-07-10 00:49:14 -0700393 if (sysctl_tcp_nometrics_save || !dst)
David S. Miller4aabd8e2012-07-09 16:07:30 -0700394 return;
395
David S. Miller51c5d0c2012-07-10 00:49:14 -0700396 if (dst->flags & DST_HOST)
David S. Miller4aabd8e2012-07-09 16:07:30 -0700397 dst_confirm(dst);
398
David S. Miller51c5d0c2012-07-10 00:49:14 -0700399 rcu_read_lock();
Eric Dumazet740b0f12014-02-26 14:02:48 -0800400 if (icsk->icsk_backoff || !tp->srtt_us) {
David S. Miller51c5d0c2012-07-10 00:49:14 -0700401 /* This session failed to estimate rtt. Why?
402 * Probably, no packets returned in time. Reset our
403 * results.
David S. Miller4aabd8e2012-07-09 16:07:30 -0700404 */
David S. Miller51c5d0c2012-07-10 00:49:14 -0700405 tm = tcp_get_metrics(sk, dst, false);
406 if (tm && !tcp_metric_locked(tm, TCP_METRIC_RTT))
407 tcp_metric_set(tm, TCP_METRIC_RTT, 0);
408 goto out_unlock;
409 } else
410 tm = tcp_get_metrics(sk, dst, true);
411
412 if (!tm)
413 goto out_unlock;
414
Eric Dumazet740b0f12014-02-26 14:02:48 -0800415 rtt = tcp_metric_get(tm, TCP_METRIC_RTT);
416 m = rtt - tp->srtt_us;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700417
418 /* If newly calculated rtt larger than stored one, store new
419 * one. Otherwise, use EWMA. Remember, rtt overestimation is
420 * always better than underestimation.
421 */
422 if (!tcp_metric_locked(tm, TCP_METRIC_RTT)) {
423 if (m <= 0)
Eric Dumazet740b0f12014-02-26 14:02:48 -0800424 rtt = tp->srtt_us;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700425 else
426 rtt -= (m >> 3);
Eric Dumazet740b0f12014-02-26 14:02:48 -0800427 tcp_metric_set(tm, TCP_METRIC_RTT, rtt);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700428 }
429
430 if (!tcp_metric_locked(tm, TCP_METRIC_RTTVAR)) {
431 unsigned long var;
432
433 if (m < 0)
434 m = -m;
435
436 /* Scale deviation to rttvar fixed point */
437 m >>= 1;
Eric Dumazet740b0f12014-02-26 14:02:48 -0800438 if (m < tp->mdev_us)
439 m = tp->mdev_us;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700440
Eric Dumazet740b0f12014-02-26 14:02:48 -0800441 var = tcp_metric_get(tm, TCP_METRIC_RTTVAR);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700442 if (m >= var)
443 var = m;
444 else
445 var -= (var - m) >> 2;
446
Eric Dumazet740b0f12014-02-26 14:02:48 -0800447 tcp_metric_set(tm, TCP_METRIC_RTTVAR, var);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700448 }
449
450 if (tcp_in_initial_slowstart(tp)) {
451 /* Slow start still did not finish. */
452 if (!tcp_metric_locked(tm, TCP_METRIC_SSTHRESH)) {
453 val = tcp_metric_get(tm, TCP_METRIC_SSTHRESH);
454 if (val && (tp->snd_cwnd >> 1) > val)
455 tcp_metric_set(tm, TCP_METRIC_SSTHRESH,
456 tp->snd_cwnd >> 1);
David S. Miller4aabd8e2012-07-09 16:07:30 -0700457 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700458 if (!tcp_metric_locked(tm, TCP_METRIC_CWND)) {
459 val = tcp_metric_get(tm, TCP_METRIC_CWND);
460 if (tp->snd_cwnd > val)
461 tcp_metric_set(tm, TCP_METRIC_CWND,
462 tp->snd_cwnd);
David S. Miller4aabd8e2012-07-09 16:07:30 -0700463 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700464 } else if (tp->snd_cwnd > tp->snd_ssthresh &&
465 icsk->icsk_ca_state == TCP_CA_Open) {
466 /* Cong. avoidance phase, cwnd is reliable. */
467 if (!tcp_metric_locked(tm, TCP_METRIC_SSTHRESH))
468 tcp_metric_set(tm, TCP_METRIC_SSTHRESH,
469 max(tp->snd_cwnd >> 1, tp->snd_ssthresh));
470 if (!tcp_metric_locked(tm, TCP_METRIC_CWND)) {
471 val = tcp_metric_get(tm, TCP_METRIC_CWND);
Alexander Duyck21008442012-07-11 17:18:04 -0700472 tcp_metric_set(tm, TCP_METRIC_CWND, (val + tp->snd_cwnd) >> 1);
David S. Miller4aabd8e2012-07-09 16:07:30 -0700473 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700474 } else {
475 /* Else slow start did not finish, cwnd is non-sense,
476 * ssthresh may be also invalid.
477 */
478 if (!tcp_metric_locked(tm, TCP_METRIC_CWND)) {
479 val = tcp_metric_get(tm, TCP_METRIC_CWND);
480 tcp_metric_set(tm, TCP_METRIC_CWND,
481 (val + tp->snd_ssthresh) >> 1);
482 }
483 if (!tcp_metric_locked(tm, TCP_METRIC_SSTHRESH)) {
484 val = tcp_metric_get(tm, TCP_METRIC_SSTHRESH);
485 if (val && tp->snd_ssthresh > val)
486 tcp_metric_set(tm, TCP_METRIC_SSTHRESH,
487 tp->snd_ssthresh);
488 }
489 if (!tcp_metric_locked(tm, TCP_METRIC_REORDERING)) {
490 val = tcp_metric_get(tm, TCP_METRIC_REORDERING);
491 if (val < tp->reordering &&
David S. Miller4aabd8e2012-07-09 16:07:30 -0700492 tp->reordering != sysctl_tcp_reordering)
David S. Miller51c5d0c2012-07-10 00:49:14 -0700493 tcp_metric_set(tm, TCP_METRIC_REORDERING,
494 tp->reordering);
David S. Miller4aabd8e2012-07-09 16:07:30 -0700495 }
496 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700497 tm->tcpm_stamp = jiffies;
498out_unlock:
499 rcu_read_unlock();
David S. Miller4aabd8e2012-07-09 16:07:30 -0700500}
501
502/* Initialize metrics on socket. */
503
504void tcp_init_metrics(struct sock *sk)
505{
David S. Miller4aabd8e2012-07-09 16:07:30 -0700506 struct dst_entry *dst = __sk_dst_get(sk);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700507 struct tcp_sock *tp = tcp_sk(sk);
508 struct tcp_metrics_block *tm;
Yuchung Cheng1b7fdd22013-08-30 08:35:53 -0700509 u32 val, crtt = 0; /* cached RTT scaled by 8 */
David S. Miller4aabd8e2012-07-09 16:07:30 -0700510
511 if (dst == NULL)
512 goto reset;
513
514 dst_confirm(dst);
515
David S. Miller51c5d0c2012-07-10 00:49:14 -0700516 rcu_read_lock();
517 tm = tcp_get_metrics(sk, dst, true);
518 if (!tm) {
519 rcu_read_unlock();
520 goto reset;
521 }
522
523 if (tcp_metric_locked(tm, TCP_METRIC_CWND))
524 tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND);
525
526 val = tcp_metric_get(tm, TCP_METRIC_SSTHRESH);
527 if (val) {
528 tp->snd_ssthresh = val;
David S. Miller4aabd8e2012-07-09 16:07:30 -0700529 if (tp->snd_ssthresh > tp->snd_cwnd_clamp)
530 tp->snd_ssthresh = tp->snd_cwnd_clamp;
531 } else {
532 /* ssthresh may have been reduced unnecessarily during.
533 * 3WHS. Restore it back to its initial default.
534 */
535 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
536 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700537 val = tcp_metric_get(tm, TCP_METRIC_REORDERING);
538 if (val && tp->reordering != val) {
David S. Miller4aabd8e2012-07-09 16:07:30 -0700539 tcp_disable_fack(tp);
540 tcp_disable_early_retrans(tp);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700541 tp->reordering = val;
David S. Miller4aabd8e2012-07-09 16:07:30 -0700542 }
543
Eric Dumazet740b0f12014-02-26 14:02:48 -0800544 crtt = tcp_metric_get(tm, TCP_METRIC_RTT);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700545 rcu_read_unlock();
David S. Miller4aabd8e2012-07-09 16:07:30 -0700546reset:
Yuchung Cheng52f20e62013-09-03 14:14:35 -0700547 /* The initial RTT measurement from the SYN/SYN-ACK is not ideal
548 * to seed the RTO for later data packets because SYN packets are
549 * small. Use the per-dst cached values to seed the RTO but keep
550 * the RTT estimator variables intact (e.g., srtt, mdev, rttvar).
551 * Later the RTO will be updated immediately upon obtaining the first
552 * data RTT sample (tcp_rtt_estimator()). Hence the cached RTT only
553 * influences the first RTO but not later RTT estimation.
554 *
555 * But if RTT is not available from the SYN (due to retransmits or
556 * syn cookies) or the cache, force a conservative 3secs timeout.
557 *
558 * A bit of theory. RTT is time passed after "normal" sized packet
559 * is sent until it is ACKed. In normal circumstances sending small
560 * packets force peer to delay ACKs and calculation is correct too.
561 * The algorithm is adaptive and, provided we follow specs, it
562 * NEVER underestimate RTT. BUT! If peer tries to make some clever
563 * tricks sort of "quick acks" for time long enough to decrease RTT
564 * to low value, and then abruptly stops to do it and starts to delay
565 * ACKs, wait for troubles.
566 */
Eric Dumazet740b0f12014-02-26 14:02:48 -0800567 if (crtt > tp->srtt_us) {
Neal Cardwell269aa752013-09-16 21:44:20 -0400568 /* Set RTO like tcp_rtt_estimator(), but from cached RTT. */
Eric Dumazet740b0f12014-02-26 14:02:48 -0800569 crtt /= 8 * USEC_PER_MSEC;
Neal Cardwell269aa752013-09-16 21:44:20 -0400570 inet_csk(sk)->icsk_rto = crtt + max(2 * crtt, tcp_rto_min(sk));
Eric Dumazet740b0f12014-02-26 14:02:48 -0800571 } else if (tp->srtt_us == 0) {
David S. Miller4aabd8e2012-07-09 16:07:30 -0700572 /* RFC6298: 5.7 We've failed to get a valid RTT sample from
573 * 3WHS. This is most likely due to retransmission,
574 * including spurious one. Reset the RTO back to 3secs
575 * from the more aggressive 1sec to avoid more spurious
576 * retransmission.
577 */
Eric Dumazet740b0f12014-02-26 14:02:48 -0800578 tp->rttvar_us = jiffies_to_usecs(TCP_TIMEOUT_FALLBACK);
579 tp->mdev_us = tp->mdev_max_us = tp->rttvar_us;
580
David S. Miller4aabd8e2012-07-09 16:07:30 -0700581 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_FALLBACK;
582 }
583 /* Cut cwnd down to 1 per RFC5681 if SYN or SYN-ACK has been
584 * retransmitted. In light of RFC6298 more aggressive 1sec
585 * initRTO, we only reset cwnd when more than 1 SYN/SYN-ACK
586 * retransmission has occurred.
587 */
588 if (tp->total_retrans > 1)
589 tp->snd_cwnd = 1;
590 else
591 tp->snd_cwnd = tcp_init_cwnd(tp, dst);
592 tp->snd_cwnd_stamp = tcp_time_stamp;
593}
David S. Millerab92bb22012-07-09 16:19:30 -0700594
Hannes Frederic Sowaa26552a2014-08-14 22:06:12 +0200595bool tcp_peer_is_proven(struct request_sock *req, struct dst_entry *dst,
596 bool paws_check, bool timestamps)
David S. Millerab92bb22012-07-09 16:19:30 -0700597{
David S. Miller51c5d0c2012-07-10 00:49:14 -0700598 struct tcp_metrics_block *tm;
599 bool ret;
600
David S. Millerab92bb22012-07-09 16:19:30 -0700601 if (!dst)
602 return false;
David S. Miller51c5d0c2012-07-10 00:49:14 -0700603
604 rcu_read_lock();
605 tm = __tcp_get_metrics_req(req, dst);
David S. Miller81166dd2012-07-10 03:14:24 -0700606 if (paws_check) {
607 if (tm &&
608 (u32)get_seconds() - tm->tcpm_ts_stamp < TCP_PAWS_MSL &&
Hannes Frederic Sowaa26552a2014-08-14 22:06:12 +0200609 ((s32)(tm->tcpm_ts - req->ts_recent) > TCP_PAWS_WINDOW ||
610 !timestamps))
David S. Miller81166dd2012-07-10 03:14:24 -0700611 ret = false;
612 else
613 ret = true;
614 } else {
615 if (tm && tcp_metric_get(tm, TCP_METRIC_RTT) && tm->tcpm_ts_stamp)
616 ret = true;
617 else
618 ret = false;
619 }
David S. Miller51c5d0c2012-07-10 00:49:14 -0700620 rcu_read_unlock();
621
622 return ret;
David S. Millerab92bb22012-07-09 16:19:30 -0700623}
624EXPORT_SYMBOL_GPL(tcp_peer_is_proven);
David S. Miller51c5d0c2012-07-10 00:49:14 -0700625
David S. Miller81166dd2012-07-10 03:14:24 -0700626void tcp_fetch_timewait_stamp(struct sock *sk, struct dst_entry *dst)
627{
628 struct tcp_metrics_block *tm;
629
630 rcu_read_lock();
631 tm = tcp_get_metrics(sk, dst, true);
632 if (tm) {
633 struct tcp_sock *tp = tcp_sk(sk);
634
635 if ((u32)get_seconds() - tm->tcpm_ts_stamp <= TCP_PAWS_MSL) {
636 tp->rx_opt.ts_recent_stamp = tm->tcpm_ts_stamp;
637 tp->rx_opt.ts_recent = tm->tcpm_ts;
638 }
639 }
640 rcu_read_unlock();
641}
642EXPORT_SYMBOL_GPL(tcp_fetch_timewait_stamp);
643
644/* VJ's idea. Save last timestamp seen from this destination and hold
645 * it at least for normal timewait interval to use for duplicate
646 * segment detection in subsequent connections, before they enter
647 * synchronized state.
648 */
649bool tcp_remember_stamp(struct sock *sk)
650{
651 struct dst_entry *dst = __sk_dst_get(sk);
652 bool ret = false;
653
654 if (dst) {
655 struct tcp_metrics_block *tm;
656
657 rcu_read_lock();
658 tm = tcp_get_metrics(sk, dst, true);
659 if (tm) {
660 struct tcp_sock *tp = tcp_sk(sk);
661
662 if ((s32)(tm->tcpm_ts - tp->rx_opt.ts_recent) <= 0 ||
663 ((u32)get_seconds() - tm->tcpm_ts_stamp > TCP_PAWS_MSL &&
664 tm->tcpm_ts_stamp <= (u32)tp->rx_opt.ts_recent_stamp)) {
665 tm->tcpm_ts_stamp = (u32)tp->rx_opt.ts_recent_stamp;
666 tm->tcpm_ts = tp->rx_opt.ts_recent;
667 }
668 ret = true;
669 }
670 rcu_read_unlock();
671 }
672 return ret;
673}
674
675bool tcp_tw_remember_stamp(struct inet_timewait_sock *tw)
676{
677 struct tcp_metrics_block *tm;
678 bool ret = false;
679
680 rcu_read_lock();
681 tm = __tcp_get_metrics_tw(tw);
Julian Anastasov9a0a9502012-07-23 10:46:38 +0300682 if (tm) {
David S. Miller81166dd2012-07-10 03:14:24 -0700683 const struct tcp_timewait_sock *tcptw;
684 struct sock *sk = (struct sock *) tw;
685
686 tcptw = tcp_twsk(sk);
687 if ((s32)(tm->tcpm_ts - tcptw->tw_ts_recent) <= 0 ||
688 ((u32)get_seconds() - tm->tcpm_ts_stamp > TCP_PAWS_MSL &&
689 tm->tcpm_ts_stamp <= (u32)tcptw->tw_ts_recent_stamp)) {
690 tm->tcpm_ts_stamp = (u32)tcptw->tw_ts_recent_stamp;
691 tm->tcpm_ts = tcptw->tw_ts_recent;
692 }
693 ret = true;
694 }
695 rcu_read_unlock();
696
697 return ret;
698}
699
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000700static DEFINE_SEQLOCK(fastopen_seqlock);
701
702void tcp_fastopen_cache_get(struct sock *sk, u16 *mss,
Yuchung Chengaab48742012-07-19 06:43:10 +0000703 struct tcp_fastopen_cookie *cookie,
704 int *syn_loss, unsigned long *last_syn_loss)
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000705{
706 struct tcp_metrics_block *tm;
707
708 rcu_read_lock();
709 tm = tcp_get_metrics(sk, __sk_dst_get(sk), false);
710 if (tm) {
711 struct tcp_fastopen_metrics *tfom = &tm->tcpm_fastopen;
712 unsigned int seq;
713
714 do {
715 seq = read_seqbegin(&fastopen_seqlock);
716 if (tfom->mss)
717 *mss = tfom->mss;
718 *cookie = tfom->cookie;
Yuchung Chengaab48742012-07-19 06:43:10 +0000719 *syn_loss = tfom->syn_loss;
720 *last_syn_loss = *syn_loss ? tfom->last_syn_loss : 0;
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000721 } while (read_seqretry(&fastopen_seqlock, seq));
722 }
723 rcu_read_unlock();
724}
725
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000726void tcp_fastopen_cache_set(struct sock *sk, u16 mss,
Yuchung Chengaab48742012-07-19 06:43:10 +0000727 struct tcp_fastopen_cookie *cookie, bool syn_lost)
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000728{
Eric Dumazetdccf76c2013-11-13 15:00:46 -0800729 struct dst_entry *dst = __sk_dst_get(sk);
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000730 struct tcp_metrics_block *tm;
731
Eric Dumazetdccf76c2013-11-13 15:00:46 -0800732 if (!dst)
733 return;
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000734 rcu_read_lock();
Eric Dumazetdccf76c2013-11-13 15:00:46 -0800735 tm = tcp_get_metrics(sk, dst, true);
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000736 if (tm) {
737 struct tcp_fastopen_metrics *tfom = &tm->tcpm_fastopen;
738
739 write_seqlock_bh(&fastopen_seqlock);
Yuchung Chengc9686012013-10-29 10:09:05 -0700740 if (mss)
741 tfom->mss = mss;
742 if (cookie && cookie->len > 0)
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000743 tfom->cookie = *cookie;
Yuchung Chengaab48742012-07-19 06:43:10 +0000744 if (syn_lost) {
745 ++tfom->syn_loss;
746 tfom->last_syn_loss = jiffies;
747 } else
748 tfom->syn_loss = 0;
Yuchung Cheng1fe4c482012-07-19 06:43:06 +0000749 write_sequnlock_bh(&fastopen_seqlock);
750 }
751 rcu_read_unlock();
752}
753
Julian Anastasovd23ff702012-09-04 11:03:15 +0000754static struct genl_family tcp_metrics_nl_family = {
755 .id = GENL_ID_GENERATE,
756 .hdrsize = 0,
757 .name = TCP_METRICS_GENL_NAME,
758 .version = TCP_METRICS_GENL_VERSION,
759 .maxattr = TCP_METRICS_ATTR_MAX,
760 .netnsok = true,
761};
762
763static struct nla_policy tcp_metrics_nl_policy[TCP_METRICS_ATTR_MAX + 1] = {
764 [TCP_METRICS_ATTR_ADDR_IPV4] = { .type = NLA_U32, },
765 [TCP_METRICS_ATTR_ADDR_IPV6] = { .type = NLA_BINARY,
766 .len = sizeof(struct in6_addr), },
767 /* Following attributes are not received for GET/DEL,
768 * we keep them for reference
769 */
770#if 0
771 [TCP_METRICS_ATTR_AGE] = { .type = NLA_MSECS, },
772 [TCP_METRICS_ATTR_TW_TSVAL] = { .type = NLA_U32, },
773 [TCP_METRICS_ATTR_TW_TS_STAMP] = { .type = NLA_S32, },
774 [TCP_METRICS_ATTR_VALS] = { .type = NLA_NESTED, },
775 [TCP_METRICS_ATTR_FOPEN_MSS] = { .type = NLA_U16, },
776 [TCP_METRICS_ATTR_FOPEN_SYN_DROPS] = { .type = NLA_U16, },
777 [TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS] = { .type = NLA_MSECS, },
778 [TCP_METRICS_ATTR_FOPEN_COOKIE] = { .type = NLA_BINARY,
779 .len = TCP_FASTOPEN_COOKIE_MAX, },
780#endif
781};
782
783/* Add attributes, caller cancels its header on failure */
784static int tcp_metrics_fill_info(struct sk_buff *msg,
785 struct tcp_metrics_block *tm)
786{
787 struct nlattr *nest;
788 int i;
789
Christoph Paasch324fd552014-01-08 16:05:55 +0100790 switch (tm->tcpm_daddr.family) {
Julian Anastasovd23ff702012-09-04 11:03:15 +0000791 case AF_INET:
792 if (nla_put_be32(msg, TCP_METRICS_ATTR_ADDR_IPV4,
Christoph Paasch324fd552014-01-08 16:05:55 +0100793 tm->tcpm_daddr.addr.a4) < 0)
Julian Anastasovd23ff702012-09-04 11:03:15 +0000794 goto nla_put_failure;
Christoph Paasch8a593592014-01-08 16:05:57 +0100795 if (nla_put_be32(msg, TCP_METRICS_ATTR_SADDR_IPV4,
796 tm->tcpm_saddr.addr.a4) < 0)
797 goto nla_put_failure;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000798 break;
799 case AF_INET6:
800 if (nla_put(msg, TCP_METRICS_ATTR_ADDR_IPV6, 16,
Christoph Paasch324fd552014-01-08 16:05:55 +0100801 tm->tcpm_daddr.addr.a6) < 0)
Julian Anastasovd23ff702012-09-04 11:03:15 +0000802 goto nla_put_failure;
Christoph Paasch8a593592014-01-08 16:05:57 +0100803 if (nla_put(msg, TCP_METRICS_ATTR_SADDR_IPV6, 16,
804 tm->tcpm_saddr.addr.a6) < 0)
805 goto nla_put_failure;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000806 break;
807 default:
808 return -EAFNOSUPPORT;
809 }
810
811 if (nla_put_msecs(msg, TCP_METRICS_ATTR_AGE,
812 jiffies - tm->tcpm_stamp) < 0)
813 goto nla_put_failure;
814 if (tm->tcpm_ts_stamp) {
815 if (nla_put_s32(msg, TCP_METRICS_ATTR_TW_TS_STAMP,
816 (s32) (get_seconds() - tm->tcpm_ts_stamp)) < 0)
817 goto nla_put_failure;
818 if (nla_put_u32(msg, TCP_METRICS_ATTR_TW_TSVAL,
819 tm->tcpm_ts) < 0)
820 goto nla_put_failure;
821 }
822
823 {
824 int n = 0;
825
826 nest = nla_nest_start(msg, TCP_METRICS_ATTR_VALS);
827 if (!nest)
828 goto nla_put_failure;
Eric Dumazet740b0f12014-02-26 14:02:48 -0800829 for (i = 0; i < TCP_METRIC_MAX_KERNEL + 1; i++) {
830 u32 val = tm->tcpm_vals[i];
831
832 if (!val)
Julian Anastasovd23ff702012-09-04 11:03:15 +0000833 continue;
Eric Dumazet740b0f12014-02-26 14:02:48 -0800834 if (i == TCP_METRIC_RTT) {
835 if (nla_put_u32(msg, TCP_METRIC_RTT_US + 1,
836 val) < 0)
837 goto nla_put_failure;
838 n++;
839 val = max(val / 1000, 1U);
840 }
841 if (i == TCP_METRIC_RTTVAR) {
842 if (nla_put_u32(msg, TCP_METRIC_RTTVAR_US + 1,
843 val) < 0)
844 goto nla_put_failure;
845 n++;
846 val = max(val / 1000, 1U);
847 }
848 if (nla_put_u32(msg, i + 1, val) < 0)
Julian Anastasovd23ff702012-09-04 11:03:15 +0000849 goto nla_put_failure;
850 n++;
851 }
852 if (n)
853 nla_nest_end(msg, nest);
854 else
855 nla_nest_cancel(msg, nest);
856 }
857
858 {
859 struct tcp_fastopen_metrics tfom_copy[1], *tfom;
860 unsigned int seq;
861
862 do {
863 seq = read_seqbegin(&fastopen_seqlock);
864 tfom_copy[0] = tm->tcpm_fastopen;
865 } while (read_seqretry(&fastopen_seqlock, seq));
866
867 tfom = tfom_copy;
868 if (tfom->mss &&
869 nla_put_u16(msg, TCP_METRICS_ATTR_FOPEN_MSS,
870 tfom->mss) < 0)
871 goto nla_put_failure;
872 if (tfom->syn_loss &&
873 (nla_put_u16(msg, TCP_METRICS_ATTR_FOPEN_SYN_DROPS,
874 tfom->syn_loss) < 0 ||
875 nla_put_msecs(msg, TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS,
876 jiffies - tfom->last_syn_loss) < 0))
877 goto nla_put_failure;
878 if (tfom->cookie.len > 0 &&
879 nla_put(msg, TCP_METRICS_ATTR_FOPEN_COOKIE,
880 tfom->cookie.len, tfom->cookie.val) < 0)
881 goto nla_put_failure;
882 }
883
884 return 0;
885
886nla_put_failure:
887 return -EMSGSIZE;
888}
889
890static int tcp_metrics_dump_info(struct sk_buff *skb,
891 struct netlink_callback *cb,
892 struct tcp_metrics_block *tm)
893{
894 void *hdr;
895
Eric W. Biederman15e47302012-09-07 20:12:54 +0000896 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Julian Anastasovd23ff702012-09-04 11:03:15 +0000897 &tcp_metrics_nl_family, NLM_F_MULTI,
898 TCP_METRICS_CMD_GET);
899 if (!hdr)
900 return -EMSGSIZE;
901
902 if (tcp_metrics_fill_info(skb, tm) < 0)
903 goto nla_put_failure;
904
Johannes Berg053c0952015-01-16 22:09:00 +0100905 genlmsg_end(skb, hdr);
906 return 0;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000907
908nla_put_failure:
909 genlmsg_cancel(skb, hdr);
910 return -EMSGSIZE;
911}
912
913static int tcp_metrics_nl_dump(struct sk_buff *skb,
914 struct netlink_callback *cb)
915{
916 struct net *net = sock_net(skb->sk);
Eric W. Biederman098a6972015-03-13 00:07:44 -0500917 unsigned int max_rows = 1U << tcp_metrics_hash_log;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000918 unsigned int row, s_row = cb->args[0];
919 int s_col = cb->args[1], col = s_col;
920
921 for (row = s_row; row < max_rows; row++, s_col = 0) {
922 struct tcp_metrics_block *tm;
Eric W. Biederman098a6972015-03-13 00:07:44 -0500923 struct tcpm_hash_bucket *hb = tcp_metrics_hash + row;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000924
925 rcu_read_lock();
926 for (col = 0, tm = rcu_dereference(hb->chain); tm;
927 tm = rcu_dereference(tm->tcpm_next), col++) {
Eric W. Biederman849e8a02015-03-13 00:05:52 -0500928 if (!net_eq(tm_net(tm), net))
929 continue;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000930 if (col < s_col)
931 continue;
932 if (tcp_metrics_dump_info(skb, cb, tm) < 0) {
933 rcu_read_unlock();
934 goto done;
935 }
936 }
937 rcu_read_unlock();
938 }
939
940done:
941 cb->args[0] = row;
942 cb->args[1] = col;
943 return skb->len;
944}
945
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100946static int __parse_nl_addr(struct genl_info *info, struct inetpeer_addr *addr,
947 unsigned int *hash, int optional, int v4, int v6)
Julian Anastasovd23ff702012-09-04 11:03:15 +0000948{
949 struct nlattr *a;
950
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100951 a = info->attrs[v4];
Julian Anastasovd23ff702012-09-04 11:03:15 +0000952 if (a) {
953 addr->family = AF_INET;
954 addr->addr.a4 = nla_get_be32(a);
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100955 if (hash)
956 *hash = (__force unsigned int) addr->addr.a4;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000957 return 0;
958 }
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100959 a = info->attrs[v6];
Julian Anastasovd23ff702012-09-04 11:03:15 +0000960 if (a) {
Julian Anastasov2c42a3f2012-10-30 12:03:09 +0000961 if (nla_len(a) != sizeof(struct in6_addr))
Julian Anastasovd23ff702012-09-04 11:03:15 +0000962 return -EINVAL;
963 addr->family = AF_INET6;
964 memcpy(addr->addr.a6, nla_data(a), sizeof(addr->addr.a6));
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100965 if (hash)
966 *hash = ipv6_addr_hash((struct in6_addr *) addr->addr.a6);
Julian Anastasovd23ff702012-09-04 11:03:15 +0000967 return 0;
968 }
969 return optional ? 1 : -EAFNOSUPPORT;
970}
971
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100972static int parse_nl_addr(struct genl_info *info, struct inetpeer_addr *addr,
973 unsigned int *hash, int optional)
974{
975 return __parse_nl_addr(info, addr, hash, optional,
976 TCP_METRICS_ATTR_ADDR_IPV4,
977 TCP_METRICS_ATTR_ADDR_IPV6);
978}
979
980static int parse_nl_saddr(struct genl_info *info, struct inetpeer_addr *addr)
981{
982 return __parse_nl_addr(info, addr, NULL, 0,
983 TCP_METRICS_ATTR_SADDR_IPV4,
984 TCP_METRICS_ATTR_SADDR_IPV6);
985}
986
Julian Anastasovd23ff702012-09-04 11:03:15 +0000987static int tcp_metrics_nl_cmd_get(struct sk_buff *skb, struct genl_info *info)
988{
989 struct tcp_metrics_block *tm;
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100990 struct inetpeer_addr saddr, daddr;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000991 unsigned int hash;
992 struct sk_buff *msg;
993 struct net *net = genl_info_net(info);
994 void *reply;
995 int ret;
Christoph Paasch3e7013d2014-01-08 16:05:59 +0100996 bool src = true;
Julian Anastasovd23ff702012-09-04 11:03:15 +0000997
Christoph Paasch324fd552014-01-08 16:05:55 +0100998 ret = parse_nl_addr(info, &daddr, &hash, 0);
Julian Anastasovd23ff702012-09-04 11:03:15 +0000999 if (ret < 0)
1000 return ret;
1001
Christoph Paasch3e7013d2014-01-08 16:05:59 +01001002 ret = parse_nl_saddr(info, &saddr);
1003 if (ret < 0)
1004 src = false;
1005
Julian Anastasovd23ff702012-09-04 11:03:15 +00001006 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1007 if (!msg)
1008 return -ENOMEM;
1009
1010 reply = genlmsg_put_reply(msg, info, &tcp_metrics_nl_family, 0,
1011 info->genlhdr->cmd);
1012 if (!reply)
1013 goto nla_put_failure;
1014
Eric W. Biederman3e5da622015-03-13 00:05:24 -05001015 hash ^= net_hash_mix(net);
Eric W. Biederman098a6972015-03-13 00:07:44 -05001016 hash = hash_32(hash, tcp_metrics_hash_log);
Julian Anastasovd23ff702012-09-04 11:03:15 +00001017 ret = -ESRCH;
1018 rcu_read_lock();
Eric W. Biederman098a6972015-03-13 00:07:44 -05001019 for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001020 tm = rcu_dereference(tm->tcpm_next)) {
Christoph Paasch3e7013d2014-01-08 16:05:59 +01001021 if (addr_same(&tm->tcpm_daddr, &daddr) &&
Eric W. Biederman849e8a02015-03-13 00:05:52 -05001022 (!src || addr_same(&tm->tcpm_saddr, &saddr)) &&
1023 net_eq(tm_net(tm), net)) {
Julian Anastasovd23ff702012-09-04 11:03:15 +00001024 ret = tcp_metrics_fill_info(msg, tm);
1025 break;
1026 }
1027 }
1028 rcu_read_unlock();
1029 if (ret < 0)
1030 goto out_free;
1031
1032 genlmsg_end(msg, reply);
1033 return genlmsg_reply(msg, info);
1034
1035nla_put_failure:
1036 ret = -EMSGSIZE;
1037
1038out_free:
1039 nlmsg_free(msg);
1040 return ret;
1041}
1042
1043#define deref_locked_genl(p) \
1044 rcu_dereference_protected(p, lockdep_genl_is_held() && \
1045 lockdep_is_held(&tcp_metrics_lock))
1046
1047#define deref_genl(p) rcu_dereference_protected(p, lockdep_genl_is_held())
1048
Eric W. Biederman8a4bff72015-03-13 00:06:43 -05001049static void tcp_metrics_flush_all(struct net *net)
Julian Anastasovd23ff702012-09-04 11:03:15 +00001050{
Eric W. Biederman098a6972015-03-13 00:07:44 -05001051 unsigned int max_rows = 1U << tcp_metrics_hash_log;
1052 struct tcpm_hash_bucket *hb = tcp_metrics_hash;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001053 struct tcp_metrics_block *tm;
1054 unsigned int row;
1055
1056 for (row = 0; row < max_rows; row++, hb++) {
Eric W. Biederman04f721c2015-03-13 00:07:10 -05001057 struct tcp_metrics_block __rcu **pp;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001058 spin_lock_bh(&tcp_metrics_lock);
Eric W. Biederman04f721c2015-03-13 00:07:10 -05001059 pp = &hb->chain;
1060 for (tm = deref_locked_genl(*pp); tm;
1061 tm = deref_locked_genl(*pp)) {
1062 if (net_eq(tm_net(tm), net)) {
1063 *pp = tm->tcpm_next;
1064 kfree_rcu(tm, rcu_head);
1065 } else {
1066 pp = &tm->tcpm_next;
1067 }
Julian Anastasovd23ff702012-09-04 11:03:15 +00001068 }
Eric W. Biederman04f721c2015-03-13 00:07:10 -05001069 spin_unlock_bh(&tcp_metrics_lock);
Julian Anastasovd23ff702012-09-04 11:03:15 +00001070 }
Julian Anastasovd23ff702012-09-04 11:03:15 +00001071}
1072
1073static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info)
1074{
1075 struct tcpm_hash_bucket *hb;
Christoph Paasch00ca9c52014-01-21 13:30:26 +01001076 struct tcp_metrics_block *tm;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001077 struct tcp_metrics_block __rcu **pp;
Christoph Paasch3e7013d2014-01-08 16:05:59 +01001078 struct inetpeer_addr saddr, daddr;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001079 unsigned int hash;
1080 struct net *net = genl_info_net(info);
1081 int ret;
Christoph Paasch00ca9c52014-01-21 13:30:26 +01001082 bool src = true, found = false;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001083
Christoph Paasch324fd552014-01-08 16:05:55 +01001084 ret = parse_nl_addr(info, &daddr, &hash, 1);
Julian Anastasovd23ff702012-09-04 11:03:15 +00001085 if (ret < 0)
1086 return ret;
Eric W. Biederman8a4bff72015-03-13 00:06:43 -05001087 if (ret > 0) {
1088 tcp_metrics_flush_all(net);
1089 return 0;
1090 }
Christoph Paasch3e7013d2014-01-08 16:05:59 +01001091 ret = parse_nl_saddr(info, &saddr);
1092 if (ret < 0)
1093 src = false;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001094
Eric W. Biederman3e5da622015-03-13 00:05:24 -05001095 hash ^= net_hash_mix(net);
Eric W. Biederman098a6972015-03-13 00:07:44 -05001096 hash = hash_32(hash, tcp_metrics_hash_log);
1097 hb = tcp_metrics_hash + hash;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001098 pp = &hb->chain;
1099 spin_lock_bh(&tcp_metrics_lock);
Christoph Paaschbbf852b2014-01-08 16:05:58 +01001100 for (tm = deref_locked_genl(*pp); tm; tm = deref_locked_genl(*pp)) {
Christoph Paasch3e7013d2014-01-08 16:05:59 +01001101 if (addr_same(&tm->tcpm_daddr, &daddr) &&
Eric W. Biederman849e8a02015-03-13 00:05:52 -05001102 (!src || addr_same(&tm->tcpm_saddr, &saddr)) &&
1103 net_eq(tm_net(tm), net)) {
Julian Anastasovd23ff702012-09-04 11:03:15 +00001104 *pp = tm->tcpm_next;
Christoph Paasch00ca9c52014-01-21 13:30:26 +01001105 kfree_rcu(tm, rcu_head);
1106 found = true;
Christoph Paaschbbf852b2014-01-08 16:05:58 +01001107 } else {
1108 pp = &tm->tcpm_next;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001109 }
1110 }
1111 spin_unlock_bh(&tcp_metrics_lock);
Christoph Paasch00ca9c52014-01-21 13:30:26 +01001112 if (!found)
Julian Anastasovd23ff702012-09-04 11:03:15 +00001113 return -ESRCH;
Julian Anastasovd23ff702012-09-04 11:03:15 +00001114 return 0;
1115}
1116
Johannes Berg4534de82013-11-14 17:14:46 +01001117static const struct genl_ops tcp_metrics_nl_ops[] = {
Julian Anastasovd23ff702012-09-04 11:03:15 +00001118 {
1119 .cmd = TCP_METRICS_CMD_GET,
1120 .doit = tcp_metrics_nl_cmd_get,
1121 .dumpit = tcp_metrics_nl_dump,
1122 .policy = tcp_metrics_nl_policy,
Julian Anastasovd23ff702012-09-04 11:03:15 +00001123 },
1124 {
1125 .cmd = TCP_METRICS_CMD_DEL,
1126 .doit = tcp_metrics_nl_cmd_del,
1127 .policy = tcp_metrics_nl_policy,
1128 .flags = GENL_ADMIN_PERM,
1129 },
1130};
1131
Eric Dumazet5815d5e2012-07-19 23:02:34 +00001132static unsigned int tcpmhash_entries;
David S. Miller51c5d0c2012-07-10 00:49:14 -07001133static int __init set_tcpmhash_entries(char *str)
1134{
1135 ssize_t ret;
1136
1137 if (!str)
1138 return 0;
1139
Eric Dumazet5815d5e2012-07-19 23:02:34 +00001140 ret = kstrtouint(str, 0, &tcpmhash_entries);
David S. Miller51c5d0c2012-07-10 00:49:14 -07001141 if (ret)
1142 return 0;
1143
1144 return 1;
1145}
1146__setup("tcpmhash_entries=", set_tcpmhash_entries);
1147
1148static int __net_init tcp_net_metrics_init(struct net *net)
1149{
Eric Dumazet5815d5e2012-07-19 23:02:34 +00001150 size_t size;
1151 unsigned int slots;
David S. Miller51c5d0c2012-07-10 00:49:14 -07001152
Eric W. Biederman098a6972015-03-13 00:07:44 -05001153 if (!net_eq(net, &init_net))
1154 return 0;
1155
David S. Miller51c5d0c2012-07-10 00:49:14 -07001156 slots = tcpmhash_entries;
1157 if (!slots) {
1158 if (totalram_pages >= 128 * 1024)
1159 slots = 16 * 1024;
1160 else
1161 slots = 8 * 1024;
1162 }
1163
Eric W. Biederman098a6972015-03-13 00:07:44 -05001164 tcp_metrics_hash_log = order_base_2(slots);
1165 size = sizeof(struct tcpm_hash_bucket) << tcp_metrics_hash_log;
David S. Miller51c5d0c2012-07-10 00:49:14 -07001166
Eric W. Biederman098a6972015-03-13 00:07:44 -05001167 tcp_metrics_hash = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
1168 if (!tcp_metrics_hash)
1169 tcp_metrics_hash = vzalloc(size);
Eric Dumazet976a7022012-11-16 05:31:53 +00001170
Eric W. Biederman098a6972015-03-13 00:07:44 -05001171 if (!tcp_metrics_hash)
David S. Miller51c5d0c2012-07-10 00:49:14 -07001172 return -ENOMEM;
1173
David S. Miller51c5d0c2012-07-10 00:49:14 -07001174 return 0;
1175}
1176
1177static void __net_exit tcp_net_metrics_exit(struct net *net)
1178{
Eric W. Biederman098a6972015-03-13 00:07:44 -05001179 tcp_metrics_flush_all(net);
David S. Miller51c5d0c2012-07-10 00:49:14 -07001180}
1181
1182static __net_initdata struct pernet_operations tcp_net_metrics_ops = {
1183 .init = tcp_net_metrics_init,
1184 .exit = tcp_net_metrics_exit,
1185};
1186
1187void __init tcp_metrics_init(void)
1188{
Julian Anastasovd23ff702012-09-04 11:03:15 +00001189 int ret;
1190
1191 ret = register_pernet_subsys(&tcp_net_metrics_ops);
1192 if (ret < 0)
Eric W. Biederman64935172015-03-13 00:04:51 -05001193 panic("Could not allocate the tcp_metrics hash table\n");
1194
Julian Anastasovd23ff702012-09-04 11:03:15 +00001195 ret = genl_register_family_with_ops(&tcp_metrics_nl_family,
Johannes Bergc53ed742013-11-19 15:19:31 +01001196 tcp_metrics_nl_ops);
Julian Anastasovd23ff702012-09-04 11:03:15 +00001197 if (ret < 0)
Eric W. Biederman64935172015-03-13 00:04:51 -05001198 panic("Could not register tcp_metrics generic netlink\n");
David S. Miller51c5d0c2012-07-10 00:49:14 -07001199}