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>
23 /* Used for matches where *info is larger than X byte */
24 #define NFT_MATCH_LARGE_THRESH 192
26 struct nft_xt_match_priv {
30 static int nft_compat_chain_validate_dependency(const struct nft_ctx *ctx,
31 const char *tablename)
33 enum nft_chain_types type = NFT_CHAIN_T_DEFAULT;
34 const struct nft_chain *chain = ctx->chain;
35 const struct nft_base_chain *basechain;
38 !nft_is_base_chain(chain))
41 basechain = nft_base_chain(chain);
42 if (strcmp(tablename, "nat") == 0) {
43 if (ctx->family != NFPROTO_BRIDGE)
44 type = NFT_CHAIN_T_NAT;
45 if (basechain->type->type != type)
56 struct arpt_entry arp;
60 nft_compat_set_par(struct xt_action_param *par, void *xt, const void *xt_info)
63 par->targinfo = xt_info;
67 static void nft_target_eval_xt(const struct nft_expr *expr,
68 struct nft_regs *regs,
69 const struct nft_pktinfo *pkt)
71 void *info = nft_expr_priv(expr);
72 struct xt_target *target = expr->ops->data;
73 struct sk_buff *skb = pkt->skb;
76 nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
78 ret = target->target(skb, &pkt->xt);
85 regs->verdict.code = NFT_CONTINUE;
88 regs->verdict.code = ret;
93 static void nft_target_eval_bridge(const struct nft_expr *expr,
94 struct nft_regs *regs,
95 const struct nft_pktinfo *pkt)
97 void *info = nft_expr_priv(expr);
98 struct xt_target *target = expr->ops->data;
99 struct sk_buff *skb = pkt->skb;
102 nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
104 ret = target->target(skb, &pkt->xt);
111 regs->verdict.code = NF_ACCEPT;
114 regs->verdict.code = NF_DROP;
117 regs->verdict.code = NFT_CONTINUE;
120 regs->verdict.code = NFT_RETURN;
123 regs->verdict.code = ret;
128 static const struct nla_policy nft_target_policy[NFTA_TARGET_MAX + 1] = {
129 [NFTA_TARGET_NAME] = { .type = NLA_NUL_STRING },
130 [NFTA_TARGET_REV] = { .type = NLA_U32 },
131 [NFTA_TARGET_INFO] = { .type = NLA_BINARY },
135 nft_target_set_tgchk_param(struct xt_tgchk_param *par,
136 const struct nft_ctx *ctx,
137 struct xt_target *target, void *info,
138 union nft_entry *entry, u16 proto, bool inv)
141 par->table = ctx->table->name;
142 switch (ctx->family) {
144 entry->e4.ip.proto = proto;
145 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
149 entry->e6.ipv6.flags |= IP6T_F_PROTO;
151 entry->e6.ipv6.proto = proto;
152 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
155 entry->ebt.ethproto = (__force __be16)proto;
156 entry->ebt.invflags = inv ? EBT_IPROTO : 0;
161 par->entryinfo = entry;
162 par->target = target;
163 par->targinfo = info;
164 if (nft_is_base_chain(ctx->chain)) {
165 const struct nft_base_chain *basechain =
166 nft_base_chain(ctx->chain);
167 const struct nf_hook_ops *ops = &basechain->ops;
169 par->hook_mask = 1 << ops->hooknum;
173 par->family = ctx->family;
174 par->nft_compat = true;
177 static void target_compat_from_user(struct xt_target *t, void *in, void *out)
181 memcpy(out, in, t->targetsize);
182 pad = XT_ALIGN(t->targetsize) - t->targetsize;
184 memset(out + t->targetsize, 0, pad);
187 static const struct nla_policy nft_rule_compat_policy[NFTA_RULE_COMPAT_MAX + 1] = {
188 [NFTA_RULE_COMPAT_PROTO] = { .type = NLA_U32 },
189 [NFTA_RULE_COMPAT_FLAGS] = { .type = NLA_U32 },
192 static int nft_parse_compat(const struct nlattr *attr, u16 *proto, bool *inv)
194 struct nlattr *tb[NFTA_RULE_COMPAT_MAX+1];
198 err = nla_parse_nested_deprecated(tb, NFTA_RULE_COMPAT_MAX, attr,
199 nft_rule_compat_policy, NULL);
203 if (!tb[NFTA_RULE_COMPAT_PROTO] || !tb[NFTA_RULE_COMPAT_FLAGS])
206 flags = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_FLAGS]));
207 if (flags & ~NFT_RULE_COMPAT_F_MASK)
209 if (flags & NFT_RULE_COMPAT_F_INV)
212 *proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO]));
216 static void nft_compat_wait_for_destructors(void)
218 /* xtables matches or targets can have side effects, e.g.
219 * creation/destruction of /proc files.
220 * The xt ->destroy functions are run asynchronously from
221 * work queue. If we have pending invocations we thus
222 * need to wait for those to finish.
224 nf_tables_trans_destroy_flush_work();
228 nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
229 const struct nlattr * const tb[])
231 void *info = nft_expr_priv(expr);
232 struct xt_target *target = expr->ops->data;
233 struct xt_tgchk_param par;
234 size_t size = XT_ALIGN(nla_len(tb[NFTA_TARGET_INFO]));
237 union nft_entry e = {};
240 target_compat_from_user(target, nla_data(tb[NFTA_TARGET_INFO]), info);
242 if (ctx->nla[NFTA_RULE_COMPAT]) {
243 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
248 nft_target_set_tgchk_param(&par, ctx, target, info, &e, proto, inv);
250 nft_compat_wait_for_destructors();
252 ret = xt_check_target(&par, size, proto, inv);
256 /* The standard target cannot be used */
263 static void __nft_mt_tg_destroy(struct module *me, const struct nft_expr *expr)
270 nft_target_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
272 struct xt_target *target = expr->ops->data;
273 void *info = nft_expr_priv(expr);
274 struct module *me = target->me;
275 struct xt_tgdtor_param par;
280 par.family = ctx->family;
281 if (par.target->destroy != NULL)
282 par.target->destroy(&par);
284 __nft_mt_tg_destroy(me, expr);
287 static int nft_extension_dump_info(struct sk_buff *skb, int attr,
289 unsigned int size, unsigned int user_size)
291 unsigned int info_size, aligned_size = XT_ALIGN(size);
294 nla = nla_reserve(skb, attr, aligned_size);
298 info_size = user_size ? : size;
299 memcpy(nla_data(nla), info, info_size);
300 memset(nla_data(nla) + info_size, 0, aligned_size - info_size);
305 static int nft_target_dump(struct sk_buff *skb, const struct nft_expr *expr)
307 const struct xt_target *target = expr->ops->data;
308 void *info = nft_expr_priv(expr);
310 if (nla_put_string(skb, NFTA_TARGET_NAME, target->name) ||
311 nla_put_be32(skb, NFTA_TARGET_REV, htonl(target->revision)) ||
312 nft_extension_dump_info(skb, NFTA_TARGET_INFO, info,
313 target->targetsize, target->usersize))
314 goto nla_put_failure;
322 static int nft_target_validate(const struct nft_ctx *ctx,
323 const struct nft_expr *expr,
324 const struct nft_data **data)
326 struct xt_target *target = expr->ops->data;
327 unsigned int hook_mask = 0;
330 if (nft_is_base_chain(ctx->chain)) {
331 const struct nft_base_chain *basechain =
332 nft_base_chain(ctx->chain);
333 const struct nf_hook_ops *ops = &basechain->ops;
335 hook_mask = 1 << ops->hooknum;
336 if (target->hooks && !(hook_mask & target->hooks))
339 ret = nft_compat_chain_validate_dependency(ctx, target->table);
346 static void __nft_match_eval(const struct nft_expr *expr,
347 struct nft_regs *regs,
348 const struct nft_pktinfo *pkt,
351 struct xt_match *match = expr->ops->data;
352 struct sk_buff *skb = pkt->skb;
355 nft_compat_set_par((struct xt_action_param *)&pkt->xt, match, info);
357 ret = match->match(skb, (struct xt_action_param *)&pkt->xt);
359 if (pkt->xt.hotdrop) {
360 regs->verdict.code = NF_DROP;
364 switch (ret ? 1 : 0) {
366 regs->verdict.code = NFT_CONTINUE;
369 regs->verdict.code = NFT_BREAK;
374 static void nft_match_large_eval(const struct nft_expr *expr,
375 struct nft_regs *regs,
376 const struct nft_pktinfo *pkt)
378 struct nft_xt_match_priv *priv = nft_expr_priv(expr);
380 __nft_match_eval(expr, regs, pkt, priv->info);
383 static void nft_match_eval(const struct nft_expr *expr,
384 struct nft_regs *regs,
385 const struct nft_pktinfo *pkt)
387 __nft_match_eval(expr, regs, pkt, nft_expr_priv(expr));
390 static const struct nla_policy nft_match_policy[NFTA_MATCH_MAX + 1] = {
391 [NFTA_MATCH_NAME] = { .type = NLA_NUL_STRING },
392 [NFTA_MATCH_REV] = { .type = NLA_U32 },
393 [NFTA_MATCH_INFO] = { .type = NLA_BINARY },
396 /* struct xt_mtchk_param and xt_tgchk_param look very similar */
398 nft_match_set_mtchk_param(struct xt_mtchk_param *par, const struct nft_ctx *ctx,
399 struct xt_match *match, void *info,
400 union nft_entry *entry, u16 proto, bool inv)
403 par->table = ctx->table->name;
404 switch (ctx->family) {
406 entry->e4.ip.proto = proto;
407 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
411 entry->e6.ipv6.flags |= IP6T_F_PROTO;
413 entry->e6.ipv6.proto = proto;
414 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
417 entry->ebt.ethproto = (__force __be16)proto;
418 entry->ebt.invflags = inv ? EBT_IPROTO : 0;
423 par->entryinfo = entry;
425 par->matchinfo = info;
426 if (nft_is_base_chain(ctx->chain)) {
427 const struct nft_base_chain *basechain =
428 nft_base_chain(ctx->chain);
429 const struct nf_hook_ops *ops = &basechain->ops;
431 par->hook_mask = 1 << ops->hooknum;
435 par->family = ctx->family;
436 par->nft_compat = true;
439 static void match_compat_from_user(struct xt_match *m, void *in, void *out)
443 memcpy(out, in, m->matchsize);
444 pad = XT_ALIGN(m->matchsize) - m->matchsize;
446 memset(out + m->matchsize, 0, pad);
450 __nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
451 const struct nlattr * const tb[],
454 struct xt_match *match = expr->ops->data;
455 struct xt_mtchk_param par;
456 size_t size = XT_ALIGN(nla_len(tb[NFTA_MATCH_INFO]));
459 union nft_entry e = {};
462 match_compat_from_user(match, nla_data(tb[NFTA_MATCH_INFO]), info);
464 if (ctx->nla[NFTA_RULE_COMPAT]) {
465 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
470 nft_match_set_mtchk_param(&par, ctx, match, info, &e, proto, inv);
472 nft_compat_wait_for_destructors();
474 return xt_check_match(&par, size, proto, inv);
478 nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
479 const struct nlattr * const tb[])
481 return __nft_match_init(ctx, expr, tb, nft_expr_priv(expr));
485 nft_match_large_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
486 const struct nlattr * const tb[])
488 struct nft_xt_match_priv *priv = nft_expr_priv(expr);
489 struct xt_match *m = expr->ops->data;
492 priv->info = kmalloc(XT_ALIGN(m->matchsize), GFP_KERNEL);
496 ret = __nft_match_init(ctx, expr, tb, priv->info);
503 __nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr,
506 struct xt_match *match = expr->ops->data;
507 struct module *me = match->me;
508 struct xt_mtdtor_param par;
512 par.matchinfo = info;
513 par.family = ctx->family;
514 if (par.match->destroy != NULL)
515 par.match->destroy(&par);
517 __nft_mt_tg_destroy(me, expr);
521 nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
523 __nft_match_destroy(ctx, expr, nft_expr_priv(expr));
527 nft_match_large_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
529 struct nft_xt_match_priv *priv = nft_expr_priv(expr);
531 __nft_match_destroy(ctx, expr, priv->info);
535 static int __nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr,
538 struct xt_match *match = expr->ops->data;
540 if (nla_put_string(skb, NFTA_MATCH_NAME, match->name) ||
541 nla_put_be32(skb, NFTA_MATCH_REV, htonl(match->revision)) ||
542 nft_extension_dump_info(skb, NFTA_MATCH_INFO, info,
543 match->matchsize, match->usersize))
544 goto nla_put_failure;
552 static int nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr)
554 return __nft_match_dump(skb, expr, nft_expr_priv(expr));
557 static int nft_match_large_dump(struct sk_buff *skb, const struct nft_expr *e)
559 struct nft_xt_match_priv *priv = nft_expr_priv(e);
561 return __nft_match_dump(skb, e, priv->info);
564 static int nft_match_validate(const struct nft_ctx *ctx,
565 const struct nft_expr *expr,
566 const struct nft_data **data)
568 struct xt_match *match = expr->ops->data;
569 unsigned int hook_mask = 0;
572 if (nft_is_base_chain(ctx->chain)) {
573 const struct nft_base_chain *basechain =
574 nft_base_chain(ctx->chain);
575 const struct nf_hook_ops *ops = &basechain->ops;
577 hook_mask = 1 << ops->hooknum;
578 if (match->hooks && !(hook_mask & match->hooks))
581 ret = nft_compat_chain_validate_dependency(ctx, match->table);
589 nfnl_compat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
590 int event, u16 family, const char *name,
593 struct nlmsghdr *nlh;
594 struct nfgenmsg *nfmsg;
595 unsigned int flags = portid ? NLM_F_MULTI : 0;
597 event = nfnl_msg_type(NFNL_SUBSYS_NFT_COMPAT, event);
598 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
602 nfmsg = nlmsg_data(nlh);
603 nfmsg->nfgen_family = family;
604 nfmsg->version = NFNETLINK_V0;
607 if (nla_put_string(skb, NFTA_COMPAT_NAME, name) ||
608 nla_put_be32(skb, NFTA_COMPAT_REV, htonl(rev)) ||
609 nla_put_be32(skb, NFTA_COMPAT_TYPE, htonl(target)))
610 goto nla_put_failure;
617 nlmsg_cancel(skb, nlh);
621 static int nfnl_compat_get_rcu(struct net *net, struct sock *nfnl,
622 struct sk_buff *skb, const struct nlmsghdr *nlh,
623 const struct nlattr * const tb[],
624 struct netlink_ext_ack *extack)
627 struct nfgenmsg *nfmsg;
631 struct sk_buff *skb2;
633 if (tb[NFTA_COMPAT_NAME] == NULL ||
634 tb[NFTA_COMPAT_REV] == NULL ||
635 tb[NFTA_COMPAT_TYPE] == NULL)
638 name = nla_data(tb[NFTA_COMPAT_NAME]);
639 rev = ntohl(nla_get_be32(tb[NFTA_COMPAT_REV]));
640 target = ntohl(nla_get_be32(tb[NFTA_COMPAT_TYPE]));
642 nfmsg = nlmsg_data(nlh);
644 switch(nfmsg->nfgen_family) {
658 pr_err("nft_compat: unsupported protocol %d\n",
659 nfmsg->nfgen_family);
663 if (!try_module_get(THIS_MODULE))
667 try_then_request_module(xt_find_revision(nfmsg->nfgen_family, name,
673 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
679 /* include the best revision for this extension in the message */
680 if (nfnl_compat_fill_info(skb2, NETLINK_CB(skb).portid,
682 NFNL_MSG_TYPE(nlh->nlmsg_type),
685 name, ret, target) <= 0) {
690 ret = netlink_unicast(nfnl, skb2, NETLINK_CB(skb).portid,
696 module_put(THIS_MODULE);
697 return ret == -EAGAIN ? -ENOBUFS : ret;
700 static const struct nla_policy nfnl_compat_policy_get[NFTA_COMPAT_MAX+1] = {
701 [NFTA_COMPAT_NAME] = { .type = NLA_NUL_STRING,
702 .len = NFT_COMPAT_NAME_MAX-1 },
703 [NFTA_COMPAT_REV] = { .type = NLA_U32 },
704 [NFTA_COMPAT_TYPE] = { .type = NLA_U32 },
707 static const struct nfnl_callback nfnl_nft_compat_cb[NFNL_MSG_COMPAT_MAX] = {
708 [NFNL_MSG_COMPAT_GET] = { .call_rcu = nfnl_compat_get_rcu,
709 .attr_count = NFTA_COMPAT_MAX,
710 .policy = nfnl_compat_policy_get },
713 static const struct nfnetlink_subsystem nfnl_compat_subsys = {
714 .name = "nft-compat",
715 .subsys_id = NFNL_SUBSYS_NFT_COMPAT,
716 .cb_count = NFNL_MSG_COMPAT_MAX,
717 .cb = nfnl_nft_compat_cb,
720 static struct nft_expr_type nft_match_type;
722 static const struct nft_expr_ops *
723 nft_match_select_ops(const struct nft_ctx *ctx,
724 const struct nlattr * const tb[])
726 struct nft_expr_ops *ops;
727 struct xt_match *match;
728 unsigned int matchsize;
733 if (tb[NFTA_MATCH_NAME] == NULL ||
734 tb[NFTA_MATCH_REV] == NULL ||
735 tb[NFTA_MATCH_INFO] == NULL)
736 return ERR_PTR(-EINVAL);
738 mt_name = nla_data(tb[NFTA_MATCH_NAME]);
739 rev = ntohl(nla_get_be32(tb[NFTA_MATCH_REV]));
740 family = ctx->family;
742 match = xt_request_find_match(family, mt_name, rev);
744 return ERR_PTR(-ENOENT);
746 if (match->matchsize > nla_len(tb[NFTA_MATCH_INFO])) {
751 ops = kzalloc(sizeof(struct nft_expr_ops), GFP_KERNEL);
757 ops->type = &nft_match_type;
758 ops->eval = nft_match_eval;
759 ops->init = nft_match_init;
760 ops->destroy = nft_match_destroy;
761 ops->dump = nft_match_dump;
762 ops->validate = nft_match_validate;
765 matchsize = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize));
766 if (matchsize > NFT_MATCH_LARGE_THRESH) {
767 matchsize = NFT_EXPR_SIZE(sizeof(struct nft_xt_match_priv));
769 ops->eval = nft_match_large_eval;
770 ops->init = nft_match_large_init;
771 ops->destroy = nft_match_large_destroy;
772 ops->dump = nft_match_large_dump;
775 ops->size = matchsize;
779 module_put(match->me);
783 static void nft_match_release_ops(const struct nft_expr_ops *ops)
785 struct xt_match *match = ops->data;
787 module_put(match->me);
791 static struct nft_expr_type nft_match_type __read_mostly = {
793 .select_ops = nft_match_select_ops,
794 .release_ops = nft_match_release_ops,
795 .policy = nft_match_policy,
796 .maxattr = NFTA_MATCH_MAX,
797 .owner = THIS_MODULE,
800 static struct nft_expr_type nft_target_type;
802 static const struct nft_expr_ops *
803 nft_target_select_ops(const struct nft_ctx *ctx,
804 const struct nlattr * const tb[])
806 struct nft_expr_ops *ops;
807 struct xt_target *target;
812 if (tb[NFTA_TARGET_NAME] == NULL ||
813 tb[NFTA_TARGET_REV] == NULL ||
814 tb[NFTA_TARGET_INFO] == NULL)
815 return ERR_PTR(-EINVAL);
817 tg_name = nla_data(tb[NFTA_TARGET_NAME]);
818 rev = ntohl(nla_get_be32(tb[NFTA_TARGET_REV]));
819 family = ctx->family;
821 if (strcmp(tg_name, XT_ERROR_TARGET) == 0 ||
822 strcmp(tg_name, XT_STANDARD_TARGET) == 0 ||
823 strcmp(tg_name, "standard") == 0)
824 return ERR_PTR(-EINVAL);
826 target = xt_request_find_target(family, tg_name, rev);
828 return ERR_PTR(-ENOENT);
830 if (!target->target) {
835 if (target->targetsize > nla_len(tb[NFTA_TARGET_INFO])) {
840 ops = kzalloc(sizeof(struct nft_expr_ops), GFP_KERNEL);
846 ops->type = &nft_target_type;
847 ops->size = NFT_EXPR_SIZE(XT_ALIGN(target->targetsize));
848 ops->init = nft_target_init;
849 ops->destroy = nft_target_destroy;
850 ops->dump = nft_target_dump;
851 ops->validate = nft_target_validate;
854 if (family == NFPROTO_BRIDGE)
855 ops->eval = nft_target_eval_bridge;
857 ops->eval = nft_target_eval_xt;
861 module_put(target->me);
865 static void nft_target_release_ops(const struct nft_expr_ops *ops)
867 struct xt_target *target = ops->data;
869 module_put(target->me);
873 static struct nft_expr_type nft_target_type __read_mostly = {
875 .select_ops = nft_target_select_ops,
876 .release_ops = nft_target_release_ops,
877 .policy = nft_target_policy,
878 .maxattr = NFTA_TARGET_MAX,
879 .owner = THIS_MODULE,
882 static int __init nft_compat_module_init(void)
886 ret = nft_register_expr(&nft_match_type);
890 ret = nft_register_expr(&nft_target_type);
894 ret = nfnetlink_subsys_register(&nfnl_compat_subsys);
896 pr_err("nft_compat: cannot register with nfnetlink.\n");
902 nft_unregister_expr(&nft_target_type);
904 nft_unregister_expr(&nft_match_type);
908 static void __exit nft_compat_module_exit(void)
910 nfnetlink_subsys_unregister(&nfnl_compat_subsys);
911 nft_unregister_expr(&nft_target_type);
912 nft_unregister_expr(&nft_match_type);
915 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFT_COMPAT);
917 module_init(nft_compat_module_init);
918 module_exit(nft_compat_module_exit);
920 MODULE_LICENSE("GPL");
922 MODULE_ALIAS_NFT_EXPR("match");
923 MODULE_ALIAS_NFT_EXPR("target");
924 MODULE_DESCRIPTION("x_tables over nftables support");