#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 <net/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables_core.h>
#include <linux/jhash.h>
struct nft_jhash { … };
static void nft_jhash_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
struct nft_symhash { … };
static void nft_symhash_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static const struct nla_policy nft_hash_policy[NFTA_HASH_MAX + 1] = …;
static int nft_jhash_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_symhash_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_jhash_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static bool nft_jhash_reduce(struct nft_regs_track *track,
const struct nft_expr *expr)
{ … }
static int nft_symhash_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static bool nft_symhash_reduce(struct nft_regs_track *track,
const struct nft_expr *expr)
{ … }
static struct nft_expr_type nft_hash_type;
static const struct nft_expr_ops nft_jhash_ops = …;
static const struct nft_expr_ops nft_symhash_ops = …;
static const struct nft_expr_ops *
nft_hash_select_ops(const struct nft_ctx *ctx,
const struct nlattr * const tb[])
{ … }
static struct nft_expr_type nft_hash_type __read_mostly = …;
static int __init nft_hash_module_init(void)
{ … }
static void __exit nft_hash_module_exit(void)
{ … }
module_init(…) …;
module_exit(nft_hash_module_exit);
MODULE_LICENSE(…) …;
MODULE_AUTHOR(…) …;
MODULE_ALIAS_NFT_EXPR(…) …;
MODULE_DESCRIPTION(…) …;