blob: 2e2f825dad4c35744d0121aafbe1e74e7bd362c5 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/*
2 * iptables module for DCCP protocol header matching
3 *
4 * (C) 2005 by Harald Welte <laforge@netfilter.org>
5 *
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 */
10
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>
16
17#include <linux/netfilter/x_tables.h>
18#include <linux/netfilter/xt_dccp.h>
19
20#include <linux/netfilter_ipv4/ip_tables.h>
21#include <linux/netfilter_ipv6/ip6_tables.h>
22
23MODULE_LICENSE("GPL");
24MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
25MODULE_DESCRIPTION("Match for DCCP protocol packets");
26MODULE_ALIAS("ipt_dccp");
27
28#define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
29 || (!!((invflag) & (option)) ^ (cond)))
30
31static unsigned char *dccp_optbuf;
32static DEFINE_SPINLOCK(dccp_buflock);
33
34static inline int
35dccp_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)
40{
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;
46
47 if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) {
48 *hotdrop = 1;
49 return 0;
50 }
51
52 if (!optlen)
53 return 0;
54
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;
62 }
63
64 for (i = 0; i < optlen; ) {
65 if (op[i] == option) {
66 spin_unlock_bh(&dccp_buflock);
67 return 1;
68 }
69
70 if (op[i] < 2)
71 i++;
72 else
73 i += op[i+1]?:1;
74 }
75
76 spin_unlock_bh(&dccp_buflock);
77 return 0;
78}
79
80
81static inline int
82match_types(const struct dccp_hdr *dh, u_int16_t typemask)
83{
84 return (typemask & (1 << dh->dccph_type));
85}
86
87static inline int
88match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff,
89 const struct dccp_hdr *dh, int *hotdrop)
90{
91 return dccp_find_option(option, skb, protoff, dh, hotdrop);
92}
93
94static int
95match(const struct sk_buff *skb,
96 const struct net_device *in,
97 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080098 const struct xt_match *match,
Harald Welte2e4e6a12006-01-12 13:30:04 -080099 const void *matchinfo,
100 int offset,
101 unsigned int protoff,
102 int *hotdrop)
103{
Patrick McHardy3e72b2f2006-05-29 18:19:19 -0700104 const struct xt_dccp_info *info = matchinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800105 struct dccp_hdr _dh, *dh;
106
107 if (offset)
108 return 0;
109
110 dh = skb_header_pointer(skb, protoff, sizeof(_dh), &_dh);
111 if (dh == NULL) {
112 *hotdrop = 1;
113 return 0;
114 }
115
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,
125 hotdrop),
126 XT_DCCP_OPTION, info->flags, info->invflags);
127}
128
129static int
130checkentry(const char *tablename,
131 const void *inf,
Patrick McHardyc4986732006-03-20 18:02:56 -0800132 const struct xt_match *match,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133 void *matchinfo,
134 unsigned int matchsize,
135 unsigned int hook_mask)
136{
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800137 const struct xt_dccp_info *info = matchinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800138
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800139 return !(info->flags & ~XT_DCCP_VALID_FLAGS)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800140 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
141 && !(info->invflags & ~info->flags);
142}
143
Harald Welte2e4e6a12006-01-12 13:30:04 -0800144static struct xt_match dccp_match =
145{
146 .name = "dccp",
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800147 .match = match,
148 .matchsize = sizeof(struct xt_dccp_info),
149 .proto = IPPROTO_DCCP,
150 .checkentry = checkentry,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800151 .family = AF_INET,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800152 .me = THIS_MODULE,
153};
154static struct xt_match dccp6_match =
155{
156 .name = "dccp",
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800157 .match = match,
158 .matchsize = sizeof(struct xt_dccp_info),
159 .proto = IPPROTO_DCCP,
160 .checkentry = checkentry,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800161 .family = AF_INET6,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800162 .me = THIS_MODULE,
163};
164
165
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800166static int __init xt_dccp_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800167{
168 int ret;
169
170 /* doff is 8 bits, so the maximum option size is (4*256). Don't put
171 * this in BSS since DaveM is worried about locked TLB's for kernel
172 * BSS. */
173 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
174 if (!dccp_optbuf)
175 return -ENOMEM;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800176 ret = xt_register_match(&dccp_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800177 if (ret)
178 goto out_kfree;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800179 ret = xt_register_match(&dccp6_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800180 if (ret)
181 goto out_unreg;
182
183 return ret;
184
185out_unreg:
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800186 xt_unregister_match(&dccp_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800187out_kfree:
188 kfree(dccp_optbuf);
189
190 return ret;
191}
192
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800193static void __exit xt_dccp_fini(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800194{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800195 xt_unregister_match(&dccp6_match);
196 xt_unregister_match(&dccp_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800197 kfree(dccp_optbuf);
198}
199
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800200module_init(xt_dccp_init);
201module_exit(xt_dccp_fini);