1 // SPDX-License-Identifier: GPL-2.0-only
5 * This software has been sponsored by Sophos Astaro <http://www.sophos.com>
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/netlink.h>
12 #include <linux/netfilter.h>
13 #include <linux/netfilter/nfnetlink.h>
14 #include <linux/netfilter/nf_tables.h>
15 #include <linux/netfilter/nf_tables_compat.h>
16 #include <linux/netfilter/x_tables.h>
17 #include <linux/netfilter_ipv4/ip_tables.h>
18 #include <linux/netfilter_ipv6/ip6_tables.h>
19 #include <linux/netfilter_bridge/ebtables.h>
20 #include <linux/netfilter_arp/arp_tables.h>
21 #include <net/netfilter/nf_tables.h>
22 #include <net/netfilter/nf_log.h>
24 /* Used for matches where *info is larger than X byte */
25 #define NFT_MATCH_LARGE_THRESH 192
27 struct nft_xt_match_priv {
31 static int nft_compat_chain_validate_dependency(const struct nft_ctx *ctx,
32 const char *tablename)
34 enum nft_chain_types type = NFT_CHAIN_T_DEFAULT;
35 const struct nft_chain *chain = ctx->chain;
36 const struct nft_base_chain *basechain;
39 !nft_is_base_chain(chain))
42 basechain = nft_base_chain(chain);
43 if (strcmp(tablename, "nat") == 0) {
44 if (ctx->family != NFPROTO_BRIDGE)
45 type = NFT_CHAIN_T_NAT;
46 if (basechain->type->type != type)
57 struct arpt_entry arp;
61 nft_compat_set_par(struct xt_action_param *par,
62 const struct nft_pktinfo *pkt,
63 const void *xt, const void *xt_info)
65 par->state = pkt->state;
66 par->thoff = nft_thoff(pkt);
67 par->fragoff = pkt->fragoff;
69 par->targinfo = xt_info;
73 static void nft_target_eval_xt(const struct nft_expr *expr,
74 struct nft_regs *regs,
75 const struct nft_pktinfo *pkt)
77 void *info = nft_expr_priv(expr);
78 struct xt_target *target = expr->ops->data;
79 struct sk_buff *skb = pkt->skb;
80 struct xt_action_param xt;
83 nft_compat_set_par(&xt, pkt, target, info);
85 ret = target->target(skb, &xt);
92 regs->verdict.code = NFT_CONTINUE;
95 regs->verdict.code = ret;
100 static void nft_target_eval_bridge(const struct nft_expr *expr,
101 struct nft_regs *regs,
102 const struct nft_pktinfo *pkt)
104 void *info = nft_expr_priv(expr);
105 struct xt_target *target = expr->ops->data;
106 struct sk_buff *skb = pkt->skb;
107 struct xt_action_param xt;
110 nft_compat_set_par(&xt, pkt, target, info);
112 ret = target->target(skb, &xt);
119 regs->verdict.code = NF_ACCEPT;
122 regs->verdict.code = NF_DROP;
125 regs->verdict.code = NFT_CONTINUE;
128 regs->verdict.code = NFT_RETURN;
131 regs->verdict.code = ret;
136 static const struct nla_policy nft_target_policy[NFTA_TARGET_MAX + 1] = {
137 [NFTA_TARGET_NAME] = { .type = NLA_NUL_STRING },
138 [NFTA_TARGET_REV] = { .type = NLA_U32 },
139 [NFTA_TARGET_INFO] = { .type = NLA_BINARY },
143 nft_target_set_tgchk_param(struct xt_tgchk_param *par,
144 const struct nft_ctx *ctx,
145 struct xt_target *target, void *info,
146 union nft_entry *entry, u16 proto, bool inv)
149 par->table = ctx->table->name;
150 switch (ctx->family) {
152 entry->e4.ip.proto = proto;
153 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
157 entry->e6.ipv6.flags |= IP6T_F_PROTO;
159 entry->e6.ipv6.proto = proto;
160 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
163 entry->ebt.ethproto = (__force __be16)proto;
164 entry->ebt.invflags = inv ? EBT_IPROTO : 0;
169 par->entryinfo = entry;
170 par->target = target;
171 par->targinfo = info;
172 if (nft_is_base_chain(ctx->chain)) {
173 const struct nft_base_chain *basechain =
174 nft_base_chain(ctx->chain);
175 const struct nf_hook_ops *ops = &basechain->ops;
177 par->hook_mask = 1 << ops->hooknum;
181 par->family = ctx->family;
182 par->nft_compat = true;
185 static void target_compat_from_user(struct xt_target *t, void *in, void *out)
189 memcpy(out, in, t->targetsize);
190 pad = XT_ALIGN(t->targetsize) - t->targetsize;
192 memset(out + t->targetsize, 0, pad);
195 static const struct nla_policy nft_rule_compat_policy[NFTA_RULE_COMPAT_MAX + 1] = {
196 [NFTA_RULE_COMPAT_PROTO] = { .type = NLA_U32 },
197 [NFTA_RULE_COMPAT_FLAGS] = { .type = NLA_U32 },
200 static int nft_parse_compat(const struct nlattr *attr, u16 *proto, bool *inv)
202 struct nlattr *tb[NFTA_RULE_COMPAT_MAX+1];
206 err = nla_parse_nested_deprecated(tb, NFTA_RULE_COMPAT_MAX, attr,
207 nft_rule_compat_policy, NULL);
211 if (!tb[NFTA_RULE_COMPAT_PROTO] || !tb[NFTA_RULE_COMPAT_FLAGS])
214 flags = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_FLAGS]));
215 if (flags & ~NFT_RULE_COMPAT_F_MASK)
217 if (flags & NFT_RULE_COMPAT_F_INV)
220 *proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO]));
224 static void nft_compat_wait_for_destructors(void)
226 /* xtables matches or targets can have side effects, e.g.
227 * creation/destruction of /proc files.
228 * The xt ->destroy functions are run asynchronously from
229 * work queue. If we have pending invocations we thus
230 * need to wait for those to finish.
232 nf_tables_trans_destroy_flush_work();
236 nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
237 const struct nlattr * const tb[])
239 void *info = nft_expr_priv(expr);
240 struct xt_target *target = expr->ops->data;
241 struct xt_tgchk_param par;
242 size_t size = XT_ALIGN(nla_len(tb[NFTA_TARGET_INFO]));
245 union nft_entry e = {};
248 target_compat_from_user(target, nla_data(tb[NFTA_TARGET_INFO]), info);
250 if (ctx->nla[NFTA_RULE_COMPAT]) {
251 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
256 nft_target_set_tgchk_param(&par, ctx, target, info, &e, proto, inv);
258 nft_compat_wait_for_destructors();
260 ret = xt_check_target(&par, size, proto, inv);
262 if (ret == -ENOENT) {
263 const char *modname = NULL;
265 if (strcmp(target->name, "LOG") == 0)
266 modname = "nf_log_syslog";
267 else if (strcmp(target->name, "NFLOG") == 0)
268 modname = "nfnetlink_log";
271 nft_request_module(ctx->net, "%s", modname) == -EAGAIN)
278 /* The standard target cannot be used */
285 static void __nft_mt_tg_destroy(struct module *me, const struct nft_expr *expr)
292 nft_target_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
294 struct xt_target *target = expr->ops->data;
295 void *info = nft_expr_priv(expr);
296 struct module *me = target->me;
297 struct xt_tgdtor_param par;
302 par.family = ctx->family;
303 if (par.target->destroy != NULL)
304 par.target->destroy(&par);
306 __nft_mt_tg_destroy(me, expr);
309 static int nft_extension_dump_info(struct sk_buff *skb, int attr,
311 unsigned int size, unsigned int user_size)
313 unsigned int info_size, aligned_size = XT_ALIGN(size);
316 nla = nla_reserve(skb, attr, aligned_size);
320 info_size = user_size ? : size;
321 memcpy(nla_data(nla), info, info_size);
322 memset(nla_data(nla) + info_size, 0, aligned_size - info_size);
327 static int nft_target_dump(struct sk_buff *skb,
328 const struct nft_expr *expr, bool reset)
330 const struct xt_target *target = expr->ops->data;
331 void *info = nft_expr_priv(expr);
333 if (nla_put_string(skb, NFTA_TARGET_NAME, target->name) ||
334 nla_put_be32(skb, NFTA_TARGET_REV, htonl(target->revision)) ||
335 nft_extension_dump_info(skb, NFTA_TARGET_INFO, info,
336 target->targetsize, target->usersize))
337 goto nla_put_failure;
345 static int nft_target_validate(const struct nft_ctx *ctx,
346 const struct nft_expr *expr,
347 const struct nft_data **data)
349 struct xt_target *target = expr->ops->data;
350 unsigned int hook_mask = 0;
353 if (nft_is_base_chain(ctx->chain)) {
354 const struct nft_base_chain *basechain =
355 nft_base_chain(ctx->chain);
356 const struct nf_hook_ops *ops = &basechain->ops;
358 hook_mask = 1 << ops->hooknum;
359 if (target->hooks && !(hook_mask & target->hooks))
362 ret = nft_compat_chain_validate_dependency(ctx, target->table);
369 static void __nft_match_eval(const struct nft_expr *expr,
370 struct nft_regs *regs,
371 const struct nft_pktinfo *pkt,
374 struct xt_match *match = expr->ops->data;
375 struct sk_buff *skb = pkt->skb;
376 struct xt_action_param xt;
379 nft_compat_set_par(&xt, pkt, match, info);
381 ret = match->match(skb, &xt);
384 regs->verdict.code = NF_DROP;
388 switch (ret ? 1 : 0) {
390 regs->verdict.code = NFT_CONTINUE;
393 regs->verdict.code = NFT_BREAK;
398 static void nft_match_large_eval(const struct nft_expr *expr,
399 struct nft_regs *regs,
400 const struct nft_pktinfo *pkt)
402 struct nft_xt_match_priv *priv = nft_expr_priv(expr);
404 __nft_match_eval(expr, regs, pkt, priv->info);
407 static void nft_match_eval(const struct nft_expr *expr,
408 struct nft_regs *regs,
409 const struct nft_pktinfo *pkt)
411 __nft_match_eval(expr, regs, pkt, nft_expr_priv(expr));
414 static const struct nla_policy nft_match_policy[NFTA_MATCH_MAX + 1] = {
415 [NFTA_MATCH_NAME] = { .type = NLA_NUL_STRING },
416 [NFTA_MATCH_REV] = { .type = NLA_U32 },
417 [NFTA_MATCH_INFO] = { .type = NLA_BINARY },
420 /* struct xt_mtchk_param and xt_tgchk_param look very similar */
422 nft_match_set_mtchk_param(struct xt_mtchk_param *par, const struct nft_ctx *ctx,
423 struct xt_match *match, void *info,
424 union nft_entry *entry, u16 proto, bool inv)
427 par->table = ctx->table->name;
428 switch (ctx->family) {
430 entry->e4.ip.proto = proto;
431 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
435 entry->e6.ipv6.flags |= IP6T_F_PROTO;
437 entry->e6.ipv6.proto = proto;
438 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
441 entry->ebt.ethproto = (__force __be16)proto;
442 entry->ebt.invflags = inv ? EBT_IPROTO : 0;
447 par->entryinfo = entry;
449 par->matchinfo = info;
450 if (nft_is_base_chain(ctx->chain)) {
451 const struct nft_base_chain *basechain =
452 nft_base_chain(ctx->chain);
453 const struct nf_hook_ops *ops = &basechain->ops;
455 par->hook_mask = 1 << ops->hooknum;
459 par->family = ctx->family;
460 par->nft_compat = true;
463 static void match_compat_from_user(struct xt_match *m, void *in, void *out)
467 memcpy(out, in, m->matchsize);
468 pad = XT_ALIGN(m->matchsize) - m->matchsize;
470 memset(out + m->matchsize, 0, pad);
474 __nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
475 const struct nlattr * const tb[],
478 struct xt_match *match = expr->ops->data;
479 struct xt_mtchk_param par;
480 size_t size = XT_ALIGN(nla_len(tb[NFTA_MATCH_INFO]));
483 union nft_entry e = {};
486 match_compat_from_user(match, nla_data(tb[NFTA_MATCH_INFO]), info);
488 if (ctx->nla[NFTA_RULE_COMPAT]) {
489 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
494 nft_match_set_mtchk_param(&par, ctx, match, info, &e, proto, inv);
496 nft_compat_wait_for_destructors();
498 return xt_check_match(&par, size, proto, inv);
502 nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
503 const struct nlattr * const tb[])
505 return __nft_match_init(ctx, expr, tb, nft_expr_priv(expr));
509 nft_match_large_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
510 const struct nlattr * const tb[])
512 struct nft_xt_match_priv *priv = nft_expr_priv(expr);
513 struct xt_match *m = expr->ops->data;
516 priv->info = kmalloc(XT_ALIGN(m->matchsize), GFP_KERNEL);
520 ret = __nft_match_init(ctx, expr, tb, priv->info);
527 __nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr,
530 struct xt_match *match = expr->ops->data;
531 struct module *me = match->me;
532 struct xt_mtdtor_param par;
536 par.matchinfo = info;
537 par.family = ctx->family;
538 if (par.match->destroy != NULL)
539 par.match->destroy(&par);
541 __nft_mt_tg_destroy(me, expr);
545 nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
547 __nft_match_destroy(ctx, expr, nft_expr_priv(expr));
551 nft_match_large_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
553 struct nft_xt_match_priv *priv = nft_expr_priv(expr);
555 __nft_match_destroy(ctx, expr, priv->info);
559 static int __nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr,
562 struct xt_match *match = expr->ops->data;
564 if (nla_put_string(skb, NFTA_MATCH_NAME, match->name) ||
565 nla_put_be32(skb, NFTA_MATCH_REV, htonl(match->revision)) ||
566 nft_extension_dump_info(skb, NFTA_MATCH_INFO, info,
567 match->matchsize, match->usersize))
568 goto nla_put_failure;
576 static int nft_match_dump(struct sk_buff *skb,
577 const struct nft_expr *expr, bool reset)
579 return __nft_match_dump(skb, expr, nft_expr_priv(expr));
582 static int nft_match_large_dump(struct sk_buff *skb,
583 const struct nft_expr *e, bool reset)
585 struct nft_xt_match_priv *priv = nft_expr_priv(e);
587 return __nft_match_dump(skb, e, priv->info);
590 static int nft_match_validate(const struct nft_ctx *ctx,
591 const struct nft_expr *expr,
592 const struct nft_data **data)
594 struct xt_match *match = expr->ops->data;
595 unsigned int hook_mask = 0;
598 if (nft_is_base_chain(ctx->chain)) {
599 const struct nft_base_chain *basechain =
600 nft_base_chain(ctx->chain);
601 const struct nf_hook_ops *ops = &basechain->ops;
603 hook_mask = 1 << ops->hooknum;
604 if (match->hooks && !(hook_mask & match->hooks))
607 ret = nft_compat_chain_validate_dependency(ctx, match->table);
615 nfnl_compat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
616 int event, u16 family, const char *name,
619 struct nlmsghdr *nlh;
620 unsigned int flags = portid ? NLM_F_MULTI : 0;
622 event = nfnl_msg_type(NFNL_SUBSYS_NFT_COMPAT, event);
623 nlh = nfnl_msg_put(skb, portid, seq, event, flags, family,
628 if (nla_put_string(skb, NFTA_COMPAT_NAME, name) ||
629 nla_put_be32(skb, NFTA_COMPAT_REV, htonl(rev)) ||
630 nla_put_be32(skb, NFTA_COMPAT_TYPE, htonl(target)))
631 goto nla_put_failure;
638 nlmsg_cancel(skb, nlh);
642 static int nfnl_compat_get_rcu(struct sk_buff *skb,
643 const struct nfnl_info *info,
644 const struct nlattr * const tb[])
646 u8 family = info->nfmsg->nfgen_family;
647 const char *name, *fmt;
648 struct sk_buff *skb2;
652 if (tb[NFTA_COMPAT_NAME] == NULL ||
653 tb[NFTA_COMPAT_REV] == NULL ||
654 tb[NFTA_COMPAT_TYPE] == NULL)
657 name = nla_data(tb[NFTA_COMPAT_NAME]);
658 rev = ntohl(nla_get_be32(tb[NFTA_COMPAT_REV]));
659 target = ntohl(nla_get_be32(tb[NFTA_COMPAT_TYPE]));
675 pr_err("nft_compat: unsupported protocol %d\n", family);
679 if (!try_module_get(THIS_MODULE))
683 try_then_request_module(xt_find_revision(family, name, rev, target, &ret),
688 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
694 /* include the best revision for this extension in the message */
695 if (nfnl_compat_fill_info(skb2, NETLINK_CB(skb).portid,
696 info->nlh->nlmsg_seq,
697 NFNL_MSG_TYPE(info->nlh->nlmsg_type),
699 family, name, ret, target) <= 0) {
704 ret = nfnetlink_unicast(skb2, info->net, NETLINK_CB(skb).portid);
707 module_put(THIS_MODULE);
712 static const struct nla_policy nfnl_compat_policy_get[NFTA_COMPAT_MAX+1] = {
713 [NFTA_COMPAT_NAME] = { .type = NLA_NUL_STRING,
714 .len = NFT_COMPAT_NAME_MAX-1 },
715 [NFTA_COMPAT_REV] = { .type = NLA_U32 },
716 [NFTA_COMPAT_TYPE] = { .type = NLA_U32 },
719 static const struct nfnl_callback nfnl_nft_compat_cb[NFNL_MSG_COMPAT_MAX] = {
720 [NFNL_MSG_COMPAT_GET] = {
721 .call = nfnl_compat_get_rcu,
723 .attr_count = NFTA_COMPAT_MAX,
724 .policy = nfnl_compat_policy_get
728 static const struct nfnetlink_subsystem nfnl_compat_subsys = {
729 .name = "nft-compat",
730 .subsys_id = NFNL_SUBSYS_NFT_COMPAT,
731 .cb_count = NFNL_MSG_COMPAT_MAX,
732 .cb = nfnl_nft_compat_cb,
735 static struct nft_expr_type nft_match_type;
737 static bool nft_match_reduce(struct nft_regs_track *track,
738 const struct nft_expr *expr)
740 const struct xt_match *match = expr->ops->data;
742 return strcmp(match->name, "comment") == 0;
745 static const struct nft_expr_ops *
746 nft_match_select_ops(const struct nft_ctx *ctx,
747 const struct nlattr * const tb[])
749 struct nft_expr_ops *ops;
750 struct xt_match *match;
751 unsigned int matchsize;
756 if (tb[NFTA_MATCH_NAME] == NULL ||
757 tb[NFTA_MATCH_REV] == NULL ||
758 tb[NFTA_MATCH_INFO] == NULL)
759 return ERR_PTR(-EINVAL);
761 mt_name = nla_data(tb[NFTA_MATCH_NAME]);
762 rev = ntohl(nla_get_be32(tb[NFTA_MATCH_REV]));
763 family = ctx->family;
765 match = xt_request_find_match(family, mt_name, rev);
767 return ERR_PTR(-ENOENT);
769 if (match->matchsize > nla_len(tb[NFTA_MATCH_INFO])) {
774 ops = kzalloc(sizeof(struct nft_expr_ops), GFP_KERNEL);
780 ops->type = &nft_match_type;
781 ops->eval = nft_match_eval;
782 ops->init = nft_match_init;
783 ops->destroy = nft_match_destroy;
784 ops->dump = nft_match_dump;
785 ops->validate = nft_match_validate;
787 ops->reduce = nft_match_reduce;
789 matchsize = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize));
790 if (matchsize > NFT_MATCH_LARGE_THRESH) {
791 matchsize = NFT_EXPR_SIZE(sizeof(struct nft_xt_match_priv));
793 ops->eval = nft_match_large_eval;
794 ops->init = nft_match_large_init;
795 ops->destroy = nft_match_large_destroy;
796 ops->dump = nft_match_large_dump;
799 ops->size = matchsize;
803 module_put(match->me);
807 static void nft_match_release_ops(const struct nft_expr_ops *ops)
809 struct xt_match *match = ops->data;
811 module_put(match->me);
815 static struct nft_expr_type nft_match_type __read_mostly = {
817 .select_ops = nft_match_select_ops,
818 .release_ops = nft_match_release_ops,
819 .policy = nft_match_policy,
820 .maxattr = NFTA_MATCH_MAX,
821 .owner = THIS_MODULE,
824 static struct nft_expr_type nft_target_type;
826 static const struct nft_expr_ops *
827 nft_target_select_ops(const struct nft_ctx *ctx,
828 const struct nlattr * const tb[])
830 struct nft_expr_ops *ops;
831 struct xt_target *target;
836 if (tb[NFTA_TARGET_NAME] == NULL ||
837 tb[NFTA_TARGET_REV] == NULL ||
838 tb[NFTA_TARGET_INFO] == NULL)
839 return ERR_PTR(-EINVAL);
841 tg_name = nla_data(tb[NFTA_TARGET_NAME]);
842 rev = ntohl(nla_get_be32(tb[NFTA_TARGET_REV]));
843 family = ctx->family;
845 if (strcmp(tg_name, XT_ERROR_TARGET) == 0 ||
846 strcmp(tg_name, XT_STANDARD_TARGET) == 0 ||
847 strcmp(tg_name, "standard") == 0)
848 return ERR_PTR(-EINVAL);
850 target = xt_request_find_target(family, tg_name, rev);
852 return ERR_PTR(-ENOENT);
854 if (!target->target) {
859 if (target->targetsize > nla_len(tb[NFTA_TARGET_INFO])) {
864 ops = kzalloc(sizeof(struct nft_expr_ops), GFP_KERNEL);
870 ops->type = &nft_target_type;
871 ops->size = NFT_EXPR_SIZE(XT_ALIGN(target->targetsize));
872 ops->init = nft_target_init;
873 ops->destroy = nft_target_destroy;
874 ops->dump = nft_target_dump;
875 ops->validate = nft_target_validate;
877 ops->reduce = NFT_REDUCE_READONLY;
879 if (family == NFPROTO_BRIDGE)
880 ops->eval = nft_target_eval_bridge;
882 ops->eval = nft_target_eval_xt;
886 module_put(target->me);
890 static void nft_target_release_ops(const struct nft_expr_ops *ops)
892 struct xt_target *target = ops->data;
894 module_put(target->me);
898 static struct nft_expr_type nft_target_type __read_mostly = {
900 .select_ops = nft_target_select_ops,
901 .release_ops = nft_target_release_ops,
902 .policy = nft_target_policy,
903 .maxattr = NFTA_TARGET_MAX,
904 .owner = THIS_MODULE,
907 static int __init nft_compat_module_init(void)
911 ret = nft_register_expr(&nft_match_type);
915 ret = nft_register_expr(&nft_target_type);
919 ret = nfnetlink_subsys_register(&nfnl_compat_subsys);
921 pr_err("nft_compat: cannot register with nfnetlink.\n");
927 nft_unregister_expr(&nft_target_type);
929 nft_unregister_expr(&nft_match_type);
933 static void __exit nft_compat_module_exit(void)
935 nfnetlink_subsys_unregister(&nfnl_compat_subsys);
936 nft_unregister_expr(&nft_target_type);
937 nft_unregister_expr(&nft_match_type);
940 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFT_COMPAT);
942 module_init(nft_compat_module_init);
943 module_exit(nft_compat_module_exit);
945 MODULE_LICENSE("GPL");
947 MODULE_ALIAS_NFT_EXPR("match");
948 MODULE_ALIAS_NFT_EXPR("target");
949 MODULE_DESCRIPTION("x_tables over nftables support");