Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / netfilter / xt_dccp.c
blobdfb10b648e570c0fce716bdae0644349f66357b9
1 /*
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.
9 */
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/spinlock.h>
14 #include <net/ip.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);
34 static inline int
35 dccp_find_option(u_int8_t option,
36 const struct sk_buff *skb,
37 unsigned int protoff,
38 const struct dccp_hdr *dh,
39 int *hotdrop)
41 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
42 unsigned char *op;
43 unsigned int optoff = __dccp_hdr_len(dh);
44 unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh);
45 unsigned int i;
47 if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) {
48 *hotdrop = 1;
49 return 0;
52 if (!optlen)
53 return 0;
55 spin_lock_bh(&dccp_buflock);
56 op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf);
57 if (op == NULL) {
58 /* If we don't have the whole header, drop packet. */
59 spin_unlock_bh(&dccp_buflock);
60 *hotdrop = 1;
61 return 0;
64 for (i = 0; i < optlen; ) {
65 if (op[i] == option) {
66 spin_unlock_bh(&dccp_buflock);
67 return 1;
70 if (op[i] < 2)
71 i++;
72 else
73 i += op[i+1]?:1;
76 spin_unlock_bh(&dccp_buflock);
77 return 0;
81 static inline int
82 match_types(const struct dccp_hdr *dh, u_int16_t typemask)
84 return (typemask & (1 << dh->dccph_type));
87 static inline int
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);
94 static int
95 match(const struct sk_buff *skb,
96 const struct net_device *in,
97 const struct net_device *out,
98 const struct xt_match *match,
99 const void *matchinfo,
100 int offset,
101 unsigned int protoff,
102 int *hotdrop)
104 const struct xt_dccp_info *info =
105 (const struct xt_dccp_info *)matchinfo;
106 struct dccp_hdr _dh, *dh;
108 if (offset)
109 return 0;
111 dh = skb_header_pointer(skb, protoff, sizeof(_dh), &_dh);
112 if (dh == NULL) {
113 *hotdrop = 1;
114 return 0;
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,
126 hotdrop),
127 XT_DCCP_OPTION, info->flags, info->invflags);
130 static int
131 checkentry(const char *tablename,
132 const void *inf,
133 const struct xt_match *match,
134 void *matchinfo,
135 unsigned int matchsize,
136 unsigned int hook_mask)
138 const struct xt_dccp_info *info = matchinfo;
140 return !(info->flags & ~XT_DCCP_VALID_FLAGS)
141 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
142 && !(info->invflags & ~info->flags);
145 static struct xt_match dccp_match =
147 .name = "dccp",
148 .match = match,
149 .matchsize = sizeof(struct xt_dccp_info),
150 .proto = IPPROTO_DCCP,
151 .checkentry = checkentry,
152 .family = AF_INET,
153 .me = THIS_MODULE,
155 static struct xt_match dccp6_match =
157 .name = "dccp",
158 .match = match,
159 .matchsize = sizeof(struct xt_dccp_info),
160 .proto = IPPROTO_DCCP,
161 .checkentry = checkentry,
162 .family = AF_INET6,
163 .me = THIS_MODULE,
167 static int __init xt_dccp_init(void)
169 int ret;
171 /* doff is 8 bits, so the maximum option size is (4*256). Don't put
172 * this in BSS since DaveM is worried about locked TLB's for kernel
173 * BSS. */
174 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
175 if (!dccp_optbuf)
176 return -ENOMEM;
177 ret = xt_register_match(&dccp_match);
178 if (ret)
179 goto out_kfree;
180 ret = xt_register_match(&dccp6_match);
181 if (ret)
182 goto out_unreg;
184 return ret;
186 out_unreg:
187 xt_unregister_match(&dccp_match);
188 out_kfree:
189 kfree(dccp_optbuf);
191 return ret;
194 static void __exit xt_dccp_fini(void)
196 xt_unregister_match(&dccp6_match);
197 xt_unregister_match(&dccp_match);
198 kfree(dccp_optbuf);
201 module_init(xt_dccp_init);
202 module_exit(xt_dccp_fini);