2 * This is a module which is used for setting the MSS option in TCP packets.
4 * Copyright (C) 2000 Marc Boucher <marc@mbsi.ca>
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.
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
14 #include <linux/ipv6.h>
15 #include <linux/tcp.h>
19 #include <linux/netfilter_ipv4/ip_tables.h>
20 #include <linux/netfilter_ipv6/ip6_tables.h>
21 #include <linux/netfilter/x_tables.h>
22 #include <linux/netfilter/xt_tcpudp.h>
23 #include <linux/netfilter/xt_TCPMSS.h>
25 MODULE_LICENSE("GPL");
26 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
27 MODULE_DESCRIPTION("x_tables TCP MSS modification module");
28 MODULE_ALIAS("ipt_TCPMSS");
29 MODULE_ALIAS("ip6t_TCPMSS");
31 static inline unsigned int
32 optlen(const u_int8_t *opt, unsigned int offset)
34 /* Beware zero-length options: make finite progress */
35 if (opt[offset] <= TCPOPT_NOP || opt[offset+1] == 0)
42 tcpmss_mangle_packet(struct sk_buff *skb,
43 const struct xt_tcpmss_info *info,
48 unsigned int tcplen, i;
53 if (!skb_make_writable(skb, skb->len))
56 tcplen = skb->len - tcphoff;
57 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
59 /* Since it passed flags test in tcp match, we know it is is
60 not a fragment, and has data >= tcp header length. SYN
61 packets should not contain data: if they did, then we risk
62 running over MTU, sending Frag Needed and breaking things
64 if (tcplen != tcph->doff*4) {
66 printk(KERN_ERR "xt_TCPMSS: bad length (%u bytes)\n",
71 if (info->mss == XT_TCPMSS_CLAMP_PMTU) {
72 if (dst_mtu(skb->dst) <= minlen) {
74 printk(KERN_ERR "xt_TCPMSS: "
75 "unknown or invalid path-MTU (%u)\n",
79 newmss = dst_mtu(skb->dst) - minlen;
83 opt = (u_int8_t *)tcph;
84 for (i = sizeof(struct tcphdr); i < tcph->doff*4; i += optlen(opt, i)) {
85 if (opt[i] == TCPOPT_MSS && tcph->doff*4 - i >= TCPOLEN_MSS &&
86 opt[i+1] == TCPOLEN_MSS) {
89 oldmss = (opt[i+2] << 8) | opt[i+3];
91 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
95 opt[i+2] = (newmss & 0xff00) >> 8;
96 opt[i+3] = newmss & 0x00ff;
98 nf_proto_csum_replace2(&tcph->check, skb,
99 htons(oldmss), htons(newmss), 0);
105 * MSS Option not found ?! add it..
107 if (skb_tailroom(skb) < TCPOLEN_MSS) {
108 if (pskb_expand_head(skb, 0,
109 TCPOLEN_MSS - skb_tailroom(skb),
112 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
115 skb_put(skb, TCPOLEN_MSS);
117 opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
118 memmove(opt + TCPOLEN_MSS, opt, tcplen - sizeof(struct tcphdr));
120 nf_proto_csum_replace2(&tcph->check, skb,
121 htons(tcplen), htons(tcplen + TCPOLEN_MSS), 1);
123 opt[1] = TCPOLEN_MSS;
124 opt[2] = (newmss & 0xff00) >> 8;
125 opt[3] = newmss & 0x00ff;
127 nf_proto_csum_replace4(&tcph->check, skb, 0, *((__be32 *)opt), 0);
129 oldval = ((__be16 *)tcph)[6];
130 tcph->doff += TCPOLEN_MSS/4;
131 nf_proto_csum_replace2(&tcph->check, skb,
132 oldval, ((__be16 *)tcph)[6], 0);
137 xt_tcpmss_target4(struct sk_buff *skb,
138 const struct net_device *in,
139 const struct net_device *out,
140 unsigned int hooknum,
141 const struct xt_target *target,
142 const void *targinfo)
144 struct iphdr *iph = ip_hdr(skb);
148 ret = tcpmss_mangle_packet(skb, targinfo, iph->ihl * 4,
149 sizeof(*iph) + sizeof(struct tcphdr));
154 newlen = htons(ntohs(iph->tot_len) + ret);
155 nf_csum_replace2(&iph->check, iph->tot_len, newlen);
156 iph->tot_len = newlen;
161 #if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
163 xt_tcpmss_target6(struct sk_buff *skb,
164 const struct net_device *in,
165 const struct net_device *out,
166 unsigned int hooknum,
167 const struct xt_target *target,
168 const void *targinfo)
170 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
175 nexthdr = ipv6h->nexthdr;
176 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr);
179 ret = tcpmss_mangle_packet(skb, targinfo, tcphoff,
180 sizeof(*ipv6h) + sizeof(struct tcphdr));
184 ipv6h = ipv6_hdr(skb);
185 ipv6h->payload_len = htons(ntohs(ipv6h->payload_len) + ret);
193 /* Must specify -p tcp --syn */
194 static inline bool find_syn_match(const struct xt_entry_match *m)
196 const struct xt_tcp *tcpinfo = (const struct xt_tcp *)m->data;
198 if (strcmp(m->u.kernel.match->name, "tcp") == 0 &&
199 tcpinfo->flg_cmp & TH_SYN &&
200 !(tcpinfo->invflags & XT_TCP_INV_FLAGS))
207 xt_tcpmss_checkentry4(const char *tablename,
209 const struct xt_target *target,
211 unsigned int hook_mask)
213 const struct xt_tcpmss_info *info = targinfo;
214 const struct ipt_entry *e = entry;
216 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
217 (hook_mask & ~((1 << NF_IP_FORWARD) |
218 (1 << NF_IP_LOCAL_OUT) |
219 (1 << NF_IP_POST_ROUTING))) != 0) {
220 printk("xt_TCPMSS: path-MTU clamping only supported in "
221 "FORWARD, OUTPUT and POSTROUTING hooks\n");
224 if (IPT_MATCH_ITERATE(e, find_syn_match))
226 printk("xt_TCPMSS: Only works on TCP SYN packets\n");
230 #if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
232 xt_tcpmss_checkentry6(const char *tablename,
234 const struct xt_target *target,
236 unsigned int hook_mask)
238 const struct xt_tcpmss_info *info = targinfo;
239 const struct ip6t_entry *e = entry;
241 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
242 (hook_mask & ~((1 << NF_IP6_FORWARD) |
243 (1 << NF_IP6_LOCAL_OUT) |
244 (1 << NF_IP6_POST_ROUTING))) != 0) {
245 printk("xt_TCPMSS: path-MTU clamping only supported in "
246 "FORWARD, OUTPUT and POSTROUTING hooks\n");
249 if (IP6T_MATCH_ITERATE(e, find_syn_match))
251 printk("xt_TCPMSS: Only works on TCP SYN packets\n");
256 static struct xt_target xt_tcpmss_reg[] __read_mostly = {
260 .checkentry = xt_tcpmss_checkentry4,
261 .target = xt_tcpmss_target4,
262 .targetsize = sizeof(struct xt_tcpmss_info),
263 .proto = IPPROTO_TCP,
266 #if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
270 .checkentry = xt_tcpmss_checkentry6,
271 .target = xt_tcpmss_target6,
272 .targetsize = sizeof(struct xt_tcpmss_info),
273 .proto = IPPROTO_TCP,
279 static int __init xt_tcpmss_init(void)
281 return xt_register_targets(xt_tcpmss_reg, ARRAY_SIZE(xt_tcpmss_reg));
284 static void __exit xt_tcpmss_fini(void)
286 xt_unregister_targets(xt_tcpmss_reg, ARRAY_SIZE(xt_tcpmss_reg));
289 module_init(xt_tcpmss_init);
290 module_exit(xt_tcpmss_fini);