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