[NETFILTER]: xt_TCPMSS: don't allow netfilter --setmss to increase mss
[linux-2.6/openmoko-kernel/knife-kernel.git] / net / netfilter / nf_conntrack_proto_tcp.c
blobd96f18863fd2ef24dcdb68db3376efdaabdc3fa3
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>
19 #include <net/tcp.h>
21 #include <linux/netfilter.h>
22 #include <linux/netfilter_ipv4.h>
23 #include <linux/netfilter_ipv6.h>
24 #include <net/netfilter/nf_conntrack.h>
25 #include <net/netfilter/nf_conntrack_l4proto.h>
26 #include <net/netfilter/nf_conntrack_ecache.h>
28 /* Protects conntrack->proto.tcp */
29 static DEFINE_RWLOCK(tcp_lock);
31 /* "Be conservative in what you do,
32 be liberal in what you accept from others."
33 If it's non-zero, we mark only out of window RST segments as INVALID. */
34 static int nf_ct_tcp_be_liberal __read_mostly = 0;
36 /* If it is set to zero, we disable picking up already established
37 connections. */
38 static int nf_ct_tcp_loose __read_mostly = 1;
40 /* Max number of the retransmitted packets without receiving an (acceptable)
41 ACK from the destination. If this number is reached, a shorter timer
42 will be started. */
43 static int nf_ct_tcp_max_retrans __read_mostly = 3;
45 /* FIXME: Examine ipfilter's timeouts and conntrack transitions more
46 closely. They're more complex. --RR */
48 static const char *tcp_conntrack_names[] = {
49 "NONE",
50 "SYN_SENT",
51 "SYN_RECV",
52 "ESTABLISHED",
53 "FIN_WAIT",
54 "CLOSE_WAIT",
55 "LAST_ACK",
56 "TIME_WAIT",
57 "CLOSE",
58 "LISTEN"
61 #define SECS * HZ
62 #define MINS * 60 SECS
63 #define HOURS * 60 MINS
64 #define DAYS * 24 HOURS
66 static unsigned int nf_ct_tcp_timeout_syn_sent __read_mostly = 2 MINS;
67 static unsigned int nf_ct_tcp_timeout_syn_recv __read_mostly = 60 SECS;
68 static unsigned int nf_ct_tcp_timeout_established __read_mostly = 5 DAYS;
69 static unsigned int nf_ct_tcp_timeout_fin_wait __read_mostly = 2 MINS;
70 static unsigned int nf_ct_tcp_timeout_close_wait __read_mostly = 60 SECS;
71 static unsigned int nf_ct_tcp_timeout_last_ack __read_mostly = 30 SECS;
72 static unsigned int nf_ct_tcp_timeout_time_wait __read_mostly = 2 MINS;
73 static unsigned int nf_ct_tcp_timeout_close __read_mostly = 10 SECS;
75 /* RFC1122 says the R2 limit should be at least 100 seconds.
76 Linux uses 15 packets as limit, which corresponds
77 to ~13-30min depending on RTO. */
78 static unsigned int nf_ct_tcp_timeout_max_retrans __read_mostly = 5 MINS;
80 static unsigned int * tcp_timeouts[] = {
81 NULL, /* TCP_CONNTRACK_NONE */
82 &nf_ct_tcp_timeout_syn_sent, /* TCP_CONNTRACK_SYN_SENT, */
83 &nf_ct_tcp_timeout_syn_recv, /* TCP_CONNTRACK_SYN_RECV, */
84 &nf_ct_tcp_timeout_established, /* TCP_CONNTRACK_ESTABLISHED, */
85 &nf_ct_tcp_timeout_fin_wait, /* TCP_CONNTRACK_FIN_WAIT, */
86 &nf_ct_tcp_timeout_close_wait, /* TCP_CONNTRACK_CLOSE_WAIT, */
87 &nf_ct_tcp_timeout_last_ack, /* TCP_CONNTRACK_LAST_ACK, */
88 &nf_ct_tcp_timeout_time_wait, /* TCP_CONNTRACK_TIME_WAIT, */
89 &nf_ct_tcp_timeout_close, /* TCP_CONNTRACK_CLOSE, */
90 NULL, /* TCP_CONNTRACK_LISTEN */
93 #define sNO TCP_CONNTRACK_NONE
94 #define sSS TCP_CONNTRACK_SYN_SENT
95 #define sSR TCP_CONNTRACK_SYN_RECV
96 #define sES TCP_CONNTRACK_ESTABLISHED
97 #define sFW TCP_CONNTRACK_FIN_WAIT
98 #define sCW TCP_CONNTRACK_CLOSE_WAIT
99 #define sLA TCP_CONNTRACK_LAST_ACK
100 #define sTW TCP_CONNTRACK_TIME_WAIT
101 #define sCL TCP_CONNTRACK_CLOSE
102 #define sLI TCP_CONNTRACK_LISTEN
103 #define sIV TCP_CONNTRACK_MAX
104 #define sIG TCP_CONNTRACK_IGNORE
106 /* What TCP flags are set from RST/SYN/FIN/ACK. */
107 enum tcp_bit_set {
108 TCP_SYN_SET,
109 TCP_SYNACK_SET,
110 TCP_FIN_SET,
111 TCP_ACK_SET,
112 TCP_RST_SET,
113 TCP_NONE_SET,
117 * The TCP state transition table needs a few words...
119 * We are the man in the middle. All the packets go through us
120 * but might get lost in transit to the destination.
121 * It is assumed that the destinations can't receive segments
122 * we haven't seen.
124 * The checked segment is in window, but our windows are *not*
125 * equivalent with the ones of the sender/receiver. We always
126 * try to guess the state of the current sender.
128 * The meaning of the states are:
130 * NONE: initial state
131 * SYN_SENT: SYN-only packet seen
132 * SYN_RECV: SYN-ACK packet seen
133 * ESTABLISHED: ACK packet seen
134 * FIN_WAIT: FIN packet seen
135 * CLOSE_WAIT: ACK seen (after FIN)
136 * LAST_ACK: FIN seen (after FIN)
137 * TIME_WAIT: last ACK seen
138 * CLOSE: closed connection
140 * LISTEN state is not used.
142 * Packets marked as IGNORED (sIG):
143 * if they may be either invalid or valid
144 * and the receiver may send back a connection
145 * closing RST or a SYN/ACK.
147 * Packets marked as INVALID (sIV):
148 * if they are invalid
149 * or we do not support the request (simultaneous open)
151 static enum tcp_conntrack tcp_conntracks[2][6][TCP_CONNTRACK_MAX] = {
153 /* ORIGINAL */
154 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
155 /*syn*/ { sSS, sSS, sIG, sIG, sIG, sIG, sIG, sSS, sSS, sIV },
157 * sNO -> sSS Initialize a new connection
158 * sSS -> sSS Retransmitted SYN
159 * sSR -> sIG Late retransmitted SYN?
160 * sES -> sIG Error: SYNs in window outside the SYN_SENT state
161 * are errors. Receiver will reply with RST
162 * and close the connection.
163 * Or we are not in sync and hold a dead connection.
164 * sFW -> sIG
165 * sCW -> sIG
166 * sLA -> sIG
167 * sTW -> sSS Reopened connection (RFC 1122).
168 * sCL -> sSS
170 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
171 /*synack*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV },
173 * A SYN/ACK from the client is always invalid:
174 * - either it tries to set up a simultaneous open, which is
175 * not supported;
176 * - or the firewall has just been inserted between the two hosts
177 * during the session set-up. The SYN will be retransmitted
178 * by the true client (or it'll time out).
180 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
181 /*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
183 * sNO -> sIV Too late and no reason to do anything...
184 * sSS -> sIV Client migth not send FIN in this state:
185 * we enforce waiting for a SYN/ACK reply first.
186 * sSR -> sFW Close started.
187 * sES -> sFW
188 * sFW -> sLA FIN seen in both directions, waiting for
189 * the last ACK.
190 * Migth be a retransmitted FIN as well...
191 * sCW -> sLA
192 * sLA -> sLA Retransmitted FIN. Remain in the same state.
193 * sTW -> sTW
194 * sCL -> sCL
196 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
197 /*ack*/ { sES, sIV, sES, sES, sCW, sCW, sTW, sTW, sCL, sIV },
199 * sNO -> sES Assumed.
200 * sSS -> sIV ACK is invalid: we haven't seen a SYN/ACK yet.
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, sLI */
210 /*rst*/ { sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sIV },
211 /*none*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV }
214 /* REPLY */
215 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
216 /*syn*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV },
218 * sNO -> sIV Never reached.
219 * sSS -> sIV Simultaneous open, not supported
220 * sSR -> sIV Simultaneous open, not supported.
221 * sES -> sIV Server may not initiate a connection.
222 * sFW -> sIV
223 * sCW -> sIV
224 * sLA -> sIV
225 * sTW -> sIV Reopened connection, but server may not do it.
226 * sCL -> sIV
228 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
229 /*synack*/ { sIV, sSR, sSR, sIG, sIG, sIG, sIG, sIG, sIG, sIV },
231 * sSS -> sSR Standard open.
232 * sSR -> sSR Retransmitted SYN/ACK.
233 * sES -> sIG Late retransmitted SYN/ACK?
234 * sFW -> sIG Might be SYN/ACK answering ignored SYN
235 * sCW -> sIG
236 * sLA -> sIG
237 * sTW -> sIG
238 * sCL -> sIG
240 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
241 /*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
243 * sSS -> sIV Server might not send FIN in this state.
244 * sSR -> sFW Close started.
245 * sES -> sFW
246 * sFW -> sLA FIN seen in both directions.
247 * sCW -> sLA
248 * sLA -> sLA Retransmitted FIN.
249 * sTW -> sTW
250 * sCL -> sCL
252 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
253 /*ack*/ { sIV, sIG, sSR, sES, sCW, sCW, sTW, sTW, sCL, sIV },
255 * sSS -> sIG Might be a half-open connection.
256 * sSR -> sSR Might answer late resent SYN.
257 * sES -> sES :-)
258 * sFW -> sCW Normal close request answered by ACK.
259 * sCW -> sCW
260 * sLA -> sTW Last ACK detected.
261 * sTW -> sTW Retransmitted last ACK.
262 * sCL -> sCL
264 /* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
265 /*rst*/ { sIV, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sCL, sIV },
266 /*none*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV }
270 static int tcp_pkt_to_tuple(const struct sk_buff *skb,
271 unsigned int dataoff,
272 struct nf_conntrack_tuple *tuple)
274 struct tcphdr _hdr, *hp;
276 /* Actually only need first 8 bytes. */
277 hp = skb_header_pointer(skb, dataoff, 8, &_hdr);
278 if (hp == NULL)
279 return 0;
281 tuple->src.u.tcp.port = hp->source;
282 tuple->dst.u.tcp.port = hp->dest;
284 return 1;
287 static int tcp_invert_tuple(struct nf_conntrack_tuple *tuple,
288 const struct nf_conntrack_tuple *orig)
290 tuple->src.u.tcp.port = orig->dst.u.tcp.port;
291 tuple->dst.u.tcp.port = orig->src.u.tcp.port;
292 return 1;
295 /* Print out the per-protocol part of the tuple. */
296 static int tcp_print_tuple(struct seq_file *s,
297 const struct nf_conntrack_tuple *tuple)
299 return seq_printf(s, "sport=%hu dport=%hu ",
300 ntohs(tuple->src.u.tcp.port),
301 ntohs(tuple->dst.u.tcp.port));
304 /* Print out the private part of the conntrack. */
305 static int tcp_print_conntrack(struct seq_file *s,
306 const struct nf_conn *conntrack)
308 enum tcp_conntrack state;
310 read_lock_bh(&tcp_lock);
311 state = conntrack->proto.tcp.state;
312 read_unlock_bh(&tcp_lock);
314 return seq_printf(s, "%s ", tcp_conntrack_names[state]);
317 static unsigned int get_conntrack_index(const struct tcphdr *tcph)
319 if (tcph->rst) return TCP_RST_SET;
320 else if (tcph->syn) return (tcph->ack ? TCP_SYNACK_SET : TCP_SYN_SET);
321 else if (tcph->fin) return TCP_FIN_SET;
322 else if (tcph->ack) return TCP_ACK_SET;
323 else return TCP_NONE_SET;
326 /* TCP connection tracking based on 'Real Stateful TCP Packet Filtering
327 in IP Filter' by Guido van Rooij.
329 http://www.nluug.nl/events/sane2000/papers.html
330 http://www.iae.nl/users/guido/papers/tcp_filtering.ps.gz
332 The boundaries and the conditions are changed according to RFC793:
333 the packet must intersect the window (i.e. segments may be
334 after the right or before the left edge) and thus receivers may ACK
335 segments after the right edge of the window.
337 td_maxend = max(sack + max(win,1)) seen in reply packets
338 td_maxwin = max(max(win, 1)) + (sack - ack) seen in sent packets
339 td_maxwin += seq + len - sender.td_maxend
340 if seq + len > sender.td_maxend
341 td_end = max(seq + len) seen in sent packets
343 I. Upper bound for valid data: seq <= sender.td_maxend
344 II. Lower bound for valid data: seq + len >= sender.td_end - receiver.td_maxwin
345 III. Upper bound for valid ack: sack <= receiver.td_end
346 IV. Lower bound for valid ack: ack >= receiver.td_end - MAXACKWINDOW
348 where sack is the highest right edge of sack block found in the packet.
350 The upper bound limit for a valid ack is not ignored -
351 we doesn't have to deal with fragments.
354 static inline __u32 segment_seq_plus_len(__u32 seq,
355 size_t len,
356 unsigned int dataoff,
357 struct tcphdr *tcph)
359 /* XXX Should I use payload length field in IP/IPv6 header ?
360 * - YK */
361 return (seq + len - dataoff - tcph->doff*4
362 + (tcph->syn ? 1 : 0) + (tcph->fin ? 1 : 0));
365 /* Fixme: what about big packets? */
366 #define MAXACKWINCONST 66000
367 #define MAXACKWINDOW(sender) \
368 ((sender)->td_maxwin > MAXACKWINCONST ? (sender)->td_maxwin \
369 : MAXACKWINCONST)
372 * Simplified tcp_parse_options routine from tcp_input.c
374 static void tcp_options(const struct sk_buff *skb,
375 unsigned int dataoff,
376 struct tcphdr *tcph,
377 struct ip_ct_tcp_state *state)
379 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
380 unsigned char *ptr;
381 int length = (tcph->doff*4) - sizeof(struct tcphdr);
383 if (!length)
384 return;
386 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
387 length, buff);
388 BUG_ON(ptr == NULL);
390 state->td_scale =
391 state->flags = 0;
393 while (length > 0) {
394 int opcode=*ptr++;
395 int opsize;
397 switch (opcode) {
398 case TCPOPT_EOL:
399 return;
400 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
401 length--;
402 continue;
403 default:
404 opsize=*ptr++;
405 if (opsize < 2) /* "silly options" */
406 return;
407 if (opsize > length)
408 break; /* don't parse partial options */
410 if (opcode == TCPOPT_SACK_PERM
411 && opsize == TCPOLEN_SACK_PERM)
412 state->flags |= IP_CT_TCP_FLAG_SACK_PERM;
413 else if (opcode == TCPOPT_WINDOW
414 && opsize == TCPOLEN_WINDOW) {
415 state->td_scale = *(u_int8_t *)ptr;
417 if (state->td_scale > 14) {
418 /* See RFC1323 */
419 state->td_scale = 14;
421 state->flags |=
422 IP_CT_TCP_FLAG_WINDOW_SCALE;
424 ptr += opsize - 2;
425 length -= opsize;
430 static void tcp_sack(const struct sk_buff *skb, unsigned int dataoff,
431 struct tcphdr *tcph, __u32 *sack)
433 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
434 unsigned char *ptr;
435 int length = (tcph->doff*4) - sizeof(struct tcphdr);
436 __u32 tmp;
438 if (!length)
439 return;
441 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
442 length, buff);
443 BUG_ON(ptr == NULL);
445 /* Fast path for timestamp-only option */
446 if (length == TCPOLEN_TSTAMP_ALIGNED*4
447 && *(__be32 *)ptr == htonl((TCPOPT_NOP << 24)
448 | (TCPOPT_NOP << 16)
449 | (TCPOPT_TIMESTAMP << 8)
450 | TCPOLEN_TIMESTAMP))
451 return;
453 while (length > 0) {
454 int opcode = *ptr++;
455 int opsize, i;
457 switch (opcode) {
458 case TCPOPT_EOL:
459 return;
460 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
461 length--;
462 continue;
463 default:
464 opsize = *ptr++;
465 if (opsize < 2) /* "silly options" */
466 return;
467 if (opsize > length)
468 break; /* don't parse partial options */
470 if (opcode == TCPOPT_SACK
471 && opsize >= (TCPOLEN_SACK_BASE
472 + TCPOLEN_SACK_PERBLOCK)
473 && !((opsize - TCPOLEN_SACK_BASE)
474 % TCPOLEN_SACK_PERBLOCK)) {
475 for (i = 0;
476 i < (opsize - TCPOLEN_SACK_BASE);
477 i += TCPOLEN_SACK_PERBLOCK) {
478 tmp = ntohl(*((__be32 *)(ptr+i)+1));
480 if (after(tmp, *sack))
481 *sack = tmp;
483 return;
485 ptr += opsize - 2;
486 length -= opsize;
491 static int tcp_in_window(struct nf_conn *ct,
492 struct ip_ct_tcp *state,
493 enum ip_conntrack_dir dir,
494 unsigned int index,
495 const struct sk_buff *skb,
496 unsigned int dataoff,
497 struct tcphdr *tcph,
498 int pf)
500 struct ip_ct_tcp_state *sender = &state->seen[dir];
501 struct ip_ct_tcp_state *receiver = &state->seen[!dir];
502 struct nf_conntrack_tuple *tuple = &ct->tuplehash[dir].tuple;
503 __u32 seq, ack, sack, end, win, swin;
504 int res;
507 * Get the required data from the packet.
509 seq = ntohl(tcph->seq);
510 ack = sack = ntohl(tcph->ack_seq);
511 win = ntohs(tcph->window);
512 end = segment_seq_plus_len(seq, skb->len, dataoff, tcph);
514 if (receiver->flags & IP_CT_TCP_FLAG_SACK_PERM)
515 tcp_sack(skb, dataoff, tcph, &sack);
517 pr_debug("tcp_in_window: START\n");
518 pr_debug("tcp_in_window: ");
519 NF_CT_DUMP_TUPLE(tuple);
520 pr_debug("seq=%u ack=%u sack=%u win=%u end=%u\n",
521 seq, ack, sack, win, end);
522 pr_debug("tcp_in_window: sender end=%u maxend=%u maxwin=%u scale=%i "
523 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
524 sender->td_end, sender->td_maxend, sender->td_maxwin,
525 sender->td_scale,
526 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
527 receiver->td_scale);
529 if (sender->td_end == 0) {
531 * Initialize sender data.
533 if (tcph->syn && tcph->ack) {
535 * Outgoing SYN-ACK in reply to a SYN.
537 sender->td_end =
538 sender->td_maxend = end;
539 sender->td_maxwin = (win == 0 ? 1 : win);
541 tcp_options(skb, dataoff, tcph, sender);
543 * RFC 1323:
544 * Both sides must send the Window Scale option
545 * to enable window scaling in either direction.
547 if (!(sender->flags & IP_CT_TCP_FLAG_WINDOW_SCALE
548 && receiver->flags & IP_CT_TCP_FLAG_WINDOW_SCALE))
549 sender->td_scale =
550 receiver->td_scale = 0;
551 } else {
553 * We are in the middle of a connection,
554 * its history is lost for us.
555 * Let's try to use the data from the packet.
557 sender->td_end = end;
558 sender->td_maxwin = (win == 0 ? 1 : win);
559 sender->td_maxend = end + sender->td_maxwin;
561 } else if (((state->state == TCP_CONNTRACK_SYN_SENT
562 && dir == IP_CT_DIR_ORIGINAL)
563 || (state->state == TCP_CONNTRACK_SYN_RECV
564 && dir == IP_CT_DIR_REPLY))
565 && after(end, sender->td_end)) {
567 * RFC 793: "if a TCP is reinitialized ... then it need
568 * not wait at all; it must only be sure to use sequence
569 * numbers larger than those recently used."
571 sender->td_end =
572 sender->td_maxend = end;
573 sender->td_maxwin = (win == 0 ? 1 : win);
575 tcp_options(skb, dataoff, tcph, sender);
578 if (!(tcph->ack)) {
580 * If there is no ACK, just pretend it was set and OK.
582 ack = sack = receiver->td_end;
583 } else if (((tcp_flag_word(tcph) & (TCP_FLAG_ACK|TCP_FLAG_RST)) ==
584 (TCP_FLAG_ACK|TCP_FLAG_RST))
585 && (ack == 0)) {
587 * Broken TCP stacks, that set ACK in RST packets as well
588 * with zero ack value.
590 ack = sack = receiver->td_end;
593 if (seq == end
594 && (!tcph->rst
595 || (seq == 0 && state->state == TCP_CONNTRACK_SYN_SENT)))
597 * Packets contains no data: we assume it is valid
598 * and check the ack value only.
599 * However RST segments are always validated by their
600 * SEQ number, except when seq == 0 (reset sent answering
601 * SYN.
603 seq = end = sender->td_end;
605 pr_debug("tcp_in_window: ");
606 NF_CT_DUMP_TUPLE(tuple);
607 pr_debug("seq=%u ack=%u sack =%u win=%u end=%u\n",
608 seq, ack, sack, win, end);
609 pr_debug("tcp_in_window: sender end=%u maxend=%u maxwin=%u scale=%i "
610 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
611 sender->td_end, sender->td_maxend, sender->td_maxwin,
612 sender->td_scale,
613 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
614 receiver->td_scale);
616 pr_debug("tcp_in_window: I=%i II=%i III=%i IV=%i\n",
617 before(seq, sender->td_maxend + 1),
618 after(end, sender->td_end - receiver->td_maxwin - 1),
619 before(sack, receiver->td_end + 1),
620 after(ack, receiver->td_end - MAXACKWINDOW(sender)));
622 if (before(seq, sender->td_maxend + 1) &&
623 after(end, sender->td_end - receiver->td_maxwin - 1) &&
624 before(sack, receiver->td_end + 1) &&
625 after(ack, receiver->td_end - MAXACKWINDOW(sender))) {
627 * Take into account window scaling (RFC 1323).
629 if (!tcph->syn)
630 win <<= sender->td_scale;
633 * Update sender data.
635 swin = win + (sack - ack);
636 if (sender->td_maxwin < swin)
637 sender->td_maxwin = swin;
638 if (after(end, sender->td_end))
639 sender->td_end = end;
641 * Update receiver data.
643 if (after(end, sender->td_maxend))
644 receiver->td_maxwin += end - sender->td_maxend;
645 if (after(sack + win, receiver->td_maxend - 1)) {
646 receiver->td_maxend = sack + win;
647 if (win == 0)
648 receiver->td_maxend++;
652 * Check retransmissions.
654 if (index == TCP_ACK_SET) {
655 if (state->last_dir == dir
656 && state->last_seq == seq
657 && state->last_ack == ack
658 && state->last_end == end
659 && state->last_win == win)
660 state->retrans++;
661 else {
662 state->last_dir = dir;
663 state->last_seq = seq;
664 state->last_ack = ack;
665 state->last_end = end;
666 state->last_win = win;
667 state->retrans = 0;
670 res = 1;
671 } else {
672 res = 0;
673 if (sender->flags & IP_CT_TCP_FLAG_BE_LIBERAL ||
674 nf_ct_tcp_be_liberal)
675 res = 1;
676 if (!res && LOG_INVALID(IPPROTO_TCP))
677 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
678 "nf_ct_tcp: %s ",
679 before(seq, sender->td_maxend + 1) ?
680 after(end, sender->td_end - receiver->td_maxwin - 1) ?
681 before(sack, receiver->td_end + 1) ?
682 after(ack, receiver->td_end - MAXACKWINDOW(sender)) ? "BUG"
683 : "ACK is under the lower bound (possible overly delayed ACK)"
684 : "ACK is over the upper bound (ACKed data not seen yet)"
685 : "SEQ is under the lower bound (already ACKed data retransmitted)"
686 : "SEQ is over the upper bound (over the window of the receiver)");
689 pr_debug("tcp_in_window: res=%i sender end=%u maxend=%u maxwin=%u "
690 "receiver end=%u maxend=%u maxwin=%u\n",
691 res, sender->td_end, sender->td_maxend, sender->td_maxwin,
692 receiver->td_end, receiver->td_maxend, receiver->td_maxwin);
694 return res;
697 #ifdef CONFIG_NF_NAT_NEEDED
698 /* Update sender->td_end after NAT successfully mangled the packet */
699 /* Caller must linearize skb at tcp header. */
700 void nf_conntrack_tcp_update(struct sk_buff *skb,
701 unsigned int dataoff,
702 struct nf_conn *conntrack,
703 int dir)
705 struct tcphdr *tcph = (void *)skb->data + dataoff;
706 struct ip_ct_tcp_state *sender = &conntrack->proto.tcp.seen[dir];
707 struct ip_ct_tcp_state *receiver = &conntrack->proto.tcp.seen[!dir];
708 __u32 end;
710 end = segment_seq_plus_len(ntohl(tcph->seq), skb->len, dataoff, tcph);
712 write_lock_bh(&tcp_lock);
714 * We have to worry for the ack in the reply packet only...
716 if (after(end, conntrack->proto.tcp.seen[dir].td_end))
717 conntrack->proto.tcp.seen[dir].td_end = end;
718 conntrack->proto.tcp.last_end = end;
719 write_unlock_bh(&tcp_lock);
720 pr_debug("tcp_update: sender end=%u maxend=%u maxwin=%u scale=%i "
721 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
722 sender->td_end, sender->td_maxend, sender->td_maxwin,
723 sender->td_scale,
724 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
725 receiver->td_scale);
727 EXPORT_SYMBOL_GPL(nf_conntrack_tcp_update);
728 #endif
730 #define TH_FIN 0x01
731 #define TH_SYN 0x02
732 #define TH_RST 0x04
733 #define TH_PUSH 0x08
734 #define TH_ACK 0x10
735 #define TH_URG 0x20
736 #define TH_ECE 0x40
737 #define TH_CWR 0x80
739 /* table of valid flag combinations - PUSH, ECE and CWR are always valid */
740 static u8 tcp_valid_flags[(TH_FIN|TH_SYN|TH_RST|TH_ACK|TH_URG) + 1] =
742 [TH_SYN] = 1,
743 [TH_SYN|TH_URG] = 1,
744 [TH_SYN|TH_ACK] = 1,
745 [TH_RST] = 1,
746 [TH_RST|TH_ACK] = 1,
747 [TH_FIN|TH_ACK] = 1,
748 [TH_FIN|TH_ACK|TH_URG] = 1,
749 [TH_ACK] = 1,
750 [TH_ACK|TH_URG] = 1,
753 /* Protect conntrack agaist broken packets. Code taken from ipt_unclean.c. */
754 static int tcp_error(struct sk_buff *skb,
755 unsigned int dataoff,
756 enum ip_conntrack_info *ctinfo,
757 int pf,
758 unsigned int hooknum)
760 struct tcphdr _tcph, *th;
761 unsigned int tcplen = skb->len - dataoff;
762 u_int8_t tcpflags;
764 /* Smaller that minimal TCP header? */
765 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
766 if (th == NULL) {
767 if (LOG_INVALID(IPPROTO_TCP))
768 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
769 "nf_ct_tcp: short packet ");
770 return -NF_ACCEPT;
773 /* Not whole TCP header or malformed packet */
774 if (th->doff*4 < sizeof(struct tcphdr) || tcplen < th->doff*4) {
775 if (LOG_INVALID(IPPROTO_TCP))
776 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
777 "nf_ct_tcp: truncated/malformed packet ");
778 return -NF_ACCEPT;
781 /* Checksum invalid? Ignore.
782 * We skip checking packets on the outgoing path
783 * because the checksum is assumed to be correct.
785 /* FIXME: Source route IP option packets --RR */
786 if (nf_conntrack_checksum && hooknum == NF_INET_PRE_ROUTING &&
787 nf_checksum(skb, hooknum, dataoff, IPPROTO_TCP, pf)) {
788 if (LOG_INVALID(IPPROTO_TCP))
789 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
790 "nf_ct_tcp: bad TCP checksum ");
791 return -NF_ACCEPT;
794 /* Check TCP flags. */
795 tcpflags = (((u_int8_t *)th)[13] & ~(TH_ECE|TH_CWR|TH_PUSH));
796 if (!tcp_valid_flags[tcpflags]) {
797 if (LOG_INVALID(IPPROTO_TCP))
798 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
799 "nf_ct_tcp: invalid TCP flag combination ");
800 return -NF_ACCEPT;
803 return NF_ACCEPT;
806 /* Returns verdict for packet, or -1 for invalid. */
807 static int tcp_packet(struct nf_conn *conntrack,
808 const struct sk_buff *skb,
809 unsigned int dataoff,
810 enum ip_conntrack_info ctinfo,
811 int pf,
812 unsigned int hooknum)
814 struct nf_conntrack_tuple *tuple;
815 enum tcp_conntrack new_state, old_state;
816 enum ip_conntrack_dir dir;
817 struct tcphdr *th, _tcph;
818 unsigned long timeout;
819 unsigned int index;
821 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
822 BUG_ON(th == NULL);
824 write_lock_bh(&tcp_lock);
825 old_state = conntrack->proto.tcp.state;
826 dir = CTINFO2DIR(ctinfo);
827 index = get_conntrack_index(th);
828 new_state = tcp_conntracks[dir][index][old_state];
829 tuple = &conntrack->tuplehash[dir].tuple;
831 switch (new_state) {
832 case TCP_CONNTRACK_SYN_SENT:
833 if (old_state < TCP_CONNTRACK_TIME_WAIT)
834 break;
835 if ((conntrack->proto.tcp.seen[!dir].flags &
836 IP_CT_TCP_FLAG_CLOSE_INIT)
837 || (conntrack->proto.tcp.last_dir == dir
838 && conntrack->proto.tcp.last_index == TCP_RST_SET)) {
839 /* Attempt to reopen a closed/aborted connection.
840 * Delete this connection and look up again. */
841 write_unlock_bh(&tcp_lock);
842 if (del_timer(&conntrack->timeout))
843 conntrack->timeout.function((unsigned long)
844 conntrack);
845 return -NF_REPEAT;
847 /* Fall through */
848 case TCP_CONNTRACK_IGNORE:
849 /* Ignored packets:
851 * a) SYN in ORIGINAL
852 * b) SYN/ACK in REPLY
853 * c) ACK in reply direction after initial SYN in original.
855 if (index == TCP_SYNACK_SET
856 && conntrack->proto.tcp.last_index == TCP_SYN_SET
857 && conntrack->proto.tcp.last_dir != dir
858 && ntohl(th->ack_seq) ==
859 conntrack->proto.tcp.last_end) {
860 /* This SYN/ACK acknowledges a SYN that we earlier
861 * ignored as invalid. This means that the client and
862 * the server are both in sync, while the firewall is
863 * not. We kill this session and block the SYN/ACK so
864 * that the client cannot but retransmit its SYN and
865 * thus initiate a clean new session.
867 write_unlock_bh(&tcp_lock);
868 if (LOG_INVALID(IPPROTO_TCP))
869 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
870 "nf_ct_tcp: killing out of sync session ");
871 if (del_timer(&conntrack->timeout))
872 conntrack->timeout.function((unsigned long)
873 conntrack);
874 return -NF_DROP;
876 conntrack->proto.tcp.last_index = index;
877 conntrack->proto.tcp.last_dir = dir;
878 conntrack->proto.tcp.last_seq = ntohl(th->seq);
879 conntrack->proto.tcp.last_end =
880 segment_seq_plus_len(ntohl(th->seq), skb->len, dataoff, th);
882 write_unlock_bh(&tcp_lock);
883 if (LOG_INVALID(IPPROTO_TCP))
884 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
885 "nf_ct_tcp: invalid packed ignored ");
886 return NF_ACCEPT;
887 case TCP_CONNTRACK_MAX:
888 /* Invalid packet */
889 pr_debug("nf_ct_tcp: Invalid dir=%i index=%u ostate=%u\n",
890 dir, get_conntrack_index(th), old_state);
891 write_unlock_bh(&tcp_lock);
892 if (LOG_INVALID(IPPROTO_TCP))
893 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
894 "nf_ct_tcp: invalid state ");
895 return -NF_ACCEPT;
896 case TCP_CONNTRACK_CLOSE:
897 if (index == TCP_RST_SET
898 && ((test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)
899 && conntrack->proto.tcp.last_index == TCP_SYN_SET)
900 || (!test_bit(IPS_ASSURED_BIT, &conntrack->status)
901 && conntrack->proto.tcp.last_index == TCP_ACK_SET))
902 && ntohl(th->ack_seq) == conntrack->proto.tcp.last_end) {
903 /* RST sent to invalid SYN or ACK we had let through
904 * at a) and c) above:
906 * a) SYN was in window then
907 * c) we hold a half-open connection.
909 * Delete our connection entry.
910 * We skip window checking, because packet might ACK
911 * segments we ignored. */
912 goto in_window;
914 /* Just fall through */
915 default:
916 /* Keep compilers happy. */
917 break;
920 if (!tcp_in_window(conntrack, &conntrack->proto.tcp, dir, index,
921 skb, dataoff, th, pf)) {
922 write_unlock_bh(&tcp_lock);
923 return -NF_ACCEPT;
925 in_window:
926 /* From now on we have got in-window packets */
927 conntrack->proto.tcp.last_index = index;
928 conntrack->proto.tcp.last_dir = dir;
930 pr_debug("tcp_conntracks: ");
931 NF_CT_DUMP_TUPLE(tuple);
932 pr_debug("syn=%i ack=%i fin=%i rst=%i old=%i new=%i\n",
933 (th->syn ? 1 : 0), (th->ack ? 1 : 0),
934 (th->fin ? 1 : 0), (th->rst ? 1 : 0),
935 old_state, new_state);
937 conntrack->proto.tcp.state = new_state;
938 if (old_state != new_state
939 && (new_state == TCP_CONNTRACK_FIN_WAIT
940 || new_state == TCP_CONNTRACK_CLOSE))
941 conntrack->proto.tcp.seen[dir].flags |= IP_CT_TCP_FLAG_CLOSE_INIT;
942 timeout = conntrack->proto.tcp.retrans >= nf_ct_tcp_max_retrans
943 && *tcp_timeouts[new_state] > nf_ct_tcp_timeout_max_retrans
944 ? nf_ct_tcp_timeout_max_retrans : *tcp_timeouts[new_state];
945 write_unlock_bh(&tcp_lock);
947 nf_conntrack_event_cache(IPCT_PROTOINFO_VOLATILE, skb);
948 if (new_state != old_state)
949 nf_conntrack_event_cache(IPCT_PROTOINFO, skb);
951 if (!test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)) {
952 /* If only reply is a RST, we can consider ourselves not to
953 have an established connection: this is a fairly common
954 problem case, so we can delete the conntrack
955 immediately. --RR */
956 if (th->rst) {
957 if (del_timer(&conntrack->timeout))
958 conntrack->timeout.function((unsigned long)
959 conntrack);
960 return NF_ACCEPT;
962 } else if (!test_bit(IPS_ASSURED_BIT, &conntrack->status)
963 && (old_state == TCP_CONNTRACK_SYN_RECV
964 || old_state == TCP_CONNTRACK_ESTABLISHED)
965 && new_state == TCP_CONNTRACK_ESTABLISHED) {
966 /* Set ASSURED if we see see valid ack in ESTABLISHED
967 after SYN_RECV or a valid answer for a picked up
968 connection. */
969 set_bit(IPS_ASSURED_BIT, &conntrack->status);
970 nf_conntrack_event_cache(IPCT_STATUS, skb);
972 nf_ct_refresh_acct(conntrack, ctinfo, skb, timeout);
974 return NF_ACCEPT;
977 /* Called when a new connection for this protocol found. */
978 static int tcp_new(struct nf_conn *conntrack,
979 const struct sk_buff *skb,
980 unsigned int dataoff)
982 enum tcp_conntrack new_state;
983 struct tcphdr *th, _tcph;
984 struct ip_ct_tcp_state *sender = &conntrack->proto.tcp.seen[0];
985 struct ip_ct_tcp_state *receiver = &conntrack->proto.tcp.seen[1];
987 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
988 BUG_ON(th == NULL);
990 /* Don't need lock here: this conntrack not in circulation yet */
991 new_state
992 = tcp_conntracks[0][get_conntrack_index(th)]
993 [TCP_CONNTRACK_NONE];
995 /* Invalid: delete conntrack */
996 if (new_state >= TCP_CONNTRACK_MAX) {
997 pr_debug("nf_ct_tcp: invalid new deleting.\n");
998 return 0;
1001 if (new_state == TCP_CONNTRACK_SYN_SENT) {
1002 /* SYN packet */
1003 conntrack->proto.tcp.seen[0].td_end =
1004 segment_seq_plus_len(ntohl(th->seq), skb->len,
1005 dataoff, th);
1006 conntrack->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1007 if (conntrack->proto.tcp.seen[0].td_maxwin == 0)
1008 conntrack->proto.tcp.seen[0].td_maxwin = 1;
1009 conntrack->proto.tcp.seen[0].td_maxend =
1010 conntrack->proto.tcp.seen[0].td_end;
1012 tcp_options(skb, dataoff, th, &conntrack->proto.tcp.seen[0]);
1013 conntrack->proto.tcp.seen[1].flags = 0;
1014 } else if (nf_ct_tcp_loose == 0) {
1015 /* Don't try to pick up connections. */
1016 return 0;
1017 } else {
1019 * We are in the middle of a connection,
1020 * its history is lost for us.
1021 * Let's try to use the data from the packet.
1023 conntrack->proto.tcp.seen[0].td_end =
1024 segment_seq_plus_len(ntohl(th->seq), skb->len,
1025 dataoff, th);
1026 conntrack->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1027 if (conntrack->proto.tcp.seen[0].td_maxwin == 0)
1028 conntrack->proto.tcp.seen[0].td_maxwin = 1;
1029 conntrack->proto.tcp.seen[0].td_maxend =
1030 conntrack->proto.tcp.seen[0].td_end +
1031 conntrack->proto.tcp.seen[0].td_maxwin;
1032 conntrack->proto.tcp.seen[0].td_scale = 0;
1034 /* We assume SACK and liberal window checking to handle
1035 * window scaling */
1036 conntrack->proto.tcp.seen[0].flags =
1037 conntrack->proto.tcp.seen[1].flags = IP_CT_TCP_FLAG_SACK_PERM |
1038 IP_CT_TCP_FLAG_BE_LIBERAL;
1041 conntrack->proto.tcp.seen[1].td_end = 0;
1042 conntrack->proto.tcp.seen[1].td_maxend = 0;
1043 conntrack->proto.tcp.seen[1].td_maxwin = 1;
1044 conntrack->proto.tcp.seen[1].td_scale = 0;
1046 /* tcp_packet will set them */
1047 conntrack->proto.tcp.state = TCP_CONNTRACK_NONE;
1048 conntrack->proto.tcp.last_index = TCP_NONE_SET;
1050 pr_debug("tcp_new: sender end=%u maxend=%u maxwin=%u scale=%i "
1051 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
1052 sender->td_end, sender->td_maxend, sender->td_maxwin,
1053 sender->td_scale,
1054 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
1055 receiver->td_scale);
1056 return 1;
1059 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
1061 #include <linux/netfilter/nfnetlink.h>
1062 #include <linux/netfilter/nfnetlink_conntrack.h>
1064 static int tcp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
1065 const struct nf_conn *ct)
1067 struct nlattr *nest_parms;
1068 struct nf_ct_tcp_flags tmp = {};
1070 read_lock_bh(&tcp_lock);
1071 nest_parms = nla_nest_start(skb, CTA_PROTOINFO_TCP | NLA_F_NESTED);
1072 if (!nest_parms)
1073 goto nla_put_failure;
1075 NLA_PUT(skb, CTA_PROTOINFO_TCP_STATE, sizeof(u_int8_t),
1076 &ct->proto.tcp.state);
1078 NLA_PUT(skb, CTA_PROTOINFO_TCP_WSCALE_ORIGINAL, sizeof(u_int8_t),
1079 &ct->proto.tcp.seen[0].td_scale);
1081 NLA_PUT(skb, CTA_PROTOINFO_TCP_WSCALE_REPLY, sizeof(u_int8_t),
1082 &ct->proto.tcp.seen[1].td_scale);
1084 tmp.flags = ct->proto.tcp.seen[0].flags;
1085 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_ORIGINAL,
1086 sizeof(struct nf_ct_tcp_flags), &tmp);
1088 tmp.flags = ct->proto.tcp.seen[1].flags;
1089 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_REPLY,
1090 sizeof(struct nf_ct_tcp_flags), &tmp);
1091 read_unlock_bh(&tcp_lock);
1093 nla_nest_end(skb, nest_parms);
1095 return 0;
1097 nla_put_failure:
1098 read_unlock_bh(&tcp_lock);
1099 return -1;
1102 static const struct nla_policy tcp_nla_policy[CTA_PROTOINFO_TCP_MAX+1] = {
1103 [CTA_PROTOINFO_TCP_STATE] = { .type = NLA_U8 },
1104 [CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] = { .type = NLA_U8 },
1105 [CTA_PROTOINFO_TCP_WSCALE_REPLY] = { .type = NLA_U8 },
1106 [CTA_PROTOINFO_TCP_FLAGS_ORIGINAL] = { .len = sizeof(struct nf_ct_tcp_flags) },
1107 [CTA_PROTOINFO_TCP_FLAGS_REPLY] = { .len = sizeof(struct nf_ct_tcp_flags) },
1110 static int nlattr_to_tcp(struct nlattr *cda[], struct nf_conn *ct)
1112 struct nlattr *attr = cda[CTA_PROTOINFO_TCP];
1113 struct nlattr *tb[CTA_PROTOINFO_TCP_MAX+1];
1114 int err;
1116 /* updates could not contain anything about the private
1117 * protocol info, in that case skip the parsing */
1118 if (!attr)
1119 return 0;
1121 err = nla_parse_nested(tb, CTA_PROTOINFO_TCP_MAX, attr, tcp_nla_policy);
1122 if (err < 0)
1123 return err;
1125 if (!tb[CTA_PROTOINFO_TCP_STATE])
1126 return -EINVAL;
1128 write_lock_bh(&tcp_lock);
1129 ct->proto.tcp.state =
1130 *(u_int8_t *)nla_data(tb[CTA_PROTOINFO_TCP_STATE]);
1132 if (tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]) {
1133 struct nf_ct_tcp_flags *attr =
1134 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]);
1135 ct->proto.tcp.seen[0].flags &= ~attr->mask;
1136 ct->proto.tcp.seen[0].flags |= attr->flags & attr->mask;
1139 if (tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]) {
1140 struct nf_ct_tcp_flags *attr =
1141 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]);
1142 ct->proto.tcp.seen[1].flags &= ~attr->mask;
1143 ct->proto.tcp.seen[1].flags |= attr->flags & attr->mask;
1146 if (tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] &&
1147 tb[CTA_PROTOINFO_TCP_WSCALE_REPLY] &&
1148 ct->proto.tcp.seen[0].flags & IP_CT_TCP_FLAG_WINDOW_SCALE &&
1149 ct->proto.tcp.seen[1].flags & IP_CT_TCP_FLAG_WINDOW_SCALE) {
1150 ct->proto.tcp.seen[0].td_scale = *(u_int8_t *)
1151 nla_data(tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL]);
1152 ct->proto.tcp.seen[1].td_scale = *(u_int8_t *)
1153 nla_data(tb[CTA_PROTOINFO_TCP_WSCALE_REPLY]);
1155 write_unlock_bh(&tcp_lock);
1157 return 0;
1159 #endif
1161 #ifdef CONFIG_SYSCTL
1162 static unsigned int tcp_sysctl_table_users;
1163 static struct ctl_table_header *tcp_sysctl_header;
1164 static struct ctl_table tcp_sysctl_table[] = {
1166 .procname = "nf_conntrack_tcp_timeout_syn_sent",
1167 .data = &nf_ct_tcp_timeout_syn_sent,
1168 .maxlen = sizeof(unsigned int),
1169 .mode = 0644,
1170 .proc_handler = &proc_dointvec_jiffies,
1173 .procname = "nf_conntrack_tcp_timeout_syn_recv",
1174 .data = &nf_ct_tcp_timeout_syn_recv,
1175 .maxlen = sizeof(unsigned int),
1176 .mode = 0644,
1177 .proc_handler = &proc_dointvec_jiffies,
1180 .procname = "nf_conntrack_tcp_timeout_established",
1181 .data = &nf_ct_tcp_timeout_established,
1182 .maxlen = sizeof(unsigned int),
1183 .mode = 0644,
1184 .proc_handler = &proc_dointvec_jiffies,
1187 .procname = "nf_conntrack_tcp_timeout_fin_wait",
1188 .data = &nf_ct_tcp_timeout_fin_wait,
1189 .maxlen = sizeof(unsigned int),
1190 .mode = 0644,
1191 .proc_handler = &proc_dointvec_jiffies,
1194 .procname = "nf_conntrack_tcp_timeout_close_wait",
1195 .data = &nf_ct_tcp_timeout_close_wait,
1196 .maxlen = sizeof(unsigned int),
1197 .mode = 0644,
1198 .proc_handler = &proc_dointvec_jiffies,
1201 .procname = "nf_conntrack_tcp_timeout_last_ack",
1202 .data = &nf_ct_tcp_timeout_last_ack,
1203 .maxlen = sizeof(unsigned int),
1204 .mode = 0644,
1205 .proc_handler = &proc_dointvec_jiffies,
1208 .procname = "nf_conntrack_tcp_timeout_time_wait",
1209 .data = &nf_ct_tcp_timeout_time_wait,
1210 .maxlen = sizeof(unsigned int),
1211 .mode = 0644,
1212 .proc_handler = &proc_dointvec_jiffies,
1215 .procname = "nf_conntrack_tcp_timeout_close",
1216 .data = &nf_ct_tcp_timeout_close,
1217 .maxlen = sizeof(unsigned int),
1218 .mode = 0644,
1219 .proc_handler = &proc_dointvec_jiffies,
1222 .procname = "nf_conntrack_tcp_timeout_max_retrans",
1223 .data = &nf_ct_tcp_timeout_max_retrans,
1224 .maxlen = sizeof(unsigned int),
1225 .mode = 0644,
1226 .proc_handler = &proc_dointvec_jiffies,
1229 .ctl_name = NET_NF_CONNTRACK_TCP_LOOSE,
1230 .procname = "nf_conntrack_tcp_loose",
1231 .data = &nf_ct_tcp_loose,
1232 .maxlen = sizeof(unsigned int),
1233 .mode = 0644,
1234 .proc_handler = &proc_dointvec,
1237 .ctl_name = NET_NF_CONNTRACK_TCP_BE_LIBERAL,
1238 .procname = "nf_conntrack_tcp_be_liberal",
1239 .data = &nf_ct_tcp_be_liberal,
1240 .maxlen = sizeof(unsigned int),
1241 .mode = 0644,
1242 .proc_handler = &proc_dointvec,
1245 .ctl_name = NET_NF_CONNTRACK_TCP_MAX_RETRANS,
1246 .procname = "nf_conntrack_tcp_max_retrans",
1247 .data = &nf_ct_tcp_max_retrans,
1248 .maxlen = sizeof(unsigned int),
1249 .mode = 0644,
1250 .proc_handler = &proc_dointvec,
1253 .ctl_name = 0
1257 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1258 static struct ctl_table tcp_compat_sysctl_table[] = {
1260 .procname = "ip_conntrack_tcp_timeout_syn_sent",
1261 .data = &nf_ct_tcp_timeout_syn_sent,
1262 .maxlen = sizeof(unsigned int),
1263 .mode = 0644,
1264 .proc_handler = &proc_dointvec_jiffies,
1267 .procname = "ip_conntrack_tcp_timeout_syn_recv",
1268 .data = &nf_ct_tcp_timeout_syn_recv,
1269 .maxlen = sizeof(unsigned int),
1270 .mode = 0644,
1271 .proc_handler = &proc_dointvec_jiffies,
1274 .procname = "ip_conntrack_tcp_timeout_established",
1275 .data = &nf_ct_tcp_timeout_established,
1276 .maxlen = sizeof(unsigned int),
1277 .mode = 0644,
1278 .proc_handler = &proc_dointvec_jiffies,
1281 .procname = "ip_conntrack_tcp_timeout_fin_wait",
1282 .data = &nf_ct_tcp_timeout_fin_wait,
1283 .maxlen = sizeof(unsigned int),
1284 .mode = 0644,
1285 .proc_handler = &proc_dointvec_jiffies,
1288 .procname = "ip_conntrack_tcp_timeout_close_wait",
1289 .data = &nf_ct_tcp_timeout_close_wait,
1290 .maxlen = sizeof(unsigned int),
1291 .mode = 0644,
1292 .proc_handler = &proc_dointvec_jiffies,
1295 .procname = "ip_conntrack_tcp_timeout_last_ack",
1296 .data = &nf_ct_tcp_timeout_last_ack,
1297 .maxlen = sizeof(unsigned int),
1298 .mode = 0644,
1299 .proc_handler = &proc_dointvec_jiffies,
1302 .procname = "ip_conntrack_tcp_timeout_time_wait",
1303 .data = &nf_ct_tcp_timeout_time_wait,
1304 .maxlen = sizeof(unsigned int),
1305 .mode = 0644,
1306 .proc_handler = &proc_dointvec_jiffies,
1309 .procname = "ip_conntrack_tcp_timeout_close",
1310 .data = &nf_ct_tcp_timeout_close,
1311 .maxlen = sizeof(unsigned int),
1312 .mode = 0644,
1313 .proc_handler = &proc_dointvec_jiffies,
1316 .procname = "ip_conntrack_tcp_timeout_max_retrans",
1317 .data = &nf_ct_tcp_timeout_max_retrans,
1318 .maxlen = sizeof(unsigned int),
1319 .mode = 0644,
1320 .proc_handler = &proc_dointvec_jiffies,
1323 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_LOOSE,
1324 .procname = "ip_conntrack_tcp_loose",
1325 .data = &nf_ct_tcp_loose,
1326 .maxlen = sizeof(unsigned int),
1327 .mode = 0644,
1328 .proc_handler = &proc_dointvec,
1331 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL,
1332 .procname = "ip_conntrack_tcp_be_liberal",
1333 .data = &nf_ct_tcp_be_liberal,
1334 .maxlen = sizeof(unsigned int),
1335 .mode = 0644,
1336 .proc_handler = &proc_dointvec,
1339 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS,
1340 .procname = "ip_conntrack_tcp_max_retrans",
1341 .data = &nf_ct_tcp_max_retrans,
1342 .maxlen = sizeof(unsigned int),
1343 .mode = 0644,
1344 .proc_handler = &proc_dointvec,
1347 .ctl_name = 0
1350 #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
1351 #endif /* CONFIG_SYSCTL */
1353 struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp4 __read_mostly =
1355 .l3proto = PF_INET,
1356 .l4proto = IPPROTO_TCP,
1357 .name = "tcp",
1358 .pkt_to_tuple = tcp_pkt_to_tuple,
1359 .invert_tuple = tcp_invert_tuple,
1360 .print_tuple = tcp_print_tuple,
1361 .print_conntrack = tcp_print_conntrack,
1362 .packet = tcp_packet,
1363 .new = tcp_new,
1364 .error = tcp_error,
1365 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
1366 .to_nlattr = tcp_to_nlattr,
1367 .from_nlattr = nlattr_to_tcp,
1368 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1369 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
1370 .nla_policy = nf_ct_port_nla_policy,
1371 #endif
1372 #ifdef CONFIG_SYSCTL
1373 .ctl_table_users = &tcp_sysctl_table_users,
1374 .ctl_table_header = &tcp_sysctl_header,
1375 .ctl_table = tcp_sysctl_table,
1376 #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1377 .ctl_compat_table = tcp_compat_sysctl_table,
1378 #endif
1379 #endif
1381 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp4);
1383 struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6 __read_mostly =
1385 .l3proto = PF_INET6,
1386 .l4proto = IPPROTO_TCP,
1387 .name = "tcp",
1388 .pkt_to_tuple = tcp_pkt_to_tuple,
1389 .invert_tuple = tcp_invert_tuple,
1390 .print_tuple = tcp_print_tuple,
1391 .print_conntrack = tcp_print_conntrack,
1392 .packet = tcp_packet,
1393 .new = tcp_new,
1394 .error = tcp_error,
1395 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
1396 .to_nlattr = tcp_to_nlattr,
1397 .from_nlattr = nlattr_to_tcp,
1398 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1399 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
1400 .nla_policy = nf_ct_port_nla_policy,
1401 #endif
1402 #ifdef CONFIG_SYSCTL
1403 .ctl_table_users = &tcp_sysctl_table_users,
1404 .ctl_table_header = &tcp_sysctl_header,
1405 .ctl_table = tcp_sysctl_table,
1406 #endif
1408 EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp6);