blob: 116a885adb3cd6e93f82ee13f988e2dc0bee29f1 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Patrick McHardycdd289a2007-02-07 15:09:46 -08002/*
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 McHardyf229f6c2013-04-06 15:24:29 +02006 * Copyright (C) 2007 Patrick McHardy <kaber@trash.net>
Patrick McHardycdd289a2007-02-07 15:09:46 -08007 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +01008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Patrick McHardycdd289a2007-02-07 15:09:46 -08009#include <linux/module.h>
10#include <linux/skbuff.h>
11#include <linux/ip.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080013#include <linux/ipv6.h>
14#include <linux/tcp.h>
Jan Engelhardt37c08382008-01-31 04:06:10 -080015#include <net/dst.h>
16#include <net/flow.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080017#include <net/ipv6.h>
Jan Engelhardt37c08382008-01-31 04:06:10 -080018#include <net/route.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080019#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
27MODULE_LICENSE("GPL");
28MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080029MODULE_DESCRIPTION("Xtables: TCP Maximum Segment Size (MSS) adjustment");
Patrick McHardycdd289a2007-02-07 15:09:46 -080030MODULE_ALIAS("ipt_TCPMSS");
31MODULE_ALIAS("ip6t_TCPMSS");
32
33static inline unsigned int
34optlen(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 feng7722e0d2013-09-26 15:00:31 +080043static u_int32_t tcpmss_reverse_mtu(struct net *net,
44 const struct sk_buff *skb,
Gao fengde1389b2013-09-26 15:00:30 +080045 unsigned int family)
46{
47 struct flowi fl;
Gao fengde1389b2013-09-26 15:00:30 +080048 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 fengde1389b2013-09-26 15:00:30 +080061
Pablo Neira Ayuso3f87c082017-11-27 22:29:52 +010062 nf_route(net, (struct dst_entry **)&rt, &fl, false, family);
Gao fengde1389b2013-09-26 15:00:30 +080063 if (rt != NULL) {
64 mtu = dst_mtu(&rt->dst);
65 dst_release(&rt->dst);
66 }
67 return mtu;
68}
69
Patrick McHardycdd289a2007-02-07 15:09:46 -080070static int
Herbert Xu3db05fea2007-10-15 00:53:15 -070071tcpmss_mangle_packet(struct sk_buff *skb,
Phil Oester70d19f82013-06-12 10:44:51 +020072 const struct xt_action_param *par,
Gao fengde1389b2013-09-26 15:00:30 +080073 unsigned int family,
Patrick McHardycdd289a2007-02-07 15:09:46 -080074 unsigned int tcphoff,
75 unsigned int minlen)
76{
Phil Oester70d19f82013-06-12 10:44:51 +020077 const struct xt_tcpmss_info *info = par->targinfo;
Patrick McHardycdd289a2007-02-07 15:09:46 -080078 struct tcphdr *tcph;
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +020079 int len, tcp_hdrlen;
80 unsigned int i;
Patrick McHardycdd289a2007-02-07 15:09:46 -080081 __be16 oldval;
82 u16 newmss;
83 u8 *opt;
84
Phil Oesterb3969662013-06-12 10:58:20 +020085 /* This is a fragment, no TCP header is available */
86 if (par->fragoff != 0)
Phil Oester1205e1f2013-09-01 08:32:21 -070087 return 0;
Phil Oesterb3969662013-06-12 10:58:20 +020088
Florian Westphalfb2eb1c2019-05-23 15:44:11 +020089 if (skb_ensure_writable(skb, skb->len))
Patrick McHardycdd289a2007-02-07 15:09:46 -080090 return -1;
91
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +020092 len = skb->len - tcphoff;
93 if (len < (int)sizeof(struct tcphdr))
94 return -1;
Patrick McHardycdd289a2007-02-07 15:09:46 -080095
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +020096 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
97 tcp_hdrlen = tcph->doff * 4;
98
Eric Dumazet2638fd0f2017-04-03 10:55:11 -070099 if (len < tcp_hdrlen || tcp_hdrlen < sizeof(struct tcphdr))
Patrick McHardycdd289a2007-02-07 15:09:46 -0800100 return -1;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800101
102 if (info->mss == XT_TCPMSS_CLAMP_PMTU) {
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100103 struct net *net = xt_net(par);
Gao feng7722e0d2013-09-26 15:00:31 +0800104 unsigned int in_mtu = tcpmss_reverse_mtu(net, skb, family);
Gao Feng50f4c7b2016-09-07 10:40:24 +0800105 unsigned int min_mtu = min(dst_mtu(skb_dst(skb)), in_mtu);
Gao fengde1389b2013-09-26 15:00:30 +0800106
Gao Feng50f4c7b2016-09-07 10:40:24 +0800107 if (min_mtu <= minlen) {
Joe Perchese87cc472012-05-13 21:56:26 +0000108 net_err_ratelimited("unknown or invalid path-MTU (%u)\n",
Gao Feng50f4c7b2016-09-07 10:40:24 +0800109 min_mtu);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800110 return -1;
111 }
Gao Feng50f4c7b2016-09-07 10:40:24 +0800112 newmss = min_mtu - minlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800113 } else
114 newmss = info->mss;
115
116 opt = (u_int8_t *)tcph;
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200117 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 McHardycdd289a2007-02-07 15:09:46 -0800119 u_int16_t oldmss;
120
121 oldmss = (opt[i+2] << 8) | opt[i+3];
122
Benjamin LaHaise17008062007-12-17 22:27:36 -0800123 /* 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 McHardycdd289a2007-02-07 15:09:46 -0800128 return 0;
129
130 opt[i+2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700131 opt[i+3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800132
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100133 inet_proto_csum_replace2(&tcph->check, skb,
134 htons(oldmss), htons(newmss),
Tom Herbert4b048d62015-08-17 13:42:25 -0700135 false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800136 return 0;
137 }
138 }
139
Simon Arlott10a19932010-02-02 15:33:38 +0100140 /* There is data after the header so the option can't be added
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200141 * 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 Arlott10a19932010-02-02 15:33:38 +0100145 return 0;
146
Eric Dumazet2638fd0f2017-04-03 10:55:11 -0700147 /* tcph->doff has 4 bits, do not wrap it to 0 */
148 if (tcp_hdrlen >= 15 * 4)
149 return 0;
150
Patrick McHardycdd289a2007-02-07 15:09:46 -0800151 /*
152 * MSS Option not found ?! add it..
153 */
Herbert Xu3db05fea2007-10-15 00:53:15 -0700154 if (skb_tailroom(skb) < TCPOLEN_MSS) {
155 if (pskb_expand_head(skb, 0,
156 TCPOLEN_MSS - skb_tailroom(skb),
Herbert Xu2ca7b0a2007-10-14 00:39:55 -0700157 GFP_ATOMIC))
Patrick McHardycdd289a2007-02-07 15:09:46 -0800158 return -1;
Herbert Xu3db05fea2007-10-15 00:53:15 -0700159 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800160 }
161
Herbert Xu3db05fea2007-10-15 00:53:15 -0700162 skb_put(skb, TCPOLEN_MSS);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800163
Phil Oester70d19f82013-06-12 10:44:51 +0200164 /*
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 Oester409b5452013-06-04 05:09:27 +0000170 */
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100171 if (xt_family(par) == NFPROTO_IPV4)
Phil Oester70d19f82013-06-12 10:44:51 +0200172 newmss = min(newmss, (u16)536);
173 else
174 newmss = min(newmss, (u16)1220);
Phil Oester409b5452013-06-04 05:09:27 +0000175
Patrick McHardycdd289a2007-02-07 15:09:46 -0800176 opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200177 memmove(opt + TCPOLEN_MSS, opt, len - sizeof(struct tcphdr));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800178
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100179 inet_proto_csum_replace2(&tcph->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700180 htons(len), htons(len + TCPOLEN_MSS), true);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800181 opt[0] = TCPOPT_MSS;
182 opt[1] = TCPOLEN_MSS;
183 opt[2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700184 opt[3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800185
Tom Herbert4b048d62015-08-17 13:42:25 -0700186 inet_proto_csum_replace4(&tcph->check, skb, 0, *((__be32 *)opt), false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800187
188 oldval = ((__be16 *)tcph)[6];
189 tcph->doff += TCPOLEN_MSS/4;
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100190 inet_proto_csum_replace2(&tcph->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700191 oldval, ((__be16 *)tcph)[6], false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800192 return TCPOLEN_MSS;
193}
194
195static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200196tcpmss_tg4(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800197{
Herbert Xu3db05fea2007-10-15 00:53:15 -0700198 struct iphdr *iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800199 __be16 newlen;
200 int ret;
201
Phil Oester70d19f82013-06-12 10:44:51 +0200202 ret = tcpmss_mangle_packet(skb, par,
Gao fengde1389b2013-09-26 15:00:30 +0800203 PF_INET,
Jan Engelhardt37c08382008-01-31 04:06:10 -0800204 iph->ihl * 4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800205 sizeof(*iph) + sizeof(struct tcphdr));
206 if (ret < 0)
207 return NF_DROP;
208 if (ret > 0) {
Herbert Xu3db05fea2007-10-15 00:53:15 -0700209 iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800210 newlen = htons(ntohs(iph->tot_len) + ret);
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100211 csum_replace2(&iph->check, iph->tot_len, newlen);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800212 iph->tot_len = newlen;
213 }
214 return XT_CONTINUE;
215}
216
Igor Maravićc0cd1152011-12-12 02:58:24 +0000217#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800218static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200219tcpmss_tg6(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800220{
Herbert Xu3db05fea2007-10-15 00:53:15 -0700221 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800222 u8 nexthdr;
Eric Dumazetd6b33472016-01-15 08:21:32 -0800223 __be16 frag_off, oldlen, newlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800224 int tcphoff;
225 int ret;
226
227 nexthdr = ipv6h->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800228 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr, &frag_off);
Patrick McHardy9dc05642007-11-30 23:58:03 +1100229 if (tcphoff < 0)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800230 return NF_DROP;
Phil Oester70d19f82013-06-12 10:44:51 +0200231 ret = tcpmss_mangle_packet(skb, par,
Gao fengde1389b2013-09-26 15:00:30 +0800232 PF_INET6,
Jan Engelhardt37c08382008-01-31 04:06:10 -0800233 tcphoff,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800234 sizeof(*ipv6h) + sizeof(struct tcphdr));
235 if (ret < 0)
236 return NF_DROP;
237 if (ret > 0) {
Herbert Xu3db05fea2007-10-15 00:53:15 -0700238 ipv6h = ipv6_hdr(skb);
Eric Dumazetd6b33472016-01-15 08:21:32 -0800239 oldlen = ipv6h->payload_len;
240 newlen = htons(ntohs(oldlen) + ret);
241 if (skb->ip_summed == CHECKSUM_COMPLETE)
Florian Westphal168141f2022-06-23 15:05:10 +0200242 skb->csum = csum_add(csum_sub(skb->csum, (__force __wsum)oldlen),
243 (__force __wsum)newlen);
Eric Dumazetd6b33472016-01-15 08:21:32 -0800244 ipv6h->payload_len = newlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800245 }
246 return XT_CONTINUE;
247}
248#endif
249
Patrick McHardycdd289a2007-02-07 15:09:46 -0800250/* Must specify -p tcp --syn */
Jan Engelhardte1931b72007-07-07 22:16:26 -0700251static inline bool find_syn_match(const struct xt_entry_match *m)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800252{
253 const struct xt_tcp *tcpinfo = (const struct xt_tcp *)m->data;
254
255 if (strcmp(m->u.kernel.match->name, "tcp") == 0 &&
Changli Gaoa3433f32010-06-12 14:01:43 +0000256 tcpinfo->flg_cmp & TCPHDR_SYN &&
Patrick McHardycdd289a2007-02-07 15:09:46 -0800257 !(tcpinfo->invflags & XT_TCP_INV_FLAGS))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700258 return true;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800259
Jan Engelhardte1931b72007-07-07 22:16:26 -0700260 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800261}
262
Jan Engelhardt135367b2010-03-19 17:16:42 +0100263static int tcpmss_tg4_check(const struct xt_tgchk_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800264{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200265 const struct xt_tcpmss_info *info = par->targinfo;
266 const struct ipt_entry *e = par->entryinfo;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100267 const struct xt_entry_match *ematch;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800268
269 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200270 (par->hook_mask & ~((1 << NF_INET_FORWARD) |
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800271 (1 << NF_INET_LOCAL_OUT) |
272 (1 << NF_INET_POST_ROUTING))) != 0) {
Florian Westphalb2606642018-02-09 15:52:07 +0100273 pr_info_ratelimited("path-MTU clamping only supported in FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100274 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800275 }
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200276 if (par->nft_compat)
277 return 0;
278
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100279 xt_ematch_foreach(ematch, e)
280 if (find_syn_match(ematch))
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100281 return 0;
Florian Westphalb2606642018-02-09 15:52:07 +0100282 pr_info_ratelimited("Only works on TCP SYN packets\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100283 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800284}
285
Igor Maravićc0cd1152011-12-12 02:58:24 +0000286#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jan Engelhardt135367b2010-03-19 17:16:42 +0100287static int tcpmss_tg6_check(const struct xt_tgchk_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800288{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200289 const struct xt_tcpmss_info *info = par->targinfo;
290 const struct ip6t_entry *e = par->entryinfo;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100291 const struct xt_entry_match *ematch;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800292
293 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200294 (par->hook_mask & ~((1 << NF_INET_FORWARD) |
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800295 (1 << NF_INET_LOCAL_OUT) |
296 (1 << NF_INET_POST_ROUTING))) != 0) {
Florian Westphalb2606642018-02-09 15:52:07 +0100297 pr_info_ratelimited("path-MTU clamping only supported in FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100298 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800299 }
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200300 if (par->nft_compat)
301 return 0;
302
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100303 xt_ematch_foreach(ematch, e)
304 if (find_syn_match(ematch))
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100305 return 0;
Florian Westphalb2606642018-02-09 15:52:07 +0100306 pr_info_ratelimited("Only works on TCP SYN packets\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100307 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800308}
309#endif
310
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800311static struct xt_target tcpmss_tg_reg[] __read_mostly = {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800312 {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200313 .family = NFPROTO_IPV4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800314 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800315 .checkentry = tcpmss_tg4_check,
316 .target = tcpmss_tg4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800317 .targetsize = sizeof(struct xt_tcpmss_info),
318 .proto = IPPROTO_TCP,
319 .me = THIS_MODULE,
320 },
Igor Maravićc0cd1152011-12-12 02:58:24 +0000321#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800322 {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200323 .family = NFPROTO_IPV6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800324 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800325 .checkentry = tcpmss_tg6_check,
326 .target = tcpmss_tg6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800327 .targetsize = sizeof(struct xt_tcpmss_info),
328 .proto = IPPROTO_TCP,
329 .me = THIS_MODULE,
330 },
331#endif
332};
333
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800334static int __init tcpmss_tg_init(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800335{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800336 return xt_register_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800337}
338
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800339static void __exit tcpmss_tg_exit(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800340{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800341 xt_unregister_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800342}
343
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800344module_init(tcpmss_tg_init);
345module_exit(tcpmss_tg_exit);