2 * iptables module for DCCP protocol header matching
4 * (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>
13 #include <linux/spinlock.h>
15 #include <linux/dccp.h>
17 #include <linux/netfilter/x_tables.h>
18 #include <linux/netfilter/xt_dccp.h>
20 #include <linux/netfilter_ipv4/ip_tables.h>
21 #include <linux/netfilter_ipv6/ip6_tables.h>
23 MODULE_LICENSE("GPL");
24 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
25 MODULE_DESCRIPTION("Match for DCCP protocol packets");
26 MODULE_ALIAS("ipt_dccp");
28 #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
29 || (!!((invflag) & (option)) ^ (cond)))
31 static unsigned char *dccp_optbuf;
32 static DEFINE_SPINLOCK(dccp_buflock);
35 dccp_find_option(u_int8_t option,
36 const struct sk_buff *skb,
38 const struct dccp_hdr *dh,
41 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
43 unsigned int optoff = __dccp_hdr_len(dh);
44 unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh);
47 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. */
59 spin_unlock_bh(&dccp_buflock);
64 for (i = 0; i < optlen; ) {
65 if (op[i] == option) {
66 spin_unlock_bh(&dccp_buflock);
76 spin_unlock_bh(&dccp_buflock);
82 match_types(const struct dccp_hdr *dh, u_int16_t typemask)
84 return (typemask & (1 << dh->dccph_type));
88 match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff,
89 const struct dccp_hdr *dh, int *hotdrop)
91 return dccp_find_option(option, skb, protoff, dh, hotdrop);
95 match(const struct sk_buff *skb,
96 const struct net_device *in,
97 const struct net_device *out,
98 const void *matchinfo,
100 unsigned int protoff,
103 const struct xt_dccp_info *info =
104 (const struct xt_dccp_info *)matchinfo;
105 struct dccp_hdr _dh, *dh;
110 dh = skb_header_pointer(skb, protoff, sizeof(_dh), &_dh);
116 return DCCHECK(((ntohs(dh->dccph_sport) >= info->spts[0])
117 && (ntohs(dh->dccph_sport) <= info->spts[1])),
118 XT_DCCP_SRC_PORTS, info->flags, info->invflags)
119 && DCCHECK(((ntohs(dh->dccph_dport) >= info->dpts[0])
120 && (ntohs(dh->dccph_dport) <= info->dpts[1])),
121 XT_DCCP_DEST_PORTS, info->flags, info->invflags)
122 && DCCHECK(match_types(dh, info->typemask),
123 XT_DCCP_TYPE, info->flags, info->invflags)
124 && DCCHECK(match_option(info->option, skb, protoff, dh,
126 XT_DCCP_OPTION, info->flags, info->invflags);
130 checkentry(const char *tablename,
133 unsigned int matchsize,
134 unsigned int hook_mask)
136 const struct ipt_ip *ip = inf;
137 const struct xt_dccp_info *info;
139 info = (const struct xt_dccp_info *)matchinfo;
141 return ip->proto == IPPROTO_DCCP
142 && !(ip->invflags & XT_INV_PROTO)
143 && matchsize == XT_ALIGN(sizeof(struct xt_dccp_info))
144 && !(info->flags & ~XT_DCCP_VALID_FLAGS)
145 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
146 && !(info->invflags & ~info->flags);
150 checkentry6(const char *tablename,
153 unsigned int matchsize,
154 unsigned int hook_mask)
156 const struct ip6t_ip6 *ip = inf;
157 const struct xt_dccp_info *info;
159 info = (const struct xt_dccp_info *)matchinfo;
161 return ip->proto == IPPROTO_DCCP
162 && !(ip->invflags & XT_INV_PROTO)
163 && matchsize == XT_ALIGN(sizeof(struct xt_dccp_info))
164 && !(info->flags & ~XT_DCCP_VALID_FLAGS)
165 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
166 && !(info->invflags & ~info->flags);
170 static struct xt_match dccp_match =
174 .checkentry = &checkentry,
177 static struct xt_match dccp6_match =
181 .checkentry = &checkentry6,
186 static int __init init(void)
190 /* doff is 8 bits, so the maximum option size is (4*256). Don't put
191 * this in BSS since DaveM is worried about locked TLB's for kernel
193 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
196 ret = xt_register_match(AF_INET, &dccp_match);
199 ret = xt_register_match(AF_INET6, &dccp6_match);
206 xt_unregister_match(AF_INET, &dccp_match);
213 static void __exit fini(void)
215 xt_unregister_match(AF_INET6, &dccp6_match);
216 xt_unregister_match(AF_INET, &dccp_match);