]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/ipv6/netfilter/nft_redir_ipv6.c
netfilter: update Arturo Borrero Gonzalez email address
[mirror_ubuntu-artful-kernel.git] / net / ipv6 / netfilter / nft_redir_ipv6.c
CommitLineData
e9105f1b 1/*
cd727514 2 * Copyright (c) 2014 Arturo Borrero Gonzalez <arturo@debian.org>
e9105f1b
AB
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>
b59eaf9e 18#include <net/netfilter/nf_nat_redirect.h>
e9105f1b
AB
19
20static void nft_redir_ipv6_eval(const struct nft_expr *expr,
a55e22e9 21 struct nft_regs *regs,
e9105f1b
AB
22 const struct nft_pktinfo *pkt)
23{
24 struct nft_redir *priv = nft_expr_priv(expr);
25 struct nf_nat_range range;
e9105f1b
AB
26
27 memset(&range, 0, sizeof(range));
28 if (priv->sreg_proto_min) {
7b5bca46 29 range.min_proto.all =
49499c3e 30 *(__be16 *)&regs->data[priv->sreg_proto_min],
7b5bca46 31 range.max_proto.all =
49499c3e 32 *(__be16 *)&regs->data[priv->sreg_proto_max],
e9105f1b
AB
33 range.flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
34 }
35
36 range.flags |= priv->flags;
37
0e5a1c7e
PNA
38 regs->verdict.code =
39 nf_nat_redirect_ipv6(pkt->skb, &range, nft_hook(pkt));
e9105f1b
AB
40}
41
42static struct nft_expr_type nft_redir_ipv6_type;
43static const struct nft_expr_ops nft_redir_ipv6_ops = {
44 .type = &nft_redir_ipv6_type,
45 .size = NFT_EXPR_SIZE(sizeof(struct nft_redir)),
46 .eval = nft_redir_ipv6_eval,
47 .init = nft_redir_init,
48 .dump = nft_redir_dump,
49 .validate = nft_redir_validate,
50};
51
52static struct nft_expr_type nft_redir_ipv6_type __read_mostly = {
53 .family = NFPROTO_IPV6,
54 .name = "redir",
55 .ops = &nft_redir_ipv6_ops,
56 .policy = nft_redir_policy,
57 .maxattr = NFTA_REDIR_MAX,
58 .owner = THIS_MODULE,
59};
60
61static int __init nft_redir_ipv6_module_init(void)
62{
63 return nft_register_expr(&nft_redir_ipv6_type);
64}
65
66static void __exit nft_redir_ipv6_module_exit(void)
67{
68 nft_unregister_expr(&nft_redir_ipv6_type);
69}
70
71module_init(nft_redir_ipv6_module_init);
72module_exit(nft_redir_ipv6_module_exit);
73
74MODULE_LICENSE("GPL");
cd727514 75MODULE_AUTHOR("Arturo Borrero Gonzalez <arturo@debian.org>");
e9105f1b 76MODULE_ALIAS_NFT_AF_EXPR(AF_INET6, "redir");