#include <linux/module.h>
#include <linux/init.h>
#include <linux/skbuff.h>
#include <linux/ip.h>
#include <linux/string.h>
#include <linux/netlink.h>
#include <linux/netfilter.h>
#include <linux/netfilter_ipv4.h>
#include <linux/netfilter/nfnetlink.h>
#include <linux/netfilter/nf_tables.h>
#include <net/netfilter/nf_conntrack.h>
#include <net/netfilter/nf_nat.h>
#include <net/netfilter/nf_tables.h>
#include <net/ip.h>
struct nft_nat { … };
static void nft_nat_setup_addr(struct nf_nat_range2 *range,
const struct nft_regs *regs,
const struct nft_nat *priv)
{ … }
static void nft_nat_setup_proto(struct nf_nat_range2 *range,
const struct nft_regs *regs,
const struct nft_nat *priv)
{ … }
static void nft_nat_setup_netmap(struct nf_nat_range2 *range,
const struct nft_pktinfo *pkt,
const struct nft_nat *priv)
{ … }
static void nft_nat_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static const struct nla_policy nft_nat_policy[NFTA_NAT_MAX + 1] = …;
static int nft_nat_validate(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nft_data **data)
{ … }
static int nft_nat_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_nat_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static void
nft_nat_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
{ … }
static struct nft_expr_type nft_nat_type;
static const struct nft_expr_ops nft_nat_ops = …;
static struct nft_expr_type nft_nat_type __read_mostly = …;
#ifdef CONFIG_NF_TABLES_INET
static void nft_nat_inet_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static const struct nft_expr_ops nft_nat_inet_ops = …;
static struct nft_expr_type nft_inet_nat_type __read_mostly = …;
static int nft_nat_inet_module_init(void)
{ … }
static void nft_nat_inet_module_exit(void)
{ … }
#else
static int nft_nat_inet_module_init(void) { return 0; }
static void nft_nat_inet_module_exit(void) { }
#endif
static int __init nft_nat_module_init(void)
{ … }
static void __exit nft_nat_module_exit(void)
{ … }
module_init(…) …;
module_exit(nft_nat_module_exit);
MODULE_LICENSE(…) …;
MODULE_AUTHOR(…) …;
MODULE_ALIAS_NFT_EXPR(…) …;
MODULE_DESCRIPTION(…) …;