]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/nf_conntrack_proto_tcp.c
irda: replace __FUNCTION__ with __func__
[mirror_ubuntu-artful-kernel.git] / net / netfilter / nf_conntrack_proto_tcp.c
CommitLineData
9fb9cbb1
YK
1/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9fb9cbb1
YK
7 */
8
9fb9cbb1 9#include <linux/types.h>
9fb9cbb1 10#include <linux/timer.h>
9fb9cbb1
YK
11#include <linux/module.h>
12#include <linux/in.h>
13#include <linux/tcp.h>
14#include <linux/spinlock.h>
15#include <linux/skbuff.h>
16#include <linux/ipv6.h>
17#include <net/ip6_checksum.h>
18
19#include <net/tcp.h>
20
21#include <linux/netfilter.h>
22#include <linux/netfilter_ipv4.h>
23#include <linux/netfilter_ipv6.h>
24#include <net/netfilter/nf_conntrack.h>
605dcad6 25#include <net/netfilter/nf_conntrack_l4proto.h>
f6180121 26#include <net/netfilter/nf_conntrack_ecache.h>
f01ffbd6 27#include <net/netfilter/nf_log.h>
9fb9cbb1 28
c88130bc 29/* Protects ct->proto.tcp */
9fb9cbb1
YK
30static DEFINE_RWLOCK(tcp_lock);
31
601e68e1
YH
32/* "Be conservative in what you do,
33 be liberal in what you accept from others."
9fb9cbb1 34 If it's non-zero, we mark only out of window RST segments as INVALID. */
3aef0fd9 35static int nf_ct_tcp_be_liberal __read_mostly = 0;
9fb9cbb1 36
a09113c2 37/* If it is set to zero, we disable picking up already established
9fb9cbb1 38 connections. */
3aef0fd9 39static int nf_ct_tcp_loose __read_mostly = 1;
9fb9cbb1 40
601e68e1
YH
41/* Max number of the retransmitted packets without receiving an (acceptable)
42 ACK from the destination. If this number is reached, a shorter timer
9fb9cbb1 43 will be started. */
3aef0fd9 44static int nf_ct_tcp_max_retrans __read_mostly = 3;
9fb9cbb1
YK
45
46 /* FIXME: Examine ipfilter's timeouts and conntrack transitions more
47 closely. They're more complex. --RR */
48
82f568fc 49static const char *const tcp_conntrack_names[] = {
9fb9cbb1
YK
50 "NONE",
51 "SYN_SENT",
52 "SYN_RECV",
53 "ESTABLISHED",
54 "FIN_WAIT",
55 "CLOSE_WAIT",
56 "LAST_ACK",
57 "TIME_WAIT",
58 "CLOSE",
59 "LISTEN"
60};
601e68e1 61
9fb9cbb1
YK
62#define SECS * HZ
63#define MINS * 60 SECS
64#define HOURS * 60 MINS
65#define DAYS * 24 HOURS
66
9fb9cbb1 67/* RFC1122 says the R2 limit should be at least 100 seconds.
601e68e1 68 Linux uses 15 packets as limit, which corresponds
9fb9cbb1 69 to ~13-30min depending on RTO. */
933a41e7 70static unsigned int nf_ct_tcp_timeout_max_retrans __read_mostly = 5 MINS;
601e68e1 71
2d646286
PM
72static unsigned int tcp_timeouts[TCP_CONNTRACK_MAX] __read_mostly = {
73 [TCP_CONNTRACK_SYN_SENT] = 2 MINS,
74 [TCP_CONNTRACK_SYN_RECV] = 60 SECS,
75 [TCP_CONNTRACK_ESTABLISHED] = 5 DAYS,
76 [TCP_CONNTRACK_FIN_WAIT] = 2 MINS,
77 [TCP_CONNTRACK_CLOSE_WAIT] = 60 SECS,
78 [TCP_CONNTRACK_LAST_ACK] = 30 SECS,
79 [TCP_CONNTRACK_TIME_WAIT] = 2 MINS,
80 [TCP_CONNTRACK_CLOSE] = 10 SECS,
81};
601e68e1 82
9fb9cbb1
YK
83#define sNO TCP_CONNTRACK_NONE
84#define sSS TCP_CONNTRACK_SYN_SENT
85#define sSR TCP_CONNTRACK_SYN_RECV
86#define sES TCP_CONNTRACK_ESTABLISHED
87#define sFW TCP_CONNTRACK_FIN_WAIT
88#define sCW TCP_CONNTRACK_CLOSE_WAIT
89#define sLA TCP_CONNTRACK_LAST_ACK
90#define sTW TCP_CONNTRACK_TIME_WAIT
91#define sCL TCP_CONNTRACK_CLOSE
92#define sLI TCP_CONNTRACK_LISTEN
93#define sIV TCP_CONNTRACK_MAX
94#define sIG TCP_CONNTRACK_IGNORE
95
96/* What TCP flags are set from RST/SYN/FIN/ACK. */
97enum tcp_bit_set {
98 TCP_SYN_SET,
99 TCP_SYNACK_SET,
100 TCP_FIN_SET,
101 TCP_ACK_SET,
102 TCP_RST_SET,
103 TCP_NONE_SET,
104};
601e68e1 105
9fb9cbb1
YK
106/*
107 * The TCP state transition table needs a few words...
108 *
109 * We are the man in the middle. All the packets go through us
110 * but might get lost in transit to the destination.
601e68e1 111 * It is assumed that the destinations can't receive segments
9fb9cbb1
YK
112 * we haven't seen.
113 *
114 * The checked segment is in window, but our windows are *not*
115 * equivalent with the ones of the sender/receiver. We always
116 * try to guess the state of the current sender.
117 *
118 * The meaning of the states are:
119 *
120 * NONE: initial state
601e68e1 121 * SYN_SENT: SYN-only packet seen
9fb9cbb1
YK
122 * SYN_RECV: SYN-ACK packet seen
123 * ESTABLISHED: ACK packet seen
124 * FIN_WAIT: FIN packet seen
601e68e1 125 * CLOSE_WAIT: ACK seen (after FIN)
9fb9cbb1
YK
126 * LAST_ACK: FIN seen (after FIN)
127 * TIME_WAIT: last ACK seen
b2155e7f 128 * CLOSE: closed connection (RST)
9fb9cbb1
YK
129 *
130 * LISTEN state is not used.
131 *
132 * Packets marked as IGNORED (sIG):
601e68e1
YH
133 * if they may be either invalid or valid
134 * and the receiver may send back a connection
9fb9cbb1
YK
135 * closing RST or a SYN/ACK.
136 *
137 * Packets marked as INVALID (sIV):
138 * if they are invalid
139 * or we do not support the request (simultaneous open)
140 */
a5e73c29 141static const u8 tcp_conntracks[2][6][TCP_CONNTRACK_MAX] = {
9fb9cbb1
YK
142 {
143/* ORIGINAL */
144/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
145/*syn*/ { sSS, sSS, sIG, sIG, sIG, sIG, sIG, sSS, sSS, sIV },
146/*
147 * sNO -> sSS Initialize a new connection
148 * sSS -> sSS Retransmitted SYN
149 * sSR -> sIG Late retransmitted SYN?
150 * sES -> sIG Error: SYNs in window outside the SYN_SENT state
601e68e1 151 * are errors. Receiver will reply with RST
9fb9cbb1
YK
152 * and close the connection.
153 * Or we are not in sync and hold a dead connection.
154 * sFW -> sIG
155 * sCW -> sIG
156 * sLA -> sIG
157 * sTW -> sSS Reopened connection (RFC 1122).
158 * sCL -> sSS
159 */
160/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
161/*synack*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV },
162/*
163 * A SYN/ACK from the client is always invalid:
601e68e1 164 * - either it tries to set up a simultaneous open, which is
9fb9cbb1
YK
165 * not supported;
166 * - or the firewall has just been inserted between the two hosts
601e68e1 167 * during the session set-up. The SYN will be retransmitted
9fb9cbb1
YK
168 * by the true client (or it'll time out).
169 */
170/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
171/*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
172/*
173 * sNO -> sIV Too late and no reason to do anything...
174 * sSS -> sIV Client migth not send FIN in this state:
175 * we enforce waiting for a SYN/ACK reply first.
176 * sSR -> sFW Close started.
177 * sES -> sFW
178 * sFW -> sLA FIN seen in both directions, waiting for
601e68e1 179 * the last ACK.
9fb9cbb1
YK
180 * Migth be a retransmitted FIN as well...
181 * sCW -> sLA
182 * sLA -> sLA Retransmitted FIN. Remain in the same state.
183 * sTW -> sTW
184 * sCL -> sCL
185 */
186/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
187/*ack*/ { sES, sIV, sES, sES, sCW, sCW, sTW, sTW, sCL, sIV },
188/*
189 * sNO -> sES Assumed.
190 * sSS -> sIV ACK is invalid: we haven't seen a SYN/ACK yet.
191 * sSR -> sES Established state is reached.
192 * sES -> sES :-)
193 * sFW -> sCW Normal close request answered by ACK.
194 * sCW -> sCW
195 * sLA -> sTW Last ACK detected.
196 * sTW -> sTW Retransmitted last ACK. Remain in the same state.
197 * sCL -> sCL
198 */
199/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
200/*rst*/ { sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sIV },
201/*none*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV }
202 },
203 {
204/* REPLY */
205/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
206/*syn*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV },
207/*
208 * sNO -> sIV Never reached.
209 * sSS -> sIV Simultaneous open, not supported
210 * sSR -> sIV Simultaneous open, not supported.
211 * sES -> sIV Server may not initiate a connection.
212 * sFW -> sIV
213 * sCW -> sIV
214 * sLA -> sIV
215 * sTW -> sIV Reopened connection, but server may not do it.
216 * sCL -> sIV
217 */
218/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
219/*synack*/ { sIV, sSR, sSR, sIG, sIG, sIG, sIG, sIG, sIG, sIV },
220/*
221 * sSS -> sSR Standard open.
222 * sSR -> sSR Retransmitted SYN/ACK.
223 * sES -> sIG Late retransmitted SYN/ACK?
224 * sFW -> sIG Might be SYN/ACK answering ignored SYN
225 * sCW -> sIG
226 * sLA -> sIG
227 * sTW -> sIG
228 * sCL -> sIG
229 */
230/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
231/*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
232/*
233 * sSS -> sIV Server might not send FIN in this state.
234 * sSR -> sFW Close started.
235 * sES -> sFW
236 * sFW -> sLA FIN seen in both directions.
237 * sCW -> sLA
238 * sLA -> sLA Retransmitted FIN.
239 * sTW -> sTW
240 * sCL -> sCL
241 */
242/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
73f30602 243/*ack*/ { sIV, sIG, sSR, sES, sCW, sCW, sTW, sTW, sCL, sIV },
9fb9cbb1 244/*
73f30602 245 * sSS -> sIG Might be a half-open connection.
9fb9cbb1
YK
246 * sSR -> sSR Might answer late resent SYN.
247 * sES -> sES :-)
248 * sFW -> sCW Normal close request answered by ACK.
249 * sCW -> sCW
250 * sLA -> sTW Last ACK detected.
251 * sTW -> sTW Retransmitted last ACK.
252 * sCL -> sCL
253 */
254/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
255/*rst*/ { sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sIV },
256/*none*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV }
601e68e1 257 }
9fb9cbb1
YK
258};
259
09f263cd
JE
260static bool tcp_pkt_to_tuple(const struct sk_buff *skb, unsigned int dataoff,
261 struct nf_conntrack_tuple *tuple)
9fb9cbb1 262{
82f568fc
JE
263 const struct tcphdr *hp;
264 struct tcphdr _hdr;
9fb9cbb1
YK
265
266 /* Actually only need first 8 bytes. */
267 hp = skb_header_pointer(skb, dataoff, 8, &_hdr);
268 if (hp == NULL)
09f263cd 269 return false;
9fb9cbb1
YK
270
271 tuple->src.u.tcp.port = hp->source;
272 tuple->dst.u.tcp.port = hp->dest;
273
09f263cd 274 return true;
9fb9cbb1
YK
275}
276
09f263cd
JE
277static bool tcp_invert_tuple(struct nf_conntrack_tuple *tuple,
278 const struct nf_conntrack_tuple *orig)
9fb9cbb1
YK
279{
280 tuple->src.u.tcp.port = orig->dst.u.tcp.port;
281 tuple->dst.u.tcp.port = orig->src.u.tcp.port;
09f263cd 282 return true;
9fb9cbb1
YK
283}
284
285/* Print out the per-protocol part of the tuple. */
286static int tcp_print_tuple(struct seq_file *s,
287 const struct nf_conntrack_tuple *tuple)
288{
289 return seq_printf(s, "sport=%hu dport=%hu ",
290 ntohs(tuple->src.u.tcp.port),
291 ntohs(tuple->dst.u.tcp.port));
292}
293
294/* Print out the private part of the conntrack. */
c88130bc 295static int tcp_print_conntrack(struct seq_file *s, const struct nf_conn *ct)
9fb9cbb1
YK
296{
297 enum tcp_conntrack state;
298
299 read_lock_bh(&tcp_lock);
c88130bc 300 state = ct->proto.tcp.state;
9fb9cbb1
YK
301 read_unlock_bh(&tcp_lock);
302
303 return seq_printf(s, "%s ", tcp_conntrack_names[state]);
304}
305
306static unsigned int get_conntrack_index(const struct tcphdr *tcph)
307{
308 if (tcph->rst) return TCP_RST_SET;
309 else if (tcph->syn) return (tcph->ack ? TCP_SYNACK_SET : TCP_SYN_SET);
310 else if (tcph->fin) return TCP_FIN_SET;
311 else if (tcph->ack) return TCP_ACK_SET;
312 else return TCP_NONE_SET;
313}
314
315/* TCP connection tracking based on 'Real Stateful TCP Packet Filtering
316 in IP Filter' by Guido van Rooij.
601e68e1 317
9fb9cbb1
YK
318 http://www.nluug.nl/events/sane2000/papers.html
319 http://www.iae.nl/users/guido/papers/tcp_filtering.ps.gz
601e68e1 320
9fb9cbb1
YK
321 The boundaries and the conditions are changed according to RFC793:
322 the packet must intersect the window (i.e. segments may be
323 after the right or before the left edge) and thus receivers may ACK
324 segments after the right edge of the window.
325
601e68e1 326 td_maxend = max(sack + max(win,1)) seen in reply packets
9fb9cbb1
YK
327 td_maxwin = max(max(win, 1)) + (sack - ack) seen in sent packets
328 td_maxwin += seq + len - sender.td_maxend
329 if seq + len > sender.td_maxend
330 td_end = max(seq + len) seen in sent packets
601e68e1 331
9fb9cbb1
YK
332 I. Upper bound for valid data: seq <= sender.td_maxend
333 II. Lower bound for valid data: seq + len >= sender.td_end - receiver.td_maxwin
84ebe1cd
JK
334 III. Upper bound for valid (s)ack: sack <= receiver.td_end
335 IV. Lower bound for valid (s)ack: sack >= receiver.td_end - MAXACKWINDOW
9fb9cbb1 336
84ebe1cd
JK
337 where sack is the highest right edge of sack block found in the packet
338 or ack in the case of packet without SACK option.
9fb9cbb1 339
84ebe1cd 340 The upper bound limit for a valid (s)ack is not ignored -
601e68e1 341 we doesn't have to deal with fragments.
9fb9cbb1
YK
342*/
343
344static inline __u32 segment_seq_plus_len(__u32 seq,
345 size_t len,
346 unsigned int dataoff,
82f568fc 347 const struct tcphdr *tcph)
9fb9cbb1
YK
348{
349 /* XXX Should I use payload length field in IP/IPv6 header ?
350 * - YK */
351 return (seq + len - dataoff - tcph->doff*4
352 + (tcph->syn ? 1 : 0) + (tcph->fin ? 1 : 0));
353}
601e68e1 354
9fb9cbb1
YK
355/* Fixme: what about big packets? */
356#define MAXACKWINCONST 66000
357#define MAXACKWINDOW(sender) \
358 ((sender)->td_maxwin > MAXACKWINCONST ? (sender)->td_maxwin \
359 : MAXACKWINCONST)
601e68e1 360
9fb9cbb1
YK
361/*
362 * Simplified tcp_parse_options routine from tcp_input.c
363 */
364static void tcp_options(const struct sk_buff *skb,
365 unsigned int dataoff,
82f568fc 366 const struct tcphdr *tcph,
9fb9cbb1
YK
367 struct ip_ct_tcp_state *state)
368{
369 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
82f568fc 370 const unsigned char *ptr;
9fb9cbb1
YK
371 int length = (tcph->doff*4) - sizeof(struct tcphdr);
372
373 if (!length)
374 return;
375
376 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
377 length, buff);
378 BUG_ON(ptr == NULL);
379
601e68e1 380 state->td_scale =
9fb9cbb1
YK
381 state->flags = 0;
382
383 while (length > 0) {
384 int opcode=*ptr++;
385 int opsize;
386
387 switch (opcode) {
388 case TCPOPT_EOL:
389 return;
390 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
391 length--;
392 continue;
393 default:
394 opsize=*ptr++;
395 if (opsize < 2) /* "silly options" */
396 return;
397 if (opsize > length)
398 break; /* don't parse partial options */
399
601e68e1 400 if (opcode == TCPOPT_SACK_PERM
9fb9cbb1
YK
401 && opsize == TCPOLEN_SACK_PERM)
402 state->flags |= IP_CT_TCP_FLAG_SACK_PERM;
403 else if (opcode == TCPOPT_WINDOW
404 && opsize == TCPOLEN_WINDOW) {
405 state->td_scale = *(u_int8_t *)ptr;
406
407 if (state->td_scale > 14) {
408 /* See RFC1323 */
409 state->td_scale = 14;
410 }
411 state->flags |=
412 IP_CT_TCP_FLAG_WINDOW_SCALE;
413 }
414 ptr += opsize - 2;
415 length -= opsize;
416 }
417 }
418}
419
420static void tcp_sack(const struct sk_buff *skb, unsigned int dataoff,
82f568fc 421 const struct tcphdr *tcph, __u32 *sack)
9fb9cbb1 422{
601e68e1 423 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
82f568fc 424 const unsigned char *ptr;
9fb9cbb1
YK
425 int length = (tcph->doff*4) - sizeof(struct tcphdr);
426 __u32 tmp;
427
428 if (!length)
429 return;
430
431 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
432 length, buff);
433 BUG_ON(ptr == NULL);
434
435 /* Fast path for timestamp-only option */
436 if (length == TCPOLEN_TSTAMP_ALIGNED*4
8f05ce91
YH
437 && *(__be32 *)ptr == htonl((TCPOPT_NOP << 24)
438 | (TCPOPT_NOP << 16)
439 | (TCPOPT_TIMESTAMP << 8)
440 | TCPOLEN_TIMESTAMP))
9fb9cbb1
YK
441 return;
442
443 while (length > 0) {
444 int opcode = *ptr++;
445 int opsize, i;
446
447 switch (opcode) {
448 case TCPOPT_EOL:
449 return;
450 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
451 length--;
452 continue;
453 default:
454 opsize = *ptr++;
455 if (opsize < 2) /* "silly options" */
456 return;
457 if (opsize > length)
458 break; /* don't parse partial options */
459
601e68e1
YH
460 if (opcode == TCPOPT_SACK
461 && opsize >= (TCPOLEN_SACK_BASE
462 + TCPOLEN_SACK_PERBLOCK)
463 && !((opsize - TCPOLEN_SACK_BASE)
464 % TCPOLEN_SACK_PERBLOCK)) {
465 for (i = 0;
466 i < (opsize - TCPOLEN_SACK_BASE);
467 i += TCPOLEN_SACK_PERBLOCK) {
468 tmp = ntohl(*((__be32 *)(ptr+i)+1));
9fb9cbb1
YK
469
470 if (after(tmp, *sack))
471 *sack = tmp;
472 }
473 return;
474 }
475 ptr += opsize - 2;
476 length -= opsize;
477 }
478 }
479}
480
09f263cd
JE
481static bool tcp_in_window(const struct nf_conn *ct,
482 struct ip_ct_tcp *state,
483 enum ip_conntrack_dir dir,
484 unsigned int index,
485 const struct sk_buff *skb,
486 unsigned int dataoff,
487 const struct tcphdr *tcph,
488 int pf)
9fb9cbb1
YK
489{
490 struct ip_ct_tcp_state *sender = &state->seen[dir];
491 struct ip_ct_tcp_state *receiver = &state->seen[!dir];
82f568fc 492 const struct nf_conntrack_tuple *tuple = &ct->tuplehash[dir].tuple;
9fb9cbb1 493 __u32 seq, ack, sack, end, win, swin;
09f263cd 494 bool res;
9fb9cbb1
YK
495
496 /*
497 * Get the required data from the packet.
498 */
499 seq = ntohl(tcph->seq);
500 ack = sack = ntohl(tcph->ack_seq);
501 win = ntohs(tcph->window);
502 end = segment_seq_plus_len(seq, skb->len, dataoff, tcph);
503
504 if (receiver->flags & IP_CT_TCP_FLAG_SACK_PERM)
505 tcp_sack(skb, dataoff, tcph, &sack);
506
0d53778e
PM
507 pr_debug("tcp_in_window: START\n");
508 pr_debug("tcp_in_window: ");
3c9fba65 509 nf_ct_dump_tuple(tuple);
0d53778e
PM
510 pr_debug("seq=%u ack=%u sack=%u win=%u end=%u\n",
511 seq, ack, sack, win, end);
512 pr_debug("tcp_in_window: sender end=%u maxend=%u maxwin=%u scale=%i "
513 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
514 sender->td_end, sender->td_maxend, sender->td_maxwin,
515 sender->td_scale,
516 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
517 receiver->td_scale);
9fb9cbb1
YK
518
519 if (sender->td_end == 0) {
520 /*
521 * Initialize sender data.
522 */
523 if (tcph->syn && tcph->ack) {
524 /*
525 * Outgoing SYN-ACK in reply to a SYN.
526 */
601e68e1 527 sender->td_end =
9fb9cbb1
YK
528 sender->td_maxend = end;
529 sender->td_maxwin = (win == 0 ? 1 : win);
530
531 tcp_options(skb, dataoff, tcph, sender);
601e68e1 532 /*
9fb9cbb1
YK
533 * RFC 1323:
534 * Both sides must send the Window Scale option
535 * to enable window scaling in either direction.
536 */
537 if (!(sender->flags & IP_CT_TCP_FLAG_WINDOW_SCALE
538 && receiver->flags & IP_CT_TCP_FLAG_WINDOW_SCALE))
601e68e1 539 sender->td_scale =
9fb9cbb1
YK
540 receiver->td_scale = 0;
541 } else {
542 /*
543 * We are in the middle of a connection,
544 * its history is lost for us.
545 * Let's try to use the data from the packet.
601e68e1 546 */
9fb9cbb1
YK
547 sender->td_end = end;
548 sender->td_maxwin = (win == 0 ? 1 : win);
549 sender->td_maxend = end + sender->td_maxwin;
550 }
551 } else if (((state->state == TCP_CONNTRACK_SYN_SENT
552 && dir == IP_CT_DIR_ORIGINAL)
553 || (state->state == TCP_CONNTRACK_SYN_RECV
554 && dir == IP_CT_DIR_REPLY))
555 && after(end, sender->td_end)) {
556 /*
557 * RFC 793: "if a TCP is reinitialized ... then it need
601e68e1 558 * not wait at all; it must only be sure to use sequence
9fb9cbb1
YK
559 * numbers larger than those recently used."
560 */
561 sender->td_end =
562 sender->td_maxend = end;
563 sender->td_maxwin = (win == 0 ? 1 : win);
564
565 tcp_options(skb, dataoff, tcph, sender);
566 }
567
568 if (!(tcph->ack)) {
569 /*
570 * If there is no ACK, just pretend it was set and OK.
571 */
572 ack = sack = receiver->td_end;
601e68e1
YH
573 } else if (((tcp_flag_word(tcph) & (TCP_FLAG_ACK|TCP_FLAG_RST)) ==
574 (TCP_FLAG_ACK|TCP_FLAG_RST))
9fb9cbb1
YK
575 && (ack == 0)) {
576 /*
577 * Broken TCP stacks, that set ACK in RST packets as well
578 * with zero ack value.
579 */
580 ack = sack = receiver->td_end;
581 }
582
583 if (seq == end
584 && (!tcph->rst
585 || (seq == 0 && state->state == TCP_CONNTRACK_SYN_SENT)))
586 /*
587 * Packets contains no data: we assume it is valid
588 * and check the ack value only.
589 * However RST segments are always validated by their
590 * SEQ number, except when seq == 0 (reset sent answering
591 * SYN.
592 */
593 seq = end = sender->td_end;
594
0d53778e 595 pr_debug("tcp_in_window: ");
3c9fba65 596 nf_ct_dump_tuple(tuple);
0d53778e
PM
597 pr_debug("seq=%u ack=%u sack =%u win=%u end=%u\n",
598 seq, ack, sack, win, end);
599 pr_debug("tcp_in_window: sender end=%u maxend=%u maxwin=%u scale=%i "
600 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
601 sender->td_end, sender->td_maxend, sender->td_maxwin,
602 sender->td_scale,
603 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
604 receiver->td_scale);
605
606 pr_debug("tcp_in_window: I=%i II=%i III=%i IV=%i\n",
607 before(seq, sender->td_maxend + 1),
608 after(end, sender->td_end - receiver->td_maxwin - 1),
609 before(sack, receiver->td_end + 1),
84ebe1cd 610 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1));
9fb9cbb1 611
a09113c2
PM
612 if (before(seq, sender->td_maxend + 1) &&
613 after(end, sender->td_end - receiver->td_maxwin - 1) &&
614 before(sack, receiver->td_end + 1) &&
84ebe1cd 615 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1)) {
601e68e1 616 /*
9fb9cbb1
YK
617 * Take into account window scaling (RFC 1323).
618 */
619 if (!tcph->syn)
620 win <<= sender->td_scale;
621
622 /*
623 * Update sender data.
624 */
625 swin = win + (sack - ack);
626 if (sender->td_maxwin < swin)
627 sender->td_maxwin = swin;
628 if (after(end, sender->td_end))
629 sender->td_end = end;
630 /*
631 * Update receiver data.
632 */
633 if (after(end, sender->td_maxend))
634 receiver->td_maxwin += end - sender->td_maxend;
635 if (after(sack + win, receiver->td_maxend - 1)) {
636 receiver->td_maxend = sack + win;
637 if (win == 0)
638 receiver->td_maxend++;
639 }
640
601e68e1 641 /*
9fb9cbb1
YK
642 * Check retransmissions.
643 */
644 if (index == TCP_ACK_SET) {
645 if (state->last_dir == dir
646 && state->last_seq == seq
647 && state->last_ack == ack
c1fe3ca5
GH
648 && state->last_end == end
649 && state->last_win == win)
9fb9cbb1
YK
650 state->retrans++;
651 else {
652 state->last_dir = dir;
653 state->last_seq = seq;
654 state->last_ack = ack;
655 state->last_end = end;
c1fe3ca5 656 state->last_win = win;
9fb9cbb1
YK
657 state->retrans = 0;
658 }
659 }
09f263cd 660 res = true;
9fb9cbb1 661 } else {
09f263cd 662 res = false;
a09113c2
PM
663 if (sender->flags & IP_CT_TCP_FLAG_BE_LIBERAL ||
664 nf_ct_tcp_be_liberal)
09f263cd 665 res = true;
a09113c2 666 if (!res && LOG_INVALID(IPPROTO_TCP))
9fb9cbb1
YK
667 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
668 "nf_ct_tcp: %s ",
669 before(seq, sender->td_maxend + 1) ?
670 after(end, sender->td_end - receiver->td_maxwin - 1) ?
671 before(sack, receiver->td_end + 1) ?
672 after(ack, receiver->td_end - MAXACKWINDOW(sender)) ? "BUG"
673 : "ACK is under the lower bound (possible overly delayed ACK)"
674 : "ACK is over the upper bound (ACKed data not seen yet)"
675 : "SEQ is under the lower bound (already ACKed data retransmitted)"
676 : "SEQ is over the upper bound (over the window of the receiver)");
601e68e1
YH
677 }
678
09f263cd 679 pr_debug("tcp_in_window: res=%u sender end=%u maxend=%u maxwin=%u "
0d53778e
PM
680 "receiver end=%u maxend=%u maxwin=%u\n",
681 res, sender->td_end, sender->td_maxend, sender->td_maxwin,
682 receiver->td_end, receiver->td_maxend, receiver->td_maxwin);
9fb9cbb1
YK
683
684 return res;
685}
686
5b1158e9 687#ifdef CONFIG_NF_NAT_NEEDED
9fb9cbb1
YK
688/* Update sender->td_end after NAT successfully mangled the packet */
689/* Caller must linearize skb at tcp header. */
82f568fc 690void nf_conntrack_tcp_update(const struct sk_buff *skb,
9fb9cbb1 691 unsigned int dataoff,
c88130bc 692 struct nf_conn *ct,
9fb9cbb1
YK
693 int dir)
694{
82f568fc
JE
695 const struct tcphdr *tcph = (const void *)skb->data + dataoff;
696 const struct ip_ct_tcp_state *sender = &ct->proto.tcp.seen[dir];
697 const struct ip_ct_tcp_state *receiver = &ct->proto.tcp.seen[!dir];
0d53778e 698 __u32 end;
9fb9cbb1
YK
699
700 end = segment_seq_plus_len(ntohl(tcph->seq), skb->len, dataoff, tcph);
701
702 write_lock_bh(&tcp_lock);
703 /*
704 * We have to worry for the ack in the reply packet only...
705 */
c88130bc
PM
706 if (after(end, ct->proto.tcp.seen[dir].td_end))
707 ct->proto.tcp.seen[dir].td_end = end;
708 ct->proto.tcp.last_end = end;
9fb9cbb1 709 write_unlock_bh(&tcp_lock);
0d53778e
PM
710 pr_debug("tcp_update: sender end=%u maxend=%u maxwin=%u scale=%i "
711 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
712 sender->td_end, sender->td_maxend, sender->td_maxwin,
713 sender->td_scale,
714 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
715 receiver->td_scale);
9fb9cbb1 716}
13b18339 717EXPORT_SYMBOL_GPL(nf_conntrack_tcp_update);
9fb9cbb1
YK
718#endif
719
720#define TH_FIN 0x01
721#define TH_SYN 0x02
722#define TH_RST 0x04
723#define TH_PUSH 0x08
724#define TH_ACK 0x10
725#define TH_URG 0x20
726#define TH_ECE 0x40
727#define TH_CWR 0x80
728
5c8ce7c9 729/* table of valid flag combinations - PUSH, ECE and CWR are always valid */
82f568fc 730static const u8 tcp_valid_flags[(TH_FIN|TH_SYN|TH_RST|TH_ACK|TH_URG) + 1] =
9fb9cbb1
YK
731{
732 [TH_SYN] = 1,
d3ab4298 733 [TH_SYN|TH_URG] = 1,
d3ab4298 734 [TH_SYN|TH_ACK] = 1,
9fb9cbb1
YK
735 [TH_RST] = 1,
736 [TH_RST|TH_ACK] = 1,
9fb9cbb1 737 [TH_FIN|TH_ACK] = 1,
5c8ce7c9 738 [TH_FIN|TH_ACK|TH_URG] = 1,
9fb9cbb1 739 [TH_ACK] = 1,
9fb9cbb1 740 [TH_ACK|TH_URG] = 1,
9fb9cbb1
YK
741};
742
743/* Protect conntrack agaist broken packets. Code taken from ipt_unclean.c. */
744static int tcp_error(struct sk_buff *skb,
745 unsigned int dataoff,
746 enum ip_conntrack_info *ctinfo,
747 int pf,
96f6bf82 748 unsigned int hooknum)
9fb9cbb1 749{
82f568fc
JE
750 const struct tcphdr *th;
751 struct tcphdr _tcph;
9fb9cbb1
YK
752 unsigned int tcplen = skb->len - dataoff;
753 u_int8_t tcpflags;
754
755 /* Smaller that minimal TCP header? */
756 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
757 if (th == NULL) {
758 if (LOG_INVALID(IPPROTO_TCP))
759 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
760 "nf_ct_tcp: short packet ");
761 return -NF_ACCEPT;
601e68e1
YH
762 }
763
9fb9cbb1
YK
764 /* Not whole TCP header or malformed packet */
765 if (th->doff*4 < sizeof(struct tcphdr) || tcplen < th->doff*4) {
766 if (LOG_INVALID(IPPROTO_TCP))
767 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
768 "nf_ct_tcp: truncated/malformed packet ");
769 return -NF_ACCEPT;
770 }
601e68e1 771
9fb9cbb1
YK
772 /* Checksum invalid? Ignore.
773 * We skip checking packets on the outgoing path
84fa7933 774 * because the checksum is assumed to be correct.
9fb9cbb1
YK
775 */
776 /* FIXME: Source route IP option packets --RR */
6e23ae2a 777 if (nf_conntrack_checksum && hooknum == NF_INET_PRE_ROUTING &&
96f6bf82 778 nf_checksum(skb, hooknum, dataoff, IPPROTO_TCP, pf)) {
9fb9cbb1
YK
779 if (LOG_INVALID(IPPROTO_TCP))
780 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
781 "nf_ct_tcp: bad TCP checksum ");
782 return -NF_ACCEPT;
783 }
784
785 /* Check TCP flags. */
5c8ce7c9 786 tcpflags = (((u_int8_t *)th)[13] & ~(TH_ECE|TH_CWR|TH_PUSH));
9fb9cbb1
YK
787 if (!tcp_valid_flags[tcpflags]) {
788 if (LOG_INVALID(IPPROTO_TCP))
789 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
790 "nf_ct_tcp: invalid TCP flag combination ");
791 return -NF_ACCEPT;
792 }
793
794 return NF_ACCEPT;
795}
796
9fb9cbb1 797/* Returns verdict for packet, or -1 for invalid. */
c88130bc 798static int tcp_packet(struct nf_conn *ct,
9fb9cbb1
YK
799 const struct sk_buff *skb,
800 unsigned int dataoff,
801 enum ip_conntrack_info ctinfo,
802 int pf,
803 unsigned int hooknum)
804{
0d53778e 805 struct nf_conntrack_tuple *tuple;
9fb9cbb1
YK
806 enum tcp_conntrack new_state, old_state;
807 enum ip_conntrack_dir dir;
82f568fc
JE
808 const struct tcphdr *th;
809 struct tcphdr _tcph;
9fb9cbb1
YK
810 unsigned long timeout;
811 unsigned int index;
812
813 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
814 BUG_ON(th == NULL);
815
816 write_lock_bh(&tcp_lock);
c88130bc 817 old_state = ct->proto.tcp.state;
9fb9cbb1
YK
818 dir = CTINFO2DIR(ctinfo);
819 index = get_conntrack_index(th);
820 new_state = tcp_conntracks[dir][index][old_state];
c88130bc 821 tuple = &ct->tuplehash[dir].tuple;
9fb9cbb1
YK
822
823 switch (new_state) {
17311393
JK
824 case TCP_CONNTRACK_SYN_SENT:
825 if (old_state < TCP_CONNTRACK_TIME_WAIT)
826 break;
b2155e7f
JK
827 /* RFC 1122: "When a connection is closed actively,
828 * it MUST linger in TIME-WAIT state for a time 2xMSL
829 * (Maximum Segment Lifetime). However, it MAY accept
830 * a new SYN from the remote TCP to reopen the connection
831 * directly from TIME-WAIT state, if..."
832 * We ignore the conditions because we are in the
833 * TIME-WAIT state anyway.
834 *
835 * Handle aborted connections: we and the server
836 * think there is an existing connection but the client
837 * aborts it and starts a new one.
838 */
839 if (((ct->proto.tcp.seen[dir].flags
840 | ct->proto.tcp.seen[!dir].flags)
841 & IP_CT_TCP_FLAG_CLOSE_INIT)
c88130bc
PM
842 || (ct->proto.tcp.last_dir == dir
843 && ct->proto.tcp.last_index == TCP_RST_SET)) {
bc34b841
JK
844 /* Attempt to reopen a closed/aborted connection.
845 * Delete this connection and look up again. */
17311393 846 write_unlock_bh(&tcp_lock);
2aec609f 847
6b69fe0c
PM
848 /* Only repeat if we can actually remove the timer.
849 * Destruction may already be in progress in process
850 * context and we must give it a chance to terminate.
851 */
2aec609f 852 if (nf_ct_kill(ct))
6b69fe0c 853 return -NF_REPEAT;
6b69fe0c 854 return -NF_DROP;
17311393
JK
855 }
856 /* Fall through */
9fb9cbb1 857 case TCP_CONNTRACK_IGNORE:
73f30602 858 /* Ignored packets:
b2155e7f
JK
859 *
860 * Our connection entry may be out of sync, so ignore
861 * packets which may signal the real connection between
862 * the client and the server.
73f30602
JK
863 *
864 * a) SYN in ORIGINAL
865 * b) SYN/ACK in REPLY
601e68e1 866 * c) ACK in reply direction after initial SYN in original.
b2155e7f
JK
867 *
868 * If the ignored packet is invalid, the receiver will send
869 * a RST we'll catch below.
73f30602 870 */
9fb9cbb1 871 if (index == TCP_SYNACK_SET
c88130bc
PM
872 && ct->proto.tcp.last_index == TCP_SYN_SET
873 && ct->proto.tcp.last_dir != dir
874 && ntohl(th->ack_seq) == ct->proto.tcp.last_end) {
b2155e7f 875 /* b) This SYN/ACK acknowledges a SYN that we earlier
9fb9cbb1
YK
876 * ignored as invalid. This means that the client and
877 * the server are both in sync, while the firewall is
878 * not. We kill this session and block the SYN/ACK so
601e68e1 879 * that the client cannot but retransmit its SYN and
9fb9cbb1
YK
880 * thus initiate a clean new session.
881 */
601e68e1 882 write_unlock_bh(&tcp_lock);
9fb9cbb1
YK
883 if (LOG_INVALID(IPPROTO_TCP))
884 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
885 "nf_ct_tcp: killing out of sync session ");
51091764 886 nf_ct_kill(ct);
601e68e1 887 return -NF_DROP;
9fb9cbb1 888 }
c88130bc
PM
889 ct->proto.tcp.last_index = index;
890 ct->proto.tcp.last_dir = dir;
891 ct->proto.tcp.last_seq = ntohl(th->seq);
892 ct->proto.tcp.last_end =
9fb9cbb1
YK
893 segment_seq_plus_len(ntohl(th->seq), skb->len, dataoff, th);
894
895 write_unlock_bh(&tcp_lock);
896 if (LOG_INVALID(IPPROTO_TCP))
897 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
b2155e7f 898 "nf_ct_tcp: invalid packet ignored ");
9fb9cbb1
YK
899 return NF_ACCEPT;
900 case TCP_CONNTRACK_MAX:
901 /* Invalid packet */
0d53778e
PM
902 pr_debug("nf_ct_tcp: Invalid dir=%i index=%u ostate=%u\n",
903 dir, get_conntrack_index(th), old_state);
9fb9cbb1
YK
904 write_unlock_bh(&tcp_lock);
905 if (LOG_INVALID(IPPROTO_TCP))
906 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
907 "nf_ct_tcp: invalid state ");
908 return -NF_ACCEPT;
9fb9cbb1
YK
909 case TCP_CONNTRACK_CLOSE:
910 if (index == TCP_RST_SET
c88130bc
PM
911 && ((test_bit(IPS_SEEN_REPLY_BIT, &ct->status)
912 && ct->proto.tcp.last_index == TCP_SYN_SET)
913 || (!test_bit(IPS_ASSURED_BIT, &ct->status)
914 && ct->proto.tcp.last_index == TCP_ACK_SET))
915 && ntohl(th->ack_seq) == ct->proto.tcp.last_end) {
93b1fae4 916 /* RST sent to invalid SYN or ACK we had let through
73f30602
JK
917 * at a) and c) above:
918 *
919 * a) SYN was in window then
920 * c) we hold a half-open connection.
921 *
922 * Delete our connection entry.
9fb9cbb1 923 * We skip window checking, because packet might ACK
73f30602 924 * segments we ignored. */
9fb9cbb1
YK
925 goto in_window;
926 }
93b1fae4 927 /* Just fall through */
9fb9cbb1
YK
928 default:
929 /* Keep compilers happy. */
930 break;
931 }
932
c88130bc 933 if (!tcp_in_window(ct, &ct->proto.tcp, dir, index,
9fb9cbb1
YK
934 skb, dataoff, th, pf)) {
935 write_unlock_bh(&tcp_lock);
936 return -NF_ACCEPT;
937 }
938 in_window:
939 /* From now on we have got in-window packets */
c88130bc
PM
940 ct->proto.tcp.last_index = index;
941 ct->proto.tcp.last_dir = dir;
9fb9cbb1 942
0d53778e 943 pr_debug("tcp_conntracks: ");
3c9fba65 944 nf_ct_dump_tuple(tuple);
0d53778e
PM
945 pr_debug("syn=%i ack=%i fin=%i rst=%i old=%i new=%i\n",
946 (th->syn ? 1 : 0), (th->ack ? 1 : 0),
947 (th->fin ? 1 : 0), (th->rst ? 1 : 0),
948 old_state, new_state);
9fb9cbb1 949
c88130bc 950 ct->proto.tcp.state = new_state;
9fb9cbb1 951 if (old_state != new_state
d0c1fd7a 952 && new_state == TCP_CONNTRACK_FIN_WAIT)
c88130bc
PM
953 ct->proto.tcp.seen[dir].flags |= IP_CT_TCP_FLAG_CLOSE_INIT;
954 timeout = ct->proto.tcp.retrans >= nf_ct_tcp_max_retrans
2d646286
PM
955 && tcp_timeouts[new_state] > nf_ct_tcp_timeout_max_retrans
956 ? nf_ct_tcp_timeout_max_retrans : tcp_timeouts[new_state];
9fb9cbb1
YK
957 write_unlock_bh(&tcp_lock);
958
959 nf_conntrack_event_cache(IPCT_PROTOINFO_VOLATILE, skb);
960 if (new_state != old_state)
961 nf_conntrack_event_cache(IPCT_PROTOINFO, skb);
962
c88130bc 963 if (!test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
9fb9cbb1
YK
964 /* If only reply is a RST, we can consider ourselves not to
965 have an established connection: this is a fairly common
966 problem case, so we can delete the conntrack
967 immediately. --RR */
968 if (th->rst) {
718d4ad9 969 nf_ct_kill_acct(ct, ctinfo, skb);
9fb9cbb1
YK
970 return NF_ACCEPT;
971 }
c88130bc 972 } else if (!test_bit(IPS_ASSURED_BIT, &ct->status)
9fb9cbb1
YK
973 && (old_state == TCP_CONNTRACK_SYN_RECV
974 || old_state == TCP_CONNTRACK_ESTABLISHED)
975 && new_state == TCP_CONNTRACK_ESTABLISHED) {
601e68e1
YH
976 /* Set ASSURED if we see see valid ack in ESTABLISHED
977 after SYN_RECV or a valid answer for a picked up
9fb9cbb1 978 connection. */
c88130bc 979 set_bit(IPS_ASSURED_BIT, &ct->status);
9fb9cbb1
YK
980 nf_conntrack_event_cache(IPCT_STATUS, skb);
981 }
c88130bc 982 nf_ct_refresh_acct(ct, ctinfo, skb, timeout);
9fb9cbb1
YK
983
984 return NF_ACCEPT;
985}
601e68e1 986
9fb9cbb1 987/* Called when a new connection for this protocol found. */
09f263cd
JE
988static bool tcp_new(struct nf_conn *ct, const struct sk_buff *skb,
989 unsigned int dataoff)
9fb9cbb1
YK
990{
991 enum tcp_conntrack new_state;
82f568fc
JE
992 const struct tcphdr *th;
993 struct tcphdr _tcph;
994 const struct ip_ct_tcp_state *sender = &ct->proto.tcp.seen[0];
995 const struct ip_ct_tcp_state *receiver = &ct->proto.tcp.seen[1];
9fb9cbb1
YK
996
997 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
998 BUG_ON(th == NULL);
999
1000 /* Don't need lock here: this conntrack not in circulation yet */
1001 new_state
1002 = tcp_conntracks[0][get_conntrack_index(th)]
1003 [TCP_CONNTRACK_NONE];
1004
1005 /* Invalid: delete conntrack */
1006 if (new_state >= TCP_CONNTRACK_MAX) {
0d53778e 1007 pr_debug("nf_ct_tcp: invalid new deleting.\n");
09f263cd 1008 return false;
9fb9cbb1
YK
1009 }
1010
1011 if (new_state == TCP_CONNTRACK_SYN_SENT) {
1012 /* SYN packet */
c88130bc 1013 ct->proto.tcp.seen[0].td_end =
9fb9cbb1
YK
1014 segment_seq_plus_len(ntohl(th->seq), skb->len,
1015 dataoff, th);
c88130bc
PM
1016 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1017 if (ct->proto.tcp.seen[0].td_maxwin == 0)
1018 ct->proto.tcp.seen[0].td_maxwin = 1;
1019 ct->proto.tcp.seen[0].td_maxend =
1020 ct->proto.tcp.seen[0].td_end;
1021
1022 tcp_options(skb, dataoff, th, &ct->proto.tcp.seen[0]);
1023 ct->proto.tcp.seen[1].flags = 0;
9fb9cbb1
YK
1024 } else if (nf_ct_tcp_loose == 0) {
1025 /* Don't try to pick up connections. */
09f263cd 1026 return false;
9fb9cbb1
YK
1027 } else {
1028 /*
1029 * We are in the middle of a connection,
1030 * its history is lost for us.
1031 * Let's try to use the data from the packet.
1032 */
c88130bc 1033 ct->proto.tcp.seen[0].td_end =
9fb9cbb1
YK
1034 segment_seq_plus_len(ntohl(th->seq), skb->len,
1035 dataoff, th);
c88130bc
PM
1036 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1037 if (ct->proto.tcp.seen[0].td_maxwin == 0)
1038 ct->proto.tcp.seen[0].td_maxwin = 1;
1039 ct->proto.tcp.seen[0].td_maxend =
1040 ct->proto.tcp.seen[0].td_end +
1041 ct->proto.tcp.seen[0].td_maxwin;
1042 ct->proto.tcp.seen[0].td_scale = 0;
9fb9cbb1 1043
a09113c2
PM
1044 /* We assume SACK and liberal window checking to handle
1045 * window scaling */
c88130bc
PM
1046 ct->proto.tcp.seen[0].flags =
1047 ct->proto.tcp.seen[1].flags = IP_CT_TCP_FLAG_SACK_PERM |
1048 IP_CT_TCP_FLAG_BE_LIBERAL;
9fb9cbb1 1049 }
601e68e1 1050
c88130bc
PM
1051 ct->proto.tcp.seen[1].td_end = 0;
1052 ct->proto.tcp.seen[1].td_maxend = 0;
1053 ct->proto.tcp.seen[1].td_maxwin = 1;
1054 ct->proto.tcp.seen[1].td_scale = 0;
9fb9cbb1
YK
1055
1056 /* tcp_packet will set them */
c88130bc
PM
1057 ct->proto.tcp.state = TCP_CONNTRACK_NONE;
1058 ct->proto.tcp.last_index = TCP_NONE_SET;
601e68e1 1059
0d53778e
PM
1060 pr_debug("tcp_new: sender end=%u maxend=%u maxwin=%u scale=%i "
1061 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
1062 sender->td_end, sender->td_maxend, sender->td_maxwin,
1063 sender->td_scale,
1064 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
1065 receiver->td_scale);
09f263cd 1066 return true;
9fb9cbb1 1067}
c1d10adb 1068
e281db5c 1069#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
c1d10adb
PNA
1070
1071#include <linux/netfilter/nfnetlink.h>
1072#include <linux/netfilter/nfnetlink_conntrack.h>
1073
fdf70832 1074static int tcp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
c1d10adb
PNA
1075 const struct nf_conn *ct)
1076{
df6fb868 1077 struct nlattr *nest_parms;
c8e2078c 1078 struct nf_ct_tcp_flags tmp = {};
601e68e1 1079
c1d10adb 1080 read_lock_bh(&tcp_lock);
df6fb868
PM
1081 nest_parms = nla_nest_start(skb, CTA_PROTOINFO_TCP | NLA_F_NESTED);
1082 if (!nest_parms)
1083 goto nla_put_failure;
1084
77236b6e 1085 NLA_PUT_U8(skb, CTA_PROTOINFO_TCP_STATE, ct->proto.tcp.state);
c8e2078c 1086
77236b6e
PM
1087 NLA_PUT_U8(skb, CTA_PROTOINFO_TCP_WSCALE_ORIGINAL,
1088 ct->proto.tcp.seen[0].td_scale);
c8e2078c 1089
77236b6e
PM
1090 NLA_PUT_U8(skb, CTA_PROTOINFO_TCP_WSCALE_REPLY,
1091 ct->proto.tcp.seen[1].td_scale);
c8e2078c
PNA
1092
1093 tmp.flags = ct->proto.tcp.seen[0].flags;
df6fb868 1094 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_ORIGINAL,
c8e2078c
PNA
1095 sizeof(struct nf_ct_tcp_flags), &tmp);
1096
1097 tmp.flags = ct->proto.tcp.seen[1].flags;
df6fb868 1098 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_REPLY,
c8e2078c 1099 sizeof(struct nf_ct_tcp_flags), &tmp);
c1d10adb
PNA
1100 read_unlock_bh(&tcp_lock);
1101
df6fb868 1102 nla_nest_end(skb, nest_parms);
c1d10adb
PNA
1103
1104 return 0;
1105
df6fb868 1106nla_put_failure:
c1d10adb
PNA
1107 read_unlock_bh(&tcp_lock);
1108 return -1;
1109}
1110
f73e924c
PM
1111static const struct nla_policy tcp_nla_policy[CTA_PROTOINFO_TCP_MAX+1] = {
1112 [CTA_PROTOINFO_TCP_STATE] = { .type = NLA_U8 },
1113 [CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] = { .type = NLA_U8 },
1114 [CTA_PROTOINFO_TCP_WSCALE_REPLY] = { .type = NLA_U8 },
1115 [CTA_PROTOINFO_TCP_FLAGS_ORIGINAL] = { .len = sizeof(struct nf_ct_tcp_flags) },
1116 [CTA_PROTOINFO_TCP_FLAGS_REPLY] = { .len = sizeof(struct nf_ct_tcp_flags) },
c1d10adb
PNA
1117};
1118
fdf70832 1119static int nlattr_to_tcp(struct nlattr *cda[], struct nf_conn *ct)
c1d10adb 1120{
2f0d2f10 1121 struct nlattr *pattr = cda[CTA_PROTOINFO_TCP];
df6fb868 1122 struct nlattr *tb[CTA_PROTOINFO_TCP_MAX+1];
f73e924c 1123 int err;
c1d10adb
PNA
1124
1125 /* updates could not contain anything about the private
1126 * protocol info, in that case skip the parsing */
2f0d2f10 1127 if (!pattr)
c1d10adb
PNA
1128 return 0;
1129
2f0d2f10 1130 err = nla_parse_nested(tb, CTA_PROTOINFO_TCP_MAX, pattr, tcp_nla_policy);
f73e924c
PM
1131 if (err < 0)
1132 return err;
c1d10adb 1133
5f7da4d2
PM
1134 if (tb[CTA_PROTOINFO_TCP_STATE] &&
1135 nla_get_u8(tb[CTA_PROTOINFO_TCP_STATE]) >= TCP_CONNTRACK_MAX)
c1d10adb
PNA
1136 return -EINVAL;
1137
1138 write_lock_bh(&tcp_lock);
5f7da4d2
PM
1139 if (tb[CTA_PROTOINFO_TCP_STATE])
1140 ct->proto.tcp.state = nla_get_u8(tb[CTA_PROTOINFO_TCP_STATE]);
c8e2078c 1141
df6fb868 1142 if (tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]) {
c8e2078c 1143 struct nf_ct_tcp_flags *attr =
df6fb868 1144 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]);
c8e2078c
PNA
1145 ct->proto.tcp.seen[0].flags &= ~attr->mask;
1146 ct->proto.tcp.seen[0].flags |= attr->flags & attr->mask;
1147 }
1148
df6fb868 1149 if (tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]) {
c8e2078c 1150 struct nf_ct_tcp_flags *attr =
df6fb868 1151 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]);
c8e2078c
PNA
1152 ct->proto.tcp.seen[1].flags &= ~attr->mask;
1153 ct->proto.tcp.seen[1].flags |= attr->flags & attr->mask;
1154 }
1155
df6fb868
PM
1156 if (tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] &&
1157 tb[CTA_PROTOINFO_TCP_WSCALE_REPLY] &&
c8e2078c
PNA
1158 ct->proto.tcp.seen[0].flags & IP_CT_TCP_FLAG_WINDOW_SCALE &&
1159 ct->proto.tcp.seen[1].flags & IP_CT_TCP_FLAG_WINDOW_SCALE) {
77236b6e
PM
1160 ct->proto.tcp.seen[0].td_scale =
1161 nla_get_u8(tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL]);
1162 ct->proto.tcp.seen[1].td_scale =
1163 nla_get_u8(tb[CTA_PROTOINFO_TCP_WSCALE_REPLY]);
c8e2078c 1164 }
c1d10adb
PNA
1165 write_unlock_bh(&tcp_lock);
1166
1167 return 0;
1168}
1169#endif
933a41e7
PM
1170
1171#ifdef CONFIG_SYSCTL
1172static unsigned int tcp_sysctl_table_users;
1173static struct ctl_table_header *tcp_sysctl_header;
1174static struct ctl_table tcp_sysctl_table[] = {
1175 {
933a41e7 1176 .procname = "nf_conntrack_tcp_timeout_syn_sent",
2d646286 1177 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_SENT],
933a41e7
PM
1178 .maxlen = sizeof(unsigned int),
1179 .mode = 0644,
1180 .proc_handler = &proc_dointvec_jiffies,
1181 },
1182 {
933a41e7 1183 .procname = "nf_conntrack_tcp_timeout_syn_recv",
2d646286 1184 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_RECV],
933a41e7
PM
1185 .maxlen = sizeof(unsigned int),
1186 .mode = 0644,
1187 .proc_handler = &proc_dointvec_jiffies,
1188 },
1189 {
933a41e7 1190 .procname = "nf_conntrack_tcp_timeout_established",
2d646286 1191 .data = &tcp_timeouts[TCP_CONNTRACK_ESTABLISHED],
933a41e7
PM
1192 .maxlen = sizeof(unsigned int),
1193 .mode = 0644,
1194 .proc_handler = &proc_dointvec_jiffies,
1195 },
1196 {
933a41e7 1197 .procname = "nf_conntrack_tcp_timeout_fin_wait",
2d646286 1198 .data = &tcp_timeouts[TCP_CONNTRACK_FIN_WAIT],
933a41e7
PM
1199 .maxlen = sizeof(unsigned int),
1200 .mode = 0644,
1201 .proc_handler = &proc_dointvec_jiffies,
1202 },
1203 {
933a41e7 1204 .procname = "nf_conntrack_tcp_timeout_close_wait",
2d646286 1205 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE_WAIT],
933a41e7
PM
1206 .maxlen = sizeof(unsigned int),
1207 .mode = 0644,
1208 .proc_handler = &proc_dointvec_jiffies,
1209 },
1210 {
933a41e7 1211 .procname = "nf_conntrack_tcp_timeout_last_ack",
2d646286 1212 .data = &tcp_timeouts[TCP_CONNTRACK_LAST_ACK],
933a41e7
PM
1213 .maxlen = sizeof(unsigned int),
1214 .mode = 0644,
1215 .proc_handler = &proc_dointvec_jiffies,
1216 },
1217 {
933a41e7 1218 .procname = "nf_conntrack_tcp_timeout_time_wait",
2d646286 1219 .data = &tcp_timeouts[TCP_CONNTRACK_TIME_WAIT],
933a41e7
PM
1220 .maxlen = sizeof(unsigned int),
1221 .mode = 0644,
1222 .proc_handler = &proc_dointvec_jiffies,
1223 },
1224 {
933a41e7 1225 .procname = "nf_conntrack_tcp_timeout_close",
2d646286 1226 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE],
933a41e7
PM
1227 .maxlen = sizeof(unsigned int),
1228 .mode = 0644,
1229 .proc_handler = &proc_dointvec_jiffies,
1230 },
1231 {
933a41e7
PM
1232 .procname = "nf_conntrack_tcp_timeout_max_retrans",
1233 .data = &nf_ct_tcp_timeout_max_retrans,
1234 .maxlen = sizeof(unsigned int),
1235 .mode = 0644,
1236 .proc_handler = &proc_dointvec_jiffies,
1237 },
1238 {
1239 .ctl_name = NET_NF_CONNTRACK_TCP_LOOSE,
1240 .procname = "nf_conntrack_tcp_loose",
1241 .data = &nf_ct_tcp_loose,
1242 .maxlen = sizeof(unsigned int),
1243 .mode = 0644,
1244 .proc_handler = &proc_dointvec,
1245 },
1246 {
1247 .ctl_name = NET_NF_CONNTRACK_TCP_BE_LIBERAL,
1248 .procname = "nf_conntrack_tcp_be_liberal",
1249 .data = &nf_ct_tcp_be_liberal,
1250 .maxlen = sizeof(unsigned int),
1251 .mode = 0644,
1252 .proc_handler = &proc_dointvec,
1253 },
1254 {
1255 .ctl_name = NET_NF_CONNTRACK_TCP_MAX_RETRANS,
1256 .procname = "nf_conntrack_tcp_max_retrans",
1257 .data = &nf_ct_tcp_max_retrans,
1258 .maxlen = sizeof(unsigned int),
1259 .mode = 0644,
1260 .proc_handler = &proc_dointvec,
1261 },
1262 {
1263 .ctl_name = 0
1264 }
1265};
a999e683
PM
1266
1267#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1268static struct ctl_table tcp_compat_sysctl_table[] = {
1269 {
a999e683 1270 .procname = "ip_conntrack_tcp_timeout_syn_sent",
2d646286 1271 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_SENT],
a999e683
PM
1272 .maxlen = sizeof(unsigned int),
1273 .mode = 0644,
1274 .proc_handler = &proc_dointvec_jiffies,
1275 },
1276 {
a999e683 1277 .procname = "ip_conntrack_tcp_timeout_syn_recv",
2d646286 1278 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_RECV],
a999e683
PM
1279 .maxlen = sizeof(unsigned int),
1280 .mode = 0644,
1281 .proc_handler = &proc_dointvec_jiffies,
1282 },
1283 {
a999e683 1284 .procname = "ip_conntrack_tcp_timeout_established",
2d646286 1285 .data = &tcp_timeouts[TCP_CONNTRACK_ESTABLISHED],
a999e683
PM
1286 .maxlen = sizeof(unsigned int),
1287 .mode = 0644,
1288 .proc_handler = &proc_dointvec_jiffies,
1289 },
1290 {
a999e683 1291 .procname = "ip_conntrack_tcp_timeout_fin_wait",
2d646286 1292 .data = &tcp_timeouts[TCP_CONNTRACK_FIN_WAIT],
a999e683
PM
1293 .maxlen = sizeof(unsigned int),
1294 .mode = 0644,
1295 .proc_handler = &proc_dointvec_jiffies,
1296 },
1297 {
a999e683 1298 .procname = "ip_conntrack_tcp_timeout_close_wait",
2d646286 1299 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE_WAIT],
a999e683
PM
1300 .maxlen = sizeof(unsigned int),
1301 .mode = 0644,
1302 .proc_handler = &proc_dointvec_jiffies,
1303 },
1304 {
a999e683 1305 .procname = "ip_conntrack_tcp_timeout_last_ack",
2d646286 1306 .data = &tcp_timeouts[TCP_CONNTRACK_LAST_ACK],
a999e683
PM
1307 .maxlen = sizeof(unsigned int),
1308 .mode = 0644,
1309 .proc_handler = &proc_dointvec_jiffies,
1310 },
1311 {
a999e683 1312 .procname = "ip_conntrack_tcp_timeout_time_wait",
2d646286 1313 .data = &tcp_timeouts[TCP_CONNTRACK_TIME_WAIT],
a999e683
PM
1314 .maxlen = sizeof(unsigned int),
1315 .mode = 0644,
1316 .proc_handler = &proc_dointvec_jiffies,
1317 },
1318 {
a999e683 1319 .procname = "ip_conntrack_tcp_timeout_close",
2d646286 1320 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE],
a999e683
PM
1321 .maxlen = sizeof(unsigned int),
1322 .mode = 0644,
1323 .proc_handler = &proc_dointvec_jiffies,
1324 },
1325 {
a999e683
PM
1326 .procname = "ip_conntrack_tcp_timeout_max_retrans",
1327 .data = &nf_ct_tcp_timeout_max_retrans,
1328 .maxlen = sizeof(unsigned int),
1329 .mode = 0644,
1330 .proc_handler = &proc_dointvec_jiffies,
1331 },
1332 {
1333 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_LOOSE,
1334 .procname = "ip_conntrack_tcp_loose",
1335 .data = &nf_ct_tcp_loose,
1336 .maxlen = sizeof(unsigned int),
1337 .mode = 0644,
1338 .proc_handler = &proc_dointvec,
1339 },
1340 {
1341 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL,
1342 .procname = "ip_conntrack_tcp_be_liberal",
1343 .data = &nf_ct_tcp_be_liberal,
1344 .maxlen = sizeof(unsigned int),
1345 .mode = 0644,
1346 .proc_handler = &proc_dointvec,
1347 },
1348 {
1349 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS,
1350 .procname = "ip_conntrack_tcp_max_retrans",
1351 .data = &nf_ct_tcp_max_retrans,
1352 .maxlen = sizeof(unsigned int),
1353 .mode = 0644,
1354 .proc_handler = &proc_dointvec,
1355 },
1356 {
1357 .ctl_name = 0
1358 }
1359};
1360#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
933a41e7
PM
1361#endif /* CONFIG_SYSCTL */
1362
61075af5 1363struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp4 __read_mostly =
9fb9cbb1
YK
1364{
1365 .l3proto = PF_INET,
605dcad6 1366 .l4proto = IPPROTO_TCP,
9fb9cbb1
YK
1367 .name = "tcp",
1368 .pkt_to_tuple = tcp_pkt_to_tuple,
1369 .invert_tuple = tcp_invert_tuple,
1370 .print_tuple = tcp_print_tuple,
1371 .print_conntrack = tcp_print_conntrack,
1372 .packet = tcp_packet,
1373 .new = tcp_new,
96f6bf82 1374 .error = tcp_error,
e281db5c 1375#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
fdf70832
PM
1376 .to_nlattr = tcp_to_nlattr,
1377 .from_nlattr = nlattr_to_tcp,
1378 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1379 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
f73e924c 1380 .nla_policy = nf_ct_port_nla_policy,
c1d10adb 1381#endif
933a41e7
PM
1382#ifdef CONFIG_SYSCTL
1383 .ctl_table_users = &tcp_sysctl_table_users,
1384 .ctl_table_header = &tcp_sysctl_header,
1385 .ctl_table = tcp_sysctl_table,
a999e683
PM
1386#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1387 .ctl_compat_table = tcp_compat_sysctl_table,
1388#endif
933a41e7 1389#endif
9fb9cbb1 1390};
13b18339 1391EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp4);
9fb9cbb1 1392
61075af5 1393struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6 __read_mostly =
9fb9cbb1
YK
1394{
1395 .l3proto = PF_INET6,
605dcad6 1396 .l4proto = IPPROTO_TCP,
9fb9cbb1
YK
1397 .name = "tcp",
1398 .pkt_to_tuple = tcp_pkt_to_tuple,
1399 .invert_tuple = tcp_invert_tuple,
1400 .print_tuple = tcp_print_tuple,
1401 .print_conntrack = tcp_print_conntrack,
1402 .packet = tcp_packet,
1403 .new = tcp_new,
96f6bf82 1404 .error = tcp_error,
e281db5c 1405#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
fdf70832
PM
1406 .to_nlattr = tcp_to_nlattr,
1407 .from_nlattr = nlattr_to_tcp,
1408 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1409 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
f73e924c 1410 .nla_policy = nf_ct_port_nla_policy,
c1d10adb 1411#endif
933a41e7
PM
1412#ifdef CONFIG_SYSCTL
1413 .ctl_table_users = &tcp_sysctl_table_users,
1414 .ctl_table_header = &tcp_sysctl_header,
1415 .ctl_table = tcp_sysctl_table,
1416#endif
9fb9cbb1 1417};
13b18339 1418EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp6);