struct nf_conn { /* Usage count in here is 1 for hash table, 1 per skb, * plus 1 for any connection(s) we are `master' for * * Hint, SKB address this struct and refcnt via skb->_nfct and * helpers nf_conntrack_get() and nf_conntrack_put(). * Helper nf_ct_put() equals nf_conntrack_put() by dec refcnt, * beware nf_ct_get() is different and don't inc refcnt. */ struct nf_conntrack ct_general; spinlock_t lock; u16 cpu; #ifdef CONFIG_NF_CONNTRACK_ZONES struct nf_conntrack_zone zone; #endif /* XXX should I move this to the tail ? - Y.K */ /* These are my tuples; original and reply */ struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX]; /* Have we seen traffic both ways yet? (bitset) */ unsigned long status; /* jiffies32 when this ct is considered dead */ u32 timeout; possible_net_t ct_net; #if IS_ENABLED(CONFIG_NF_NAT) struct hlist_node nat_bysource; #endif /* all members below initialized via memset */ struct { } __nfct_init_offset; /* If we were expected by an expectation, this will be it */ struct nf_conn *master; #if defined(CONFIG_NF_CONNTRACK_MARK) u_int32_t mark; #endif #ifdef CONFIG_NF_CONNTRACK_SECMARK u_int32_t secmark; #endif /* Extensions */ struct nf_ct_ext *ext; /* Storage reserved for other modules, must be the last member */ union nf_conntrack_proto proto; }; struct nf_conntrack { atomic_t use; };typedef struct atomic { volatile int counter; } atomic_t;
时间: 2024-04-18 17:32:22 浏览: 218
这段代码定义了两个结构体,分别是 nf_conn 和 nf_conntrack。
nf_conn 结构体包含了以下成员:
- ct_general:一个 nf_conntrack 结构体,用于跟踪连接的一般信息。
- lock:自旋锁,用于保护对 nf_conn 结构体的并发访问。
- cpu:一个 16 位的无符号整数,表示该连接所在的 CPU 编号。
- zone:一个 nf_conntrack_zone 结构体,在 CONFIG_NF_CONNTRACK_ZONES 宏开启时有效。
- tuplehash:一个包含了 IP_CT_DIR_MAX 个元素的 nf_conntrack_tuple_hash 数组,用于存储连接的原始和回复的元组信息。
- status:一个无符号长整型数,用于表示连接的状态。
- timeout:一个 32 位的无符号整数,表示连接被认为已经死亡的时间戳(以 jiffies32 表示)。
- ct_net:一个 possible_net_t 类型的变量,表示连接所属的网络命名空间。
- nat_bysource:一个 hlist_node 结构体,在 CONFIG_NF_NAT 宏开启时有效。
- __nfct_init_offset:一个空结构体,用于初始化其他成员。
- master:一个指向 nf_conn 结构体的指针,表示该连接的期望连接(expectation)。
- mark:一个 32 位的无符号整数,在 CONFIG_NF_CONNTRACK_MARK 宏开启时有效。
- secmark:一个 32 位的无符号整数,用于安全标记,在 CONFIG_NF_CONNTRACK_SECMARK 宏开启时有效。
- ext:一个指向 nf_ct_ext 结构体的指针,表示连接的扩展信息。
- proto:一个联合体,用于存储其他模块保留的数据。
nf_conntrack 结构体包含了一个名为 use 的 atomic_t 类型成员,用于记录 nf_conntrack 结构体的使用计数。atomic_t 是一个原子类型,用于实现原子操作的计数器。
需要注意的是,这段代码只是结构体的定义,没有展示结构体成员的具体实现。
阅读全文