2 * iptables module for DCCP protocol header matching
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>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
16 #include <linux/dccp.h>
18 #include <linux/netfilter/x_tables.h>
19 #include <linux/netfilter/xt_dccp.h>
21 #include <linux/netfilter_ipv4/ip_tables.h>
22 #include <linux/netfilter_ipv6/ip6_tables.h>
24 MODULE_LICENSE("GPL");
26 MODULE_DESCRIPTION("Xtables: DCCP protocol packet match");
27 MODULE_ALIAS("ipt_dccp");
28 MODULE_ALIAS("ip6t_dccp");
30 #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
31 || (!!((invflag) & (option)) ^ (cond)))
33 static unsigned char *dccp_optbuf;
34 static DEFINE_SPINLOCK(dccp_buflock);
37 dccp_find_option(u_int8_t option,
38 const struct sk_buff *skb,
40 const struct dccp_hdr *dh,
43 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
44 const unsigned char *op;
45 unsigned int optoff = __dccp_hdr_len(dh);
46 unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh);
49 if (dh->dccph_doff * 4 < __dccp_hdr_len(dh))
55 spin_lock_bh(&dccp_buflock);
56 op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf);
58 /* If we don't have the whole header, drop packet. */
62 for (i = 0; i < optlen; ) {
63 if (op[i] == option) {
64 spin_unlock_bh(&dccp_buflock);
74 spin_unlock_bh(&dccp_buflock);
78 spin_unlock_bh(&dccp_buflock);
86 match_types(const struct dccp_hdr *dh, u_int16_t typemask)
88 return typemask & (1 << dh->dccph_type);
92 match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff,
93 const struct dccp_hdr *dh, bool *hotdrop)
95 return dccp_find_option(option, skb, protoff, dh, hotdrop);
99 dccp_mt(const struct sk_buff *skb, struct xt_action_param *par)
101 const struct xt_dccp_info *info = par->matchinfo;
102 const struct dccp_hdr *dh;
105 if (par->fragoff != 0)
108 dh = skb_header_pointer(skb, par->thoff, sizeof(_dh), &_dh);
114 return DCCHECK(ntohs(dh->dccph_sport) >= info->spts[0]
115 && ntohs(dh->dccph_sport) <= info->spts[1],
116 XT_DCCP_SRC_PORTS, info->flags, info->invflags)
117 && DCCHECK(ntohs(dh->dccph_dport) >= info->dpts[0]
118 && ntohs(dh->dccph_dport) <= info->dpts[1],
119 XT_DCCP_DEST_PORTS, info->flags, info->invflags)
120 && DCCHECK(match_types(dh, info->typemask),
121 XT_DCCP_TYPE, info->flags, info->invflags)
122 && DCCHECK(match_option(info->option, skb, par->thoff, dh,
124 XT_DCCP_OPTION, info->flags, info->invflags);
127 static int dccp_mt_check(const struct xt_mtchk_param *par)
129 const struct xt_dccp_info *info = par->matchinfo;
131 if (info->flags & ~XT_DCCP_VALID_FLAGS)
133 if (info->invflags & ~XT_DCCP_VALID_FLAGS)
135 if (info->invflags & ~info->flags)
140 static struct xt_match dccp_mt_reg[] __read_mostly = {
143 .family = NFPROTO_IPV4,
144 .checkentry = dccp_mt_check,
146 .matchsize = sizeof(struct xt_dccp_info),
147 .proto = IPPROTO_DCCP,
152 .family = NFPROTO_IPV6,
153 .checkentry = dccp_mt_check,
155 .matchsize = sizeof(struct xt_dccp_info),
156 .proto = IPPROTO_DCCP,
161 static int __init dccp_mt_init(void)
165 /* doff is 8 bits, so the maximum option size is (4*256). Don't put
166 * this in BSS since DaveM is worried about locked TLB's for kernel
168 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
171 ret = xt_register_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg));
181 static void __exit dccp_mt_exit(void)
183 xt_unregister_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg));
187 module_init(dccp_mt_init);
188 module_exit(dccp_mt_exit);