netfilter: nf_tables: kill nft_pktinfo.ops
[deliverable/linux.git] / net / ipv4 / netfilter / nft_masq_ipv4.c
CommitLineData
9ba1f726
AB
1/*
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/nft_masq.h>
17#include <net/netfilter/ipv4/nf_nat_masquerade.h>
18
19static void nft_masq_ipv4_eval(const struct nft_expr *expr,
a55e22e9 20 struct nft_regs *regs,
9ba1f726
AB
21 const struct nft_pktinfo *pkt)
22{
23 struct nft_masq *priv = nft_expr_priv(expr);
24 struct nf_nat_range range;
9ba1f726 25
6b96686e 26 memset(&range, 0, sizeof(range));
9ba1f726
AB
27 range.flags = priv->flags;
28
6aa187f2 29 regs->verdict.code = nf_nat_masquerade_ipv4(pkt->skb, pkt->hook,
a55e22e9 30 &range, pkt->out);
9ba1f726
AB
31}
32
9ba1f726
AB
33static struct nft_expr_type nft_masq_ipv4_type;
34static const struct nft_expr_ops nft_masq_ipv4_ops = {
35 .type = &nft_masq_ipv4_type,
36 .size = NFT_EXPR_SIZE(sizeof(struct nft_masq)),
37 .eval = nft_masq_ipv4_eval,
8da4cc1b 38 .init = nft_masq_init,
9ba1f726 39 .dump = nft_masq_dump,
7210e4e3 40 .validate = nft_masq_validate,
9ba1f726
AB
41};
42
43static struct nft_expr_type nft_masq_ipv4_type __read_mostly = {
44 .family = NFPROTO_IPV4,
45 .name = "masq",
46 .ops = &nft_masq_ipv4_ops,
47 .policy = nft_masq_policy,
48 .maxattr = NFTA_MASQ_MAX,
49 .owner = THIS_MODULE,
50};
51
52static int __init nft_masq_ipv4_module_init(void)
53{
8da4cc1b
AB
54 int ret;
55
56 ret = nft_register_expr(&nft_masq_ipv4_type);
57 if (ret < 0)
58 return ret;
59
60 nf_nat_masquerade_ipv4_register_notifier();
61
62 return ret;
9ba1f726
AB
63}
64
65static void __exit nft_masq_ipv4_module_exit(void)
66{
67 nft_unregister_expr(&nft_masq_ipv4_type);
8da4cc1b 68 nf_nat_masquerade_ipv4_unregister_notifier();
9ba1f726
AB
69}
70
71module_init(nft_masq_ipv4_module_init);
72module_exit(nft_masq_ipv4_module_exit);
73
74MODULE_LICENSE("GPL");
75MODULE_AUTHOR("Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>");
76MODULE_ALIAS_NFT_AF_EXPR(AF_INET, "masq");
This page took 0.070323 seconds and 5 git commands to generate.