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