]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - net/ipv4/tcp_ipv4.c
Merge branch 'vmwgfx-fixes-5.3' of git://people.freedesktop.org/~thomash/linux into...
[mirror_ubuntu-eoan-kernel.git] / net / ipv4 / tcp_ipv4.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * Implementation of the Transmission Control Protocol(TCP).
8 *
1da177e4
LT
9 * IPv4 specific functions
10 *
1da177e4
LT
11 * code split from:
12 * linux/ipv4/tcp.c
13 * linux/ipv4/tcp_input.c
14 * linux/ipv4/tcp_output.c
15 *
16 * See tcp.c for author information
1da177e4
LT
17 */
18
19/*
20 * Changes:
21 * David S. Miller : New socket lookup architecture.
22 * This code is dedicated to John Dyson.
23 * David S. Miller : Change semantics of established hash,
24 * half is devoted to TIME_WAIT sockets
25 * and the rest go in the other half.
26 * Andi Kleen : Add support for syncookies and fixed
27 * some bugs: ip options weren't passed to
28 * the TCP layer, missed a check for an
29 * ACK bit.
30 * Andi Kleen : Implemented fast path mtu discovery.
31 * Fixed many serious bugs in the
60236fdd 32 * request_sock handling and moved
1da177e4
LT
33 * most of it into the af independent code.
34 * Added tail drop and some other bugfixes.
caa20d9a 35 * Added new listen semantics.
1da177e4
LT
36 * Mike McLagan : Routing by source
37 * Juan Jose Ciarlante: ip_dynaddr bits
38 * Andi Kleen: various fixes.
39 * Vitaly E. Lavrov : Transparent proxy revived after year
40 * coma.
41 * Andi Kleen : Fix new listen.
42 * Andi Kleen : Fix accept error reporting.
43 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
44 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
45 * a single port at the same time.
46 */
47
afd46503 48#define pr_fmt(fmt) "TCP: " fmt
1da177e4 49
eb4dea58 50#include <linux/bottom_half.h>
1da177e4
LT
51#include <linux/types.h>
52#include <linux/fcntl.h>
53#include <linux/module.h>
54#include <linux/random.h>
55#include <linux/cache.h>
56#include <linux/jhash.h>
57#include <linux/init.h>
58#include <linux/times.h>
5a0e3ad6 59#include <linux/slab.h>
1da177e4 60
457c4cbc 61#include <net/net_namespace.h>
1da177e4 62#include <net/icmp.h>
304a1618 63#include <net/inet_hashtables.h>
1da177e4 64#include <net/tcp.h>
20380731 65#include <net/transp_v6.h>
1da177e4
LT
66#include <net/ipv6.h>
67#include <net/inet_common.h>
6d6ee43e 68#include <net/timewait_sock.h>
1da177e4 69#include <net/xfrm.h>
6e5714ea 70#include <net/secure_seq.h>
076bb0c8 71#include <net/busy_poll.h>
1da177e4
LT
72
73#include <linux/inet.h>
74#include <linux/ipv6.h>
75#include <linux/stddef.h>
76#include <linux/proc_fs.h>
77#include <linux/seq_file.h>
6797318e 78#include <linux/inetdevice.h>
1da177e4 79
cf80e0e4 80#include <crypto/hash.h>
cfb6eeb4
YH
81#include <linux/scatterlist.h>
82
c24b14c4
SL
83#include <trace/events/tcp.h>
84
cfb6eeb4 85#ifdef CONFIG_TCP_MD5SIG
a915da9b 86static int tcp_v4_md5_hash_hdr(char *md5_hash, const struct tcp_md5sig_key *key,
318cf7aa 87 __be32 daddr, __be32 saddr, const struct tcphdr *th);
cfb6eeb4
YH
88#endif
89
5caea4ea 90struct inet_hashinfo tcp_hashinfo;
4bc2f18b 91EXPORT_SYMBOL(tcp_hashinfo);
1da177e4 92
84b114b9 93static u32 tcp_v4_init_seq(const struct sk_buff *skb)
1da177e4 94{
84b114b9
ED
95 return secure_tcp_seq(ip_hdr(skb)->daddr,
96 ip_hdr(skb)->saddr,
97 tcp_hdr(skb)->dest,
98 tcp_hdr(skb)->source);
99}
100
5d2ed052 101static u32 tcp_v4_init_ts_off(const struct net *net, const struct sk_buff *skb)
84b114b9 102{
5d2ed052 103 return secure_tcp_ts_off(net, ip_hdr(skb)->daddr, ip_hdr(skb)->saddr);
1da177e4
LT
104}
105
6d6ee43e
ACM
106int tcp_twsk_unique(struct sock *sk, struct sock *sktw, void *twp)
107{
79e9fed4 108 const struct inet_timewait_sock *tw = inet_twsk(sktw);
6d6ee43e
ACM
109 const struct tcp_timewait_sock *tcptw = tcp_twsk(sktw);
110 struct tcp_sock *tp = tcp_sk(sk);
79e9fed4
111 int reuse = sock_net(sk)->ipv4.sysctl_tcp_tw_reuse;
112
113 if (reuse == 2) {
114 /* Still does not detect *everything* that goes through
115 * lo, since we require a loopback src or dst address
116 * or direct binding to 'lo' interface.
117 */
118 bool loopback = false;
119 if (tw->tw_bound_dev_if == LOOPBACK_IFINDEX)
120 loopback = true;
121#if IS_ENABLED(CONFIG_IPV6)
122 if (tw->tw_family == AF_INET6) {
123 if (ipv6_addr_loopback(&tw->tw_v6_daddr) ||
124 (ipv6_addr_v4mapped(&tw->tw_v6_daddr) &&
125 (tw->tw_v6_daddr.s6_addr[12] == 127)) ||
126 ipv6_addr_loopback(&tw->tw_v6_rcv_saddr) ||
127 (ipv6_addr_v4mapped(&tw->tw_v6_rcv_saddr) &&
128 (tw->tw_v6_rcv_saddr.s6_addr[12] == 127)))
129 loopback = true;
130 } else
131#endif
132 {
133 if (ipv4_is_loopback(tw->tw_daddr) ||
134 ipv4_is_loopback(tw->tw_rcv_saddr))
135 loopback = true;
136 }
137 if (!loopback)
138 reuse = 0;
139 }
6d6ee43e
ACM
140
141 /* With PAWS, it is safe from the viewpoint
142 of data integrity. Even without PAWS it is safe provided sequence
143 spaces do not overlap i.e. at data rates <= 80Mbit/sec.
144
145 Actually, the idea is close to VJ's one, only timestamp cache is
146 held not per host, but per port pair and TW bucket is used as state
147 holder.
148
149 If TW bucket has been already destroyed we fall back to VJ's scheme
150 and use initial timestamp retrieved from peer table.
151 */
152 if (tcptw->tw_ts_recent_stamp &&
cca9bab1
AB
153 (!twp || (reuse && time_after32(ktime_get_seconds(),
154 tcptw->tw_ts_recent_stamp)))) {
21684dc4
SB
155 /* In case of repair and re-using TIME-WAIT sockets we still
156 * want to be sure that it is safe as above but honor the
157 * sequence numbers and time stamps set as part of the repair
158 * process.
159 *
160 * Without this check re-using a TIME-WAIT socket with TCP
161 * repair would accumulate a -1 on the repair assigned
162 * sequence number. The first time it is reused the sequence
163 * is -1, the second time -2, etc. This fixes that issue
164 * without appearing to create any others.
165 */
166 if (likely(!tp->repair)) {
167 tp->write_seq = tcptw->tw_snd_nxt + 65535 + 2;
168 if (tp->write_seq == 0)
169 tp->write_seq = 1;
170 tp->rx_opt.ts_recent = tcptw->tw_ts_recent;
171 tp->rx_opt.ts_recent_stamp = tcptw->tw_ts_recent_stamp;
172 }
6d6ee43e
ACM
173 sock_hold(sktw);
174 return 1;
175 }
176
177 return 0;
178}
6d6ee43e
ACM
179EXPORT_SYMBOL_GPL(tcp_twsk_unique);
180
d74bad4e
AI
181static int tcp_v4_pre_connect(struct sock *sk, struct sockaddr *uaddr,
182 int addr_len)
183{
184 /* This check is replicated from tcp_v4_connect() and intended to
185 * prevent BPF program called below from accessing bytes that are out
186 * of the bound specified by user in addr_len.
187 */
188 if (addr_len < sizeof(struct sockaddr_in))
189 return -EINVAL;
190
191 sock_owned_by_me(sk);
192
193 return BPF_CGROUP_RUN_PROG_INET4_CONNECT(sk, uaddr);
194}
195
1da177e4
LT
196/* This will initiate an outgoing connection. */
197int tcp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
198{
2d7192d6 199 struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
1da177e4
LT
200 struct inet_sock *inet = inet_sk(sk);
201 struct tcp_sock *tp = tcp_sk(sk);
dca8b089 202 __be16 orig_sport, orig_dport;
bada8adc 203 __be32 daddr, nexthop;
da905bd1 204 struct flowi4 *fl4;
2d7192d6 205 struct rtable *rt;
1da177e4 206 int err;
f6d8bd05 207 struct ip_options_rcu *inet_opt;
1946e672 208 struct inet_timewait_death_row *tcp_death_row = &sock_net(sk)->ipv4.tcp_death_row;
1da177e4
LT
209
210 if (addr_len < sizeof(struct sockaddr_in))
211 return -EINVAL;
212
213 if (usin->sin_family != AF_INET)
214 return -EAFNOSUPPORT;
215
216 nexthop = daddr = usin->sin_addr.s_addr;
f6d8bd05 217 inet_opt = rcu_dereference_protected(inet->inet_opt,
1e1d04e6 218 lockdep_sock_is_held(sk));
f6d8bd05 219 if (inet_opt && inet_opt->opt.srr) {
1da177e4
LT
220 if (!daddr)
221 return -EINVAL;
f6d8bd05 222 nexthop = inet_opt->opt.faddr;
1da177e4
LT
223 }
224
dca8b089
DM
225 orig_sport = inet->inet_sport;
226 orig_dport = usin->sin_port;
da905bd1
DM
227 fl4 = &inet->cork.fl.u.ip4;
228 rt = ip_route_connect(fl4, nexthop, inet->inet_saddr,
b23dd4fe
DM
229 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
230 IPPROTO_TCP,
0e0d44ab 231 orig_sport, orig_dport, sk);
b23dd4fe
DM
232 if (IS_ERR(rt)) {
233 err = PTR_ERR(rt);
234 if (err == -ENETUNREACH)
f1d8cba6 235 IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTNOROUTES);
b23dd4fe 236 return err;
584bdf8c 237 }
1da177e4
LT
238
239 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
240 ip_rt_put(rt);
241 return -ENETUNREACH;
242 }
243
f6d8bd05 244 if (!inet_opt || !inet_opt->opt.srr)
da905bd1 245 daddr = fl4->daddr;
1da177e4 246
c720c7e8 247 if (!inet->inet_saddr)
da905bd1 248 inet->inet_saddr = fl4->saddr;
d1e559d0 249 sk_rcv_saddr_set(sk, inet->inet_saddr);
1da177e4 250
c720c7e8 251 if (tp->rx_opt.ts_recent_stamp && inet->inet_daddr != daddr) {
1da177e4
LT
252 /* Reset inherited state */
253 tp->rx_opt.ts_recent = 0;
254 tp->rx_opt.ts_recent_stamp = 0;
ee995283
PE
255 if (likely(!tp->repair))
256 tp->write_seq = 0;
1da177e4
LT
257 }
258
c720c7e8 259 inet->inet_dport = usin->sin_port;
d1e559d0 260 sk_daddr_set(sk, daddr);
1da177e4 261
d83d8461 262 inet_csk(sk)->icsk_ext_hdr_len = 0;
f6d8bd05
ED
263 if (inet_opt)
264 inet_csk(sk)->icsk_ext_hdr_len = inet_opt->opt.optlen;
1da177e4 265
bee7ca9e 266 tp->rx_opt.mss_clamp = TCP_MSS_DEFAULT;
1da177e4
LT
267
268 /* Socket identity is still unknown (sport may be zero).
269 * However we set state to SYN-SENT and not releasing socket
270 * lock select source port, enter ourselves into the hash tables and
271 * complete initialization after this.
272 */
273 tcp_set_state(sk, TCP_SYN_SENT);
1946e672 274 err = inet_hash_connect(tcp_death_row, sk);
1da177e4
LT
275 if (err)
276 goto failure;
277
877d1f62 278 sk_set_txhash(sk);
9e7ceb06 279
da905bd1 280 rt = ip_route_newports(fl4, rt, orig_sport, orig_dport,
b23dd4fe
DM
281 inet->inet_sport, inet->inet_dport, sk);
282 if (IS_ERR(rt)) {
283 err = PTR_ERR(rt);
284 rt = NULL;
1da177e4 285 goto failure;
b23dd4fe 286 }
1da177e4 287 /* OK, now commit destination to socket. */
bcd76111 288 sk->sk_gso_type = SKB_GSO_TCPV4;
d8d1f30b 289 sk_setup_caps(sk, &rt->dst);
19f6d3f3 290 rt = NULL;
1da177e4 291
00355fa5 292 if (likely(!tp->repair)) {
00355fa5 293 if (!tp->write_seq)
84b114b9
ED
294 tp->write_seq = secure_tcp_seq(inet->inet_saddr,
295 inet->inet_daddr,
296 inet->inet_sport,
297 usin->sin_port);
5d2ed052
ED
298 tp->tsoffset = secure_tcp_ts_off(sock_net(sk),
299 inet->inet_saddr,
84b114b9 300 inet->inet_daddr);
00355fa5 301 }
1da177e4 302
c720c7e8 303 inet->inet_id = tp->write_seq ^ jiffies;
1da177e4 304
19f6d3f3
WW
305 if (tcp_fastopen_defer_connect(sk, &err))
306 return err;
307 if (err)
308 goto failure;
309
2b916477 310 err = tcp_connect(sk);
ee995283 311
1da177e4
LT
312 if (err)
313 goto failure;
314
315 return 0;
316
317failure:
7174259e
ACM
318 /*
319 * This unhashes the socket and releases the local port,
320 * if necessary.
321 */
1da177e4
LT
322 tcp_set_state(sk, TCP_CLOSE);
323 ip_rt_put(rt);
324 sk->sk_route_caps = 0;
c720c7e8 325 inet->inet_dport = 0;
1da177e4
LT
326 return err;
327}
4bc2f18b 328EXPORT_SYMBOL(tcp_v4_connect);
1da177e4 329
1da177e4 330/*
563d34d0
ED
331 * This routine reacts to ICMP_FRAG_NEEDED mtu indications as defined in RFC1191.
332 * It can be called through tcp_release_cb() if socket was owned by user
333 * at the time tcp_v4_err() was called to handle ICMP message.
1da177e4 334 */
4fab9071 335void tcp_v4_mtu_reduced(struct sock *sk)
1da177e4 336{
1da177e4 337 struct inet_sock *inet = inet_sk(sk);
02b2faaf
ED
338 struct dst_entry *dst;
339 u32 mtu;
1da177e4 340
02b2faaf
ED
341 if ((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE))
342 return;
343 mtu = tcp_sk(sk)->mtu_info;
80d0a69f
DM
344 dst = inet_csk_update_pmtu(sk, mtu);
345 if (!dst)
1da177e4
LT
346 return;
347
1da177e4
LT
348 /* Something is about to be wrong... Remember soft error
349 * for the case, if this connection will not able to recover.
350 */
351 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
352 sk->sk_err_soft = EMSGSIZE;
353
354 mtu = dst_mtu(dst);
355
356 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
482fc609 357 ip_sk_accept_pmtu(sk) &&
d83d8461 358 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
1da177e4
LT
359 tcp_sync_mss(sk, mtu);
360
361 /* Resend the TCP packet because it's
362 * clear that the old packet has been
363 * dropped. This is the new "fast" path mtu
364 * discovery.
365 */
366 tcp_simple_retransmit(sk);
367 } /* else let the usual retransmit timer handle it */
368}
4fab9071 369EXPORT_SYMBOL(tcp_v4_mtu_reduced);
1da177e4 370
55be7a9c
DM
371static void do_redirect(struct sk_buff *skb, struct sock *sk)
372{
373 struct dst_entry *dst = __sk_dst_check(sk, 0);
374
1ed5c48f 375 if (dst)
6700c270 376 dst->ops->redirect(dst, sk, skb);
55be7a9c
DM
377}
378
26e37360
ED
379
380/* handle ICMP messages on TCP_NEW_SYN_RECV request sockets */
9cf74903 381void tcp_req_err(struct sock *sk, u32 seq, bool abort)
26e37360
ED
382{
383 struct request_sock *req = inet_reqsk(sk);
384 struct net *net = sock_net(sk);
385
386 /* ICMPs are not backlogged, hence we cannot get
387 * an established socket here.
388 */
26e37360 389 if (seq != tcp_rsk(req)->snt_isn) {
02a1d6e7 390 __NET_INC_STATS(net, LINUX_MIB_OUTOFWINDOWICMPS);
9cf74903 391 } else if (abort) {
26e37360
ED
392 /*
393 * Still in SYN_RECV, just remove it silently.
394 * There is no good way to pass the error to the newly
395 * created socket, and POSIX does not want network
396 * errors returned from accept().
397 */
c6973669 398 inet_csk_reqsk_queue_drop(req->rsk_listener, req);
9caad864 399 tcp_listendrop(req->rsk_listener);
26e37360 400 }
ef84d8ce 401 reqsk_put(req);
26e37360
ED
402}
403EXPORT_SYMBOL(tcp_req_err);
404
1da177e4
LT
405/*
406 * This routine is called by the ICMP module when it gets some
407 * sort of error condition. If err < 0 then the socket should
408 * be closed and the error returned to the user. If err > 0
409 * it's just the icmp type << 8 | icmp code. After adjustment
410 * header points to the first 8 bytes of the tcp header. We need
411 * to find the appropriate port.
412 *
413 * The locking strategy used here is very "optimistic". When
414 * someone else accesses the socket the ICMP is just dropped
415 * and for some paths there is no check at all.
416 * A more general error queue to queue errors for later handling
417 * is probably better.
418 *
419 */
420
32bbd879 421int tcp_v4_err(struct sk_buff *icmp_skb, u32 info)
1da177e4 422{
b71d1d42 423 const struct iphdr *iph = (const struct iphdr *)icmp_skb->data;
4d1a2d9e 424 struct tcphdr *th = (struct tcphdr *)(icmp_skb->data + (iph->ihl << 2));
f1ecd5d9 425 struct inet_connection_sock *icsk;
1da177e4
LT
426 struct tcp_sock *tp;
427 struct inet_sock *inet;
4d1a2d9e
DL
428 const int type = icmp_hdr(icmp_skb)->type;
429 const int code = icmp_hdr(icmp_skb)->code;
1da177e4 430 struct sock *sk;
f1ecd5d9 431 struct sk_buff *skb;
0a672f74 432 struct request_sock *fastopen;
9a568de4
ED
433 u32 seq, snd_una;
434 s32 remaining;
435 u32 delta_us;
1da177e4 436 int err;
4d1a2d9e 437 struct net *net = dev_net(icmp_skb->dev);
1da177e4 438
26e37360
ED
439 sk = __inet_lookup_established(net, &tcp_hashinfo, iph->daddr,
440 th->dest, iph->saddr, ntohs(th->source),
3fa6f616 441 inet_iif(icmp_skb), 0);
1da177e4 442 if (!sk) {
5d3848bc 443 __ICMP_INC_STATS(net, ICMP_MIB_INERRORS);
32bbd879 444 return -ENOENT;
1da177e4
LT
445 }
446 if (sk->sk_state == TCP_TIME_WAIT) {
9469c7b4 447 inet_twsk_put(inet_twsk(sk));
32bbd879 448 return 0;
1da177e4 449 }
26e37360 450 seq = ntohl(th->seq);
32bbd879
SB
451 if (sk->sk_state == TCP_NEW_SYN_RECV) {
452 tcp_req_err(sk, seq, type == ICMP_PARAMETERPROB ||
453 type == ICMP_TIME_EXCEEDED ||
454 (type == ICMP_DEST_UNREACH &&
455 (code == ICMP_NET_UNREACH ||
456 code == ICMP_HOST_UNREACH)));
457 return 0;
458 }
1da177e4
LT
459
460 bh_lock_sock(sk);
461 /* If too many ICMPs get dropped on busy
462 * servers this needs to be solved differently.
563d34d0
ED
463 * We do take care of PMTU discovery (RFC1191) special case :
464 * we can receive locally generated ICMP messages while socket is held.
1da177e4 465 */
b74aa930
ED
466 if (sock_owned_by_user(sk)) {
467 if (!(type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED))
02a1d6e7 468 __NET_INC_STATS(net, LINUX_MIB_LOCKDROPPEDICMPS);
b74aa930 469 }
1da177e4
LT
470 if (sk->sk_state == TCP_CLOSE)
471 goto out;
472
97e3ecd1 473 if (unlikely(iph->ttl < inet_sk(sk)->min_ttl)) {
02a1d6e7 474 __NET_INC_STATS(net, LINUX_MIB_TCPMINTTLDROP);
97e3ecd1 475 goto out;
476 }
477
f1ecd5d9 478 icsk = inet_csk(sk);
1da177e4 479 tp = tcp_sk(sk);
0a672f74
YC
480 /* XXX (TFO) - tp->snd_una should be ISN (tcp_create_openreq_child() */
481 fastopen = tp->fastopen_rsk;
482 snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una;
1da177e4 483 if (sk->sk_state != TCP_LISTEN &&
0a672f74 484 !between(seq, snd_una, tp->snd_nxt)) {
02a1d6e7 485 __NET_INC_STATS(net, LINUX_MIB_OUTOFWINDOWICMPS);
1da177e4
LT
486 goto out;
487 }
488
489 switch (type) {
55be7a9c 490 case ICMP_REDIRECT:
45caeaa5
JM
491 if (!sock_owned_by_user(sk))
492 do_redirect(icmp_skb, sk);
55be7a9c 493 goto out;
1da177e4
LT
494 case ICMP_SOURCE_QUENCH:
495 /* Just silently ignore these. */
496 goto out;
497 case ICMP_PARAMETERPROB:
498 err = EPROTO;
499 break;
500 case ICMP_DEST_UNREACH:
501 if (code > NR_ICMP_UNREACH)
502 goto out;
503
504 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
0d4f0608
ED
505 /* We are not interested in TCP_LISTEN and open_requests
506 * (SYN-ACKs send out by Linux are always <576bytes so
507 * they should go through unfragmented).
508 */
509 if (sk->sk_state == TCP_LISTEN)
510 goto out;
511
563d34d0 512 tp->mtu_info = info;
144d56e9 513 if (!sock_owned_by_user(sk)) {
563d34d0 514 tcp_v4_mtu_reduced(sk);
144d56e9 515 } else {
7aa5470c 516 if (!test_and_set_bit(TCP_MTU_REDUCED_DEFERRED, &sk->sk_tsq_flags))
144d56e9
ED
517 sock_hold(sk);
518 }
1da177e4
LT
519 goto out;
520 }
521
522 err = icmp_err_convert[code].errno;
f1ecd5d9
DL
523 /* check if icmp_skb allows revert of backoff
524 * (see draft-zimmermann-tcp-lcd) */
525 if (code != ICMP_NET_UNREACH && code != ICMP_HOST_UNREACH)
526 break;
527 if (seq != tp->snd_una || !icsk->icsk_retransmits ||
0a672f74 528 !icsk->icsk_backoff || fastopen)
f1ecd5d9
DL
529 break;
530
8f49c270
DM
531 if (sock_owned_by_user(sk))
532 break;
533
2c4cc971
ED
534 skb = tcp_rtx_queue_head(sk);
535 if (WARN_ON_ONCE(!skb))
536 break;
537
f1ecd5d9 538 icsk->icsk_backoff--;
fcdd1cf4
ED
539 icsk->icsk_rto = tp->srtt_us ? __tcp_set_rto(tp) :
540 TCP_TIMEOUT_INIT;
541 icsk->icsk_rto = inet_csk_rto_backoff(icsk, TCP_RTO_MAX);
f1ecd5d9 542
f1ecd5d9 543
9a568de4 544 tcp_mstamp_refresh(tp);
2fd66ffb 545 delta_us = (u32)(tp->tcp_mstamp - tcp_skb_timestamp_us(skb));
7faee5c0 546 remaining = icsk->icsk_rto -
9a568de4 547 usecs_to_jiffies(delta_us);
f1ecd5d9 548
9a568de4 549 if (remaining > 0) {
f1ecd5d9
DL
550 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
551 remaining, TCP_RTO_MAX);
f1ecd5d9
DL
552 } else {
553 /* RTO revert clocked out retransmission.
554 * Will retransmit now */
555 tcp_retransmit_timer(sk);
556 }
557
1da177e4
LT
558 break;
559 case ICMP_TIME_EXCEEDED:
560 err = EHOSTUNREACH;
561 break;
562 default:
563 goto out;
564 }
565
566 switch (sk->sk_state) {
1da177e4 567 case TCP_SYN_SENT:
0a672f74
YC
568 case TCP_SYN_RECV:
569 /* Only in fast or simultaneous open. If a fast open socket is
570 * is already accepted it is treated as a connected one below.
571 */
51456b29 572 if (fastopen && !fastopen->sk)
0a672f74
YC
573 break;
574
1da177e4 575 if (!sock_owned_by_user(sk)) {
1da177e4
LT
576 sk->sk_err = err;
577
578 sk->sk_error_report(sk);
579
580 tcp_done(sk);
581 } else {
582 sk->sk_err_soft = err;
583 }
584 goto out;
585 }
586
587 /* If we've already connected we will keep trying
588 * until we time out, or the user gives up.
589 *
590 * rfc1122 4.2.3.9 allows to consider as hard errors
591 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
592 * but it is obsoleted by pmtu discovery).
593 *
594 * Note, that in modern internet, where routing is unreliable
595 * and in each dark corner broken firewalls sit, sending random
596 * errors ordered by their masters even this two messages finally lose
597 * their original sense (even Linux sends invalid PORT_UNREACHs)
598 *
599 * Now we are in compliance with RFCs.
600 * --ANK (980905)
601 */
602
603 inet = inet_sk(sk);
604 if (!sock_owned_by_user(sk) && inet->recverr) {
605 sk->sk_err = err;
606 sk->sk_error_report(sk);
607 } else { /* Only an error on timeout */
608 sk->sk_err_soft = err;
609 }
610
611out:
612 bh_unlock_sock(sk);
613 sock_put(sk);
32bbd879 614 return 0;
1da177e4
LT
615}
616
28850dc7 617void __tcp_v4_send_check(struct sk_buff *skb, __be32 saddr, __be32 daddr)
1da177e4 618{
aa8223c7 619 struct tcphdr *th = tcp_hdr(skb);
1da177e4 620
98be9b12
ED
621 th->check = ~tcp_v4_check(skb->len, saddr, daddr, 0);
622 skb->csum_start = skb_transport_header(skb) - skb->head;
623 skb->csum_offset = offsetof(struct tcphdr, check);
1da177e4
LT
624}
625
419f9f89 626/* This routine computes an IPv4 TCP checksum. */
bb296246 627void tcp_v4_send_check(struct sock *sk, struct sk_buff *skb)
419f9f89 628{
cf533ea5 629 const struct inet_sock *inet = inet_sk(sk);
419f9f89
HX
630
631 __tcp_v4_send_check(skb, inet->inet_saddr, inet->inet_daddr);
632}
4bc2f18b 633EXPORT_SYMBOL(tcp_v4_send_check);
419f9f89 634
1da177e4
LT
635/*
636 * This routine will send an RST to the other tcp.
637 *
638 * Someone asks: why I NEVER use socket parameters (TOS, TTL etc.)
639 * for reset.
640 * Answer: if a packet caused RST, it is not for a socket
641 * existing in our system, if it is matched to a socket,
642 * it is just duplicate segment or bug in other side's TCP.
643 * So that we build reply only basing on parameters
644 * arrived with segment.
645 * Exception: precedence violation. We do not implement it in any case.
646 */
647
a00e7444 648static void tcp_v4_send_reset(const struct sock *sk, struct sk_buff *skb)
1da177e4 649{
cf533ea5 650 const struct tcphdr *th = tcp_hdr(skb);
cfb6eeb4
YH
651 struct {
652 struct tcphdr th;
653#ifdef CONFIG_TCP_MD5SIG
714e85be 654 __be32 opt[(TCPOLEN_MD5SIG_ALIGNED >> 2)];
cfb6eeb4
YH
655#endif
656 } rep;
1da177e4 657 struct ip_reply_arg arg;
cfb6eeb4 658#ifdef CONFIG_TCP_MD5SIG
e46787f0 659 struct tcp_md5sig_key *key = NULL;
658ddaaf
SL
660 const __u8 *hash_location = NULL;
661 unsigned char newhash[16];
662 int genhash;
663 struct sock *sk1 = NULL;
cfb6eeb4 664#endif
d6fb396c 665 u64 transmit_time = 0;
00483690 666 struct sock *ctl_sk;
d6fb396c 667 struct net *net;
1da177e4
LT
668
669 /* Never send a reset in response to a reset. */
670 if (th->rst)
671 return;
672
c3658e8d
ED
673 /* If sk not NULL, it means we did a successful lookup and incoming
674 * route had to be correct. prequeue might have dropped our dst.
675 */
676 if (!sk && skb_rtable(skb)->rt_type != RTN_LOCAL)
1da177e4
LT
677 return;
678
679 /* Swap the send and the receive. */
cfb6eeb4
YH
680 memset(&rep, 0, sizeof(rep));
681 rep.th.dest = th->source;
682 rep.th.source = th->dest;
683 rep.th.doff = sizeof(struct tcphdr) / 4;
684 rep.th.rst = 1;
1da177e4
LT
685
686 if (th->ack) {
cfb6eeb4 687 rep.th.seq = th->ack_seq;
1da177e4 688 } else {
cfb6eeb4
YH
689 rep.th.ack = 1;
690 rep.th.ack_seq = htonl(ntohl(th->seq) + th->syn + th->fin +
691 skb->len - (th->doff << 2));
1da177e4
LT
692 }
693
7174259e 694 memset(&arg, 0, sizeof(arg));
cfb6eeb4
YH
695 arg.iov[0].iov_base = (unsigned char *)&rep;
696 arg.iov[0].iov_len = sizeof(rep.th);
697
0f85feae 698 net = sk ? sock_net(sk) : dev_net(skb_dst(skb)->dev);
cfb6eeb4 699#ifdef CONFIG_TCP_MD5SIG
3b24d854 700 rcu_read_lock();
658ddaaf 701 hash_location = tcp_parse_md5sig_option(th);
271c3b9b 702 if (sk && sk_fullsock(sk)) {
e46787f0
FW
703 key = tcp_md5_do_lookup(sk, (union tcp_md5_addr *)
704 &ip_hdr(skb)->saddr, AF_INET);
705 } else if (hash_location) {
658ddaaf
SL
706 /*
707 * active side is lost. Try to find listening socket through
708 * source port, and then find md5 key through listening socket.
709 * we are not loose security here:
710 * Incoming packet is checked with md5 hash with finding key,
711 * no RST generated if md5 hash doesn't match.
712 */
a583636a
CG
713 sk1 = __inet_lookup_listener(net, &tcp_hashinfo, NULL, 0,
714 ip_hdr(skb)->saddr,
da5e3630 715 th->source, ip_hdr(skb)->daddr,
3fa6f616
DA
716 ntohs(th->source), inet_iif(skb),
717 tcp_v4_sdif(skb));
658ddaaf
SL
718 /* don't send rst if it can't find key */
719 if (!sk1)
3b24d854
ED
720 goto out;
721
658ddaaf
SL
722 key = tcp_md5_do_lookup(sk1, (union tcp_md5_addr *)
723 &ip_hdr(skb)->saddr, AF_INET);
724 if (!key)
3b24d854
ED
725 goto out;
726
658ddaaf 727
39f8e58e 728 genhash = tcp_v4_md5_hash_skb(newhash, key, NULL, skb);
658ddaaf 729 if (genhash || memcmp(hash_location, newhash, 16) != 0)
3b24d854
ED
730 goto out;
731
658ddaaf
SL
732 }
733
cfb6eeb4
YH
734 if (key) {
735 rep.opt[0] = htonl((TCPOPT_NOP << 24) |
736 (TCPOPT_NOP << 16) |
737 (TCPOPT_MD5SIG << 8) |
738 TCPOLEN_MD5SIG);
739 /* Update length and the length the header thinks exists */
740 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
741 rep.th.doff = arg.iov[0].iov_len / 4;
742
49a72dfb 743 tcp_v4_md5_hash_hdr((__u8 *) &rep.opt[1],
78e645cb
IJ
744 key, ip_hdr(skb)->saddr,
745 ip_hdr(skb)->daddr, &rep.th);
cfb6eeb4
YH
746 }
747#endif
eddc9ec5
ACM
748 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
749 ip_hdr(skb)->saddr, /* XXX */
52cd5750 750 arg.iov[0].iov_len, IPPROTO_TCP, 0);
1da177e4 751 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
271c3b9b
FW
752 arg.flags = (sk && inet_sk_transparent(sk)) ? IP_REPLY_ARG_NOSRCCHECK : 0;
753
e2446eaa 754 /* When socket is gone, all binding information is lost.
4c675258
AK
755 * routing might fail in this case. No choice here, if we choose to force
756 * input interface, we will misroute in case of asymmetric route.
e2446eaa 757 */
c24b14c4 758 if (sk) {
4c675258 759 arg.bound_dev_if = sk->sk_bound_dev_if;
5c487bb9
SL
760 if (sk_fullsock(sk))
761 trace_tcp_send_reset(sk, skb);
c24b14c4 762 }
1da177e4 763
271c3b9b
FW
764 BUILD_BUG_ON(offsetof(struct sock, sk_bound_dev_if) !=
765 offsetof(struct inet_timewait_sock, tw_bound_dev_if));
766
66b13d99 767 arg.tos = ip_hdr(skb)->tos;
e2d118a1 768 arg.uid = sock_net_uid(net, sk && sk_fullsock(sk) ? sk : NULL);
47dcc20a 769 local_bh_disable();
5472c3c6 770 ctl_sk = this_cpu_read(*net->ipv4.tcp_sk);
a842fe14 771 if (sk) {
00483690
JM
772 ctl_sk->sk_mark = (sk->sk_state == TCP_TIME_WAIT) ?
773 inet_twsk(sk)->tw_mark : sk->sk_mark;
d6fb396c 774 transmit_time = tcp_transmit_time(sk);
a842fe14 775 }
00483690 776 ip_send_unicast_reply(ctl_sk,
bdbbb852 777 skb, &TCP_SKB_CB(skb)->header.h4.opt,
24a2d43d 778 ip_hdr(skb)->saddr, ip_hdr(skb)->daddr,
d6fb396c
ED
779 &arg, arg.iov[0].iov_len,
780 transmit_time);
1da177e4 781
00483690 782 ctl_sk->sk_mark = 0;
90bbcc60
ED
783 __TCP_INC_STATS(net, TCP_MIB_OUTSEGS);
784 __TCP_INC_STATS(net, TCP_MIB_OUTRSTS);
47dcc20a 785 local_bh_enable();
658ddaaf
SL
786
787#ifdef CONFIG_TCP_MD5SIG
3b24d854
ED
788out:
789 rcu_read_unlock();
658ddaaf 790#endif
1da177e4
LT
791}
792
793/* The code following below sending ACKs in SYN-RECV and TIME-WAIT states
794 outside socket context is ugly, certainly. What can I do?
795 */
796
e2d118a1 797static void tcp_v4_send_ack(const struct sock *sk,
e62a123b 798 struct sk_buff *skb, u32 seq, u32 ack,
ee684b6f 799 u32 win, u32 tsval, u32 tsecr, int oif,
88ef4a5a 800 struct tcp_md5sig_key *key,
66b13d99 801 int reply_flags, u8 tos)
1da177e4 802{
cf533ea5 803 const struct tcphdr *th = tcp_hdr(skb);
1da177e4
LT
804 struct {
805 struct tcphdr th;
714e85be 806 __be32 opt[(TCPOLEN_TSTAMP_ALIGNED >> 2)
cfb6eeb4 807#ifdef CONFIG_TCP_MD5SIG
714e85be 808 + (TCPOLEN_MD5SIG_ALIGNED >> 2)
cfb6eeb4
YH
809#endif
810 ];
1da177e4 811 } rep;
e2d118a1 812 struct net *net = sock_net(sk);
1da177e4 813 struct ip_reply_arg arg;
00483690 814 struct sock *ctl_sk;
d6fb396c 815 u64 transmit_time;
1da177e4
LT
816
817 memset(&rep.th, 0, sizeof(struct tcphdr));
7174259e 818 memset(&arg, 0, sizeof(arg));
1da177e4
LT
819
820 arg.iov[0].iov_base = (unsigned char *)&rep;
821 arg.iov[0].iov_len = sizeof(rep.th);
ee684b6f 822 if (tsecr) {
cfb6eeb4
YH
823 rep.opt[0] = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
824 (TCPOPT_TIMESTAMP << 8) |
825 TCPOLEN_TIMESTAMP);
ee684b6f
AV
826 rep.opt[1] = htonl(tsval);
827 rep.opt[2] = htonl(tsecr);
cb48cfe8 828 arg.iov[0].iov_len += TCPOLEN_TSTAMP_ALIGNED;
1da177e4
LT
829 }
830
831 /* Swap the send and the receive. */
832 rep.th.dest = th->source;
833 rep.th.source = th->dest;
834 rep.th.doff = arg.iov[0].iov_len / 4;
835 rep.th.seq = htonl(seq);
836 rep.th.ack_seq = htonl(ack);
837 rep.th.ack = 1;
838 rep.th.window = htons(win);
839
cfb6eeb4 840#ifdef CONFIG_TCP_MD5SIG
cfb6eeb4 841 if (key) {
ee684b6f 842 int offset = (tsecr) ? 3 : 0;
cfb6eeb4
YH
843
844 rep.opt[offset++] = htonl((TCPOPT_NOP << 24) |
845 (TCPOPT_NOP << 16) |
846 (TCPOPT_MD5SIG << 8) |
847 TCPOLEN_MD5SIG);
848 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
849 rep.th.doff = arg.iov[0].iov_len/4;
850
49a72dfb 851 tcp_v4_md5_hash_hdr((__u8 *) &rep.opt[offset],
90b7e112
AL
852 key, ip_hdr(skb)->saddr,
853 ip_hdr(skb)->daddr, &rep.th);
cfb6eeb4
YH
854 }
855#endif
88ef4a5a 856 arg.flags = reply_flags;
eddc9ec5
ACM
857 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
858 ip_hdr(skb)->saddr, /* XXX */
1da177e4
LT
859 arg.iov[0].iov_len, IPPROTO_TCP, 0);
860 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
9501f972
YH
861 if (oif)
862 arg.bound_dev_if = oif;
66b13d99 863 arg.tos = tos;
e2d118a1 864 arg.uid = sock_net_uid(net, sk_fullsock(sk) ? sk : NULL);
47dcc20a 865 local_bh_disable();
5472c3c6 866 ctl_sk = this_cpu_read(*net->ipv4.tcp_sk);
a842fe14
ED
867 ctl_sk->sk_mark = (sk->sk_state == TCP_TIME_WAIT) ?
868 inet_twsk(sk)->tw_mark : sk->sk_mark;
d6fb396c 869 transmit_time = tcp_transmit_time(sk);
00483690 870 ip_send_unicast_reply(ctl_sk,
bdbbb852 871 skb, &TCP_SKB_CB(skb)->header.h4.opt,
24a2d43d 872 ip_hdr(skb)->saddr, ip_hdr(skb)->daddr,
d6fb396c
ED
873 &arg, arg.iov[0].iov_len,
874 transmit_time);
1da177e4 875
00483690 876 ctl_sk->sk_mark = 0;
90bbcc60 877 __TCP_INC_STATS(net, TCP_MIB_OUTSEGS);
47dcc20a 878 local_bh_enable();
1da177e4
LT
879}
880
881static void tcp_v4_timewait_ack(struct sock *sk, struct sk_buff *skb)
882{
8feaf0c0 883 struct inet_timewait_sock *tw = inet_twsk(sk);
cfb6eeb4 884 struct tcp_timewait_sock *tcptw = tcp_twsk(sk);
1da177e4 885
e2d118a1 886 tcp_v4_send_ack(sk, skb,
e62a123b 887 tcptw->tw_snd_nxt, tcptw->tw_rcv_nxt,
7174259e 888 tcptw->tw_rcv_wnd >> tw->tw_rcv_wscale,
9a568de4 889 tcp_time_stamp_raw() + tcptw->tw_ts_offset,
9501f972
YH
890 tcptw->tw_ts_recent,
891 tw->tw_bound_dev_if,
88ef4a5a 892 tcp_twsk_md5_key(tcptw),
66b13d99
ED
893 tw->tw_transparent ? IP_REPLY_ARG_NOSRCCHECK : 0,
894 tw->tw_tos
9501f972 895 );
1da177e4 896
8feaf0c0 897 inet_twsk_put(tw);
1da177e4
LT
898}
899
a00e7444 900static void tcp_v4_reqsk_send_ack(const struct sock *sk, struct sk_buff *skb,
7174259e 901 struct request_sock *req)
1da177e4 902{
168a8f58
JC
903 /* sk->sk_state == TCP_LISTEN -> for regular TCP_SYN_RECV
904 * sk->sk_state == TCP_SYN_RECV -> for Fast Open.
905 */
e62a123b
ED
906 u32 seq = (sk->sk_state == TCP_LISTEN) ? tcp_rsk(req)->snt_isn + 1 :
907 tcp_sk(sk)->snd_nxt;
908
20a2b49f
ED
909 /* RFC 7323 2.3
910 * The window field (SEG.WND) of every outgoing segment, with the
911 * exception of <SYN> segments, MUST be right-shifted by
912 * Rcv.Wind.Shift bits:
913 */
e2d118a1 914 tcp_v4_send_ack(sk, skb, seq,
20a2b49f
ED
915 tcp_rsk(req)->rcv_nxt,
916 req->rsk_rcv_wnd >> inet_rsk(req)->rcv_wscale,
9a568de4 917 tcp_time_stamp_raw() + tcp_rsk(req)->ts_off,
9501f972
YH
918 req->ts_recent,
919 0,
30791ac4 920 tcp_md5_do_lookup(sk, (union tcp_md5_addr *)&ip_hdr(skb)->saddr,
a915da9b 921 AF_INET),
66b13d99
ED
922 inet_rsk(req)->no_srccheck ? IP_REPLY_ARG_NOSRCCHECK : 0,
923 ip_hdr(skb)->tos);
1da177e4
LT
924}
925
1da177e4 926/*
9bf1d83e 927 * Send a SYN-ACK after having received a SYN.
60236fdd 928 * This still operates on a request_sock only, not on a big
1da177e4
LT
929 * socket.
930 */
0f935dbe 931static int tcp_v4_send_synack(const struct sock *sk, struct dst_entry *dst,
d6274bd8 932 struct flowi *fl,
72659ecc 933 struct request_sock *req,
ca6fb065 934 struct tcp_fastopen_cookie *foc,
b3d05147 935 enum tcp_synack_type synack_type)
1da177e4 936{
2e6599cb 937 const struct inet_request_sock *ireq = inet_rsk(req);
6bd023f3 938 struct flowi4 fl4;
1da177e4 939 int err = -1;
d41db5af 940 struct sk_buff *skb;
1da177e4
LT
941
942 /* First, grab a route. */
ba3f7f04 943 if (!dst && (dst = inet_csk_route_req(sk, &fl4, req)) == NULL)
fd80eb94 944 return -1;
1da177e4 945
b3d05147 946 skb = tcp_make_synack(sk, dst, req, foc, synack_type);
1da177e4
LT
947
948 if (skb) {
634fb979 949 __tcp_v4_send_check(skb, ireq->ir_loc_addr, ireq->ir_rmt_addr);
1da177e4 950
2ab2ddd3 951 rcu_read_lock();
634fb979
ED
952 err = ip_build_and_send_pkt(skb, sk, ireq->ir_loc_addr,
953 ireq->ir_rmt_addr,
2ab2ddd3
ED
954 rcu_dereference(ireq->ireq_opt));
955 rcu_read_unlock();
b9df3cb8 956 err = net_xmit_eval(err);
1da177e4
LT
957 }
958
1da177e4
LT
959 return err;
960}
961
962/*
60236fdd 963 * IPv4 request_sock destructor.
1da177e4 964 */
60236fdd 965static void tcp_v4_reqsk_destructor(struct request_sock *req)
1da177e4 966{
c92e8c02 967 kfree(rcu_dereference_protected(inet_rsk(req)->ireq_opt, 1));
1da177e4
LT
968}
969
cfb6eeb4
YH
970#ifdef CONFIG_TCP_MD5SIG
971/*
972 * RFC2385 MD5 checksumming requires a mapping of
973 * IP address->MD5 Key.
974 * We need to maintain these in the sk structure.
975 */
976
921f9a0f 977DEFINE_STATIC_KEY_FALSE(tcp_md5_needed);
6015c71e
ED
978EXPORT_SYMBOL(tcp_md5_needed);
979
cfb6eeb4 980/* Find the Key structure for an address. */
6015c71e
ED
981struct tcp_md5sig_key *__tcp_md5_do_lookup(const struct sock *sk,
982 const union tcp_md5_addr *addr,
983 int family)
cfb6eeb4 984{
fd3a154a 985 const struct tcp_sock *tp = tcp_sk(sk);
a915da9b 986 struct tcp_md5sig_key *key;
fd3a154a 987 const struct tcp_md5sig_info *md5sig;
6797318e
ID
988 __be32 mask;
989 struct tcp_md5sig_key *best_match = NULL;
990 bool match;
cfb6eeb4 991
a8afca03
ED
992 /* caller either holds rcu_read_lock() or socket lock */
993 md5sig = rcu_dereference_check(tp->md5sig_info,
1e1d04e6 994 lockdep_sock_is_held(sk));
a8afca03 995 if (!md5sig)
cfb6eeb4 996 return NULL;
083a0326 997
b67bfe0d 998 hlist_for_each_entry_rcu(key, &md5sig->head, node) {
a915da9b
ED
999 if (key->family != family)
1000 continue;
6797318e
ID
1001
1002 if (family == AF_INET) {
1003 mask = inet_make_mask(key->prefixlen);
1004 match = (key->addr.a4.s_addr & mask) ==
1005 (addr->a4.s_addr & mask);
1006#if IS_ENABLED(CONFIG_IPV6)
1007 } else if (family == AF_INET6) {
1008 match = ipv6_prefix_equal(&key->addr.a6, &addr->a6,
1009 key->prefixlen);
1010#endif
1011 } else {
1012 match = false;
1013 }
1014
1015 if (match && (!best_match ||
1016 key->prefixlen > best_match->prefixlen))
1017 best_match = key;
1018 }
1019 return best_match;
1020}
6015c71e 1021EXPORT_SYMBOL(__tcp_md5_do_lookup);
6797318e 1022
e8f37d57
WF
1023static struct tcp_md5sig_key *tcp_md5_do_lookup_exact(const struct sock *sk,
1024 const union tcp_md5_addr *addr,
1025 int family, u8 prefixlen)
6797318e
ID
1026{
1027 const struct tcp_sock *tp = tcp_sk(sk);
1028 struct tcp_md5sig_key *key;
1029 unsigned int size = sizeof(struct in_addr);
1030 const struct tcp_md5sig_info *md5sig;
1031
1032 /* caller either holds rcu_read_lock() or socket lock */
1033 md5sig = rcu_dereference_check(tp->md5sig_info,
1034 lockdep_sock_is_held(sk));
1035 if (!md5sig)
1036 return NULL;
1037#if IS_ENABLED(CONFIG_IPV6)
1038 if (family == AF_INET6)
1039 size = sizeof(struct in6_addr);
1040#endif
1041 hlist_for_each_entry_rcu(key, &md5sig->head, node) {
1042 if (key->family != family)
1043 continue;
1044 if (!memcmp(&key->addr, addr, size) &&
1045 key->prefixlen == prefixlen)
a915da9b 1046 return key;
cfb6eeb4
YH
1047 }
1048 return NULL;
1049}
1050
b83e3deb 1051struct tcp_md5sig_key *tcp_v4_md5_lookup(const struct sock *sk,
fd3a154a 1052 const struct sock *addr_sk)
cfb6eeb4 1053{
b52e6921 1054 const union tcp_md5_addr *addr;
a915da9b 1055
b52e6921 1056 addr = (const union tcp_md5_addr *)&addr_sk->sk_daddr;
a915da9b 1057 return tcp_md5_do_lookup(sk, addr, AF_INET);
cfb6eeb4 1058}
cfb6eeb4
YH
1059EXPORT_SYMBOL(tcp_v4_md5_lookup);
1060
cfb6eeb4 1061/* This can be called on a newly created socket, from other files */
a915da9b 1062int tcp_md5_do_add(struct sock *sk, const union tcp_md5_addr *addr,
6797318e
ID
1063 int family, u8 prefixlen, const u8 *newkey, u8 newkeylen,
1064 gfp_t gfp)
cfb6eeb4
YH
1065{
1066 /* Add Key to the list */
b0a713e9 1067 struct tcp_md5sig_key *key;
cfb6eeb4 1068 struct tcp_sock *tp = tcp_sk(sk);
a915da9b 1069 struct tcp_md5sig_info *md5sig;
cfb6eeb4 1070
6797318e 1071 key = tcp_md5_do_lookup_exact(sk, addr, family, prefixlen);
cfb6eeb4
YH
1072 if (key) {
1073 /* Pre-existing entry - just update that one. */
a915da9b 1074 memcpy(key->key, newkey, newkeylen);
b0a713e9 1075 key->keylen = newkeylen;
a915da9b
ED
1076 return 0;
1077 }
260fcbeb 1078
a8afca03 1079 md5sig = rcu_dereference_protected(tp->md5sig_info,
1e1d04e6 1080 lockdep_sock_is_held(sk));
a915da9b
ED
1081 if (!md5sig) {
1082 md5sig = kmalloc(sizeof(*md5sig), gfp);
1083 if (!md5sig)
cfb6eeb4 1084 return -ENOMEM;
cfb6eeb4 1085
a915da9b
ED
1086 sk_nocaps_add(sk, NETIF_F_GSO_MASK);
1087 INIT_HLIST_HEAD(&md5sig->head);
a8afca03 1088 rcu_assign_pointer(tp->md5sig_info, md5sig);
a915da9b 1089 }
cfb6eeb4 1090
5f3d9cb2 1091 key = sock_kmalloc(sk, sizeof(*key), gfp);
a915da9b
ED
1092 if (!key)
1093 return -ENOMEM;
71cea17e 1094 if (!tcp_alloc_md5sig_pool()) {
5f3d9cb2 1095 sock_kfree_s(sk, key, sizeof(*key));
a915da9b 1096 return -ENOMEM;
cfb6eeb4 1097 }
a915da9b
ED
1098
1099 memcpy(key->key, newkey, newkeylen);
1100 key->keylen = newkeylen;
1101 key->family = family;
6797318e 1102 key->prefixlen = prefixlen;
a915da9b
ED
1103 memcpy(&key->addr, addr,
1104 (family == AF_INET6) ? sizeof(struct in6_addr) :
1105 sizeof(struct in_addr));
1106 hlist_add_head_rcu(&key->node, &md5sig->head);
cfb6eeb4
YH
1107 return 0;
1108}
a915da9b 1109EXPORT_SYMBOL(tcp_md5_do_add);
cfb6eeb4 1110
6797318e
ID
1111int tcp_md5_do_del(struct sock *sk, const union tcp_md5_addr *addr, int family,
1112 u8 prefixlen)
cfb6eeb4 1113{
a915da9b
ED
1114 struct tcp_md5sig_key *key;
1115
6797318e 1116 key = tcp_md5_do_lookup_exact(sk, addr, family, prefixlen);
a915da9b
ED
1117 if (!key)
1118 return -ENOENT;
1119 hlist_del_rcu(&key->node);
5f3d9cb2 1120 atomic_sub(sizeof(*key), &sk->sk_omem_alloc);
a915da9b 1121 kfree_rcu(key, rcu);
a915da9b 1122 return 0;
cfb6eeb4 1123}
a915da9b 1124EXPORT_SYMBOL(tcp_md5_do_del);
cfb6eeb4 1125
e0683e70 1126static void tcp_clear_md5_list(struct sock *sk)
cfb6eeb4
YH
1127{
1128 struct tcp_sock *tp = tcp_sk(sk);
a915da9b 1129 struct tcp_md5sig_key *key;
b67bfe0d 1130 struct hlist_node *n;
a8afca03 1131 struct tcp_md5sig_info *md5sig;
cfb6eeb4 1132
a8afca03
ED
1133 md5sig = rcu_dereference_protected(tp->md5sig_info, 1);
1134
b67bfe0d 1135 hlist_for_each_entry_safe(key, n, &md5sig->head, node) {
a915da9b 1136 hlist_del_rcu(&key->node);
5f3d9cb2 1137 atomic_sub(sizeof(*key), &sk->sk_omem_alloc);
a915da9b 1138 kfree_rcu(key, rcu);
cfb6eeb4
YH
1139 }
1140}
1141
8917a777
ID
1142static int tcp_v4_parse_md5_keys(struct sock *sk, int optname,
1143 char __user *optval, int optlen)
cfb6eeb4
YH
1144{
1145 struct tcp_md5sig cmd;
1146 struct sockaddr_in *sin = (struct sockaddr_in *)&cmd.tcpm_addr;
8917a777 1147 u8 prefixlen = 32;
cfb6eeb4
YH
1148
1149 if (optlen < sizeof(cmd))
1150 return -EINVAL;
1151
7174259e 1152 if (copy_from_user(&cmd, optval, sizeof(cmd)))
cfb6eeb4
YH
1153 return -EFAULT;
1154
1155 if (sin->sin_family != AF_INET)
1156 return -EINVAL;
1157
8917a777
ID
1158 if (optname == TCP_MD5SIG_EXT &&
1159 cmd.tcpm_flags & TCP_MD5SIG_FLAG_PREFIX) {
1160 prefixlen = cmd.tcpm_prefixlen;
1161 if (prefixlen > 32)
1162 return -EINVAL;
1163 }
1164
64a124ed 1165 if (!cmd.tcpm_keylen)
a915da9b 1166 return tcp_md5_do_del(sk, (union tcp_md5_addr *)&sin->sin_addr.s_addr,
8917a777 1167 AF_INET, prefixlen);
cfb6eeb4
YH
1168
1169 if (cmd.tcpm_keylen > TCP_MD5SIG_MAXKEYLEN)
1170 return -EINVAL;
1171
a915da9b 1172 return tcp_md5_do_add(sk, (union tcp_md5_addr *)&sin->sin_addr.s_addr,
8917a777 1173 AF_INET, prefixlen, cmd.tcpm_key, cmd.tcpm_keylen,
a915da9b 1174 GFP_KERNEL);
cfb6eeb4
YH
1175}
1176
19689e38
ED
1177static int tcp_v4_md5_hash_headers(struct tcp_md5sig_pool *hp,
1178 __be32 daddr, __be32 saddr,
1179 const struct tcphdr *th, int nbytes)
cfb6eeb4 1180{
cfb6eeb4 1181 struct tcp4_pseudohdr *bp;
49a72dfb 1182 struct scatterlist sg;
19689e38 1183 struct tcphdr *_th;
cfb6eeb4 1184
19689e38 1185 bp = hp->scratch;
cfb6eeb4
YH
1186 bp->saddr = saddr;
1187 bp->daddr = daddr;
1188 bp->pad = 0;
076fb722 1189 bp->protocol = IPPROTO_TCP;
49a72dfb 1190 bp->len = cpu_to_be16(nbytes);
c7da57a1 1191
19689e38
ED
1192 _th = (struct tcphdr *)(bp + 1);
1193 memcpy(_th, th, sizeof(*th));
1194 _th->check = 0;
1195
1196 sg_init_one(&sg, bp, sizeof(*bp) + sizeof(*th));
1197 ahash_request_set_crypt(hp->md5_req, &sg, NULL,
1198 sizeof(*bp) + sizeof(*th));
cf80e0e4 1199 return crypto_ahash_update(hp->md5_req);
49a72dfb
AL
1200}
1201
a915da9b 1202static int tcp_v4_md5_hash_hdr(char *md5_hash, const struct tcp_md5sig_key *key,
318cf7aa 1203 __be32 daddr, __be32 saddr, const struct tcphdr *th)
49a72dfb
AL
1204{
1205 struct tcp_md5sig_pool *hp;
cf80e0e4 1206 struct ahash_request *req;
49a72dfb
AL
1207
1208 hp = tcp_get_md5sig_pool();
1209 if (!hp)
1210 goto clear_hash_noput;
cf80e0e4 1211 req = hp->md5_req;
49a72dfb 1212
cf80e0e4 1213 if (crypto_ahash_init(req))
49a72dfb 1214 goto clear_hash;
19689e38 1215 if (tcp_v4_md5_hash_headers(hp, daddr, saddr, th, th->doff << 2))
49a72dfb
AL
1216 goto clear_hash;
1217 if (tcp_md5_hash_key(hp, key))
1218 goto clear_hash;
cf80e0e4
HX
1219 ahash_request_set_crypt(req, NULL, md5_hash, 0);
1220 if (crypto_ahash_final(req))
cfb6eeb4
YH
1221 goto clear_hash;
1222
cfb6eeb4 1223 tcp_put_md5sig_pool();
cfb6eeb4 1224 return 0;
49a72dfb 1225
cfb6eeb4
YH
1226clear_hash:
1227 tcp_put_md5sig_pool();
1228clear_hash_noput:
1229 memset(md5_hash, 0, 16);
49a72dfb 1230 return 1;
cfb6eeb4
YH
1231}
1232
39f8e58e
ED
1233int tcp_v4_md5_hash_skb(char *md5_hash, const struct tcp_md5sig_key *key,
1234 const struct sock *sk,
318cf7aa 1235 const struct sk_buff *skb)
cfb6eeb4 1236{
49a72dfb 1237 struct tcp_md5sig_pool *hp;
cf80e0e4 1238 struct ahash_request *req;
318cf7aa 1239 const struct tcphdr *th = tcp_hdr(skb);
cfb6eeb4
YH
1240 __be32 saddr, daddr;
1241
39f8e58e
ED
1242 if (sk) { /* valid for establish/request sockets */
1243 saddr = sk->sk_rcv_saddr;
1244 daddr = sk->sk_daddr;
cfb6eeb4 1245 } else {
49a72dfb
AL
1246 const struct iphdr *iph = ip_hdr(skb);
1247 saddr = iph->saddr;
1248 daddr = iph->daddr;
cfb6eeb4 1249 }
49a72dfb
AL
1250
1251 hp = tcp_get_md5sig_pool();
1252 if (!hp)
1253 goto clear_hash_noput;
cf80e0e4 1254 req = hp->md5_req;
49a72dfb 1255
cf80e0e4 1256 if (crypto_ahash_init(req))
49a72dfb
AL
1257 goto clear_hash;
1258
19689e38 1259 if (tcp_v4_md5_hash_headers(hp, daddr, saddr, th, skb->len))
49a72dfb
AL
1260 goto clear_hash;
1261 if (tcp_md5_hash_skb_data(hp, skb, th->doff << 2))
1262 goto clear_hash;
1263 if (tcp_md5_hash_key(hp, key))
1264 goto clear_hash;
cf80e0e4
HX
1265 ahash_request_set_crypt(req, NULL, md5_hash, 0);
1266 if (crypto_ahash_final(req))
49a72dfb
AL
1267 goto clear_hash;
1268
1269 tcp_put_md5sig_pool();
1270 return 0;
1271
1272clear_hash:
1273 tcp_put_md5sig_pool();
1274clear_hash_noput:
1275 memset(md5_hash, 0, 16);
1276 return 1;
cfb6eeb4 1277}
49a72dfb 1278EXPORT_SYMBOL(tcp_v4_md5_hash_skb);
cfb6eeb4 1279
ba8e275a
ED
1280#endif
1281
ff74e23f 1282/* Called with rcu_read_lock() */
ba8e275a 1283static bool tcp_v4_inbound_md5_hash(const struct sock *sk,
ff74e23f 1284 const struct sk_buff *skb)
cfb6eeb4 1285{
ba8e275a 1286#ifdef CONFIG_TCP_MD5SIG
cfb6eeb4
YH
1287 /*
1288 * This gets called for each TCP segment that arrives
1289 * so we want to be efficient.
1290 * We have 3 drop cases:
1291 * o No MD5 hash and one expected.
1292 * o MD5 hash and we're not expecting one.
1293 * o MD5 hash and its wrong.
1294 */
cf533ea5 1295 const __u8 *hash_location = NULL;
cfb6eeb4 1296 struct tcp_md5sig_key *hash_expected;
eddc9ec5 1297 const struct iphdr *iph = ip_hdr(skb);
cf533ea5 1298 const struct tcphdr *th = tcp_hdr(skb);
cfb6eeb4 1299 int genhash;
cfb6eeb4
YH
1300 unsigned char newhash[16];
1301
a915da9b
ED
1302 hash_expected = tcp_md5_do_lookup(sk, (union tcp_md5_addr *)&iph->saddr,
1303 AF_INET);
7d5d5525 1304 hash_location = tcp_parse_md5sig_option(th);
cfb6eeb4 1305
cfb6eeb4
YH
1306 /* We've parsed the options - do we have a hash? */
1307 if (!hash_expected && !hash_location)
a2a385d6 1308 return false;
cfb6eeb4
YH
1309
1310 if (hash_expected && !hash_location) {
c10d9310 1311 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMD5NOTFOUND);
a2a385d6 1312 return true;
cfb6eeb4
YH
1313 }
1314
1315 if (!hash_expected && hash_location) {
c10d9310 1316 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMD5UNEXPECTED);
a2a385d6 1317 return true;
cfb6eeb4
YH
1318 }
1319
1320 /* Okay, so this is hash_expected and hash_location -
1321 * so we need to calculate the checksum.
1322 */
49a72dfb
AL
1323 genhash = tcp_v4_md5_hash_skb(newhash,
1324 hash_expected,
39f8e58e 1325 NULL, skb);
cfb6eeb4
YH
1326
1327 if (genhash || memcmp(hash_location, newhash, 16) != 0) {
72145a68 1328 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMD5FAILURE);
e87cc472
JP
1329 net_info_ratelimited("MD5 Hash failed for (%pI4, %d)->(%pI4, %d)%s\n",
1330 &iph->saddr, ntohs(th->source),
1331 &iph->daddr, ntohs(th->dest),
1332 genhash ? " tcp_v4_calc_md5_hash failed"
1333 : "");
a2a385d6 1334 return true;
cfb6eeb4 1335 }
a2a385d6 1336 return false;
cfb6eeb4 1337#endif
ba8e275a
ED
1338 return false;
1339}
cfb6eeb4 1340
b40cf18e
ED
1341static void tcp_v4_init_req(struct request_sock *req,
1342 const struct sock *sk_listener,
16bea70a
OP
1343 struct sk_buff *skb)
1344{
1345 struct inet_request_sock *ireq = inet_rsk(req);
c92e8c02 1346 struct net *net = sock_net(sk_listener);
16bea70a 1347
08d2cc3b
ED
1348 sk_rcv_saddr_set(req_to_sk(req), ip_hdr(skb)->daddr);
1349 sk_daddr_set(req_to_sk(req), ip_hdr(skb)->saddr);
c92e8c02 1350 RCU_INIT_POINTER(ireq->ireq_opt, tcp_v4_save_options(net, skb));
16bea70a
OP
1351}
1352
f964629e
ED
1353static struct dst_entry *tcp_v4_route_req(const struct sock *sk,
1354 struct flowi *fl,
4396e461 1355 const struct request_sock *req)
d94e0417 1356{
4396e461 1357 return inet_csk_route_req(sk, &fl->u.ip4, req);
d94e0417
OP
1358}
1359
72a3effa 1360struct request_sock_ops tcp_request_sock_ops __read_mostly = {
1da177e4 1361 .family = PF_INET,
2e6599cb 1362 .obj_size = sizeof(struct tcp_request_sock),
5db92c99 1363 .rtx_syn_ack = tcp_rtx_synack,
60236fdd
ACM
1364 .send_ack = tcp_v4_reqsk_send_ack,
1365 .destructor = tcp_v4_reqsk_destructor,
1da177e4 1366 .send_reset = tcp_v4_send_reset,
688d1945 1367 .syn_ack_timeout = tcp_syn_ack_timeout,
1da177e4
LT
1368};
1369
b2e4b3de 1370static const struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = {
2aec4a29 1371 .mss_clamp = TCP_MSS_DEFAULT,
16bea70a 1372#ifdef CONFIG_TCP_MD5SIG
fd3a154a 1373 .req_md5_lookup = tcp_v4_md5_lookup,
e3afe7b7 1374 .calc_md5_hash = tcp_v4_md5_hash_skb,
b6332e6c 1375#endif
16bea70a 1376 .init_req = tcp_v4_init_req,
fb7b37a7
OP
1377#ifdef CONFIG_SYN_COOKIES
1378 .cookie_init_seq = cookie_v4_init_sequence,
1379#endif
d94e0417 1380 .route_req = tcp_v4_route_req,
84b114b9
ED
1381 .init_seq = tcp_v4_init_seq,
1382 .init_ts_off = tcp_v4_init_ts_off,
d6274bd8 1383 .send_synack = tcp_v4_send_synack,
16bea70a 1384};
cfb6eeb4 1385
1da177e4
LT
1386int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
1387{
1da177e4 1388 /* Never answer to SYNs send to broadcast or multicast */
511c3f92 1389 if (skb_rtable(skb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
1da177e4
LT
1390 goto drop;
1391
1fb6f159
OP
1392 return tcp_conn_request(&tcp_request_sock_ops,
1393 &tcp_request_sock_ipv4_ops, sk, skb);
1da177e4 1394
1da177e4 1395drop:
9caad864 1396 tcp_listendrop(sk);
1da177e4
LT
1397 return 0;
1398}
4bc2f18b 1399EXPORT_SYMBOL(tcp_v4_conn_request);
1da177e4
LT
1400
1401
1402/*
1403 * The three way handshake has completed - we got a valid synack -
1404 * now create the new socket.
1405 */
0c27171e 1406struct sock *tcp_v4_syn_recv_sock(const struct sock *sk, struct sk_buff *skb,
60236fdd 1407 struct request_sock *req,
5e0724d0
ED
1408 struct dst_entry *dst,
1409 struct request_sock *req_unhash,
1410 bool *own_req)
1da177e4 1411{
2e6599cb 1412 struct inet_request_sock *ireq;
1da177e4
LT
1413 struct inet_sock *newinet;
1414 struct tcp_sock *newtp;
1415 struct sock *newsk;
cfb6eeb4
YH
1416#ifdef CONFIG_TCP_MD5SIG
1417 struct tcp_md5sig_key *key;
1418#endif
f6d8bd05 1419 struct ip_options_rcu *inet_opt;
1da177e4
LT
1420
1421 if (sk_acceptq_is_full(sk))
1422 goto exit_overflow;
1423
1da177e4
LT
1424 newsk = tcp_create_openreq_child(sk, req, skb);
1425 if (!newsk)
093d2823 1426 goto exit_nonewsk;
1da177e4 1427
bcd76111 1428 newsk->sk_gso_type = SKB_GSO_TCPV4;
fae6ef87 1429 inet_sk_rx_dst_set(newsk, skb);
1da177e4
LT
1430
1431 newtp = tcp_sk(newsk);
1432 newinet = inet_sk(newsk);
2e6599cb 1433 ireq = inet_rsk(req);
d1e559d0
ED
1434 sk_daddr_set(newsk, ireq->ir_rmt_addr);
1435 sk_rcv_saddr_set(newsk, ireq->ir_loc_addr);
6dd9a14e 1436 newsk->sk_bound_dev_if = ireq->ir_iif;
c92e8c02
ED
1437 newinet->inet_saddr = ireq->ir_loc_addr;
1438 inet_opt = rcu_dereference(ireq->ireq_opt);
1439 RCU_INIT_POINTER(newinet->inet_opt, inet_opt);
463c84b9 1440 newinet->mc_index = inet_iif(skb);
eddc9ec5 1441 newinet->mc_ttl = ip_hdr(skb)->ttl;
4c507d28 1442 newinet->rcv_tos = ip_hdr(skb)->tos;
d83d8461 1443 inet_csk(newsk)->icsk_ext_hdr_len = 0;
f6d8bd05
ED
1444 if (inet_opt)
1445 inet_csk(newsk)->icsk_ext_hdr_len = inet_opt->opt.optlen;
c720c7e8 1446 newinet->inet_id = newtp->write_seq ^ jiffies;
1da177e4 1447
dfd25fff
ED
1448 if (!dst) {
1449 dst = inet_csk_route_child_sock(sk, newsk, req);
1450 if (!dst)
1451 goto put_and_exit;
1452 } else {
1453 /* syncookie case : see end of cookie_v4_check() */
1454 }
0e734419
DM
1455 sk_setup_caps(newsk, dst);
1456
81164413
DB
1457 tcp_ca_openreq_child(newsk, dst);
1458
1da177e4 1459 tcp_sync_mss(newsk, dst_mtu(dst));
3541f9e8 1460 newtp->advmss = tcp_mss_clamp(tcp_sk(sk), dst_metric_advmss(dst));
f5fff5dc 1461
1da177e4
LT
1462 tcp_initialize_rcv_mss(newsk);
1463
cfb6eeb4
YH
1464#ifdef CONFIG_TCP_MD5SIG
1465 /* Copy over the MD5 key from the original socket */
a915da9b
ED
1466 key = tcp_md5_do_lookup(sk, (union tcp_md5_addr *)&newinet->inet_daddr,
1467 AF_INET);
00db4124 1468 if (key) {
cfb6eeb4
YH
1469 /*
1470 * We're using one, so create a matching key
1471 * on the newsk structure. If we fail to get
1472 * memory, then we end up not copying the key
1473 * across. Shucks.
1474 */
a915da9b 1475 tcp_md5_do_add(newsk, (union tcp_md5_addr *)&newinet->inet_daddr,
6797318e 1476 AF_INET, 32, key->key, key->keylen, GFP_ATOMIC);
a465419b 1477 sk_nocaps_add(newsk, NETIF_F_GSO_MASK);
cfb6eeb4
YH
1478 }
1479#endif
1480
0e734419
DM
1481 if (__inet_inherit_port(sk, newsk) < 0)
1482 goto put_and_exit;
5e0724d0 1483 *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash));
c92e8c02 1484 if (likely(*own_req)) {
49a496c9 1485 tcp_move_syn(newtp, req);
c92e8c02
ED
1486 ireq->ireq_opt = NULL;
1487 } else {
1488 newinet->inet_opt = NULL;
1489 }
1da177e4
LT
1490 return newsk;
1491
1492exit_overflow:
c10d9310 1493 NET_INC_STATS(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
093d2823
BS
1494exit_nonewsk:
1495 dst_release(dst);
1da177e4 1496exit:
9caad864 1497 tcp_listendrop(sk);
1da177e4 1498 return NULL;
0e734419 1499put_and_exit:
c92e8c02 1500 newinet->inet_opt = NULL;
e337e24d
CP
1501 inet_csk_prepare_forced_close(newsk);
1502 tcp_done(newsk);
0e734419 1503 goto exit;
1da177e4 1504}
4bc2f18b 1505EXPORT_SYMBOL(tcp_v4_syn_recv_sock);
1da177e4 1506
079096f1 1507static struct sock *tcp_v4_cookie_check(struct sock *sk, struct sk_buff *skb)
1da177e4 1508{
079096f1 1509#ifdef CONFIG_SYN_COOKIES
52452c54 1510 const struct tcphdr *th = tcp_hdr(skb);
1da177e4 1511
af9b4738 1512 if (!th->syn)
461b74c3 1513 sk = cookie_v4_check(sk, skb);
1da177e4
LT
1514#endif
1515 return sk;
1516}
1517
1da177e4 1518/* The socket must have it's spinlock held when we get
e994b2f0 1519 * here, unless it is a TCP_LISTEN socket.
1da177e4
LT
1520 *
1521 * We have a potential double-lock case here, so even when
1522 * doing backlog processing we use the BH locking scheme.
1523 * This is because we cannot sleep with the original spinlock
1524 * held.
1525 */
1526int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
1527{
cfb6eeb4 1528 struct sock *rsk;
cfb6eeb4 1529
1da177e4 1530 if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */
404e0a8b
ED
1531 struct dst_entry *dst = sk->sk_rx_dst;
1532
bdeab991 1533 sock_rps_save_rxhash(sk, skb);
3d97379a 1534 sk_mark_napi_id(sk, skb);
404e0a8b 1535 if (dst) {
505fbcf0 1536 if (inet_sk(sk)->rx_dst_ifindex != skb->skb_iif ||
51456b29 1537 !dst->ops->check(dst, 0)) {
92101b3b
DM
1538 dst_release(dst);
1539 sk->sk_rx_dst = NULL;
1540 }
1541 }
3d97d88e 1542 tcp_rcv_established(sk, skb);
1da177e4
LT
1543 return 0;
1544 }
1545
12e25e10 1546 if (tcp_checksum_complete(skb))
1da177e4
LT
1547 goto csum_err;
1548
1549 if (sk->sk_state == TCP_LISTEN) {
079096f1
ED
1550 struct sock *nsk = tcp_v4_cookie_check(sk, skb);
1551
1da177e4
LT
1552 if (!nsk)
1553 goto discard;
1da177e4 1554 if (nsk != sk) {
cfb6eeb4
YH
1555 if (tcp_child_process(sk, nsk, skb)) {
1556 rsk = nsk;
1da177e4 1557 goto reset;
cfb6eeb4 1558 }
1da177e4
LT
1559 return 0;
1560 }
ca55158c 1561 } else
bdeab991 1562 sock_rps_save_rxhash(sk, skb);
ca55158c 1563
72ab4a86 1564 if (tcp_rcv_state_process(sk, skb)) {
cfb6eeb4 1565 rsk = sk;
1da177e4 1566 goto reset;
cfb6eeb4 1567 }
1da177e4
LT
1568 return 0;
1569
1570reset:
cfb6eeb4 1571 tcp_v4_send_reset(rsk, skb);
1da177e4
LT
1572discard:
1573 kfree_skb(skb);
1574 /* Be careful here. If this function gets more complicated and
1575 * gcc suffers from register pressure on the x86, sk (in %ebx)
1576 * might be destroyed here. This current version compiles correctly,
1577 * but you have been warned.
1578 */
1579 return 0;
1580
1581csum_err:
c10d9310
ED
1582 TCP_INC_STATS(sock_net(sk), TCP_MIB_CSUMERRORS);
1583 TCP_INC_STATS(sock_net(sk), TCP_MIB_INERRS);
1da177e4
LT
1584 goto discard;
1585}
4bc2f18b 1586EXPORT_SYMBOL(tcp_v4_do_rcv);
1da177e4 1587
7487449c 1588int tcp_v4_early_demux(struct sk_buff *skb)
41063e9d 1589{
41063e9d
DM
1590 const struct iphdr *iph;
1591 const struct tcphdr *th;
1592 struct sock *sk;
41063e9d 1593
41063e9d 1594 if (skb->pkt_type != PACKET_HOST)
7487449c 1595 return 0;
41063e9d 1596
45f00f99 1597 if (!pskb_may_pull(skb, skb_transport_offset(skb) + sizeof(struct tcphdr)))
7487449c 1598 return 0;
41063e9d
DM
1599
1600 iph = ip_hdr(skb);
45f00f99 1601 th = tcp_hdr(skb);
41063e9d
DM
1602
1603 if (th->doff < sizeof(struct tcphdr) / 4)
7487449c 1604 return 0;
41063e9d 1605
45f00f99 1606 sk = __inet_lookup_established(dev_net(skb->dev), &tcp_hashinfo,
41063e9d 1607 iph->saddr, th->source,
7011d085 1608 iph->daddr, ntohs(th->dest),
3fa6f616 1609 skb->skb_iif, inet_sdif(skb));
41063e9d
DM
1610 if (sk) {
1611 skb->sk = sk;
1612 skb->destructor = sock_edemux;
f7e4eb03 1613 if (sk_fullsock(sk)) {
d0c294c5 1614 struct dst_entry *dst = READ_ONCE(sk->sk_rx_dst);
505fbcf0 1615
41063e9d
DM
1616 if (dst)
1617 dst = dst_check(dst, 0);
92101b3b 1618 if (dst &&
505fbcf0 1619 inet_sk(sk)->rx_dst_ifindex == skb->skb_iif)
92101b3b 1620 skb_dst_set_noref(skb, dst);
41063e9d
DM
1621 }
1622 }
7487449c 1623 return 0;
41063e9d
DM
1624}
1625
c9c33212
ED
1626bool tcp_add_backlog(struct sock *sk, struct sk_buff *skb)
1627{
1628 u32 limit = sk->sk_rcvbuf + sk->sk_sndbuf;
4f693b55
ED
1629 struct skb_shared_info *shinfo;
1630 const struct tcphdr *th;
1631 struct tcphdr *thtail;
1632 struct sk_buff *tail;
1633 unsigned int hdrlen;
1634 bool fragstolen;
1635 u32 gso_segs;
1636 int delta;
c9c33212
ED
1637
1638 /* In case all data was pulled from skb frags (in __pskb_pull_tail()),
1639 * we can fix skb->truesize to its real value to avoid future drops.
1640 * This is valid because skb is not yet charged to the socket.
1641 * It has been noticed pure SACK packets were sometimes dropped
1642 * (if cooked by drivers without copybreak feature).
1643 */
60b1af33 1644 skb_condense(skb);
c9c33212 1645
ade9628e
ED
1646 skb_dst_drop(skb);
1647
4f693b55
ED
1648 if (unlikely(tcp_checksum_complete(skb))) {
1649 bh_unlock_sock(sk);
1650 __TCP_INC_STATS(sock_net(sk), TCP_MIB_CSUMERRORS);
1651 __TCP_INC_STATS(sock_net(sk), TCP_MIB_INERRS);
1652 return true;
1653 }
1654
1655 /* Attempt coalescing to last skb in backlog, even if we are
1656 * above the limits.
1657 * This is okay because skb capacity is limited to MAX_SKB_FRAGS.
1658 */
1659 th = (const struct tcphdr *)skb->data;
1660 hdrlen = th->doff * 4;
1661 shinfo = skb_shinfo(skb);
1662
1663 if (!shinfo->gso_size)
1664 shinfo->gso_size = skb->len - hdrlen;
1665
1666 if (!shinfo->gso_segs)
1667 shinfo->gso_segs = 1;
1668
1669 tail = sk->sk_backlog.tail;
1670 if (!tail)
1671 goto no_coalesce;
1672 thtail = (struct tcphdr *)tail->data;
1673
1674 if (TCP_SKB_CB(tail)->end_seq != TCP_SKB_CB(skb)->seq ||
1675 TCP_SKB_CB(tail)->ip_dsfield != TCP_SKB_CB(skb)->ip_dsfield ||
1676 ((TCP_SKB_CB(tail)->tcp_flags |
ca2fe295
ED
1677 TCP_SKB_CB(skb)->tcp_flags) & (TCPHDR_SYN | TCPHDR_RST | TCPHDR_URG)) ||
1678 !((TCP_SKB_CB(tail)->tcp_flags &
1679 TCP_SKB_CB(skb)->tcp_flags) & TCPHDR_ACK) ||
4f693b55
ED
1680 ((TCP_SKB_CB(tail)->tcp_flags ^
1681 TCP_SKB_CB(skb)->tcp_flags) & (TCPHDR_ECE | TCPHDR_CWR)) ||
1682#ifdef CONFIG_TLS_DEVICE
1683 tail->decrypted != skb->decrypted ||
1684#endif
1685 thtail->doff != th->doff ||
1686 memcmp(thtail + 1, th + 1, hdrlen - sizeof(*th)))
1687 goto no_coalesce;
1688
1689 __skb_pull(skb, hdrlen);
1690 if (skb_try_coalesce(tail, skb, &fragstolen, &delta)) {
1691 thtail->window = th->window;
1692
1693 TCP_SKB_CB(tail)->end_seq = TCP_SKB_CB(skb)->end_seq;
1694
1695 if (after(TCP_SKB_CB(skb)->ack_seq, TCP_SKB_CB(tail)->ack_seq))
1696 TCP_SKB_CB(tail)->ack_seq = TCP_SKB_CB(skb)->ack_seq;
1697
ca2fe295
ED
1698 /* We have to update both TCP_SKB_CB(tail)->tcp_flags and
1699 * thtail->fin, so that the fast path in tcp_rcv_established()
1700 * is not entered if we append a packet with a FIN.
1701 * SYN, RST, URG are not present.
1702 * ACK is set on both packets.
1703 * PSH : we do not really care in TCP stack,
1704 * at least for 'GRO' packets.
1705 */
1706 thtail->fin |= th->fin;
4f693b55
ED
1707 TCP_SKB_CB(tail)->tcp_flags |= TCP_SKB_CB(skb)->tcp_flags;
1708
1709 if (TCP_SKB_CB(skb)->has_rxtstamp) {
1710 TCP_SKB_CB(tail)->has_rxtstamp = true;
1711 tail->tstamp = skb->tstamp;
1712 skb_hwtstamps(tail)->hwtstamp = skb_hwtstamps(skb)->hwtstamp;
1713 }
1714
1715 /* Not as strict as GRO. We only need to carry mss max value */
1716 skb_shinfo(tail)->gso_size = max(shinfo->gso_size,
1717 skb_shinfo(tail)->gso_size);
1718
1719 gso_segs = skb_shinfo(tail)->gso_segs + shinfo->gso_segs;
1720 skb_shinfo(tail)->gso_segs = min_t(u32, gso_segs, 0xFFFF);
1721
1722 sk->sk_backlog.len += delta;
1723 __NET_INC_STATS(sock_net(sk),
1724 LINUX_MIB_TCPBACKLOGCOALESCE);
1725 kfree_skb_partial(skb, fragstolen);
1726 return false;
1727 }
1728 __skb_push(skb, hdrlen);
1729
1730no_coalesce:
1731 /* Only socket owner can try to collapse/prune rx queues
1732 * to reduce memory overhead, so add a little headroom here.
1733 * Few sockets backlog are possibly concurrently non empty.
1734 */
1735 limit += 64*1024;
1736
c9c33212
ED
1737 if (unlikely(sk_add_backlog(sk, skb, limit))) {
1738 bh_unlock_sock(sk);
1739 __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPBACKLOGDROP);
1740 return true;
1741 }
1742 return false;
1743}
1744EXPORT_SYMBOL(tcp_add_backlog);
1745
ac6e7800
ED
1746int tcp_filter(struct sock *sk, struct sk_buff *skb)
1747{
1748 struct tcphdr *th = (struct tcphdr *)skb->data;
ac6e7800 1749
f2feaefd 1750 return sk_filter_trim_cap(sk, skb, th->doff * 4);
ac6e7800
ED
1751}
1752EXPORT_SYMBOL(tcp_filter);
1753
eeea10b8
ED
1754static void tcp_v4_restore_cb(struct sk_buff *skb)
1755{
1756 memmove(IPCB(skb), &TCP_SKB_CB(skb)->header.h4,
1757 sizeof(struct inet_skb_parm));
1758}
1759
1760static void tcp_v4_fill_cb(struct sk_buff *skb, const struct iphdr *iph,
1761 const struct tcphdr *th)
1762{
1763 /* This is tricky : We move IPCB at its correct location into TCP_SKB_CB()
1764 * barrier() makes sure compiler wont play fool^Waliasing games.
1765 */
1766 memmove(&TCP_SKB_CB(skb)->header.h4, IPCB(skb),
1767 sizeof(struct inet_skb_parm));
1768 barrier();
1769
1770 TCP_SKB_CB(skb)->seq = ntohl(th->seq);
1771 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
1772 skb->len - th->doff * 4);
1773 TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
1774 TCP_SKB_CB(skb)->tcp_flags = tcp_flag_byte(th);
1775 TCP_SKB_CB(skb)->tcp_tw_isn = 0;
1776 TCP_SKB_CB(skb)->ip_dsfield = ipv4_get_dsfield(iph);
1777 TCP_SKB_CB(skb)->sacked = 0;
1778 TCP_SKB_CB(skb)->has_rxtstamp =
1779 skb->tstamp || skb_hwtstamps(skb)->hwtstamp;
1780}
1781
1da177e4
LT
1782/*
1783 * From tcp_input.c
1784 */
1785
1786int tcp_v4_rcv(struct sk_buff *skb)
1787{
3b24d854 1788 struct net *net = dev_net(skb->dev);
8b27dae5 1789 struct sk_buff *skb_to_free;
3fa6f616 1790 int sdif = inet_sdif(skb);
eddc9ec5 1791 const struct iphdr *iph;
cf533ea5 1792 const struct tcphdr *th;
3b24d854 1793 bool refcounted;
1da177e4
LT
1794 struct sock *sk;
1795 int ret;
1796
1797 if (skb->pkt_type != PACKET_HOST)
1798 goto discard_it;
1799
1800 /* Count it even if it's bad */
90bbcc60 1801 __TCP_INC_STATS(net, TCP_MIB_INSEGS);
1da177e4
LT
1802
1803 if (!pskb_may_pull(skb, sizeof(struct tcphdr)))
1804 goto discard_it;
1805
ea1627c2 1806 th = (const struct tcphdr *)skb->data;
1da177e4 1807
ea1627c2 1808 if (unlikely(th->doff < sizeof(struct tcphdr) / 4))
1da177e4
LT
1809 goto bad_packet;
1810 if (!pskb_may_pull(skb, th->doff * 4))
1811 goto discard_it;
1812
1813 /* An explanation is required here, I think.
1814 * Packet length and doff are validated by header prediction,
caa20d9a 1815 * provided case of th->doff==0 is eliminated.
1da177e4 1816 * So, we defer the checks. */
ed70fcfc
TH
1817
1818 if (skb_checksum_init(skb, IPPROTO_TCP, inet_compute_pseudo))
6a5dc9e5 1819 goto csum_error;
1da177e4 1820
ea1627c2 1821 th = (const struct tcphdr *)skb->data;
eddc9ec5 1822 iph = ip_hdr(skb);
4bdc3d66 1823lookup:
a583636a 1824 sk = __inet_lookup_skb(&tcp_hashinfo, skb, __tcp_hdrlen(th), th->source,
3fa6f616 1825 th->dest, sdif, &refcounted);
1da177e4
LT
1826 if (!sk)
1827 goto no_tcp_socket;
1828
bb134d5d
ED
1829process:
1830 if (sk->sk_state == TCP_TIME_WAIT)
1831 goto do_time_wait;
1832
079096f1
ED
1833 if (sk->sk_state == TCP_NEW_SYN_RECV) {
1834 struct request_sock *req = inet_reqsk(sk);
e0f9759f 1835 bool req_stolen = false;
7716682c 1836 struct sock *nsk;
079096f1
ED
1837
1838 sk = req->rsk_listener;
72923555 1839 if (unlikely(tcp_v4_inbound_md5_hash(sk, skb))) {
e65c332d 1840 sk_drops_add(sk, skb);
72923555
ED
1841 reqsk_put(req);
1842 goto discard_it;
1843 }
4fd44a98
FL
1844 if (tcp_checksum_complete(skb)) {
1845 reqsk_put(req);
1846 goto csum_error;
1847 }
7716682c 1848 if (unlikely(sk->sk_state != TCP_LISTEN)) {
f03f2e15 1849 inet_csk_reqsk_queue_drop_and_put(sk, req);
4bdc3d66
ED
1850 goto lookup;
1851 }
3b24d854
ED
1852 /* We own a reference on the listener, increase it again
1853 * as we might lose it too soon.
1854 */
7716682c 1855 sock_hold(sk);
3b24d854 1856 refcounted = true;
1f3b359f 1857 nsk = NULL;
eeea10b8
ED
1858 if (!tcp_filter(sk, skb)) {
1859 th = (const struct tcphdr *)skb->data;
1860 iph = ip_hdr(skb);
1861 tcp_v4_fill_cb(skb, iph, th);
e0f9759f 1862 nsk = tcp_check_req(sk, skb, req, false, &req_stolen);
eeea10b8 1863 }
079096f1
ED
1864 if (!nsk) {
1865 reqsk_put(req);
e0f9759f
ED
1866 if (req_stolen) {
1867 /* Another cpu got exclusive access to req
1868 * and created a full blown socket.
1869 * Try to feed this packet to this socket
1870 * instead of discarding it.
1871 */
1872 tcp_v4_restore_cb(skb);
1873 sock_put(sk);
1874 goto lookup;
1875 }
7716682c 1876 goto discard_and_relse;
079096f1
ED
1877 }
1878 if (nsk == sk) {
079096f1 1879 reqsk_put(req);
eeea10b8 1880 tcp_v4_restore_cb(skb);
079096f1
ED
1881 } else if (tcp_child_process(sk, nsk, skb)) {
1882 tcp_v4_send_reset(nsk, skb);
7716682c 1883 goto discard_and_relse;
079096f1 1884 } else {
7716682c 1885 sock_put(sk);
079096f1
ED
1886 return 0;
1887 }
1888 }
6cce09f8 1889 if (unlikely(iph->ttl < inet_sk(sk)->min_ttl)) {
02a1d6e7 1890 __NET_INC_STATS(net, LINUX_MIB_TCPMINTTLDROP);
d218d111 1891 goto discard_and_relse;
6cce09f8 1892 }
d218d111 1893
1da177e4
LT
1894 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1895 goto discard_and_relse;
9ea88a15 1896
9ea88a15
DP
1897 if (tcp_v4_inbound_md5_hash(sk, skb))
1898 goto discard_and_relse;
9ea88a15 1899
b59c2701 1900 nf_reset(skb);
1da177e4 1901
ac6e7800 1902 if (tcp_filter(sk, skb))
1da177e4 1903 goto discard_and_relse;
ac6e7800
ED
1904 th = (const struct tcphdr *)skb->data;
1905 iph = ip_hdr(skb);
eeea10b8 1906 tcp_v4_fill_cb(skb, iph, th);
1da177e4
LT
1907
1908 skb->dev = NULL;
1909
e994b2f0
ED
1910 if (sk->sk_state == TCP_LISTEN) {
1911 ret = tcp_v4_do_rcv(sk, skb);
1912 goto put_and_return;
1913 }
1914
1915 sk_incoming_cpu_update(sk);
1916
c6366184 1917 bh_lock_sock_nested(sk);
a44d6eac 1918 tcp_segs_in(tcp_sk(sk), skb);
1da177e4
LT
1919 ret = 0;
1920 if (!sock_owned_by_user(sk)) {
8b27dae5
ED
1921 skb_to_free = sk->sk_rx_skb_cache;
1922 sk->sk_rx_skb_cache = NULL;
e7942d06 1923 ret = tcp_v4_do_rcv(sk, skb);
8b27dae5
ED
1924 } else {
1925 if (tcp_add_backlog(sk, skb))
1926 goto discard_and_relse;
1927 skb_to_free = NULL;
6b03a53a 1928 }
1da177e4 1929 bh_unlock_sock(sk);
8b27dae5
ED
1930 if (skb_to_free)
1931 __kfree_skb(skb_to_free);
1da177e4 1932
e994b2f0 1933put_and_return:
3b24d854
ED
1934 if (refcounted)
1935 sock_put(sk);
1da177e4
LT
1936
1937 return ret;
1938
1939no_tcp_socket:
1940 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1941 goto discard_it;
1942
eeea10b8
ED
1943 tcp_v4_fill_cb(skb, iph, th);
1944
12e25e10 1945 if (tcp_checksum_complete(skb)) {
6a5dc9e5 1946csum_error:
90bbcc60 1947 __TCP_INC_STATS(net, TCP_MIB_CSUMERRORS);
1da177e4 1948bad_packet:
90bbcc60 1949 __TCP_INC_STATS(net, TCP_MIB_INERRS);
1da177e4 1950 } else {
cfb6eeb4 1951 tcp_v4_send_reset(NULL, skb);
1da177e4
LT
1952 }
1953
1954discard_it:
1955 /* Discard frame. */
1956 kfree_skb(skb);
e905a9ed 1957 return 0;
1da177e4
LT
1958
1959discard_and_relse:
532182cd 1960 sk_drops_add(sk, skb);
3b24d854
ED
1961 if (refcounted)
1962 sock_put(sk);
1da177e4
LT
1963 goto discard_it;
1964
1965do_time_wait:
1966 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) {
9469c7b4 1967 inet_twsk_put(inet_twsk(sk));
1da177e4
LT
1968 goto discard_it;
1969 }
1970
eeea10b8
ED
1971 tcp_v4_fill_cb(skb, iph, th);
1972
6a5dc9e5
ED
1973 if (tcp_checksum_complete(skb)) {
1974 inet_twsk_put(inet_twsk(sk));
1975 goto csum_error;
1da177e4 1976 }
9469c7b4 1977 switch (tcp_timewait_state_process(inet_twsk(sk), skb, th)) {
1da177e4 1978 case TCP_TW_SYN: {
c346dca1 1979 struct sock *sk2 = inet_lookup_listener(dev_net(skb->dev),
a583636a
CG
1980 &tcp_hashinfo, skb,
1981 __tcp_hdrlen(th),
da5e3630 1982 iph->saddr, th->source,
eddc9ec5 1983 iph->daddr, th->dest,
3fa6f616
DA
1984 inet_iif(skb),
1985 sdif);
1da177e4 1986 if (sk2) {
dbe7faa4 1987 inet_twsk_deschedule_put(inet_twsk(sk));
1da177e4 1988 sk = sk2;
eeea10b8 1989 tcp_v4_restore_cb(skb);
3b24d854 1990 refcounted = false;
1da177e4
LT
1991 goto process;
1992 }
1da177e4 1993 }
fcfd6dfa
GS
1994 /* to ACK */
1995 /* fall through */
1da177e4
LT
1996 case TCP_TW_ACK:
1997 tcp_v4_timewait_ack(sk, skb);
1998 break;
1999 case TCP_TW_RST:
271c3b9b
FW
2000 tcp_v4_send_reset(sk, skb);
2001 inet_twsk_deschedule_put(inet_twsk(sk));
2002 goto discard_it;
1da177e4
LT
2003 case TCP_TW_SUCCESS:;
2004 }
2005 goto discard_it;
2006}
2007
ccb7c410
DM
2008static struct timewait_sock_ops tcp_timewait_sock_ops = {
2009 .twsk_obj_size = sizeof(struct tcp_timewait_sock),
2010 .twsk_unique = tcp_twsk_unique,
2011 .twsk_destructor= tcp_twsk_destructor,
ccb7c410 2012};
1da177e4 2013
63d02d15 2014void inet_sk_rx_dst_set(struct sock *sk, const struct sk_buff *skb)
5d299f3d
ED
2015{
2016 struct dst_entry *dst = skb_dst(skb);
2017
5037e9ef 2018 if (dst && dst_hold_safe(dst)) {
ca777eff
ED
2019 sk->sk_rx_dst = dst;
2020 inet_sk(sk)->rx_dst_ifindex = skb->skb_iif;
2021 }
5d299f3d 2022}
63d02d15 2023EXPORT_SYMBOL(inet_sk_rx_dst_set);
5d299f3d 2024
3b401a81 2025const struct inet_connection_sock_af_ops ipv4_specific = {
543d9cfe
ACM
2026 .queue_xmit = ip_queue_xmit,
2027 .send_check = tcp_v4_send_check,
2028 .rebuild_header = inet_sk_rebuild_header,
5d299f3d 2029 .sk_rx_dst_set = inet_sk_rx_dst_set,
543d9cfe
ACM
2030 .conn_request = tcp_v4_conn_request,
2031 .syn_recv_sock = tcp_v4_syn_recv_sock,
543d9cfe
ACM
2032 .net_header_len = sizeof(struct iphdr),
2033 .setsockopt = ip_setsockopt,
2034 .getsockopt = ip_getsockopt,
2035 .addr2sockaddr = inet_csk_addr2sockaddr,
2036 .sockaddr_len = sizeof(struct sockaddr_in),
3fdadf7d 2037#ifdef CONFIG_COMPAT
543d9cfe
ACM
2038 .compat_setsockopt = compat_ip_setsockopt,
2039 .compat_getsockopt = compat_ip_getsockopt,
3fdadf7d 2040#endif
4fab9071 2041 .mtu_reduced = tcp_v4_mtu_reduced,
1da177e4 2042};
4bc2f18b 2043EXPORT_SYMBOL(ipv4_specific);
1da177e4 2044
cfb6eeb4 2045#ifdef CONFIG_TCP_MD5SIG
b2e4b3de 2046static const struct tcp_sock_af_ops tcp_sock_ipv4_specific = {
cfb6eeb4 2047 .md5_lookup = tcp_v4_md5_lookup,
49a72dfb 2048 .calc_md5_hash = tcp_v4_md5_hash_skb,
cfb6eeb4 2049 .md5_parse = tcp_v4_parse_md5_keys,
cfb6eeb4 2050};
b6332e6c 2051#endif
cfb6eeb4 2052
1da177e4
LT
2053/* NOTE: A lot of things set to zero explicitly by call to
2054 * sk_alloc() so need not be done here.
2055 */
2056static int tcp_v4_init_sock(struct sock *sk)
2057{
6687e988 2058 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4 2059
900f65d3 2060 tcp_init_sock(sk);
1da177e4 2061
8292a17a 2062 icsk->icsk_af_ops = &ipv4_specific;
900f65d3 2063
cfb6eeb4 2064#ifdef CONFIG_TCP_MD5SIG
ac807fa8 2065 tcp_sk(sk)->af_specific = &tcp_sock_ipv4_specific;
cfb6eeb4 2066#endif
1da177e4 2067
1da177e4
LT
2068 return 0;
2069}
2070
7d06b2e0 2071void tcp_v4_destroy_sock(struct sock *sk)
1da177e4
LT
2072{
2073 struct tcp_sock *tp = tcp_sk(sk);
2074
e1a4aa50
SL
2075 trace_tcp_destroy_sock(sk);
2076
1da177e4
LT
2077 tcp_clear_xmit_timers(sk);
2078
6687e988 2079 tcp_cleanup_congestion_control(sk);
317a76f9 2080
734942cc
DW
2081 tcp_cleanup_ulp(sk);
2082
1da177e4 2083 /* Cleanup up the write buffer. */
fe067e8a 2084 tcp_write_queue_purge(sk);
1da177e4 2085
cf1ef3f0
WW
2086 /* Check if we want to disable active TFO */
2087 tcp_fastopen_active_disable_ofo_check(sk);
2088
1da177e4 2089 /* Cleans up our, hopefully empty, out_of_order_queue. */
9f5afeae 2090 skb_rbtree_purge(&tp->out_of_order_queue);
1da177e4 2091
cfb6eeb4
YH
2092#ifdef CONFIG_TCP_MD5SIG
2093 /* Clean up the MD5 key list, if any */
2094 if (tp->md5sig_info) {
a915da9b 2095 tcp_clear_md5_list(sk);
fb7df5e4 2096 kfree_rcu(rcu_dereference_protected(tp->md5sig_info, 1), rcu);
cfb6eeb4
YH
2097 tp->md5sig_info = NULL;
2098 }
2099#endif
1a2449a8 2100
1da177e4 2101 /* Clean up a referenced TCP bind bucket. */
463c84b9 2102 if (inet_csk(sk)->icsk_bind_hash)
ab1e0a13 2103 inet_put_port(sk);
1da177e4 2104
00db4124 2105 BUG_ON(tp->fastopen_rsk);
435cf559 2106
cf60af03
YC
2107 /* If socket is aborted during connect operation */
2108 tcp_free_fastopen_req(tp);
1fba70e5 2109 tcp_fastopen_destroy_cipher(sk);
cd8ae852 2110 tcp_saved_syn_free(tp);
cf60af03 2111
180d8cd9 2112 sk_sockets_allocated_dec(sk);
1da177e4 2113}
1da177e4
LT
2114EXPORT_SYMBOL(tcp_v4_destroy_sock);
2115
2116#ifdef CONFIG_PROC_FS
2117/* Proc filesystem TCP sock list dumping. */
2118
a8b690f9
TH
2119/*
2120 * Get next listener socket follow cur. If cur is NULL, get first socket
2121 * starting from bucket given in st->bucket; when st->bucket is zero the
2122 * very first socket in the hash table is returned.
2123 */
1da177e4
LT
2124static void *listening_get_next(struct seq_file *seq, void *cur)
2125{
37d849bb 2126 struct tcp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file));
5799de0b 2127 struct tcp_iter_state *st = seq->private;
a4146b1b 2128 struct net *net = seq_file_net(seq);
3b24d854 2129 struct inet_listen_hashbucket *ilb;
3b24d854 2130 struct sock *sk = cur;
1da177e4
LT
2131
2132 if (!sk) {
3b24d854 2133get_head:
a8b690f9 2134 ilb = &tcp_hashinfo.listening_hash[st->bucket];
9652dc2e 2135 spin_lock(&ilb->lock);
3b24d854 2136 sk = sk_head(&ilb->head);
a8b690f9 2137 st->offset = 0;
1da177e4
LT
2138 goto get_sk;
2139 }
5caea4ea 2140 ilb = &tcp_hashinfo.listening_hash[st->bucket];
1da177e4 2141 ++st->num;
a8b690f9 2142 ++st->offset;
1da177e4 2143
3b24d854 2144 sk = sk_next(sk);
1da177e4 2145get_sk:
3b24d854 2146 sk_for_each_from(sk) {
8475ef9f
PE
2147 if (!net_eq(sock_net(sk), net))
2148 continue;
37d849bb 2149 if (sk->sk_family == afinfo->family)
3b24d854 2150 return sk;
1da177e4 2151 }
9652dc2e 2152 spin_unlock(&ilb->lock);
a8b690f9 2153 st->offset = 0;
3b24d854
ED
2154 if (++st->bucket < INET_LHTABLE_SIZE)
2155 goto get_head;
2156 return NULL;
1da177e4
LT
2157}
2158
2159static void *listening_get_idx(struct seq_file *seq, loff_t *pos)
2160{
a8b690f9
TH
2161 struct tcp_iter_state *st = seq->private;
2162 void *rc;
2163
2164 st->bucket = 0;
2165 st->offset = 0;
2166 rc = listening_get_next(seq, NULL);
1da177e4
LT
2167
2168 while (rc && *pos) {
2169 rc = listening_get_next(seq, rc);
2170 --*pos;
2171 }
2172 return rc;
2173}
2174
05dbc7b5 2175static inline bool empty_bucket(const struct tcp_iter_state *st)
6eac5604 2176{
05dbc7b5 2177 return hlist_nulls_empty(&tcp_hashinfo.ehash[st->bucket].chain);
6eac5604
AK
2178}
2179
a8b690f9
TH
2180/*
2181 * Get first established socket starting from bucket given in st->bucket.
2182 * If st->bucket is zero, the very first socket in the hash is returned.
2183 */
1da177e4
LT
2184static void *established_get_first(struct seq_file *seq)
2185{
37d849bb 2186 struct tcp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file));
5799de0b 2187 struct tcp_iter_state *st = seq->private;
a4146b1b 2188 struct net *net = seq_file_net(seq);
1da177e4
LT
2189 void *rc = NULL;
2190
a8b690f9
TH
2191 st->offset = 0;
2192 for (; st->bucket <= tcp_hashinfo.ehash_mask; ++st->bucket) {
1da177e4 2193 struct sock *sk;
3ab5aee7 2194 struct hlist_nulls_node *node;
9db66bdc 2195 spinlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, st->bucket);
1da177e4 2196
6eac5604
AK
2197 /* Lockless fast path for the common case of empty buckets */
2198 if (empty_bucket(st))
2199 continue;
2200
9db66bdc 2201 spin_lock_bh(lock);
3ab5aee7 2202 sk_nulls_for_each(sk, node, &tcp_hashinfo.ehash[st->bucket].chain) {
37d849bb 2203 if (sk->sk_family != afinfo->family ||
878628fb 2204 !net_eq(sock_net(sk), net)) {
1da177e4
LT
2205 continue;
2206 }
2207 rc = sk;
2208 goto out;
2209 }
9db66bdc 2210 spin_unlock_bh(lock);
1da177e4
LT
2211 }
2212out:
2213 return rc;
2214}
2215
2216static void *established_get_next(struct seq_file *seq, void *cur)
2217{
37d849bb 2218 struct tcp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file));
1da177e4 2219 struct sock *sk = cur;
3ab5aee7 2220 struct hlist_nulls_node *node;
5799de0b 2221 struct tcp_iter_state *st = seq->private;
a4146b1b 2222 struct net *net = seq_file_net(seq);
1da177e4
LT
2223
2224 ++st->num;
a8b690f9 2225 ++st->offset;
1da177e4 2226
05dbc7b5 2227 sk = sk_nulls_next(sk);
1da177e4 2228
3ab5aee7 2229 sk_nulls_for_each_from(sk, node) {
37d849bb
CH
2230 if (sk->sk_family == afinfo->family &&
2231 net_eq(sock_net(sk), net))
05dbc7b5 2232 return sk;
1da177e4
LT
2233 }
2234
05dbc7b5
ED
2235 spin_unlock_bh(inet_ehash_lockp(&tcp_hashinfo, st->bucket));
2236 ++st->bucket;
2237 return established_get_first(seq);
1da177e4
LT
2238}
2239
2240static void *established_get_idx(struct seq_file *seq, loff_t pos)
2241{
a8b690f9
TH
2242 struct tcp_iter_state *st = seq->private;
2243 void *rc;
2244
2245 st->bucket = 0;
2246 rc = established_get_first(seq);
1da177e4
LT
2247
2248 while (rc && pos) {
2249 rc = established_get_next(seq, rc);
2250 --pos;
7174259e 2251 }
1da177e4
LT
2252 return rc;
2253}
2254
2255static void *tcp_get_idx(struct seq_file *seq, loff_t pos)
2256{
2257 void *rc;
5799de0b 2258 struct tcp_iter_state *st = seq->private;
1da177e4 2259
1da177e4
LT
2260 st->state = TCP_SEQ_STATE_LISTENING;
2261 rc = listening_get_idx(seq, &pos);
2262
2263 if (!rc) {
1da177e4
LT
2264 st->state = TCP_SEQ_STATE_ESTABLISHED;
2265 rc = established_get_idx(seq, pos);
2266 }
2267
2268 return rc;
2269}
2270
a8b690f9
TH
2271static void *tcp_seek_last_pos(struct seq_file *seq)
2272{
2273 struct tcp_iter_state *st = seq->private;
2274 int offset = st->offset;
2275 int orig_num = st->num;
2276 void *rc = NULL;
2277
2278 switch (st->state) {
a8b690f9
TH
2279 case TCP_SEQ_STATE_LISTENING:
2280 if (st->bucket >= INET_LHTABLE_SIZE)
2281 break;
2282 st->state = TCP_SEQ_STATE_LISTENING;
2283 rc = listening_get_next(seq, NULL);
2284 while (offset-- && rc)
2285 rc = listening_get_next(seq, rc);
2286 if (rc)
2287 break;
2288 st->bucket = 0;
05dbc7b5 2289 st->state = TCP_SEQ_STATE_ESTABLISHED;
a8b690f9
TH
2290 /* Fallthrough */
2291 case TCP_SEQ_STATE_ESTABLISHED:
a8b690f9
TH
2292 if (st->bucket > tcp_hashinfo.ehash_mask)
2293 break;
2294 rc = established_get_first(seq);
2295 while (offset-- && rc)
2296 rc = established_get_next(seq, rc);
2297 }
2298
2299 st->num = orig_num;
2300
2301 return rc;
2302}
2303
37d849bb 2304void *tcp_seq_start(struct seq_file *seq, loff_t *pos)
1da177e4 2305{
5799de0b 2306 struct tcp_iter_state *st = seq->private;
a8b690f9
TH
2307 void *rc;
2308
2309 if (*pos && *pos == st->last_pos) {
2310 rc = tcp_seek_last_pos(seq);
2311 if (rc)
2312 goto out;
2313 }
2314
1da177e4
LT
2315 st->state = TCP_SEQ_STATE_LISTENING;
2316 st->num = 0;
a8b690f9
TH
2317 st->bucket = 0;
2318 st->offset = 0;
2319 rc = *pos ? tcp_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2320
2321out:
2322 st->last_pos = *pos;
2323 return rc;
1da177e4 2324}
37d849bb 2325EXPORT_SYMBOL(tcp_seq_start);
1da177e4 2326
37d849bb 2327void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1da177e4 2328{
a8b690f9 2329 struct tcp_iter_state *st = seq->private;
1da177e4 2330 void *rc = NULL;
1da177e4
LT
2331
2332 if (v == SEQ_START_TOKEN) {
2333 rc = tcp_get_idx(seq, 0);
2334 goto out;
2335 }
1da177e4
LT
2336
2337 switch (st->state) {
1da177e4
LT
2338 case TCP_SEQ_STATE_LISTENING:
2339 rc = listening_get_next(seq, v);
2340 if (!rc) {
1da177e4 2341 st->state = TCP_SEQ_STATE_ESTABLISHED;
a8b690f9
TH
2342 st->bucket = 0;
2343 st->offset = 0;
1da177e4
LT
2344 rc = established_get_first(seq);
2345 }
2346 break;
2347 case TCP_SEQ_STATE_ESTABLISHED:
1da177e4
LT
2348 rc = established_get_next(seq, v);
2349 break;
2350 }
2351out:
2352 ++*pos;
a8b690f9 2353 st->last_pos = *pos;
1da177e4
LT
2354 return rc;
2355}
37d849bb 2356EXPORT_SYMBOL(tcp_seq_next);
1da177e4 2357
37d849bb 2358void tcp_seq_stop(struct seq_file *seq, void *v)
1da177e4 2359{
5799de0b 2360 struct tcp_iter_state *st = seq->private;
1da177e4
LT
2361
2362 switch (st->state) {
1da177e4
LT
2363 case TCP_SEQ_STATE_LISTENING:
2364 if (v != SEQ_START_TOKEN)
9652dc2e 2365 spin_unlock(&tcp_hashinfo.listening_hash[st->bucket].lock);
1da177e4 2366 break;
1da177e4
LT
2367 case TCP_SEQ_STATE_ESTABLISHED:
2368 if (v)
9db66bdc 2369 spin_unlock_bh(inet_ehash_lockp(&tcp_hashinfo, st->bucket));
1da177e4
LT
2370 break;
2371 }
2372}
37d849bb 2373EXPORT_SYMBOL(tcp_seq_stop);
1da177e4 2374
d4f06873 2375static void get_openreq4(const struct request_sock *req,
aa3a0c8c 2376 struct seq_file *f, int i)
1da177e4 2377{
2e6599cb 2378 const struct inet_request_sock *ireq = inet_rsk(req);
fa76ce73 2379 long delta = req->rsk_timer.expires - jiffies;
1da177e4 2380
5e659e4c 2381 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
652586df 2382 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %u %d %pK",
1da177e4 2383 i,
634fb979 2384 ireq->ir_loc_addr,
d4f06873 2385 ireq->ir_num,
634fb979
ED
2386 ireq->ir_rmt_addr,
2387 ntohs(ireq->ir_rmt_port),
1da177e4
LT
2388 TCP_SYN_RECV,
2389 0, 0, /* could print option size, but that is af dependent. */
2390 1, /* timers active (only the expire timer) */
a399a805 2391 jiffies_delta_to_clock_t(delta),
e6c022a4 2392 req->num_timeout,
aa3a0c8c
ED
2393 from_kuid_munged(seq_user_ns(f),
2394 sock_i_uid(req->rsk_listener)),
1da177e4
LT
2395 0, /* non standard timer */
2396 0, /* open_requests have no inode */
d4f06873 2397 0,
652586df 2398 req);
1da177e4
LT
2399}
2400
652586df 2401static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i)
1da177e4
LT
2402{
2403 int timer_active;
2404 unsigned long timer_expires;
cf533ea5 2405 const struct tcp_sock *tp = tcp_sk(sk);
cf4c6bf8 2406 const struct inet_connection_sock *icsk = inet_csk(sk);
cf533ea5 2407 const struct inet_sock *inet = inet_sk(sk);
0536fcc0 2408 const struct fastopen_queue *fastopenq = &icsk->icsk_accept_queue.fastopenq;
c720c7e8
ED
2409 __be32 dest = inet->inet_daddr;
2410 __be32 src = inet->inet_rcv_saddr;
2411 __u16 destp = ntohs(inet->inet_dport);
2412 __u16 srcp = ntohs(inet->inet_sport);
49d09007 2413 int rx_queue;
00fd38d9 2414 int state;
1da177e4 2415
6ba8a3b1 2416 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
57dde7f7 2417 icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT ||
6ba8a3b1 2418 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
1da177e4 2419 timer_active = 1;
463c84b9
ACM
2420 timer_expires = icsk->icsk_timeout;
2421 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
1da177e4 2422 timer_active = 4;
463c84b9 2423 timer_expires = icsk->icsk_timeout;
cf4c6bf8 2424 } else if (timer_pending(&sk->sk_timer)) {
1da177e4 2425 timer_active = 2;
cf4c6bf8 2426 timer_expires = sk->sk_timer.expires;
1da177e4
LT
2427 } else {
2428 timer_active = 0;
2429 timer_expires = jiffies;
2430 }
2431
986ffdfd 2432 state = inet_sk_state_load(sk);
00fd38d9 2433 if (state == TCP_LISTEN)
49d09007
ED
2434 rx_queue = sk->sk_ack_backlog;
2435 else
00fd38d9
ED
2436 /* Because we don't lock the socket,
2437 * we might find a transient negative value.
49d09007
ED
2438 */
2439 rx_queue = max_t(int, tp->rcv_nxt - tp->copied_seq, 0);
2440
5e659e4c 2441 seq_printf(f, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX "
652586df 2442 "%08X %5u %8d %lu %d %pK %lu %lu %u %u %d",
00fd38d9 2443 i, src, srcp, dest, destp, state,
47da8ee6 2444 tp->write_seq - tp->snd_una,
49d09007 2445 rx_queue,
1da177e4 2446 timer_active,
a399a805 2447 jiffies_delta_to_clock_t(timer_expires - jiffies),
463c84b9 2448 icsk->icsk_retransmits,
a7cb5a49 2449 from_kuid_munged(seq_user_ns(f), sock_i_uid(sk)),
6687e988 2450 icsk->icsk_probes_out,
cf4c6bf8 2451 sock_i_ino(sk),
41c6d650 2452 refcount_read(&sk->sk_refcnt), sk,
7be87351
SH
2453 jiffies_to_clock_t(icsk->icsk_rto),
2454 jiffies_to_clock_t(icsk->icsk_ack.ato),
31954cd8 2455 (icsk->icsk_ack.quick << 1) | inet_csk_in_pingpong_mode(sk),
1da177e4 2456 tp->snd_cwnd,
00fd38d9
ED
2457 state == TCP_LISTEN ?
2458 fastopenq->max_qlen :
652586df 2459 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh));
1da177e4
LT
2460}
2461
cf533ea5 2462static void get_timewait4_sock(const struct inet_timewait_sock *tw,
652586df 2463 struct seq_file *f, int i)
1da177e4 2464{
789f558c 2465 long delta = tw->tw_timer.expires - jiffies;
23f33c2d 2466 __be32 dest, src;
1da177e4 2467 __u16 destp, srcp;
1da177e4
LT
2468
2469 dest = tw->tw_daddr;
2470 src = tw->tw_rcv_saddr;
2471 destp = ntohs(tw->tw_dport);
2472 srcp = ntohs(tw->tw_sport);
2473
5e659e4c 2474 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
652586df 2475 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %d %d %pK",
1da177e4 2476 i, src, srcp, dest, destp, tw->tw_substate, 0, 0,
a399a805 2477 3, jiffies_delta_to_clock_t(delta), 0, 0, 0, 0,
41c6d650 2478 refcount_read(&tw->tw_refcnt), tw);
1da177e4
LT
2479}
2480
2481#define TMPSZ 150
2482
2483static int tcp4_seq_show(struct seq_file *seq, void *v)
2484{
5799de0b 2485 struct tcp_iter_state *st;
05dbc7b5 2486 struct sock *sk = v;
1da177e4 2487
652586df 2488 seq_setwidth(seq, TMPSZ - 1);
1da177e4 2489 if (v == SEQ_START_TOKEN) {
652586df 2490 seq_puts(seq, " sl local_address rem_address st tx_queue "
1da177e4
LT
2491 "rx_queue tr tm->when retrnsmt uid timeout "
2492 "inode");
2493 goto out;
2494 }
2495 st = seq->private;
2496
079096f1
ED
2497 if (sk->sk_state == TCP_TIME_WAIT)
2498 get_timewait4_sock(v, seq, st->num);
2499 else if (sk->sk_state == TCP_NEW_SYN_RECV)
aa3a0c8c 2500 get_openreq4(v, seq, st->num);
079096f1
ED
2501 else
2502 get_tcp4_sock(v, seq, st->num);
1da177e4 2503out:
652586df 2504 seq_pad(seq, '\n');
1da177e4
LT
2505 return 0;
2506}
2507
37d849bb
CH
2508static const struct seq_operations tcp4_seq_ops = {
2509 .show = tcp4_seq_show,
2510 .start = tcp_seq_start,
2511 .next = tcp_seq_next,
2512 .stop = tcp_seq_stop,
2513};
2514
1da177e4 2515static struct tcp_seq_afinfo tcp4_seq_afinfo = {
1da177e4 2516 .family = AF_INET,
1da177e4
LT
2517};
2518
2c8c1e72 2519static int __net_init tcp4_proc_init_net(struct net *net)
757764f6 2520{
c3506372
CH
2521 if (!proc_create_net_data("tcp", 0444, net->proc_net, &tcp4_seq_ops,
2522 sizeof(struct tcp_iter_state), &tcp4_seq_afinfo))
37d849bb
CH
2523 return -ENOMEM;
2524 return 0;
757764f6
PE
2525}
2526
2c8c1e72 2527static void __net_exit tcp4_proc_exit_net(struct net *net)
757764f6 2528{
37d849bb 2529 remove_proc_entry("tcp", net->proc_net);
757764f6
PE
2530}
2531
2532static struct pernet_operations tcp4_net_ops = {
2533 .init = tcp4_proc_init_net,
2534 .exit = tcp4_proc_exit_net,
2535};
2536
1da177e4
LT
2537int __init tcp4_proc_init(void)
2538{
757764f6 2539 return register_pernet_subsys(&tcp4_net_ops);
1da177e4
LT
2540}
2541
2542void tcp4_proc_exit(void)
2543{
757764f6 2544 unregister_pernet_subsys(&tcp4_net_ops);
1da177e4
LT
2545}
2546#endif /* CONFIG_PROC_FS */
2547
2548struct proto tcp_prot = {
2549 .name = "TCP",
2550 .owner = THIS_MODULE,
2551 .close = tcp_close,
d74bad4e 2552 .pre_connect = tcp_v4_pre_connect,
1da177e4
LT
2553 .connect = tcp_v4_connect,
2554 .disconnect = tcp_disconnect,
463c84b9 2555 .accept = inet_csk_accept,
1da177e4
LT
2556 .ioctl = tcp_ioctl,
2557 .init = tcp_v4_init_sock,
2558 .destroy = tcp_v4_destroy_sock,
2559 .shutdown = tcp_shutdown,
2560 .setsockopt = tcp_setsockopt,
2561 .getsockopt = tcp_getsockopt,
4b9d07a4 2562 .keepalive = tcp_set_keepalive,
1da177e4 2563 .recvmsg = tcp_recvmsg,
7ba42910
CG
2564 .sendmsg = tcp_sendmsg,
2565 .sendpage = tcp_sendpage,
1da177e4 2566 .backlog_rcv = tcp_v4_do_rcv,
46d3ceab 2567 .release_cb = tcp_release_cb,
ab1e0a13
ACM
2568 .hash = inet_hash,
2569 .unhash = inet_unhash,
2570 .get_port = inet_csk_get_port,
1da177e4 2571 .enter_memory_pressure = tcp_enter_memory_pressure,
06044751 2572 .leave_memory_pressure = tcp_leave_memory_pressure,
c9bee3b7 2573 .stream_memory_free = tcp_stream_memory_free,
1da177e4 2574 .sockets_allocated = &tcp_sockets_allocated,
0a5578cf 2575 .orphan_count = &tcp_orphan_count,
1da177e4
LT
2576 .memory_allocated = &tcp_memory_allocated,
2577 .memory_pressure = &tcp_memory_pressure,
a4fe34bf 2578 .sysctl_mem = sysctl_tcp_mem,
356d1833
ED
2579 .sysctl_wmem_offset = offsetof(struct net, ipv4.sysctl_tcp_wmem),
2580 .sysctl_rmem_offset = offsetof(struct net, ipv4.sysctl_tcp_rmem),
1da177e4
LT
2581 .max_header = MAX_TCP_HEADER,
2582 .obj_size = sizeof(struct tcp_sock),
5f0d5a3a 2583 .slab_flags = SLAB_TYPESAFE_BY_RCU,
6d6ee43e 2584 .twsk_prot = &tcp_timewait_sock_ops,
60236fdd 2585 .rsk_prot = &tcp_request_sock_ops,
39d8cda7 2586 .h.hashinfo = &tcp_hashinfo,
7ba42910 2587 .no_autobind = true,
543d9cfe
ACM
2588#ifdef CONFIG_COMPAT
2589 .compat_setsockopt = compat_tcp_setsockopt,
2590 .compat_getsockopt = compat_tcp_getsockopt,
d1a4c0b3 2591#endif
c1e64e29 2592 .diag_destroy = tcp_abort,
1da177e4 2593};
4bc2f18b 2594EXPORT_SYMBOL(tcp_prot);
1da177e4 2595
bdbbb852
ED
2596static void __net_exit tcp_sk_exit(struct net *net)
2597{
2598 int cpu;
2599
b506bc97
DL
2600 if (net->ipv4.tcp_congestion_control)
2601 module_put(net->ipv4.tcp_congestion_control->owner);
6670e152 2602
bdbbb852
ED
2603 for_each_possible_cpu(cpu)
2604 inet_ctl_sock_destroy(*per_cpu_ptr(net->ipv4.tcp_sk, cpu));
2605 free_percpu(net->ipv4.tcp_sk);
2606}
2607
046ee902
DL
2608static int __net_init tcp_sk_init(struct net *net)
2609{
fee83d09 2610 int res, cpu, cnt;
bdbbb852
ED
2611
2612 net->ipv4.tcp_sk = alloc_percpu(struct sock *);
2613 if (!net->ipv4.tcp_sk)
2614 return -ENOMEM;
2615
2616 for_each_possible_cpu(cpu) {
2617 struct sock *sk;
2618
2619 res = inet_ctl_sock_create(&sk, PF_INET, SOCK_RAW,
2620 IPPROTO_TCP, net);
2621 if (res)
2622 goto fail;
a9d6532b 2623 sock_set_flag(sk, SOCK_USE_WRITE_QUEUE);
431280ee
ED
2624
2625 /* Please enforce IP_DF and IPID==0 for RST and
2626 * ACK sent in SYN-RECV and TIME-WAIT state.
2627 */
2628 inet_sk(sk)->pmtudisc = IP_PMTUDISC_DO;
2629
bdbbb852
ED
2630 *per_cpu_ptr(net->ipv4.tcp_sk, cpu) = sk;
2631 }
49213555 2632
5d134f1c 2633 net->ipv4.sysctl_tcp_ecn = 2;
49213555
DB
2634 net->ipv4.sysctl_tcp_ecn_fallback = 1;
2635
b0f9ca53 2636 net->ipv4.sysctl_tcp_base_mss = TCP_BASE_MSS;
5f3e2bf0 2637 net->ipv4.sysctl_tcp_min_snd_mss = TCP_MIN_SND_MSS;
6b58e0a5 2638 net->ipv4.sysctl_tcp_probe_threshold = TCP_PROBE_THRESHOLD;
05cbc0db 2639 net->ipv4.sysctl_tcp_probe_interval = TCP_PROBE_INTERVAL;
046ee902 2640
13b287e8 2641 net->ipv4.sysctl_tcp_keepalive_time = TCP_KEEPALIVE_TIME;
9bd6861b 2642 net->ipv4.sysctl_tcp_keepalive_probes = TCP_KEEPALIVE_PROBES;
b840d15d 2643 net->ipv4.sysctl_tcp_keepalive_intvl = TCP_KEEPALIVE_INTVL;
13b287e8 2644
6fa25166 2645 net->ipv4.sysctl_tcp_syn_retries = TCP_SYN_RETRIES;
7c083ecb 2646 net->ipv4.sysctl_tcp_synack_retries = TCP_SYNACK_RETRIES;
0aca737d 2647 net->ipv4.sysctl_tcp_syncookies = 1;
1043e25f 2648 net->ipv4.sysctl_tcp_reordering = TCP_FASTRETRANS_THRESH;
ae5c3f40 2649 net->ipv4.sysctl_tcp_retries1 = TCP_RETR1;
c6214a97 2650 net->ipv4.sysctl_tcp_retries2 = TCP_RETR2;
c402d9be 2651 net->ipv4.sysctl_tcp_orphan_retries = 0;
1e579caa 2652 net->ipv4.sysctl_tcp_fin_timeout = TCP_FIN_TIMEOUT;
4979f2d9 2653 net->ipv4.sysctl_tcp_notsent_lowat = UINT_MAX;
79e9fed4 2654 net->ipv4.sysctl_tcp_tw_reuse = 2;
12ed8244 2655
fee83d09 2656 cnt = tcp_hashinfo.ehash_mask + 1;
743e4815 2657 net->ipv4.tcp_death_row.sysctl_max_tw_buckets = cnt / 2;
1946e672
HY
2658 net->ipv4.tcp_death_row.hashinfo = &tcp_hashinfo;
2659
fee83d09 2660 net->ipv4.sysctl_max_syn_backlog = max(128, cnt / 256);
f9301034 2661 net->ipv4.sysctl_tcp_sack = 1;
9bb37ef0 2662 net->ipv4.sysctl_tcp_window_scaling = 1;
5d2ed052 2663 net->ipv4.sysctl_tcp_timestamps = 1;
2ae21cf5 2664 net->ipv4.sysctl_tcp_early_retrans = 3;
e20223f1 2665 net->ipv4.sysctl_tcp_recovery = TCP_RACK_LOSS_DETECTION;
b510f0d2 2666 net->ipv4.sysctl_tcp_slow_start_after_idle = 1; /* By default, RFC2861 behavior. */
e0a1e5b5 2667 net->ipv4.sysctl_tcp_retrans_collapse = 1;
c6e21803 2668 net->ipv4.sysctl_tcp_max_reordering = 300;
6496f6bd 2669 net->ipv4.sysctl_tcp_dsack = 1;
0c12654a 2670 net->ipv4.sysctl_tcp_app_win = 31;
94f0893e 2671 net->ipv4.sysctl_tcp_adv_win_scale = 1;
af9b69a7 2672 net->ipv4.sysctl_tcp_frto = 2;
4540c0cf 2673 net->ipv4.sysctl_tcp_moderate_rcvbuf = 1;
d06a9904
ED
2674 /* This limits the percentage of the congestion window which we
2675 * will allow a single TSO frame to consume. Building TSO frames
2676 * which are too large can cause TCP streams to be bursty.
2677 */
2678 net->ipv4.sysctl_tcp_tso_win_divisor = 3;
c73e5807
ED
2679 /* Default TSQ limit of 16 TSO segments */
2680 net->ipv4.sysctl_tcp_limit_output_bytes = 16 * 65536;
b530b681
ED
2681 /* rfc5961 challenge ack rate limiting */
2682 net->ipv4.sysctl_tcp_challenge_ack_limit = 1000;
26e9596e 2683 net->ipv4.sysctl_tcp_min_tso_segs = 2;
bd239704 2684 net->ipv4.sysctl_tcp_min_rtt_wlen = 300;
790f00e1 2685 net->ipv4.sysctl_tcp_autocorking = 1;
4170ba6b 2686 net->ipv4.sysctl_tcp_invalid_ratelimit = HZ/2;
23a7102a 2687 net->ipv4.sysctl_tcp_pacing_ss_ratio = 200;
c26e91f8 2688 net->ipv4.sysctl_tcp_pacing_ca_ratio = 120;
356d1833
ED
2689 if (net != &init_net) {
2690 memcpy(net->ipv4.sysctl_tcp_rmem,
2691 init_net.ipv4.sysctl_tcp_rmem,
2692 sizeof(init_net.ipv4.sysctl_tcp_rmem));
2693 memcpy(net->ipv4.sysctl_tcp_wmem,
2694 init_net.ipv4.sysctl_tcp_wmem,
2695 sizeof(init_net.ipv4.sysctl_tcp_wmem));
2696 }
6d82aa24 2697 net->ipv4.sysctl_tcp_comp_sack_delay_ns = NSEC_PER_MSEC;
9c21d2fc 2698 net->ipv4.sysctl_tcp_comp_sack_nr = 44;
e1cfcbe8 2699 net->ipv4.sysctl_tcp_fastopen = TFO_CLIENT_ENABLE;
43713848 2700 spin_lock_init(&net->ipv4.tcp_fastopen_ctx_lock);
3733be14
HY
2701 net->ipv4.sysctl_tcp_fastopen_blackhole_timeout = 60 * 60;
2702 atomic_set(&net->ipv4.tfo_active_disable_times, 0);
e1cfcbe8 2703
6670e152
SH
2704 /* Reno is always built in */
2705 if (!net_eq(net, &init_net) &&
2706 try_module_get(init_net.ipv4.tcp_congestion_control->owner))
2707 net->ipv4.tcp_congestion_control = init_net.ipv4.tcp_congestion_control;
2708 else
2709 net->ipv4.tcp_congestion_control = &tcp_reno;
2710
49213555 2711 return 0;
bdbbb852
ED
2712fail:
2713 tcp_sk_exit(net);
2714
2715 return res;
b099ce26
EB
2716}
2717
2718static void __net_exit tcp_sk_exit_batch(struct list_head *net_exit_list)
2719{
43713848
HY
2720 struct net *net;
2721
1946e672 2722 inet_twsk_purge(&tcp_hashinfo, AF_INET);
43713848
HY
2723
2724 list_for_each_entry(net, net_exit_list, exit_list)
2725 tcp_fastopen_ctx_destroy(net);
046ee902
DL
2726}
2727
2728static struct pernet_operations __net_initdata tcp_sk_ops = {
b099ce26
EB
2729 .init = tcp_sk_init,
2730 .exit = tcp_sk_exit,
2731 .exit_batch = tcp_sk_exit_batch,
046ee902
DL
2732};
2733
9b0f976f 2734void __init tcp_v4_init(void)
1da177e4 2735{
6a1b3054 2736 if (register_pernet_subsys(&tcp_sk_ops))
1da177e4 2737 panic("Failed to create the TCP control socket.\n");
1da177e4 2738}