blob: 8ab6df64a12adce419ad93c757be81902d9f4f47 [file] [log] [blame]
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -07001#ifndef __NET_FRAG_H__
2#define __NET_FRAG_H__
3
Pavel Emelyanovac18e752008-01-22 06:02:14 -08004struct netns_frags {
5};
6
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -07007struct inet_frag_queue {
8 struct hlist_node list;
Pavel Emelyanovac18e752008-01-22 06:02:14 -08009 struct netns_frags *net;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070010 struct list_head lru_list; /* lru list member */
11 spinlock_t lock;
12 atomic_t refcnt;
13 struct timer_list timer; /* when will this queue expire? */
14 struct sk_buff *fragments; /* list of received fragments */
15 ktime_t stamp;
16 int len; /* total length of orig datagram */
17 int meat;
18 __u8 last_in; /* first/last segment arrived? */
19
20#define COMPLETE 4
21#define FIRST_IN 2
22#define LAST_IN 1
23};
24
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070025#define INETFRAGS_HASHSZ 64
26
Pavel Emelyanov04128f22007-10-15 02:33:45 -070027struct inet_frags_ctl {
28 int high_thresh;
29 int low_thresh;
30 int timeout;
31 int secret_interval;
32};
33
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070034struct inet_frags {
35 struct list_head lru_list;
36 struct hlist_head hash[INETFRAGS_HASHSZ];
37 rwlock_t lock;
38 u32 rnd;
39 int nqueues;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -070040 int qsize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070041 atomic_t mem;
42 struct timer_list secret_timer;
Pavel Emelyanov04128f22007-10-15 02:33:45 -070043 struct inet_frags_ctl *ctl;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070044
45 unsigned int (*hashfn)(struct inet_frag_queue *);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070046 void (*constructor)(struct inet_frag_queue *q,
47 void *arg);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -070048 void (*destructor)(struct inet_frag_queue *);
49 void (*skb_free)(struct sk_buff *);
Pavel Emelyanovabd65232007-10-17 19:47:21 -070050 int (*match)(struct inet_frag_queue *q,
51 void *arg);
Pavel Emelyanove521db92007-10-17 19:45:23 -070052 void (*frag_expire)(unsigned long data);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070053};
54
55void inet_frags_init(struct inet_frags *);
56void inet_frags_fini(struct inet_frags *);
57
Pavel Emelyanov277e6502007-10-15 02:37:18 -070058void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -070059void inet_frag_destroy(struct inet_frag_queue *q,
60 struct inet_frags *f, int *work);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -070061int inet_frag_evictor(struct inet_frags *f);
Pavel Emelyanovac18e752008-01-22 06:02:14 -080062struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
63 struct inet_frags *f, void *key, unsigned int hash);
Pavel Emelyanov277e6502007-10-15 02:37:18 -070064
Pavel Emelyanov762cc402007-10-15 02:41:56 -070065static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f)
66{
67 if (atomic_dec_and_test(&q->refcnt))
68 inet_frag_destroy(q, f, NULL);
69}
70
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070071#endif