1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (C) 2000-2002 Joakim Axelsson <gozem@linux.nu>
3 * Patrick Schaaf <bof@bof.de>
4 * Martin Josefsson <gandalf@wlug.westbo.se>
5 * Copyright (C) 2003-2013 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
8 /* Kernel module which implements the set match and SET target
9 * for netfilter/iptables.
12 #include <linux/module.h>
13 #include <linux/skbuff.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter/ipset/ip_set.h>
17 #include <linux/netfilter/ipset/ip_set_timeout.h>
18 #include <uapi/linux/netfilter/xt_set.h>
20 MODULE_LICENSE("GPL");
21 MODULE_AUTHOR("Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>");
22 MODULE_DESCRIPTION("Xtables: IP set match and target module");
23 MODULE_ALIAS("xt_SET");
24 MODULE_ALIAS("ipt_set");
25 MODULE_ALIAS("ip6t_set");
26 MODULE_ALIAS("ipt_SET");
27 MODULE_ALIAS("ip6t_SET");
30 match_set(ip_set_id_t index
, const struct sk_buff
*skb
,
31 const struct xt_action_param
*par
,
32 struct ip_set_adt_opt
*opt
, int inv
)
34 if (ip_set_test(index
, skb
, par
, opt
))
39 #define ADT_OPT(n, f, d, fs, cfs, t, p, b, po, bo) \
40 struct ip_set_adt_opt n = { \
48 .ext.packets_op = po, \
52 /* Revision 0 interface: backward compatible with netfilter/iptables */
55 set_match_v0(const struct sk_buff
*skb
, struct xt_action_param
*par
)
57 const struct xt_set_info_match_v0
*info
= par
->matchinfo
;
59 ADT_OPT(opt
, xt_family(par
), info
->match_set
.u
.compat
.dim
,
60 info
->match_set
.u
.compat
.flags
, 0, UINT_MAX
,
63 return match_set(info
->match_set
.index
, skb
, par
, &opt
,
64 info
->match_set
.u
.compat
.flags
& IPSET_INV_MATCH
);
68 compat_flags(struct xt_set_info_v0
*info
)
72 /* Fill out compatibility data according to enum ip_set_kopt */
73 info
->u
.compat
.dim
= IPSET_DIM_ZERO
;
74 if (info
->u
.flags
[0] & IPSET_MATCH_INV
)
75 info
->u
.compat
.flags
|= IPSET_INV_MATCH
;
76 for (i
= 0; i
< IPSET_DIM_MAX
- 1 && info
->u
.flags
[i
]; i
++) {
78 if (info
->u
.flags
[i
] & IPSET_SRC
)
79 info
->u
.compat
.flags
|= (1 << info
->u
.compat
.dim
);
84 set_match_v0_checkentry(const struct xt_mtchk_param
*par
)
86 struct xt_set_info_match_v0
*info
= par
->matchinfo
;
89 index
= ip_set_nfnl_get_byindex(par
->net
, info
->match_set
.index
);
91 if (index
== IPSET_INVALID_ID
) {
92 pr_info_ratelimited("Cannot find set identified by id %u to match\n",
93 info
->match_set
.index
);
96 if (info
->match_set
.u
.flags
[IPSET_DIM_MAX
- 1] != 0) {
97 pr_info_ratelimited("set match dimension is over the limit!\n");
98 ip_set_nfnl_put(par
->net
, info
->match_set
.index
);
102 /* Fill out compatibility data */
103 compat_flags(&info
->match_set
);
109 set_match_v0_destroy(const struct xt_mtdtor_param
*par
)
111 struct xt_set_info_match_v0
*info
= par
->matchinfo
;
113 ip_set_nfnl_put(par
->net
, info
->match_set
.index
);
116 /* Revision 1 match */
119 set_match_v1(const struct sk_buff
*skb
, struct xt_action_param
*par
)
121 const struct xt_set_info_match_v1
*info
= par
->matchinfo
;
123 ADT_OPT(opt
, xt_family(par
), info
->match_set
.dim
,
124 info
->match_set
.flags
, 0, UINT_MAX
,
127 if (opt
.flags
& IPSET_RETURN_NOMATCH
)
128 opt
.cmdflags
|= IPSET_FLAG_RETURN_NOMATCH
;
130 return match_set(info
->match_set
.index
, skb
, par
, &opt
,
131 info
->match_set
.flags
& IPSET_INV_MATCH
);
135 set_match_v1_checkentry(const struct xt_mtchk_param
*par
)
137 struct xt_set_info_match_v1
*info
= par
->matchinfo
;
140 index
= ip_set_nfnl_get_byindex(par
->net
, info
->match_set
.index
);
142 if (index
== IPSET_INVALID_ID
) {
143 pr_info_ratelimited("Cannot find set identified by id %u to match\n",
144 info
->match_set
.index
);
147 if (info
->match_set
.dim
> IPSET_DIM_MAX
) {
148 pr_info_ratelimited("set match dimension is over the limit!\n");
149 ip_set_nfnl_put(par
->net
, info
->match_set
.index
);
157 set_match_v1_destroy(const struct xt_mtdtor_param
*par
)
159 struct xt_set_info_match_v1
*info
= par
->matchinfo
;
161 ip_set_nfnl_put(par
->net
, info
->match_set
.index
);
164 /* Revision 3 match */
167 set_match_v3(const struct sk_buff
*skb
, struct xt_action_param
*par
)
169 const struct xt_set_info_match_v3
*info
= par
->matchinfo
;
171 ADT_OPT(opt
, xt_family(par
), info
->match_set
.dim
,
172 info
->match_set
.flags
, info
->flags
, UINT_MAX
,
173 info
->packets
.value
, info
->bytes
.value
,
174 info
->packets
.op
, info
->bytes
.op
);
176 if (info
->packets
.op
!= IPSET_COUNTER_NONE
||
177 info
->bytes
.op
!= IPSET_COUNTER_NONE
)
178 opt
.cmdflags
|= IPSET_FLAG_MATCH_COUNTERS
;
180 return match_set(info
->match_set
.index
, skb
, par
, &opt
,
181 info
->match_set
.flags
& IPSET_INV_MATCH
);
184 #define set_match_v3_checkentry set_match_v1_checkentry
185 #define set_match_v3_destroy set_match_v1_destroy
187 /* Revision 4 match */
190 set_match_v4(const struct sk_buff
*skb
, struct xt_action_param
*par
)
192 const struct xt_set_info_match_v4
*info
= par
->matchinfo
;
194 ADT_OPT(opt
, xt_family(par
), info
->match_set
.dim
,
195 info
->match_set
.flags
, info
->flags
, UINT_MAX
,
196 info
->packets
.value
, info
->bytes
.value
,
197 info
->packets
.op
, info
->bytes
.op
);
199 if (info
->packets
.op
!= IPSET_COUNTER_NONE
||
200 info
->bytes
.op
!= IPSET_COUNTER_NONE
)
201 opt
.cmdflags
|= IPSET_FLAG_MATCH_COUNTERS
;
203 return match_set(info
->match_set
.index
, skb
, par
, &opt
,
204 info
->match_set
.flags
& IPSET_INV_MATCH
);
207 #define set_match_v4_checkentry set_match_v1_checkentry
208 #define set_match_v4_destroy set_match_v1_destroy
210 /* Revision 0 interface: backward compatible with netfilter/iptables */
213 set_target_v0(struct sk_buff
*skb
, const struct xt_action_param
*par
)
215 const struct xt_set_info_target_v0
*info
= par
->targinfo
;
217 ADT_OPT(add_opt
, xt_family(par
), info
->add_set
.u
.compat
.dim
,
218 info
->add_set
.u
.compat
.flags
, 0, UINT_MAX
,
220 ADT_OPT(del_opt
, xt_family(par
), info
->del_set
.u
.compat
.dim
,
221 info
->del_set
.u
.compat
.flags
, 0, UINT_MAX
,
224 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
225 ip_set_add(info
->add_set
.index
, skb
, par
, &add_opt
);
226 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
227 ip_set_del(info
->del_set
.index
, skb
, par
, &del_opt
);
233 set_target_v0_checkentry(const struct xt_tgchk_param
*par
)
235 struct xt_set_info_target_v0
*info
= par
->targinfo
;
238 if (info
->add_set
.index
!= IPSET_INVALID_ID
) {
239 index
= ip_set_nfnl_get_byindex(par
->net
, info
->add_set
.index
);
240 if (index
== IPSET_INVALID_ID
) {
241 pr_info_ratelimited("Cannot find add_set index %u as target\n",
242 info
->add_set
.index
);
247 if (info
->del_set
.index
!= IPSET_INVALID_ID
) {
248 index
= ip_set_nfnl_get_byindex(par
->net
, info
->del_set
.index
);
249 if (index
== IPSET_INVALID_ID
) {
250 pr_info_ratelimited("Cannot find del_set index %u as target\n",
251 info
->del_set
.index
);
252 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
253 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
257 if (info
->add_set
.u
.flags
[IPSET_DIM_MAX
- 1] != 0 ||
258 info
->del_set
.u
.flags
[IPSET_DIM_MAX
- 1] != 0) {
259 pr_info_ratelimited("SET target dimension over the limit!\n");
260 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
261 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
262 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
263 ip_set_nfnl_put(par
->net
, info
->del_set
.index
);
267 /* Fill out compatibility data */
268 compat_flags(&info
->add_set
);
269 compat_flags(&info
->del_set
);
275 set_target_v0_destroy(const struct xt_tgdtor_param
*par
)
277 const struct xt_set_info_target_v0
*info
= par
->targinfo
;
279 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
280 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
281 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
282 ip_set_nfnl_put(par
->net
, info
->del_set
.index
);
285 /* Revision 1 target */
288 set_target_v1(struct sk_buff
*skb
, const struct xt_action_param
*par
)
290 const struct xt_set_info_target_v1
*info
= par
->targinfo
;
292 ADT_OPT(add_opt
, xt_family(par
), info
->add_set
.dim
,
293 info
->add_set
.flags
, 0, UINT_MAX
,
295 ADT_OPT(del_opt
, xt_family(par
), info
->del_set
.dim
,
296 info
->del_set
.flags
, 0, UINT_MAX
,
299 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
300 ip_set_add(info
->add_set
.index
, skb
, par
, &add_opt
);
301 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
302 ip_set_del(info
->del_set
.index
, skb
, par
, &del_opt
);
308 set_target_v1_checkentry(const struct xt_tgchk_param
*par
)
310 const struct xt_set_info_target_v1
*info
= par
->targinfo
;
313 if (info
->add_set
.index
!= IPSET_INVALID_ID
) {
314 index
= ip_set_nfnl_get_byindex(par
->net
, info
->add_set
.index
);
315 if (index
== IPSET_INVALID_ID
) {
316 pr_info_ratelimited("Cannot find add_set index %u as target\n",
317 info
->add_set
.index
);
322 if (info
->del_set
.index
!= IPSET_INVALID_ID
) {
323 index
= ip_set_nfnl_get_byindex(par
->net
, info
->del_set
.index
);
324 if (index
== IPSET_INVALID_ID
) {
325 pr_info_ratelimited("Cannot find del_set index %u as target\n",
326 info
->del_set
.index
);
327 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
328 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
332 if (info
->add_set
.dim
> IPSET_DIM_MAX
||
333 info
->del_set
.dim
> IPSET_DIM_MAX
) {
334 pr_info_ratelimited("SET target dimension over the limit!\n");
335 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
336 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
337 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
338 ip_set_nfnl_put(par
->net
, info
->del_set
.index
);
346 set_target_v1_destroy(const struct xt_tgdtor_param
*par
)
348 const struct xt_set_info_target_v1
*info
= par
->targinfo
;
350 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
351 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
352 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
353 ip_set_nfnl_put(par
->net
, info
->del_set
.index
);
356 /* Revision 2 target */
359 set_target_v2(struct sk_buff
*skb
, const struct xt_action_param
*par
)
361 const struct xt_set_info_target_v2
*info
= par
->targinfo
;
363 ADT_OPT(add_opt
, xt_family(par
), info
->add_set
.dim
,
364 info
->add_set
.flags
, info
->flags
, info
->timeout
,
366 ADT_OPT(del_opt
, xt_family(par
), info
->del_set
.dim
,
367 info
->del_set
.flags
, 0, UINT_MAX
,
370 /* Normalize to fit into jiffies */
371 if (add_opt
.ext
.timeout
!= IPSET_NO_TIMEOUT
&&
372 add_opt
.ext
.timeout
> IPSET_MAX_TIMEOUT
)
373 add_opt
.ext
.timeout
= IPSET_MAX_TIMEOUT
;
374 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
375 ip_set_add(info
->add_set
.index
, skb
, par
, &add_opt
);
376 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
377 ip_set_del(info
->del_set
.index
, skb
, par
, &del_opt
);
382 #define set_target_v2_checkentry set_target_v1_checkentry
383 #define set_target_v2_destroy set_target_v1_destroy
385 /* Revision 3 target */
387 #define MOPT(opt, member) ((opt).ext.skbinfo.member)
390 set_target_v3(struct sk_buff
*skb
, const struct xt_action_param
*par
)
392 const struct xt_set_info_target_v3
*info
= par
->targinfo
;
395 ADT_OPT(add_opt
, xt_family(par
), info
->add_set
.dim
,
396 info
->add_set
.flags
, info
->flags
, info
->timeout
,
398 ADT_OPT(del_opt
, xt_family(par
), info
->del_set
.dim
,
399 info
->del_set
.flags
, 0, UINT_MAX
,
401 ADT_OPT(map_opt
, xt_family(par
), info
->map_set
.dim
,
402 info
->map_set
.flags
, 0, UINT_MAX
,
405 /* Normalize to fit into jiffies */
406 if (add_opt
.ext
.timeout
!= IPSET_NO_TIMEOUT
&&
407 add_opt
.ext
.timeout
> IPSET_MAX_TIMEOUT
)
408 add_opt
.ext
.timeout
= IPSET_MAX_TIMEOUT
;
409 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
410 ip_set_add(info
->add_set
.index
, skb
, par
, &add_opt
);
411 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
412 ip_set_del(info
->del_set
.index
, skb
, par
, &del_opt
);
413 if (info
->map_set
.index
!= IPSET_INVALID_ID
) {
414 map_opt
.cmdflags
|= info
->flags
& (IPSET_FLAG_MAP_SKBMARK
|
415 IPSET_FLAG_MAP_SKBPRIO
|
416 IPSET_FLAG_MAP_SKBQUEUE
);
417 ret
= match_set(info
->map_set
.index
, skb
, par
, &map_opt
,
418 info
->map_set
.flags
& IPSET_INV_MATCH
);
421 if (map_opt
.cmdflags
& IPSET_FLAG_MAP_SKBMARK
)
422 skb
->mark
= (skb
->mark
& ~MOPT(map_opt
,skbmarkmask
))
423 ^ MOPT(map_opt
, skbmark
);
424 if (map_opt
.cmdflags
& IPSET_FLAG_MAP_SKBPRIO
)
425 skb
->priority
= MOPT(map_opt
, skbprio
);
426 if ((map_opt
.cmdflags
& IPSET_FLAG_MAP_SKBQUEUE
) &&
428 skb
->dev
->real_num_tx_queues
> MOPT(map_opt
, skbqueue
))
429 skb_set_queue_mapping(skb
, MOPT(map_opt
, skbqueue
));
435 set_target_v3_checkentry(const struct xt_tgchk_param
*par
)
437 const struct xt_set_info_target_v3
*info
= par
->targinfo
;
440 if (info
->add_set
.index
!= IPSET_INVALID_ID
) {
441 index
= ip_set_nfnl_get_byindex(par
->net
,
442 info
->add_set
.index
);
443 if (index
== IPSET_INVALID_ID
) {
444 pr_info_ratelimited("Cannot find add_set index %u as target\n",
445 info
->add_set
.index
);
450 if (info
->del_set
.index
!= IPSET_INVALID_ID
) {
451 index
= ip_set_nfnl_get_byindex(par
->net
,
452 info
->del_set
.index
);
453 if (index
== IPSET_INVALID_ID
) {
454 pr_info_ratelimited("Cannot find del_set index %u as target\n",
455 info
->del_set
.index
);
456 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
457 ip_set_nfnl_put(par
->net
,
458 info
->add_set
.index
);
463 if (info
->map_set
.index
!= IPSET_INVALID_ID
) {
464 if (strncmp(par
->table
, "mangle", 7)) {
465 pr_info_ratelimited("--map-set only usable from mangle table\n");
468 if (((info
->flags
& IPSET_FLAG_MAP_SKBPRIO
) |
469 (info
->flags
& IPSET_FLAG_MAP_SKBQUEUE
)) &&
470 (par
->hook_mask
& ~(1 << NF_INET_FORWARD
|
471 1 << NF_INET_LOCAL_OUT
|
472 1 << NF_INET_POST_ROUTING
))) {
473 pr_info_ratelimited("mapping of prio or/and queue is allowed only from OUTPUT/FORWARD/POSTROUTING chains\n");
476 index
= ip_set_nfnl_get_byindex(par
->net
,
477 info
->map_set
.index
);
478 if (index
== IPSET_INVALID_ID
) {
479 pr_info_ratelimited("Cannot find map_set index %u as target\n",
480 info
->map_set
.index
);
481 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
482 ip_set_nfnl_put(par
->net
,
483 info
->add_set
.index
);
484 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
485 ip_set_nfnl_put(par
->net
,
486 info
->del_set
.index
);
491 if (info
->add_set
.dim
> IPSET_DIM_MAX
||
492 info
->del_set
.dim
> IPSET_DIM_MAX
||
493 info
->map_set
.dim
> IPSET_DIM_MAX
) {
494 pr_info_ratelimited("SET target dimension over the limit!\n");
495 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
496 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
497 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
498 ip_set_nfnl_put(par
->net
, info
->del_set
.index
);
499 if (info
->map_set
.index
!= IPSET_INVALID_ID
)
500 ip_set_nfnl_put(par
->net
, info
->map_set
.index
);
508 set_target_v3_destroy(const struct xt_tgdtor_param
*par
)
510 const struct xt_set_info_target_v3
*info
= par
->targinfo
;
512 if (info
->add_set
.index
!= IPSET_INVALID_ID
)
513 ip_set_nfnl_put(par
->net
, info
->add_set
.index
);
514 if (info
->del_set
.index
!= IPSET_INVALID_ID
)
515 ip_set_nfnl_put(par
->net
, info
->del_set
.index
);
516 if (info
->map_set
.index
!= IPSET_INVALID_ID
)
517 ip_set_nfnl_put(par
->net
, info
->map_set
.index
);
520 static struct xt_match set_matches
[] __read_mostly
= {
523 .family
= NFPROTO_IPV4
,
525 .match
= set_match_v0
,
526 .matchsize
= sizeof(struct xt_set_info_match_v0
),
527 .checkentry
= set_match_v0_checkentry
,
528 .destroy
= set_match_v0_destroy
,
533 .family
= NFPROTO_IPV4
,
535 .match
= set_match_v1
,
536 .matchsize
= sizeof(struct xt_set_info_match_v1
),
537 .checkentry
= set_match_v1_checkentry
,
538 .destroy
= set_match_v1_destroy
,
543 .family
= NFPROTO_IPV6
,
545 .match
= set_match_v1
,
546 .matchsize
= sizeof(struct xt_set_info_match_v1
),
547 .checkentry
= set_match_v1_checkentry
,
548 .destroy
= set_match_v1_destroy
,
551 /* --return-nomatch flag support */
554 .family
= NFPROTO_IPV4
,
556 .match
= set_match_v1
,
557 .matchsize
= sizeof(struct xt_set_info_match_v1
),
558 .checkentry
= set_match_v1_checkentry
,
559 .destroy
= set_match_v1_destroy
,
564 .family
= NFPROTO_IPV6
,
566 .match
= set_match_v1
,
567 .matchsize
= sizeof(struct xt_set_info_match_v1
),
568 .checkentry
= set_match_v1_checkentry
,
569 .destroy
= set_match_v1_destroy
,
572 /* counters support: update, match */
575 .family
= NFPROTO_IPV4
,
577 .match
= set_match_v3
,
578 .matchsize
= sizeof(struct xt_set_info_match_v3
),
579 .checkentry
= set_match_v3_checkentry
,
580 .destroy
= set_match_v3_destroy
,
585 .family
= NFPROTO_IPV6
,
587 .match
= set_match_v3
,
588 .matchsize
= sizeof(struct xt_set_info_match_v3
),
589 .checkentry
= set_match_v3_checkentry
,
590 .destroy
= set_match_v3_destroy
,
593 /* new revision for counters support: update, match */
596 .family
= NFPROTO_IPV4
,
598 .match
= set_match_v4
,
599 .matchsize
= sizeof(struct xt_set_info_match_v4
),
600 .checkentry
= set_match_v4_checkentry
,
601 .destroy
= set_match_v4_destroy
,
606 .family
= NFPROTO_IPV6
,
608 .match
= set_match_v4
,
609 .matchsize
= sizeof(struct xt_set_info_match_v4
),
610 .checkentry
= set_match_v4_checkentry
,
611 .destroy
= set_match_v4_destroy
,
616 static struct xt_target set_targets
[] __read_mostly
= {
620 .family
= NFPROTO_IPV4
,
621 .target
= set_target_v0
,
622 .targetsize
= sizeof(struct xt_set_info_target_v0
),
623 .checkentry
= set_target_v0_checkentry
,
624 .destroy
= set_target_v0_destroy
,
630 .family
= NFPROTO_IPV4
,
631 .target
= set_target_v1
,
632 .targetsize
= sizeof(struct xt_set_info_target_v1
),
633 .checkentry
= set_target_v1_checkentry
,
634 .destroy
= set_target_v1_destroy
,
640 .family
= NFPROTO_IPV6
,
641 .target
= set_target_v1
,
642 .targetsize
= sizeof(struct xt_set_info_target_v1
),
643 .checkentry
= set_target_v1_checkentry
,
644 .destroy
= set_target_v1_destroy
,
647 /* --timeout and --exist flags support */
651 .family
= NFPROTO_IPV4
,
652 .target
= set_target_v2
,
653 .targetsize
= sizeof(struct xt_set_info_target_v2
),
654 .checkentry
= set_target_v2_checkentry
,
655 .destroy
= set_target_v2_destroy
,
661 .family
= NFPROTO_IPV6
,
662 .target
= set_target_v2
,
663 .targetsize
= sizeof(struct xt_set_info_target_v2
),
664 .checkentry
= set_target_v2_checkentry
,
665 .destroy
= set_target_v2_destroy
,
668 /* --map-set support */
672 .family
= NFPROTO_IPV4
,
673 .target
= set_target_v3
,
674 .targetsize
= sizeof(struct xt_set_info_target_v3
),
675 .checkentry
= set_target_v3_checkentry
,
676 .destroy
= set_target_v3_destroy
,
682 .family
= NFPROTO_IPV6
,
683 .target
= set_target_v3
,
684 .targetsize
= sizeof(struct xt_set_info_target_v3
),
685 .checkentry
= set_target_v3_checkentry
,
686 .destroy
= set_target_v3_destroy
,
691 static int __init
xt_set_init(void)
693 int ret
= xt_register_matches(set_matches
, ARRAY_SIZE(set_matches
));
696 ret
= xt_register_targets(set_targets
,
697 ARRAY_SIZE(set_targets
));
699 xt_unregister_matches(set_matches
,
700 ARRAY_SIZE(set_matches
));
705 static void __exit
xt_set_fini(void)
707 xt_unregister_matches(set_matches
, ARRAY_SIZE(set_matches
));
708 xt_unregister_targets(set_targets
, ARRAY_SIZE(set_targets
));
711 module_init(xt_set_init
);
712 module_exit(xt_set_fini
);