2007-10-15 17:24:19 +08:00
|
|
|
#ifndef __NET_FRAG_H__
|
|
|
|
#define __NET_FRAG_H__
|
|
|
|
|
2008-01-22 22:02:14 +08:00
|
|
|
struct netns_frags {
|
2008-01-22 22:06:23 +08:00
|
|
|
int nqueues;
|
2008-01-22 22:11:48 +08:00
|
|
|
struct list_head lru_list;
|
2008-01-22 22:09:37 +08:00
|
|
|
|
2013-01-29 07:44:14 +08:00
|
|
|
/* Its important for performance to keep lru_list and mem on
|
|
|
|
* separate cachelines
|
|
|
|
*/
|
|
|
|
atomic_t mem ____cacheline_aligned_in_smp;
|
2008-01-22 22:09:37 +08:00
|
|
|
/* sysctls */
|
|
|
|
int timeout;
|
2008-01-22 22:10:13 +08:00
|
|
|
int high_thresh;
|
|
|
|
int low_thresh;
|
2008-01-22 22:02:14 +08:00
|
|
|
};
|
|
|
|
|
2007-10-15 17:24:19 +08:00
|
|
|
struct inet_frag_queue {
|
|
|
|
spinlock_t lock;
|
|
|
|
struct timer_list timer; /* when will this queue expire? */
|
2013-01-29 07:44:49 +08:00
|
|
|
struct list_head lru_list; /* lru list member */
|
|
|
|
struct hlist_node list;
|
|
|
|
atomic_t refcnt;
|
2007-10-15 17:24:19 +08:00
|
|
|
struct sk_buff *fragments; /* list of received fragments */
|
2010-06-29 12:39:37 +08:00
|
|
|
struct sk_buff *fragments_tail;
|
2007-10-15 17:24:19 +08:00
|
|
|
ktime_t stamp;
|
|
|
|
int len; /* total length of orig datagram */
|
|
|
|
int meat;
|
|
|
|
__u8 last_in; /* first/last segment arrived? */
|
|
|
|
|
2008-03-29 07:35:27 +08:00
|
|
|
#define INET_FRAG_COMPLETE 4
|
|
|
|
#define INET_FRAG_FIRST_IN 2
|
|
|
|
#define INET_FRAG_LAST_IN 1
|
2012-08-27 01:13:55 +08:00
|
|
|
|
|
|
|
u16 max_size;
|
2013-01-29 07:44:49 +08:00
|
|
|
|
|
|
|
struct netns_frags *net;
|
2007-10-15 17:24:19 +08:00
|
|
|
};
|
|
|
|
|
2007-10-15 17:31:52 +08:00
|
|
|
#define INETFRAGS_HASHSZ 64
|
|
|
|
|
|
|
|
struct inet_frags {
|
|
|
|
struct hlist_head hash[INETFRAGS_HASHSZ];
|
2013-01-29 07:44:37 +08:00
|
|
|
/* This rwlock is a global lock (seperate per IPv4, IPv6 and
|
|
|
|
* netfilter). Important to keep this on a seperate cacheline.
|
|
|
|
*/
|
|
|
|
rwlock_t lock ____cacheline_aligned_in_smp;
|
2008-01-22 22:11:04 +08:00
|
|
|
int secret_interval;
|
2007-10-15 17:31:52 +08:00
|
|
|
struct timer_list secret_timer;
|
2013-01-29 07:44:37 +08:00
|
|
|
u32 rnd;
|
|
|
|
int qsize;
|
2007-10-15 17:38:08 +08:00
|
|
|
|
|
|
|
unsigned int (*hashfn)(struct inet_frag_queue *);
|
2013-01-29 07:44:37 +08:00
|
|
|
bool (*match)(struct inet_frag_queue *q, void *arg);
|
2007-10-18 10:46:47 +08:00
|
|
|
void (*constructor)(struct inet_frag_queue *q,
|
|
|
|
void *arg);
|
2007-10-15 17:39:14 +08:00
|
|
|
void (*destructor)(struct inet_frag_queue *);
|
|
|
|
void (*skb_free)(struct sk_buff *);
|
2007-10-18 10:45:23 +08:00
|
|
|
void (*frag_expire)(unsigned long data);
|
2007-10-15 17:31:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void inet_frags_init(struct inet_frags *);
|
|
|
|
void inet_frags_fini(struct inet_frags *);
|
|
|
|
|
2008-01-22 22:06:23 +08:00
|
|
|
void inet_frags_init_net(struct netns_frags *nf);
|
2008-01-22 22:12:39 +08:00
|
|
|
void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f);
|
2008-01-22 22:06:23 +08:00
|
|
|
|
2007-10-15 17:37:18 +08:00
|
|
|
void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
|
2007-10-15 17:39:14 +08:00
|
|
|
void inet_frag_destroy(struct inet_frag_queue *q,
|
|
|
|
struct inet_frags *f, int *work);
|
2012-09-19 00:50:11 +08:00
|
|
|
int inet_frag_evictor(struct netns_frags *nf, struct inet_frags *f, bool force);
|
2008-01-22 22:02:14 +08:00
|
|
|
struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
|
2009-02-25 18:32:52 +08:00
|
|
|
struct inet_frags *f, void *key, unsigned int hash)
|
|
|
|
__releases(&f->lock);
|
2007-10-15 17:37:18 +08:00
|
|
|
|
2007-10-15 17:41:56 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2013-01-29 07:45:12 +08:00
|
|
|
/* Memory Tracking Functions. */
|
|
|
|
|
|
|
|
static inline int frag_mem_limit(struct netns_frags *nf)
|
|
|
|
{
|
|
|
|
return atomic_read(&nf->mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sub_frag_mem_limit(struct inet_frag_queue *q, int i)
|
|
|
|
{
|
|
|
|
atomic_sub(i, &q->net->mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void add_frag_mem_limit(struct inet_frag_queue *q, int i)
|
|
|
|
{
|
|
|
|
atomic_add(i, &q->net->mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void init_frag_mem_limit(struct netns_frags *nf)
|
|
|
|
{
|
|
|
|
atomic_set(&nf->mem, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int sum_frag_mem_limit(struct netns_frags *nf)
|
|
|
|
{
|
|
|
|
return atomic_read(&nf->mem);
|
|
|
|
}
|
|
|
|
|
2007-10-15 17:24:19 +08:00
|
|
|
#endif
|