David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1 | #include <linux/rcupdate.h> |
| 2 | #include <linux/spinlock.h> |
| 3 | #include <linux/jiffies.h> |
David S. Miller | ab92bb2 | 2012-07-09 16:19:30 -0700 | [diff] [blame] | 4 | #include <linux/module.h> |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 5 | #include <linux/cache.h> |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 6 | #include <linux/slab.h> |
| 7 | #include <linux/init.h> |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 8 | #include <linux/tcp.h> |
Eric Dumazet | 5815d5e | 2012-07-19 23:02:34 +0000 | [diff] [blame] | 9 | #include <linux/hash.h> |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 10 | #include <linux/tcp_metrics.h> |
Eric Dumazet | 976a702 | 2012-11-16 05:31:53 +0000 | [diff] [blame] | 11 | #include <linux/vmalloc.h> |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 12 | |
| 13 | #include <net/inet_connection_sock.h> |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 14 | #include <net/net_namespace.h> |
David S. Miller | ab92bb2 | 2012-07-09 16:19:30 -0700 | [diff] [blame] | 15 | #include <net/request_sock.h> |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 16 | #include <net/inetpeer.h> |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 17 | #include <net/sock.h> |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 18 | #include <net/ipv6.h> |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 19 | #include <net/dst.h> |
| 20 | #include <net/tcp.h> |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 21 | #include <net/genetlink.h> |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 22 | |
| 23 | int sysctl_tcp_nometrics_save __read_mostly; |
| 24 | |
David S. Miller | 4180442 | 2014-01-18 00:55:41 -0800 | [diff] [blame] | 25 | static struct tcp_metrics_block *__tcp_get_metrics(const struct inetpeer_addr *saddr, |
| 26 | const struct inetpeer_addr *daddr, |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 27 | struct net *net, unsigned int hash); |
| 28 | |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 29 | struct tcp_fastopen_metrics { |
| 30 | u16 mss; |
Daniel Lee | 2646c83 | 2015-04-06 14:37:27 -0700 | [diff] [blame] | 31 | u16 syn_loss:10, /* Recurring Fast Open SYN losses */ |
| 32 | try_exp:2; /* Request w/ exp. option (once) */ |
Yuchung Cheng | aab4874 | 2012-07-19 06:43:10 +0000 | [diff] [blame] | 33 | unsigned long last_syn_loss; /* Last Fast Open SYN loss */ |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 34 | struct tcp_fastopen_cookie cookie; |
| 35 | }; |
| 36 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 37 | /* TCP_METRIC_MAX includes 2 extra fields for userspace compatibility |
| 38 | * Kernel only stores RTT and RTTVAR in usec resolution |
| 39 | */ |
| 40 | #define TCP_METRIC_MAX_KERNEL (TCP_METRIC_MAX - 2) |
| 41 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 42 | struct tcp_metrics_block { |
| 43 | struct tcp_metrics_block __rcu *tcpm_next; |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 44 | possible_net_t tcpm_net; |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 45 | struct inetpeer_addr tcpm_saddr; |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 46 | struct inetpeer_addr tcpm_daddr; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 47 | unsigned long tcpm_stamp; |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 48 | u32 tcpm_ts; |
| 49 | u32 tcpm_ts_stamp; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 50 | u32 tcpm_lock; |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 51 | u32 tcpm_vals[TCP_METRIC_MAX_KERNEL + 1]; |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 52 | struct tcp_fastopen_metrics tcpm_fastopen; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 53 | |
| 54 | struct rcu_head rcu_head; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 57 | static inline struct net *tm_net(struct tcp_metrics_block *tm) |
| 58 | { |
| 59 | return read_pnet(&tm->tcpm_net); |
| 60 | } |
| 61 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 62 | static bool tcp_metric_locked(struct tcp_metrics_block *tm, |
| 63 | enum tcp_metric_index idx) |
| 64 | { |
| 65 | return tm->tcpm_lock & (1 << idx); |
| 66 | } |
| 67 | |
| 68 | static u32 tcp_metric_get(struct tcp_metrics_block *tm, |
| 69 | enum tcp_metric_index idx) |
| 70 | { |
| 71 | return tm->tcpm_vals[idx]; |
| 72 | } |
| 73 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 74 | static void tcp_metric_set(struct tcp_metrics_block *tm, |
| 75 | enum tcp_metric_index idx, |
| 76 | u32 val) |
| 77 | { |
| 78 | tm->tcpm_vals[idx] = val; |
| 79 | } |
| 80 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 81 | static bool addr_same(const struct inetpeer_addr *a, |
| 82 | const struct inetpeer_addr *b) |
| 83 | { |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 84 | if (a->family != b->family) |
| 85 | return false; |
| 86 | if (a->family == AF_INET) |
| 87 | return a->addr.a4 == b->addr.a4; |
Jiri Benc | 8f55db4 | 2015-03-29 16:59:23 +0200 | [diff] [blame] | 88 | return ipv6_addr_equal(&a->addr.in6, &b->addr.in6); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | struct tcpm_hash_bucket { |
| 92 | struct tcp_metrics_block __rcu *chain; |
| 93 | }; |
| 94 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 95 | static struct tcpm_hash_bucket *tcp_metrics_hash __read_mostly; |
| 96 | static unsigned int tcp_metrics_hash_log __read_mostly; |
| 97 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 98 | static DEFINE_SPINLOCK(tcp_metrics_lock); |
| 99 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 100 | static void tcpm_suck_dst(struct tcp_metrics_block *tm, |
| 101 | const struct dst_entry *dst, |
Eric Dumazet | efeaa55 | 2013-05-03 19:12:45 +0000 | [diff] [blame] | 102 | bool fastopen_clear) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 103 | { |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 104 | u32 msval; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 105 | u32 val; |
| 106 | |
Julian Anastasov | 9a0a950 | 2012-07-23 10:46:38 +0300 | [diff] [blame] | 107 | tm->tcpm_stamp = jiffies; |
| 108 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 109 | val = 0; |
| 110 | if (dst_metric_locked(dst, RTAX_RTT)) |
| 111 | val |= 1 << TCP_METRIC_RTT; |
| 112 | if (dst_metric_locked(dst, RTAX_RTTVAR)) |
| 113 | val |= 1 << TCP_METRIC_RTTVAR; |
| 114 | if (dst_metric_locked(dst, RTAX_SSTHRESH)) |
| 115 | val |= 1 << TCP_METRIC_SSTHRESH; |
| 116 | if (dst_metric_locked(dst, RTAX_CWND)) |
| 117 | val |= 1 << TCP_METRIC_CWND; |
| 118 | if (dst_metric_locked(dst, RTAX_REORDERING)) |
| 119 | val |= 1 << TCP_METRIC_REORDERING; |
| 120 | tm->tcpm_lock = val; |
| 121 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 122 | msval = dst_metric_raw(dst, RTAX_RTT); |
| 123 | tm->tcpm_vals[TCP_METRIC_RTT] = msval * USEC_PER_MSEC; |
| 124 | |
| 125 | msval = dst_metric_raw(dst, RTAX_RTTVAR); |
| 126 | tm->tcpm_vals[TCP_METRIC_RTTVAR] = msval * USEC_PER_MSEC; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 127 | tm->tcpm_vals[TCP_METRIC_SSTHRESH] = dst_metric_raw(dst, RTAX_SSTHRESH); |
| 128 | tm->tcpm_vals[TCP_METRIC_CWND] = dst_metric_raw(dst, RTAX_CWND); |
| 129 | tm->tcpm_vals[TCP_METRIC_REORDERING] = dst_metric_raw(dst, RTAX_REORDERING); |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 130 | tm->tcpm_ts = 0; |
| 131 | tm->tcpm_ts_stamp = 0; |
Eric Dumazet | efeaa55 | 2013-05-03 19:12:45 +0000 | [diff] [blame] | 132 | if (fastopen_clear) { |
| 133 | tm->tcpm_fastopen.mss = 0; |
| 134 | tm->tcpm_fastopen.syn_loss = 0; |
Daniel Lee | 2646c83 | 2015-04-06 14:37:27 -0700 | [diff] [blame] | 135 | tm->tcpm_fastopen.try_exp = 0; |
| 136 | tm->tcpm_fastopen.cookie.exp = false; |
Eric Dumazet | efeaa55 | 2013-05-03 19:12:45 +0000 | [diff] [blame] | 137 | tm->tcpm_fastopen.cookie.len = 0; |
| 138 | } |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 141 | #define TCP_METRICS_TIMEOUT (60 * 60 * HZ) |
| 142 | |
| 143 | static void tcpm_check_stamp(struct tcp_metrics_block *tm, struct dst_entry *dst) |
| 144 | { |
| 145 | if (tm && unlikely(time_after(jiffies, tm->tcpm_stamp + TCP_METRICS_TIMEOUT))) |
| 146 | tcpm_suck_dst(tm, dst, false); |
| 147 | } |
| 148 | |
| 149 | #define TCP_METRICS_RECLAIM_DEPTH 5 |
| 150 | #define TCP_METRICS_RECLAIM_PTR (struct tcp_metrics_block *) 0x1UL |
| 151 | |
Eric Dumazet | 9f1ab18 | 2015-03-16 07:14:34 -0700 | [diff] [blame] | 152 | #define deref_locked(p) \ |
| 153 | rcu_dereference_protected(p, lockdep_is_held(&tcp_metrics_lock)) |
| 154 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 155 | static struct tcp_metrics_block *tcpm_new(struct dst_entry *dst, |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 156 | struct inetpeer_addr *saddr, |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 157 | struct inetpeer_addr *daddr, |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 158 | unsigned int hash) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 159 | { |
| 160 | struct tcp_metrics_block *tm; |
| 161 | struct net *net; |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 162 | bool reclaim = false; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 163 | |
| 164 | spin_lock_bh(&tcp_metrics_lock); |
| 165 | net = dev_net(dst->dev); |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 166 | |
| 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. Miller | 4180442 | 2014-01-18 00:55:41 -0800 | [diff] [blame] | 170 | tm = __tcp_get_metrics(saddr, daddr, net, hash); |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 171 | 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. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 180 | if (unlikely(reclaim)) { |
| 181 | struct tcp_metrics_block *oldest; |
| 182 | |
Eric Dumazet | 9f1ab18 | 2015-03-16 07:14:34 -0700 | [diff] [blame] | 183 | oldest = deref_locked(tcp_metrics_hash[hash].chain); |
| 184 | for (tm = deref_locked(oldest->tcpm_next); tm; |
| 185 | tm = deref_locked(tm->tcpm_next)) { |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 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. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 195 | write_pnet(&tm->tcpm_net, net); |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 196 | tm->tcpm_saddr = *saddr; |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 197 | tm->tcpm_daddr = *daddr; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 198 | |
Eric Dumazet | efeaa55 | 2013-05-03 19:12:45 +0000 | [diff] [blame] | 199 | tcpm_suck_dst(tm, dst, true); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 200 | |
| 201 | if (likely(!reclaim)) { |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 202 | tm->tcpm_next = tcp_metrics_hash[hash].chain; |
| 203 | rcu_assign_pointer(tcp_metrics_hash[hash].chain, tm); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | out_unlock: |
| 207 | spin_unlock_bh(&tcp_metrics_lock); |
| 208 | return tm; |
| 209 | } |
| 210 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 211 | static 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 Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 220 | static struct tcp_metrics_block *__tcp_get_metrics(const struct inetpeer_addr *saddr, |
| 221 | const struct inetpeer_addr *daddr, |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 222 | struct net *net, unsigned int hash) |
| 223 | { |
| 224 | struct tcp_metrics_block *tm; |
| 225 | int depth = 0; |
| 226 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 227 | for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 228 | tm = rcu_dereference(tm->tcpm_next)) { |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 229 | if (addr_same(&tm->tcpm_saddr, saddr) && |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 230 | addr_same(&tm->tcpm_daddr, daddr) && |
| 231 | net_eq(tm_net(tm), net)) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 232 | break; |
| 233 | depth++; |
| 234 | } |
| 235 | return tcp_get_encode(tm, depth); |
| 236 | } |
| 237 | |
| 238 | static 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 Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 242 | struct inetpeer_addr saddr, daddr; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 243 | unsigned int hash; |
| 244 | struct net *net; |
| 245 | |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 246 | saddr.family = req->rsk_ops->family; |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 247 | daddr.family = req->rsk_ops->family; |
| 248 | switch (daddr.family) { |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 249 | case AF_INET: |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 250 | inetpeer_set_addr_v4(&saddr, inet_rsk(req)->ir_loc_addr); |
| 251 | inetpeer_set_addr_v4(&daddr, inet_rsk(req)->ir_rmt_addr); |
David Ahern | 72afa35 | 2015-08-27 16:06:59 -0700 | [diff] [blame] | 252 | hash = ipv4_addr_hash(inet_rsk(req)->ir_rmt_addr); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 253 | break; |
Eric Dumazet | 634fb979 | 2013-10-09 15:21:29 -0700 | [diff] [blame] | 254 | #if IS_ENABLED(CONFIG_IPV6) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 255 | case AF_INET6: |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 256 | inetpeer_set_addr_v6(&saddr, &inet_rsk(req)->ir_v6_loc_addr); |
| 257 | inetpeer_set_addr_v6(&daddr, &inet_rsk(req)->ir_v6_rmt_addr); |
Eric Dumazet | 634fb979 | 2013-10-09 15:21:29 -0700 | [diff] [blame] | 258 | hash = ipv6_addr_hash(&inet_rsk(req)->ir_v6_rmt_addr); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 259 | break; |
Eric Dumazet | 634fb979 | 2013-10-09 15:21:29 -0700 | [diff] [blame] | 260 | #endif |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 261 | default: |
| 262 | return NULL; |
| 263 | } |
| 264 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 265 | net = dev_net(dst->dev); |
Eric W. Biederman | 3e5da62 | 2015-03-13 00:05:24 -0500 | [diff] [blame] | 266 | hash ^= net_hash_mix(net); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 267 | hash = hash_32(hash, tcp_metrics_hash_log); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 268 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 269 | for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 270 | tm = rcu_dereference(tm->tcpm_next)) { |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 271 | if (addr_same(&tm->tcpm_saddr, &saddr) && |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 272 | addr_same(&tm->tcpm_daddr, &daddr) && |
| 273 | net_eq(tm_net(tm), net)) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 274 | break; |
| 275 | } |
| 276 | tcpm_check_stamp(tm, dst); |
| 277 | return tm; |
| 278 | } |
| 279 | |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 280 | static struct tcp_metrics_block *__tcp_get_metrics_tw(struct inet_timewait_sock *tw) |
| 281 | { |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 282 | struct tcp_metrics_block *tm; |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 283 | struct inetpeer_addr saddr, daddr; |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 284 | unsigned int hash; |
| 285 | struct net *net; |
| 286 | |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 287 | if (tw->tw_family == AF_INET) { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 288 | inetpeer_set_addr_v4(&saddr, tw->tw_rcv_saddr); |
| 289 | inetpeer_set_addr_v4(&daddr, tw->tw_daddr); |
David Ahern | 72afa35 | 2015-08-27 16:06:59 -0700 | [diff] [blame] | 290 | hash = ipv4_addr_hash(tw->tw_daddr); |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 291 | } |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 292 | #if IS_ENABLED(CONFIG_IPV6) |
| 293 | else if (tw->tw_family == AF_INET6) { |
| 294 | if (ipv6_addr_v4mapped(&tw->tw_v6_daddr)) { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 295 | inetpeer_set_addr_v4(&saddr, tw->tw_rcv_saddr); |
| 296 | inetpeer_set_addr_v4(&daddr, tw->tw_daddr); |
David Ahern | 72afa35 | 2015-08-27 16:06:59 -0700 | [diff] [blame] | 297 | hash = ipv4_addr_hash(tw->tw_daddr); |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 298 | } else { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 299 | inetpeer_set_addr_v6(&saddr, &tw->tw_v6_rcv_saddr); |
| 300 | inetpeer_set_addr_v6(&daddr, &tw->tw_v6_daddr); |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 301 | hash = ipv6_addr_hash(&tw->tw_v6_daddr); |
| 302 | } |
| 303 | } |
| 304 | #endif |
| 305 | else |
| 306 | return NULL; |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 307 | |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 308 | net = twsk_net(tw); |
Eric W. Biederman | 3e5da62 | 2015-03-13 00:05:24 -0500 | [diff] [blame] | 309 | hash ^= net_hash_mix(net); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 310 | hash = hash_32(hash, tcp_metrics_hash_log); |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 311 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 312 | for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm; |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 313 | tm = rcu_dereference(tm->tcpm_next)) { |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 314 | if (addr_same(&tm->tcpm_saddr, &saddr) && |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 315 | addr_same(&tm->tcpm_daddr, &daddr) && |
| 316 | net_eq(tm_net(tm), net)) |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 317 | break; |
| 318 | } |
| 319 | return tm; |
| 320 | } |
| 321 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 322 | static struct tcp_metrics_block *tcp_get_metrics(struct sock *sk, |
| 323 | struct dst_entry *dst, |
| 324 | bool create) |
| 325 | { |
| 326 | struct tcp_metrics_block *tm; |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 327 | struct inetpeer_addr saddr, daddr; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 328 | unsigned int hash; |
| 329 | struct net *net; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 330 | |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 331 | if (sk->sk_family == AF_INET) { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 332 | inetpeer_set_addr_v4(&saddr, inet_sk(sk)->inet_saddr); |
| 333 | inetpeer_set_addr_v4(&daddr, inet_sk(sk)->inet_daddr); |
David Ahern | 72afa35 | 2015-08-27 16:06:59 -0700 | [diff] [blame] | 334 | hash = ipv4_addr_hash(inet_sk(sk)->inet_daddr); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 335 | } |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 336 | #if IS_ENABLED(CONFIG_IPV6) |
| 337 | else if (sk->sk_family == AF_INET6) { |
| 338 | if (ipv6_addr_v4mapped(&sk->sk_v6_daddr)) { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 339 | inetpeer_set_addr_v4(&saddr, inet_sk(sk)->inet_saddr); |
| 340 | inetpeer_set_addr_v4(&daddr, inet_sk(sk)->inet_daddr); |
David Ahern | 72afa35 | 2015-08-27 16:06:59 -0700 | [diff] [blame] | 341 | hash = ipv4_addr_hash(inet_sk(sk)->inet_daddr); |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 342 | } else { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 343 | inetpeer_set_addr_v6(&saddr, &sk->sk_v6_rcv_saddr); |
| 344 | inetpeer_set_addr_v6(&daddr, &sk->sk_v6_daddr); |
Christoph Paasch | 3ad88cf | 2014-01-22 13:58:44 +0100 | [diff] [blame] | 345 | hash = ipv6_addr_hash(&sk->sk_v6_daddr); |
| 346 | } |
| 347 | } |
| 348 | #endif |
| 349 | else |
| 350 | return NULL; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 351 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 352 | net = dev_net(dst->dev); |
Eric W. Biederman | 3e5da62 | 2015-03-13 00:05:24 -0500 | [diff] [blame] | 353 | hash ^= net_hash_mix(net); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 354 | hash = hash_32(hash, tcp_metrics_hash_log); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 355 | |
Christoph Paasch | a544302 | 2014-01-08 16:05:56 +0100 | [diff] [blame] | 356 | tm = __tcp_get_metrics(&saddr, &daddr, net, hash); |
Christoph Paasch | 77f99ad | 2014-01-16 20:01:21 +0100 | [diff] [blame] | 357 | if (tm == TCP_METRICS_RECLAIM_PTR) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 358 | tm = NULL; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 359 | if (!tm && create) |
David S. Miller | 4180442 | 2014-01-18 00:55:41 -0800 | [diff] [blame] | 360 | tm = tcpm_new(dst, &saddr, &daddr, hash); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 361 | else |
| 362 | tcpm_check_stamp(tm, dst); |
| 363 | |
| 364 | return tm; |
| 365 | } |
| 366 | |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 367 | /* Save metrics learned by this TCP session. This function is called |
| 368 | * only, when TCP finishes successfully i.e. when it enters TIME-WAIT |
| 369 | * or goes from LAST-ACK to CLOSE. |
| 370 | */ |
| 371 | void tcp_update_metrics(struct sock *sk) |
| 372 | { |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 373 | const struct inet_connection_sock *icsk = inet_csk(sk); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 374 | struct dst_entry *dst = __sk_dst_get(sk); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 375 | struct tcp_sock *tp = tcp_sk(sk); |
| 376 | struct tcp_metrics_block *tm; |
| 377 | unsigned long rtt; |
| 378 | u32 val; |
| 379 | int m; |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 380 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 381 | if (sysctl_tcp_nometrics_save || !dst) |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 382 | return; |
| 383 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 384 | if (dst->flags & DST_HOST) |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 385 | dst_confirm(dst); |
| 386 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 387 | rcu_read_lock(); |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 388 | if (icsk->icsk_backoff || !tp->srtt_us) { |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 389 | /* This session failed to estimate rtt. Why? |
| 390 | * Probably, no packets returned in time. Reset our |
| 391 | * results. |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 392 | */ |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 393 | tm = tcp_get_metrics(sk, dst, false); |
| 394 | if (tm && !tcp_metric_locked(tm, TCP_METRIC_RTT)) |
| 395 | tcp_metric_set(tm, TCP_METRIC_RTT, 0); |
| 396 | goto out_unlock; |
| 397 | } else |
| 398 | tm = tcp_get_metrics(sk, dst, true); |
| 399 | |
| 400 | if (!tm) |
| 401 | goto out_unlock; |
| 402 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 403 | rtt = tcp_metric_get(tm, TCP_METRIC_RTT); |
| 404 | m = rtt - tp->srtt_us; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 405 | |
| 406 | /* If newly calculated rtt larger than stored one, store new |
| 407 | * one. Otherwise, use EWMA. Remember, rtt overestimation is |
| 408 | * always better than underestimation. |
| 409 | */ |
| 410 | if (!tcp_metric_locked(tm, TCP_METRIC_RTT)) { |
| 411 | if (m <= 0) |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 412 | rtt = tp->srtt_us; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 413 | else |
| 414 | rtt -= (m >> 3); |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 415 | tcp_metric_set(tm, TCP_METRIC_RTT, rtt); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | if (!tcp_metric_locked(tm, TCP_METRIC_RTTVAR)) { |
| 419 | unsigned long var; |
| 420 | |
| 421 | if (m < 0) |
| 422 | m = -m; |
| 423 | |
| 424 | /* Scale deviation to rttvar fixed point */ |
| 425 | m >>= 1; |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 426 | if (m < tp->mdev_us) |
| 427 | m = tp->mdev_us; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 428 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 429 | var = tcp_metric_get(tm, TCP_METRIC_RTTVAR); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 430 | if (m >= var) |
| 431 | var = m; |
| 432 | else |
| 433 | var -= (var - m) >> 2; |
| 434 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 435 | tcp_metric_set(tm, TCP_METRIC_RTTVAR, var); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | if (tcp_in_initial_slowstart(tp)) { |
| 439 | /* Slow start still did not finish. */ |
| 440 | if (!tcp_metric_locked(tm, TCP_METRIC_SSTHRESH)) { |
| 441 | val = tcp_metric_get(tm, TCP_METRIC_SSTHRESH); |
| 442 | if (val && (tp->snd_cwnd >> 1) > val) |
| 443 | tcp_metric_set(tm, TCP_METRIC_SSTHRESH, |
| 444 | tp->snd_cwnd >> 1); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 445 | } |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 446 | if (!tcp_metric_locked(tm, TCP_METRIC_CWND)) { |
| 447 | val = tcp_metric_get(tm, TCP_METRIC_CWND); |
| 448 | if (tp->snd_cwnd > val) |
| 449 | tcp_metric_set(tm, TCP_METRIC_CWND, |
| 450 | tp->snd_cwnd); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 451 | } |
Yuchung Cheng | 071d508 | 2015-07-09 13:16:29 -0700 | [diff] [blame] | 452 | } else if (!tcp_in_slow_start(tp) && |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 453 | icsk->icsk_ca_state == TCP_CA_Open) { |
| 454 | /* Cong. avoidance phase, cwnd is reliable. */ |
| 455 | if (!tcp_metric_locked(tm, TCP_METRIC_SSTHRESH)) |
| 456 | tcp_metric_set(tm, TCP_METRIC_SSTHRESH, |
| 457 | max(tp->snd_cwnd >> 1, tp->snd_ssthresh)); |
| 458 | if (!tcp_metric_locked(tm, TCP_METRIC_CWND)) { |
| 459 | val = tcp_metric_get(tm, TCP_METRIC_CWND); |
Alexander Duyck | 2100844 | 2012-07-11 17:18:04 -0700 | [diff] [blame] | 460 | tcp_metric_set(tm, TCP_METRIC_CWND, (val + tp->snd_cwnd) >> 1); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 461 | } |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 462 | } else { |
| 463 | /* Else slow start did not finish, cwnd is non-sense, |
| 464 | * ssthresh may be also invalid. |
| 465 | */ |
| 466 | if (!tcp_metric_locked(tm, TCP_METRIC_CWND)) { |
| 467 | val = tcp_metric_get(tm, TCP_METRIC_CWND); |
| 468 | tcp_metric_set(tm, TCP_METRIC_CWND, |
| 469 | (val + tp->snd_ssthresh) >> 1); |
| 470 | } |
| 471 | if (!tcp_metric_locked(tm, TCP_METRIC_SSTHRESH)) { |
| 472 | val = tcp_metric_get(tm, TCP_METRIC_SSTHRESH); |
| 473 | if (val && tp->snd_ssthresh > val) |
| 474 | tcp_metric_set(tm, TCP_METRIC_SSTHRESH, |
| 475 | tp->snd_ssthresh); |
| 476 | } |
| 477 | if (!tcp_metric_locked(tm, TCP_METRIC_REORDERING)) { |
| 478 | val = tcp_metric_get(tm, TCP_METRIC_REORDERING); |
| 479 | if (val < tp->reordering && |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 480 | tp->reordering != sysctl_tcp_reordering) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 481 | tcp_metric_set(tm, TCP_METRIC_REORDERING, |
| 482 | tp->reordering); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 483 | } |
| 484 | } |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 485 | tm->tcpm_stamp = jiffies; |
| 486 | out_unlock: |
| 487 | rcu_read_unlock(); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | /* Initialize metrics on socket. */ |
| 491 | |
| 492 | void tcp_init_metrics(struct sock *sk) |
| 493 | { |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 494 | struct dst_entry *dst = __sk_dst_get(sk); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 495 | struct tcp_sock *tp = tcp_sk(sk); |
| 496 | struct tcp_metrics_block *tm; |
Yuchung Cheng | 1b7fdd2 | 2013-08-30 08:35:53 -0700 | [diff] [blame] | 497 | u32 val, crtt = 0; /* cached RTT scaled by 8 */ |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 498 | |
Ian Morris | 51456b2 | 2015-04-03 09:17:26 +0100 | [diff] [blame] | 499 | if (!dst) |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 500 | goto reset; |
| 501 | |
| 502 | dst_confirm(dst); |
| 503 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 504 | rcu_read_lock(); |
| 505 | tm = tcp_get_metrics(sk, dst, true); |
| 506 | if (!tm) { |
| 507 | rcu_read_unlock(); |
| 508 | goto reset; |
| 509 | } |
| 510 | |
| 511 | if (tcp_metric_locked(tm, TCP_METRIC_CWND)) |
| 512 | tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND); |
| 513 | |
| 514 | val = tcp_metric_get(tm, TCP_METRIC_SSTHRESH); |
| 515 | if (val) { |
| 516 | tp->snd_ssthresh = val; |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 517 | if (tp->snd_ssthresh > tp->snd_cwnd_clamp) |
| 518 | tp->snd_ssthresh = tp->snd_cwnd_clamp; |
| 519 | } else { |
| 520 | /* ssthresh may have been reduced unnecessarily during. |
| 521 | * 3WHS. Restore it back to its initial default. |
| 522 | */ |
| 523 | tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; |
| 524 | } |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 525 | val = tcp_metric_get(tm, TCP_METRIC_REORDERING); |
| 526 | if (val && tp->reordering != val) { |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 527 | tcp_disable_fack(tp); |
| 528 | tcp_disable_early_retrans(tp); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 529 | tp->reordering = val; |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 530 | } |
| 531 | |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 532 | crtt = tcp_metric_get(tm, TCP_METRIC_RTT); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 533 | rcu_read_unlock(); |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 534 | reset: |
Yuchung Cheng | 52f20e6 | 2013-09-03 14:14:35 -0700 | [diff] [blame] | 535 | /* The initial RTT measurement from the SYN/SYN-ACK is not ideal |
| 536 | * to seed the RTO for later data packets because SYN packets are |
| 537 | * small. Use the per-dst cached values to seed the RTO but keep |
| 538 | * the RTT estimator variables intact (e.g., srtt, mdev, rttvar). |
| 539 | * Later the RTO will be updated immediately upon obtaining the first |
| 540 | * data RTT sample (tcp_rtt_estimator()). Hence the cached RTT only |
| 541 | * influences the first RTO but not later RTT estimation. |
| 542 | * |
| 543 | * But if RTT is not available from the SYN (due to retransmits or |
| 544 | * syn cookies) or the cache, force a conservative 3secs timeout. |
| 545 | * |
| 546 | * A bit of theory. RTT is time passed after "normal" sized packet |
| 547 | * is sent until it is ACKed. In normal circumstances sending small |
| 548 | * packets force peer to delay ACKs and calculation is correct too. |
| 549 | * The algorithm is adaptive and, provided we follow specs, it |
| 550 | * NEVER underestimate RTT. BUT! If peer tries to make some clever |
| 551 | * tricks sort of "quick acks" for time long enough to decrease RTT |
| 552 | * to low value, and then abruptly stops to do it and starts to delay |
| 553 | * ACKs, wait for troubles. |
| 554 | */ |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 555 | if (crtt > tp->srtt_us) { |
Neal Cardwell | 269aa75 | 2013-09-16 21:44:20 -0400 | [diff] [blame] | 556 | /* Set RTO like tcp_rtt_estimator(), but from cached RTT. */ |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 557 | crtt /= 8 * USEC_PER_MSEC; |
Neal Cardwell | 269aa75 | 2013-09-16 21:44:20 -0400 | [diff] [blame] | 558 | inet_csk(sk)->icsk_rto = crtt + max(2 * crtt, tcp_rto_min(sk)); |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 559 | } else if (tp->srtt_us == 0) { |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 560 | /* RFC6298: 5.7 We've failed to get a valid RTT sample from |
| 561 | * 3WHS. This is most likely due to retransmission, |
| 562 | * including spurious one. Reset the RTO back to 3secs |
| 563 | * from the more aggressive 1sec to avoid more spurious |
| 564 | * retransmission. |
| 565 | */ |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 566 | tp->rttvar_us = jiffies_to_usecs(TCP_TIMEOUT_FALLBACK); |
| 567 | tp->mdev_us = tp->mdev_max_us = tp->rttvar_us; |
| 568 | |
David S. Miller | 4aabd8e | 2012-07-09 16:07:30 -0700 | [diff] [blame] | 569 | inet_csk(sk)->icsk_rto = TCP_TIMEOUT_FALLBACK; |
| 570 | } |
| 571 | /* Cut cwnd down to 1 per RFC5681 if SYN or SYN-ACK has been |
| 572 | * retransmitted. In light of RFC6298 more aggressive 1sec |
| 573 | * initRTO, we only reset cwnd when more than 1 SYN/SYN-ACK |
| 574 | * retransmission has occurred. |
| 575 | */ |
| 576 | if (tp->total_retrans > 1) |
| 577 | tp->snd_cwnd = 1; |
| 578 | else |
| 579 | tp->snd_cwnd = tcp_init_cwnd(tp, dst); |
| 580 | tp->snd_cwnd_stamp = tcp_time_stamp; |
| 581 | } |
David S. Miller | ab92bb2 | 2012-07-09 16:19:30 -0700 | [diff] [blame] | 582 | |
Hannes Frederic Sowa | a26552a | 2014-08-14 22:06:12 +0200 | [diff] [blame] | 583 | bool tcp_peer_is_proven(struct request_sock *req, struct dst_entry *dst, |
| 584 | bool paws_check, bool timestamps) |
David S. Miller | ab92bb2 | 2012-07-09 16:19:30 -0700 | [diff] [blame] | 585 | { |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 586 | struct tcp_metrics_block *tm; |
| 587 | bool ret; |
| 588 | |
David S. Miller | ab92bb2 | 2012-07-09 16:19:30 -0700 | [diff] [blame] | 589 | if (!dst) |
| 590 | return false; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 591 | |
| 592 | rcu_read_lock(); |
| 593 | tm = __tcp_get_metrics_req(req, dst); |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 594 | if (paws_check) { |
| 595 | if (tm && |
| 596 | (u32)get_seconds() - tm->tcpm_ts_stamp < TCP_PAWS_MSL && |
Hannes Frederic Sowa | a26552a | 2014-08-14 22:06:12 +0200 | [diff] [blame] | 597 | ((s32)(tm->tcpm_ts - req->ts_recent) > TCP_PAWS_WINDOW || |
| 598 | !timestamps)) |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 599 | ret = false; |
| 600 | else |
| 601 | ret = true; |
| 602 | } else { |
| 603 | if (tm && tcp_metric_get(tm, TCP_METRIC_RTT) && tm->tcpm_ts_stamp) |
| 604 | ret = true; |
| 605 | else |
| 606 | ret = false; |
| 607 | } |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 608 | rcu_read_unlock(); |
| 609 | |
| 610 | return ret; |
David S. Miller | ab92bb2 | 2012-07-09 16:19:30 -0700 | [diff] [blame] | 611 | } |
| 612 | EXPORT_SYMBOL_GPL(tcp_peer_is_proven); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 613 | |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 614 | void tcp_fetch_timewait_stamp(struct sock *sk, struct dst_entry *dst) |
| 615 | { |
| 616 | struct tcp_metrics_block *tm; |
| 617 | |
| 618 | rcu_read_lock(); |
| 619 | tm = tcp_get_metrics(sk, dst, true); |
| 620 | if (tm) { |
| 621 | struct tcp_sock *tp = tcp_sk(sk); |
| 622 | |
| 623 | if ((u32)get_seconds() - tm->tcpm_ts_stamp <= TCP_PAWS_MSL) { |
| 624 | tp->rx_opt.ts_recent_stamp = tm->tcpm_ts_stamp; |
| 625 | tp->rx_opt.ts_recent = tm->tcpm_ts; |
| 626 | } |
| 627 | } |
| 628 | rcu_read_unlock(); |
| 629 | } |
| 630 | EXPORT_SYMBOL_GPL(tcp_fetch_timewait_stamp); |
| 631 | |
| 632 | /* VJ's idea. Save last timestamp seen from this destination and hold |
| 633 | * it at least for normal timewait interval to use for duplicate |
| 634 | * segment detection in subsequent connections, before they enter |
| 635 | * synchronized state. |
| 636 | */ |
| 637 | bool tcp_remember_stamp(struct sock *sk) |
| 638 | { |
| 639 | struct dst_entry *dst = __sk_dst_get(sk); |
| 640 | bool ret = false; |
| 641 | |
| 642 | if (dst) { |
| 643 | struct tcp_metrics_block *tm; |
| 644 | |
| 645 | rcu_read_lock(); |
| 646 | tm = tcp_get_metrics(sk, dst, true); |
| 647 | if (tm) { |
| 648 | struct tcp_sock *tp = tcp_sk(sk); |
| 649 | |
| 650 | if ((s32)(tm->tcpm_ts - tp->rx_opt.ts_recent) <= 0 || |
| 651 | ((u32)get_seconds() - tm->tcpm_ts_stamp > TCP_PAWS_MSL && |
| 652 | tm->tcpm_ts_stamp <= (u32)tp->rx_opt.ts_recent_stamp)) { |
| 653 | tm->tcpm_ts_stamp = (u32)tp->rx_opt.ts_recent_stamp; |
| 654 | tm->tcpm_ts = tp->rx_opt.ts_recent; |
| 655 | } |
| 656 | ret = true; |
| 657 | } |
| 658 | rcu_read_unlock(); |
| 659 | } |
| 660 | return ret; |
| 661 | } |
| 662 | |
| 663 | bool tcp_tw_remember_stamp(struct inet_timewait_sock *tw) |
| 664 | { |
| 665 | struct tcp_metrics_block *tm; |
| 666 | bool ret = false; |
| 667 | |
| 668 | rcu_read_lock(); |
| 669 | tm = __tcp_get_metrics_tw(tw); |
Julian Anastasov | 9a0a950 | 2012-07-23 10:46:38 +0300 | [diff] [blame] | 670 | if (tm) { |
David S. Miller | 81166dd | 2012-07-10 03:14:24 -0700 | [diff] [blame] | 671 | const struct tcp_timewait_sock *tcptw; |
| 672 | struct sock *sk = (struct sock *) tw; |
| 673 | |
| 674 | tcptw = tcp_twsk(sk); |
| 675 | if ((s32)(tm->tcpm_ts - tcptw->tw_ts_recent) <= 0 || |
| 676 | ((u32)get_seconds() - tm->tcpm_ts_stamp > TCP_PAWS_MSL && |
| 677 | tm->tcpm_ts_stamp <= (u32)tcptw->tw_ts_recent_stamp)) { |
| 678 | tm->tcpm_ts_stamp = (u32)tcptw->tw_ts_recent_stamp; |
| 679 | tm->tcpm_ts = tcptw->tw_ts_recent; |
| 680 | } |
| 681 | ret = true; |
| 682 | } |
| 683 | rcu_read_unlock(); |
| 684 | |
| 685 | return ret; |
| 686 | } |
| 687 | |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 688 | static DEFINE_SEQLOCK(fastopen_seqlock); |
| 689 | |
| 690 | void tcp_fastopen_cache_get(struct sock *sk, u16 *mss, |
Yuchung Cheng | aab4874 | 2012-07-19 06:43:10 +0000 | [diff] [blame] | 691 | struct tcp_fastopen_cookie *cookie, |
| 692 | int *syn_loss, unsigned long *last_syn_loss) |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 693 | { |
| 694 | struct tcp_metrics_block *tm; |
| 695 | |
| 696 | rcu_read_lock(); |
| 697 | tm = tcp_get_metrics(sk, __sk_dst_get(sk), false); |
| 698 | if (tm) { |
| 699 | struct tcp_fastopen_metrics *tfom = &tm->tcpm_fastopen; |
| 700 | unsigned int seq; |
| 701 | |
| 702 | do { |
| 703 | seq = read_seqbegin(&fastopen_seqlock); |
| 704 | if (tfom->mss) |
| 705 | *mss = tfom->mss; |
| 706 | *cookie = tfom->cookie; |
Daniel Lee | 2646c83 | 2015-04-06 14:37:27 -0700 | [diff] [blame] | 707 | if (cookie->len <= 0 && tfom->try_exp == 1) |
| 708 | cookie->exp = true; |
Yuchung Cheng | aab4874 | 2012-07-19 06:43:10 +0000 | [diff] [blame] | 709 | *syn_loss = tfom->syn_loss; |
| 710 | *last_syn_loss = *syn_loss ? tfom->last_syn_loss : 0; |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 711 | } while (read_seqretry(&fastopen_seqlock, seq)); |
| 712 | } |
| 713 | rcu_read_unlock(); |
| 714 | } |
| 715 | |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 716 | void tcp_fastopen_cache_set(struct sock *sk, u16 mss, |
Daniel Lee | 2646c83 | 2015-04-06 14:37:27 -0700 | [diff] [blame] | 717 | struct tcp_fastopen_cookie *cookie, bool syn_lost, |
| 718 | u16 try_exp) |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 719 | { |
Eric Dumazet | dccf76c | 2013-11-13 15:00:46 -0800 | [diff] [blame] | 720 | struct dst_entry *dst = __sk_dst_get(sk); |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 721 | struct tcp_metrics_block *tm; |
| 722 | |
Eric Dumazet | dccf76c | 2013-11-13 15:00:46 -0800 | [diff] [blame] | 723 | if (!dst) |
| 724 | return; |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 725 | rcu_read_lock(); |
Eric Dumazet | dccf76c | 2013-11-13 15:00:46 -0800 | [diff] [blame] | 726 | tm = tcp_get_metrics(sk, dst, true); |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 727 | if (tm) { |
| 728 | struct tcp_fastopen_metrics *tfom = &tm->tcpm_fastopen; |
| 729 | |
| 730 | write_seqlock_bh(&fastopen_seqlock); |
Yuchung Cheng | c968601 | 2013-10-29 10:09:05 -0700 | [diff] [blame] | 731 | if (mss) |
| 732 | tfom->mss = mss; |
| 733 | if (cookie && cookie->len > 0) |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 734 | tfom->cookie = *cookie; |
Daniel Lee | 2646c83 | 2015-04-06 14:37:27 -0700 | [diff] [blame] | 735 | else if (try_exp > tfom->try_exp && |
| 736 | tfom->cookie.len <= 0 && !tfom->cookie.exp) |
| 737 | tfom->try_exp = try_exp; |
Yuchung Cheng | aab4874 | 2012-07-19 06:43:10 +0000 | [diff] [blame] | 738 | if (syn_lost) { |
| 739 | ++tfom->syn_loss; |
| 740 | tfom->last_syn_loss = jiffies; |
| 741 | } else |
| 742 | tfom->syn_loss = 0; |
Yuchung Cheng | 1fe4c48 | 2012-07-19 06:43:06 +0000 | [diff] [blame] | 743 | write_sequnlock_bh(&fastopen_seqlock); |
| 744 | } |
| 745 | rcu_read_unlock(); |
| 746 | } |
| 747 | |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 748 | static struct genl_family tcp_metrics_nl_family = { |
| 749 | .id = GENL_ID_GENERATE, |
| 750 | .hdrsize = 0, |
| 751 | .name = TCP_METRICS_GENL_NAME, |
| 752 | .version = TCP_METRICS_GENL_VERSION, |
| 753 | .maxattr = TCP_METRICS_ATTR_MAX, |
| 754 | .netnsok = true, |
| 755 | }; |
| 756 | |
| 757 | static struct nla_policy tcp_metrics_nl_policy[TCP_METRICS_ATTR_MAX + 1] = { |
| 758 | [TCP_METRICS_ATTR_ADDR_IPV4] = { .type = NLA_U32, }, |
| 759 | [TCP_METRICS_ATTR_ADDR_IPV6] = { .type = NLA_BINARY, |
| 760 | .len = sizeof(struct in6_addr), }, |
| 761 | /* Following attributes are not received for GET/DEL, |
| 762 | * we keep them for reference |
| 763 | */ |
| 764 | #if 0 |
| 765 | [TCP_METRICS_ATTR_AGE] = { .type = NLA_MSECS, }, |
| 766 | [TCP_METRICS_ATTR_TW_TSVAL] = { .type = NLA_U32, }, |
| 767 | [TCP_METRICS_ATTR_TW_TS_STAMP] = { .type = NLA_S32, }, |
| 768 | [TCP_METRICS_ATTR_VALS] = { .type = NLA_NESTED, }, |
| 769 | [TCP_METRICS_ATTR_FOPEN_MSS] = { .type = NLA_U16, }, |
| 770 | [TCP_METRICS_ATTR_FOPEN_SYN_DROPS] = { .type = NLA_U16, }, |
| 771 | [TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS] = { .type = NLA_MSECS, }, |
| 772 | [TCP_METRICS_ATTR_FOPEN_COOKIE] = { .type = NLA_BINARY, |
| 773 | .len = TCP_FASTOPEN_COOKIE_MAX, }, |
| 774 | #endif |
| 775 | }; |
| 776 | |
| 777 | /* Add attributes, caller cancels its header on failure */ |
| 778 | static int tcp_metrics_fill_info(struct sk_buff *msg, |
| 779 | struct tcp_metrics_block *tm) |
| 780 | { |
| 781 | struct nlattr *nest; |
| 782 | int i; |
| 783 | |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 784 | switch (tm->tcpm_daddr.family) { |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 785 | case AF_INET: |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 786 | if (nla_put_in_addr(msg, TCP_METRICS_ATTR_ADDR_IPV4, |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 787 | inetpeer_get_addr_v4(&tm->tcpm_daddr)) < 0) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 788 | goto nla_put_failure; |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 789 | if (nla_put_in_addr(msg, TCP_METRICS_ATTR_SADDR_IPV4, |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 790 | inetpeer_get_addr_v4(&tm->tcpm_saddr)) < 0) |
Christoph Paasch | 8a59359c | 2014-01-08 16:05:57 +0100 | [diff] [blame] | 791 | goto nla_put_failure; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 792 | break; |
| 793 | case AF_INET6: |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 794 | if (nla_put_in6_addr(msg, TCP_METRICS_ATTR_ADDR_IPV6, |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 795 | inetpeer_get_addr_v6(&tm->tcpm_daddr)) < 0) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 796 | goto nla_put_failure; |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 797 | if (nla_put_in6_addr(msg, TCP_METRICS_ATTR_SADDR_IPV6, |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 798 | inetpeer_get_addr_v6(&tm->tcpm_saddr)) < 0) |
Christoph Paasch | 8a59359c | 2014-01-08 16:05:57 +0100 | [diff] [blame] | 799 | goto nla_put_failure; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 800 | break; |
| 801 | default: |
| 802 | return -EAFNOSUPPORT; |
| 803 | } |
| 804 | |
| 805 | if (nla_put_msecs(msg, TCP_METRICS_ATTR_AGE, |
| 806 | jiffies - tm->tcpm_stamp) < 0) |
| 807 | goto nla_put_failure; |
| 808 | if (tm->tcpm_ts_stamp) { |
| 809 | if (nla_put_s32(msg, TCP_METRICS_ATTR_TW_TS_STAMP, |
| 810 | (s32) (get_seconds() - tm->tcpm_ts_stamp)) < 0) |
| 811 | goto nla_put_failure; |
| 812 | if (nla_put_u32(msg, TCP_METRICS_ATTR_TW_TSVAL, |
| 813 | tm->tcpm_ts) < 0) |
| 814 | goto nla_put_failure; |
| 815 | } |
| 816 | |
| 817 | { |
| 818 | int n = 0; |
| 819 | |
| 820 | nest = nla_nest_start(msg, TCP_METRICS_ATTR_VALS); |
| 821 | if (!nest) |
| 822 | goto nla_put_failure; |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 823 | for (i = 0; i < TCP_METRIC_MAX_KERNEL + 1; i++) { |
| 824 | u32 val = tm->tcpm_vals[i]; |
| 825 | |
| 826 | if (!val) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 827 | continue; |
Eric Dumazet | 740b0f1 | 2014-02-26 14:02:48 -0800 | [diff] [blame] | 828 | if (i == TCP_METRIC_RTT) { |
| 829 | if (nla_put_u32(msg, TCP_METRIC_RTT_US + 1, |
| 830 | val) < 0) |
| 831 | goto nla_put_failure; |
| 832 | n++; |
| 833 | val = max(val / 1000, 1U); |
| 834 | } |
| 835 | if (i == TCP_METRIC_RTTVAR) { |
| 836 | if (nla_put_u32(msg, TCP_METRIC_RTTVAR_US + 1, |
| 837 | val) < 0) |
| 838 | goto nla_put_failure; |
| 839 | n++; |
| 840 | val = max(val / 1000, 1U); |
| 841 | } |
| 842 | if (nla_put_u32(msg, i + 1, val) < 0) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 843 | goto nla_put_failure; |
| 844 | n++; |
| 845 | } |
| 846 | if (n) |
| 847 | nla_nest_end(msg, nest); |
| 848 | else |
| 849 | nla_nest_cancel(msg, nest); |
| 850 | } |
| 851 | |
| 852 | { |
| 853 | struct tcp_fastopen_metrics tfom_copy[1], *tfom; |
| 854 | unsigned int seq; |
| 855 | |
| 856 | do { |
| 857 | seq = read_seqbegin(&fastopen_seqlock); |
| 858 | tfom_copy[0] = tm->tcpm_fastopen; |
| 859 | } while (read_seqretry(&fastopen_seqlock, seq)); |
| 860 | |
| 861 | tfom = tfom_copy; |
| 862 | if (tfom->mss && |
| 863 | nla_put_u16(msg, TCP_METRICS_ATTR_FOPEN_MSS, |
| 864 | tfom->mss) < 0) |
| 865 | goto nla_put_failure; |
| 866 | if (tfom->syn_loss && |
| 867 | (nla_put_u16(msg, TCP_METRICS_ATTR_FOPEN_SYN_DROPS, |
| 868 | tfom->syn_loss) < 0 || |
| 869 | nla_put_msecs(msg, TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS, |
| 870 | jiffies - tfom->last_syn_loss) < 0)) |
| 871 | goto nla_put_failure; |
| 872 | if (tfom->cookie.len > 0 && |
| 873 | nla_put(msg, TCP_METRICS_ATTR_FOPEN_COOKIE, |
| 874 | tfom->cookie.len, tfom->cookie.val) < 0) |
| 875 | goto nla_put_failure; |
| 876 | } |
| 877 | |
| 878 | return 0; |
| 879 | |
| 880 | nla_put_failure: |
| 881 | return -EMSGSIZE; |
| 882 | } |
| 883 | |
| 884 | static int tcp_metrics_dump_info(struct sk_buff *skb, |
| 885 | struct netlink_callback *cb, |
| 886 | struct tcp_metrics_block *tm) |
| 887 | { |
| 888 | void *hdr; |
| 889 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 890 | hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq, |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 891 | &tcp_metrics_nl_family, NLM_F_MULTI, |
| 892 | TCP_METRICS_CMD_GET); |
| 893 | if (!hdr) |
| 894 | return -EMSGSIZE; |
| 895 | |
| 896 | if (tcp_metrics_fill_info(skb, tm) < 0) |
| 897 | goto nla_put_failure; |
| 898 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 899 | genlmsg_end(skb, hdr); |
| 900 | return 0; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 901 | |
| 902 | nla_put_failure: |
| 903 | genlmsg_cancel(skb, hdr); |
| 904 | return -EMSGSIZE; |
| 905 | } |
| 906 | |
| 907 | static int tcp_metrics_nl_dump(struct sk_buff *skb, |
| 908 | struct netlink_callback *cb) |
| 909 | { |
| 910 | struct net *net = sock_net(skb->sk); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 911 | unsigned int max_rows = 1U << tcp_metrics_hash_log; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 912 | unsigned int row, s_row = cb->args[0]; |
| 913 | int s_col = cb->args[1], col = s_col; |
| 914 | |
| 915 | for (row = s_row; row < max_rows; row++, s_col = 0) { |
| 916 | struct tcp_metrics_block *tm; |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 917 | struct tcpm_hash_bucket *hb = tcp_metrics_hash + row; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 918 | |
| 919 | rcu_read_lock(); |
| 920 | for (col = 0, tm = rcu_dereference(hb->chain); tm; |
| 921 | tm = rcu_dereference(tm->tcpm_next), col++) { |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 922 | if (!net_eq(tm_net(tm), net)) |
| 923 | continue; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 924 | if (col < s_col) |
| 925 | continue; |
| 926 | if (tcp_metrics_dump_info(skb, cb, tm) < 0) { |
| 927 | rcu_read_unlock(); |
| 928 | goto done; |
| 929 | } |
| 930 | } |
| 931 | rcu_read_unlock(); |
| 932 | } |
| 933 | |
| 934 | done: |
| 935 | cb->args[0] = row; |
| 936 | cb->args[1] = col; |
| 937 | return skb->len; |
| 938 | } |
| 939 | |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 940 | static int __parse_nl_addr(struct genl_info *info, struct inetpeer_addr *addr, |
| 941 | unsigned int *hash, int optional, int v4, int v6) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 942 | { |
| 943 | struct nlattr *a; |
| 944 | |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 945 | a = info->attrs[v4]; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 946 | if (a) { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 947 | inetpeer_set_addr_v4(addr, nla_get_in_addr(a)); |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 948 | if (hash) |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 949 | *hash = ipv4_addr_hash(inetpeer_get_addr_v4(addr)); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 950 | return 0; |
| 951 | } |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 952 | a = info->attrs[v6]; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 953 | if (a) { |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 954 | struct in6_addr in6; |
| 955 | |
Julian Anastasov | 2c42a3f | 2012-10-30 12:03:09 +0000 | [diff] [blame] | 956 | if (nla_len(a) != sizeof(struct in6_addr)) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 957 | return -EINVAL; |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 958 | in6 = nla_get_in6_addr(a); |
| 959 | inetpeer_set_addr_v6(addr, &in6); |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 960 | if (hash) |
David Ahern | 3abef28 | 2015-08-27 16:07:00 -0700 | [diff] [blame^] | 961 | *hash = ipv6_addr_hash(inetpeer_get_addr_v6(addr)); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 962 | return 0; |
| 963 | } |
| 964 | return optional ? 1 : -EAFNOSUPPORT; |
| 965 | } |
| 966 | |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 967 | static int parse_nl_addr(struct genl_info *info, struct inetpeer_addr *addr, |
| 968 | unsigned int *hash, int optional) |
| 969 | { |
| 970 | return __parse_nl_addr(info, addr, hash, optional, |
| 971 | TCP_METRICS_ATTR_ADDR_IPV4, |
| 972 | TCP_METRICS_ATTR_ADDR_IPV6); |
| 973 | } |
| 974 | |
| 975 | static int parse_nl_saddr(struct genl_info *info, struct inetpeer_addr *addr) |
| 976 | { |
| 977 | return __parse_nl_addr(info, addr, NULL, 0, |
| 978 | TCP_METRICS_ATTR_SADDR_IPV4, |
| 979 | TCP_METRICS_ATTR_SADDR_IPV6); |
| 980 | } |
| 981 | |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 982 | static int tcp_metrics_nl_cmd_get(struct sk_buff *skb, struct genl_info *info) |
| 983 | { |
| 984 | struct tcp_metrics_block *tm; |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 985 | struct inetpeer_addr saddr, daddr; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 986 | unsigned int hash; |
| 987 | struct sk_buff *msg; |
| 988 | struct net *net = genl_info_net(info); |
| 989 | void *reply; |
| 990 | int ret; |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 991 | bool src = true; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 992 | |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 993 | ret = parse_nl_addr(info, &daddr, &hash, 0); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 994 | if (ret < 0) |
| 995 | return ret; |
| 996 | |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 997 | ret = parse_nl_saddr(info, &saddr); |
| 998 | if (ret < 0) |
| 999 | src = false; |
| 1000 | |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1001 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 1002 | if (!msg) |
| 1003 | return -ENOMEM; |
| 1004 | |
| 1005 | reply = genlmsg_put_reply(msg, info, &tcp_metrics_nl_family, 0, |
| 1006 | info->genlhdr->cmd); |
| 1007 | if (!reply) |
| 1008 | goto nla_put_failure; |
| 1009 | |
Eric W. Biederman | 3e5da62 | 2015-03-13 00:05:24 -0500 | [diff] [blame] | 1010 | hash ^= net_hash_mix(net); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1011 | hash = hash_32(hash, tcp_metrics_hash_log); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1012 | ret = -ESRCH; |
| 1013 | rcu_read_lock(); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1014 | for (tm = rcu_dereference(tcp_metrics_hash[hash].chain); tm; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1015 | tm = rcu_dereference(tm->tcpm_next)) { |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 1016 | if (addr_same(&tm->tcpm_daddr, &daddr) && |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 1017 | (!src || addr_same(&tm->tcpm_saddr, &saddr)) && |
| 1018 | net_eq(tm_net(tm), net)) { |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1019 | ret = tcp_metrics_fill_info(msg, tm); |
| 1020 | break; |
| 1021 | } |
| 1022 | } |
| 1023 | rcu_read_unlock(); |
| 1024 | if (ret < 0) |
| 1025 | goto out_free; |
| 1026 | |
| 1027 | genlmsg_end(msg, reply); |
| 1028 | return genlmsg_reply(msg, info); |
| 1029 | |
| 1030 | nla_put_failure: |
| 1031 | ret = -EMSGSIZE; |
| 1032 | |
| 1033 | out_free: |
| 1034 | nlmsg_free(msg); |
| 1035 | return ret; |
| 1036 | } |
| 1037 | |
Eric W. Biederman | 8a4bff7 | 2015-03-13 00:06:43 -0500 | [diff] [blame] | 1038 | static void tcp_metrics_flush_all(struct net *net) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1039 | { |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1040 | unsigned int max_rows = 1U << tcp_metrics_hash_log; |
| 1041 | struct tcpm_hash_bucket *hb = tcp_metrics_hash; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1042 | struct tcp_metrics_block *tm; |
| 1043 | unsigned int row; |
| 1044 | |
| 1045 | for (row = 0; row < max_rows; row++, hb++) { |
Eric W. Biederman | 04f721c | 2015-03-13 00:07:10 -0500 | [diff] [blame] | 1046 | struct tcp_metrics_block __rcu **pp; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1047 | spin_lock_bh(&tcp_metrics_lock); |
Eric W. Biederman | 04f721c | 2015-03-13 00:07:10 -0500 | [diff] [blame] | 1048 | pp = &hb->chain; |
Eric Dumazet | 9f1ab18 | 2015-03-16 07:14:34 -0700 | [diff] [blame] | 1049 | for (tm = deref_locked(*pp); tm; tm = deref_locked(*pp)) { |
Eric W. Biederman | 04f721c | 2015-03-13 00:07:10 -0500 | [diff] [blame] | 1050 | if (net_eq(tm_net(tm), net)) { |
| 1051 | *pp = tm->tcpm_next; |
| 1052 | kfree_rcu(tm, rcu_head); |
| 1053 | } else { |
| 1054 | pp = &tm->tcpm_next; |
| 1055 | } |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1056 | } |
Eric W. Biederman | 04f721c | 2015-03-13 00:07:10 -0500 | [diff] [blame] | 1057 | spin_unlock_bh(&tcp_metrics_lock); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1058 | } |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1059 | } |
| 1060 | |
| 1061 | static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info) |
| 1062 | { |
| 1063 | struct tcpm_hash_bucket *hb; |
Christoph Paasch | 00ca9c5 | 2014-01-21 13:30:26 +0100 | [diff] [blame] | 1064 | struct tcp_metrics_block *tm; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1065 | struct tcp_metrics_block __rcu **pp; |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 1066 | struct inetpeer_addr saddr, daddr; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1067 | unsigned int hash; |
| 1068 | struct net *net = genl_info_net(info); |
| 1069 | int ret; |
Christoph Paasch | 00ca9c5 | 2014-01-21 13:30:26 +0100 | [diff] [blame] | 1070 | bool src = true, found = false; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1071 | |
Christoph Paasch | 324fd55 | 2014-01-08 16:05:55 +0100 | [diff] [blame] | 1072 | ret = parse_nl_addr(info, &daddr, &hash, 1); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1073 | if (ret < 0) |
| 1074 | return ret; |
Eric W. Biederman | 8a4bff7 | 2015-03-13 00:06:43 -0500 | [diff] [blame] | 1075 | if (ret > 0) { |
| 1076 | tcp_metrics_flush_all(net); |
| 1077 | return 0; |
| 1078 | } |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 1079 | ret = parse_nl_saddr(info, &saddr); |
| 1080 | if (ret < 0) |
| 1081 | src = false; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1082 | |
Eric W. Biederman | 3e5da62 | 2015-03-13 00:05:24 -0500 | [diff] [blame] | 1083 | hash ^= net_hash_mix(net); |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1084 | hash = hash_32(hash, tcp_metrics_hash_log); |
| 1085 | hb = tcp_metrics_hash + hash; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1086 | pp = &hb->chain; |
| 1087 | spin_lock_bh(&tcp_metrics_lock); |
Eric Dumazet | 9f1ab18 | 2015-03-16 07:14:34 -0700 | [diff] [blame] | 1088 | for (tm = deref_locked(*pp); tm; tm = deref_locked(*pp)) { |
Christoph Paasch | 3e7013d | 2014-01-08 16:05:59 +0100 | [diff] [blame] | 1089 | if (addr_same(&tm->tcpm_daddr, &daddr) && |
Eric W. Biederman | 849e8a0 | 2015-03-13 00:05:52 -0500 | [diff] [blame] | 1090 | (!src || addr_same(&tm->tcpm_saddr, &saddr)) && |
| 1091 | net_eq(tm_net(tm), net)) { |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1092 | *pp = tm->tcpm_next; |
Christoph Paasch | 00ca9c5 | 2014-01-21 13:30:26 +0100 | [diff] [blame] | 1093 | kfree_rcu(tm, rcu_head); |
| 1094 | found = true; |
Christoph Paasch | bbf852b | 2014-01-08 16:05:58 +0100 | [diff] [blame] | 1095 | } else { |
| 1096 | pp = &tm->tcpm_next; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1097 | } |
| 1098 | } |
| 1099 | spin_unlock_bh(&tcp_metrics_lock); |
Christoph Paasch | 00ca9c5 | 2014-01-21 13:30:26 +0100 | [diff] [blame] | 1100 | if (!found) |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1101 | return -ESRCH; |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1102 | return 0; |
| 1103 | } |
| 1104 | |
Johannes Berg | 4534de8 | 2013-11-14 17:14:46 +0100 | [diff] [blame] | 1105 | static const struct genl_ops tcp_metrics_nl_ops[] = { |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1106 | { |
| 1107 | .cmd = TCP_METRICS_CMD_GET, |
| 1108 | .doit = tcp_metrics_nl_cmd_get, |
| 1109 | .dumpit = tcp_metrics_nl_dump, |
| 1110 | .policy = tcp_metrics_nl_policy, |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1111 | }, |
| 1112 | { |
| 1113 | .cmd = TCP_METRICS_CMD_DEL, |
| 1114 | .doit = tcp_metrics_nl_cmd_del, |
| 1115 | .policy = tcp_metrics_nl_policy, |
| 1116 | .flags = GENL_ADMIN_PERM, |
| 1117 | }, |
| 1118 | }; |
| 1119 | |
Eric Dumazet | 5815d5e | 2012-07-19 23:02:34 +0000 | [diff] [blame] | 1120 | static unsigned int tcpmhash_entries; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1121 | static int __init set_tcpmhash_entries(char *str) |
| 1122 | { |
| 1123 | ssize_t ret; |
| 1124 | |
| 1125 | if (!str) |
| 1126 | return 0; |
| 1127 | |
Eric Dumazet | 5815d5e | 2012-07-19 23:02:34 +0000 | [diff] [blame] | 1128 | ret = kstrtouint(str, 0, &tcpmhash_entries); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1129 | if (ret) |
| 1130 | return 0; |
| 1131 | |
| 1132 | return 1; |
| 1133 | } |
| 1134 | __setup("tcpmhash_entries=", set_tcpmhash_entries); |
| 1135 | |
| 1136 | static int __net_init tcp_net_metrics_init(struct net *net) |
| 1137 | { |
Eric Dumazet | 5815d5e | 2012-07-19 23:02:34 +0000 | [diff] [blame] | 1138 | size_t size; |
| 1139 | unsigned int slots; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1140 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1141 | if (!net_eq(net, &init_net)) |
| 1142 | return 0; |
| 1143 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1144 | slots = tcpmhash_entries; |
| 1145 | if (!slots) { |
| 1146 | if (totalram_pages >= 128 * 1024) |
| 1147 | slots = 16 * 1024; |
| 1148 | else |
| 1149 | slots = 8 * 1024; |
| 1150 | } |
| 1151 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1152 | tcp_metrics_hash_log = order_base_2(slots); |
| 1153 | size = sizeof(struct tcpm_hash_bucket) << tcp_metrics_hash_log; |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1154 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1155 | tcp_metrics_hash = kzalloc(size, GFP_KERNEL | __GFP_NOWARN); |
| 1156 | if (!tcp_metrics_hash) |
| 1157 | tcp_metrics_hash = vzalloc(size); |
Eric Dumazet | 976a702 | 2012-11-16 05:31:53 +0000 | [diff] [blame] | 1158 | |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1159 | if (!tcp_metrics_hash) |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1160 | return -ENOMEM; |
| 1161 | |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1162 | return 0; |
| 1163 | } |
| 1164 | |
| 1165 | static void __net_exit tcp_net_metrics_exit(struct net *net) |
| 1166 | { |
Eric W. Biederman | 098a697 | 2015-03-13 00:07:44 -0500 | [diff] [blame] | 1167 | tcp_metrics_flush_all(net); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | static __net_initdata struct pernet_operations tcp_net_metrics_ops = { |
| 1171 | .init = tcp_net_metrics_init, |
| 1172 | .exit = tcp_net_metrics_exit, |
| 1173 | }; |
| 1174 | |
| 1175 | void __init tcp_metrics_init(void) |
| 1176 | { |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1177 | int ret; |
| 1178 | |
| 1179 | ret = register_pernet_subsys(&tcp_net_metrics_ops); |
| 1180 | if (ret < 0) |
Eric W. Biederman | 6493517 | 2015-03-13 00:04:51 -0500 | [diff] [blame] | 1181 | panic("Could not allocate the tcp_metrics hash table\n"); |
| 1182 | |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1183 | ret = genl_register_family_with_ops(&tcp_metrics_nl_family, |
Johannes Berg | c53ed74 | 2013-11-19 15:19:31 +0100 | [diff] [blame] | 1184 | tcp_metrics_nl_ops); |
Julian Anastasov | d23ff70 | 2012-09-04 11:03:15 +0000 | [diff] [blame] | 1185 | if (ret < 0) |
Eric W. Biederman | 6493517 | 2015-03-13 00:04:51 -0500 | [diff] [blame] | 1186 | panic("Could not register tcp_metrics generic netlink\n"); |
David S. Miller | 51c5d0c4 | 2012-07-10 00:49:14 -0700 | [diff] [blame] | 1187 | } |