blob: c09d4381427ea91d522fc6fd6ff961541f24956a [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>
Pablo Neira Ayusob59eaf92014-11-26 12:46:50 +010017#include <net/netfilter/nf_nat_redirect.h>
Arturo Borreroe9105f12014-10-17 12:39:09 +020018#include <net/netfilter/nft_redir.h>
19
20static void nft_redir_ipv4_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_ipv4_multi_range_compat mr;
Arturo Borreroe9105f12014-10-17 12:39:09 +020026
27 memset(&mr, 0, sizeof(mr));
28 if (priv->sreg_proto_min) {
leroy christophe7b5bca42014-12-22 13:20:14 +010029 mr.range[0].min.all =
Patrick McHardy49499c32015-04-11 02:27:37 +010030 *(__be16 *)&regs->data[priv->sreg_proto_min];
leroy christophe7b5bca42014-12-22 13:20:14 +010031 mr.range[0].max.all =
Patrick McHardy49499c32015-04-11 02:27:37 +010032 *(__be16 *)&regs->data[priv->sreg_proto_max];
Arturo Borreroe9105f12014-10-17 12:39:09 +020033 mr.range[0].flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
34 }
35
36 mr.range[0].flags |= priv->flags;
37
Patrick McHardya55e22e2015-04-11 02:27:31 +010038 regs->verdict.code = nf_nat_redirect_ipv4(pkt->skb, &mr,
Eric W. Biederman6aa187f2015-09-18 14:32:57 -050039 pkt->hook);
Arturo Borreroe9105f12014-10-17 12:39:09 +020040}
41
42static struct nft_expr_type nft_redir_ipv4_type;
43static const struct nft_expr_ops nft_redir_ipv4_ops = {
44 .type = &nft_redir_ipv4_type,
45 .size = NFT_EXPR_SIZE(sizeof(struct nft_redir)),
46 .eval = nft_redir_ipv4_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_ipv4_type __read_mostly = {
53 .family = NFPROTO_IPV4,
54 .name = "redir",
55 .ops = &nft_redir_ipv4_ops,
56 .policy = nft_redir_policy,
57 .maxattr = NFTA_REDIR_MAX,
58 .owner = THIS_MODULE,
59};
60
61static int __init nft_redir_ipv4_module_init(void)
62{
63 return nft_register_expr(&nft_redir_ipv4_type);
64}
65
66static void __exit nft_redir_ipv4_module_exit(void)
67{
68 nft_unregister_expr(&nft_redir_ipv4_type);
69}
70
71module_init(nft_redir_ipv4_module_init);
72module_exit(nft_redir_ipv4_module_exit);
73
74MODULE_LICENSE("GPL");
75MODULE_AUTHOR("Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>");
76MODULE_ALIAS_NFT_AF_EXPR(AF_INET, "redir");