blob: aa460a595d5d930e019f9bd36eb010251a5dd33e [file] [log] [blame]
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -08001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2006 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.
7 */
8
9#include <linux/types.h>
10#include <linux/init.h>
11#include <linux/ip.h>
12#include <linux/tcp.h>
13
14#include <linux/netfilter.h>
15#include <linux/netfilter/nfnetlink_conntrack.h>
16#include <net/netfilter/nf_nat.h>
17#include <net/netfilter/nf_nat_rule.h>
18#include <net/netfilter/nf_nat_protocol.h>
19#include <net/netfilter/nf_nat_core.h>
20
Patrick McHardy937e0df2008-03-20 15:15:47 +010021static u_int16_t tcp_port_rover;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080022
Changli Gaof43dc982010-08-02 17:20:54 +020023static void
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080024tcp_unique_tuple(struct nf_conntrack_tuple *tuple,
25 const struct nf_nat_range *range,
26 enum nf_nat_manip_type maniptype,
27 const struct nf_conn *ct)
28{
Changli Gaof43dc982010-08-02 17:20:54 +020029 nf_nat_proto_unique_tuple(tuple, range, maniptype, ct, &tcp_port_rover);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080030}
31
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020032static bool
Herbert Xu3db05fe2007-10-15 00:53:15 -070033tcp_manip_pkt(struct sk_buff *skb,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080034 unsigned int iphdroff,
35 const struct nf_conntrack_tuple *tuple,
36 enum nf_nat_manip_type maniptype)
37{
Jan Engelhardt82f568f2008-01-31 04:52:07 -080038 const struct iphdr *iph = (struct iphdr *)(skb->data + iphdroff);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080039 struct tcphdr *hdr;
40 unsigned int hdroff = iphdroff + iph->ihl*4;
41 __be32 oldip, newip;
42 __be16 *portptr, newport, oldport;
43 int hdrsize = 8; /* TCP connection tracking guarantees this much */
44
45 /* this could be a inner header returned in icmp packet; in such
46 cases we cannot update the checksum field since it is outside of
47 the 8 bytes of transport layer headers we are guaranteed */
Herbert Xu3db05fe2007-10-15 00:53:15 -070048 if (skb->len >= hdroff + sizeof(struct tcphdr))
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080049 hdrsize = sizeof(struct tcphdr);
50
Herbert Xu3db05fe2007-10-15 00:53:15 -070051 if (!skb_make_writable(skb, hdroff + hdrsize))
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020052 return false;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080053
Herbert Xu3db05fe2007-10-15 00:53:15 -070054 iph = (struct iphdr *)(skb->data + iphdroff);
55 hdr = (struct tcphdr *)(skb->data + hdroff);
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080056
57 if (maniptype == IP_NAT_MANIP_SRC) {
58 /* Get rid of src ip and src pt */
59 oldip = iph->saddr;
60 newip = tuple->src.u3.ip;
61 newport = tuple->src.u.tcp.port;
62 portptr = &hdr->source;
63 } else {
64 /* Get rid of dst ip and dst pt */
65 oldip = iph->daddr;
66 newip = tuple->dst.u3.ip;
67 newport = tuple->dst.u.tcp.port;
68 portptr = &hdr->dest;
69 }
70
71 oldport = *portptr;
72 *portptr = newport;
73
74 if (hdrsize < sizeof(*hdr))
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020075 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080076
Patrick McHardybe0ea7d2007-11-30 01:17:11 +110077 inet_proto_csum_replace4(&hdr->check, skb, oldip, newip, 1);
78 inet_proto_csum_replace2(&hdr->check, skb, oldport, newport, 0);
Jan Engelhardtf2ea8252008-04-14 11:15:53 +020079 return true;
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080080}
81
Patrick McHardy2b628a02007-12-17 22:37:36 -080082const struct nf_nat_protocol nf_nat_protocol_tcp = {
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080083 .protonum = IPPROTO_TCP,
84 .me = THIS_MODULE,
85 .manip_pkt = tcp_manip_pkt,
Patrick McHardy937e0df2008-03-20 15:15:47 +010086 .in_range = nf_nat_proto_in_range,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080087 .unique_tuple = tcp_unique_tuple,
Patrick McHardye281db5c2007-03-04 15:57:25 -080088#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardy535b57c2008-04-14 11:15:47 +020089 .range_to_nlattr = nf_nat_proto_range_to_nlattr,
90 .nlattr_to_range = nf_nat_proto_nlattr_to_range,
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -080091#endif
92};