netfilter: nf_ct_tcp: improve out-of-sync situation in TCP tracking
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / netfilter / nf_conntrack_proto_tcp.c
blob9cc6b5cb06afa709401a147caf694626ffdcd9a8
1 /* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
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.
7 */
9 #include <linux/types.h>
10 #include <linux/timer.h>
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 #include <asm/unaligned.h>
20 #include <net/tcp.h>
22 #include <linux/netfilter.h>
23 #include <linux/netfilter_ipv4.h>
24 #include <linux/netfilter_ipv6.h>
25 #include <net/netfilter/nf_conntrack.h>
26 #include <net/netfilter/nf_conntrack_l4proto.h>
27 #include <net/netfilter/nf_conntrack_ecache.h>
28 #include <net/netfilter/nf_log.h>
29 #include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
30 #include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
32 /* "Be conservative in what you do,
33 be liberal in what you accept from others."
34 If it's non-zero, we mark only out of window RST segments as INVALID. */
35 static int nf_ct_tcp_be_liberal __read_mostly = 0;
37 /* If it is set to zero, we disable picking up already established
38 connections. */
39 static int nf_ct_tcp_loose __read_mostly = 1;
41 /* Max number of the retransmitted packets without receiving an (acceptable)
42 ACK from the destination. If this number is reached, a shorter timer
43 will be started. */
44 static int nf_ct_tcp_max_retrans __read_mostly = 3;
46 /* FIXME: Examine ipfilter's timeouts and conntrack transitions more
47 closely. They're more complex. --RR */
49 static const char *const tcp_conntrack_names[] = {
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 "SYN_SENT2",
62 #define SECS * HZ
63 #define MINS * 60 SECS
64 #define HOURS * 60 MINS
65 #define DAYS * 24 HOURS
67 /* RFC1122 says the R2 limit should be at least 100 seconds.
68 Linux uses 15 packets as limit, which corresponds
69 to ~13-30min depending on RTO. */
70 static unsigned int nf_ct_tcp_timeout_max_retrans __read_mostly = 5 MINS;
71 static unsigned int nf_ct_tcp_timeout_unacknowledged __read_mostly = 5 MINS;
73 static unsigned int tcp_timeouts[TCP_CONNTRACK_MAX] __read_mostly = {
74 [TCP_CONNTRACK_SYN_SENT] = 2 MINS,
75 [TCP_CONNTRACK_SYN_RECV] = 60 SECS,
76 [TCP_CONNTRACK_ESTABLISHED] = 5 DAYS,
77 [TCP_CONNTRACK_FIN_WAIT] = 2 MINS,
78 [TCP_CONNTRACK_CLOSE_WAIT] = 60 SECS,
79 [TCP_CONNTRACK_LAST_ACK] = 30 SECS,
80 [TCP_CONNTRACK_TIME_WAIT] = 2 MINS,
81 [TCP_CONNTRACK_CLOSE] = 10 SECS,
82 [TCP_CONNTRACK_SYN_SENT2] = 2 MINS,
85 #define sNO TCP_CONNTRACK_NONE
86 #define sSS TCP_CONNTRACK_SYN_SENT
87 #define sSR TCP_CONNTRACK_SYN_RECV
88 #define sES TCP_CONNTRACK_ESTABLISHED
89 #define sFW TCP_CONNTRACK_FIN_WAIT
90 #define sCW TCP_CONNTRACK_CLOSE_WAIT
91 #define sLA TCP_CONNTRACK_LAST_ACK
92 #define sTW TCP_CONNTRACK_TIME_WAIT
93 #define sCL TCP_CONNTRACK_CLOSE
94 #define sS2 TCP_CONNTRACK_SYN_SENT2
95 #define sIV TCP_CONNTRACK_MAX
96 #define sIG TCP_CONNTRACK_IGNORE
98 /* What TCP flags are set from RST/SYN/FIN/ACK. */
99 enum tcp_bit_set {
100 TCP_SYN_SET,
101 TCP_SYNACK_SET,
102 TCP_FIN_SET,
103 TCP_ACK_SET,
104 TCP_RST_SET,
105 TCP_NONE_SET,
109 * The TCP state transition table needs a few words...
111 * We are the man in the middle. All the packets go through us
112 * but might get lost in transit to the destination.
113 * It is assumed that the destinations can't receive segments
114 * we haven't seen.
116 * The checked segment is in window, but our windows are *not*
117 * equivalent with the ones of the sender/receiver. We always
118 * try to guess the state of the current sender.
120 * The meaning of the states are:
122 * NONE: initial state
123 * SYN_SENT: SYN-only packet seen
124 * SYN_SENT2: SYN-only packet seen from reply dir, simultaneous open
125 * SYN_RECV: SYN-ACK packet seen
126 * ESTABLISHED: ACK packet seen
127 * FIN_WAIT: FIN packet seen
128 * CLOSE_WAIT: ACK seen (after FIN)
129 * LAST_ACK: FIN seen (after FIN)
130 * TIME_WAIT: last ACK seen
131 * CLOSE: closed connection (RST)
133 * Packets marked as IGNORED (sIG):
134 * if they may be either invalid or valid
135 * and the receiver may send back a connection
136 * closing RST or a SYN/ACK.
138 * Packets marked as INVALID (sIV):
139 * if we regard them as truly invalid packets
141 static const u8 tcp_conntracks[2][6][TCP_CONNTRACK_MAX] = {
143 /* ORIGINAL */
144 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
145 /*syn*/ { sSS, sSS, sIG, sIG, sIG, sIG, sIG, sSS, sSS, sS2 },
147 * sNO -> sSS Initialize a new connection
148 * sSS -> sSS Retransmitted SYN
149 * sS2 -> sS2 Late retransmitted SYN
150 * sSR -> sIG
151 * sES -> sIG Error: SYNs in window outside the SYN_SENT state
152 * are errors. Receiver will reply with RST
153 * and close the connection.
154 * Or we are not in sync and hold a dead connection.
155 * sFW -> sIG
156 * sCW -> sIG
157 * sLA -> sIG
158 * sTW -> sSS Reopened connection (RFC 1122).
159 * sCL -> sSS
161 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
162 /*synack*/ { sIV, sIV, sIG, sIG, sIG, sIG, sIG, sIG, sIG, sSR },
164 * sNO -> sIV Too late and no reason to do anything
165 * sSS -> sIV Client can't send SYN and then SYN/ACK
166 * sS2 -> sSR SYN/ACK sent to SYN2 in simultaneous open
167 * sSR -> sIG
168 * sES -> sIG Error: SYNs in window outside the SYN_SENT state
169 * are errors. Receiver will reply with RST
170 * and close the connection.
171 * Or we are not in sync and hold a dead connection.
172 * sFW -> sIG
173 * sCW -> sIG
174 * sLA -> sIG
175 * sTW -> sIG
176 * sCL -> sIG
178 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
179 /*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
181 * sNO -> sIV Too late and no reason to do anything...
182 * sSS -> sIV Client migth not send FIN in this state:
183 * we enforce waiting for a SYN/ACK reply first.
184 * sS2 -> sIV
185 * sSR -> sFW Close started.
186 * sES -> sFW
187 * sFW -> sLA FIN seen in both directions, waiting for
188 * the last ACK.
189 * Migth be a retransmitted FIN as well...
190 * sCW -> sLA
191 * sLA -> sLA Retransmitted FIN. Remain in the same state.
192 * sTW -> sTW
193 * sCL -> sCL
195 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
196 /*ack*/ { sES, sIV, sES, sES, sCW, sCW, sTW, sTW, sCL, sIV },
198 * sNO -> sES Assumed.
199 * sSS -> sIV ACK is invalid: we haven't seen a SYN/ACK yet.
200 * sS2 -> sIV
201 * sSR -> sES Established state is reached.
202 * sES -> sES :-)
203 * sFW -> sCW Normal close request answered by ACK.
204 * sCW -> sCW
205 * sLA -> sTW Last ACK detected.
206 * sTW -> sTW Retransmitted last ACK. Remain in the same state.
207 * sCL -> sCL
209 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
210 /*rst*/ { sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL },
211 /*none*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV }
214 /* REPLY */
215 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
216 /*syn*/ { sIV, sS2, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sS2 },
218 * sNO -> sIV Never reached.
219 * sSS -> sS2 Simultaneous open
220 * sS2 -> sS2 Retransmitted simultaneous SYN
221 * sSR -> sIV Invalid SYN packets sent by the server
222 * sES -> sIV
223 * sFW -> sIV
224 * sCW -> sIV
225 * sLA -> sIV
226 * sTW -> sIV Reopened connection, but server may not do it.
227 * sCL -> sIV
229 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
230 /*synack*/ { sIV, sSR, sSR, sIG, sIG, sIG, sIG, sIG, sIG, sSR },
232 * sSS -> sSR Standard open.
233 * sS2 -> sSR Simultaneous open
234 * sSR -> sSR Retransmitted SYN/ACK.
235 * sES -> sIG Late retransmitted SYN/ACK?
236 * sFW -> sIG Might be SYN/ACK answering ignored SYN
237 * sCW -> sIG
238 * sLA -> sIG
239 * sTW -> sIG
240 * sCL -> sIG
242 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
243 /*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
245 * sSS -> sIV Server might not send FIN in this state.
246 * sS2 -> sIV
247 * sSR -> sFW Close started.
248 * sES -> sFW
249 * sFW -> sLA FIN seen in both directions.
250 * sCW -> sLA
251 * sLA -> sLA Retransmitted FIN.
252 * sTW -> sTW
253 * sCL -> sCL
255 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
256 /*ack*/ { sIV, sIG, sSR, sES, sCW, sCW, sTW, sTW, sCL, sIG },
258 * sSS -> sIG Might be a half-open connection.
259 * sS2 -> sIG
260 * sSR -> sSR Might answer late resent SYN.
261 * sES -> sES :-)
262 * sFW -> sCW Normal close request answered by ACK.
263 * sCW -> sCW
264 * sLA -> sTW Last ACK detected.
265 * sTW -> sTW Retransmitted last ACK.
266 * sCL -> sCL
268 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sS2 */
269 /*rst*/ { sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL },
270 /*none*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV }
274 static bool tcp_pkt_to_tuple(const struct sk_buff *skb, unsigned int dataoff,
275 struct nf_conntrack_tuple *tuple)
277 const struct tcphdr *hp;
278 struct tcphdr _hdr;
280 /* Actually only need first 8 bytes. */
281 hp = skb_header_pointer(skb, dataoff, 8, &_hdr);
282 if (hp == NULL)
283 return false;
285 tuple->src.u.tcp.port = hp->source;
286 tuple->dst.u.tcp.port = hp->dest;
288 return true;
291 static bool tcp_invert_tuple(struct nf_conntrack_tuple *tuple,
292 const struct nf_conntrack_tuple *orig)
294 tuple->src.u.tcp.port = orig->dst.u.tcp.port;
295 tuple->dst.u.tcp.port = orig->src.u.tcp.port;
296 return true;
299 /* Print out the per-protocol part of the tuple. */
300 static int tcp_print_tuple(struct seq_file *s,
301 const struct nf_conntrack_tuple *tuple)
303 return seq_printf(s, "sport=%hu dport=%hu ",
304 ntohs(tuple->src.u.tcp.port),
305 ntohs(tuple->dst.u.tcp.port));
308 /* Print out the private part of the conntrack. */
309 static int tcp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
311 enum tcp_conntrack state;
313 spin_lock_bh(&ct->lock);
314 state = ct->proto.tcp.state;
315 spin_unlock_bh(&ct->lock);
317 return seq_printf(s, "%s ", tcp_conntrack_names[state]);
320 static unsigned int get_conntrack_index(const struct tcphdr *tcph)
322 if (tcph->rst) return TCP_RST_SET;
323 else if (tcph->syn) return (tcph->ack ? TCP_SYNACK_SET : TCP_SYN_SET);
324 else if (tcph->fin) return TCP_FIN_SET;
325 else if (tcph->ack) return TCP_ACK_SET;
326 else return TCP_NONE_SET;
329 /* TCP connection tracking based on 'Real Stateful TCP Packet Filtering
330 in IP Filter' by Guido van Rooij.
332 http://www.nluug.nl/events/sane2000/papers.html
333 http://www.iae.nl/users/guido/papers/tcp_filtering.ps.gz
335 The boundaries and the conditions are changed according to RFC793:
336 the packet must intersect the window (i.e. segments may be
337 after the right or before the left edge) and thus receivers may ACK
338 segments after the right edge of the window.
340 td_maxend = max(sack + max(win,1)) seen in reply packets
341 td_maxwin = max(max(win, 1)) + (sack - ack) seen in sent packets
342 td_maxwin += seq + len - sender.td_maxend
343 if seq + len > sender.td_maxend
344 td_end = max(seq + len) seen in sent packets
346 I. Upper bound for valid data: seq <= sender.td_maxend
347 II. Lower bound for valid data: seq + len >= sender.td_end - receiver.td_maxwin
348 III. Upper bound for valid (s)ack: sack <= receiver.td_end
349 IV. Lower bound for valid (s)ack: sack >= receiver.td_end - MAXACKWINDOW
351 where sack is the highest right edge of sack block found in the packet
352 or ack in the case of packet without SACK option.
354 The upper bound limit for a valid (s)ack is not ignored -
355 we doesn't have to deal with fragments.
358 static inline __u32 segment_seq_plus_len(__u32 seq,
359 size_t len,
360 unsigned int dataoff,
361 const struct tcphdr *tcph)
363 /* XXX Should I use payload length field in IP/IPv6 header ?
364 * - YK */
365 return (seq + len - dataoff - tcph->doff*4
366 + (tcph->syn ? 1 : 0) + (tcph->fin ? 1 : 0));
369 /* Fixme: what about big packets? */
370 #define MAXACKWINCONST 66000
371 #define MAXACKWINDOW(sender) \
372 ((sender)->td_maxwin > MAXACKWINCONST ? (sender)->td_maxwin \
373 : MAXACKWINCONST)
376 * Simplified tcp_parse_options routine from tcp_input.c
378 static void tcp_options(const struct sk_buff *skb,
379 unsigned int dataoff,
380 const struct tcphdr *tcph,
381 struct ip_ct_tcp_state *state)
383 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
384 const unsigned char *ptr;
385 int length = (tcph->doff*4) - sizeof(struct tcphdr);
387 if (!length)
388 return;
390 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
391 length, buff);
392 BUG_ON(ptr == NULL);
394 state->td_scale =
395 state->flags = 0;
397 while (length > 0) {
398 int opcode=*ptr++;
399 int opsize;
401 switch (opcode) {
402 case TCPOPT_EOL:
403 return;
404 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
405 length--;
406 continue;
407 default:
408 opsize=*ptr++;
409 if (opsize < 2) /* "silly options" */
410 return;
411 if (opsize > length)
412 break; /* don't parse partial options */
414 if (opcode == TCPOPT_SACK_PERM
415 && opsize == TCPOLEN_SACK_PERM)
416 state->flags |= IP_CT_TCP_FLAG_SACK_PERM;
417 else if (opcode == TCPOPT_WINDOW
418 && opsize == TCPOLEN_WINDOW) {
419 state->td_scale = *(u_int8_t *)ptr;
421 if (state->td_scale > 14) {
422 /* See RFC1323 */
423 state->td_scale = 14;
425 state->flags |=
426 IP_CT_TCP_FLAG_WINDOW_SCALE;
428 ptr += opsize - 2;
429 length -= opsize;
434 static void tcp_sack(const struct sk_buff *skb, unsigned int dataoff,
435 const struct tcphdr *tcph, __u32 *sack)
437 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
438 const unsigned char *ptr;
439 int length = (tcph->doff*4) - sizeof(struct tcphdr);
440 __u32 tmp;
442 if (!length)
443 return;
445 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
446 length, buff);
447 BUG_ON(ptr == NULL);
449 /* Fast path for timestamp-only option */
450 if (length == TCPOLEN_TSTAMP_ALIGNED*4
451 && *(__be32 *)ptr == htonl((TCPOPT_NOP << 24)
452 | (TCPOPT_NOP << 16)
453 | (TCPOPT_TIMESTAMP << 8)
454 | TCPOLEN_TIMESTAMP))
455 return;
457 while (length > 0) {
458 int opcode = *ptr++;
459 int opsize, i;
461 switch (opcode) {
462 case TCPOPT_EOL:
463 return;
464 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
465 length--;
466 continue;
467 default:
468 opsize = *ptr++;
469 if (opsize < 2) /* "silly options" */
470 return;
471 if (opsize > length)
472 break; /* don't parse partial options */
474 if (opcode == TCPOPT_SACK
475 && opsize >= (TCPOLEN_SACK_BASE
476 + TCPOLEN_SACK_PERBLOCK)
477 && !((opsize - TCPOLEN_SACK_BASE)
478 % TCPOLEN_SACK_PERBLOCK)) {
479 for (i = 0;
480 i < (opsize - TCPOLEN_SACK_BASE);
481 i += TCPOLEN_SACK_PERBLOCK) {
482 tmp = get_unaligned_be32((__be32 *)(ptr+i)+1);
484 if (after(tmp, *sack))
485 *sack = tmp;
487 return;
489 ptr += opsize - 2;
490 length -= opsize;
495 static bool tcp_in_window(const struct nf_conn *ct,
496 struct ip_ct_tcp *state,
497 enum ip_conntrack_dir dir,
498 unsigned int index,
499 const struct sk_buff *skb,
500 unsigned int dataoff,
501 const struct tcphdr *tcph,
502 u_int8_t pf)
504 struct net *net = nf_ct_net(ct);
505 struct ip_ct_tcp_state *sender = &state->seen[dir];
506 struct ip_ct_tcp_state *receiver = &state->seen[!dir];
507 const struct nf_conntrack_tuple *tuple = &ct->tuplehash[dir].tuple;
508 __u32 seq, ack, sack, end, win, swin;
509 bool res;
512 * Get the required data from the packet.
514 seq = ntohl(tcph->seq);
515 ack = sack = ntohl(tcph->ack_seq);
516 win = ntohs(tcph->window);
517 end = segment_seq_plus_len(seq, skb->len, dataoff, tcph);
519 if (receiver->flags & IP_CT_TCP_FLAG_SACK_PERM)
520 tcp_sack(skb, dataoff, tcph, &sack);
522 pr_debug("tcp_in_window: START\n");
523 pr_debug("tcp_in_window: ");
524 nf_ct_dump_tuple(tuple);
525 pr_debug("seq=%u ack=%u sack=%u win=%u end=%u\n",
526 seq, ack, sack, win, end);
527 pr_debug("tcp_in_window: sender end=%u maxend=%u maxwin=%u scale=%i "
528 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
529 sender->td_end, sender->td_maxend, sender->td_maxwin,
530 sender->td_scale,
531 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
532 receiver->td_scale);
534 if (sender->td_maxwin == 0) {
536 * Initialize sender data.
538 if (tcph->syn) {
540 * SYN-ACK in reply to a SYN
541 * or SYN from reply direction in simultaneous open.
543 sender->td_end =
544 sender->td_maxend = end;
545 sender->td_maxwin = (win == 0 ? 1 : win);
547 tcp_options(skb, dataoff, tcph, sender);
549 * RFC 1323:
550 * Both sides must send the Window Scale option
551 * to enable window scaling in either direction.
553 if (!(sender->flags & IP_CT_TCP_FLAG_WINDOW_SCALE
554 && receiver->flags & IP_CT_TCP_FLAG_WINDOW_SCALE))
555 sender->td_scale =
556 receiver->td_scale = 0;
557 if (!tcph->ack)
558 /* Simultaneous open */
559 return true;
560 } else {
562 * We are in the middle of a connection,
563 * its history is lost for us.
564 * Let's try to use the data from the packet.
566 sender->td_end = end;
567 sender->td_maxwin = (win == 0 ? 1 : win);
568 sender->td_maxend = end + sender->td_maxwin;
570 } else if (((state->state == TCP_CONNTRACK_SYN_SENT
571 && dir == IP_CT_DIR_ORIGINAL)
572 || (state->state == TCP_CONNTRACK_SYN_RECV
573 && dir == IP_CT_DIR_REPLY))
574 && after(end, sender->td_end)) {
576 * RFC 793: "if a TCP is reinitialized ... then it need
577 * not wait at all; it must only be sure to use sequence
578 * numbers larger than those recently used."
580 sender->td_end =
581 sender->td_maxend = end;
582 sender->td_maxwin = (win == 0 ? 1 : win);
584 tcp_options(skb, dataoff, tcph, sender);
587 if (!(tcph->ack)) {
589 * If there is no ACK, just pretend it was set and OK.
591 ack = sack = receiver->td_end;
592 } else if (((tcp_flag_word(tcph) & (TCP_FLAG_ACK|TCP_FLAG_RST)) ==
593 (TCP_FLAG_ACK|TCP_FLAG_RST))
594 && (ack == 0)) {
596 * Broken TCP stacks, that set ACK in RST packets as well
597 * with zero ack value.
599 ack = sack = receiver->td_end;
602 if (seq == end
603 && (!tcph->rst
604 || (seq == 0 && state->state == TCP_CONNTRACK_SYN_SENT)))
606 * Packets contains no data: we assume it is valid
607 * and check the ack value only.
608 * However RST segments are always validated by their
609 * SEQ number, except when seq == 0 (reset sent answering
610 * SYN.
612 seq = end = sender->td_end;
614 pr_debug("tcp_in_window: ");
615 nf_ct_dump_tuple(tuple);
616 pr_debug("seq=%u ack=%u sack =%u win=%u end=%u\n",
617 seq, ack, sack, win, end);
618 pr_debug("tcp_in_window: sender end=%u maxend=%u maxwin=%u scale=%i "
619 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
620 sender->td_end, sender->td_maxend, sender->td_maxwin,
621 sender->td_scale,
622 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
623 receiver->td_scale);
625 pr_debug("tcp_in_window: I=%i II=%i III=%i IV=%i\n",
626 before(seq, sender->td_maxend + 1),
627 after(end, sender->td_end - receiver->td_maxwin - 1),
628 before(sack, receiver->td_end + 1),
629 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1));
631 if (before(seq, sender->td_maxend + 1) &&
632 after(end, sender->td_end - receiver->td_maxwin - 1) &&
633 before(sack, receiver->td_end + 1) &&
634 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1)) {
636 * Take into account window scaling (RFC 1323).
638 if (!tcph->syn)
639 win <<= sender->td_scale;
642 * Update sender data.
644 swin = win + (sack - ack);
645 if (sender->td_maxwin < swin)
646 sender->td_maxwin = swin;
647 if (after(end, sender->td_end)) {
648 sender->td_end = end;
649 sender->flags |= IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED;
651 if (tcph->ack) {
652 if (!(sender->flags & IP_CT_TCP_FLAG_MAXACK_SET)) {
653 sender->td_maxack = ack;
654 sender->flags |= IP_CT_TCP_FLAG_MAXACK_SET;
655 } else if (after(ack, sender->td_maxack))
656 sender->td_maxack = ack;
660 * Update receiver data.
662 if (after(end, sender->td_maxend))
663 receiver->td_maxwin += end - sender->td_maxend;
664 if (after(sack + win, receiver->td_maxend - 1)) {
665 receiver->td_maxend = sack + win;
666 if (win == 0)
667 receiver->td_maxend++;
669 if (ack == receiver->td_end)
670 receiver->flags &= ~IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED;
673 * Check retransmissions.
675 if (index == TCP_ACK_SET) {
676 if (state->last_dir == dir
677 && state->last_seq == seq
678 && state->last_ack == ack
679 && state->last_end == end
680 && state->last_win == win)
681 state->retrans++;
682 else {
683 state->last_dir = dir;
684 state->last_seq = seq;
685 state->last_ack = ack;
686 state->last_end = end;
687 state->last_win = win;
688 state->retrans = 0;
691 res = true;
692 } else {
693 res = false;
694 if (sender->flags & IP_CT_TCP_FLAG_BE_LIBERAL ||
695 nf_ct_tcp_be_liberal)
696 res = true;
697 if (!res && LOG_INVALID(net, IPPROTO_TCP))
698 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
699 "nf_ct_tcp: %s ",
700 before(seq, sender->td_maxend + 1) ?
701 after(end, sender->td_end - receiver->td_maxwin - 1) ?
702 before(sack, receiver->td_end + 1) ?
703 after(ack, receiver->td_end - MAXACKWINDOW(sender)) ? "BUG"
704 : "ACK is under the lower bound (possible overly delayed ACK)"
705 : "ACK is over the upper bound (ACKed data not seen yet)"
706 : "SEQ is under the lower bound (already ACKed data retransmitted)"
707 : "SEQ is over the upper bound (over the window of the receiver)");
710 pr_debug("tcp_in_window: res=%u sender end=%u maxend=%u maxwin=%u "
711 "receiver end=%u maxend=%u maxwin=%u\n",
712 res, sender->td_end, sender->td_maxend, sender->td_maxwin,
713 receiver->td_end, receiver->td_maxend, receiver->td_maxwin);
715 return res;
718 #ifdef CONFIG_NF_NAT_NEEDED
719 /* Update sender->td_end after NAT successfully mangled the packet */
720 /* Caller must linearize skb at tcp header. */
721 void nf_conntrack_tcp_update(const struct sk_buff *skb,
722 unsigned int dataoff,
723 struct nf_conn *ct, int dir,
724 s16 offset)
726 const struct tcphdr *tcph = (const void *)skb->data + dataoff;
727 const struct ip_ct_tcp_state *sender = &ct->proto.tcp.seen[dir];
728 const struct ip_ct_tcp_state *receiver = &ct->proto.tcp.seen[!dir];
729 __u32 end;
731 end = segment_seq_plus_len(ntohl(tcph->seq), skb->len, dataoff, tcph);
733 spin_lock_bh(&ct->lock);
735 * We have to worry for the ack in the reply packet only...
737 if (ct->proto.tcp.seen[dir].td_end + offset == end)
738 ct->proto.tcp.seen[dir].td_end = end;
739 ct->proto.tcp.last_end = end;
740 spin_unlock_bh(&ct->lock);
741 pr_debug("tcp_update: sender end=%u maxend=%u maxwin=%u scale=%i "
742 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
743 sender->td_end, sender->td_maxend, sender->td_maxwin,
744 sender->td_scale,
745 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
746 receiver->td_scale);
748 EXPORT_SYMBOL_GPL(nf_conntrack_tcp_update);
749 #endif
751 #define TH_FIN 0x01
752 #define TH_SYN 0x02
753 #define TH_RST 0x04
754 #define TH_PUSH 0x08
755 #define TH_ACK 0x10
756 #define TH_URG 0x20
757 #define TH_ECE 0x40
758 #define TH_CWR 0x80
760 /* table of valid flag combinations - PUSH, ECE and CWR are always valid */
761 static const u8 tcp_valid_flags[(TH_FIN|TH_SYN|TH_RST|TH_ACK|TH_URG) + 1] =
763 [TH_SYN] = 1,
764 [TH_SYN|TH_URG] = 1,
765 [TH_SYN|TH_ACK] = 1,
766 [TH_RST] = 1,
767 [TH_RST|TH_ACK] = 1,
768 [TH_FIN|TH_ACK] = 1,
769 [TH_FIN|TH_ACK|TH_URG] = 1,
770 [TH_ACK] = 1,
771 [TH_ACK|TH_URG] = 1,
774 /* Protect conntrack agaist broken packets. Code taken from ipt_unclean.c. */
775 static int tcp_error(struct net *net,
776 struct sk_buff *skb,
777 unsigned int dataoff,
778 enum ip_conntrack_info *ctinfo,
779 u_int8_t pf,
780 unsigned int hooknum)
782 const struct tcphdr *th;
783 struct tcphdr _tcph;
784 unsigned int tcplen = skb->len - dataoff;
785 u_int8_t tcpflags;
787 /* Smaller that minimal TCP header? */
788 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
789 if (th == NULL) {
790 if (LOG_INVALID(net, IPPROTO_TCP))
791 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
792 "nf_ct_tcp: short packet ");
793 return -NF_ACCEPT;
796 /* Not whole TCP header or malformed packet */
797 if (th->doff*4 < sizeof(struct tcphdr) || tcplen < th->doff*4) {
798 if (LOG_INVALID(net, IPPROTO_TCP))
799 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
800 "nf_ct_tcp: truncated/malformed packet ");
801 return -NF_ACCEPT;
804 /* Checksum invalid? Ignore.
805 * We skip checking packets on the outgoing path
806 * because the checksum is assumed to be correct.
808 /* FIXME: Source route IP option packets --RR */
809 if (net->ct.sysctl_checksum && hooknum == NF_INET_PRE_ROUTING &&
810 nf_checksum(skb, hooknum, dataoff, IPPROTO_TCP, pf)) {
811 if (LOG_INVALID(net, IPPROTO_TCP))
812 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
813 "nf_ct_tcp: bad TCP checksum ");
814 return -NF_ACCEPT;
817 /* Check TCP flags. */
818 tcpflags = (((u_int8_t *)th)[13] & ~(TH_ECE|TH_CWR|TH_PUSH));
819 if (!tcp_valid_flags[tcpflags]) {
820 if (LOG_INVALID(net, IPPROTO_TCP))
821 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
822 "nf_ct_tcp: invalid TCP flag combination ");
823 return -NF_ACCEPT;
826 return NF_ACCEPT;
829 /* Returns verdict for packet, or -1 for invalid. */
830 static int tcp_packet(struct nf_conn *ct,
831 const struct sk_buff *skb,
832 unsigned int dataoff,
833 enum ip_conntrack_info ctinfo,
834 u_int8_t pf,
835 unsigned int hooknum)
837 struct net *net = nf_ct_net(ct);
838 struct nf_conntrack_tuple *tuple;
839 enum tcp_conntrack new_state, old_state;
840 enum ip_conntrack_dir dir;
841 const struct tcphdr *th;
842 struct tcphdr _tcph;
843 unsigned long timeout;
844 unsigned int index;
846 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
847 BUG_ON(th == NULL);
849 spin_lock_bh(&ct->lock);
850 old_state = ct->proto.tcp.state;
851 dir = CTINFO2DIR(ctinfo);
852 index = get_conntrack_index(th);
853 new_state = tcp_conntracks[dir][index][old_state];
854 tuple = &ct->tuplehash[dir].tuple;
856 switch (new_state) {
857 case TCP_CONNTRACK_SYN_SENT:
858 if (old_state < TCP_CONNTRACK_TIME_WAIT)
859 break;
860 /* RFC 1122: "When a connection is closed actively,
861 * it MUST linger in TIME-WAIT state for a time 2xMSL
862 * (Maximum Segment Lifetime). However, it MAY accept
863 * a new SYN from the remote TCP to reopen the connection
864 * directly from TIME-WAIT state, if..."
865 * We ignore the conditions because we are in the
866 * TIME-WAIT state anyway.
868 * Handle aborted connections: we and the server
869 * think there is an existing connection but the client
870 * aborts it and starts a new one.
872 if (((ct->proto.tcp.seen[dir].flags
873 | ct->proto.tcp.seen[!dir].flags)
874 & IP_CT_TCP_FLAG_CLOSE_INIT)
875 || (ct->proto.tcp.last_dir == dir
876 && ct->proto.tcp.last_index == TCP_RST_SET)) {
877 /* Attempt to reopen a closed/aborted connection.
878 * Delete this connection and look up again. */
879 spin_unlock_bh(&ct->lock);
881 /* Only repeat if we can actually remove the timer.
882 * Destruction may already be in progress in process
883 * context and we must give it a chance to terminate.
885 if (nf_ct_kill(ct))
886 return -NF_REPEAT;
887 return NF_DROP;
889 /* Fall through */
890 case TCP_CONNTRACK_IGNORE:
891 /* Ignored packets:
893 * Our connection entry may be out of sync, so ignore
894 * packets which may signal the real connection between
895 * the client and the server.
897 * a) SYN in ORIGINAL
898 * b) SYN/ACK in REPLY
899 * c) ACK in reply direction after initial SYN in original.
901 * If the ignored packet is invalid, the receiver will send
902 * a RST we'll catch below.
904 if (index == TCP_SYNACK_SET
905 && ct->proto.tcp.last_index == TCP_SYN_SET
906 && ct->proto.tcp.last_dir != dir
907 && ntohl(th->ack_seq) == ct->proto.tcp.last_end) {
908 /* b) This SYN/ACK acknowledges a SYN that we earlier
909 * ignored as invalid. This means that the client and
910 * the server are both in sync, while the firewall is
911 * not. We get in sync from the previously annotated
912 * values.
914 old_state = TCP_CONNTRACK_SYN_SENT;
915 new_state = TCP_CONNTRACK_SYN_RECV;
916 ct->proto.tcp.seen[ct->proto.tcp.last_dir].td_end =
917 ct->proto.tcp.last_end;
918 ct->proto.tcp.seen[ct->proto.tcp.last_dir].td_maxend =
919 ct->proto.tcp.last_end;
920 ct->proto.tcp.seen[ct->proto.tcp.last_dir].td_maxwin =
921 ct->proto.tcp.last_win == 0 ?
922 1 : ct->proto.tcp.last_win;
923 ct->proto.tcp.seen[ct->proto.tcp.last_dir].td_scale =
924 ct->proto.tcp.last_wscale;
925 ct->proto.tcp.seen[ct->proto.tcp.last_dir].flags =
926 ct->proto.tcp.last_flags;
927 memset(&ct->proto.tcp.seen[dir], 0,
928 sizeof(struct ip_ct_tcp_state));
929 break;
931 ct->proto.tcp.last_index = index;
932 ct->proto.tcp.last_dir = dir;
933 ct->proto.tcp.last_seq = ntohl(th->seq);
934 ct->proto.tcp.last_end =
935 segment_seq_plus_len(ntohl(th->seq), skb->len, dataoff, th);
936 ct->proto.tcp.last_win = ntohs(th->window);
938 /* a) This is a SYN in ORIGINAL. The client and the server
939 * may be in sync but we are not. In that case, we annotate
940 * the TCP options and let the packet go through. If it is a
941 * valid SYN packet, the server will reply with a SYN/ACK, and
942 * then we'll get in sync. Otherwise, the server ignores it. */
943 if (index == TCP_SYN_SET && dir == IP_CT_DIR_ORIGINAL) {
944 struct ip_ct_tcp_state seen = {};
946 ct->proto.tcp.last_flags =
947 ct->proto.tcp.last_wscale = 0;
948 tcp_options(skb, dataoff, th, &seen);
949 if (seen.flags & IP_CT_TCP_FLAG_WINDOW_SCALE) {
950 ct->proto.tcp.last_flags |=
951 IP_CT_TCP_FLAG_WINDOW_SCALE;
952 ct->proto.tcp.last_wscale = seen.td_scale;
954 if (seen.flags & IP_CT_TCP_FLAG_SACK_PERM) {
955 ct->proto.tcp.last_flags |=
956 IP_CT_TCP_FLAG_SACK_PERM;
959 spin_unlock_bh(&ct->lock);
960 if (LOG_INVALID(net, IPPROTO_TCP))
961 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
962 "nf_ct_tcp: invalid packet ignored ");
963 return NF_ACCEPT;
964 case TCP_CONNTRACK_MAX:
965 /* Invalid packet */
966 pr_debug("nf_ct_tcp: Invalid dir=%i index=%u ostate=%u\n",
967 dir, get_conntrack_index(th), old_state);
968 spin_unlock_bh(&ct->lock);
969 if (LOG_INVALID(net, IPPROTO_TCP))
970 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
971 "nf_ct_tcp: invalid state ");
972 return -NF_ACCEPT;
973 case TCP_CONNTRACK_CLOSE:
974 if (index == TCP_RST_SET
975 && (ct->proto.tcp.seen[!dir].flags & IP_CT_TCP_FLAG_MAXACK_SET)
976 && before(ntohl(th->seq), ct->proto.tcp.seen[!dir].td_maxack)) {
977 /* Invalid RST */
978 spin_unlock_bh(&ct->lock);
979 if (LOG_INVALID(net, IPPROTO_TCP))
980 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
981 "nf_ct_tcp: invalid RST ");
982 return -NF_ACCEPT;
984 if (index == TCP_RST_SET
985 && ((test_bit(IPS_SEEN_REPLY_BIT, &ct->status)
986 && ct->proto.tcp.last_index == TCP_SYN_SET)
987 || (!test_bit(IPS_ASSURED_BIT, &ct->status)
988 && ct->proto.tcp.last_index == TCP_ACK_SET))
989 && ntohl(th->ack_seq) == ct->proto.tcp.last_end) {
990 /* RST sent to invalid SYN or ACK we had let through
991 * at a) and c) above:
993 * a) SYN was in window then
994 * c) we hold a half-open connection.
996 * Delete our connection entry.
997 * We skip window checking, because packet might ACK
998 * segments we ignored. */
999 goto in_window;
1001 /* Just fall through */
1002 default:
1003 /* Keep compilers happy. */
1004 break;
1007 if (!tcp_in_window(ct, &ct->proto.tcp, dir, index,
1008 skb, dataoff, th, pf)) {
1009 spin_unlock_bh(&ct->lock);
1010 return -NF_ACCEPT;
1012 in_window:
1013 /* From now on we have got in-window packets */
1014 ct->proto.tcp.last_index = index;
1015 ct->proto.tcp.last_dir = dir;
1017 pr_debug("tcp_conntracks: ");
1018 nf_ct_dump_tuple(tuple);
1019 pr_debug("syn=%i ack=%i fin=%i rst=%i old=%i new=%i\n",
1020 (th->syn ? 1 : 0), (th->ack ? 1 : 0),
1021 (th->fin ? 1 : 0), (th->rst ? 1 : 0),
1022 old_state, new_state);
1024 ct->proto.tcp.state = new_state;
1025 if (old_state != new_state
1026 && new_state == TCP_CONNTRACK_FIN_WAIT)
1027 ct->proto.tcp.seen[dir].flags |= IP_CT_TCP_FLAG_CLOSE_INIT;
1029 if (ct->proto.tcp.retrans >= nf_ct_tcp_max_retrans &&
1030 tcp_timeouts[new_state] > nf_ct_tcp_timeout_max_retrans)
1031 timeout = nf_ct_tcp_timeout_max_retrans;
1032 else if ((ct->proto.tcp.seen[0].flags | ct->proto.tcp.seen[1].flags) &
1033 IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED &&
1034 tcp_timeouts[new_state] > nf_ct_tcp_timeout_unacknowledged)
1035 timeout = nf_ct_tcp_timeout_unacknowledged;
1036 else
1037 timeout = tcp_timeouts[new_state];
1038 spin_unlock_bh(&ct->lock);
1040 if (new_state != old_state)
1041 nf_conntrack_event_cache(IPCT_PROTOINFO, ct);
1043 if (!test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
1044 /* If only reply is a RST, we can consider ourselves not to
1045 have an established connection: this is a fairly common
1046 problem case, so we can delete the conntrack
1047 immediately. --RR */
1048 if (th->rst) {
1049 nf_ct_kill_acct(ct, ctinfo, skb);
1050 return NF_ACCEPT;
1052 } else if (!test_bit(IPS_ASSURED_BIT, &ct->status)
1053 && (old_state == TCP_CONNTRACK_SYN_RECV
1054 || old_state == TCP_CONNTRACK_ESTABLISHED)
1055 && new_state == TCP_CONNTRACK_ESTABLISHED) {
1056 /* Set ASSURED if we see see valid ack in ESTABLISHED
1057 after SYN_RECV or a valid answer for a picked up
1058 connection. */
1059 set_bit(IPS_ASSURED_BIT, &ct->status);
1060 nf_conntrack_event_cache(IPCT_STATUS, ct);
1062 nf_ct_refresh_acct(ct, ctinfo, skb, timeout);
1064 return NF_ACCEPT;
1067 /* Called when a new connection for this protocol found. */
1068 static bool tcp_new(struct nf_conn *ct, const struct sk_buff *skb,
1069 unsigned int dataoff)
1071 enum tcp_conntrack new_state;
1072 const struct tcphdr *th;
1073 struct tcphdr _tcph;
1074 const struct ip_ct_tcp_state *sender = &ct->proto.tcp.seen[0];
1075 const struct ip_ct_tcp_state *receiver = &ct->proto.tcp.seen[1];
1077 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
1078 BUG_ON(th == NULL);
1080 /* Don't need lock here: this conntrack not in circulation yet */
1081 new_state
1082 = tcp_conntracks[0][get_conntrack_index(th)]
1083 [TCP_CONNTRACK_NONE];
1085 /* Invalid: delete conntrack */
1086 if (new_state >= TCP_CONNTRACK_MAX) {
1087 pr_debug("nf_ct_tcp: invalid new deleting.\n");
1088 return false;
1091 if (new_state == TCP_CONNTRACK_SYN_SENT) {
1092 /* SYN packet */
1093 ct->proto.tcp.seen[0].td_end =
1094 segment_seq_plus_len(ntohl(th->seq), skb->len,
1095 dataoff, th);
1096 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1097 if (ct->proto.tcp.seen[0].td_maxwin == 0)
1098 ct->proto.tcp.seen[0].td_maxwin = 1;
1099 ct->proto.tcp.seen[0].td_maxend =
1100 ct->proto.tcp.seen[0].td_end;
1102 tcp_options(skb, dataoff, th, &ct->proto.tcp.seen[0]);
1103 ct->proto.tcp.seen[1].flags = 0;
1104 } else if (nf_ct_tcp_loose == 0) {
1105 /* Don't try to pick up connections. */
1106 return false;
1107 } else {
1109 * We are in the middle of a connection,
1110 * its history is lost for us.
1111 * Let's try to use the data from the packet.
1113 ct->proto.tcp.seen[0].td_end =
1114 segment_seq_plus_len(ntohl(th->seq), skb->len,
1115 dataoff, th);
1116 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1117 if (ct->proto.tcp.seen[0].td_maxwin == 0)
1118 ct->proto.tcp.seen[0].td_maxwin = 1;
1119 ct->proto.tcp.seen[0].td_maxend =
1120 ct->proto.tcp.seen[0].td_end +
1121 ct->proto.tcp.seen[0].td_maxwin;
1122 ct->proto.tcp.seen[0].td_scale = 0;
1124 /* We assume SACK and liberal window checking to handle
1125 * window scaling */
1126 ct->proto.tcp.seen[0].flags =
1127 ct->proto.tcp.seen[1].flags = IP_CT_TCP_FLAG_SACK_PERM |
1128 IP_CT_TCP_FLAG_BE_LIBERAL;
1131 ct->proto.tcp.seen[1].td_end = 0;
1132 ct->proto.tcp.seen[1].td_maxend = 0;
1133 ct->proto.tcp.seen[1].td_maxwin = 0;
1134 ct->proto.tcp.seen[1].td_scale = 0;
1136 /* tcp_packet will set them */
1137 ct->proto.tcp.state = TCP_CONNTRACK_NONE;
1138 ct->proto.tcp.last_index = TCP_NONE_SET;
1140 pr_debug("tcp_new: sender end=%u maxend=%u maxwin=%u scale=%i "
1141 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
1142 sender->td_end, sender->td_maxend, sender->td_maxwin,
1143 sender->td_scale,
1144 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
1145 receiver->td_scale);
1146 return true;
1149 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
1151 #include <linux/netfilter/nfnetlink.h>
1152 #include <linux/netfilter/nfnetlink_conntrack.h>
1154 static int tcp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
1155 struct nf_conn *ct)
1157 struct nlattr *nest_parms;
1158 struct nf_ct_tcp_flags tmp = {};
1160 spin_lock_bh(&ct->lock);
1161 nest_parms = nla_nest_start(skb, CTA_PROTOINFO_TCP | NLA_F_NESTED);
1162 if (!nest_parms)
1163 goto nla_put_failure;
1165 NLA_PUT_U8(skb, CTA_PROTOINFO_TCP_STATE, ct->proto.tcp.state);
1167 NLA_PUT_U8(skb, CTA_PROTOINFO_TCP_WSCALE_ORIGINAL,
1168 ct->proto.tcp.seen[0].td_scale);
1170 NLA_PUT_U8(skb, CTA_PROTOINFO_TCP_WSCALE_REPLY,
1171 ct->proto.tcp.seen[1].td_scale);
1173 tmp.flags = ct->proto.tcp.seen[0].flags;
1174 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_ORIGINAL,
1175 sizeof(struct nf_ct_tcp_flags), &tmp);
1177 tmp.flags = ct->proto.tcp.seen[1].flags;
1178 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_REPLY,
1179 sizeof(struct nf_ct_tcp_flags), &tmp);
1180 spin_unlock_bh(&ct->lock);
1182 nla_nest_end(skb, nest_parms);
1184 return 0;
1186 nla_put_failure:
1187 spin_unlock_bh(&ct->lock);
1188 return -1;
1191 static const struct nla_policy tcp_nla_policy[CTA_PROTOINFO_TCP_MAX+1] = {
1192 [CTA_PROTOINFO_TCP_STATE] = { .type = NLA_U8 },
1193 [CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] = { .type = NLA_U8 },
1194 [CTA_PROTOINFO_TCP_WSCALE_REPLY] = { .type = NLA_U8 },
1195 [CTA_PROTOINFO_TCP_FLAGS_ORIGINAL] = { .len = sizeof(struct nf_ct_tcp_flags) },
1196 [CTA_PROTOINFO_TCP_FLAGS_REPLY] = { .len = sizeof(struct nf_ct_tcp_flags) },
1199 static int nlattr_to_tcp(struct nlattr *cda[], struct nf_conn *ct)
1201 struct nlattr *pattr = cda[CTA_PROTOINFO_TCP];
1202 struct nlattr *tb[CTA_PROTOINFO_TCP_MAX+1];
1203 int err;
1205 /* updates could not contain anything about the private
1206 * protocol info, in that case skip the parsing */
1207 if (!pattr)
1208 return 0;
1210 err = nla_parse_nested(tb, CTA_PROTOINFO_TCP_MAX, pattr, tcp_nla_policy);
1211 if (err < 0)
1212 return err;
1214 if (tb[CTA_PROTOINFO_TCP_STATE] &&
1215 nla_get_u8(tb[CTA_PROTOINFO_TCP_STATE]) >= TCP_CONNTRACK_MAX)
1216 return -EINVAL;
1218 spin_lock_bh(&ct->lock);
1219 if (tb[CTA_PROTOINFO_TCP_STATE])
1220 ct->proto.tcp.state = nla_get_u8(tb[CTA_PROTOINFO_TCP_STATE]);
1222 if (tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]) {
1223 struct nf_ct_tcp_flags *attr =
1224 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]);
1225 ct->proto.tcp.seen[0].flags &= ~attr->mask;
1226 ct->proto.tcp.seen[0].flags |= attr->flags & attr->mask;
1229 if (tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]) {
1230 struct nf_ct_tcp_flags *attr =
1231 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]);
1232 ct->proto.tcp.seen[1].flags &= ~attr->mask;
1233 ct->proto.tcp.seen[1].flags |= attr->flags & attr->mask;
1236 if (tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] &&
1237 tb[CTA_PROTOINFO_TCP_WSCALE_REPLY] &&
1238 ct->proto.tcp.seen[0].flags & IP_CT_TCP_FLAG_WINDOW_SCALE &&
1239 ct->proto.tcp.seen[1].flags & IP_CT_TCP_FLAG_WINDOW_SCALE) {
1240 ct->proto.tcp.seen[0].td_scale =
1241 nla_get_u8(tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL]);
1242 ct->proto.tcp.seen[1].td_scale =
1243 nla_get_u8(tb[CTA_PROTOINFO_TCP_WSCALE_REPLY]);
1245 spin_unlock_bh(&ct->lock);
1247 return 0;
1250 static int tcp_nlattr_size(void)
1252 return nla_total_size(0) /* CTA_PROTOINFO_TCP */
1253 + nla_policy_len(tcp_nla_policy, CTA_PROTOINFO_TCP_MAX + 1);
1256 static int tcp_nlattr_tuple_size(void)
1258 return nla_policy_len(nf_ct_port_nla_policy, CTA_PROTO_MAX + 1);
1260 #endif
1262 #ifdef CONFIG_SYSCTL
1263 static unsigned int tcp_sysctl_table_users;
1264 static struct ctl_table_header *tcp_sysctl_header;
1265 static struct ctl_table tcp_sysctl_table[] = {
1267 .procname = "nf_conntrack_tcp_timeout_syn_sent",
1268 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_SENT],
1269 .maxlen = sizeof(unsigned int),
1270 .mode = 0644,
1271 .proc_handler = proc_dointvec_jiffies,
1274 .procname = "nf_conntrack_tcp_timeout_syn_recv",
1275 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_RECV],
1276 .maxlen = sizeof(unsigned int),
1277 .mode = 0644,
1278 .proc_handler = proc_dointvec_jiffies,
1281 .procname = "nf_conntrack_tcp_timeout_established",
1282 .data = &tcp_timeouts[TCP_CONNTRACK_ESTABLISHED],
1283 .maxlen = sizeof(unsigned int),
1284 .mode = 0644,
1285 .proc_handler = proc_dointvec_jiffies,
1288 .procname = "nf_conntrack_tcp_timeout_fin_wait",
1289 .data = &tcp_timeouts[TCP_CONNTRACK_FIN_WAIT],
1290 .maxlen = sizeof(unsigned int),
1291 .mode = 0644,
1292 .proc_handler = proc_dointvec_jiffies,
1295 .procname = "nf_conntrack_tcp_timeout_close_wait",
1296 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE_WAIT],
1297 .maxlen = sizeof(unsigned int),
1298 .mode = 0644,
1299 .proc_handler = proc_dointvec_jiffies,
1302 .procname = "nf_conntrack_tcp_timeout_last_ack",
1303 .data = &tcp_timeouts[TCP_CONNTRACK_LAST_ACK],
1304 .maxlen = sizeof(unsigned int),
1305 .mode = 0644,
1306 .proc_handler = proc_dointvec_jiffies,
1309 .procname = "nf_conntrack_tcp_timeout_time_wait",
1310 .data = &tcp_timeouts[TCP_CONNTRACK_TIME_WAIT],
1311 .maxlen = sizeof(unsigned int),
1312 .mode = 0644,
1313 .proc_handler = proc_dointvec_jiffies,
1316 .procname = "nf_conntrack_tcp_timeout_close",
1317 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE],
1318 .maxlen = sizeof(unsigned int),
1319 .mode = 0644,
1320 .proc_handler = proc_dointvec_jiffies,
1323 .procname = "nf_conntrack_tcp_timeout_max_retrans",
1324 .data = &nf_ct_tcp_timeout_max_retrans,
1325 .maxlen = sizeof(unsigned int),
1326 .mode = 0644,
1327 .proc_handler = proc_dointvec_jiffies,
1330 .procname = "nf_conntrack_tcp_timeout_unacknowledged",
1331 .data = &nf_ct_tcp_timeout_unacknowledged,
1332 .maxlen = sizeof(unsigned int),
1333 .mode = 0644,
1334 .proc_handler = proc_dointvec_jiffies,
1337 .ctl_name = NET_NF_CONNTRACK_TCP_LOOSE,
1338 .procname = "nf_conntrack_tcp_loose",
1339 .data = &nf_ct_tcp_loose,
1340 .maxlen = sizeof(unsigned int),
1341 .mode = 0644,
1342 .proc_handler = proc_dointvec,
1345 .ctl_name = NET_NF_CONNTRACK_TCP_BE_LIBERAL,
1346 .procname = "nf_conntrack_tcp_be_liberal",
1347 .data = &nf_ct_tcp_be_liberal,
1348 .maxlen = sizeof(unsigned int),
1349 .mode = 0644,
1350 .proc_handler = proc_dointvec,
1353 .ctl_name = NET_NF_CONNTRACK_TCP_MAX_RETRANS,
1354 .procname = "nf_conntrack_tcp_max_retrans",
1355 .data = &nf_ct_tcp_max_retrans,
1356 .maxlen = sizeof(unsigned int),
1357 .mode = 0644,
1358 .proc_handler = proc_dointvec,
1361 .ctl_name = 0
1365 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1366 static struct ctl_table tcp_compat_sysctl_table[] = {
1368 .procname = "ip_conntrack_tcp_timeout_syn_sent",
1369 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_SENT],
1370 .maxlen = sizeof(unsigned int),
1371 .mode = 0644,
1372 .proc_handler = proc_dointvec_jiffies,
1375 .procname = "ip_conntrack_tcp_timeout_syn_sent2",
1376 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_SENT2],
1377 .maxlen = sizeof(unsigned int),
1378 .mode = 0644,
1379 .proc_handler = proc_dointvec_jiffies,
1382 .procname = "ip_conntrack_tcp_timeout_syn_recv",
1383 .data = &tcp_timeouts[TCP_CONNTRACK_SYN_RECV],
1384 .maxlen = sizeof(unsigned int),
1385 .mode = 0644,
1386 .proc_handler = proc_dointvec_jiffies,
1389 .procname = "ip_conntrack_tcp_timeout_established",
1390 .data = &tcp_timeouts[TCP_CONNTRACK_ESTABLISHED],
1391 .maxlen = sizeof(unsigned int),
1392 .mode = 0644,
1393 .proc_handler = proc_dointvec_jiffies,
1396 .procname = "ip_conntrack_tcp_timeout_fin_wait",
1397 .data = &tcp_timeouts[TCP_CONNTRACK_FIN_WAIT],
1398 .maxlen = sizeof(unsigned int),
1399 .mode = 0644,
1400 .proc_handler = proc_dointvec_jiffies,
1403 .procname = "ip_conntrack_tcp_timeout_close_wait",
1404 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE_WAIT],
1405 .maxlen = sizeof(unsigned int),
1406 .mode = 0644,
1407 .proc_handler = proc_dointvec_jiffies,
1410 .procname = "ip_conntrack_tcp_timeout_last_ack",
1411 .data = &tcp_timeouts[TCP_CONNTRACK_LAST_ACK],
1412 .maxlen = sizeof(unsigned int),
1413 .mode = 0644,
1414 .proc_handler = proc_dointvec_jiffies,
1417 .procname = "ip_conntrack_tcp_timeout_time_wait",
1418 .data = &tcp_timeouts[TCP_CONNTRACK_TIME_WAIT],
1419 .maxlen = sizeof(unsigned int),
1420 .mode = 0644,
1421 .proc_handler = proc_dointvec_jiffies,
1424 .procname = "ip_conntrack_tcp_timeout_close",
1425 .data = &tcp_timeouts[TCP_CONNTRACK_CLOSE],
1426 .maxlen = sizeof(unsigned int),
1427 .mode = 0644,
1428 .proc_handler = proc_dointvec_jiffies,
1431 .procname = "ip_conntrack_tcp_timeout_max_retrans",
1432 .data = &nf_ct_tcp_timeout_max_retrans,
1433 .maxlen = sizeof(unsigned int),
1434 .mode = 0644,
1435 .proc_handler = proc_dointvec_jiffies,
1438 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_LOOSE,
1439 .procname = "ip_conntrack_tcp_loose",
1440 .data = &nf_ct_tcp_loose,
1441 .maxlen = sizeof(unsigned int),
1442 .mode = 0644,
1443 .proc_handler = proc_dointvec,
1446 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL,
1447 .procname = "ip_conntrack_tcp_be_liberal",
1448 .data = &nf_ct_tcp_be_liberal,
1449 .maxlen = sizeof(unsigned int),
1450 .mode = 0644,
1451 .proc_handler = proc_dointvec,
1454 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS,
1455 .procname = "ip_conntrack_tcp_max_retrans",
1456 .data = &nf_ct_tcp_max_retrans,
1457 .maxlen = sizeof(unsigned int),
1458 .mode = 0644,
1459 .proc_handler = proc_dointvec,
1462 .ctl_name = 0
1465 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
1466 #endif /* CONFIG_SYSCTL */
1468 struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp4 __read_mostly =
1470 .l3proto = PF_INET,
1471 .l4proto = IPPROTO_TCP,
1472 .name = "tcp",
1473 .pkt_to_tuple = tcp_pkt_to_tuple,
1474 .invert_tuple = tcp_invert_tuple,
1475 .print_tuple = tcp_print_tuple,
1476 .print_conntrack = tcp_print_conntrack,
1477 .packet = tcp_packet,
1478 .new = tcp_new,
1479 .error = tcp_error,
1480 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
1481 .to_nlattr = tcp_to_nlattr,
1482 .nlattr_size = tcp_nlattr_size,
1483 .from_nlattr = nlattr_to_tcp,
1484 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1485 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
1486 .nlattr_tuple_size = tcp_nlattr_tuple_size,
1487 .nla_policy = nf_ct_port_nla_policy,
1488 #endif
1489 #ifdef CONFIG_SYSCTL
1490 .ctl_table_users = &tcp_sysctl_table_users,
1491 .ctl_table_header = &tcp_sysctl_header,
1492 .ctl_table = tcp_sysctl_table,
1493 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1494 .ctl_compat_table = tcp_compat_sysctl_table,
1495 #endif
1496 #endif
1498 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp4);
1500 struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6 __read_mostly =
1502 .l3proto = PF_INET6,
1503 .l4proto = IPPROTO_TCP,
1504 .name = "tcp",
1505 .pkt_to_tuple = tcp_pkt_to_tuple,
1506 .invert_tuple = tcp_invert_tuple,
1507 .print_tuple = tcp_print_tuple,
1508 .print_conntrack = tcp_print_conntrack,
1509 .packet = tcp_packet,
1510 .new = tcp_new,
1511 .error = tcp_error,
1512 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
1513 .to_nlattr = tcp_to_nlattr,
1514 .nlattr_size = tcp_nlattr_size,
1515 .from_nlattr = nlattr_to_tcp,
1516 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1517 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
1518 .nlattr_tuple_size = tcp_nlattr_tuple_size,
1519 .nla_policy = nf_ct_port_nla_policy,
1520 #endif
1521 #ifdef CONFIG_SYSCTL
1522 .ctl_table_users = &tcp_sysctl_table_users,
1523 .ctl_table_header = &tcp_sysctl_header,
1524 .ctl_table = tcp_sysctl_table,
1525 #endif
1527 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp6);