blob: 119e51fdcebcecfd9aea8b4c6efc05188f85b633 [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
Eric Dumazetced76892017-04-03 10:55:11 -0700107 if (len < tcp_hdrlen || tcp_hdrlen < sizeof(struct tcphdr))
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
Eric Dumazetced76892017-04-03 10:55:11 -0700155 /* tcph->doff has 4 bits, do not wrap it to 0 */
156 if (tcp_hdrlen >= 15 * 4)
157 return 0;
158
Patrick McHardycdd289a2007-02-07 15:09:46 -0800159 /*
160 * MSS Option not found ?! add it..
161 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700162 if (skb_tailroom(skb) < TCPOLEN_MSS) {
163 if (pskb_expand_head(skb, 0,
164 TCPOLEN_MSS - skb_tailroom(skb),
Herbert Xu2ca7b0a2007-10-14 00:39:55 -0700165 GFP_ATOMIC))
Patrick McHardycdd289a2007-02-07 15:09:46 -0800166 return -1;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700167 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800168 }
169
Herbert Xu3db05fe2007-10-15 00:53:15 -0700170 skb_put(skb, TCPOLEN_MSS);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800171
Phil Oester70d19f82013-06-12 10:44:51 +0200172 /*
173 * IPv4: RFC 1122 states "If an MSS option is not received at
174 * connection setup, TCP MUST assume a default send MSS of 536".
175 * IPv6: RFC 2460 states IPv6 has a minimum MTU of 1280 and a minimum
176 * length IPv6 header of 60, ergo the default MSS value is 1220
177 * Since no MSS was provided, we must use the default values
Phil Oester409b5452013-06-04 05:09:27 +0000178 */
Phil Oester70d19f82013-06-12 10:44:51 +0200179 if (par->family == NFPROTO_IPV4)
180 newmss = min(newmss, (u16)536);
181 else
182 newmss = min(newmss, (u16)1220);
Phil Oester409b5452013-06-04 05:09:27 +0000183
Patrick McHardycdd289a2007-02-07 15:09:46 -0800184 opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
Pablo Neira Ayuso71ffe9c2013-07-25 10:37:49 +0200185 memmove(opt + TCPOLEN_MSS, opt, len - sizeof(struct tcphdr));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800186
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100187 inet_proto_csum_replace2(&tcph->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700188 htons(len), htons(len + TCPOLEN_MSS), true);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800189 opt[0] = TCPOPT_MSS;
190 opt[1] = TCPOLEN_MSS;
191 opt[2] = (newmss & 0xff00) >> 8;
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700192 opt[3] = newmss & 0x00ff;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800193
Tom Herbert4b048d62015-08-17 13:42:25 -0700194 inet_proto_csum_replace4(&tcph->check, skb, 0, *((__be32 *)opt), false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800195
196 oldval = ((__be16 *)tcph)[6];
197 tcph->doff += TCPOLEN_MSS/4;
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100198 inet_proto_csum_replace2(&tcph->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700199 oldval, ((__be16 *)tcph)[6], false);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800200 return TCPOLEN_MSS;
201}
202
203static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200204tcpmss_tg4(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800205{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700206 struct iphdr *iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800207 __be16 newlen;
208 int ret;
209
Phil Oester70d19f82013-06-12 10:44:51 +0200210 ret = tcpmss_mangle_packet(skb, par,
Gao fengde1389b2013-09-26 15:00:30 +0800211 PF_INET,
Jan Engelhardt37c08382008-01-31 04:06:10 -0800212 iph->ihl * 4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800213 sizeof(*iph) + sizeof(struct tcphdr));
214 if (ret < 0)
215 return NF_DROP;
216 if (ret > 0) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700217 iph = ip_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800218 newlen = htons(ntohs(iph->tot_len) + ret);
Patrick McHardybe0ea7d2007-11-30 01:17:11 +1100219 csum_replace2(&iph->check, iph->tot_len, newlen);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800220 iph->tot_len = newlen;
221 }
222 return XT_CONTINUE;
223}
224
Igor Maravićc0cd1152011-12-12 02:58:24 +0000225#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800226static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200227tcpmss_tg6(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800228{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700229 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Patrick McHardycdd289a2007-02-07 15:09:46 -0800230 u8 nexthdr;
Eric Dumazetd6b33472016-01-15 08:21:32 -0800231 __be16 frag_off, oldlen, newlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800232 int tcphoff;
233 int ret;
234
235 nexthdr = ipv6h->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800236 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr, &frag_off);
Patrick McHardy9dc05642007-11-30 23:58:03 +1100237 if (tcphoff < 0)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800238 return NF_DROP;
Phil Oester70d19f82013-06-12 10:44:51 +0200239 ret = tcpmss_mangle_packet(skb, par,
Gao fengde1389b2013-09-26 15:00:30 +0800240 PF_INET6,
Jan Engelhardt37c08382008-01-31 04:06:10 -0800241 tcphoff,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800242 sizeof(*ipv6h) + sizeof(struct tcphdr));
243 if (ret < 0)
244 return NF_DROP;
245 if (ret > 0) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700246 ipv6h = ipv6_hdr(skb);
Eric Dumazetd6b33472016-01-15 08:21:32 -0800247 oldlen = ipv6h->payload_len;
248 newlen = htons(ntohs(oldlen) + ret);
249 if (skb->ip_summed == CHECKSUM_COMPLETE)
250 skb->csum = csum_add(csum_sub(skb->csum, oldlen),
251 newlen);
252 ipv6h->payload_len = newlen;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800253 }
254 return XT_CONTINUE;
255}
256#endif
257
Patrick McHardycdd289a2007-02-07 15:09:46 -0800258/* Must specify -p tcp --syn */
Jan Engelhardte1931b72007-07-07 22:16:26 -0700259static inline bool find_syn_match(const struct xt_entry_match *m)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800260{
261 const struct xt_tcp *tcpinfo = (const struct xt_tcp *)m->data;
262
263 if (strcmp(m->u.kernel.match->name, "tcp") == 0 &&
Changli Gaoa3433f32010-06-12 14:01:43 +0000264 tcpinfo->flg_cmp & TCPHDR_SYN &&
Patrick McHardycdd289a2007-02-07 15:09:46 -0800265 !(tcpinfo->invflags & XT_TCP_INV_FLAGS))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700266 return true;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800267
Jan Engelhardte1931b72007-07-07 22:16:26 -0700268 return false;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800269}
270
Jan Engelhardt135367b2010-03-19 17:16:42 +0100271static int tcpmss_tg4_check(const struct xt_tgchk_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800272{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200273 const struct xt_tcpmss_info *info = par->targinfo;
274 const struct ipt_entry *e = par->entryinfo;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100275 const struct xt_entry_match *ematch;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800276
277 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200278 (par->hook_mask & ~((1 << NF_INET_FORWARD) |
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800279 (1 << NF_INET_LOCAL_OUT) |
280 (1 << NF_INET_POST_ROUTING))) != 0) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100281 pr_info("path-MTU clamping only supported in "
282 "FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100283 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800284 }
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200285 if (par->nft_compat)
286 return 0;
287
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100288 xt_ematch_foreach(ematch, e)
289 if (find_syn_match(ematch))
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100290 return 0;
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100291 pr_info("Only works on TCP SYN packets\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100292 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800293}
294
Igor Maravićc0cd1152011-12-12 02:58:24 +0000295#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jan Engelhardt135367b2010-03-19 17:16:42 +0100296static int tcpmss_tg6_check(const struct xt_tgchk_param *par)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800297{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200298 const struct xt_tcpmss_info *info = par->targinfo;
299 const struct ip6t_entry *e = par->entryinfo;
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100300 const struct xt_entry_match *ematch;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800301
302 if (info->mss == XT_TCPMSS_CLAMP_PMTU &&
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200303 (par->hook_mask & ~((1 << NF_INET_FORWARD) |
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800304 (1 << NF_INET_LOCAL_OUT) |
305 (1 << NF_INET_POST_ROUTING))) != 0) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100306 pr_info("path-MTU clamping only supported in "
307 "FORWARD, OUTPUT and POSTROUTING hooks\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100308 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800309 }
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200310 if (par->nft_compat)
311 return 0;
312
Jan Engelhardtdcea9922010-02-24 18:34:48 +0100313 xt_ematch_foreach(ematch, e)
314 if (find_syn_match(ematch))
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100315 return 0;
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100316 pr_info("Only works on TCP SYN packets\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100317 return -EINVAL;
Patrick McHardycdd289a2007-02-07 15:09:46 -0800318}
319#endif
320
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800321static struct xt_target tcpmss_tg_reg[] __read_mostly = {
Patrick McHardycdd289a2007-02-07 15:09:46 -0800322 {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200323 .family = NFPROTO_IPV4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800324 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800325 .checkentry = tcpmss_tg4_check,
326 .target = tcpmss_tg4,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800327 .targetsize = sizeof(struct xt_tcpmss_info),
328 .proto = IPPROTO_TCP,
329 .me = THIS_MODULE,
330 },
Igor Maravićc0cd1152011-12-12 02:58:24 +0000331#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800332 {
Jan Engelhardtee999d82008-10-08 11:35:01 +0200333 .family = NFPROTO_IPV6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800334 .name = "TCPMSS",
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800335 .checkentry = tcpmss_tg6_check,
336 .target = tcpmss_tg6,
Patrick McHardycdd289a2007-02-07 15:09:46 -0800337 .targetsize = sizeof(struct xt_tcpmss_info),
338 .proto = IPPROTO_TCP,
339 .me = THIS_MODULE,
340 },
341#endif
342};
343
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800344static int __init tcpmss_tg_init(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800345{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800346 return xt_register_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800347}
348
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800349static void __exit tcpmss_tg_exit(void)
Patrick McHardycdd289a2007-02-07 15:09:46 -0800350{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800351 xt_unregister_targets(tcpmss_tg_reg, ARRAY_SIZE(tcpmss_tg_reg));
Patrick McHardycdd289a2007-02-07 15:09:46 -0800352}
353
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800354module_init(tcpmss_tg_init);
355module_exit(tcpmss_tg_exit);