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