blob: 7aa30bb910509ec6f52b3ee3871fe9dd3ae8310f [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>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080025MODULE_DESCRIPTION("Xtables: DCCP protocol packet match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080026MODULE_ALIAS("ipt_dccp");
Jan Engelhardt73aaf932007-10-11 14:36:40 -070027MODULE_ALIAS("ip6t_dccp");
Harald Welte2e4e6a12006-01-12 13:30:04 -080028
29#define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080030 || (!!((invflag) & (option)) ^ (cond)))
Harald Welte2e4e6a12006-01-12 13:30:04 -080031
32static unsigned char *dccp_optbuf;
33static DEFINE_SPINLOCK(dccp_buflock);
34
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070035static inline bool
Harald Welte2e4e6a12006-01-12 13:30:04 -080036dccp_find_option(u_int8_t option,
37 const struct sk_buff *skb,
38 unsigned int protoff,
39 const struct dccp_hdr *dh,
Jan Engelhardtcff533a2007-07-07 22:15:12 -070040 bool *hotdrop)
Harald Welte2e4e6a12006-01-12 13:30:04 -080041{
42 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
Jan Engelhardta47362a2007-07-07 22:16:55 -070043 const unsigned char *op;
Harald Welte2e4e6a12006-01-12 13:30:04 -080044 unsigned int optoff = __dccp_hdr_len(dh);
45 unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh);
46 unsigned int i;
47
48 if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) {
Jan Engelhardtcff533a2007-07-07 22:15:12 -070049 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070050 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080051 }
52
53 if (!optlen)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070054 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080055
56 spin_lock_bh(&dccp_buflock);
57 op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf);
58 if (op == NULL) {
59 /* If we don't have the whole header, drop packet. */
60 spin_unlock_bh(&dccp_buflock);
Jan Engelhardtcff533a2007-07-07 22:15:12 -070061 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070062 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080063 }
64
65 for (i = 0; i < optlen; ) {
66 if (op[i] == option) {
67 spin_unlock_bh(&dccp_buflock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070068 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -080069 }
70
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080071 if (op[i] < 2)
Harald Welte2e4e6a12006-01-12 13:30:04 -080072 i++;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080073 else
Harald Welte2e4e6a12006-01-12 13:30:04 -080074 i += op[i+1]?:1;
75 }
76
77 spin_unlock_bh(&dccp_buflock);
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070078 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080079}
80
81
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070082static inline bool
Harald Welte2e4e6a12006-01-12 13:30:04 -080083match_types(const struct dccp_hdr *dh, u_int16_t typemask)
84{
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -070085 return typemask & (1 << dh->dccph_type);
Harald Welte2e4e6a12006-01-12 13:30:04 -080086}
87
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070088static inline bool
Harald Welte2e4e6a12006-01-12 13:30:04 -080089match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -070090 const struct dccp_hdr *dh, bool *hotdrop)
Harald Welte2e4e6a12006-01-12 13:30:04 -080091{
92 return dccp_find_option(option, skb, protoff, dh, hotdrop);
93}
94
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070095static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020096dccp_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Harald Welte2e4e6a12006-01-12 13:30:04 -080097{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020098 const struct xt_dccp_info *info = par->matchinfo;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +020099 const struct dccp_hdr *dh;
100 struct dccp_hdr _dh;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800101
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200102 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700103 return false;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800104
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200105 dh = skb_header_pointer(skb, par->thoff, sizeof(_dh), &_dh);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800106 if (dh == NULL) {
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200107 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700108 return false;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800109 }
Harald Welte2e4e6a12006-01-12 13:30:04 -0800110
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700111 return DCCHECK(ntohs(dh->dccph_sport) >= info->spts[0]
112 && ntohs(dh->dccph_sport) <= info->spts[1],
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800113 XT_DCCP_SRC_PORTS, info->flags, info->invflags)
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700114 && DCCHECK(ntohs(dh->dccph_dport) >= info->dpts[0]
115 && ntohs(dh->dccph_dport) <= info->dpts[1],
Harald Welte2e4e6a12006-01-12 13:30:04 -0800116 XT_DCCP_DEST_PORTS, info->flags, info->invflags)
117 && DCCHECK(match_types(dh, info->typemask),
118 XT_DCCP_TYPE, info->flags, info->invflags)
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200119 && DCCHECK(match_option(info->option, skb, par->thoff, dh,
120 par->hotdrop),
Harald Welte2e4e6a12006-01-12 13:30:04 -0800121 XT_DCCP_OPTION, info->flags, info->invflags);
122}
123
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700124static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800125dccp_mt_check(const char *tablename, const void *inf,
126 const struct xt_match *match, void *matchinfo,
127 unsigned int hook_mask)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800128{
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800129 const struct xt_dccp_info *info = matchinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800130
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800131 return !(info->flags & ~XT_DCCP_VALID_FLAGS)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
133 && !(info->invflags & ~info->flags);
134}
135
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800136static struct xt_match dccp_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700137 {
138 .name = "dccp",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200139 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800140 .checkentry = dccp_mt_check,
141 .match = dccp_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700142 .matchsize = sizeof(struct xt_dccp_info),
143 .proto = IPPROTO_DCCP,
144 .me = THIS_MODULE,
145 },
146 {
147 .name = "dccp",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200148 .family = NFPROTO_IPV6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800149 .checkentry = dccp_mt_check,
150 .match = dccp_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700151 .matchsize = sizeof(struct xt_dccp_info),
152 .proto = IPPROTO_DCCP,
153 .me = THIS_MODULE,
154 },
Harald Welte2e4e6a12006-01-12 13:30:04 -0800155};
Harald Welte2e4e6a12006-01-12 13:30:04 -0800156
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800157static int __init dccp_mt_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800158{
159 int ret;
160
161 /* doff is 8 bits, so the maximum option size is (4*256). Don't put
162 * this in BSS since DaveM is worried about locked TLB's for kernel
163 * BSS. */
164 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
165 if (!dccp_optbuf)
166 return -ENOMEM;
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800167 ret = xt_register_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800168 if (ret)
169 goto out_kfree;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800170 return ret;
171
Harald Welte2e4e6a12006-01-12 13:30:04 -0800172out_kfree:
173 kfree(dccp_optbuf);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800174 return ret;
175}
176
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800177static void __exit dccp_mt_exit(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800178{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800179 xt_unregister_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800180 kfree(dccp_optbuf);
181}
182
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800183module_init(dccp_mt_init);
184module_exit(dccp_mt_exit);