[NETFILTER]: Replace sk_buff ** with sk_buff *
[deliverable/linux.git] / net / netfilter / xt_dccp.c
CommitLineData
1d3de414
HW
1/*
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
2e4e6a17
HW
17#include <linux/netfilter/x_tables.h>
18#include <linux/netfilter/xt_dccp.h>
19
1d3de414 20#include <linux/netfilter_ipv4/ip_tables.h>
2e4e6a17
HW
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");
73aaf935 27MODULE_ALIAS("ip6t_dccp");
1d3de414
HW
28
29#define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
601e68e1 30 || (!!((invflag) & (option)) ^ (cond)))
1d3de414
HW
31
32static unsigned char *dccp_optbuf;
33static DEFINE_SPINLOCK(dccp_buflock);
34
1d93a9cb 35static inline bool
1d3de414
HW
36dccp_find_option(u_int8_t option,
37 const struct sk_buff *skb,
2e4e6a17 38 unsigned int protoff,
1d3de414 39 const struct dccp_hdr *dh,
cff533ac 40 bool *hotdrop)
1d3de414
HW
41{
42 /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
a47362a2 43 const unsigned char *op;
1d3de414
HW
44 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)) {
cff533ac 49 *hotdrop = true;
1d93a9cb 50 return false;
1d3de414
HW
51 }
52
53 if (!optlen)
1d93a9cb 54 return false;
1d3de414
HW
55
56 spin_lock_bh(&dccp_buflock);
2e4e6a17 57 op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf);
1d3de414
HW
58 if (op == NULL) {
59 /* If we don't have the whole header, drop packet. */
60 spin_unlock_bh(&dccp_buflock);
cff533ac 61 *hotdrop = true;
1d93a9cb 62 return false;
1d3de414
HW
63 }
64
65 for (i = 0; i < optlen; ) {
66 if (op[i] == option) {
67 spin_unlock_bh(&dccp_buflock);
1d93a9cb 68 return true;
1d3de414
HW
69 }
70
601e68e1 71 if (op[i] < 2)
1d3de414 72 i++;
601e68e1 73 else
1d3de414
HW
74 i += op[i+1]?:1;
75 }
76
77 spin_unlock_bh(&dccp_buflock);
1d93a9cb 78 return false;
1d3de414
HW
79}
80
81
1d93a9cb 82static inline bool
1d3de414
HW
83match_types(const struct dccp_hdr *dh, u_int16_t typemask)
84{
7c4e36bc 85 return typemask & (1 << dh->dccph_type);
1d3de414
HW
86}
87
1d93a9cb 88static inline bool
2e4e6a17 89match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff,
cff533ac 90 const struct dccp_hdr *dh, bool *hotdrop)
1d3de414 91{
2e4e6a17 92 return dccp_find_option(option, skb, protoff, dh, hotdrop);
1d3de414
HW
93}
94
1d93a9cb 95static bool
1d3de414
HW
96match(const struct sk_buff *skb,
97 const struct net_device *in,
98 const struct net_device *out,
c4986734 99 const struct xt_match *match,
1d3de414
HW
100 const void *matchinfo,
101 int offset,
2e4e6a17 102 unsigned int protoff,
cff533ac 103 bool *hotdrop)
1d3de414 104{
3e72b2fe 105 const struct xt_dccp_info *info = matchinfo;
1d3de414
HW
106 struct dccp_hdr _dh, *dh;
107
108 if (offset)
1d93a9cb 109 return false;
601e68e1 110
2e4e6a17 111 dh = skb_header_pointer(skb, protoff, sizeof(_dh), &_dh);
1d3de414 112 if (dh == NULL) {
cff533ac 113 *hotdrop = true;
1d93a9cb 114 return false;
601e68e1 115 }
1d3de414 116
7c4e36bc
JE
117 return DCCHECK(ntohs(dh->dccph_sport) >= info->spts[0]
118 && ntohs(dh->dccph_sport) <= info->spts[1],
601e68e1 119 XT_DCCP_SRC_PORTS, info->flags, info->invflags)
7c4e36bc
JE
120 && DCCHECK(ntohs(dh->dccph_dport) >= info->dpts[0]
121 && ntohs(dh->dccph_dport) <= info->dpts[1],
2e4e6a17 122 XT_DCCP_DEST_PORTS, info->flags, info->invflags)
1d3de414 123 && DCCHECK(match_types(dh, info->typemask),
2e4e6a17
HW
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);
1d3de414
HW
128}
129
ccb79bdc 130static bool
1d3de414 131checkentry(const char *tablename,
2e4e6a17 132 const void *inf,
c4986734 133 const struct xt_match *match,
1d3de414 134 void *matchinfo,
1d3de414
HW
135 unsigned int hook_mask)
136{
5d04bff0 137 const struct xt_dccp_info *info = matchinfo;
1d3de414 138
5d04bff0 139 return !(info->flags & ~XT_DCCP_VALID_FLAGS)
2e4e6a17
HW
140 && !(info->invflags & ~XT_DCCP_VALID_FLAGS)
141 && !(info->invflags & ~info->flags);
142}
143
9f15c530 144static struct xt_match xt_dccp_match[] __read_mostly = {
4470bbc7
PM
145 {
146 .name = "dccp",
147 .family = AF_INET,
148 .checkentry = checkentry,
149 .match = match,
150 .matchsize = sizeof(struct xt_dccp_info),
151 .proto = IPPROTO_DCCP,
152 .me = THIS_MODULE,
153 },
154 {
155 .name = "dccp",
156 .family = AF_INET6,
157 .checkentry = checkentry,
158 .match = match,
159 .matchsize = sizeof(struct xt_dccp_info),
160 .proto = IPPROTO_DCCP,
161 .me = THIS_MODULE,
162 },
1d3de414
HW
163};
164
65b4b4e8 165static int __init xt_dccp_init(void)
1d3de414
HW
166{
167 int ret;
168
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
171 * BSS. */
172 dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL);
173 if (!dccp_optbuf)
174 return -ENOMEM;
4470bbc7 175 ret = xt_register_matches(xt_dccp_match, ARRAY_SIZE(xt_dccp_match));
1d3de414 176 if (ret)
2e4e6a17 177 goto out_kfree;
2e4e6a17
HW
178 return ret;
179
2e4e6a17
HW
180out_kfree:
181 kfree(dccp_optbuf);
1d3de414
HW
182 return ret;
183}
184
65b4b4e8 185static void __exit xt_dccp_fini(void)
1d3de414 186{
4470bbc7 187 xt_unregister_matches(xt_dccp_match, ARRAY_SIZE(xt_dccp_match));
1d3de414
HW
188 kfree(dccp_optbuf);
189}
190
65b4b4e8
AM
191module_init(xt_dccp_init);
192module_exit(xt_dccp_fini);
This page took 0.403286 seconds and 5 git commands to generate.