You need to sign in or sign up before continuing.
inet_frag.h 1.9 KB
Newer Older
1 2 3
#ifndef __NET_FRAG_H__
#define __NET_FRAG_H__

4
struct netns_frags {
5
	int			nqueues;
6
	atomic_t		mem;
7 8 9

	/* sysctls */
	int			timeout;
10 11
	int			high_thresh;
	int			low_thresh;
12 13
};

14 15
struct inet_frag_queue {
	struct hlist_node	list;
16
	struct netns_frags	*net;
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
	struct list_head	lru_list;   /* lru list member */
	spinlock_t		lock;
	atomic_t		refcnt;
	struct timer_list	timer;      /* when will this queue expire? */
	struct sk_buff		*fragments; /* list of received fragments */
	ktime_t			stamp;
	int			len;        /* total length of orig datagram */
	int			meat;
	__u8			last_in;    /* first/last segment arrived? */

#define COMPLETE		4
#define FIRST_IN		2
#define LAST_IN			1
};

32 33
#define INETFRAGS_HASHSZ		64

34 35 36 37
struct inet_frags_ctl {
	int secret_interval;
};

38 39 40 41 42
struct inet_frags {
	struct list_head	lru_list;
	struct hlist_head	hash[INETFRAGS_HASHSZ];
	rwlock_t		lock;
	u32			rnd;
43
	int			qsize;
44
	struct timer_list	secret_timer;
45
	struct inet_frags_ctl	*ctl;
46 47

	unsigned int		(*hashfn)(struct inet_frag_queue *);
48 49
	void			(*constructor)(struct inet_frag_queue *q,
						void *arg);
50 51
	void			(*destructor)(struct inet_frag_queue *);
	void			(*skb_free)(struct sk_buff *);
52 53
	int			(*match)(struct inet_frag_queue *q,
						void *arg);
54
	void			(*frag_expire)(unsigned long data);
55 56 57 58 59
};

void inet_frags_init(struct inet_frags *);
void inet_frags_fini(struct inet_frags *);

60 61
void inet_frags_init_net(struct netns_frags *nf);

62
void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
63 64
void inet_frag_destroy(struct inet_frag_queue *q,
				struct inet_frags *f, int *work);
65
int inet_frag_evictor(struct netns_frags *nf, struct inet_frags *f);
66 67
struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
		struct inet_frags *f, void *key, unsigned int hash);
68

P
Pavel Emelyanov 已提交
69 70 71 72 73 74
static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f)
{
	if (atomic_dec_and_test(&q->refcnt))
		inet_frag_destroy(q, f, NULL);
}

75
#endif