]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/netfilter/ipset/ip_set_hash_net.c
Merge tag 'binfmt-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb...
[mirror_ubuntu-jammy-kernel.git] / net / netfilter / ipset / ip_set_hash_net.c
CommitLineData
5d50e1d8 1/* Copyright (C) 2003-2013 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
b3837029
JK
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 as
5 * published by the Free Software Foundation.
6 */
7
8/* Kernel module implementing an IP set type: the hash:net type */
9
10#include <linux/jhash.h>
11#include <linux/module.h>
12#include <linux/ip.h>
13#include <linux/skbuff.h>
14#include <linux/errno.h>
b3837029
JK
15#include <linux/random.h>
16#include <net/ip.h>
17#include <net/ipv6.h>
18#include <net/netlink.h>
19
20#include <linux/netfilter.h>
21#include <linux/netfilter/ipset/pfxlen.h>
22#include <linux/netfilter/ipset/ip_set.h>
b3837029
JK
23#include <linux/netfilter/ipset/ip_set_hash.h>
24
35b8dcf8
JK
25#define IPSET_TYPE_REV_MIN 0
26/* 1 Range as input support for IPv4 added */
27/* 2 nomatch flag support added */
fda75c6d 28/* 3 Counters support added */
07cf8f5a 29/* 4 Comments support added */
af331419
AD
30/* 5 Forceadd support added */
31#define IPSET_TYPE_REV_MAX 6 /* skbinfo mapping support added */
10111a6e 32
b3837029
JK
33MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>");
35b8dcf8 35IP_SET_MODULE_DESC("hash:net", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX);
b3837029
JK
36MODULE_ALIAS("ip_set_hash:net");
37
38/* Type specific function prefix */
5d50e1d8
JK
39#define HTYPE hash_net
40#define IP_SET_HASH_WITH_NETS
b3837029 41
03c8b234 42/* IPv4 variant */
b3837029 43
5d50e1d8 44/* Member elements */
b3837029
JK
45struct hash_net4_elem {
46 __be32 ip;
47 u16 padding0;
2a7cef2a 48 u8 nomatch;
b3837029
JK
49 u8 cidr;
50};
51
5d50e1d8
JK
52/* Common functions */
53
b3837029
JK
54static inline bool
55hash_net4_data_equal(const struct hash_net4_elem *ip1,
89dc79b7
JK
56 const struct hash_net4_elem *ip2,
57 u32 *multi)
b3837029 58{
2a7cef2a
JK
59 return ip1->ip == ip2->ip &&
60 ip1->cidr == ip2->cidr;
b3837029
JK
61}
62
5d50e1d8
JK
63static inline int
64hash_net4_do_data_match(const struct hash_net4_elem *elem)
b3837029 65{
5d50e1d8 66 return elem->nomatch ? -ENOTEMPTY : 1;
2a7cef2a
JK
67}
68
69static inline void
5d50e1d8 70hash_net4_data_set_flags(struct hash_net4_elem *elem, u32 flags)
2a7cef2a 71{
5d50e1d8 72 elem->nomatch = (flags >> 16) & IPSET_FLAG_NOMATCH;
6eb4c7e9
JK
73}
74
75static inline void
5d50e1d8 76hash_net4_data_reset_flags(struct hash_net4_elem *elem, u8 *flags)
2a7cef2a 77{
5d50e1d8 78 swap(*flags, elem->nomatch);
b3837029
JK
79}
80
81static inline void
82hash_net4_data_netmask(struct hash_net4_elem *elem, u8 cidr)
83{
84 elem->ip &= ip_set_netmask(cidr);
85 elem->cidr = cidr;
86}
87
b3837029
JK
88static bool
89hash_net4_data_list(struct sk_buff *skb, const struct hash_net4_elem *data)
90{
2a7cef2a
JK
91 u32 flags = data->nomatch ? IPSET_FLAG_NOMATCH : 0;
92
7cf7899d
DM
93 if (nla_put_ipaddr4(skb, IPSET_ATTR_IP, data->ip) ||
94 nla_put_u8(skb, IPSET_ATTR_CIDR, data->cidr) ||
95 (flags &&
96 nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
97 goto nla_put_failure;
728a7e69 98 return false;
b3837029
JK
99
100nla_put_failure:
728a7e69 101 return true;
b3837029
JK
102}
103
5d50e1d8
JK
104static inline void
105hash_net4_data_next(struct hash_net4_elem *next,
106 const struct hash_net4_elem *d)
b3837029 107{
5d50e1d8 108 next->ip = d->ip;
b3837029
JK
109}
110
5d50e1d8 111#define MTYPE hash_net4
b3837029 112#define HOST_MASK 32
5d50e1d8 113#include "ip_set_hash_gen.h"
3d14b171 114
b3837029
JK
115static int
116hash_net4_kadt(struct ip_set *set, const struct sk_buff *skb,
b66554cf 117 const struct xt_action_param *par,
5d50e1d8 118 enum ipset_adt adt, struct ip_set_adt_opt *opt)
b3837029 119{
5d50e1d8 120 const struct hash_net *h = set->data;
b3837029 121 ipset_adtfn adtfn = set->variant->adt[adt];
5d50e1d8 122 struct hash_net4_elem e = {
f690cbae 123 .cidr = INIT_CIDR(h->nets[0].cidr[0], HOST_MASK),
9b03a5ef 124 };
ca134ce8 125 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
b3837029 126
5d50e1d8 127 if (e.cidr == 0)
b3837029
JK
128 return -EINVAL;
129 if (adt == IPSET_TEST)
5d50e1d8 130 e.cidr = HOST_MASK;
b3837029 131
5d50e1d8
JK
132 ip4addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip);
133 e.ip &= ip_set_netmask(e.cidr);
b3837029 134
5d50e1d8 135 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
b3837029
JK
136}
137
138static int
139hash_net4_uadt(struct ip_set *set, struct nlattr *tb[],
3d14b171 140 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
b3837029 141{
5d50e1d8 142 const struct hash_net *h = set->data;
b3837029 143 ipset_adtfn adtfn = set->variant->adt[adt];
5d50e1d8 144 struct hash_net4_elem e = { .cidr = HOST_MASK };
ca134ce8 145 struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
20b2fab4 146 u32 ip = 0, ip_to = 0, last;
b3837029
JK
147 int ret;
148
a212e08e
SP
149 if (tb[IPSET_ATTR_LINENO])
150 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
151
b3837029 152 if (unlikely(!tb[IPSET_ATTR_IP] ||
7dd37bc8 153 !ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
b3837029
JK
154 return -IPSET_ERR_PROTOCOL;
155
8e55d2e5
SP
156 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP], &ip);
157 if (ret)
158 return ret;
159
160 ret = ip_set_get_extensions(set, tb, &ext);
b3837029
JK
161 if (ret)
162 return ret;
163
d0d9e0a5 164 if (tb[IPSET_ATTR_CIDR]) {
5d50e1d8
JK
165 e.cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
166 if (!e.cidr || e.cidr > HOST_MASK)
d0d9e0a5
JK
167 return -IPSET_ERR_INVALID_CIDR;
168 }
b3837029 169
43c56e59 170 if (tb[IPSET_ATTR_CADT_FLAGS]) {
2a7cef2a 171 u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
ca0f6a5c 172
2a7cef2a 173 if (cadt_flags & IPSET_FLAG_NOMATCH)
43c56e59 174 flags |= (IPSET_FLAG_NOMATCH << 16);
2a7cef2a
JK
175 }
176
d0d9e0a5 177 if (adt == IPSET_TEST || !tb[IPSET_ATTR_IP_TO]) {
5d50e1d8
JK
178 e.ip = htonl(ip & ip_set_hostmask(e.cidr));
179 ret = adtfn(set, &e, &ext, &ext, flags);
ca0f6a5c 180 return ip_set_enomatch(ret, flags, adt, set) ? -ret :
43c56e59 181 ip_set_eexist(ret, flags) ? 0 : ret;
d0d9e0a5 182 }
b3837029 183
d0d9e0a5
JK
184 ip_to = ip;
185 if (tb[IPSET_ATTR_IP_TO]) {
186 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP_TO], &ip_to);
187 if (ret)
188 return ret;
189 if (ip_to < ip)
190 swap(ip, ip_to);
191 if (ip + UINT_MAX == ip_to)
192 return -IPSET_ERR_HASH_RANGE;
193 }
194 if (retried)
6e27c9b4 195 ip = ntohl(h->next.ip);
d0d9e0a5 196 while (!after(ip, ip_to)) {
5d50e1d8
JK
197 e.ip = htonl(ip);
198 last = ip_set_range_to_cidr(ip, ip_to, &e.cidr);
199 ret = adtfn(set, &e, &ext, &ext, flags);
d0d9e0a5
JK
200 if (ret && !ip_set_eexist(ret, flags))
201 return ret;
ca0f6a5c
JK
202
203 ret = 0;
d0d9e0a5
JK
204 ip = last + 1;
205 }
206 return ret;
b3837029
JK
207}
208
03c8b234 209/* IPv6 variant */
b3837029
JK
210
211struct hash_net6_elem {
212 union nf_inet_addr ip;
213 u16 padding0;
2a7cef2a 214 u8 nomatch;
b3837029
JK
215 u8 cidr;
216};
217
5d50e1d8
JK
218/* Common functions */
219
b3837029
JK
220static inline bool
221hash_net6_data_equal(const struct hash_net6_elem *ip1,
89dc79b7
JK
222 const struct hash_net6_elem *ip2,
223 u32 *multi)
b3837029 224{
29e3b160 225 return ipv6_addr_equal(&ip1->ip.in6, &ip2->ip.in6) &&
b3837029
JK
226 ip1->cidr == ip2->cidr;
227}
228
5d50e1d8
JK
229static inline int
230hash_net6_do_data_match(const struct hash_net6_elem *elem)
2a7cef2a 231{
5d50e1d8 232 return elem->nomatch ? -ENOTEMPTY : 1;
6eb4c7e9
JK
233}
234
235static inline void
5d50e1d8 236hash_net6_data_set_flags(struct hash_net6_elem *elem, u32 flags)
2a7cef2a 237{
5d50e1d8 238 elem->nomatch = (flags >> 16) & IPSET_FLAG_NOMATCH;
b3837029
JK
239}
240
241static inline void
5d50e1d8 242hash_net6_data_reset_flags(struct hash_net6_elem *elem, u8 *flags)
b3837029 243{
5d50e1d8 244 swap(*flags, elem->nomatch);
b3837029
JK
245}
246
b3837029
JK
247static inline void
248hash_net6_data_netmask(struct hash_net6_elem *elem, u8 cidr)
249{
250 ip6_netmask(&elem->ip, cidr);
251 elem->cidr = cidr;
252}
253
254static bool
255hash_net6_data_list(struct sk_buff *skb, const struct hash_net6_elem *data)
256{
2a7cef2a
JK
257 u32 flags = data->nomatch ? IPSET_FLAG_NOMATCH : 0;
258
7cf7899d
DM
259 if (nla_put_ipaddr6(skb, IPSET_ATTR_IP, &data->ip.in6) ||
260 nla_put_u8(skb, IPSET_ATTR_CIDR, data->cidr) ||
261 (flags &&
262 nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
263 goto nla_put_failure;
728a7e69 264 return false;
b3837029
JK
265
266nla_put_failure:
728a7e69 267 return true;
b3837029
JK
268}
269
5d50e1d8
JK
270static inline void
271hash_net6_data_next(struct hash_net4_elem *next,
272 const struct hash_net6_elem *d)
b3837029 273{
b3837029
JK
274}
275
5d50e1d8 276#undef MTYPE
b3837029
JK
277#undef HOST_MASK
278
5d50e1d8 279#define MTYPE hash_net6
b3837029 280#define HOST_MASK 128
5d50e1d8
JK
281#define IP_SET_EMIT_CREATE
282#include "ip_set_hash_gen.h"
3d14b171 283
b3837029
JK
284static int
285hash_net6_kadt(struct ip_set *set, const struct sk_buff *skb,
b66554cf 286 const struct xt_action_param *par,
5d50e1d8 287 enum ipset_adt adt, struct ip_set_adt_opt *opt)
b3837029 288{
5d50e1d8 289 const struct hash_net *h = set->data;
b3837029 290 ipset_adtfn adtfn = set->variant->adt[adt];
5d50e1d8 291 struct hash_net6_elem e = {
f690cbae 292 .cidr = INIT_CIDR(h->nets[0].cidr[0], HOST_MASK),
9b03a5ef 293 };
ca134ce8 294 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
b3837029 295
5d50e1d8 296 if (e.cidr == 0)
b3837029
JK
297 return -EINVAL;
298 if (adt == IPSET_TEST)
5d50e1d8 299 e.cidr = HOST_MASK;
b3837029 300
5d50e1d8
JK
301 ip6addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip.in6);
302 ip6_netmask(&e.ip, e.cidr);
b3837029 303
5d50e1d8 304 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
b3837029
JK
305}
306
307static int
308hash_net6_uadt(struct ip_set *set, struct nlattr *tb[],
3d14b171 309 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
b3837029 310{
b3837029 311 ipset_adtfn adtfn = set->variant->adt[adt];
5d50e1d8 312 struct hash_net6_elem e = { .cidr = HOST_MASK };
ca134ce8 313 struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
b3837029
JK
314 int ret;
315
a212e08e
SP
316 if (tb[IPSET_ATTR_LINENO])
317 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
318
b3837029 319 if (unlikely(!tb[IPSET_ATTR_IP] ||
7dd37bc8 320 !ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
b3837029 321 return -IPSET_ERR_PROTOCOL;
d0d9e0a5
JK
322 if (unlikely(tb[IPSET_ATTR_IP_TO]))
323 return -IPSET_ERR_HASH_RANGE_UNSUPPORTED;
b3837029 324
8e55d2e5
SP
325 ret = ip_set_get_ipaddr6(tb[IPSET_ATTR_IP], &e.ip);
326 if (ret)
327 return ret;
328
329 ret = ip_set_get_extensions(set, tb, &ext);
b3837029
JK
330 if (ret)
331 return ret;
332
aff22758 333 if (tb[IPSET_ATTR_CIDR]) {
5d50e1d8 334 e.cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
aff22758
SP
335 if (!e.cidr || e.cidr > HOST_MASK)
336 return -IPSET_ERR_INVALID_CIDR;
337 }
b3837029 338
5d50e1d8 339 ip6_netmask(&e.ip, e.cidr);
b3837029 340
43c56e59 341 if (tb[IPSET_ATTR_CADT_FLAGS]) {
2a7cef2a 342 u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
ca0f6a5c 343
2a7cef2a 344 if (cadt_flags & IPSET_FLAG_NOMATCH)
43c56e59 345 flags |= (IPSET_FLAG_NOMATCH << 16);
2a7cef2a
JK
346 }
347
5d50e1d8 348 ret = adtfn(set, &e, &ext, &ext, flags);
b3837029 349
0f1799ba 350 return ip_set_enomatch(ret, flags, adt, set) ? -ret :
43c56e59 351 ip_set_eexist(ret, flags) ? 0 : ret;
b3837029
JK
352}
353
b3837029
JK
354static struct ip_set_type hash_net_type __read_mostly = {
355 .name = "hash:net",
356 .protocol = IPSET_PROTOCOL,
3e0304a5 357 .features = IPSET_TYPE_IP | IPSET_TYPE_NOMATCH,
b3837029 358 .dimension = IPSET_DIM_ONE,
c15f1c83 359 .family = NFPROTO_UNSPEC,
35b8dcf8
JK
360 .revision_min = IPSET_TYPE_REV_MIN,
361 .revision_max = IPSET_TYPE_REV_MAX,
b3837029
JK
362 .create = hash_net_create,
363 .create_policy = {
364 [IPSET_ATTR_HASHSIZE] = { .type = NLA_U32 },
365 [IPSET_ATTR_MAXELEM] = { .type = NLA_U32 },
366 [IPSET_ATTR_PROBES] = { .type = NLA_U8 },
367 [IPSET_ATTR_RESIZE] = { .type = NLA_U8 },
368 [IPSET_ATTR_TIMEOUT] = { .type = NLA_U32 },
5d50e1d8 369 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
b3837029
JK
370 },
371 .adt_policy = {
372 [IPSET_ATTR_IP] = { .type = NLA_NESTED },
d0d9e0a5 373 [IPSET_ATTR_IP_TO] = { .type = NLA_NESTED },
b3837029
JK
374 [IPSET_ATTR_CIDR] = { .type = NLA_U8 },
375 [IPSET_ATTR_TIMEOUT] = { .type = NLA_U32 },
2a7cef2a 376 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
00d71b27
JK
377 [IPSET_ATTR_BYTES] = { .type = NLA_U64 },
378 [IPSET_ATTR_PACKETS] = { .type = NLA_U64 },
03726186
SP
379 [IPSET_ATTR_COMMENT] = { .type = NLA_NUL_STRING,
380 .len = IPSET_MAX_COMMENT_SIZE },
af331419
AD
381 [IPSET_ATTR_SKBMARK] = { .type = NLA_U64 },
382 [IPSET_ATTR_SKBPRIO] = { .type = NLA_U32 },
383 [IPSET_ATTR_SKBQUEUE] = { .type = NLA_U16 },
b3837029
JK
384 },
385 .me = THIS_MODULE,
386};
387
388static int __init
389hash_net_init(void)
390{
391 return ip_set_type_register(&hash_net_type);
392}
393
394static void __exit
395hash_net_fini(void)
396{
18f84d41 397 rcu_barrier();
b3837029
JK
398 ip_set_type_unregister(&hash_net_type);
399}
400
401module_init(hash_net_init);
402module_exit(hash_net_fini);