1 /* Kernel module to match TCP MSS values. */
3 /* Copyright (C) 2000 Marc Boucher <marc@mbsi.ca>
4 * Portions (C) 2005 by Harald Welte <laforge@netfilter.org>
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>
15 #include <linux/netfilter/xt_tcpmss.h>
16 #include <linux/netfilter/x_tables.h>
18 #include <linux/netfilter_ipv4/ip_tables.h>
19 #include <linux/netfilter_ipv6/ip6_tables.h>
21 MODULE_LICENSE("GPL");
22 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
23 MODULE_DESCRIPTION("iptables TCP MSS match module");
24 MODULE_ALIAS("ipt_tcpmss");
27 match(const struct sk_buff *skb,
28 const struct net_device *in,
29 const struct net_device *out,
30 const struct xt_match *match,
31 const void *matchinfo,
36 const struct xt_tcpmss_match_info *info = matchinfo;
37 struct tcphdr _tcph, *th;
38 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
39 u8 _opt[15 * 4 - sizeof(_tcph)], *op;
40 unsigned int i, optlen;
42 /* If we don't have the whole header, drop packet. */
43 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
48 if (th->doff*4 < sizeof(*th))
51 optlen = th->doff*4 - sizeof(*th);
55 /* Truncated options. */
56 op = skb_header_pointer(skb, protoff + sizeof(*th), optlen, _opt);
60 for (i = 0; i < optlen; ) {
61 if (op[i] == TCPOPT_MSS
62 && (optlen - i) >= TCPOLEN_MSS
63 && op[i+1] == TCPOLEN_MSS) {
66 mssval = (op[i+2] << 8) | op[i+3];
68 return (mssval >= info->mss_min &&
69 mssval <= info->mss_max) ^ info->invert;
84 static struct xt_match xt_tcpmss_match[] = {
89 .matchsize = sizeof(struct xt_tcpmss_match_info),
97 .matchsize = sizeof(struct xt_tcpmss_match_info),
103 static int __init xt_tcpmss_init(void)
105 return xt_register_matches(xt_tcpmss_match,
106 ARRAY_SIZE(xt_tcpmss_match));
109 static void __exit xt_tcpmss_fini(void)
111 xt_unregister_matches(xt_tcpmss_match, ARRAY_SIZE(xt_tcpmss_match));
114 module_init(xt_tcpmss_init);
115 module_exit(xt_tcpmss_fini);