treewide: Use fallthrough pseudo-keyword
[linux-block.git] / net / netfilter / ipvs / ip_vs_proto_tcp.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * ip_vs_proto_tcp.c: TCP load balancing support for IPVS
4 *
1da177e4
LT
5 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
6 * Julian Anastasov <ja@ssi.bg>
7 *
4a85b96c 8 * Changes: Hans Schillstrom <hans.schillstrom@ericsson.com>
1da177e4 9 *
4a85b96c
HS
10 * Network name space (netns) aware.
11 * Global data moved to netns i.e struct netns_ipvs
12 * tcp_timeouts table has copy per netns in a hash table per
13 * protocol ip_vs_proto_data and is handled by netns
1da177e4
LT
14 */
15
9aada7ac
HE
16#define KMSG_COMPONENT "IPVS"
17#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
18
1da177e4
LT
19#include <linux/kernel.h>
20#include <linux/ip.h>
21#include <linux/tcp.h> /* for tcphdr */
22#include <net/ip.h>
23#include <net/tcp.h> /* for csum_tcpudp_magic */
63f2c046 24#include <net/ip6_checksum.h>
af1e1cf0 25#include <linux/netfilter.h>
1da177e4 26#include <linux/netfilter_ipv4.h>
6ecd7548 27#include <linux/indirect_call_wrapper.h>
1da177e4
LT
28
29#include <net/ip_vs.h>
30
fe19a8fe
MC
31static int
32tcp_csum_check(int af, struct sk_buff *skb, struct ip_vs_protocol *pp);
33
1da177e4 34static int
d8f44c33
EB
35tcp_conn_schedule(struct netns_ipvs *ipvs, int af, struct sk_buff *skb,
36 struct ip_vs_proto_data *pd,
d4383f04
JDB
37 int *verdict, struct ip_vs_conn **cpp,
38 struct ip_vs_iphdr *iph)
1da177e4
LT
39{
40 struct ip_vs_service *svc;
41 struct tcphdr _tcph, *th;
8f88ea68 42 __be16 _ports[2], *ports = NULL;
1da177e4 43
8f88ea68
AG
44 /* In the event of icmp, we're only guaranteed to have the first 8
45 * bytes of the transport header, so we only check the rest of the
46 * TCP packet for non-ICMP packets
47 */
48 if (likely(!ip_vs_iph_icmp(iph))) {
49 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph);
50 if (th) {
51 if (th->rst || !(sysctl_sloppy_tcp(ipvs) || th->syn))
52 return 1;
53 ports = &th->source;
54 }
55 } else {
56 ports = skb_header_pointer(
57 skb, iph->len, sizeof(_ports), &_ports);
6044eeff
AG
58 }
59
8f88ea68 60 if (!ports) {
1da177e4
LT
61 *verdict = NF_DROP;
62 return 0;
63 }
6044eeff 64
190ecd27 65 /* No !th->ack check to allow scheduling on SYN+ACK for Active FTP */
8f88ea68
AG
66
67 if (likely(!ip_vs_iph_inverse(iph)))
0a4fd6ce 68 svc = ip_vs_service_find(ipvs, af, skb->mark, iph->protocol,
8f88ea68
AG
69 &iph->daddr, ports[1]);
70 else
0a4fd6ce 71 svc = ip_vs_service_find(ipvs, af, skb->mark, iph->protocol,
8f88ea68
AG
72 &iph->saddr, ports[0]);
73
74 if (svc) {
190ecd27
JA
75 int ignored;
76
c6c96c18 77 if (ip_vs_todrop(ipvs)) {
1da177e4
LT
78 /*
79 * It seems that we are very loaded.
80 * We have to drop this packet :(
81 */
1da177e4
LT
82 *verdict = NF_DROP;
83 return 0;
84 }
85
86 /*
87 * Let the virtual server select a real server for the
88 * incoming connection, and create a connection entry.
89 */
d4383f04 90 *cpp = ip_vs_schedule(svc, skb, pd, &ignored, iph);
a5959d53
HS
91 if (!*cpp && ignored <= 0) {
92 if (!ignored)
d4383f04 93 *verdict = ip_vs_leave(svc, skb, pd, iph);
ceec4c38 94 else
a5959d53 95 *verdict = NF_DROP;
1da177e4
LT
96 return 0;
97 }
1da177e4 98 }
a5959d53 99 /* NF_ACCEPT */
1da177e4
LT
100 return 1;
101}
102
103
104static inline void
0bbdd42b
JV
105tcp_fast_csum_update(int af, struct tcphdr *tcph,
106 const union nf_inet_addr *oldip,
107 const union nf_inet_addr *newip,
014d730d 108 __be16 oldport, __be16 newport)
1da177e4 109{
0bbdd42b
JV
110#ifdef CONFIG_IP_VS_IPV6
111 if (af == AF_INET6)
112 tcph->check =
113 csum_fold(ip_vs_check_diff16(oldip->ip6, newip->ip6,
114 ip_vs_check_diff2(oldport, newport,
115 ~csum_unfold(tcph->check))));
116 else
117#endif
1da177e4 118 tcph->check =
0bbdd42b 119 csum_fold(ip_vs_check_diff4(oldip->ip, newip->ip,
f9214b26
AV
120 ip_vs_check_diff2(oldport, newport,
121 ~csum_unfold(tcph->check))));
1da177e4
LT
122}
123
124
503e81f6
SH
125static inline void
126tcp_partial_csum_update(int af, struct tcphdr *tcph,
127 const union nf_inet_addr *oldip,
128 const union nf_inet_addr *newip,
129 __be16 oldlen, __be16 newlen)
130{
131#ifdef CONFIG_IP_VS_IPV6
132 if (af == AF_INET6)
133 tcph->check =
5bc9068e 134 ~csum_fold(ip_vs_check_diff16(oldip->ip6, newip->ip6,
503e81f6 135 ip_vs_check_diff2(oldlen, newlen,
5bc9068e 136 csum_unfold(tcph->check))));
503e81f6
SH
137 else
138#endif
139 tcph->check =
5bc9068e 140 ~csum_fold(ip_vs_check_diff4(oldip->ip, newip->ip,
503e81f6 141 ip_vs_check_diff2(oldlen, newlen,
5bc9068e 142 csum_unfold(tcph->check))));
503e81f6
SH
143}
144
145
6ecd7548 146INDIRECT_CALLABLE_SCOPE int
d4383f04
JDB
147tcp_snat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp,
148 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph)
1da177e4
LT
149{
150 struct tcphdr *tcph;
d4383f04 151 unsigned int tcphoff = iph->len;
f25a9b85 152 bool payload_csum = false;
503e81f6 153 int oldlen;
0bbdd42b
JV
154
155#ifdef CONFIG_IP_VS_IPV6
d4383f04 156 if (cp->af == AF_INET6 && iph->fragoffs)
63dca2c0 157 return 1;
0bbdd42b 158#endif
503e81f6 159 oldlen = skb->len - tcphoff;
1da177e4
LT
160
161 /* csum_check requires unshared skb */
ec0974df 162 if (skb_ensure_writable(skb, tcphoff + sizeof(*tcph)))
1da177e4
LT
163 return 0;
164
165 if (unlikely(cp->app != NULL)) {
8b27b10f
JA
166 int ret;
167
1da177e4 168 /* Some checks before mangling */
fe19a8fe 169 if (!tcp_csum_check(cp->af, skb, pp))
1da177e4
LT
170 return 0;
171
172 /* Call application helper if needed */
d12e1229 173 if (!(ret = ip_vs_app_pkt_out(cp, skb, iph)))
1da177e4 174 return 0;
8b27b10f
JA
175 /* ret=2: csum update is needed after payload mangling */
176 if (ret == 1)
177 oldlen = skb->len - tcphoff;
178 else
f25a9b85 179 payload_csum = true;
1da177e4
LT
180 }
181
0bbdd42b 182 tcph = (void *)skb_network_header(skb) + tcphoff;
1da177e4
LT
183 tcph->source = cp->vport;
184
185 /* Adjust TCP checksums */
503e81f6
SH
186 if (skb->ip_summed == CHECKSUM_PARTIAL) {
187 tcp_partial_csum_update(cp->af, tcph, &cp->daddr, &cp->vaddr,
ca62059b
HH
188 htons(oldlen),
189 htons(skb->len - tcphoff));
8b27b10f 190 } else if (!payload_csum) {
1da177e4 191 /* Only port and addr are changed, do fast csum update */
0bbdd42b 192 tcp_fast_csum_update(cp->af, tcph, &cp->daddr, &cp->vaddr,
1da177e4 193 cp->dport, cp->vport);
3db05fea 194 if (skb->ip_summed == CHECKSUM_COMPLETE)
fe19a8fe 195 skb->ip_summed = cp->app ?
8b27b10f 196 CHECKSUM_UNNECESSARY : CHECKSUM_NONE;
1da177e4
LT
197 } else {
198 /* full checksum calculation */
199 tcph->check = 0;
3db05fea 200 skb->csum = skb_checksum(skb, tcphoff, skb->len - tcphoff, 0);
0bbdd42b
JV
201#ifdef CONFIG_IP_VS_IPV6
202 if (cp->af == AF_INET6)
203 tcph->check = csum_ipv6_magic(&cp->vaddr.in6,
204 &cp->caddr.in6,
205 skb->len - tcphoff,
206 cp->protocol, skb->csum);
207 else
208#endif
209 tcph->check = csum_tcpudp_magic(cp->vaddr.ip,
210 cp->caddr.ip,
211 skb->len - tcphoff,
212 cp->protocol,
213 skb->csum);
8b27b10f 214 skb->ip_summed = CHECKSUM_UNNECESSARY;
0bbdd42b 215
1da177e4
LT
216 IP_VS_DBG(11, "O-pkt: %s O-csum=%d (+%zd)\n",
217 pp->name, tcph->check,
218 (char*)&(tcph->check) - (char*)tcph);
219 }
220 return 1;
221}
222
223
224static int
d4383f04
JDB
225tcp_dnat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp,
226 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph)
1da177e4
LT
227{
228 struct tcphdr *tcph;
d4383f04 229 unsigned int tcphoff = iph->len;
f25a9b85 230 bool payload_csum = false;
503e81f6 231 int oldlen;
0bbdd42b
JV
232
233#ifdef CONFIG_IP_VS_IPV6
d4383f04 234 if (cp->af == AF_INET6 && iph->fragoffs)
63dca2c0 235 return 1;
0bbdd42b 236#endif
503e81f6 237 oldlen = skb->len - tcphoff;
1da177e4
LT
238
239 /* csum_check requires unshared skb */
ec0974df 240 if (skb_ensure_writable(skb, tcphoff + sizeof(*tcph)))
1da177e4
LT
241 return 0;
242
243 if (unlikely(cp->app != NULL)) {
8b27b10f
JA
244 int ret;
245
1da177e4 246 /* Some checks before mangling */
fe19a8fe 247 if (!tcp_csum_check(cp->af, skb, pp))
1da177e4
LT
248 return 0;
249
250 /*
251 * Attempt ip_vs_app call.
252 * It will fix ip_vs_conn and iph ack_seq stuff
253 */
d12e1229 254 if (!(ret = ip_vs_app_pkt_in(cp, skb, iph)))
1da177e4 255 return 0;
8b27b10f
JA
256 /* ret=2: csum update is needed after payload mangling */
257 if (ret == 1)
258 oldlen = skb->len - tcphoff;
259 else
f25a9b85 260 payload_csum = true;
1da177e4
LT
261 }
262
0bbdd42b 263 tcph = (void *)skb_network_header(skb) + tcphoff;
1da177e4
LT
264 tcph->dest = cp->dport;
265
266 /*
267 * Adjust TCP checksums
268 */
503e81f6 269 if (skb->ip_summed == CHECKSUM_PARTIAL) {
5bc9068e 270 tcp_partial_csum_update(cp->af, tcph, &cp->vaddr, &cp->daddr,
ca62059b
HH
271 htons(oldlen),
272 htons(skb->len - tcphoff));
8b27b10f 273 } else if (!payload_csum) {
1da177e4 274 /* Only port and addr are changed, do fast csum update */
0bbdd42b 275 tcp_fast_csum_update(cp->af, tcph, &cp->vaddr, &cp->daddr,
1da177e4 276 cp->vport, cp->dport);
3db05fea 277 if (skb->ip_summed == CHECKSUM_COMPLETE)
fe19a8fe 278 skb->ip_summed = cp->app ?
8b27b10f 279 CHECKSUM_UNNECESSARY : CHECKSUM_NONE;
1da177e4
LT
280 } else {
281 /* full checksum calculation */
282 tcph->check = 0;
3db05fea 283 skb->csum = skb_checksum(skb, tcphoff, skb->len - tcphoff, 0);
0bbdd42b
JV
284#ifdef CONFIG_IP_VS_IPV6
285 if (cp->af == AF_INET6)
286 tcph->check = csum_ipv6_magic(&cp->caddr.in6,
287 &cp->daddr.in6,
288 skb->len - tcphoff,
289 cp->protocol, skb->csum);
290 else
291#endif
292 tcph->check = csum_tcpudp_magic(cp->caddr.ip,
293 cp->daddr.ip,
294 skb->len - tcphoff,
295 cp->protocol,
296 skb->csum);
3db05fea 297 skb->ip_summed = CHECKSUM_UNNECESSARY;
1da177e4
LT
298 }
299 return 1;
300}
301
302
303static int
51ef348b 304tcp_csum_check(int af, struct sk_buff *skb, struct ip_vs_protocol *pp)
1da177e4 305{
51ef348b
JV
306 unsigned int tcphoff;
307
308#ifdef CONFIG_IP_VS_IPV6
309 if (af == AF_INET6)
310 tcphoff = sizeof(struct ipv6hdr);
311 else
312#endif
313 tcphoff = ip_hdrlen(skb);
1da177e4
LT
314
315 switch (skb->ip_summed) {
316 case CHECKSUM_NONE:
317 skb->csum = skb_checksum(skb, tcphoff, skb->len - tcphoff, 0);
df561f66 318 fallthrough;
84fa7933 319 case CHECKSUM_COMPLETE:
51ef348b
JV
320#ifdef CONFIG_IP_VS_IPV6
321 if (af == AF_INET6) {
322 if (csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
323 &ipv6_hdr(skb)->daddr,
324 skb->len - tcphoff,
325 ipv6_hdr(skb)->nexthdr,
326 skb->csum)) {
0d79641a 327 IP_VS_DBG_RL_PKT(0, af, pp, skb, 0,
51ef348b
JV
328 "Failed checksum for");
329 return 0;
330 }
331 } else
332#endif
333 if (csum_tcpudp_magic(ip_hdr(skb)->saddr,
334 ip_hdr(skb)->daddr,
335 skb->len - tcphoff,
336 ip_hdr(skb)->protocol,
337 skb->csum)) {
0d79641a 338 IP_VS_DBG_RL_PKT(0, af, pp, skb, 0,
51ef348b
JV
339 "Failed checksum for");
340 return 0;
341 }
1da177e4
LT
342 break;
343 default:
84fa7933 344 /* No need to checksum. */
1da177e4
LT
345 break;
346 }
347
348 return 1;
349}
350
351
352#define TCP_DIR_INPUT 0
353#define TCP_DIR_OUTPUT 4
354#define TCP_DIR_INPUT_ONLY 8
355
9b5b5cff 356static const int tcp_state_off[IP_VS_DIR_LAST] = {
1da177e4
LT
357 [IP_VS_DIR_INPUT] = TCP_DIR_INPUT,
358 [IP_VS_DIR_OUTPUT] = TCP_DIR_OUTPUT,
359 [IP_VS_DIR_INPUT_ONLY] = TCP_DIR_INPUT_ONLY,
360};
361
362/*
363 * Timeout table[state]
364 */
4a85b96c 365static const int tcp_timeouts[IP_VS_TCP_S_LAST+1] = {
1da177e4
LT
366 [IP_VS_TCP_S_NONE] = 2*HZ,
367 [IP_VS_TCP_S_ESTABLISHED] = 15*60*HZ,
368 [IP_VS_TCP_S_SYN_SENT] = 2*60*HZ,
369 [IP_VS_TCP_S_SYN_RECV] = 1*60*HZ,
370 [IP_VS_TCP_S_FIN_WAIT] = 2*60*HZ,
371 [IP_VS_TCP_S_TIME_WAIT] = 2*60*HZ,
372 [IP_VS_TCP_S_CLOSE] = 10*HZ,
373 [IP_VS_TCP_S_CLOSE_WAIT] = 60*HZ,
374 [IP_VS_TCP_S_LAST_ACK] = 30*HZ,
375 [IP_VS_TCP_S_LISTEN] = 2*60*HZ,
376 [IP_VS_TCP_S_SYNACK] = 120*HZ,
377 [IP_VS_TCP_S_LAST] = 2*HZ,
378};
379
36cbd3dc 380static const char *const tcp_state_name_table[IP_VS_TCP_S_LAST+1] = {
1da177e4
LT
381 [IP_VS_TCP_S_NONE] = "NONE",
382 [IP_VS_TCP_S_ESTABLISHED] = "ESTABLISHED",
383 [IP_VS_TCP_S_SYN_SENT] = "SYN_SENT",
384 [IP_VS_TCP_S_SYN_RECV] = "SYN_RECV",
385 [IP_VS_TCP_S_FIN_WAIT] = "FIN_WAIT",
386 [IP_VS_TCP_S_TIME_WAIT] = "TIME_WAIT",
387 [IP_VS_TCP_S_CLOSE] = "CLOSE",
388 [IP_VS_TCP_S_CLOSE_WAIT] = "CLOSE_WAIT",
389 [IP_VS_TCP_S_LAST_ACK] = "LAST_ACK",
390 [IP_VS_TCP_S_LISTEN] = "LISTEN",
391 [IP_VS_TCP_S_SYNACK] = "SYNACK",
392 [IP_VS_TCP_S_LAST] = "BUG!",
393};
394
be2cef49
MK
395static const bool tcp_state_active_table[IP_VS_TCP_S_LAST] = {
396 [IP_VS_TCP_S_NONE] = false,
397 [IP_VS_TCP_S_ESTABLISHED] = true,
398 [IP_VS_TCP_S_SYN_SENT] = true,
399 [IP_VS_TCP_S_SYN_RECV] = true,
400 [IP_VS_TCP_S_FIN_WAIT] = false,
401 [IP_VS_TCP_S_TIME_WAIT] = false,
402 [IP_VS_TCP_S_CLOSE] = false,
403 [IP_VS_TCP_S_CLOSE_WAIT] = false,
404 [IP_VS_TCP_S_LAST_ACK] = false,
405 [IP_VS_TCP_S_LISTEN] = false,
406 [IP_VS_TCP_S_SYNACK] = true,
407};
408
1da177e4
LT
409#define sNO IP_VS_TCP_S_NONE
410#define sES IP_VS_TCP_S_ESTABLISHED
411#define sSS IP_VS_TCP_S_SYN_SENT
412#define sSR IP_VS_TCP_S_SYN_RECV
413#define sFW IP_VS_TCP_S_FIN_WAIT
414#define sTW IP_VS_TCP_S_TIME_WAIT
415#define sCL IP_VS_TCP_S_CLOSE
416#define sCW IP_VS_TCP_S_CLOSE_WAIT
417#define sLA IP_VS_TCP_S_LAST_ACK
418#define sLI IP_VS_TCP_S_LISTEN
419#define sSA IP_VS_TCP_S_SYNACK
420
421struct tcp_states_t {
422 int next_state[IP_VS_TCP_S_LAST];
423};
424
425static const char * tcp_state_name(int state)
426{
427 if (state >= IP_VS_TCP_S_LAST)
428 return "ERR!";
429 return tcp_state_name_table[state] ? tcp_state_name_table[state] : "?";
430}
431
be2cef49
MK
432static bool tcp_state_active(int state)
433{
434 if (state >= IP_VS_TCP_S_LAST)
435 return false;
436 return tcp_state_active_table[state];
437}
438
535101ec 439static struct tcp_states_t tcp_states[] = {
1da177e4
LT
440/* INPUT */
441/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
442/*syn*/ {{sSR, sES, sES, sSR, sSR, sSR, sSR, sSR, sSR, sSR, sSR }},
443/*fin*/ {{sCL, sCW, sSS, sTW, sTW, sTW, sCL, sCW, sLA, sLI, sTW }},
c6c96c18 444/*ack*/ {{sES, sES, sSS, sES, sFW, sTW, sCL, sCW, sCL, sLI, sES }},
1da177e4
LT
445/*rst*/ {{sCL, sCL, sCL, sSR, sCL, sCL, sCL, sCL, sLA, sLI, sSR }},
446
447/* OUTPUT */
448/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
449/*syn*/ {{sSS, sES, sSS, sSR, sSS, sSS, sSS, sSS, sSS, sLI, sSR }},
450/*fin*/ {{sTW, sFW, sSS, sTW, sFW, sTW, sCL, sTW, sLA, sLI, sTW }},
451/*ack*/ {{sES, sES, sSS, sES, sFW, sTW, sCL, sCW, sLA, sES, sES }},
452/*rst*/ {{sCL, sCL, sSS, sCL, sCL, sTW, sCL, sCL, sCL, sCL, sCL }},
453
454/* INPUT-ONLY */
455/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
456/*syn*/ {{sSR, sES, sES, sSR, sSR, sSR, sSR, sSR, sSR, sSR, sSR }},
457/*fin*/ {{sCL, sFW, sSS, sTW, sFW, sTW, sCL, sCW, sLA, sLI, sTW }},
c6c96c18 458/*ack*/ {{sES, sES, sSS, sES, sFW, sTW, sCL, sCW, sCL, sLI, sES }},
1da177e4
LT
459/*rst*/ {{sCL, sCL, sCL, sSR, sCL, sCL, sCL, sCL, sLA, sLI, sCL }},
460};
461
535101ec 462static struct tcp_states_t tcp_states_dos[] = {
1da177e4
LT
463/* INPUT */
464/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
465/*syn*/ {{sSR, sES, sES, sSR, sSR, sSR, sSR, sSR, sSR, sSR, sSA }},
466/*fin*/ {{sCL, sCW, sSS, sTW, sTW, sTW, sCL, sCW, sLA, sLI, sSA }},
c6c96c18 467/*ack*/ {{sES, sES, sSS, sSR, sFW, sTW, sCL, sCW, sCL, sLI, sSA }},
1da177e4
LT
468/*rst*/ {{sCL, sCL, sCL, sSR, sCL, sCL, sCL, sCL, sLA, sLI, sCL }},
469
470/* OUTPUT */
471/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
472/*syn*/ {{sSS, sES, sSS, sSA, sSS, sSS, sSS, sSS, sSS, sLI, sSA }},
473/*fin*/ {{sTW, sFW, sSS, sTW, sFW, sTW, sCL, sTW, sLA, sLI, sTW }},
474/*ack*/ {{sES, sES, sSS, sES, sFW, sTW, sCL, sCW, sLA, sES, sES }},
475/*rst*/ {{sCL, sCL, sSS, sCL, sCL, sTW, sCL, sCL, sCL, sCL, sCL }},
476
477/* INPUT-ONLY */
478/* sNO, sES, sSS, sSR, sFW, sTW, sCL, sCW, sLA, sLI, sSA */
479/*syn*/ {{sSA, sES, sES, sSR, sSA, sSA, sSA, sSA, sSA, sSA, sSA }},
480/*fin*/ {{sCL, sFW, sSS, sTW, sFW, sTW, sCL, sCW, sLA, sLI, sTW }},
c6c96c18 481/*ack*/ {{sES, sES, sSS, sES, sFW, sTW, sCL, sCW, sCL, sLI, sES }},
1da177e4
LT
482/*rst*/ {{sCL, sCL, sCL, sSR, sCL, sCL, sCL, sCL, sLA, sLI, sCL }},
483};
484
9330419d 485static void tcp_timeout_change(struct ip_vs_proto_data *pd, int flags)
1da177e4
LT
486{
487 int on = (flags & 1); /* secure_tcp */
488
489 /*
490 ** FIXME: change secure_tcp to independent sysctl var
491 ** or make it per-service or per-app because it is valid
492 ** for most if not for all of the applications. Something
493 ** like "capabilities" (flags) for each object.
494 */
9330419d 495 pd->tcp_state_table = (on ? tcp_states_dos : tcp_states);
1da177e4
LT
496}
497
1da177e4
LT
498static inline int tcp_state_idx(struct tcphdr *th)
499{
500 if (th->rst)
501 return 3;
502 if (th->syn)
503 return 0;
504 if (th->fin)
505 return 1;
506 if (th->ack)
507 return 2;
508 return -1;
509}
510
511static inline void
9330419d 512set_tcp_state(struct ip_vs_proto_data *pd, struct ip_vs_conn *cp,
1da177e4
LT
513 int direction, struct tcphdr *th)
514{
515 int state_idx;
516 int new_state = IP_VS_TCP_S_CLOSE;
517 int state_off = tcp_state_off[direction];
518
519 /*
520 * Update state offset to INPUT_ONLY if necessary
521 * or delete NO_OUTPUT flag if output packet detected
522 */
523 if (cp->flags & IP_VS_CONN_F_NOOUTPUT) {
524 if (state_off == TCP_DIR_OUTPUT)
525 cp->flags &= ~IP_VS_CONN_F_NOOUTPUT;
526 else
527 state_off = TCP_DIR_INPUT_ONLY;
528 }
529
530 if ((state_idx = tcp_state_idx(th)) < 0) {
531 IP_VS_DBG(8, "tcp_state_idx=%d!!!\n", state_idx);
532 goto tcp_state_out;
533 }
534
9330419d
HS
535 new_state =
536 pd->tcp_state_table[state_off+state_idx].next_state[cp->state];
1da177e4
LT
537
538 tcp_state_out:
539 if (new_state != cp->state) {
540 struct ip_vs_dest *dest = cp->dest;
541
cfc78c5a
JV
542 IP_VS_DBG_BUF(8, "%s %s [%c%c%c%c] %s:%d->"
543 "%s:%d state: %s->%s conn->refcnt:%d\n",
9330419d 544 pd->pp->name,
cfc78c5a
JV
545 ((state_off == TCP_DIR_OUTPUT) ?
546 "output " : "input "),
547 th->syn ? 'S' : '.',
548 th->fin ? 'F' : '.',
549 th->ack ? 'A' : '.',
550 th->rst ? 'R' : '.',
f18ae720 551 IP_VS_DBG_ADDR(cp->daf, &cp->daddr),
cfc78c5a
JV
552 ntohs(cp->dport),
553 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
554 ntohs(cp->cport),
555 tcp_state_name(cp->state),
556 tcp_state_name(new_state),
b54ab92b 557 refcount_read(&cp->refcnt));
cfc78c5a 558
1da177e4
LT
559 if (dest) {
560 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) &&
be2cef49 561 !tcp_state_active(new_state)) {
1da177e4
LT
562 atomic_dec(&dest->activeconns);
563 atomic_inc(&dest->inactconns);
564 cp->flags |= IP_VS_CONN_F_INACTIVE;
565 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) &&
be2cef49 566 tcp_state_active(new_state)) {
1da177e4
LT
567 atomic_inc(&dest->activeconns);
568 atomic_dec(&dest->inactconns);
569 cp->flags &= ~IP_VS_CONN_F_INACTIVE;
570 }
571 }
27541143
JA
572 if (new_state == IP_VS_TCP_S_ESTABLISHED)
573 ip_vs_control_assure_ct(cp);
1da177e4
LT
574 }
575
4a85b96c
HS
576 if (likely(pd))
577 cp->timeout = pd->timeout_table[cp->state = new_state];
578 else /* What to do ? */
579 cp->timeout = tcp_timeouts[cp->state = new_state];
1da177e4
LT
580}
581
1da177e4
LT
582/*
583 * Handle state transitions
584 */
4a516f11 585static void
1da177e4
LT
586tcp_state_transition(struct ip_vs_conn *cp, int direction,
587 const struct sk_buff *skb,
9330419d 588 struct ip_vs_proto_data *pd)
1da177e4
LT
589{
590 struct tcphdr _tcph, *th;
591
0bbdd42b
JV
592#ifdef CONFIG_IP_VS_IPV6
593 int ihl = cp->af == AF_INET ? ip_hdrlen(skb) : sizeof(struct ipv6hdr);
594#else
595 int ihl = ip_hdrlen(skb);
596#endif
597
598 th = skb_header_pointer(skb, ihl, sizeof(_tcph), &_tcph);
1da177e4 599 if (th == NULL)
4a516f11 600 return;
1da177e4 601
ac69269a 602 spin_lock_bh(&cp->lock);
9330419d 603 set_tcp_state(pd, cp, direction, th);
ac69269a 604 spin_unlock_bh(&cp->lock);
1da177e4
LT
605}
606
75e7ce66 607static inline __u16 tcp_app_hashkey(__be16 port)
1da177e4 608{
75e7ce66
AV
609 return (((__force u16)port >> TCP_APP_TAB_BITS) ^ (__force u16)port)
610 & TCP_APP_TAB_MASK;
1da177e4
LT
611}
612
613
19648918 614static int tcp_register_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc)
1da177e4
LT
615{
616 struct ip_vs_app *i;
75e7ce66
AV
617 __u16 hash;
618 __be16 port = inc->port;
1da177e4 619 int ret = 0;
18d6ade6 620 struct ip_vs_proto_data *pd = ip_vs_proto_data_get(ipvs, IPPROTO_TCP);
1da177e4
LT
621
622 hash = tcp_app_hashkey(port);
623
4a85b96c 624 list_for_each_entry(i, &ipvs->tcp_apps[hash], p_list) {
1da177e4
LT
625 if (i->port == port) {
626 ret = -EEXIST;
627 goto out;
628 }
629 }
363c97d7 630 list_add_rcu(&inc->p_list, &ipvs->tcp_apps[hash]);
9bbac6a9 631 atomic_inc(&pd->appcnt);
1da177e4
LT
632
633 out:
1da177e4
LT
634 return ret;
635}
636
637
638static void
19648918 639tcp_unregister_app(struct netns_ipvs *ipvs, struct ip_vs_app *inc)
1da177e4 640{
19648918 641 struct ip_vs_proto_data *pd = ip_vs_proto_data_get(ipvs, IPPROTO_TCP);
4a85b96c 642
9bbac6a9 643 atomic_dec(&pd->appcnt);
363c97d7 644 list_del_rcu(&inc->p_list);
1da177e4
LT
645}
646
647
648static int
649tcp_app_conn_bind(struct ip_vs_conn *cp)
650{
58dbc6f2 651 struct netns_ipvs *ipvs = cp->ipvs;
1da177e4
LT
652 int hash;
653 struct ip_vs_app *inc;
654 int result = 0;
655
656 /* Default binding: bind app only for NAT */
657 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ)
658 return 0;
659
660 /* Lookup application incarnations and bind the right one */
661 hash = tcp_app_hashkey(cp->vport);
662
363c97d7 663 list_for_each_entry_rcu(inc, &ipvs->tcp_apps[hash], p_list) {
1da177e4
LT
664 if (inc->port == cp->vport) {
665 if (unlikely(!ip_vs_app_inc_get(inc)))
666 break;
1da177e4 667
1e3e238e 668 IP_VS_DBG_BUF(9, "%s(): Binding conn %s:%u->"
cfc78c5a
JV
669 "%s:%u to app %s on port %u\n",
670 __func__,
671 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
672 ntohs(cp->cport),
673 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
674 ntohs(cp->vport),
675 inc->name, ntohs(inc->port));
676
1da177e4
LT
677 cp->app = inc;
678 if (inc->init_conn)
679 result = inc->init_conn(inc, cp);
0b35f603 680 break;
1da177e4
LT
681 }
682 }
1da177e4 683
1da177e4
LT
684 return result;
685}
686
687
688/*
689 * Set LISTEN timeout. (ip_vs_conn_put will setup timer)
690 */
69f39093 691void ip_vs_tcp_conn_listen(struct ip_vs_conn *cp)
1da177e4 692{
69f39093 693 struct ip_vs_proto_data *pd = ip_vs_proto_data_get(cp->ipvs, IPPROTO_TCP);
4a85b96c 694
ac69269a 695 spin_lock_bh(&cp->lock);
1da177e4 696 cp->state = IP_VS_TCP_S_LISTEN;
4a85b96c
HS
697 cp->timeout = (pd ? pd->timeout_table[IP_VS_TCP_S_LISTEN]
698 : tcp_timeouts[IP_VS_TCP_S_LISTEN]);
ac69269a 699 spin_unlock_bh(&cp->lock);
1da177e4
LT
700}
701
4a85b96c
HS
702/* ---------------------------------------------
703 * timeouts is netns related now.
704 * ---------------------------------------------
705 */
1281a9c2 706static int __ip_vs_tcp_init(struct netns_ipvs *ipvs, struct ip_vs_proto_data *pd)
1da177e4 707{
4a85b96c 708 ip_vs_init_hash_table(ipvs->tcp_apps, TCP_APP_TAB_SIZE);
4a85b96c
HS
709 pd->timeout_table = ip_vs_create_timeout_table((int *)tcp_timeouts,
710 sizeof(tcp_timeouts));
582b8e3e
HS
711 if (!pd->timeout_table)
712 return -ENOMEM;
7e59b3fe 713 pd->tcp_state_table = tcp_states;
582b8e3e 714 return 0;
4a85b96c 715}
1da177e4 716
1281a9c2 717static void __ip_vs_tcp_exit(struct netns_ipvs *ipvs, struct ip_vs_proto_data *pd)
1da177e4 718{
4a85b96c 719 kfree(pd->timeout_table);
1da177e4
LT
720}
721
722
723struct ip_vs_protocol ip_vs_protocol_tcp = {
724 .name = "TCP",
725 .protocol = IPPROTO_TCP,
2ad17def 726 .num_states = IP_VS_TCP_S_LAST,
1da177e4 727 .dont_defrag = 0,
4a85b96c
HS
728 .init = NULL,
729 .exit = NULL,
730 .init_netns = __ip_vs_tcp_init,
731 .exit_netns = __ip_vs_tcp_exit,
1da177e4
LT
732 .register_app = tcp_register_app,
733 .unregister_app = tcp_unregister_app,
734 .conn_schedule = tcp_conn_schedule,
5c0d2374
SH
735 .conn_in_get = ip_vs_conn_in_get_proto,
736 .conn_out_get = ip_vs_conn_out_get_proto,
1da177e4
LT
737 .snat_handler = tcp_snat_handler,
738 .dnat_handler = tcp_dnat_handler,
1da177e4
LT
739 .state_name = tcp_state_name,
740 .state_transition = tcp_state_transition,
741 .app_conn_bind = tcp_app_conn_bind,
742 .debug_packet = ip_vs_tcpudp_debug_packet,
743 .timeout_change = tcp_timeout_change,
1da177e4 744};