]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/ipset/ip_set_hash_netportnet.c
x86/msr-index: Cleanup bit defines
[mirror_ubuntu-bionic-kernel.git] / net / netfilter / ipset / ip_set_hash_netportnet.c
CommitLineData
7c3ad056
OS
1/* Copyright (C) 2003-2013 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
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:ip,port,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>
15#include <linux/random.h>
16#include <net/ip.h>
17#include <net/ipv6.h>
18#include <net/netlink.h>
19#include <net/tcp.h>
20
21#include <linux/netfilter.h>
22#include <linux/netfilter/ipset/pfxlen.h>
23#include <linux/netfilter/ipset/ip_set.h>
24#include <linux/netfilter/ipset/ip_set_getport.h>
25#include <linux/netfilter/ipset/ip_set_hash.h>
26
27#define IPSET_TYPE_REV_MIN 0
07cf8f5a 28/* 0 Comments support added */
af331419
AD
29/* 1 Forceadd support added */
30#define IPSET_TYPE_REV_MAX 2 /* skbinfo support added */
7c3ad056
OS
31
32MODULE_LICENSE("GPL");
33MODULE_AUTHOR("Oliver Smith <oliver@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>");
34IP_SET_MODULE_DESC("hash:net,port,net", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX);
35MODULE_ALIAS("ip_set_hash:net,port,net");
36
37/* Type specific function prefix */
38#define HTYPE hash_netportnet
39#define IP_SET_HASH_WITH_PROTO
40#define IP_SET_HASH_WITH_NETS
41#define IPSET_NET_COUNT 2
42
43/* IPv4 variant */
44
45/* Member elements */
46struct hash_netportnet4_elem {
47 union {
48 __be32 ip[2];
49 __be64 ipcmp;
50 };
51 __be16 port;
52 union {
53 u8 cidr[2];
54 u16 ccmp;
55 };
cac37639 56 u16 padding;
2b67d6e0 57 u8 nomatch;
7c3ad056
OS
58 u8 proto;
59};
60
61/* Common functions */
62
63static inline bool
64hash_netportnet4_data_equal(const struct hash_netportnet4_elem *ip1,
ca0f6a5c
JK
65 const struct hash_netportnet4_elem *ip2,
66 u32 *multi)
7c3ad056
OS
67{
68 return ip1->ipcmp == ip2->ipcmp &&
69 ip1->ccmp == ip2->ccmp &&
70 ip1->port == ip2->port &&
71 ip1->proto == ip2->proto;
72}
73
74static inline int
75hash_netportnet4_do_data_match(const struct hash_netportnet4_elem *elem)
76{
77 return elem->nomatch ? -ENOTEMPTY : 1;
78}
79
80static inline void
81hash_netportnet4_data_set_flags(struct hash_netportnet4_elem *elem, u32 flags)
82{
83 elem->nomatch = !!((flags >> 16) & IPSET_FLAG_NOMATCH);
84}
85
86static inline void
87hash_netportnet4_data_reset_flags(struct hash_netportnet4_elem *elem, u8 *flags)
88{
89 swap(*flags, elem->nomatch);
90}
91
92static inline void
93hash_netportnet4_data_reset_elem(struct hash_netportnet4_elem *elem,
ca0f6a5c 94 struct hash_netportnet4_elem *orig)
7c3ad056
OS
95{
96 elem->ip[1] = orig->ip[1];
97}
98
99static inline void
100hash_netportnet4_data_netmask(struct hash_netportnet4_elem *elem,
101 u8 cidr, bool inner)
102{
103 if (inner) {
104 elem->ip[1] &= ip_set_netmask(cidr);
105 elem->cidr[1] = cidr;
106 } else {
107 elem->ip[0] &= ip_set_netmask(cidr);
108 elem->cidr[0] = cidr;
109 }
110}
111
112static bool
113hash_netportnet4_data_list(struct sk_buff *skb,
ca0f6a5c 114 const struct hash_netportnet4_elem *data)
7c3ad056
OS
115{
116 u32 flags = data->nomatch ? IPSET_FLAG_NOMATCH : 0;
117
118 if (nla_put_ipaddr4(skb, IPSET_ATTR_IP, data->ip[0]) ||
119 nla_put_ipaddr4(skb, IPSET_ATTR_IP2, data->ip[1]) ||
120 nla_put_net16(skb, IPSET_ATTR_PORT, data->port) ||
121 nla_put_u8(skb, IPSET_ATTR_CIDR, data->cidr[0]) ||
122 nla_put_u8(skb, IPSET_ATTR_CIDR2, data->cidr[1]) ||
123 nla_put_u8(skb, IPSET_ATTR_PROTO, data->proto) ||
124 (flags &&
125 nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
126 goto nla_put_failure;
728a7e69 127 return false;
7c3ad056
OS
128
129nla_put_failure:
728a7e69 130 return true;
7c3ad056
OS
131}
132
133static inline void
134hash_netportnet4_data_next(struct hash_netportnet4_elem *next,
ca0f6a5c 135 const struct hash_netportnet4_elem *d)
7c3ad056
OS
136{
137 next->ipcmp = d->ipcmp;
138 next->port = d->port;
139}
140
141#define MTYPE hash_netportnet4
7c3ad056
OS
142#define HOST_MASK 32
143#include "ip_set_hash_gen.h"
144
96be5f28
ER
145static void
146hash_netportnet4_init(struct hash_netportnet4_elem *e)
147{
148 e->cidr[0] = HOST_MASK;
149 e->cidr[1] = HOST_MASK;
150}
151
7c3ad056
OS
152static int
153hash_netportnet4_kadt(struct ip_set *set, const struct sk_buff *skb,
ca0f6a5c
JK
154 const struct xt_action_param *par,
155 enum ipset_adt adt, struct ip_set_adt_opt *opt)
7c3ad056 156{
21956ab2 157 const struct hash_netportnet4 *h = set->data;
7c3ad056 158 ipset_adtfn adtfn = set->variant->adt[adt];
1a869205 159 struct hash_netportnet4_elem e = { };
7c3ad056
OS
160 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
161
f690cbae
JK
162 e.cidr[0] = INIT_CIDR(h->nets[0].cidr[0], HOST_MASK);
163 e.cidr[1] = INIT_CIDR(h->nets[0].cidr[1], HOST_MASK);
7c3ad056
OS
164 if (adt == IPSET_TEST)
165 e.ccmp = (HOST_MASK << (sizeof(e.cidr[0]) * 8)) | HOST_MASK;
166
167 if (!ip_set_get_ip4_port(skb, opt->flags & IPSET_DIM_TWO_SRC,
168 &e.port, &e.proto))
169 return -EINVAL;
170
171 ip4addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip[0]);
172 ip4addrptr(skb, opt->flags & IPSET_DIM_THREE_SRC, &e.ip[1]);
173 e.ip[0] &= ip_set_netmask(e.cidr[0]);
174 e.ip[1] &= ip_set_netmask(e.cidr[1]);
175
176 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
177}
178
179static int
180hash_netportnet4_uadt(struct ip_set *set, struct nlattr *tb[],
ca0f6a5c 181 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
7c3ad056 182{
21956ab2 183 const struct hash_netportnet4 *h = set->data;
7c3ad056 184 ipset_adtfn adtfn = set->variant->adt[adt];
96be5f28 185 struct hash_netportnet4_elem e = { };
7c3ad056 186 struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
29fbba29
JK
187 u32 ip = 0, ip_to = 0, p = 0, port, port_to;
188 u32 ip2_from = 0, ip2_to = 0, ip2;
7c3ad056 189 bool with_ports = false;
7c3ad056
OS
190 int ret;
191
a212e08e
SP
192 if (tb[IPSET_ATTR_LINENO])
193 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
194
96be5f28 195 hash_netportnet4_init(&e);
7c3ad056
OS
196 if (unlikely(!tb[IPSET_ATTR_IP] || !tb[IPSET_ATTR_IP2] ||
197 !ip_set_attr_netorder(tb, IPSET_ATTR_PORT) ||
198 !ip_set_optattr_netorder(tb, IPSET_ATTR_PORT_TO) ||
7dd37bc8 199 !ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
7c3ad056
OS
200 return -IPSET_ERR_PROTOCOL;
201
8e55d2e5
SP
202 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP], &ip);
203 if (ret)
204 return ret;
205
206 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP2], &ip2_from);
207 if (ret)
208 return ret;
209
210 ret = ip_set_get_extensions(set, tb, &ext);
7c3ad056
OS
211 if (ret)
212 return ret;
213
214 if (tb[IPSET_ATTR_CIDR]) {
aff22758
SP
215 e.cidr[0] = nla_get_u8(tb[IPSET_ATTR_CIDR]);
216 if (!e.cidr[0] || e.cidr[0] > HOST_MASK)
7c3ad056 217 return -IPSET_ERR_INVALID_CIDR;
7c3ad056
OS
218 }
219
220 if (tb[IPSET_ATTR_CIDR2]) {
aff22758
SP
221 e.cidr[1] = nla_get_u8(tb[IPSET_ATTR_CIDR2]);
222 if (!e.cidr[1] || e.cidr[1] > HOST_MASK)
7c3ad056 223 return -IPSET_ERR_INVALID_CIDR;
7c3ad056
OS
224 }
225
d25472e4 226 e.port = nla_get_be16(tb[IPSET_ATTR_PORT]);
7c3ad056
OS
227
228 if (tb[IPSET_ATTR_PROTO]) {
229 e.proto = nla_get_u8(tb[IPSET_ATTR_PROTO]);
230 with_ports = ip_set_proto_with_ports(e.proto);
231
232 if (e.proto == 0)
233 return -IPSET_ERR_INVALID_PROTO;
ca0f6a5c 234 } else {
7c3ad056 235 return -IPSET_ERR_MISSING_PROTO;
ca0f6a5c 236 }
7c3ad056
OS
237
238 if (!(with_ports || e.proto == IPPROTO_ICMP))
239 e.port = 0;
240
241 if (tb[IPSET_ATTR_CADT_FLAGS]) {
242 u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
ca0f6a5c 243
7c3ad056
OS
244 if (cadt_flags & IPSET_FLAG_NOMATCH)
245 flags |= (IPSET_FLAG_NOMATCH << 16);
246 }
247
248 with_ports = with_ports && tb[IPSET_ATTR_PORT_TO];
249 if (adt == IPSET_TEST ||
250 !(tb[IPSET_ATTR_IP_TO] || with_ports || tb[IPSET_ATTR_IP2_TO])) {
251 e.ip[0] = htonl(ip & ip_set_hostmask(e.cidr[0]));
252 e.ip[1] = htonl(ip2_from & ip_set_hostmask(e.cidr[1]));
253 ret = adtfn(set, &e, &ext, &ext, flags);
254 return ip_set_enomatch(ret, flags, adt, set) ? -ret :
255 ip_set_eexist(ret, flags) ? 0 : ret;
256 }
257
258 ip_to = ip;
259 if (tb[IPSET_ATTR_IP_TO]) {
260 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP_TO], &ip_to);
261 if (ret)
262 return ret;
263 if (ip > ip_to)
264 swap(ip, ip_to);
265 if (unlikely(ip + UINT_MAX == ip_to))
266 return -IPSET_ERR_HASH_RANGE;
ca0f6a5c 267 } else {
6e41ee68 268 ip_set_mask_from_to(ip, ip_to, e.cidr[0]);
ca0f6a5c 269 }
7c3ad056
OS
270
271 port_to = port = ntohs(e.port);
272 if (tb[IPSET_ATTR_PORT_TO]) {
273 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]);
274 if (port > port_to)
275 swap(port, port_to);
276 }
277
278 ip2_to = ip2_from;
279 if (tb[IPSET_ATTR_IP2_TO]) {
280 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP2_TO], &ip2_to);
281 if (ret)
282 return ret;
283 if (ip2_from > ip2_to)
284 swap(ip2_from, ip2_to);
285 if (unlikely(ip2_from + UINT_MAX == ip2_to))
286 return -IPSET_ERR_HASH_RANGE;
ca0f6a5c 287 } else {
6e41ee68 288 ip_set_mask_from_to(ip2_from, ip2_to, e.cidr[1]);
ca0f6a5c 289 }
7c3ad056 290
29fbba29 291 if (retried) {
7c3ad056 292 ip = ntohl(h->next.ip[0]);
29fbba29
JK
293 p = ntohs(h->next.port);
294 ip2 = ntohl(h->next.ip[1]);
295 } else {
296 p = port;
297 ip2 = ip2_from;
298 }
7c3ad056 299
29fbba29 300 do {
7c3ad056 301 e.ip[0] = htonl(ip);
29fbba29 302 ip = ip_set_range_to_cidr(ip, ip_to, &e.cidr[0]);
7c3ad056
OS
303 for (; p <= port_to; p++) {
304 e.port = htons(p);
29fbba29 305 do {
7c3ad056 306 e.ip[1] = htonl(ip2);
29fbba29
JK
307 ip2 = ip_set_range_to_cidr(ip2, ip2_to,
308 &e.cidr[1]);
7c3ad056
OS
309 ret = adtfn(set, &e, &ext, &ext, flags);
310 if (ret && !ip_set_eexist(ret, flags))
311 return ret;
ca0f6a5c
JK
312
313 ret = 0;
29fbba29
JK
314 } while (ip2++ < ip2_to);
315 ip2 = ip2_from;
7c3ad056 316 }
29fbba29
JK
317 p = port;
318 } while (ip++ < ip_to);
7c3ad056
OS
319 return ret;
320}
321
322/* IPv6 variant */
323
324struct hash_netportnet6_elem {
325 union nf_inet_addr ip[2];
326 __be16 port;
327 union {
328 u8 cidr[2];
329 u16 ccmp;
330 };
cac37639 331 u16 padding;
2b67d6e0 332 u8 nomatch;
7c3ad056
OS
333 u8 proto;
334};
335
336/* Common functions */
337
338static inline bool
339hash_netportnet6_data_equal(const struct hash_netportnet6_elem *ip1,
ca0f6a5c
JK
340 const struct hash_netportnet6_elem *ip2,
341 u32 *multi)
7c3ad056
OS
342{
343 return ipv6_addr_equal(&ip1->ip[0].in6, &ip2->ip[0].in6) &&
344 ipv6_addr_equal(&ip1->ip[1].in6, &ip2->ip[1].in6) &&
345 ip1->ccmp == ip2->ccmp &&
346 ip1->port == ip2->port &&
347 ip1->proto == ip2->proto;
348}
349
350static inline int
351hash_netportnet6_do_data_match(const struct hash_netportnet6_elem *elem)
352{
353 return elem->nomatch ? -ENOTEMPTY : 1;
354}
355
356static inline void
357hash_netportnet6_data_set_flags(struct hash_netportnet6_elem *elem, u32 flags)
358{
359 elem->nomatch = !!((flags >> 16) & IPSET_FLAG_NOMATCH);
360}
361
362static inline void
363hash_netportnet6_data_reset_flags(struct hash_netportnet6_elem *elem, u8 *flags)
364{
365 swap(*flags, elem->nomatch);
366}
367
368static inline void
369hash_netportnet6_data_reset_elem(struct hash_netportnet6_elem *elem,
ca0f6a5c 370 struct hash_netportnet6_elem *orig)
7c3ad056
OS
371{
372 elem->ip[1] = orig->ip[1];
373}
374
375static inline void
376hash_netportnet6_data_netmask(struct hash_netportnet6_elem *elem,
377 u8 cidr, bool inner)
378{
379 if (inner) {
380 ip6_netmask(&elem->ip[1], cidr);
381 elem->cidr[1] = cidr;
382 } else {
383 ip6_netmask(&elem->ip[0], cidr);
384 elem->cidr[0] = cidr;
385 }
386}
387
388static bool
389hash_netportnet6_data_list(struct sk_buff *skb,
ca0f6a5c 390 const struct hash_netportnet6_elem *data)
7c3ad056
OS
391{
392 u32 flags = data->nomatch ? IPSET_FLAG_NOMATCH : 0;
393
394 if (nla_put_ipaddr6(skb, IPSET_ATTR_IP, &data->ip[0].in6) ||
395 nla_put_ipaddr6(skb, IPSET_ATTR_IP2, &data->ip[1].in6) ||
396 nla_put_net16(skb, IPSET_ATTR_PORT, data->port) ||
397 nla_put_u8(skb, IPSET_ATTR_CIDR, data->cidr[0]) ||
398 nla_put_u8(skb, IPSET_ATTR_CIDR2, data->cidr[1]) ||
399 nla_put_u8(skb, IPSET_ATTR_PROTO, data->proto) ||
400 (flags &&
401 nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
402 goto nla_put_failure;
728a7e69 403 return false;
7c3ad056
OS
404
405nla_put_failure:
728a7e69 406 return true;
7c3ad056
OS
407}
408
409static inline void
21956ab2 410hash_netportnet6_data_next(struct hash_netportnet6_elem *next,
ca0f6a5c 411 const struct hash_netportnet6_elem *d)
7c3ad056
OS
412{
413 next->port = d->port;
414}
415
416#undef MTYPE
7c3ad056
OS
417#undef HOST_MASK
418
419#define MTYPE hash_netportnet6
7c3ad056
OS
420#define HOST_MASK 128
421#define IP_SET_EMIT_CREATE
422#include "ip_set_hash_gen.h"
423
96be5f28
ER
424static void
425hash_netportnet6_init(struct hash_netportnet6_elem *e)
426{
427 e->cidr[0] = HOST_MASK;
428 e->cidr[1] = HOST_MASK;
429}
430
7c3ad056
OS
431static int
432hash_netportnet6_kadt(struct ip_set *set, const struct sk_buff *skb,
ca0f6a5c
JK
433 const struct xt_action_param *par,
434 enum ipset_adt adt, struct ip_set_adt_opt *opt)
7c3ad056 435{
21956ab2 436 const struct hash_netportnet6 *h = set->data;
7c3ad056 437 ipset_adtfn adtfn = set->variant->adt[adt];
1a869205 438 struct hash_netportnet6_elem e = { };
7c3ad056
OS
439 struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
440
f690cbae
JK
441 e.cidr[0] = INIT_CIDR(h->nets[0].cidr[0], HOST_MASK);
442 e.cidr[1] = INIT_CIDR(h->nets[0].cidr[1], HOST_MASK);
7c3ad056
OS
443 if (adt == IPSET_TEST)
444 e.ccmp = (HOST_MASK << (sizeof(u8) * 8)) | HOST_MASK;
445
446 if (!ip_set_get_ip6_port(skb, opt->flags & IPSET_DIM_TWO_SRC,
447 &e.port, &e.proto))
448 return -EINVAL;
449
450 ip6addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip[0].in6);
451 ip6addrptr(skb, opt->flags & IPSET_DIM_THREE_SRC, &e.ip[1].in6);
452 ip6_netmask(&e.ip[0], e.cidr[0]);
453 ip6_netmask(&e.ip[1], e.cidr[1]);
454
455 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
456}
457
458static int
459hash_netportnet6_uadt(struct ip_set *set, struct nlattr *tb[],
ca0f6a5c 460 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
7c3ad056 461{
21956ab2 462 const struct hash_netportnet6 *h = set->data;
7c3ad056 463 ipset_adtfn adtfn = set->variant->adt[adt];
96be5f28 464 struct hash_netportnet6_elem e = { };
7c3ad056
OS
465 struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
466 u32 port, port_to;
467 bool with_ports = false;
468 int ret;
469
a212e08e
SP
470 if (tb[IPSET_ATTR_LINENO])
471 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
472
96be5f28 473 hash_netportnet6_init(&e);
7c3ad056
OS
474 if (unlikely(!tb[IPSET_ATTR_IP] || !tb[IPSET_ATTR_IP2] ||
475 !ip_set_attr_netorder(tb, IPSET_ATTR_PORT) ||
476 !ip_set_optattr_netorder(tb, IPSET_ATTR_PORT_TO) ||
7dd37bc8 477 !ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
7c3ad056
OS
478 return -IPSET_ERR_PROTOCOL;
479 if (unlikely(tb[IPSET_ATTR_IP_TO] || tb[IPSET_ATTR_IP2_TO]))
480 return -IPSET_ERR_HASH_RANGE_UNSUPPORTED;
481
8e55d2e5
SP
482 ret = ip_set_get_ipaddr6(tb[IPSET_ATTR_IP], &e.ip[0]);
483 if (ret)
484 return ret;
485
486 ret = ip_set_get_ipaddr6(tb[IPSET_ATTR_IP2], &e.ip[1]);
487 if (ret)
488 return ret;
489
490 ret = ip_set_get_extensions(set, tb, &ext);
7c3ad056
OS
491 if (ret)
492 return ret;
493
aff22758 494 if (tb[IPSET_ATTR_CIDR]) {
7c3ad056 495 e.cidr[0] = nla_get_u8(tb[IPSET_ATTR_CIDR]);
aff22758
SP
496 if (!e.cidr[0] || e.cidr[0] > HOST_MASK)
497 return -IPSET_ERR_INVALID_CIDR;
498 }
7c3ad056 499
aff22758 500 if (tb[IPSET_ATTR_CIDR2]) {
7c3ad056 501 e.cidr[1] = nla_get_u8(tb[IPSET_ATTR_CIDR2]);
aff22758
SP
502 if (!e.cidr[1] || e.cidr[1] > HOST_MASK)
503 return -IPSET_ERR_INVALID_CIDR;
504 }
7c3ad056
OS
505
506 ip6_netmask(&e.ip[0], e.cidr[0]);
507 ip6_netmask(&e.ip[1], e.cidr[1]);
508
d25472e4 509 e.port = nla_get_be16(tb[IPSET_ATTR_PORT]);
7c3ad056
OS
510
511 if (tb[IPSET_ATTR_PROTO]) {
512 e.proto = nla_get_u8(tb[IPSET_ATTR_PROTO]);
513 with_ports = ip_set_proto_with_ports(e.proto);
514
515 if (e.proto == 0)
516 return -IPSET_ERR_INVALID_PROTO;
ca0f6a5c 517 } else {
7c3ad056 518 return -IPSET_ERR_MISSING_PROTO;
ca0f6a5c 519 }
7c3ad056
OS
520
521 if (!(with_ports || e.proto == IPPROTO_ICMPV6))
522 e.port = 0;
523
524 if (tb[IPSET_ATTR_CADT_FLAGS]) {
525 u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
ca0f6a5c 526
7c3ad056
OS
527 if (cadt_flags & IPSET_FLAG_NOMATCH)
528 flags |= (IPSET_FLAG_NOMATCH << 16);
529 }
530
531 if (adt == IPSET_TEST || !with_ports || !tb[IPSET_ATTR_PORT_TO]) {
532 ret = adtfn(set, &e, &ext, &ext, flags);
533 return ip_set_enomatch(ret, flags, adt, set) ? -ret :
534 ip_set_eexist(ret, flags) ? 0 : ret;
535 }
536
537 port = ntohs(e.port);
538 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]);
539 if (port > port_to)
540 swap(port, port_to);
541
542 if (retried)
543 port = ntohs(h->next.port);
544 for (; port <= port_to; port++) {
545 e.port = htons(port);
546 ret = adtfn(set, &e, &ext, &ext, flags);
547
548 if (ret && !ip_set_eexist(ret, flags))
549 return ret;
ca0f6a5c
JK
550
551 ret = 0;
7c3ad056
OS
552 }
553 return ret;
554}
555
556static struct ip_set_type hash_netportnet_type __read_mostly = {
557 .name = "hash:net,port,net",
558 .protocol = IPSET_PROTOCOL,
559 .features = IPSET_TYPE_IP | IPSET_TYPE_PORT | IPSET_TYPE_IP2 |
560 IPSET_TYPE_NOMATCH,
561 .dimension = IPSET_DIM_THREE,
562 .family = NFPROTO_UNSPEC,
563 .revision_min = IPSET_TYPE_REV_MIN,
564 .revision_max = IPSET_TYPE_REV_MAX,
565 .create = hash_netportnet_create,
566 .create_policy = {
567 [IPSET_ATTR_HASHSIZE] = { .type = NLA_U32 },
568 [IPSET_ATTR_MAXELEM] = { .type = NLA_U32 },
569 [IPSET_ATTR_PROBES] = { .type = NLA_U8 },
570 [IPSET_ATTR_RESIZE] = { .type = NLA_U8 },
571 [IPSET_ATTR_TIMEOUT] = { .type = NLA_U32 },
572 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
573 },
574 .adt_policy = {
575 [IPSET_ATTR_IP] = { .type = NLA_NESTED },
576 [IPSET_ATTR_IP_TO] = { .type = NLA_NESTED },
577 [IPSET_ATTR_IP2] = { .type = NLA_NESTED },
578 [IPSET_ATTR_IP2_TO] = { .type = NLA_NESTED },
579 [IPSET_ATTR_PORT] = { .type = NLA_U16 },
580 [IPSET_ATTR_PORT_TO] = { .type = NLA_U16 },
581 [IPSET_ATTR_CIDR] = { .type = NLA_U8 },
582 [IPSET_ATTR_CIDR2] = { .type = NLA_U8 },
583 [IPSET_ATTR_PROTO] = { .type = NLA_U8 },
584 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
585 [IPSET_ATTR_TIMEOUT] = { .type = NLA_U32 },
586 [IPSET_ATTR_LINENO] = { .type = NLA_U32 },
587 [IPSET_ATTR_BYTES] = { .type = NLA_U64 },
588 [IPSET_ATTR_PACKETS] = { .type = NLA_U64 },
03726186
SP
589 [IPSET_ATTR_COMMENT] = { .type = NLA_NUL_STRING,
590 .len = IPSET_MAX_COMMENT_SIZE },
af331419
AD
591 [IPSET_ATTR_SKBMARK] = { .type = NLA_U64 },
592 [IPSET_ATTR_SKBPRIO] = { .type = NLA_U32 },
593 [IPSET_ATTR_SKBQUEUE] = { .type = NLA_U16 },
7c3ad056
OS
594 },
595 .me = THIS_MODULE,
596};
597
598static int __init
599hash_netportnet_init(void)
600{
601 return ip_set_type_register(&hash_netportnet_type);
602}
603
604static void __exit
605hash_netportnet_fini(void)
606{
18f84d41 607 rcu_barrier();
7c3ad056
OS
608 ip_set_type_unregister(&hash_netportnet_type);
609}
610
611module_init(hash_netportnet_init);
612module_exit(hash_netportnet_fini);