mwifiex: update MCS set as per RX-STBC bit from hostapd
[linux-2.6/btrfs-unstable.git] / net / netfilter / nft_compat.c
blob82cb8236f8a101d260a9f3cc6eb1c218e34163f3
1 /*
2 * (C) 2012-2013 by Pablo Neira Ayuso <pablo@netfilter.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This software has been sponsored by Sophos Astaro <http://www.sophos.com>
9 */
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/netlink.h>
15 #include <linux/netfilter.h>
16 #include <linux/netfilter/nfnetlink.h>
17 #include <linux/netfilter/nf_tables.h>
18 #include <linux/netfilter/nf_tables_compat.h>
19 #include <linux/netfilter/x_tables.h>
20 #include <linux/netfilter_ipv4/ip_tables.h>
21 #include <linux/netfilter_ipv6/ip6_tables.h>
22 #include <asm/uaccess.h> /* for set_fs */
23 #include <net/netfilter/nf_tables.h>
25 union nft_entry {
26 struct ipt_entry e4;
27 struct ip6t_entry e6;
30 static inline void
31 nft_compat_set_par(struct xt_action_param *par, void *xt, const void *xt_info)
33 par->target = xt;
34 par->targinfo = xt_info;
35 par->hotdrop = false;
38 static void nft_target_eval(const struct nft_expr *expr,
39 struct nft_data data[NFT_REG_MAX + 1],
40 const struct nft_pktinfo *pkt)
42 void *info = nft_expr_priv(expr);
43 struct xt_target *target = expr->ops->data;
44 struct sk_buff *skb = pkt->skb;
45 int ret;
47 nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
49 ret = target->target(skb, &pkt->xt);
51 if (pkt->xt.hotdrop)
52 ret = NF_DROP;
54 switch(ret) {
55 case XT_CONTINUE:
56 data[NFT_REG_VERDICT].verdict = NFT_CONTINUE;
57 break;
58 default:
59 data[NFT_REG_VERDICT].verdict = ret;
60 break;
62 return;
65 static const struct nla_policy nft_target_policy[NFTA_TARGET_MAX + 1] = {
66 [NFTA_TARGET_NAME] = { .type = NLA_NUL_STRING },
67 [NFTA_TARGET_REV] = { .type = NLA_U32 },
68 [NFTA_TARGET_INFO] = { .type = NLA_BINARY },
71 static void
72 nft_target_set_tgchk_param(struct xt_tgchk_param *par,
73 const struct nft_ctx *ctx,
74 struct xt_target *target, void *info,
75 union nft_entry *entry, u8 proto, bool inv)
77 par->net = &init_net;
78 par->table = ctx->table->name;
79 switch (ctx->afi->family) {
80 case AF_INET:
81 entry->e4.ip.proto = proto;
82 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
83 break;
84 case AF_INET6:
85 entry->e6.ipv6.proto = proto;
86 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
87 break;
89 par->entryinfo = entry;
90 par->target = target;
91 par->targinfo = info;
92 if (ctx->chain->flags & NFT_BASE_CHAIN) {
93 const struct nft_base_chain *basechain =
94 nft_base_chain(ctx->chain);
95 const struct nf_hook_ops *ops = &basechain->ops[0];
97 par->hook_mask = 1 << ops->hooknum;
99 par->family = ctx->afi->family;
102 static void target_compat_from_user(struct xt_target *t, void *in, void *out)
104 #ifdef CONFIG_COMPAT
105 if (t->compat_from_user) {
106 int pad;
108 t->compat_from_user(out, in);
109 pad = XT_ALIGN(t->targetsize) - t->targetsize;
110 if (pad > 0)
111 memset(out + t->targetsize, 0, pad);
112 } else
113 #endif
114 memcpy(out, in, XT_ALIGN(t->targetsize));
117 static inline int nft_compat_target_offset(struct xt_target *target)
119 #ifdef CONFIG_COMPAT
120 return xt_compat_target_offset(target);
121 #else
122 return 0;
123 #endif
126 static const struct nla_policy nft_rule_compat_policy[NFTA_RULE_COMPAT_MAX + 1] = {
127 [NFTA_RULE_COMPAT_PROTO] = { .type = NLA_U32 },
128 [NFTA_RULE_COMPAT_FLAGS] = { .type = NLA_U32 },
131 static int nft_parse_compat(const struct nlattr *attr, u8 *proto, bool *inv)
133 struct nlattr *tb[NFTA_RULE_COMPAT_MAX+1];
134 u32 flags;
135 int err;
137 err = nla_parse_nested(tb, NFTA_RULE_COMPAT_MAX, attr,
138 nft_rule_compat_policy);
139 if (err < 0)
140 return err;
142 if (!tb[NFTA_RULE_COMPAT_PROTO] || !tb[NFTA_RULE_COMPAT_FLAGS])
143 return -EINVAL;
145 flags = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_FLAGS]));
146 if (flags & ~NFT_RULE_COMPAT_F_MASK)
147 return -EINVAL;
148 if (flags & NFT_RULE_COMPAT_F_INV)
149 *inv = true;
151 *proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO]));
152 return 0;
155 static int
156 nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
157 const struct nlattr * const tb[])
159 void *info = nft_expr_priv(expr);
160 struct xt_target *target = expr->ops->data;
161 struct xt_tgchk_param par;
162 size_t size = XT_ALIGN(nla_len(tb[NFTA_TARGET_INFO]));
163 u8 proto = 0;
164 bool inv = false;
165 union nft_entry e = {};
166 int ret;
168 target_compat_from_user(target, nla_data(tb[NFTA_TARGET_INFO]), info);
170 if (ctx->nla[NFTA_RULE_COMPAT]) {
171 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
172 if (ret < 0)
173 goto err;
176 nft_target_set_tgchk_param(&par, ctx, target, info, &e, proto, inv);
178 ret = xt_check_target(&par, size, proto, inv);
179 if (ret < 0)
180 goto err;
182 /* The standard target cannot be used */
183 if (target->target == NULL) {
184 ret = -EINVAL;
185 goto err;
188 return 0;
189 err:
190 module_put(target->me);
191 return ret;
194 static void
195 nft_target_destroy(const struct nft_expr *expr)
197 struct xt_target *target = expr->ops->data;
199 module_put(target->me);
202 static int
203 target_dump_info(struct sk_buff *skb, const struct xt_target *t, const void *in)
205 int ret;
207 #ifdef CONFIG_COMPAT
208 if (t->compat_to_user) {
209 mm_segment_t old_fs;
210 void *out;
212 out = kmalloc(XT_ALIGN(t->targetsize), GFP_ATOMIC);
213 if (out == NULL)
214 return -ENOMEM;
216 /* We want to reuse existing compat_to_user */
217 old_fs = get_fs();
218 set_fs(KERNEL_DS);
219 t->compat_to_user(out, in);
220 set_fs(old_fs);
221 ret = nla_put(skb, NFTA_TARGET_INFO, XT_ALIGN(t->targetsize), out);
222 kfree(out);
223 } else
224 #endif
225 ret = nla_put(skb, NFTA_TARGET_INFO, XT_ALIGN(t->targetsize), in);
227 return ret;
230 static int nft_target_dump(struct sk_buff *skb, const struct nft_expr *expr)
232 const struct xt_target *target = expr->ops->data;
233 void *info = nft_expr_priv(expr);
235 if (nla_put_string(skb, NFTA_TARGET_NAME, target->name) ||
236 nla_put_be32(skb, NFTA_TARGET_REV, htonl(target->revision)) ||
237 target_dump_info(skb, target, info))
238 goto nla_put_failure;
240 return 0;
242 nla_put_failure:
243 return -1;
246 static int nft_target_validate(const struct nft_ctx *ctx,
247 const struct nft_expr *expr,
248 const struct nft_data **data)
250 struct xt_target *target = expr->ops->data;
251 unsigned int hook_mask = 0;
253 if (ctx->chain->flags & NFT_BASE_CHAIN) {
254 const struct nft_base_chain *basechain =
255 nft_base_chain(ctx->chain);
256 const struct nf_hook_ops *ops = &basechain->ops[0];
258 hook_mask = 1 << ops->hooknum;
259 if (hook_mask & target->hooks)
260 return 0;
262 /* This target is being called from an invalid chain */
263 return -EINVAL;
265 return 0;
268 static void nft_match_eval(const struct nft_expr *expr,
269 struct nft_data data[NFT_REG_MAX + 1],
270 const struct nft_pktinfo *pkt)
272 void *info = nft_expr_priv(expr);
273 struct xt_match *match = expr->ops->data;
274 struct sk_buff *skb = pkt->skb;
275 bool ret;
277 nft_compat_set_par((struct xt_action_param *)&pkt->xt, match, info);
279 ret = match->match(skb, (struct xt_action_param *)&pkt->xt);
281 if (pkt->xt.hotdrop) {
282 data[NFT_REG_VERDICT].verdict = NF_DROP;
283 return;
286 switch(ret) {
287 case true:
288 data[NFT_REG_VERDICT].verdict = NFT_CONTINUE;
289 break;
290 case false:
291 data[NFT_REG_VERDICT].verdict = NFT_BREAK;
292 break;
296 static const struct nla_policy nft_match_policy[NFTA_MATCH_MAX + 1] = {
297 [NFTA_MATCH_NAME] = { .type = NLA_NUL_STRING },
298 [NFTA_MATCH_REV] = { .type = NLA_U32 },
299 [NFTA_MATCH_INFO] = { .type = NLA_BINARY },
302 /* struct xt_mtchk_param and xt_tgchk_param look very similar */
303 static void
304 nft_match_set_mtchk_param(struct xt_mtchk_param *par, const struct nft_ctx *ctx,
305 struct xt_match *match, void *info,
306 union nft_entry *entry, u8 proto, bool inv)
308 par->net = &init_net;
309 par->table = ctx->table->name;
310 switch (ctx->afi->family) {
311 case AF_INET:
312 entry->e4.ip.proto = proto;
313 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
314 break;
315 case AF_INET6:
316 entry->e6.ipv6.proto = proto;
317 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
318 break;
320 par->entryinfo = entry;
321 par->match = match;
322 par->matchinfo = info;
323 if (ctx->chain->flags & NFT_BASE_CHAIN) {
324 const struct nft_base_chain *basechain =
325 nft_base_chain(ctx->chain);
326 const struct nf_hook_ops *ops = &basechain->ops[0];
328 par->hook_mask = 1 << ops->hooknum;
330 par->family = ctx->afi->family;
333 static void match_compat_from_user(struct xt_match *m, void *in, void *out)
335 #ifdef CONFIG_COMPAT
336 if (m->compat_from_user) {
337 int pad;
339 m->compat_from_user(out, in);
340 pad = XT_ALIGN(m->matchsize) - m->matchsize;
341 if (pad > 0)
342 memset(out + m->matchsize, 0, pad);
343 } else
344 #endif
345 memcpy(out, in, XT_ALIGN(m->matchsize));
348 static int
349 nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
350 const struct nlattr * const tb[])
352 void *info = nft_expr_priv(expr);
353 struct xt_match *match = expr->ops->data;
354 struct xt_mtchk_param par;
355 size_t size = XT_ALIGN(nla_len(tb[NFTA_MATCH_INFO]));
356 u8 proto = 0;
357 bool inv = false;
358 union nft_entry e = {};
359 int ret;
361 match_compat_from_user(match, nla_data(tb[NFTA_MATCH_INFO]), info);
363 if (ctx->nla[NFTA_RULE_COMPAT]) {
364 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
365 if (ret < 0)
366 goto err;
369 nft_match_set_mtchk_param(&par, ctx, match, info, &e, proto, inv);
371 ret = xt_check_match(&par, size, proto, inv);
372 if (ret < 0)
373 goto err;
375 return 0;
376 err:
377 module_put(match->me);
378 return ret;
381 static void
382 nft_match_destroy(const struct nft_expr *expr)
384 struct xt_match *match = expr->ops->data;
386 module_put(match->me);
389 static int
390 match_dump_info(struct sk_buff *skb, const struct xt_match *m, const void *in)
392 int ret;
394 #ifdef CONFIG_COMPAT
395 if (m->compat_to_user) {
396 mm_segment_t old_fs;
397 void *out;
399 out = kmalloc(XT_ALIGN(m->matchsize), GFP_ATOMIC);
400 if (out == NULL)
401 return -ENOMEM;
403 /* We want to reuse existing compat_to_user */
404 old_fs = get_fs();
405 set_fs(KERNEL_DS);
406 m->compat_to_user(out, in);
407 set_fs(old_fs);
408 ret = nla_put(skb, NFTA_MATCH_INFO, XT_ALIGN(m->matchsize), out);
409 kfree(out);
410 } else
411 #endif
412 ret = nla_put(skb, NFTA_MATCH_INFO, XT_ALIGN(m->matchsize), in);
414 return ret;
417 static inline int nft_compat_match_offset(struct xt_match *match)
419 #ifdef CONFIG_COMPAT
420 return xt_compat_match_offset(match);
421 #else
422 return 0;
423 #endif
426 static int nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr)
428 void *info = nft_expr_priv(expr);
429 struct xt_match *match = expr->ops->data;
431 if (nla_put_string(skb, NFTA_MATCH_NAME, match->name) ||
432 nla_put_be32(skb, NFTA_MATCH_REV, htonl(match->revision)) ||
433 match_dump_info(skb, match, info))
434 goto nla_put_failure;
436 return 0;
438 nla_put_failure:
439 return -1;
442 static int nft_match_validate(const struct nft_ctx *ctx,
443 const struct nft_expr *expr,
444 const struct nft_data **data)
446 struct xt_match *match = expr->ops->data;
447 unsigned int hook_mask = 0;
449 if (ctx->chain->flags & NFT_BASE_CHAIN) {
450 const struct nft_base_chain *basechain =
451 nft_base_chain(ctx->chain);
452 const struct nf_hook_ops *ops = &basechain->ops[0];
454 hook_mask = 1 << ops->hooknum;
455 if (hook_mask & match->hooks)
456 return 0;
458 /* This match is being called from an invalid chain */
459 return -EINVAL;
461 return 0;
464 static int
465 nfnl_compat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
466 int event, u16 family, const char *name,
467 int rev, int target)
469 struct nlmsghdr *nlh;
470 struct nfgenmsg *nfmsg;
471 unsigned int flags = portid ? NLM_F_MULTI : 0;
473 event |= NFNL_SUBSYS_NFT_COMPAT << 8;
474 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
475 if (nlh == NULL)
476 goto nlmsg_failure;
478 nfmsg = nlmsg_data(nlh);
479 nfmsg->nfgen_family = family;
480 nfmsg->version = NFNETLINK_V0;
481 nfmsg->res_id = 0;
483 if (nla_put_string(skb, NFTA_COMPAT_NAME, name) ||
484 nla_put_be32(skb, NFTA_COMPAT_REV, htonl(rev)) ||
485 nla_put_be32(skb, NFTA_COMPAT_TYPE, htonl(target)))
486 goto nla_put_failure;
488 nlmsg_end(skb, nlh);
489 return skb->len;
491 nlmsg_failure:
492 nla_put_failure:
493 nlmsg_cancel(skb, nlh);
494 return -1;
497 static int
498 nfnl_compat_get(struct sock *nfnl, struct sk_buff *skb,
499 const struct nlmsghdr *nlh, const struct nlattr * const tb[])
501 int ret = 0, target;
502 struct nfgenmsg *nfmsg;
503 const char *fmt;
504 const char *name;
505 u32 rev;
506 struct sk_buff *skb2;
508 if (tb[NFTA_COMPAT_NAME] == NULL ||
509 tb[NFTA_COMPAT_REV] == NULL ||
510 tb[NFTA_COMPAT_TYPE] == NULL)
511 return -EINVAL;
513 name = nla_data(tb[NFTA_COMPAT_NAME]);
514 rev = ntohl(nla_get_be32(tb[NFTA_COMPAT_REV]));
515 target = ntohl(nla_get_be32(tb[NFTA_COMPAT_TYPE]));
517 nfmsg = nlmsg_data(nlh);
519 switch(nfmsg->nfgen_family) {
520 case AF_INET:
521 fmt = "ipt_%s";
522 break;
523 case AF_INET6:
524 fmt = "ip6t_%s";
525 break;
526 default:
527 pr_err("nft_compat: unsupported protocol %d\n",
528 nfmsg->nfgen_family);
529 return -EINVAL;
532 try_then_request_module(xt_find_revision(nfmsg->nfgen_family, name,
533 rev, target, &ret),
534 fmt, name);
536 if (ret < 0)
537 return ret;
539 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
540 if (skb2 == NULL)
541 return -ENOMEM;
543 /* include the best revision for this extension in the message */
544 if (nfnl_compat_fill_info(skb2, NETLINK_CB(skb).portid,
545 nlh->nlmsg_seq,
546 NFNL_MSG_TYPE(nlh->nlmsg_type),
547 NFNL_MSG_COMPAT_GET,
548 nfmsg->nfgen_family,
549 name, ret, target) <= 0) {
550 kfree_skb(skb2);
551 return -ENOSPC;
554 ret = netlink_unicast(nfnl, skb2, NETLINK_CB(skb).portid,
555 MSG_DONTWAIT);
556 if (ret > 0)
557 ret = 0;
559 return ret == -EAGAIN ? -ENOBUFS : ret;
562 static const struct nla_policy nfnl_compat_policy_get[NFTA_COMPAT_MAX+1] = {
563 [NFTA_COMPAT_NAME] = { .type = NLA_NUL_STRING,
564 .len = NFT_COMPAT_NAME_MAX-1 },
565 [NFTA_COMPAT_REV] = { .type = NLA_U32 },
566 [NFTA_COMPAT_TYPE] = { .type = NLA_U32 },
569 static const struct nfnl_callback nfnl_nft_compat_cb[NFNL_MSG_COMPAT_MAX] = {
570 [NFNL_MSG_COMPAT_GET] = { .call = nfnl_compat_get,
571 .attr_count = NFTA_COMPAT_MAX,
572 .policy = nfnl_compat_policy_get },
575 static const struct nfnetlink_subsystem nfnl_compat_subsys = {
576 .name = "nft-compat",
577 .subsys_id = NFNL_SUBSYS_NFT_COMPAT,
578 .cb_count = NFNL_MSG_COMPAT_MAX,
579 .cb = nfnl_nft_compat_cb,
582 static LIST_HEAD(nft_match_list);
584 struct nft_xt {
585 struct list_head head;
586 struct nft_expr_ops ops;
589 static struct nft_expr_type nft_match_type;
591 static const struct nft_expr_ops *
592 nft_match_select_ops(const struct nft_ctx *ctx,
593 const struct nlattr * const tb[])
595 struct nft_xt *nft_match;
596 struct xt_match *match;
597 char *mt_name;
598 __u32 rev, family;
600 if (tb[NFTA_MATCH_NAME] == NULL ||
601 tb[NFTA_MATCH_REV] == NULL ||
602 tb[NFTA_MATCH_INFO] == NULL)
603 return ERR_PTR(-EINVAL);
605 mt_name = nla_data(tb[NFTA_MATCH_NAME]);
606 rev = ntohl(nla_get_be32(tb[NFTA_MATCH_REV]));
607 family = ctx->afi->family;
609 /* Re-use the existing match if it's already loaded. */
610 list_for_each_entry(nft_match, &nft_match_list, head) {
611 struct xt_match *match = nft_match->ops.data;
613 if (strcmp(match->name, mt_name) == 0 &&
614 match->revision == rev && match->family == family)
615 return &nft_match->ops;
618 match = xt_request_find_match(family, mt_name, rev);
619 if (IS_ERR(match))
620 return ERR_PTR(-ENOENT);
622 /* This is the first time we use this match, allocate operations */
623 nft_match = kzalloc(sizeof(struct nft_xt), GFP_KERNEL);
624 if (nft_match == NULL)
625 return ERR_PTR(-ENOMEM);
627 nft_match->ops.type = &nft_match_type;
628 nft_match->ops.size = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize) +
629 nft_compat_match_offset(match));
630 nft_match->ops.eval = nft_match_eval;
631 nft_match->ops.init = nft_match_init;
632 nft_match->ops.destroy = nft_match_destroy;
633 nft_match->ops.dump = nft_match_dump;
634 nft_match->ops.validate = nft_match_validate;
635 nft_match->ops.data = match;
637 list_add(&nft_match->head, &nft_match_list);
639 return &nft_match->ops;
642 static void nft_match_release(void)
644 struct nft_xt *nft_match, *tmp;
646 list_for_each_entry_safe(nft_match, tmp, &nft_match_list, head)
647 kfree(nft_match);
650 static struct nft_expr_type nft_match_type __read_mostly = {
651 .name = "match",
652 .select_ops = nft_match_select_ops,
653 .policy = nft_match_policy,
654 .maxattr = NFTA_MATCH_MAX,
655 .owner = THIS_MODULE,
658 static LIST_HEAD(nft_target_list);
660 static struct nft_expr_type nft_target_type;
662 static const struct nft_expr_ops *
663 nft_target_select_ops(const struct nft_ctx *ctx,
664 const struct nlattr * const tb[])
666 struct nft_xt *nft_target;
667 struct xt_target *target;
668 char *tg_name;
669 __u32 rev, family;
671 if (tb[NFTA_TARGET_NAME] == NULL ||
672 tb[NFTA_TARGET_REV] == NULL ||
673 tb[NFTA_TARGET_INFO] == NULL)
674 return ERR_PTR(-EINVAL);
676 tg_name = nla_data(tb[NFTA_TARGET_NAME]);
677 rev = ntohl(nla_get_be32(tb[NFTA_TARGET_REV]));
678 family = ctx->afi->family;
680 /* Re-use the existing target if it's already loaded. */
681 list_for_each_entry(nft_target, &nft_match_list, head) {
682 struct xt_target *target = nft_target->ops.data;
684 if (strcmp(target->name, tg_name) == 0 &&
685 target->revision == rev && target->family == family)
686 return &nft_target->ops;
689 target = xt_request_find_target(family, tg_name, rev);
690 if (IS_ERR(target))
691 return ERR_PTR(-ENOENT);
693 /* This is the first time we use this target, allocate operations */
694 nft_target = kzalloc(sizeof(struct nft_xt), GFP_KERNEL);
695 if (nft_target == NULL)
696 return ERR_PTR(-ENOMEM);
698 nft_target->ops.type = &nft_target_type;
699 nft_target->ops.size = NFT_EXPR_SIZE(XT_ALIGN(target->targetsize) +
700 nft_compat_target_offset(target));
701 nft_target->ops.eval = nft_target_eval;
702 nft_target->ops.init = nft_target_init;
703 nft_target->ops.destroy = nft_target_destroy;
704 nft_target->ops.dump = nft_target_dump;
705 nft_target->ops.validate = nft_target_validate;
706 nft_target->ops.data = target;
708 list_add(&nft_target->head, &nft_target_list);
710 return &nft_target->ops;
713 static void nft_target_release(void)
715 struct nft_xt *nft_target, *tmp;
717 list_for_each_entry_safe(nft_target, tmp, &nft_target_list, head)
718 kfree(nft_target);
721 static struct nft_expr_type nft_target_type __read_mostly = {
722 .name = "target",
723 .select_ops = nft_target_select_ops,
724 .policy = nft_target_policy,
725 .maxattr = NFTA_TARGET_MAX,
726 .owner = THIS_MODULE,
729 static int __init nft_compat_module_init(void)
731 int ret;
733 ret = nft_register_expr(&nft_match_type);
734 if (ret < 0)
735 return ret;
737 ret = nft_register_expr(&nft_target_type);
738 if (ret < 0)
739 goto err_match;
741 ret = nfnetlink_subsys_register(&nfnl_compat_subsys);
742 if (ret < 0) {
743 pr_err("nft_compat: cannot register with nfnetlink.\n");
744 goto err_target;
747 pr_info("nf_tables_compat: (c) 2012 Pablo Neira Ayuso <pablo@netfilter.org>\n");
749 return ret;
751 err_target:
752 nft_unregister_expr(&nft_target_type);
753 err_match:
754 nft_unregister_expr(&nft_match_type);
755 return ret;
758 static void __exit nft_compat_module_exit(void)
760 nfnetlink_subsys_unregister(&nfnl_compat_subsys);
761 nft_unregister_expr(&nft_target_type);
762 nft_unregister_expr(&nft_match_type);
763 nft_match_release();
764 nft_target_release();
767 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFT_COMPAT);
769 module_init(nft_compat_module_init);
770 module_exit(nft_compat_module_exit);
772 MODULE_LICENSE("GPL");
773 MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
774 MODULE_ALIAS_NFT_EXPR("match");
775 MODULE_ALIAS_NFT_EXPR("target");