#include <linux/module.h>
#include <linux/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables_core.h>
#include <net/netfilter/nf_socket.h>
#include <net/inet_sock.h>
#include <net/tcp.h>
struct nft_socket { … };
static void nft_socket_wildcard(const struct nft_pktinfo *pkt,
struct nft_regs *regs, struct sock *sk,
u32 *dest)
{ … }
#ifdef CONFIG_SOCK_CGROUP_DATA
static noinline bool
nft_sock_get_eval_cgroupv2(u32 *dest, struct sock *sk, const struct nft_pktinfo *pkt, u32 level)
{ … }
#endif
static struct sock *nft_socket_do_lookup(const struct nft_pktinfo *pkt)
{ … }
static void nft_socket_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static const struct nla_policy nft_socket_policy[NFTA_SOCKET_MAX + 1] = …;
static int nft_socket_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_socket_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static bool nft_socket_reduce(struct nft_regs_track *track,
const struct nft_expr *expr)
{ … }
static int nft_socket_validate(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nft_data **data)
{ … }
static struct nft_expr_type nft_socket_type;
static const struct nft_expr_ops nft_socket_ops = …;
static struct nft_expr_type nft_socket_type __read_mostly = …;
static int __init nft_socket_module_init(void)
{ … }
static void __exit nft_socket_module_exit(void)
{ … }
module_init(…) …;
module_exit(nft_socket_module_exit);
MODULE_LICENSE(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_ALIAS_NFT_EXPR(…) …;