blob: beb5094703cb5e7c6d897bd34f0ccf4a4b86c7ce [file] [log] [blame]
Patrick McHardycdd289a2007-02-07 15:09:46 -08001/*
2 * This is a module which is used for setting the MSS option in TCP packets.
3 *
4 * Copyright (C) 2000 Marc Boucher <marc@mbsi.ca>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/skbuff.h>
13#include <linux/ip.h>
14#include <linux/ipv6.h>
15#include <linux/tcp.h>
Jan Engelhardt37c08382008-01-31 04:06:10 -080016#include <net/dst.h>
17#include <net/flow.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080018#include <net/ipv6.h>
Jan Engelhardt37c08382008-01-31 04:06:10 -080019#include <net/route.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080020#include <net/tcp.h>
21
22#include <linux/netfilter_ipv4/ip_tables.h>
23#include <linux/netfilter_ipv6/ip6_tables.h>
24#include <linux/netfilter/x_tables.h>
25#include <linux/netfilter/xt_tcpudp.h>
26#include <linux/netfilter/xt_TCPMSS.h>
27
28MODULE_LICENSE("GPL");
29MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080030MODULE_DESCRIPTION("Xtables: TCP Maximum Segment Size (MSS) adjustment");
Patrick McHardycdd289a2007-02-07 15:09:46 -080031MODULE_ALIAS("ipt_TCPMSS");
32MODULE_ALIAS("ip6t_TCPMSS");
33
34static inline unsigned int
35optlen(const u_int8_t *opt, unsigned int offset)
36{
37 /* Beware zero-length options: make finite progress */
38 if (opt[offset] <= TCPOPT_NOP || opt[offset+1] == 0)
39 return 1;
40 else
41 return opt[offset+1];
42}
43
44static int
Herbert Xu3db05fe2007-10-15 00:53:15 -070045tcpmss_mangle_packet(struct sk_buff *skb,
Patrick McHardycdd289a2007-02-07 15:09:46 -080046 const struct xt_tcpmss_info *info,
Jan Engelhardt37c08382008-01-31 04:06:10 -080047 unsigned int in_mtu,
Patrick McHardycdd289a2007-02-07 15:09:46 -080048 unsigned int tcphoff,
49 unsigned int minlen)
50{
51 struct tcphdr *tcph;
52 unsigned int tcplen, i;
53 __be16 oldval;
54 u16 newmss;
55 u8 *opt;
56
Herbert Xu3db05fe2007-10-15 00:53:15 -070057 if (!skb_make_writable(skb, skb->len))
Patrick McHardycdd289a2007-02-07 15:09:46 -080058 return -1;
59
Herbert Xu3db05fe2007-10-15 00:53:15 -070060 tcplen = skb->len - tcphoff;
61 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
Patrick McHardycdd289a2007-02-07 15:09:46 -080062
63 /* Since it passed flags test in tcp match, we know it is is
64 not a fragment, and has data >= tcp header length. SYN
65 packets should not contain data: if they did, then we risk
66 running over MTU, sending Frag Needed and breaking things
67 badly. --RR */
68 if (tcplen != tcph->doff*4) {
69 if (net_ratelimit())
70 printk(KERN_ERR "xt_TCPMSS: bad length (%u bytes)\n",
Herbert Xu3db05fe2007-10-15 00:53:15 -070071 skb->len);
Patrick McHardycdd289a2007-02-07 15:09:46 -080072 return -1;
73 }
74
75 if (info->mss == XT_TCPMSS_CLAMP_PMTU) {
Herbert Xu3db05fe2007-10-15 00:53:15 -070076 if (dst_mtu(skb->dst) <= minlen) {
Patrick McHardycdd289a2007-02-07 15:09:46 -080077 if (net_ratelimit())
78 printk(KERN_ERR "xt_TCPMSS: "
79 "unknown or invalid path-MTU (%u)\n",
Herbert Xu3db05fe2007-10-15 00:53:15 -070080 dst_mtu(skb->dst));
Patrick McHardycdd289a2007-02-07 15:09:46 -080081 return -1;
82 }
Jan Engelhardt37c08382008-01-31 04:06:10 -080083 if (in_mtu <= minlen) {
84 if (net_ratelimit())
85 printk(KERN_ERR "xt_TCPMSS: unknown or "
86 "invalid path-MTU (%u)\n", in_mtu);
87 return -1;
88 }
89 newmss = min(dst_mtu(skb->dst), in_mtu) - minlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -080090 } else
91 newmss = info->mss;
92
93 opt = (u_int8_t *)tcph;
94 for (i = sizeof(struct tcphdr); i < tcph->doff*4; i += optlen(opt, i)) {
95 if (opt[i] == TCPOPT_MSS && tcph->doff*4 - i >= TCPOLEN_MSS &&
96 opt[i+1] == TCPOLEN_MSS) {
97 u_int16_t oldmss;
98
99 oldmss = (opt[i+2] << 8) | opt[i+3];
100
Benjamin LaHaise17008062007-12-17 22:27:36 -0800101 /* Never increase MSS, even when setting it, as
102 * doing so results in problems for hosts that rely
103 * on MSS being set correctly.
104 */
105 if (oldmss <= newmss)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800106 return 0;
107
108 opt[i+2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700109 opt[i+3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800110
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100111 inet_proto_csum_replace2(&tcph->check, skb,
112 htons(oldmss), htons(newmss),
113 0);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800114 return 0;
115 }
116 }
117
118 /*
119 * MSS Option not found ?! add it..
120 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700121 if (skb_tailroom(skb) < TCPOLEN_MSS) {
122 if (pskb_expand_head(skb, 0,
123 TCPOLEN_MSS - skb_tailroom(skb),
Herbert Xu2ca7b0a2007-10-14 00:39:55 -0700124 GFP_ATOMIC))
Patrick McHardycdd289a2007-02-07 15:09:46 -0800125 return -1;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700126 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800127 }
128
Herbert Xu3db05fe2007-10-15 00:53:15 -0700129 skb_put(skb, TCPOLEN_MSS);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800130
131 opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
132 memmove(opt + TCPOLEN_MSS, opt, tcplen - sizeof(struct tcphdr));
133
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100134 inet_proto_csum_replace2(&tcph->check, skb,
135 htons(tcplen), htons(tcplen + TCPOLEN_MSS), 1);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800136 opt[0] = TCPOPT_MSS;
137 opt[1] = TCPOLEN_MSS;
138 opt[2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700139 opt[3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800140
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100141 inet_proto_csum_replace4(&tcph->check, skb, 0, *((__be32 *)opt), 0);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800142
143 oldval = ((__be16 *)tcph)[6];
144 tcph->doff += TCPOLEN_MSS/4;
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100145 inet_proto_csum_replace2(&tcph->check, skb,
146 oldval, ((__be16 *)tcph)[6], 0);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800147 return TCPOLEN_MSS;
148}
149
Jan Engelhardtdb1a75b2008-07-21 10:02:59 -0700150static u_int32_t tcpmss_reverse_mtu(const struct sk_buff *skb,
151 unsigned int family)
Jan Engelhardt37c08382008-01-31 04:06:10 -0800152{
Jan Engelhardtdb1a75b2008-07-21 10:02:59 -0700153 struct flowi fl = {};
Jan Engelhardt37c08382008-01-31 04:06:10 -0800154 const struct nf_afinfo *ai;
155 struct rtable *rt = NULL;
156 u_int32_t mtu = ~0U;
157
Jan Engelhardtdb1a75b2008-07-21 10:02:59 -0700158 if (family == PF_INET)
159 fl.fl4_dst = ip_hdr(skb)->saddr;
160 else
161 fl.fl6_dst = ipv6_hdr(skb)->saddr;
162
Jan Engelhardt37c08382008-01-31 04:06:10 -0800163 rcu_read_lock();
Jan Engelhardtdb1a75b2008-07-21 10:02:59 -0700164 ai = nf_get_afinfo(family);
Jan Engelhardt37c08382008-01-31 04:06:10 -0800165 if (ai != NULL)
166 ai->route((struct dst_entry **)&rt, &fl);
167 rcu_read_unlock();
168
169 if (rt != NULL) {
170 mtu = dst_mtu(&rt->u.dst);
171 dst_release(&rt->u.dst);
172 }
173 return mtu;
174}
175
Patrick McHardycdd289a2007-02-07 15:09:46 -0800176static unsigned int
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800177tcpmss_tg4(struct sk_buff *skb, const struct net_device *in,
178 const struct net_device *out, unsigned int hooknum,
179 const struct xt_target *target, const void *targinfo)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800180{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700181 struct iphdr *iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800182 __be16 newlen;
183 int ret;
184
Jan Engelhardtdb1a75b2008-07-21 10:02:59 -0700185 ret = tcpmss_mangle_packet(skb, targinfo,
186 tcpmss_reverse_mtu(skb, PF_INET),
Jan Engelhardt37c08382008-01-31 04:06:10 -0800187 iph->ihl * 4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800188 sizeof(*iph) + sizeof(struct tcphdr));
189 if (ret < 0)
190 return NF_DROP;
191 if (ret > 0) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700192 iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800193 newlen = htons(ntohs(iph->tot_len) + ret);
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100194 csum_replace2(&iph->check, iph->tot_len, newlen);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800195 iph->tot_len = newlen;
196 }
197 return XT_CONTINUE;
198}
199
200#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
201static unsigned int
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800202tcpmss_tg6(struct sk_buff *skb, const struct net_device *in,
203 const struct net_device *out, unsigned int hooknum,
204 const struct xt_target *target, const void *targinfo)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800205{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700206 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800207 u8 nexthdr;
208 int tcphoff;
209 int ret;
210
211 nexthdr = ipv6h->nexthdr;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700212 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr);
Patrick McHardy9dc05642007-11-30 23:58:03 +1100213 if (tcphoff < 0)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800214 return NF_DROP;
Jan Engelhardtdb1a75b2008-07-21 10:02:59 -0700215 ret = tcpmss_mangle_packet(skb, targinfo,
216 tcpmss_reverse_mtu(skb, PF_INET6),
Jan Engelhardt37c08382008-01-31 04:06:10 -0800217 tcphoff,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800218 sizeof(*ipv6h) + sizeof(struct tcphdr));
219 if (ret < 0)
220 return NF_DROP;
221 if (ret > 0) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700222 ipv6h = ipv6_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800223 ipv6h->payload_len = htons(ntohs(ipv6h->payload_len) + ret);
224 }
225 return XT_CONTINUE;
226}
227#endif
228
229#define TH_SYN 0x02
230
231/* Must specify -p tcp --syn */
Jan Engelhardte1931b72007-07-07 22:16:26 -0700232static inline bool find_syn_match(const struct xt_entry_match *m)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800233{
234 const struct xt_tcp *tcpinfo = (const struct xt_tcp *)m->data;
235
236 if (strcmp(m->u.kernel.match->name, "tcp") == 0 &&
237 tcpinfo->flg_cmp & TH_SYN &&
238 !(tcpinfo->invflags & XT_TCP_INV_FLAGS))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700239 return true;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800240
Jan Engelhardte1931b72007-07-07 22:16:26 -0700241 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800242}
243
Jan Engelhardte1931b72007-07-07 22:16:26 -0700244static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800245tcpmss_tg4_check(const char *tablename, const void *entry,
246 const struct xt_target *target, void *targinfo,
247 unsigned int hook_mask)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800248{
249 const struct xt_tcpmss_info *info = targinfo;
250 const struct ipt_entry *e = entry;
251
252 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800253 (hook_mask & ~((1 << NF_INET_FORWARD) |
254 (1 << NF_INET_LOCAL_OUT) |
255 (1 << NF_INET_POST_ROUTING))) != 0) {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800256 printk("xt_TCPMSS: path-MTU clamping only supported in "
257 "FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700258 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800259 }
260 if (IPT_MATCH_ITERATE(e, find_syn_match))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700261 return true;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800262 printk("xt_TCPMSS: Only works on TCP SYN packets\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700263 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800264}
265
266#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700267static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800268tcpmss_tg6_check(const char *tablename, const void *entry,
269 const struct xt_target *target, void *targinfo,
270 unsigned int hook_mask)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800271{
272 const struct xt_tcpmss_info *info = targinfo;
273 const struct ip6t_entry *e = entry;
274
275 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800276 (hook_mask & ~((1 << NF_INET_FORWARD) |
277 (1 << NF_INET_LOCAL_OUT) |
278 (1 << NF_INET_POST_ROUTING))) != 0) {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800279 printk("xt_TCPMSS: path-MTU clamping only supported in "
280 "FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700281 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800282 }
283 if (IP6T_MATCH_ITERATE(e, find_syn_match))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700284 return true;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800285 printk("xt_TCPMSS: Only works on TCP SYN packets\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700286 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800287}
288#endif
289
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800290static struct xt_target tcpmss_tg_reg[] __read_mostly = {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800291 {
292 .family = AF_INET,
293 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800294 .checkentry = tcpmss_tg4_check,
295 .target = tcpmss_tg4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800296 .targetsize = sizeof(struct xt_tcpmss_info),
297 .proto = IPPROTO_TCP,
298 .me = THIS_MODULE,
299 },
300#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
301 {
302 .family = AF_INET6,
303 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800304 .checkentry = tcpmss_tg6_check,
305 .target = tcpmss_tg6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800306 .targetsize = sizeof(struct xt_tcpmss_info),
307 .proto = IPPROTO_TCP,
308 .me = THIS_MODULE,
309 },
310#endif
311};
312
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800313static int __init tcpmss_tg_init(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800314{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800315 return xt_register_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800316}
317
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800318static void __exit tcpmss_tg_exit(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800319{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800320 xt_unregister_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800321}
322
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800323module_init(tcpmss_tg_init);
324module_exit(tcpmss_tg_exit);