Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 2 | /* |
| 3 | * This is a module which is used for setting the MSS option in TCP packets. |
| 4 | * |
| 5 | * Copyright (C) 2000 Marc Boucher <marc@mbsi.ca> |
Patrick McHardy | f229f6c | 2013-04-06 15:24:29 +0200 | [diff] [blame] | 6 | * Copyright (C) 2007 Patrick McHardy <kaber@trash.net> |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 7 | */ |
Jan Engelhardt | 8bee4ba | 2010-03-17 16:04:40 +0100 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 9 | #include <linux/module.h> |
| 10 | #include <linux/skbuff.h> |
| 11 | #include <linux/ip.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/gfp.h> |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 13 | #include <linux/ipv6.h> |
| 14 | #include <linux/tcp.h> |
Jan Engelhardt | 37c0838 | 2008-01-31 04:06:10 -0800 | [diff] [blame] | 15 | #include <net/dst.h> |
| 16 | #include <net/flow.h> |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 17 | #include <net/ipv6.h> |
Jan Engelhardt | 37c0838 | 2008-01-31 04:06:10 -0800 | [diff] [blame] | 18 | #include <net/route.h> |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 19 | #include <net/tcp.h> |
| 20 | |
| 21 | #include <linux/netfilter_ipv4/ip_tables.h> |
| 22 | #include <linux/netfilter_ipv6/ip6_tables.h> |
| 23 | #include <linux/netfilter/x_tables.h> |
| 24 | #include <linux/netfilter/xt_tcpudp.h> |
| 25 | #include <linux/netfilter/xt_TCPMSS.h> |
| 26 | |
| 27 | MODULE_LICENSE("GPL"); |
| 28 | MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>"); |
Jan Engelhardt | 2ae15b6 | 2008-01-14 23:42:28 -0800 | [diff] [blame] | 29 | MODULE_DESCRIPTION("Xtables: TCP Maximum Segment Size (MSS) adjustment"); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 30 | MODULE_ALIAS("ipt_TCPMSS"); |
| 31 | MODULE_ALIAS("ip6t_TCPMSS"); |
| 32 | |
| 33 | static inline unsigned int |
| 34 | optlen(const u_int8_t *opt, unsigned int offset) |
| 35 | { |
| 36 | /* Beware zero-length options: make finite progress */ |
| 37 | if (opt[offset] <= TCPOPT_NOP || opt[offset+1] == 0) |
| 38 | return 1; |
| 39 | else |
| 40 | return opt[offset+1]; |
| 41 | } |
| 42 | |
Gao feng | 7722e0d | 2013-09-26 15:00:31 +0800 | [diff] [blame] | 43 | static u_int32_t tcpmss_reverse_mtu(struct net *net, |
| 44 | const struct sk_buff *skb, |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 45 | unsigned int family) |
| 46 | { |
| 47 | struct flowi fl; |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 48 | struct rtable *rt = NULL; |
| 49 | u_int32_t mtu = ~0U; |
| 50 | |
| 51 | if (family == PF_INET) { |
| 52 | struct flowi4 *fl4 = &fl.u.ip4; |
| 53 | memset(fl4, 0, sizeof(*fl4)); |
| 54 | fl4->daddr = ip_hdr(skb)->saddr; |
| 55 | } else { |
| 56 | struct flowi6 *fl6 = &fl.u.ip6; |
| 57 | |
| 58 | memset(fl6, 0, sizeof(*fl6)); |
| 59 | fl6->daddr = ipv6_hdr(skb)->saddr; |
| 60 | } |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 61 | |
Pablo Neira Ayuso | 3f87c08 | 2017-11-27 22:29:52 +0100 | [diff] [blame] | 62 | nf_route(net, (struct dst_entry **)&rt, &fl, false, family); |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 63 | if (rt != NULL) { |
| 64 | mtu = dst_mtu(&rt->dst); |
| 65 | dst_release(&rt->dst); |
| 66 | } |
| 67 | return mtu; |
| 68 | } |
| 69 | |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 70 | static int |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 71 | tcpmss_mangle_packet(struct sk_buff *skb, |
Phil Oester | 70d19f8 | 2013-06-12 10:44:51 +0200 | [diff] [blame] | 72 | const struct xt_action_param *par, |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 73 | unsigned int family, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 74 | unsigned int tcphoff, |
| 75 | unsigned int minlen) |
| 76 | { |
Phil Oester | 70d19f8 | 2013-06-12 10:44:51 +0200 | [diff] [blame] | 77 | const struct xt_tcpmss_info *info = par->targinfo; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 78 | struct tcphdr *tcph; |
Pablo Neira Ayuso | 71ffe9c | 2013-07-25 10:37:49 +0200 | [diff] [blame] | 79 | int len, tcp_hdrlen; |
| 80 | unsigned int i; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 81 | __be16 oldval; |
| 82 | u16 newmss; |
| 83 | u8 *opt; |
| 84 | |
Phil Oester | b396966 | 2013-06-12 10:58:20 +0200 | [diff] [blame] | 85 | /* This is a fragment, no TCP header is available */ |
| 86 | if (par->fragoff != 0) |
Phil Oester | 1205e1f | 2013-09-01 08:32:21 -0700 | [diff] [blame] | 87 | return 0; |
Phil Oester | b396966 | 2013-06-12 10:58:20 +0200 | [diff] [blame] | 88 | |
Florian Westphal | fb2eb1c | 2019-05-23 15:44:11 +0200 | [diff] [blame] | 89 | if (skb_ensure_writable(skb, skb->len)) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 90 | return -1; |
| 91 | |
Pablo Neira Ayuso | 71ffe9c | 2013-07-25 10:37:49 +0200 | [diff] [blame] | 92 | len = skb->len - tcphoff; |
| 93 | if (len < (int)sizeof(struct tcphdr)) |
| 94 | return -1; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 95 | |
Pablo Neira Ayuso | 71ffe9c | 2013-07-25 10:37:49 +0200 | [diff] [blame] | 96 | tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); |
| 97 | tcp_hdrlen = tcph->doff * 4; |
| 98 | |
Eric Dumazet | 2638fd0f | 2017-04-03 10:55:11 -0700 | [diff] [blame] | 99 | if (len < tcp_hdrlen || tcp_hdrlen < sizeof(struct tcphdr)) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 100 | return -1; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 101 | |
| 102 | if (info->mss == XT_TCPMSS_CLAMP_PMTU) { |
Pablo Neira Ayuso | 613dbd9 | 2016-11-03 10:56:21 +0100 | [diff] [blame] | 103 | struct net *net = xt_net(par); |
Gao feng | 7722e0d | 2013-09-26 15:00:31 +0800 | [diff] [blame] | 104 | unsigned int in_mtu = tcpmss_reverse_mtu(net, skb, family); |
Gao Feng | 50f4c7b | 2016-09-07 10:40:24 +0800 | [diff] [blame] | 105 | unsigned int min_mtu = min(dst_mtu(skb_dst(skb)), in_mtu); |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 106 | |
Gao Feng | 50f4c7b | 2016-09-07 10:40:24 +0800 | [diff] [blame] | 107 | if (min_mtu <= minlen) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 108 | net_err_ratelimited("unknown or invalid path-MTU (%u)\n", |
Gao Feng | 50f4c7b | 2016-09-07 10:40:24 +0800 | [diff] [blame] | 109 | min_mtu); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 110 | return -1; |
| 111 | } |
Gao Feng | 50f4c7b | 2016-09-07 10:40:24 +0800 | [diff] [blame] | 112 | newmss = min_mtu - minlen; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 113 | } else |
| 114 | newmss = info->mss; |
| 115 | |
| 116 | opt = (u_int8_t *)tcph; |
Pablo Neira Ayuso | 71ffe9c | 2013-07-25 10:37:49 +0200 | [diff] [blame] | 117 | for (i = sizeof(struct tcphdr); i <= tcp_hdrlen - TCPOLEN_MSS; i += optlen(opt, i)) { |
| 118 | if (opt[i] == TCPOPT_MSS && opt[i+1] == TCPOLEN_MSS) { |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 119 | u_int16_t oldmss; |
| 120 | |
| 121 | oldmss = (opt[i+2] << 8) | opt[i+3]; |
| 122 | |
Benjamin LaHaise | 1700806 | 2007-12-17 22:27:36 -0800 | [diff] [blame] | 123 | /* Never increase MSS, even when setting it, as |
| 124 | * doing so results in problems for hosts that rely |
| 125 | * on MSS being set correctly. |
| 126 | */ |
| 127 | if (oldmss <= newmss) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 128 | return 0; |
| 129 | |
| 130 | opt[i+2] = (newmss & 0xff00) >> 8; |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 131 | opt[i+3] = newmss & 0x00ff; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 132 | |
Patrick McHardy | be0ea7d | 2007-11-30 01:17:11 +1100 | [diff] [blame] | 133 | inet_proto_csum_replace2(&tcph->check, skb, |
| 134 | htons(oldmss), htons(newmss), |
Tom Herbert | 4b048d6 | 2015-08-17 13:42:25 -0700 | [diff] [blame] | 135 | false); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | } |
| 139 | |
Simon Arlott | 10a1993 | 2010-02-02 15:33:38 +0100 | [diff] [blame] | 140 | /* There is data after the header so the option can't be added |
Pablo Neira Ayuso | 71ffe9c | 2013-07-25 10:37:49 +0200 | [diff] [blame] | 141 | * without moving it, and doing so may make the SYN packet |
| 142 | * itself too large. Accept the packet unmodified instead. |
| 143 | */ |
| 144 | if (len > tcp_hdrlen) |
Simon Arlott | 10a1993 | 2010-02-02 15:33:38 +0100 | [diff] [blame] | 145 | return 0; |
| 146 | |
Eric Dumazet | 2638fd0f | 2017-04-03 10:55:11 -0700 | [diff] [blame] | 147 | /* tcph->doff has 4 bits, do not wrap it to 0 */ |
| 148 | if (tcp_hdrlen >= 15 * 4) |
| 149 | return 0; |
| 150 | |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 151 | /* |
| 152 | * MSS Option not found ?! add it.. |
| 153 | */ |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 154 | if (skb_tailroom(skb) < TCPOLEN_MSS) { |
| 155 | if (pskb_expand_head(skb, 0, |
| 156 | TCPOLEN_MSS - skb_tailroom(skb), |
Herbert Xu | 2ca7b0a | 2007-10-14 00:39:55 -0700 | [diff] [blame] | 157 | GFP_ATOMIC)) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 158 | return -1; |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 159 | tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 160 | } |
| 161 | |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 162 | skb_put(skb, TCPOLEN_MSS); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 163 | |
Phil Oester | 70d19f8 | 2013-06-12 10:44:51 +0200 | [diff] [blame] | 164 | /* |
| 165 | * IPv4: RFC 1122 states "If an MSS option is not received at |
| 166 | * connection setup, TCP MUST assume a default send MSS of 536". |
| 167 | * IPv6: RFC 2460 states IPv6 has a minimum MTU of 1280 and a minimum |
| 168 | * length IPv6 header of 60, ergo the default MSS value is 1220 |
| 169 | * Since no MSS was provided, we must use the default values |
Phil Oester | 409b545 | 2013-06-04 05:09:27 +0000 | [diff] [blame] | 170 | */ |
Pablo Neira Ayuso | 613dbd9 | 2016-11-03 10:56:21 +0100 | [diff] [blame] | 171 | if (xt_family(par) == NFPROTO_IPV4) |
Phil Oester | 70d19f8 | 2013-06-12 10:44:51 +0200 | [diff] [blame] | 172 | newmss = min(newmss, (u16)536); |
| 173 | else |
| 174 | newmss = min(newmss, (u16)1220); |
Phil Oester | 409b545 | 2013-06-04 05:09:27 +0000 | [diff] [blame] | 175 | |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 176 | opt = (u_int8_t *)tcph + sizeof(struct tcphdr); |
Pablo Neira Ayuso | 71ffe9c | 2013-07-25 10:37:49 +0200 | [diff] [blame] | 177 | memmove(opt + TCPOLEN_MSS, opt, len - sizeof(struct tcphdr)); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 178 | |
Patrick McHardy | be0ea7d | 2007-11-30 01:17:11 +1100 | [diff] [blame] | 179 | inet_proto_csum_replace2(&tcph->check, skb, |
Tom Herbert | 4b048d6 | 2015-08-17 13:42:25 -0700 | [diff] [blame] | 180 | htons(len), htons(len + TCPOLEN_MSS), true); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 181 | opt[0] = TCPOPT_MSS; |
| 182 | opt[1] = TCPOLEN_MSS; |
| 183 | opt[2] = (newmss & 0xff00) >> 8; |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 184 | opt[3] = newmss & 0x00ff; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 185 | |
Tom Herbert | 4b048d6 | 2015-08-17 13:42:25 -0700 | [diff] [blame] | 186 | inet_proto_csum_replace4(&tcph->check, skb, 0, *((__be32 *)opt), false); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 187 | |
| 188 | oldval = ((__be16 *)tcph)[6]; |
| 189 | tcph->doff += TCPOLEN_MSS/4; |
Patrick McHardy | be0ea7d | 2007-11-30 01:17:11 +1100 | [diff] [blame] | 190 | inet_proto_csum_replace2(&tcph->check, skb, |
Tom Herbert | 4b048d6 | 2015-08-17 13:42:25 -0700 | [diff] [blame] | 191 | oldval, ((__be16 *)tcph)[6], false); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 192 | return TCPOLEN_MSS; |
| 193 | } |
| 194 | |
| 195 | static unsigned int |
Jan Engelhardt | 4b560b4 | 2009-07-05 19:43:26 +0200 | [diff] [blame] | 196 | tcpmss_tg4(struct sk_buff *skb, const struct xt_action_param *par) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 197 | { |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 198 | struct iphdr *iph = ip_hdr(skb); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 199 | __be16 newlen; |
| 200 | int ret; |
| 201 | |
Phil Oester | 70d19f8 | 2013-06-12 10:44:51 +0200 | [diff] [blame] | 202 | ret = tcpmss_mangle_packet(skb, par, |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 203 | PF_INET, |
Jan Engelhardt | 37c0838 | 2008-01-31 04:06:10 -0800 | [diff] [blame] | 204 | iph->ihl * 4, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 205 | sizeof(*iph) + sizeof(struct tcphdr)); |
| 206 | if (ret < 0) |
| 207 | return NF_DROP; |
| 208 | if (ret > 0) { |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 209 | iph = ip_hdr(skb); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 210 | newlen = htons(ntohs(iph->tot_len) + ret); |
Patrick McHardy | be0ea7d | 2007-11-30 01:17:11 +1100 | [diff] [blame] | 211 | csum_replace2(&iph->check, iph->tot_len, newlen); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 212 | iph->tot_len = newlen; |
| 213 | } |
| 214 | return XT_CONTINUE; |
| 215 | } |
| 216 | |
Igor Maravić | c0cd115 | 2011-12-12 02:58:24 +0000 | [diff] [blame] | 217 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 218 | static unsigned int |
Jan Engelhardt | 4b560b4 | 2009-07-05 19:43:26 +0200 | [diff] [blame] | 219 | tcpmss_tg6(struct sk_buff *skb, const struct xt_action_param *par) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 220 | { |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 221 | struct ipv6hdr *ipv6h = ipv6_hdr(skb); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 222 | u8 nexthdr; |
Eric Dumazet | d6b3347 | 2016-01-15 08:21:32 -0800 | [diff] [blame] | 223 | __be16 frag_off, oldlen, newlen; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 224 | int tcphoff; |
| 225 | int ret; |
| 226 | |
| 227 | nexthdr = ipv6h->nexthdr; |
Jesse Gross | 75f2811 | 2011-11-30 17:05:51 -0800 | [diff] [blame] | 228 | tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr, &frag_off); |
Patrick McHardy | 9dc0564 | 2007-11-30 23:58:03 +1100 | [diff] [blame] | 229 | if (tcphoff < 0) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 230 | return NF_DROP; |
Phil Oester | 70d19f8 | 2013-06-12 10:44:51 +0200 | [diff] [blame] | 231 | ret = tcpmss_mangle_packet(skb, par, |
Gao feng | de1389b | 2013-09-26 15:00:30 +0800 | [diff] [blame] | 232 | PF_INET6, |
Jan Engelhardt | 37c0838 | 2008-01-31 04:06:10 -0800 | [diff] [blame] | 233 | tcphoff, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 234 | sizeof(*ipv6h) + sizeof(struct tcphdr)); |
| 235 | if (ret < 0) |
| 236 | return NF_DROP; |
| 237 | if (ret > 0) { |
Herbert Xu | 3db05fea | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 238 | ipv6h = ipv6_hdr(skb); |
Eric Dumazet | d6b3347 | 2016-01-15 08:21:32 -0800 | [diff] [blame] | 239 | oldlen = ipv6h->payload_len; |
| 240 | newlen = htons(ntohs(oldlen) + ret); |
| 241 | if (skb->ip_summed == CHECKSUM_COMPLETE) |
Florian Westphal | 168141f | 2022-06-23 15:05:10 +0200 | [diff] [blame] | 242 | skb->csum = csum_add(csum_sub(skb->csum, (__force __wsum)oldlen), |
| 243 | (__force __wsum)newlen); |
Eric Dumazet | d6b3347 | 2016-01-15 08:21:32 -0800 | [diff] [blame] | 244 | ipv6h->payload_len = newlen; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 245 | } |
| 246 | return XT_CONTINUE; |
| 247 | } |
| 248 | #endif |
| 249 | |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 250 | /* Must specify -p tcp --syn */ |
Jan Engelhardt | e1931b7 | 2007-07-07 22:16:26 -0700 | [diff] [blame] | 251 | static inline bool find_syn_match(const struct xt_entry_match *m) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 252 | { |
| 253 | const struct xt_tcp *tcpinfo = (const struct xt_tcp *)m->data; |
| 254 | |
| 255 | if (strcmp(m->u.kernel.match->name, "tcp") == 0 && |
Changli Gao | a3433f3 | 2010-06-12 14:01:43 +0000 | [diff] [blame] | 256 | tcpinfo->flg_cmp & TCPHDR_SYN && |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 257 | !(tcpinfo->invflags & XT_TCP_INV_FLAGS)) |
Jan Engelhardt | e1931b7 | 2007-07-07 22:16:26 -0700 | [diff] [blame] | 258 | return true; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 259 | |
Jan Engelhardt | e1931b7 | 2007-07-07 22:16:26 -0700 | [diff] [blame] | 260 | return false; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 261 | } |
| 262 | |
Jan Engelhardt | 135367b | 2010-03-19 17:16:42 +0100 | [diff] [blame] | 263 | static int tcpmss_tg4_check(const struct xt_tgchk_param *par) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 264 | { |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 265 | const struct xt_tcpmss_info *info = par->targinfo; |
| 266 | const struct ipt_entry *e = par->entryinfo; |
Jan Engelhardt | dcea992 | 2010-02-24 18:34:48 +0100 | [diff] [blame] | 267 | const struct xt_entry_match *ematch; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 268 | |
| 269 | if (info->mss == XT_TCPMSS_CLAMP_PMTU && |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 270 | (par->hook_mask & ~((1 << NF_INET_FORWARD) | |
Patrick McHardy | 6e23ae2 | 2007-11-19 18:53:30 -0800 | [diff] [blame] | 271 | (1 << NF_INET_LOCAL_OUT) | |
| 272 | (1 << NF_INET_POST_ROUTING))) != 0) { |
Florian Westphal | b260664 | 2018-02-09 15:52:07 +0100 | [diff] [blame] | 273 | pr_info_ratelimited("path-MTU clamping only supported in FORWARD, OUTPUT and POSTROUTING hooks\n"); |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 274 | return -EINVAL; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 275 | } |
Pablo Neira Ayuso | 55917a2 | 2015-05-14 14:57:23 +0200 | [diff] [blame] | 276 | if (par->nft_compat) |
| 277 | return 0; |
| 278 | |
Jan Engelhardt | dcea992 | 2010-02-24 18:34:48 +0100 | [diff] [blame] | 279 | xt_ematch_foreach(ematch, e) |
| 280 | if (find_syn_match(ematch)) |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 281 | return 0; |
Florian Westphal | b260664 | 2018-02-09 15:52:07 +0100 | [diff] [blame] | 282 | pr_info_ratelimited("Only works on TCP SYN packets\n"); |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 283 | return -EINVAL; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 284 | } |
| 285 | |
Igor Maravić | c0cd115 | 2011-12-12 02:58:24 +0000 | [diff] [blame] | 286 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Jan Engelhardt | 135367b | 2010-03-19 17:16:42 +0100 | [diff] [blame] | 287 | static int tcpmss_tg6_check(const struct xt_tgchk_param *par) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 288 | { |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 289 | const struct xt_tcpmss_info *info = par->targinfo; |
| 290 | const struct ip6t_entry *e = par->entryinfo; |
Jan Engelhardt | dcea992 | 2010-02-24 18:34:48 +0100 | [diff] [blame] | 291 | const struct xt_entry_match *ematch; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 292 | |
| 293 | if (info->mss == XT_TCPMSS_CLAMP_PMTU && |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 294 | (par->hook_mask & ~((1 << NF_INET_FORWARD) | |
Patrick McHardy | 6e23ae2 | 2007-11-19 18:53:30 -0800 | [diff] [blame] | 295 | (1 << NF_INET_LOCAL_OUT) | |
| 296 | (1 << NF_INET_POST_ROUTING))) != 0) { |
Florian Westphal | b260664 | 2018-02-09 15:52:07 +0100 | [diff] [blame] | 297 | pr_info_ratelimited("path-MTU clamping only supported in FORWARD, OUTPUT and POSTROUTING hooks\n"); |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 298 | return -EINVAL; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 299 | } |
Pablo Neira Ayuso | 55917a2 | 2015-05-14 14:57:23 +0200 | [diff] [blame] | 300 | if (par->nft_compat) |
| 301 | return 0; |
| 302 | |
Jan Engelhardt | dcea992 | 2010-02-24 18:34:48 +0100 | [diff] [blame] | 303 | xt_ematch_foreach(ematch, e) |
| 304 | if (find_syn_match(ematch)) |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 305 | return 0; |
Florian Westphal | b260664 | 2018-02-09 15:52:07 +0100 | [diff] [blame] | 306 | pr_info_ratelimited("Only works on TCP SYN packets\n"); |
Jan Engelhardt | d6b00a5 | 2010-03-25 16:34:45 +0100 | [diff] [blame] | 307 | return -EINVAL; |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 308 | } |
| 309 | #endif |
| 310 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 311 | static struct xt_target tcpmss_tg_reg[] __read_mostly = { |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 312 | { |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 313 | .family = NFPROTO_IPV4, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 314 | .name = "TCPMSS", |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 315 | .checkentry = tcpmss_tg4_check, |
| 316 | .target = tcpmss_tg4, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 317 | .targetsize = sizeof(struct xt_tcpmss_info), |
| 318 | .proto = IPPROTO_TCP, |
| 319 | .me = THIS_MODULE, |
| 320 | }, |
Igor Maravić | c0cd115 | 2011-12-12 02:58:24 +0000 | [diff] [blame] | 321 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 322 | { |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 323 | .family = NFPROTO_IPV6, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 324 | .name = "TCPMSS", |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 325 | .checkentry = tcpmss_tg6_check, |
| 326 | .target = tcpmss_tg6, |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 327 | .targetsize = sizeof(struct xt_tcpmss_info), |
| 328 | .proto = IPPROTO_TCP, |
| 329 | .me = THIS_MODULE, |
| 330 | }, |
| 331 | #endif |
| 332 | }; |
| 333 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 334 | static int __init tcpmss_tg_init(void) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 335 | { |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 336 | return xt_register_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg)); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 337 | } |
| 338 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 339 | static void __exit tcpmss_tg_exit(void) |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 340 | { |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 341 | xt_unregister_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg)); |
Patrick McHardy | cdd289a | 2007-02-07 15:09:46 -0800 | [diff] [blame] | 342 | } |
| 343 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 344 | module_init(tcpmss_tg_init); |
| 345 | module_exit(tcpmss_tg_exit); |