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");
27 MODULE_ALIAS("ip6t_dccp");
29 #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
30 || (!!((invflag) & (option)) ^ (cond)))
32 static unsigned char *dccp_optbuf;
33 static DEFINE_SPINLOCK(dccp_buflock);
36 dccp_find_option(u_int8_t option,
37 const struct sk_buff *skb,
39 const struct dccp_hdr *dh,
42 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
43 const unsigned char *op;
44 unsigned int optoff = __dccp_hdr_len(dh);
45 unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh);
48 if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) {
56 spin_lock_bh(&dccp_buflock);
57 op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf);
59 /* If we don't have the whole header, drop packet. */
60 spin_unlock_bh(&dccp_buflock);
65 for (i = 0; i < optlen; ) {
66 if (op[i] == option) {
67 spin_unlock_bh(&dccp_buflock);
77 spin_unlock_bh(&dccp_buflock);
83 match_types(const struct dccp_hdr *dh, u_int16_t typemask)
85 return typemask & (1 << dh->dccph_type);
89 match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff,
90 const struct dccp_hdr *dh, bool *hotdrop)
92 return dccp_find_option(option, skb, protoff, dh, hotdrop);
96 match(const struct sk_buff *skb,
97 const struct net_device *in,
98 const struct net_device *out,
99 const struct xt_match *match,
100 const void *matchinfo,
102 unsigned int protoff,
105 const struct xt_dccp_info *info = matchinfo;
106 struct dccp_hdr _dh, *dh;
111 dh = skb_header_pointer(skb, protoff, sizeof(_dh), &_dh);
117 return DCCHECK(ntohs(dh->dccph_sport) >= info->spts[0]
118 && ntohs(dh->dccph_sport) <= info->spts[1],
119 XT_DCCP_SRC_PORTS, info->flags, info->invflags)
120 && DCCHECK(ntohs(dh->dccph_dport) >= info->dpts[0]
121 && ntohs(dh->dccph_dport) <= info->dpts[1],
122 XT_DCCP_DEST_PORTS, info->flags, info->invflags)
123 && DCCHECK(match_types(dh, info->typemask),
124 XT_DCCP_TYPE, info->flags, info->invflags)
125 && DCCHECK(match_option(info->option, skb, protoff, dh,
127 XT_DCCP_OPTION, info->flags, info->invflags);
131 checkentry(const char *tablename,
133 const struct xt_match *match,
135 unsigned int hook_mask)
137 const struct xt_dccp_info *info = matchinfo;
139 return !(info->flags & ~XT_DCCP_VALID_FLAGS)
140 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
141 && !(info->invflags & ~info->flags);
144 static struct xt_match xt_dccp_match[] __read_mostly = {
148 .checkentry = checkentry,
150 .matchsize = sizeof(struct xt_dccp_info),
151 .proto = IPPROTO_DCCP,
157 .checkentry = checkentry,
159 .matchsize = sizeof(struct xt_dccp_info),
160 .proto = IPPROTO_DCCP,
165 static int __init xt_dccp_init(void)
169 /* doff is 8 bits, so the maximum option size is (4*256). Don't put
170 * this in BSS since DaveM is worried about locked TLB's for kernel
172 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
175 ret = xt_register_matches(xt_dccp_match, ARRAY_SIZE(xt_dccp_match));
185 static void __exit xt_dccp_fini(void)
187 xt_unregister_matches(xt_dccp_match, ARRAY_SIZE(xt_dccp_match));
191 module_init(xt_dccp_init);
192 module_exit(xt_dccp_fini);