ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / net / ipv4 / netfilter / ip_nat_proto_tcp.c
1 /* (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.
7  */
8
9 #include <linux/types.h>
10 #include <linux/init.h>
11 #include <linux/netfilter.h>
12 #include <linux/ip.h>
13 #include <linux/tcp.h>
14 #include <linux/if.h>
15 #include <linux/netfilter_ipv4/ip_nat.h>
16 #include <linux/netfilter_ipv4/ip_nat_rule.h>
17 #include <linux/netfilter_ipv4/ip_nat_protocol.h>
18 #include <linux/netfilter_ipv4/ip_nat_core.h>
19
20 static int
21 tcp_in_range(const struct ip_conntrack_tuple *tuple,
22              enum ip_nat_manip_type maniptype,
23              const union ip_conntrack_manip_proto *min,
24              const union ip_conntrack_manip_proto *max)
25 {
26         u_int16_t port;
27
28         if (maniptype == IP_NAT_MANIP_SRC)
29                 port = tuple->src.u.tcp.port;
30         else
31                 port = tuple->dst.u.tcp.port;
32
33         return ntohs(port) >= ntohs(min->tcp.port)
34                 && ntohs(port) <= ntohs(max->tcp.port);
35 }
36
37 static int
38 tcp_unique_tuple(struct ip_conntrack_tuple *tuple,
39                  const struct ip_nat_range *range,
40                  enum ip_nat_manip_type maniptype,
41                  const struct ip_conntrack *conntrack)
42 {
43         static u_int16_t port, *portptr;
44         unsigned int range_size, min, i;
45
46         if (maniptype == IP_NAT_MANIP_SRC)
47                 portptr = &tuple->src.u.tcp.port;
48         else
49                 portptr = &tuple->dst.u.tcp.port;
50
51         /* If no range specified... */
52         if (!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED)) {
53                 /* If it's dst rewrite, can't change port */
54                 if (maniptype == IP_NAT_MANIP_DST)
55                         return 0;
56
57                 /* Map privileged onto privileged. */
58                 if (ntohs(*portptr) < 1024) {
59                         /* Loose convention: >> 512 is credential passing */
60                         if (ntohs(*portptr)<512) {
61                                 min = 1;
62                                 range_size = 511 - min + 1;
63                         } else {
64                                 min = 600;
65                                 range_size = 1023 - min + 1;
66                         }
67                 } else {
68                         min = 1024;
69                         range_size = 65535 - 1024 + 1;
70                 }
71         } else {
72                 min = ntohs(range->min.tcp.port);
73                 range_size = ntohs(range->max.tcp.port) - min + 1;
74         }
75
76         for (i = 0; i < range_size; i++, port++) {
77                 *portptr = htons(min + port % range_size);
78                 if (!ip_nat_used_tuple(tuple, conntrack)) {
79                         return 1;
80                 }
81         }
82         return 0;
83 }
84
85 static int
86 tcp_manip_pkt(struct sk_buff **pskb,
87               unsigned int hdroff,
88               const struct ip_conntrack_manip *manip,
89               enum ip_nat_manip_type maniptype)
90 {
91         struct tcphdr *hdr;
92         u_int32_t oldip;
93         u_int16_t *portptr, oldport;
94         int hdrsize = 8; /* TCP connection tracking guarantees this much */
95
96         /* this could be a inner header returned in icmp packet; in such
97            cases we cannot update the checksum field since it is outside of
98            the 8 bytes of transport layer headers we are guaranteed */
99         if ((*pskb)->len >= hdroff + sizeof(struct tcphdr))
100                 hdrsize = sizeof(struct tcphdr);
101
102         if (!skb_ip_make_writable(pskb, hdroff + hdrsize))
103                 return 0;
104
105         hdr = (void *)(*pskb)->data + hdroff;
106
107         if (maniptype == IP_NAT_MANIP_SRC) {
108                 /* Get rid of src ip and src pt */
109                 oldip = (*pskb)->nh.iph->saddr;
110                 portptr = &hdr->source;
111         } else {
112                 /* Get rid of dst ip and dst pt */
113                 oldip = (*pskb)->nh.iph->daddr;
114                 portptr = &hdr->dest;
115         }
116
117         oldport = *portptr;
118         *portptr = manip->u.tcp.port;
119
120         if (hdrsize < sizeof(*hdr))
121                 return 1;
122
123         hdr->check = ip_nat_cheat_check(~oldip, manip->ip,
124                                         ip_nat_cheat_check(oldport ^ 0xFFFF,
125                                                            manip->u.tcp.port,
126                                                            hdr->check));
127         return 1;
128 }
129
130 static unsigned int
131 tcp_print(char *buffer,
132           const struct ip_conntrack_tuple *match,
133           const struct ip_conntrack_tuple *mask)
134 {
135         unsigned int len = 0;
136
137         if (mask->src.u.tcp.port)
138                 len += sprintf(buffer + len, "srcpt=%u ",
139                                ntohs(match->src.u.tcp.port));
140
141
142         if (mask->dst.u.tcp.port)
143                 len += sprintf(buffer + len, "dstpt=%u ",
144                                ntohs(match->dst.u.tcp.port));
145
146         return len;
147 }
148
149 static unsigned int
150 tcp_print_range(char *buffer, const struct ip_nat_range *range)
151 {
152         if (range->min.tcp.port != 0 || range->max.tcp.port != 0xFFFF) {
153                 if (range->min.tcp.port == range->max.tcp.port)
154                         return sprintf(buffer, "port %u ",
155                                        ntohs(range->min.tcp.port));
156                 else
157                         return sprintf(buffer, "ports %u-%u ",
158                                        ntohs(range->min.tcp.port),
159                                        ntohs(range->max.tcp.port));
160         }
161         else return 0;
162 }
163
164 struct ip_nat_protocol ip_nat_protocol_tcp
165 = { { NULL, NULL }, "TCP", IPPROTO_TCP,
166     tcp_manip_pkt,
167     tcp_in_range,
168     tcp_unique_tuple,
169     tcp_print,
170     tcp_print_range
171 };