]>
Commit | Line | Data |
---|---|---|
d2912cb1 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1d3de414 HW |
2 | /* |
3 | * iptables module for DCCP protocol header matching | |
4 | * | |
5 | * (C) 2005 by Harald Welte <[email protected]> | |
1d3de414 HW |
6 | */ |
7 | ||
8 | #include <linux/module.h> | |
9 | #include <linux/skbuff.h> | |
5a0e3ad6 | 10 | #include <linux/slab.h> |
1d3de414 HW |
11 | #include <linux/spinlock.h> |
12 | #include <net/ip.h> | |
13 | #include <linux/dccp.h> | |
14 | ||
2e4e6a17 HW |
15 | #include <linux/netfilter/x_tables.h> |
16 | #include <linux/netfilter/xt_dccp.h> | |
17 | ||
1d3de414 | 18 | #include <linux/netfilter_ipv4/ip_tables.h> |
2e4e6a17 HW |
19 | #include <linux/netfilter_ipv6/ip6_tables.h> |
20 | ||
21 | MODULE_LICENSE("GPL"); | |
22 | MODULE_AUTHOR("Harald Welte <[email protected]>"); | |
2ae15b64 | 23 | MODULE_DESCRIPTION("Xtables: DCCP protocol packet match"); |
2e4e6a17 | 24 | MODULE_ALIAS("ipt_dccp"); |
73aaf935 | 25 | MODULE_ALIAS("ip6t_dccp"); |
1d3de414 HW |
26 | |
27 | #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \ | |
601e68e1 | 28 | || (!!((invflag) & (option)) ^ (cond))) |
1d3de414 HW |
29 | |
30 | static unsigned char *dccp_optbuf; | |
31 | static DEFINE_SPINLOCK(dccp_buflock); | |
32 | ||
1d93a9cb | 33 | static inline bool |
1d3de414 HW |
34 | dccp_find_option(u_int8_t option, |
35 | const struct sk_buff *skb, | |
2e4e6a17 | 36 | unsigned int protoff, |
1d3de414 | 37 | const struct dccp_hdr *dh, |
cff533ac | 38 | bool *hotdrop) |
1d3de414 HW |
39 | { |
40 | /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */ | |
a47362a2 | 41 | const unsigned char *op; |
1d3de414 HW |
42 | unsigned int optoff = __dccp_hdr_len(dh); |
43 | unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh); | |
44 | unsigned int i; | |
45 | ||
79f55f11 IJ |
46 | if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) |
47 | goto invalid; | |
1d3de414 HW |
48 | |
49 | if (!optlen) | |
1d93a9cb | 50 | return false; |
1d3de414 HW |
51 | |
52 | spin_lock_bh(&dccp_buflock); | |
2e4e6a17 | 53 | op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf); |
1d3de414 HW |
54 | if (op == NULL) { |
55 | /* If we don't have the whole header, drop packet. */ | |
79f55f11 | 56 | goto partial; |
1d3de414 HW |
57 | } |
58 | ||
59 | for (i = 0; i < optlen; ) { | |
60 | if (op[i] == option) { | |
61 | spin_unlock_bh(&dccp_buflock); | |
1d93a9cb | 62 | return true; |
1d3de414 HW |
63 | } |
64 | ||
601e68e1 | 65 | if (op[i] < 2) |
1d3de414 | 66 | i++; |
601e68e1 | 67 | else |
1d3de414 HW |
68 | i += op[i+1]?:1; |
69 | } | |
70 | ||
71 | spin_unlock_bh(&dccp_buflock); | |
1d93a9cb | 72 | return false; |
79f55f11 IJ |
73 | |
74 | partial: | |
75 | spin_unlock_bh(&dccp_buflock); | |
76 | invalid: | |
77 | *hotdrop = true; | |
78 | return false; | |
1d3de414 HW |
79 | } |
80 | ||
81 | ||
1d93a9cb | 82 | static inline bool |
1d3de414 HW |
83 | match_types(const struct dccp_hdr *dh, u_int16_t typemask) |
84 | { | |
7c4e36bc | 85 | return typemask & (1 << dh->dccph_type); |
1d3de414 HW |
86 | } |
87 | ||
1d93a9cb | 88 | static inline bool |
2e4e6a17 | 89 | match_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 | 95 | static bool |
62fc8051 | 96 | dccp_mt(const struct sk_buff *skb, struct xt_action_param *par) |
1d3de414 | 97 | { |
f7108a20 | 98 | const struct xt_dccp_info *info = par->matchinfo; |
3cf93c96 JE |
99 | const struct dccp_hdr *dh; |
100 | struct dccp_hdr _dh; | |
1d3de414 | 101 | |
f7108a20 | 102 | if (par->fragoff != 0) |
1d93a9cb | 103 | return false; |
601e68e1 | 104 | |
f7108a20 | 105 | dh = skb_header_pointer(skb, par->thoff, sizeof(_dh), &_dh); |
1d3de414 | 106 | if (dh == NULL) { |
b4ba2611 | 107 | par->hotdrop = true; |
1d93a9cb | 108 | return false; |
601e68e1 | 109 | } |
1d3de414 | 110 | |
7c4e36bc JE |
111 | return DCCHECK(ntohs(dh->dccph_sport) >= info->spts[0] |
112 | && ntohs(dh->dccph_sport) <= info->spts[1], | |
601e68e1 | 113 | XT_DCCP_SRC_PORTS, info->flags, info->invflags) |
7c4e36bc JE |
114 | && DCCHECK(ntohs(dh->dccph_dport) >= info->dpts[0] |
115 | && ntohs(dh->dccph_dport) <= info->dpts[1], | |
2e4e6a17 | 116 | XT_DCCP_DEST_PORTS, info->flags, info->invflags) |
1d3de414 | 117 | && DCCHECK(match_types(dh, info->typemask), |
2e4e6a17 | 118 | XT_DCCP_TYPE, info->flags, info->invflags) |
f7108a20 | 119 | && DCCHECK(match_option(info->option, skb, par->thoff, dh, |
b4ba2611 | 120 | &par->hotdrop), |
2e4e6a17 | 121 | XT_DCCP_OPTION, info->flags, info->invflags); |
1d3de414 HW |
122 | } |
123 | ||
b0f38452 | 124 | static int dccp_mt_check(const struct xt_mtchk_param *par) |
1d3de414 | 125 | { |
9b4fce7a | 126 | const struct xt_dccp_info *info = par->matchinfo; |
1d3de414 | 127 | |
9f567317 | 128 | if (info->flags & ~XT_DCCP_VALID_FLAGS) |
bd414ee6 | 129 | return -EINVAL; |
9f567317 | 130 | if (info->invflags & ~XT_DCCP_VALID_FLAGS) |
bd414ee6 | 131 | return -EINVAL; |
9f567317 | 132 | if (info->invflags & ~info->flags) |
bd414ee6 JE |
133 | return -EINVAL; |
134 | return 0; | |
2e4e6a17 HW |
135 | } |
136 | ||
d3c5ee6d | 137 | static struct xt_match dccp_mt_reg[] __read_mostly = { |
4470bbc7 PM |
138 | { |
139 | .name = "dccp", | |
ee999d8b | 140 | .family = NFPROTO_IPV4, |
d3c5ee6d JE |
141 | .checkentry = dccp_mt_check, |
142 | .match = dccp_mt, | |
4470bbc7 PM |
143 | .matchsize = sizeof(struct xt_dccp_info), |
144 | .proto = IPPROTO_DCCP, | |
145 | .me = THIS_MODULE, | |
146 | }, | |
147 | { | |
148 | .name = "dccp", | |
ee999d8b | 149 | .family = NFPROTO_IPV6, |
d3c5ee6d JE |
150 | .checkentry = dccp_mt_check, |
151 | .match = dccp_mt, | |
4470bbc7 PM |
152 | .matchsize = sizeof(struct xt_dccp_info), |
153 | .proto = IPPROTO_DCCP, | |
154 | .me = THIS_MODULE, | |
155 | }, | |
1d3de414 HW |
156 | }; |
157 | ||
d3c5ee6d | 158 | static int __init dccp_mt_init(void) |
1d3de414 HW |
159 | { |
160 | int ret; | |
161 | ||
162 | /* doff is 8 bits, so the maximum option size is (4*256). Don't put | |
163 | * this in BSS since DaveM is worried about locked TLB's for kernel | |
164 | * BSS. */ | |
165 | dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL); | |
166 | if (!dccp_optbuf) | |
167 | return -ENOMEM; | |
d3c5ee6d | 168 | ret = xt_register_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg)); |
1d3de414 | 169 | if (ret) |
2e4e6a17 | 170 | goto out_kfree; |
2e4e6a17 HW |
171 | return ret; |
172 | ||
2e4e6a17 HW |
173 | out_kfree: |
174 | kfree(dccp_optbuf); | |
1d3de414 HW |
175 | return ret; |
176 | } | |
177 | ||
d3c5ee6d | 178 | static void __exit dccp_mt_exit(void) |
1d3de414 | 179 | { |
d3c5ee6d | 180 | xt_unregister_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg)); |
1d3de414 HW |
181 | kfree(dccp_optbuf); |
182 | } | |
183 | ||
d3c5ee6d JE |
184 | module_init(dccp_mt_init); |
185 | module_exit(dccp_mt_exit); |