blob: 872db2d0e2a9970642c50e933c0a2225f8dd4599 [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>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02005 * Copyright (C) 2007 Patrick McHardy <kaber@trash.net>
Patrick McHardycdd289a2007-02-07 15:09:46 -08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Patrick McHardycdd289a2007-02-07 15:09:46 -080012#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <linux/ip.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080016#include <linux/ipv6.h>
17#include <linux/tcp.h>
Jan Engelhardt37c08382008-01-31 04:06:10 -080018#include <net/dst.h>
19#include <net/flow.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080020#include <net/ipv6.h>
Jan Engelhardt37c08382008-01-31 04:06:10 -080021#include <net/route.h>
Patrick McHardycdd289a2007-02-07 15:09:46 -080022#include <net/tcp.h>
23
24#include <linux/netfilter_ipv4/ip_tables.h>
25#include <linux/netfilter_ipv6/ip6_tables.h>
26#include <linux/netfilter/x_tables.h>
27#include <linux/netfilter/xt_tcpudp.h>
28#include <linux/netfilter/xt_TCPMSS.h>
29
30MODULE_LICENSE("GPL");
31MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080032MODULE_DESCRIPTION("Xtables: TCP Maximum Segment Size (MSS) adjustment");
Patrick McHardycdd289a2007-02-07 15:09:46 -080033MODULE_ALIAS("ipt_TCPMSS");
34MODULE_ALIAS("ip6t_TCPMSS");
35
36static inline unsigned int
37optlen(const u_int8_t *opt, unsigned int offset)
38{
39 /* Beware zero-length options: make finite progress */
40 if (opt[offset] <= TCPOPT_NOP || opt[offset+1] == 0)
41 return 1;
42 else
43 return opt[offset+1];
44}
45
Gao feng7722e0d2013-09-26 15:00:31 +080046static u_int32_t tcpmss_reverse_mtu(struct net *net,
47 const struct sk_buff *skb,
Gao fengde1389b2013-09-26 15:00:30 +080048 unsigned int family)
49{
50 struct flowi fl;
51 const struct nf_afinfo *ai;
52 struct rtable *rt = NULL;
53 u_int32_t mtu = ~0U;
54
55 if (family == PF_INET) {
56 struct flowi4 *fl4 = &fl.u.ip4;
57 memset(fl4, 0, sizeof(*fl4));
58 fl4->daddr = ip_hdr(skb)->saddr;
59 } else {
60 struct flowi6 *fl6 = &fl.u.ip6;
61
62 memset(fl6, 0, sizeof(*fl6));
63 fl6->daddr = ipv6_hdr(skb)->saddr;
64 }
65 rcu_read_lock();
66 ai = nf_get_afinfo(family);
67 if (ai != NULL)
Gao feng7722e0d2013-09-26 15:00:31 +080068 ai->route(net, (struct dst_entry **)&rt, &fl, false);
Gao fengde1389b2013-09-26 15:00:30 +080069 rcu_read_unlock();
70
71 if (rt != NULL) {
72 mtu = dst_mtu(&rt->dst);
73 dst_release(&rt->dst);
74 }
75 return mtu;
76}
77
Patrick McHardycdd289a2007-02-07 15:09:46 -080078static int
Herbert Xu3db05fe2007-10-15 00:53:15 -070079tcpmss_mangle_packet(struct sk_buff *skb,
Phil Oester70d19f82013-06-12 10:44:51 +020080 const struct xt_action_param *par,
Gao fengde1389b2013-09-26 15:00:30 +080081 unsigned int family,
Patrick McHardycdd289a2007-02-07 15:09:46 -080082 unsigned int tcphoff,
83 unsigned int minlen)
84{
Phil Oester70d19f82013-06-12 10:44:51 +020085 const struct xt_tcpmss_info *info = par->targinfo;
Patrick McHardycdd289a2007-02-07 15:09:46 -080086 struct tcphdr *tcph;
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +020087 int len, tcp_hdrlen;
88 unsigned int i;
Patrick McHardycdd289a2007-02-07 15:09:46 -080089 __be16 oldval;
90 u16 newmss;
91 u8 *opt;
92
Phil Oesterb3969662013-06-12 10:58:20 +020093 /* This is a fragment, no TCP header is available */
94 if (par->fragoff != 0)
Phil Oester1205e1f2013-09-01 08:32:21 -070095 return 0;
Phil Oesterb3969662013-06-12 10:58:20 +020096
Herbert Xu3db05fe2007-10-15 00:53:15 -070097 if (!skb_make_writable(skb, skb->len))
Patrick McHardycdd289a2007-02-07 15:09:46 -080098 return -1;
99
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200100 len = skb->len - tcphoff;
101 if (len < (int)sizeof(struct tcphdr))
102 return -1;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800103
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200104 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
105 tcp_hdrlen = tcph->doff * 4;
106
107 if (len < tcp_hdrlen)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800108 return -1;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800109
110 if (info->mss == XT_TCPMSS_CLAMP_PMTU) {
Eric W. Biederman686c9b52015-09-18 14:32:59 -0500111 struct net *net = par->net;
Gao feng7722e0d2013-09-26 15:00:31 +0800112 unsigned int in_mtu = tcpmss_reverse_mtu(net, skb, family);
Gao Feng50f4c7b2016-09-07 10:40:24 +0800113 unsigned int min_mtu = min(dst_mtu(skb_dst(skb)), in_mtu);
Gao fengde1389b2013-09-26 15:00:30 +0800114
Gao Feng50f4c7b2016-09-07 10:40:24 +0800115 if (min_mtu <= minlen) {
Joe Perchese87cc472012-05-13 21:56:26 +0000116 net_err_ratelimited("unknown or invalid path-MTU (%u)\n",
Gao Feng50f4c7b2016-09-07 10:40:24 +0800117 min_mtu);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800118 return -1;
119 }
Gao Feng50f4c7b2016-09-07 10:40:24 +0800120 newmss = min_mtu - minlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800121 } else
122 newmss = info->mss;
123
124 opt = (u_int8_t *)tcph;
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200125 for (i = sizeof(struct tcphdr); i <= tcp_hdrlen - TCPOLEN_MSS; i += optlen(opt, i)) {
126 if (opt[i] == TCPOPT_MSS && opt[i+1] == TCPOLEN_MSS) {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800127 u_int16_t oldmss;
128
129 oldmss = (opt[i+2] << 8) | opt[i+3];
130
Benjamin LaHaise17008062007-12-17 22:27:36 -0800131 /* Never increase MSS, even when setting it, as
132 * doing so results in problems for hosts that rely
133 * on MSS being set correctly.
134 */
135 if (oldmss <= newmss)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800136 return 0;
137
138 opt[i+2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700139 opt[i+3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800140
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100141 inet_proto_csum_replace2(&tcph->check, skb,
142 htons(oldmss), htons(newmss),
Tom Herbert4b048d62015-08-17 13:42:25 -0700143 false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800144 return 0;
145 }
146 }
147
Simon Arlott10a19932010-02-02 15:33:38 +0100148 /* There is data after the header so the option can't be added
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200149 * without moving it, and doing so may make the SYN packet
150 * itself too large. Accept the packet unmodified instead.
151 */
152 if (len > tcp_hdrlen)
Simon Arlott10a19932010-02-02 15:33:38 +0100153 return 0;
154
Patrick McHardycdd289a2007-02-07 15:09:46 -0800155 /*
156 * MSS Option not found ?! add it..
157 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700158 if (skb_tailroom(skb) < TCPOLEN_MSS) {
159 if (pskb_expand_head(skb, 0,
160 TCPOLEN_MSS - skb_tailroom(skb),
Herbert Xu2ca7b0a2007-10-14 00:39:55 -0700161 GFP_ATOMIC))
Patrick McHardycdd289a2007-02-07 15:09:46 -0800162 return -1;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700163 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800164 }
165
Herbert Xu3db05fe2007-10-15 00:53:15 -0700166 skb_put(skb, TCPOLEN_MSS);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800167
Phil Oester70d19f82013-06-12 10:44:51 +0200168 /*
169 * IPv4: RFC 1122 states "If an MSS option is not received at
170 * connection setup, TCP MUST assume a default send MSS of 536".
171 * IPv6: RFC 2460 states IPv6 has a minimum MTU of 1280 and a minimum
172 * length IPv6 header of 60, ergo the default MSS value is 1220
173 * Since no MSS was provided, we must use the default values
Phil Oester409b5452013-06-04 05:09:27 +0000174 */
Phil Oester70d19f82013-06-12 10:44:51 +0200175 if (par->family == NFPROTO_IPV4)
176 newmss = min(newmss, (u16)536);
177 else
178 newmss = min(newmss, (u16)1220);
Phil Oester409b5452013-06-04 05:09:27 +0000179
Patrick McHardycdd289a2007-02-07 15:09:46 -0800180 opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200181 memmove(opt + TCPOLEN_MSS, opt, len - sizeof(struct tcphdr));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800182
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100183 inet_proto_csum_replace2(&tcph->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700184 htons(len), htons(len + TCPOLEN_MSS), true);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800185 opt[0] = TCPOPT_MSS;
186 opt[1] = TCPOLEN_MSS;
187 opt[2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700188 opt[3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800189
Tom Herbert4b048d62015-08-17 13:42:25 -0700190 inet_proto_csum_replace4(&tcph->check, skb, 0, *((__be32 *)opt), false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800191
192 oldval = ((__be16 *)tcph)[6];
193 tcph->doff += TCPOLEN_MSS/4;
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100194 inet_proto_csum_replace2(&tcph->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700195 oldval, ((__be16 *)tcph)[6], false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800196 return TCPOLEN_MSS;
197}
198
199static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200200tcpmss_tg4(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800201{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700202 struct iphdr *iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800203 __be16 newlen;
204 int ret;
205
Phil Oester70d19f82013-06-12 10:44:51 +0200206 ret = tcpmss_mangle_packet(skb, par,
Gao fengde1389b2013-09-26 15:00:30 +0800207 PF_INET,
Jan Engelhardt37c08382008-01-31 04:06:10 -0800208 iph->ihl * 4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800209 sizeof(*iph) + sizeof(struct tcphdr));
210 if (ret < 0)
211 return NF_DROP;
212 if (ret > 0) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700213 iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800214 newlen = htons(ntohs(iph->tot_len) + ret);
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100215 csum_replace2(&iph->check, iph->tot_len, newlen);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800216 iph->tot_len = newlen;
217 }
218 return XT_CONTINUE;
219}
220
Igor Maravićc0cd1152011-12-12 02:58:24 +0000221#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800222static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200223tcpmss_tg6(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800224{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700225 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800226 u8 nexthdr;
Eric Dumazetd6b33472016-01-15 08:21:32 -0800227 __be16 frag_off, oldlen, newlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800228 int tcphoff;
229 int ret;
230
231 nexthdr = ipv6h->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800232 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr, &frag_off);
Patrick McHardy9dc05642007-11-30 23:58:03 +1100233 if (tcphoff < 0)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800234 return NF_DROP;
Phil Oester70d19f82013-06-12 10:44:51 +0200235 ret = tcpmss_mangle_packet(skb, par,
Gao fengde1389b2013-09-26 15:00:30 +0800236 PF_INET6,
Jan Engelhardt37c08382008-01-31 04:06:10 -0800237 tcphoff,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800238 sizeof(*ipv6h) + sizeof(struct tcphdr));
239 if (ret < 0)
240 return NF_DROP;
241 if (ret > 0) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700242 ipv6h = ipv6_hdr(skb);
Eric Dumazetd6b33472016-01-15 08:21:32 -0800243 oldlen = ipv6h->payload_len;
244 newlen = htons(ntohs(oldlen) + ret);
245 if (skb->ip_summed == CHECKSUM_COMPLETE)
246 skb->csum = csum_add(csum_sub(skb->csum, oldlen),
247 newlen);
248 ipv6h->payload_len = newlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800249 }
250 return XT_CONTINUE;
251}
252#endif
253
Patrick McHardycdd289a2007-02-07 15:09:46 -0800254/* Must specify -p tcp --syn */
Jan Engelhardte1931b72007-07-07 22:16:26 -0700255static inline bool find_syn_match(const struct xt_entry_match *m)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800256{
257 const struct xt_tcp *tcpinfo = (const struct xt_tcp *)m->data;
258
259 if (strcmp(m->u.kernel.match->name, "tcp") == 0 &&
Changli Gaoa3433f32010-06-12 14:01:43 +0000260 tcpinfo->flg_cmp & TCPHDR_SYN &&
Patrick McHardycdd289a2007-02-07 15:09:46 -0800261 !(tcpinfo->invflags & XT_TCP_INV_FLAGS))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700262 return true;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800263
Jan Engelhardte1931b72007-07-07 22:16:26 -0700264 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800265}
266
Jan Engelhardt135367b2010-03-19 17:16:42 +0100267static int tcpmss_tg4_check(const struct xt_tgchk_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800268{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200269 const struct xt_tcpmss_info *info = par->targinfo;
270 const struct ipt_entry *e = par->entryinfo;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100271 const struct xt_entry_match *ematch;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800272
273 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200274 (par->hook_mask & ~((1 << NF_INET_FORWARD) |
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800275 (1 << NF_INET_LOCAL_OUT) |
276 (1 << NF_INET_POST_ROUTING))) != 0) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100277 pr_info("path-MTU clamping only supported in "
278 "FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100279 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800280 }
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200281 if (par->nft_compat)
282 return 0;
283
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100284 xt_ematch_foreach(ematch, e)
285 if (find_syn_match(ematch))
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100286 return 0;
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100287 pr_info("Only works on TCP SYN packets\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100288 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800289}
290
Igor Maravićc0cd1152011-12-12 02:58:24 +0000291#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jan Engelhardt135367b2010-03-19 17:16:42 +0100292static int tcpmss_tg6_check(const struct xt_tgchk_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800293{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200294 const struct xt_tcpmss_info *info = par->targinfo;
295 const struct ip6t_entry *e = par->entryinfo;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100296 const struct xt_entry_match *ematch;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800297
298 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200299 (par->hook_mask & ~((1 << NF_INET_FORWARD) |
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800300 (1 << NF_INET_LOCAL_OUT) |
301 (1 << NF_INET_POST_ROUTING))) != 0) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100302 pr_info("path-MTU clamping only supported in "
303 "FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100304 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800305 }
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200306 if (par->nft_compat)
307 return 0;
308
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100309 xt_ematch_foreach(ematch, e)
310 if (find_syn_match(ematch))
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100311 return 0;
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100312 pr_info("Only works on TCP SYN packets\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100313 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800314}
315#endif
316
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800317static struct xt_target tcpmss_tg_reg[] __read_mostly = {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800318 {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200319 .family = NFPROTO_IPV4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800320 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800321 .checkentry = tcpmss_tg4_check,
322 .target = tcpmss_tg4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800323 .targetsize = sizeof(struct xt_tcpmss_info),
324 .proto = IPPROTO_TCP,
325 .me = THIS_MODULE,
326 },
Igor Maravićc0cd1152011-12-12 02:58:24 +0000327#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800328 {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200329 .family = NFPROTO_IPV6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800330 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800331 .checkentry = tcpmss_tg6_check,
332 .target = tcpmss_tg6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800333 .targetsize = sizeof(struct xt_tcpmss_info),
334 .proto = IPPROTO_TCP,
335 .me = THIS_MODULE,
336 },
337#endif
338};
339
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800340static int __init tcpmss_tg_init(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800341{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800342 return xt_register_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800343}
344
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800345static void __exit tcpmss_tg_exit(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800346{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800347 xt_unregister_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800348}
349
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800350module_init(tcpmss_tg_init);
351module_exit(tcpmss_tg_exit);