blob: 7ef58e493fcab5b9c98cddc7c47815feac505868 [file] [log] [blame]
Arturo Borreroe9105f12014-10-17 12:39:09 +02001/*
2 * Copyright (c) 2014 Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
3 *
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.
7 */
8
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/module.h>
12#include <linux/netlink.h>
13#include <linux/netfilter.h>
14#include <linux/netfilter/nf_tables.h>
15#include <net/netfilter/nf_tables.h>
16#include <net/netfilter/nf_nat.h>
17#include <net/netfilter/nft_redir.h>
Pablo Neira Ayusob59eaf92014-11-26 12:46:50 +010018#include <net/netfilter/nf_nat_redirect.h>
Arturo Borreroe9105f12014-10-17 12:39:09 +020019
20static void nft_redir_ipv6_eval(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010021 struct nft_regs *regs,
Arturo Borreroe9105f12014-10-17 12:39:09 +020022 const struct nft_pktinfo *pkt)
23{
24 struct nft_redir *priv = nft_expr_priv(expr);
25 struct nf_nat_range range;
Arturo Borreroe9105f12014-10-17 12:39:09 +020026
27 memset(&range, 0, sizeof(range));
28 if (priv->sreg_proto_min) {
Liping Zhang1894d7c2017-03-08 22:54:18 +080029 range.min_proto.all = (__force __be16)nft_reg_load16(
30 &regs->data[priv->sreg_proto_min]);
31 range.max_proto.all = (__force __be16)nft_reg_load16(
32 &regs->data[priv->sreg_proto_max]);
Arturo Borreroe9105f12014-10-17 12:39:09 +020033 range.flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
34 }
35
36 range.flags |= priv->flags;
37
Eric W. Biederman6aa187f2015-09-18 14:32:57 -050038 regs->verdict.code = nf_nat_redirect_ipv6(pkt->skb, &range, pkt->hook);
Arturo Borreroe9105f12014-10-17 12:39:09 +020039}
40
41static struct nft_expr_type nft_redir_ipv6_type;
42static const struct nft_expr_ops nft_redir_ipv6_ops = {
43 .type = &nft_redir_ipv6_type,
44 .size = NFT_EXPR_SIZE(sizeof(struct nft_redir)),
45 .eval = nft_redir_ipv6_eval,
46 .init = nft_redir_init,
47 .dump = nft_redir_dump,
48 .validate = nft_redir_validate,
49};
50
51static struct nft_expr_type nft_redir_ipv6_type __read_mostly = {
52 .family = NFPROTO_IPV6,
53 .name = "redir",
54 .ops = &nft_redir_ipv6_ops,
55 .policy = nft_redir_policy,
56 .maxattr = NFTA_REDIR_MAX,
57 .owner = THIS_MODULE,
58};
59
60static int __init nft_redir_ipv6_module_init(void)
61{
62 return nft_register_expr(&nft_redir_ipv6_type);
63}
64
65static void __exit nft_redir_ipv6_module_exit(void)
66{
67 nft_unregister_expr(&nft_redir_ipv6_type);
68}
69
70module_init(nft_redir_ipv6_module_init);
71module_exit(nft_redir_ipv6_module_exit);
72
73MODULE_LICENSE("GPL");
74MODULE_AUTHOR("Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>");
75MODULE_ALIAS_NFT_AF_EXPR(AF_INET6, "redir");