blob: 7a3f64c1aca6f346581c0ef0bc54427f2fb75d14 [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/* (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.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08007 */
8
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08009#include <linux/types.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080010#include <linux/timer.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080011#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>
Martin Josefsson605dcad2006-11-29 02:35:06 +010025#include <net/netfilter/nf_conntrack_l4proto.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010026#include <net/netfilter/nf_conntrack_ecache.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080027
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080028/* Protects conntrack->proto.tcp */
29static DEFINE_RWLOCK(tcp_lock);
30
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080031/* "Be conservative in what you do,
32 be liberal in what you accept from others."
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033 If it's non-zero, we mark only out of window RST segments as INVALID. */
Patrick McHardy3aef0fd2007-02-12 11:16:58 -080034static int nf_ct_tcp_be_liberal __read_mostly = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080035
Patrick McHardya09113c2007-02-07 15:05:33 -080036/* If it is set to zero, we disable picking up already established
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080037 connections. */
Patrick McHardy3aef0fd2007-02-12 11:16:58 -080038static int nf_ct_tcp_loose __read_mostly = 1;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080039
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080040/* Max number of the retransmitted packets without receiving an (acceptable)
41 ACK from the destination. If this number is reached, a shorter timer
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080042 will be started. */
Patrick McHardy3aef0fd2007-02-12 11:16:58 -080043static int nf_ct_tcp_max_retrans __read_mostly = 3;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080044
45 /* FIXME: Examine ipfilter's timeouts and conntrack transitions more
46 closely. They're more complex. --RR */
47
48static 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"
59};
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080060
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080061#define SECS * HZ
62#define MINS * 60 SECS
63#define HOURS * 60 MINS
64#define DAYS * 24 HOURS
65
Patrick McHardy933a41e2006-11-29 02:35:18 +010066static unsigned int nf_ct_tcp_timeout_syn_sent __read_mostly = 2 MINS;
67static unsigned int nf_ct_tcp_timeout_syn_recv __read_mostly = 60 SECS;
68static unsigned int nf_ct_tcp_timeout_established __read_mostly = 5 DAYS;
69static unsigned int nf_ct_tcp_timeout_fin_wait __read_mostly = 2 MINS;
70static unsigned int nf_ct_tcp_timeout_close_wait __read_mostly = 60 SECS;
71static unsigned int nf_ct_tcp_timeout_last_ack __read_mostly = 30 SECS;
72static unsigned int nf_ct_tcp_timeout_time_wait __read_mostly = 2 MINS;
73static unsigned int nf_ct_tcp_timeout_close __read_mostly = 10 SECS;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080074
75/* RFC1122 says the R2 limit should be at least 100 seconds.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080076 Linux uses 15 packets as limit, which corresponds
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080077 to ~13-30min depending on RTO. */
Patrick McHardy933a41e2006-11-29 02:35:18 +010078static unsigned int nf_ct_tcp_timeout_max_retrans __read_mostly = 5 MINS;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080079
Patrick McHardy933a41e2006-11-29 02:35:18 +010080static unsigned int * tcp_timeouts[] = {
81 NULL, /* TCP_CONNTRACK_NONE */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080082 &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 */
91 };
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080092
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080093#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
105
106/* What TCP flags are set from RST/SYN/FIN/ACK. */
107enum 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,
114};
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800115
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116/*
117 * The TCP state transition table needs a few words...
118 *
119 * We are the man in the middle. All the packets go through us
120 * but might get lost in transit to the destination.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800121 * It is assumed that the destinations can't receive segments
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800122 * we haven't seen.
123 *
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.
127 *
128 * The meaning of the states are:
129 *
130 * NONE: initial state
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800131 * SYN_SENT: SYN-only packet seen
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800132 * SYN_RECV: SYN-ACK packet seen
133 * ESTABLISHED: ACK packet seen
134 * FIN_WAIT: FIN packet seen
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800135 * CLOSE_WAIT: ACK seen (after FIN)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800136 * LAST_ACK: FIN seen (after FIN)
137 * TIME_WAIT: last ACK seen
138 * CLOSE: closed connection
139 *
140 * LISTEN state is not used.
141 *
142 * Packets marked as IGNORED (sIG):
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800143 * if they may be either invalid or valid
144 * and the receiver may send back a connection
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800145 * closing RST or a SYN/ACK.
146 *
147 * Packets marked as INVALID (sIV):
148 * if they are invalid
149 * or we do not support the request (simultaneous open)
150 */
151static enum tcp_conntrack tcp_conntracks[2][6][TCP_CONNTRACK_MAX] = {
152 {
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 },
156/*
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
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800161 * are errors. Receiver will reply with RST
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800162 * 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
169 */
170/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
171/*synack*/ { sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV },
172/*
173 * A SYN/ACK from the client is always invalid:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800174 * - either it tries to set up a simultaneous open, which is
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800175 * not supported;
176 * - or the firewall has just been inserted between the two hosts
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800177 * during the session set-up. The SYN will be retransmitted
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800178 * by the true client (or it'll time out).
179 */
180/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
181/*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
182/*
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
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800189 * the last ACK.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800190 * 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
195 */
196/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
197/*ack*/ { sES, sIV, sES, sES, sCW, sCW, sTW, sTW, sCL, sIV },
198/*
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
208 */
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 }
212 },
213 {
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 },
217/*
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
227 */
228/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
229/*synack*/ { sIV, sSR, sSR, sIG, sIG, sIG, sIG, sIG, sIG, sIV },
230/*
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
239 */
240/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
241/*fin*/ { sIV, sIV, sFW, sFW, sLA, sLA, sLA, sTW, sCL, sIV },
242/*
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
251 */
252/* sNO, sSS, sSR, sES, sFW, sCW, sLA, sTW, sCL, sLI */
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800253/*ack*/ { sIV, sIG, sSR, sES, sCW, sCW, sTW, sTW, sCL, sIV },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800254/*
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800255 * sSS -> sIG Might be a half-open connection.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800256 * 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
263 */
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 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800267 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800268};
269
270static int tcp_pkt_to_tuple(const struct sk_buff *skb,
271 unsigned int dataoff,
272 struct nf_conntrack_tuple *tuple)
273{
274 struct tcphdr _hdr, *hp;
275
276 /* Actually only need first 8 bytes. */
277 hp = skb_header_pointer(skb, dataoff, 8, &_hdr);
278 if (hp == NULL)
279 return 0;
280
281 tuple->src.u.tcp.port = hp->source;
282 tuple->dst.u.tcp.port = hp->dest;
283
284 return 1;
285}
286
287static int tcp_invert_tuple(struct nf_conntrack_tuple *tuple,
288 const struct nf_conntrack_tuple *orig)
289{
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;
293}
294
295/* Print out the per-protocol part of the tuple. */
296static int tcp_print_tuple(struct seq_file *s,
297 const struct nf_conntrack_tuple *tuple)
298{
299 return seq_printf(s, "sport=%hu dport=%hu ",
300 ntohs(tuple->src.u.tcp.port),
301 ntohs(tuple->dst.u.tcp.port));
302}
303
304/* Print out the private part of the conntrack. */
305static int tcp_print_conntrack(struct seq_file *s,
306 const struct nf_conn *conntrack)
307{
308 enum tcp_conntrack state;
309
310 read_lock_bh(&tcp_lock);
311 state = conntrack->proto.tcp.state;
312 read_unlock_bh(&tcp_lock);
313
314 return seq_printf(s, "%s ", tcp_conntrack_names[state]);
315}
316
317static unsigned int get_conntrack_index(const struct tcphdr *tcph)
318{
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;
324}
325
326/* TCP connection tracking based on 'Real Stateful TCP Packet Filtering
327 in IP Filter' by Guido van Rooij.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800328
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800329 http://www.nluug.nl/events/sane2000/papers.html
330 http://www.iae.nl/users/guido/papers/tcp_filtering.ps.gz
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800331
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800332 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.
336
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800337 td_maxend = max(sack + max(win,1)) seen in reply packets
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800338 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
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800342
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800343 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
347
348 where sack is the highest right edge of sack block found in the packet.
349
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800350 The upper bound limit for a valid ack is not ignored -
351 we doesn't have to deal with fragments.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800352*/
353
354static inline __u32 segment_seq_plus_len(__u32 seq,
355 size_t len,
356 unsigned int dataoff,
357 struct tcphdr *tcph)
358{
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));
363}
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800364
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800365/* Fixme: what about big packets? */
366#define MAXACKWINCONST 66000
367#define MAXACKWINDOW(sender) \
368 ((sender)->td_maxwin > MAXACKWINCONST ? (sender)->td_maxwin \
369 : MAXACKWINCONST)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800370
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800371/*
372 * Simplified tcp_parse_options routine from tcp_input.c
373 */
374static void tcp_options(const struct sk_buff *skb,
375 unsigned int dataoff,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800376 struct tcphdr *tcph,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800377 struct ip_ct_tcp_state *state)
378{
379 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
380 unsigned char *ptr;
381 int length = (tcph->doff*4) - sizeof(struct tcphdr);
382
383 if (!length)
384 return;
385
386 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
387 length, buff);
388 BUG_ON(ptr == NULL);
389
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800390 state->td_scale =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800391 state->flags = 0;
392
393 while (length > 0) {
394 int opcode=*ptr++;
395 int opsize;
396
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 */
409
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800410 if (opcode == TCPOPT_SACK_PERM
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800411 && 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;
416
417 if (state->td_scale > 14) {
418 /* See RFC1323 */
419 state->td_scale = 14;
420 }
421 state->flags |=
422 IP_CT_TCP_FLAG_WINDOW_SCALE;
423 }
424 ptr += opsize - 2;
425 length -= opsize;
426 }
427 }
428}
429
430static void tcp_sack(const struct sk_buff *skb, unsigned int dataoff,
431 struct tcphdr *tcph, __u32 *sack)
432{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800433 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800434 unsigned char *ptr;
435 int length = (tcph->doff*4) - sizeof(struct tcphdr);
436 __u32 tmp;
437
438 if (!length)
439 return;
440
441 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr),
442 length, buff);
443 BUG_ON(ptr == NULL);
444
445 /* Fast path for timestamp-only option */
446 if (length == TCPOLEN_TSTAMP_ALIGNED*4
YOSHIFUJI Hideaki8f05ce92007-03-07 14:21:00 +0900447 && *(__be32 *)ptr == htonl((TCPOPT_NOP << 24)
448 | (TCPOPT_NOP << 16)
449 | (TCPOPT_TIMESTAMP << 8)
450 | TCPOLEN_TIMESTAMP))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800451 return;
452
453 while (length > 0) {
454 int opcode = *ptr++;
455 int opsize, i;
456
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 */
469
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800470 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));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800479
480 if (after(tmp, *sack))
481 *sack = tmp;
482 }
483 return;
484 }
485 ptr += opsize - 2;
486 length -= opsize;
487 }
488 }
489}
490
Patrick McHardy0d537782007-07-07 22:39:38 -0700491static int tcp_in_window(struct nf_conn *ct,
492 struct ip_ct_tcp *state,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800493 enum ip_conntrack_dir dir,
494 unsigned int index,
495 const struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800496 unsigned int dataoff,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800497 struct tcphdr *tcph,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800498 int pf)
499{
500 struct ip_ct_tcp_state *sender = &state->seen[dir];
501 struct ip_ct_tcp_state *receiver = &state->seen[!dir];
Patrick McHardy0d537782007-07-07 22:39:38 -0700502 struct nf_conntrack_tuple *tuple = &ct->tuplehash[dir].tuple;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800503 __u32 seq, ack, sack, end, win, swin;
504 int res;
505
506 /*
507 * Get the required data from the packet.
508 */
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);
513
514 if (receiver->flags & IP_CT_TCP_FLAG_SACK_PERM)
515 tcp_sack(skb, dataoff, tcph, &sack);
516
Patrick McHardy0d537782007-07-07 22:39:38 -0700517 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);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800528
529 if (sender->td_end == 0) {
530 /*
531 * Initialize sender data.
532 */
533 if (tcph->syn && tcph->ack) {
534 /*
535 * Outgoing SYN-ACK in reply to a SYN.
536 */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800537 sender->td_end =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800538 sender->td_maxend = end;
539 sender->td_maxwin = (win == 0 ? 1 : win);
540
541 tcp_options(skb, dataoff, tcph, sender);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800542 /*
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800543 * RFC 1323:
544 * Both sides must send the Window Scale option
545 * to enable window scaling in either direction.
546 */
547 if (!(sender->flags & IP_CT_TCP_FLAG_WINDOW_SCALE
548 && receiver->flags & IP_CT_TCP_FLAG_WINDOW_SCALE))
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800549 sender->td_scale =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800550 receiver->td_scale = 0;
551 } else {
552 /*
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.
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800556 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800557 sender->td_end = end;
558 sender->td_maxwin = (win == 0 ? 1 : win);
559 sender->td_maxend = end + sender->td_maxwin;
560 }
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)) {
566 /*
567 * RFC 793: "if a TCP is reinitialized ... then it need
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800568 * not wait at all; it must only be sure to use sequence
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569 * numbers larger than those recently used."
570 */
571 sender->td_end =
572 sender->td_maxend = end;
573 sender->td_maxwin = (win == 0 ? 1 : win);
574
575 tcp_options(skb, dataoff, tcph, sender);
576 }
577
578 if (!(tcph->ack)) {
579 /*
580 * If there is no ACK, just pretend it was set and OK.
581 */
582 ack = sack = receiver->td_end;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800583 } else if (((tcp_flag_word(tcph) & (TCP_FLAG_ACK|TCP_FLAG_RST)) ==
584 (TCP_FLAG_ACK|TCP_FLAG_RST))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800585 && (ack == 0)) {
586 /*
587 * Broken TCP stacks, that set ACK in RST packets as well
588 * with zero ack value.
589 */
590 ack = sack = receiver->td_end;
591 }
592
593 if (seq == end
594 && (!tcph->rst
595 || (seq == 0 && state->state == TCP_CONNTRACK_SYN_SENT)))
596 /*
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.
602 */
603 seq = end = sender->td_end;
604
Patrick McHardy0d537782007-07-07 22:39:38 -0700605 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);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800615
Patrick McHardy0d537782007-07-07 22:39:38 -0700616 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)));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800621
Patrick McHardya09113c2007-02-07 15:05:33 -0800622 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))) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800626 /*
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800627 * Take into account window scaling (RFC 1323).
628 */
629 if (!tcph->syn)
630 win <<= sender->td_scale;
631
632 /*
633 * Update sender data.
634 */
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;
640 /*
641 * Update receiver data.
642 */
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++;
649 }
650
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800651 /*
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800652 * Check retransmissions.
653 */
654 if (index == TCP_ACK_SET) {
655 if (state->last_dir == dir
656 && state->last_seq == seq
657 && state->last_ack == ack
George Hansperc1fe3ca2006-09-20 12:03:23 -0700658 && state->last_end == end
659 && state->last_win == win)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800660 state->retrans++;
661 else {
662 state->last_dir = dir;
663 state->last_seq = seq;
664 state->last_ack = ack;
665 state->last_end = end;
George Hansperc1fe3ca2006-09-20 12:03:23 -0700666 state->last_win = win;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800667 state->retrans = 0;
668 }
669 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800670 res = 1;
671 } else {
Patrick McHardya09113c2007-02-07 15:05:33 -0800672 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))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800677 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)");
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800687 }
688
Patrick McHardy0d537782007-07-07 22:39:38 -0700689 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);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800693
694 return res;
695}
696
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800697#ifdef CONFIG_NF_NAT_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800698/* Update sender->td_end after NAT successfully mangled the packet */
699/* Caller must linearize skb at tcp header. */
700void nf_conntrack_tcp_update(struct sk_buff *skb,
701 unsigned int dataoff,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800702 struct nf_conn *conntrack,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800703 int dir)
704{
705 struct tcphdr *tcph = (void *)skb->data + dataoff;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800706 struct ip_ct_tcp_state *sender = &conntrack->proto.tcp.seen[dir];
707 struct ip_ct_tcp_state *receiver = &conntrack->proto.tcp.seen[!dir];
Patrick McHardy0d537782007-07-07 22:39:38 -0700708 __u32 end;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800709
710 end = segment_seq_plus_len(ntohl(tcph->seq), skb->len, dataoff, tcph);
711
712 write_lock_bh(&tcp_lock);
713 /*
714 * We have to worry for the ack in the reply packet only...
715 */
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);
Patrick McHardy0d537782007-07-07 22:39:38 -0700720 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);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800726}
Patrick McHardy13b18332006-12-02 22:11:25 -0800727EXPORT_SYMBOL_GPL(nf_conntrack_tcp_update);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800728#endif
729
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
738
Willy Tarreau5c8ce7c2007-03-14 16:44:53 -0700739/* table of valid flag combinations - PUSH, ECE and CWR are always valid */
740static u8 tcp_valid_flags[(TH_FIN|TH_SYN|TH_RST|TH_ACK|TH_URG) + 1] =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800741{
742 [TH_SYN] = 1,
Patrick McHardyd3ab4292007-03-04 15:57:46 -0800743 [TH_SYN|TH_URG] = 1,
Patrick McHardyd3ab4292007-03-04 15:57:46 -0800744 [TH_SYN|TH_ACK] = 1,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800745 [TH_RST] = 1,
746 [TH_RST|TH_ACK] = 1,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800747 [TH_FIN|TH_ACK] = 1,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800748 [TH_FIN|TH_ACK|TH_URG] = 1,
Willy Tarreau5c8ce7c2007-03-14 16:44:53 -0700749 [TH_ACK] = 1,
750 [TH_ACK|TH_URG] = 1,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800751};
752
753/* Protect conntrack agaist broken packets. Code taken from ipt_unclean.c. */
754static int tcp_error(struct sk_buff *skb,
755 unsigned int dataoff,
756 enum ip_conntrack_info *ctinfo,
757 int pf,
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700758 unsigned int hooknum)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800759{
760 struct tcphdr _tcph, *th;
761 unsigned int tcplen = skb->len - dataoff;
762 u_int8_t tcpflags;
763
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;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800771 }
772
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800773 /* 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;
779 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800780
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800781 /* Checksum invalid? Ignore.
782 * We skip checking packets on the outgoing path
Patrick McHardy84fa7932006-08-29 16:44:56 -0700783 * because the checksum is assumed to be correct.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800784 */
785 /* FIXME: Source route IP option packets --RR */
Patrick McHardy39a27a32006-05-29 18:23:54 -0700786 if (nf_conntrack_checksum &&
787 ((pf == PF_INET && hooknum == NF_IP_PRE_ROUTING) ||
788 (pf == PF_INET6 && hooknum == NF_IP6_PRE_ROUTING)) &&
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700789 nf_checksum(skb, hooknum, dataoff, IPPROTO_TCP, pf)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800790 if (LOG_INVALID(IPPROTO_TCP))
791 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
792 "nf_ct_tcp: bad TCP checksum ");
793 return -NF_ACCEPT;
794 }
795
796 /* Check TCP flags. */
Willy Tarreau5c8ce7c2007-03-14 16:44:53 -0700797 tcpflags = (((u_int8_t *)th)[13] & ~(TH_ECE|TH_CWR|TH_PUSH));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800798 if (!tcp_valid_flags[tcpflags]) {
799 if (LOG_INVALID(IPPROTO_TCP))
800 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
801 "nf_ct_tcp: invalid TCP flag combination ");
802 return -NF_ACCEPT;
803 }
804
805 return NF_ACCEPT;
806}
807
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800808/* Returns verdict for packet, or -1 for invalid. */
809static int tcp_packet(struct nf_conn *conntrack,
810 const struct sk_buff *skb,
811 unsigned int dataoff,
812 enum ip_conntrack_info ctinfo,
813 int pf,
814 unsigned int hooknum)
815{
Patrick McHardy0d537782007-07-07 22:39:38 -0700816 struct nf_conntrack_tuple *tuple;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800817 enum tcp_conntrack new_state, old_state;
818 enum ip_conntrack_dir dir;
819 struct tcphdr *th, _tcph;
820 unsigned long timeout;
821 unsigned int index;
822
823 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
824 BUG_ON(th == NULL);
825
826 write_lock_bh(&tcp_lock);
827 old_state = conntrack->proto.tcp.state;
828 dir = CTINFO2DIR(ctinfo);
829 index = get_conntrack_index(th);
830 new_state = tcp_conntracks[dir][index][old_state];
Patrick McHardy0d537782007-07-07 22:39:38 -0700831 tuple = &conntrack->tuplehash[dir].tuple;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800832
833 switch (new_state) {
Jozsef Kadlecsik17311392007-10-11 14:35:52 -0700834 case TCP_CONNTRACK_SYN_SENT:
835 if (old_state < TCP_CONNTRACK_TIME_WAIT)
836 break;
Jozsef Kadlecsikbc34b842007-10-18 05:20:12 -0700837 if ((conntrack->proto.tcp.seen[!dir].flags &
838 IP_CT_TCP_FLAG_CLOSE_INIT)
839 || (conntrack->proto.tcp.last_dir == dir
840 && conntrack->proto.tcp.last_index == TCP_RST_SET)) {
841 /* Attempt to reopen a closed/aborted connection.
842 * Delete this connection and look up again. */
Jozsef Kadlecsik17311392007-10-11 14:35:52 -0700843 write_unlock_bh(&tcp_lock);
844 if (del_timer(&conntrack->timeout))
845 conntrack->timeout.function((unsigned long)
846 conntrack);
847 return -NF_REPEAT;
848 }
849 /* Fall through */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800850 case TCP_CONNTRACK_IGNORE:
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800851 /* Ignored packets:
852 *
853 * a) SYN in ORIGINAL
854 * b) SYN/ACK in REPLY
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800855 * c) ACK in reply direction after initial SYN in original.
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800856 */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800857 if (index == TCP_SYNACK_SET
858 && conntrack->proto.tcp.last_index == TCP_SYN_SET
859 && conntrack->proto.tcp.last_dir != dir
860 && ntohl(th->ack_seq) ==
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800861 conntrack->proto.tcp.last_end) {
862 /* This SYN/ACK acknowledges a SYN that we earlier
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800863 * ignored as invalid. This means that the client and
864 * the server are both in sync, while the firewall is
865 * not. We kill this session and block the SYN/ACK so
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800866 * that the client cannot but retransmit its SYN and
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800867 * thus initiate a clean new session.
868 */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800869 write_unlock_bh(&tcp_lock);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800870 if (LOG_INVALID(IPPROTO_TCP))
871 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
872 "nf_ct_tcp: killing out of sync session ");
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800873 if (del_timer(&conntrack->timeout))
874 conntrack->timeout.function((unsigned long)
875 conntrack);
876 return -NF_DROP;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800877 }
878 conntrack->proto.tcp.last_index = index;
879 conntrack->proto.tcp.last_dir = dir;
880 conntrack->proto.tcp.last_seq = ntohl(th->seq);
881 conntrack->proto.tcp.last_end =
882 segment_seq_plus_len(ntohl(th->seq), skb->len, dataoff, th);
883
884 write_unlock_bh(&tcp_lock);
885 if (LOG_INVALID(IPPROTO_TCP))
886 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
887 "nf_ct_tcp: invalid packed ignored ");
888 return NF_ACCEPT;
889 case TCP_CONNTRACK_MAX:
890 /* Invalid packet */
Patrick McHardy0d537782007-07-07 22:39:38 -0700891 pr_debug("nf_ct_tcp: Invalid dir=%i index=%u ostate=%u\n",
892 dir, get_conntrack_index(th), old_state);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800893 write_unlock_bh(&tcp_lock);
894 if (LOG_INVALID(IPPROTO_TCP))
895 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
896 "nf_ct_tcp: invalid state ");
897 return -NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800898 case TCP_CONNTRACK_CLOSE:
899 if (index == TCP_RST_SET
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800900 && ((test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800901 && conntrack->proto.tcp.last_index == TCP_SYN_SET)
902 || (!test_bit(IPS_ASSURED_BIT, &conntrack->status)
903 && conntrack->proto.tcp.last_index == TCP_ACK_SET))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800904 && ntohl(th->ack_seq) == conntrack->proto.tcp.last_end) {
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100905 /* RST sent to invalid SYN or ACK we had let through
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800906 * at a) and c) above:
907 *
908 * a) SYN was in window then
909 * c) we hold a half-open connection.
910 *
911 * Delete our connection entry.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800912 * We skip window checking, because packet might ACK
Jozsef Kadlecsik73f30602005-12-01 14:28:58 -0800913 * segments we ignored. */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800914 goto in_window;
915 }
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100916 /* Just fall through */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800917 default:
918 /* Keep compilers happy. */
919 break;
920 }
921
Patrick McHardy0d537782007-07-07 22:39:38 -0700922 if (!tcp_in_window(conntrack, &conntrack->proto.tcp, dir, index,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800923 skb, dataoff, th, pf)) {
924 write_unlock_bh(&tcp_lock);
925 return -NF_ACCEPT;
926 }
927 in_window:
928 /* From now on we have got in-window packets */
929 conntrack->proto.tcp.last_index = index;
Jozsef Kadlecsikbc34b842007-10-18 05:20:12 -0700930 conntrack->proto.tcp.last_dir = dir;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800931
Patrick McHardy0d537782007-07-07 22:39:38 -0700932 pr_debug("tcp_conntracks: ");
933 NF_CT_DUMP_TUPLE(tuple);
934 pr_debug("syn=%i ack=%i fin=%i rst=%i old=%i new=%i\n",
935 (th->syn ? 1 : 0), (th->ack ? 1 : 0),
936 (th->fin ? 1 : 0), (th->rst ? 1 : 0),
937 old_state, new_state);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800938
939 conntrack->proto.tcp.state = new_state;
940 if (old_state != new_state
941 && (new_state == TCP_CONNTRACK_FIN_WAIT
942 || new_state == TCP_CONNTRACK_CLOSE))
943 conntrack->proto.tcp.seen[dir].flags |= IP_CT_TCP_FLAG_CLOSE_INIT;
944 timeout = conntrack->proto.tcp.retrans >= nf_ct_tcp_max_retrans
945 && *tcp_timeouts[new_state] > nf_ct_tcp_timeout_max_retrans
946 ? nf_ct_tcp_timeout_max_retrans : *tcp_timeouts[new_state];
947 write_unlock_bh(&tcp_lock);
948
949 nf_conntrack_event_cache(IPCT_PROTOINFO_VOLATILE, skb);
950 if (new_state != old_state)
951 nf_conntrack_event_cache(IPCT_PROTOINFO, skb);
952
953 if (!test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)) {
954 /* If only reply is a RST, we can consider ourselves not to
955 have an established connection: this is a fairly common
956 problem case, so we can delete the conntrack
957 immediately. --RR */
958 if (th->rst) {
959 if (del_timer(&conntrack->timeout))
960 conntrack->timeout.function((unsigned long)
961 conntrack);
962 return NF_ACCEPT;
963 }
964 } else if (!test_bit(IPS_ASSURED_BIT, &conntrack->status)
965 && (old_state == TCP_CONNTRACK_SYN_RECV
966 || old_state == TCP_CONNTRACK_ESTABLISHED)
967 && new_state == TCP_CONNTRACK_ESTABLISHED) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800968 /* Set ASSURED if we see see valid ack in ESTABLISHED
969 after SYN_RECV or a valid answer for a picked up
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800970 connection. */
971 set_bit(IPS_ASSURED_BIT, &conntrack->status);
972 nf_conntrack_event_cache(IPCT_STATUS, skb);
973 }
974 nf_ct_refresh_acct(conntrack, ctinfo, skb, timeout);
975
976 return NF_ACCEPT;
977}
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800978
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800979/* Called when a new connection for this protocol found. */
980static int tcp_new(struct nf_conn *conntrack,
981 const struct sk_buff *skb,
982 unsigned int dataoff)
983{
984 enum tcp_conntrack new_state;
985 struct tcphdr *th, _tcph;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800986 struct ip_ct_tcp_state *sender = &conntrack->proto.tcp.seen[0];
987 struct ip_ct_tcp_state *receiver = &conntrack->proto.tcp.seen[1];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800988
989 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph);
990 BUG_ON(th == NULL);
991
992 /* Don't need lock here: this conntrack not in circulation yet */
993 new_state
994 = tcp_conntracks[0][get_conntrack_index(th)]
995 [TCP_CONNTRACK_NONE];
996
997 /* Invalid: delete conntrack */
998 if (new_state >= TCP_CONNTRACK_MAX) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700999 pr_debug("nf_ct_tcp: invalid new deleting.\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001000 return 0;
1001 }
1002
1003 if (new_state == TCP_CONNTRACK_SYN_SENT) {
1004 /* SYN packet */
1005 conntrack->proto.tcp.seen[0].td_end =
1006 segment_seq_plus_len(ntohl(th->seq), skb->len,
1007 dataoff, th);
1008 conntrack->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1009 if (conntrack->proto.tcp.seen[0].td_maxwin == 0)
1010 conntrack->proto.tcp.seen[0].td_maxwin = 1;
1011 conntrack->proto.tcp.seen[0].td_maxend =
1012 conntrack->proto.tcp.seen[0].td_end;
1013
1014 tcp_options(skb, dataoff, th, &conntrack->proto.tcp.seen[0]);
1015 conntrack->proto.tcp.seen[1].flags = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001016 } else if (nf_ct_tcp_loose == 0) {
1017 /* Don't try to pick up connections. */
1018 return 0;
1019 } else {
1020 /*
1021 * We are in the middle of a connection,
1022 * its history is lost for us.
1023 * Let's try to use the data from the packet.
1024 */
1025 conntrack->proto.tcp.seen[0].td_end =
1026 segment_seq_plus_len(ntohl(th->seq), skb->len,
1027 dataoff, th);
1028 conntrack->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
1029 if (conntrack->proto.tcp.seen[0].td_maxwin == 0)
1030 conntrack->proto.tcp.seen[0].td_maxwin = 1;
1031 conntrack->proto.tcp.seen[0].td_maxend =
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001032 conntrack->proto.tcp.seen[0].td_end +
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001033 conntrack->proto.tcp.seen[0].td_maxwin;
1034 conntrack->proto.tcp.seen[0].td_scale = 0;
1035
Patrick McHardya09113c2007-02-07 15:05:33 -08001036 /* We assume SACK and liberal window checking to handle
1037 * window scaling */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001038 conntrack->proto.tcp.seen[0].flags =
Patrick McHardya09113c2007-02-07 15:05:33 -08001039 conntrack->proto.tcp.seen[1].flags = IP_CT_TCP_FLAG_SACK_PERM |
1040 IP_CT_TCP_FLAG_BE_LIBERAL;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001041 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001042
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001043 conntrack->proto.tcp.seen[1].td_end = 0;
1044 conntrack->proto.tcp.seen[1].td_maxend = 0;
1045 conntrack->proto.tcp.seen[1].td_maxwin = 1;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001046 conntrack->proto.tcp.seen[1].td_scale = 0;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001047
1048 /* tcp_packet will set them */
1049 conntrack->proto.tcp.state = TCP_CONNTRACK_NONE;
1050 conntrack->proto.tcp.last_index = TCP_NONE_SET;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001051
Patrick McHardy0d537782007-07-07 22:39:38 -07001052 pr_debug("tcp_new: sender end=%u maxend=%u maxwin=%u scale=%i "
1053 "receiver end=%u maxend=%u maxwin=%u scale=%i\n",
1054 sender->td_end, sender->td_maxend, sender->td_maxwin,
1055 sender->td_scale,
1056 receiver->td_end, receiver->td_maxend, receiver->td_maxwin,
1057 receiver->td_scale);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001058 return 1;
1059}
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001060
Patrick McHardye281db5c2007-03-04 15:57:25 -08001061#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001062
1063#include <linux/netfilter/nfnetlink.h>
1064#include <linux/netfilter/nfnetlink_conntrack.h>
1065
Patrick McHardyfdf70832007-09-28 14:37:41 -07001066static int tcp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001067 const struct nf_conn *ct)
1068{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001069 struct nlattr *nest_parms;
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001070 struct nf_ct_tcp_flags tmp = {};
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001071
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001072 read_lock_bh(&tcp_lock);
Patrick McHardydf6fb862007-09-28 14:37:03 -07001073 nest_parms = nla_nest_start(skb, CTA_PROTOINFO_TCP | NLA_F_NESTED);
1074 if (!nest_parms)
1075 goto nla_put_failure;
1076
1077 NLA_PUT(skb, CTA_PROTOINFO_TCP_STATE, sizeof(u_int8_t),
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001078 &ct->proto.tcp.state);
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001079
Patrick McHardydf6fb862007-09-28 14:37:03 -07001080 NLA_PUT(skb, CTA_PROTOINFO_TCP_WSCALE_ORIGINAL, sizeof(u_int8_t),
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001081 &ct->proto.tcp.seen[0].td_scale);
1082
Patrick McHardydf6fb862007-09-28 14:37:03 -07001083 NLA_PUT(skb, CTA_PROTOINFO_TCP_WSCALE_REPLY, sizeof(u_int8_t),
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001084 &ct->proto.tcp.seen[1].td_scale);
1085
1086 tmp.flags = ct->proto.tcp.seen[0].flags;
Patrick McHardydf6fb862007-09-28 14:37:03 -07001087 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_ORIGINAL,
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001088 sizeof(struct nf_ct_tcp_flags), &tmp);
1089
1090 tmp.flags = ct->proto.tcp.seen[1].flags;
Patrick McHardydf6fb862007-09-28 14:37:03 -07001091 NLA_PUT(skb, CTA_PROTOINFO_TCP_FLAGS_REPLY,
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001092 sizeof(struct nf_ct_tcp_flags), &tmp);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001093 read_unlock_bh(&tcp_lock);
1094
Patrick McHardydf6fb862007-09-28 14:37:03 -07001095 nla_nest_end(skb, nest_parms);
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001096
1097 return 0;
1098
Patrick McHardydf6fb862007-09-28 14:37:03 -07001099nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001100 read_unlock_bh(&tcp_lock);
1101 return -1;
1102}
1103
Patrick McHardyf73e9242007-09-28 14:39:55 -07001104static const struct nla_policy tcp_nla_policy[CTA_PROTOINFO_TCP_MAX+1] = {
1105 [CTA_PROTOINFO_TCP_STATE] = { .type = NLA_U8 },
1106 [CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] = { .type = NLA_U8 },
1107 [CTA_PROTOINFO_TCP_WSCALE_REPLY] = { .type = NLA_U8 },
1108 [CTA_PROTOINFO_TCP_FLAGS_ORIGINAL] = { .len = sizeof(struct nf_ct_tcp_flags) },
1109 [CTA_PROTOINFO_TCP_FLAGS_REPLY] = { .len = sizeof(struct nf_ct_tcp_flags) },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001110};
1111
Patrick McHardyfdf70832007-09-28 14:37:41 -07001112static int nlattr_to_tcp(struct nlattr *cda[], struct nf_conn *ct)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001113{
Patrick McHardydf6fb862007-09-28 14:37:03 -07001114 struct nlattr *attr = cda[CTA_PROTOINFO_TCP];
1115 struct nlattr *tb[CTA_PROTOINFO_TCP_MAX+1];
Patrick McHardyf73e9242007-09-28 14:39:55 -07001116 int err;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001117
1118 /* updates could not contain anything about the private
1119 * protocol info, in that case skip the parsing */
1120 if (!attr)
1121 return 0;
1122
Patrick McHardyf73e9242007-09-28 14:39:55 -07001123 err = nla_parse_nested(tb, CTA_PROTOINFO_TCP_MAX, attr, tcp_nla_policy);
1124 if (err < 0)
1125 return err;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001126
Patrick McHardydf6fb862007-09-28 14:37:03 -07001127 if (!tb[CTA_PROTOINFO_TCP_STATE])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001128 return -EINVAL;
1129
1130 write_lock_bh(&tcp_lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001131 ct->proto.tcp.state =
Patrick McHardydf6fb862007-09-28 14:37:03 -07001132 *(u_int8_t *)nla_data(tb[CTA_PROTOINFO_TCP_STATE]);
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001133
Patrick McHardydf6fb862007-09-28 14:37:03 -07001134 if (tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]) {
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001135 struct nf_ct_tcp_flags *attr =
Patrick McHardydf6fb862007-09-28 14:37:03 -07001136 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_ORIGINAL]);
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001137 ct->proto.tcp.seen[0].flags &= ~attr->mask;
1138 ct->proto.tcp.seen[0].flags |= attr->flags & attr->mask;
1139 }
1140
Patrick McHardydf6fb862007-09-28 14:37:03 -07001141 if (tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]) {
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001142 struct nf_ct_tcp_flags *attr =
Patrick McHardydf6fb862007-09-28 14:37:03 -07001143 nla_data(tb[CTA_PROTOINFO_TCP_FLAGS_REPLY]);
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001144 ct->proto.tcp.seen[1].flags &= ~attr->mask;
1145 ct->proto.tcp.seen[1].flags |= attr->flags & attr->mask;
1146 }
1147
Patrick McHardydf6fb862007-09-28 14:37:03 -07001148 if (tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL] &&
1149 tb[CTA_PROTOINFO_TCP_WSCALE_REPLY] &&
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001150 ct->proto.tcp.seen[0].flags & IP_CT_TCP_FLAG_WINDOW_SCALE &&
1151 ct->proto.tcp.seen[1].flags & IP_CT_TCP_FLAG_WINDOW_SCALE) {
1152 ct->proto.tcp.seen[0].td_scale = *(u_int8_t *)
Patrick McHardydf6fb862007-09-28 14:37:03 -07001153 nla_data(tb[CTA_PROTOINFO_TCP_WSCALE_ORIGINAL]);
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001154 ct->proto.tcp.seen[1].td_scale = *(u_int8_t *)
Patrick McHardydf6fb862007-09-28 14:37:03 -07001155 nla_data(tb[CTA_PROTOINFO_TCP_WSCALE_REPLY]);
Pablo Neira Ayusoc8e20782007-03-14 16:45:19 -07001156 }
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001157 write_unlock_bh(&tcp_lock);
1158
1159 return 0;
1160}
1161#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +01001162
1163#ifdef CONFIG_SYSCTL
1164static unsigned int tcp_sysctl_table_users;
1165static struct ctl_table_header *tcp_sysctl_header;
1166static struct ctl_table tcp_sysctl_table[] = {
1167 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001168 .procname = "nf_conntrack_tcp_timeout_syn_sent",
1169 .data = &nf_ct_tcp_timeout_syn_sent,
1170 .maxlen = sizeof(unsigned int),
1171 .mode = 0644,
1172 .proc_handler = &proc_dointvec_jiffies,
1173 },
1174 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001175 .procname = "nf_conntrack_tcp_timeout_syn_recv",
1176 .data = &nf_ct_tcp_timeout_syn_recv,
1177 .maxlen = sizeof(unsigned int),
1178 .mode = 0644,
1179 .proc_handler = &proc_dointvec_jiffies,
1180 },
1181 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001182 .procname = "nf_conntrack_tcp_timeout_established",
1183 .data = &nf_ct_tcp_timeout_established,
1184 .maxlen = sizeof(unsigned int),
1185 .mode = 0644,
1186 .proc_handler = &proc_dointvec_jiffies,
1187 },
1188 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001189 .procname = "nf_conntrack_tcp_timeout_fin_wait",
1190 .data = &nf_ct_tcp_timeout_fin_wait,
1191 .maxlen = sizeof(unsigned int),
1192 .mode = 0644,
1193 .proc_handler = &proc_dointvec_jiffies,
1194 },
1195 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001196 .procname = "nf_conntrack_tcp_timeout_close_wait",
1197 .data = &nf_ct_tcp_timeout_close_wait,
1198 .maxlen = sizeof(unsigned int),
1199 .mode = 0644,
1200 .proc_handler = &proc_dointvec_jiffies,
1201 },
1202 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001203 .procname = "nf_conntrack_tcp_timeout_last_ack",
1204 .data = &nf_ct_tcp_timeout_last_ack,
1205 .maxlen = sizeof(unsigned int),
1206 .mode = 0644,
1207 .proc_handler = &proc_dointvec_jiffies,
1208 },
1209 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001210 .procname = "nf_conntrack_tcp_timeout_time_wait",
1211 .data = &nf_ct_tcp_timeout_time_wait,
1212 .maxlen = sizeof(unsigned int),
1213 .mode = 0644,
1214 .proc_handler = &proc_dointvec_jiffies,
1215 },
1216 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001217 .procname = "nf_conntrack_tcp_timeout_close",
1218 .data = &nf_ct_tcp_timeout_close,
1219 .maxlen = sizeof(unsigned int),
1220 .mode = 0644,
1221 .proc_handler = &proc_dointvec_jiffies,
1222 },
1223 {
Patrick McHardy933a41e2006-11-29 02:35:18 +01001224 .procname = "nf_conntrack_tcp_timeout_max_retrans",
1225 .data = &nf_ct_tcp_timeout_max_retrans,
1226 .maxlen = sizeof(unsigned int),
1227 .mode = 0644,
1228 .proc_handler = &proc_dointvec_jiffies,
1229 },
1230 {
1231 .ctl_name = NET_NF_CONNTRACK_TCP_LOOSE,
1232 .procname = "nf_conntrack_tcp_loose",
1233 .data = &nf_ct_tcp_loose,
1234 .maxlen = sizeof(unsigned int),
1235 .mode = 0644,
1236 .proc_handler = &proc_dointvec,
1237 },
1238 {
1239 .ctl_name = NET_NF_CONNTRACK_TCP_BE_LIBERAL,
1240 .procname = "nf_conntrack_tcp_be_liberal",
1241 .data = &nf_ct_tcp_be_liberal,
1242 .maxlen = sizeof(unsigned int),
1243 .mode = 0644,
1244 .proc_handler = &proc_dointvec,
1245 },
1246 {
1247 .ctl_name = NET_NF_CONNTRACK_TCP_MAX_RETRANS,
1248 .procname = "nf_conntrack_tcp_max_retrans",
1249 .data = &nf_ct_tcp_max_retrans,
1250 .maxlen = sizeof(unsigned int),
1251 .mode = 0644,
1252 .proc_handler = &proc_dointvec,
1253 },
1254 {
1255 .ctl_name = 0
1256 }
1257};
Patrick McHardya999e682006-11-29 02:35:20 +01001258
1259#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1260static struct ctl_table tcp_compat_sysctl_table[] = {
1261 {
Patrick McHardya999e682006-11-29 02:35:20 +01001262 .procname = "ip_conntrack_tcp_timeout_syn_sent",
1263 .data = &nf_ct_tcp_timeout_syn_sent,
1264 .maxlen = sizeof(unsigned int),
1265 .mode = 0644,
1266 .proc_handler = &proc_dointvec_jiffies,
1267 },
1268 {
Patrick McHardya999e682006-11-29 02:35:20 +01001269 .procname = "ip_conntrack_tcp_timeout_syn_recv",
1270 .data = &nf_ct_tcp_timeout_syn_recv,
1271 .maxlen = sizeof(unsigned int),
1272 .mode = 0644,
1273 .proc_handler = &proc_dointvec_jiffies,
1274 },
1275 {
Patrick McHardya999e682006-11-29 02:35:20 +01001276 .procname = "ip_conntrack_tcp_timeout_established",
1277 .data = &nf_ct_tcp_timeout_established,
1278 .maxlen = sizeof(unsigned int),
1279 .mode = 0644,
1280 .proc_handler = &proc_dointvec_jiffies,
1281 },
1282 {
Patrick McHardya999e682006-11-29 02:35:20 +01001283 .procname = "ip_conntrack_tcp_timeout_fin_wait",
1284 .data = &nf_ct_tcp_timeout_fin_wait,
1285 .maxlen = sizeof(unsigned int),
1286 .mode = 0644,
1287 .proc_handler = &proc_dointvec_jiffies,
1288 },
1289 {
Patrick McHardya999e682006-11-29 02:35:20 +01001290 .procname = "ip_conntrack_tcp_timeout_close_wait",
1291 .data = &nf_ct_tcp_timeout_close_wait,
1292 .maxlen = sizeof(unsigned int),
1293 .mode = 0644,
1294 .proc_handler = &proc_dointvec_jiffies,
1295 },
1296 {
Patrick McHardya999e682006-11-29 02:35:20 +01001297 .procname = "ip_conntrack_tcp_timeout_last_ack",
1298 .data = &nf_ct_tcp_timeout_last_ack,
1299 .maxlen = sizeof(unsigned int),
1300 .mode = 0644,
1301 .proc_handler = &proc_dointvec_jiffies,
1302 },
1303 {
Patrick McHardya999e682006-11-29 02:35:20 +01001304 .procname = "ip_conntrack_tcp_timeout_time_wait",
1305 .data = &nf_ct_tcp_timeout_time_wait,
1306 .maxlen = sizeof(unsigned int),
1307 .mode = 0644,
1308 .proc_handler = &proc_dointvec_jiffies,
1309 },
1310 {
Patrick McHardya999e682006-11-29 02:35:20 +01001311 .procname = "ip_conntrack_tcp_timeout_close",
1312 .data = &nf_ct_tcp_timeout_close,
1313 .maxlen = sizeof(unsigned int),
1314 .mode = 0644,
1315 .proc_handler = &proc_dointvec_jiffies,
1316 },
1317 {
Patrick McHardya999e682006-11-29 02:35:20 +01001318 .procname = "ip_conntrack_tcp_timeout_max_retrans",
1319 .data = &nf_ct_tcp_timeout_max_retrans,
1320 .maxlen = sizeof(unsigned int),
1321 .mode = 0644,
1322 .proc_handler = &proc_dointvec_jiffies,
1323 },
1324 {
1325 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_LOOSE,
1326 .procname = "ip_conntrack_tcp_loose",
1327 .data = &nf_ct_tcp_loose,
1328 .maxlen = sizeof(unsigned int),
1329 .mode = 0644,
1330 .proc_handler = &proc_dointvec,
1331 },
1332 {
1333 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL,
1334 .procname = "ip_conntrack_tcp_be_liberal",
1335 .data = &nf_ct_tcp_be_liberal,
1336 .maxlen = sizeof(unsigned int),
1337 .mode = 0644,
1338 .proc_handler = &proc_dointvec,
1339 },
1340 {
1341 .ctl_name = NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS,
1342 .procname = "ip_conntrack_tcp_max_retrans",
1343 .data = &nf_ct_tcp_max_retrans,
1344 .maxlen = sizeof(unsigned int),
1345 .mode = 0644,
1346 .proc_handler = &proc_dointvec,
1347 },
1348 {
1349 .ctl_name = 0
1350 }
1351};
1352#endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */
Patrick McHardy933a41e2006-11-29 02:35:18 +01001353#endif /* CONFIG_SYSCTL */
1354
Patrick McHardy61075af2007-07-14 20:48:19 -07001355struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp4 __read_mostly =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001356{
1357 .l3proto = PF_INET,
Martin Josefsson605dcad2006-11-29 02:35:06 +01001358 .l4proto = IPPROTO_TCP,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001359 .name = "tcp",
1360 .pkt_to_tuple = tcp_pkt_to_tuple,
1361 .invert_tuple = tcp_invert_tuple,
1362 .print_tuple = tcp_print_tuple,
1363 .print_conntrack = tcp_print_conntrack,
1364 .packet = tcp_packet,
1365 .new = tcp_new,
Patrick McHardy96f6bf82006-04-06 14:19:24 -07001366 .error = tcp_error,
Patrick McHardye281db5c2007-03-04 15:57:25 -08001367#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -07001368 .to_nlattr = tcp_to_nlattr,
1369 .from_nlattr = nlattr_to_tcp,
1370 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1371 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -07001372 .nla_policy = nf_ct_port_nla_policy,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001373#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +01001374#ifdef CONFIG_SYSCTL
1375 .ctl_table_users = &tcp_sysctl_table_users,
1376 .ctl_table_header = &tcp_sysctl_header,
1377 .ctl_table = tcp_sysctl_table,
Patrick McHardya999e682006-11-29 02:35:20 +01001378#ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT
1379 .ctl_compat_table = tcp_compat_sysctl_table,
1380#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +01001381#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001382};
Patrick McHardy13b18332006-12-02 22:11:25 -08001383EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp4);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001384
Patrick McHardy61075af2007-07-14 20:48:19 -07001385struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6 __read_mostly =
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001386{
1387 .l3proto = PF_INET6,
Martin Josefsson605dcad2006-11-29 02:35:06 +01001388 .l4proto = IPPROTO_TCP,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001389 .name = "tcp",
1390 .pkt_to_tuple = tcp_pkt_to_tuple,
1391 .invert_tuple = tcp_invert_tuple,
1392 .print_tuple = tcp_print_tuple,
1393 .print_conntrack = tcp_print_conntrack,
1394 .packet = tcp_packet,
1395 .new = tcp_new,
Patrick McHardy96f6bf82006-04-06 14:19:24 -07001396 .error = tcp_error,
Patrick McHardye281db5c2007-03-04 15:57:25 -08001397#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -07001398 .to_nlattr = tcp_to_nlattr,
1399 .from_nlattr = nlattr_to_tcp,
1400 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
1401 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -07001402 .nla_policy = nf_ct_port_nla_policy,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -08001403#endif
Patrick McHardy933a41e2006-11-29 02:35:18 +01001404#ifdef CONFIG_SYSCTL
1405 .ctl_table_users = &tcp_sysctl_table_users,
1406 .ctl_table_header = &tcp_sysctl_header,
1407 .ctl_table = tcp_sysctl_table,
1408#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001409};
Patrick McHardy13b18332006-12-02 22:11:25 -08001410EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_tcp6);