#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/netlink.h>
#include <linux/netfilter.h>
#include <linux/netfilter/nf_tables.h>
#include <linux/random.h>
#include <linux/static_key.h>
#include <net/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables_core.h>
struct nft_ng_inc { … };
static u32 nft_ng_inc_gen(struct nft_ng_inc *priv)
{ … }
static void nft_ng_inc_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static const struct nla_policy nft_ng_policy[NFTA_NG_MAX + 1] = …;
static int nft_ng_inc_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static bool nft_ng_inc_reduce(struct nft_regs_track *track,
const struct nft_expr *expr)
{ … }
static int nft_ng_dump(struct sk_buff *skb, enum nft_registers dreg,
u32 modulus, enum nft_ng_types type, u32 offset)
{ … }
static int nft_ng_inc_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static void nft_ng_inc_destroy(const struct nft_ctx *ctx,
const struct nft_expr *expr)
{ … }
struct nft_ng_random { … };
static u32 nft_ng_random_gen(const struct nft_ng_random *priv)
{ … }
static void nft_ng_random_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static int nft_ng_random_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_ng_random_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static bool nft_ng_random_reduce(struct nft_regs_track *track,
const struct nft_expr *expr)
{ … }
static struct nft_expr_type nft_ng_type;
static const struct nft_expr_ops nft_ng_inc_ops = …;
static const struct nft_expr_ops nft_ng_random_ops = …;
static const struct nft_expr_ops *
nft_ng_select_ops(const struct nft_ctx *ctx, const struct nlattr * const tb[])
{ … }
static struct nft_expr_type nft_ng_type __read_mostly = …;
static int __init nft_ng_module_init(void)
{ … }
static void __exit nft_ng_module_exit(void)
{ … }
module_init(…) …;
module_exit(nft_ng_module_exit);
MODULE_LICENSE(…) …;
MODULE_AUTHOR(…) …;
MODULE_ALIAS_NFT_EXPR(…) …;
MODULE_DESCRIPTION(…) …;