ip_conntrack.h

来自「此工具是arm-linux-GCC交叉编译工具(cross-3.4.4)」· C头文件 代码 · 共 541 行 · 第 1/2 页

H
541
字号
	/* Timer function; deletes the expectation. */	struct timer_list timeout;	/* Usage count. */	atomic_t use;	/* Unique ID */	unsigned int id;	/* Flags */	unsigned int flags;#ifdef CONFIG_IP_NF_NAT_NEEDED	/* This is the original per-proto part, used to map the	 * expected connection the way the recipient expects. */	union ip_conntrack_manip_proto saved_proto;	/* Direction relative to the master connection. */	enum ip_conntrack_dir dir;#endif};#define IP_CT_EXPECT_PERMANENT	0x1static inline struct ip_conntrack *tuplehash_to_ctrack(const struct ip_conntrack_tuple_hash *hash){	return container_of(hash, struct ip_conntrack,			    tuplehash[hash->tuple.dst.dir]);}/* get master conntrack via master expectation */#define master_ct(conntr) (conntr->master)/* Alter reply tuple (maybe alter helper). */extern voidip_conntrack_alter_reply(struct ip_conntrack *conntrack,			 const struct ip_conntrack_tuple *newreply);/* Is this tuple taken? (ignoring any belonging to the given   conntrack). */extern intip_conntrack_tuple_taken(const struct ip_conntrack_tuple *tuple,			 const struct ip_conntrack *ignored_conntrack);/* Return conntrack_info and tuple hash for given skb. */static inline struct ip_conntrack *ip_conntrack_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo){	*ctinfo = skb->nfctinfo;	return (struct ip_conntrack *)skb->nfct;}/* decrement reference count on a conntrack */static inline voidip_conntrack_put(struct ip_conntrack *ct){	IP_NF_ASSERT(ct);	nf_conntrack_put(&ct->ct_general);}/* call to create an explicit dependency on ip_conntrack. */extern void need_ip_conntrack(void);extern int invert_tuplepr(struct ip_conntrack_tuple *inverse,			  const struct ip_conntrack_tuple *orig);extern void __ip_ct_refresh_acct(struct ip_conntrack *ct,			         enum ip_conntrack_info ctinfo,			         const struct sk_buff *skb,			         unsigned long extra_jiffies,				 int do_acct);/* Refresh conntrack for this many jiffies and do accounting */static inline void ip_ct_refresh_acct(struct ip_conntrack *ct, 				      enum ip_conntrack_info ctinfo,				      const struct sk_buff *skb,				      unsigned long extra_jiffies){	__ip_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);}/* Refresh conntrack for this many jiffies */static inline void ip_ct_refresh(struct ip_conntrack *ct,				 const struct sk_buff *skb,				 unsigned long extra_jiffies){	__ip_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);}/* These are for NAT.  Icky. *//* Update TCP window tracking data when NAT mangles the packet */extern void ip_conntrack_tcp_update(struct sk_buff *skb,				    struct ip_conntrack *conntrack,				    enum ip_conntrack_dir dir);/* Call me when a conntrack is destroyed. */extern void (*ip_conntrack_destroyed)(struct ip_conntrack *conntrack);/* Fake conntrack entry for untracked connections */extern struct ip_conntrack ip_conntrack_untracked;/* Returns new sk_buff, or NULL */struct sk_buff *ip_ct_gather_frags(struct sk_buff *skb, u_int32_t user);/* Iterate over all conntracks: if iter returns true, it's deleted. */extern voidip_ct_iterate_cleanup(int (*iter)(struct ip_conntrack *i, void *data),		      void *data);extern struct ip_conntrack_helper *__ip_conntrack_helper_find_byname(const char *);extern struct ip_conntrack_helper *ip_conntrack_helper_find_get(const struct ip_conntrack_tuple *tuple);extern void ip_conntrack_helper_put(struct ip_conntrack_helper *helper);extern struct ip_conntrack_protocol *__ip_conntrack_proto_find(u_int8_t protocol);extern struct ip_conntrack_protocol *ip_conntrack_proto_find_get(u_int8_t protocol);extern void ip_conntrack_proto_put(struct ip_conntrack_protocol *proto);extern void ip_ct_remove_expectations(struct ip_conntrack *ct);extern struct ip_conntrack *ip_conntrack_alloc(struct ip_conntrack_tuple *,					       struct ip_conntrack_tuple *);extern void ip_conntrack_free(struct ip_conntrack *ct);extern void ip_conntrack_hash_insert(struct ip_conntrack *ct);extern struct ip_conntrack_expect *__ip_conntrack_expect_find(const struct ip_conntrack_tuple *tuple);extern struct ip_conntrack_expect *ip_conntrack_expect_find(const struct ip_conntrack_tuple *tuple);extern struct ip_conntrack_tuple_hash *__ip_conntrack_find(const struct ip_conntrack_tuple *tuple,                    const struct ip_conntrack *ignored_conntrack);extern void ip_conntrack_flush(void);/* It's confirmed if it is, or has been in the hash table. */static inline int is_confirmed(struct ip_conntrack *ct){	return test_bit(IPS_CONFIRMED_BIT, &ct->status);}static inline int is_dying(struct ip_conntrack *ct){	return test_bit(IPS_DYING_BIT, &ct->status);}extern unsigned int ip_conntrack_htable_size; struct ip_conntrack_stat{	unsigned int searched;	unsigned int found;	unsigned int new;	unsigned int invalid;	unsigned int ignore;	unsigned int delete;	unsigned int delete_list;	unsigned int insert;	unsigned int insert_failed;	unsigned int drop;	unsigned int early_drop;	unsigned int error;	unsigned int expect_new;	unsigned int expect_create;	unsigned int expect_delete;};#define CONNTRACK_STAT_INC(count) (__get_cpu_var(ip_conntrack_stat).count++)#ifdef CONFIG_IP_NF_CONNTRACK_EVENTS#include <linux/notifier.h>#include <linux/interrupt.h>struct ip_conntrack_ecache {	struct ip_conntrack *ct;	unsigned int events;};DECLARE_PER_CPU(struct ip_conntrack_ecache, ip_conntrack_ecache);#define CONNTRACK_ECACHE(x)	(__get_cpu_var(ip_conntrack_ecache).x) extern struct notifier_block *ip_conntrack_chain;extern struct notifier_block *ip_conntrack_expect_chain;static inline int ip_conntrack_register_notifier(struct notifier_block *nb){	return notifier_chain_register(&ip_conntrack_chain, nb);}static inline int ip_conntrack_unregister_notifier(struct notifier_block *nb){	return notifier_chain_unregister(&ip_conntrack_chain, nb);}static inline int ip_conntrack_expect_register_notifier(struct notifier_block *nb){	return notifier_chain_register(&ip_conntrack_expect_chain, nb);}static inline intip_conntrack_expect_unregister_notifier(struct notifier_block *nb){	return notifier_chain_unregister(&ip_conntrack_expect_chain, nb);}extern void ip_ct_deliver_cached_events(const struct ip_conntrack *ct);extern void __ip_ct_event_cache_init(struct ip_conntrack *ct);static inline void ip_conntrack_event_cache(enum ip_conntrack_events event,			 const struct sk_buff *skb){	struct ip_conntrack *ct = (struct ip_conntrack *)skb->nfct;	struct ip_conntrack_ecache *ecache;		local_bh_disable();	ecache = &__get_cpu_var(ip_conntrack_ecache);	if (ct != ecache->ct)		__ip_ct_event_cache_init(ct);	ecache->events |= event;	local_bh_enable();}static inline void ip_conntrack_event(enum ip_conntrack_events event,				      struct ip_conntrack *ct){	if (is_confirmed(ct) && !is_dying(ct))		notifier_call_chain(&ip_conntrack_chain, event, ct);}static inline void ip_conntrack_expect_event(enum ip_conntrack_expect_events event,			  struct ip_conntrack_expect *exp){	notifier_call_chain(&ip_conntrack_expect_chain, event, exp);}#else /* CONFIG_IP_NF_CONNTRACK_EVENTS */static inline void ip_conntrack_event_cache(enum ip_conntrack_events event, 					    const struct sk_buff *skb) {}static inline void ip_conntrack_event(enum ip_conntrack_events event, 				      struct ip_conntrack *ct) {}static inline void ip_ct_deliver_cached_events(const struct ip_conntrack *ct) {}static inline void ip_conntrack_expect_event(enum ip_conntrack_expect_events event, 			  struct ip_conntrack_expect *exp) {}#endif /* CONFIG_IP_NF_CONNTRACK_EVENTS */#ifdef CONFIG_IP_NF_NAT_NEEDEDstatic inline int ip_nat_initialized(struct ip_conntrack *conntrack,				     enum ip_nat_manip_type manip){	if (manip == IP_NAT_MANIP_SRC)		return test_bit(IPS_SRC_NAT_DONE_BIT, &conntrack->status);	return test_bit(IPS_DST_NAT_DONE_BIT, &conntrack->status);}#endif /* CONFIG_IP_NF_NAT_NEEDED */#endif /* __KERNEL__ */#endif /* _IP_CONNTRACK_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?