inetpeer.h 3.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 *		INETPEER - A storage for permanent information about peers
 *
 *  Authors:	Andrey V. Savochkin <saw@msu.ru>
 */

#ifndef _NET_INETPEER_H
#define _NET_INETPEER_H

#include <linux/types.h>
#include <linux/init.h>
#include <linux/jiffies.h>
#include <linux/spinlock.h>
14
#include <linux/rtnetlink.h>
D
David S. Miller 已提交
15
#include <net/ipv6.h>
A
Arun Sharma 已提交
16
#include <linux/atomic.h>
L
Linus Torvalds 已提交
17

18
struct inetpeer_addr_base {
19
	union {
20 21
		__be32			a4;
		__be32			a6[4];
J
Jiri Benc 已提交
22
		struct in6_addr		in6;
23
	};
24 25 26 27 28
};

struct inetpeer_addr {
	struct inetpeer_addr_base	addr;
	__u16				family;
29
};
30

E
Eric Dumazet 已提交
31
struct inet_peer {
32
	/* group together avl_left,avl_right,v4daddr to speedup lookups */
E
Eric Dumazet 已提交
33
	struct inet_peer __rcu	*avl_left, *avl_right;
34
	struct inetpeer_addr	daddr;
E
Eric Dumazet 已提交
35
	__u32			avl_height;
36 37 38 39

	u32			metrics[RTAX_MAX];
	u32			rate_tokens;	/* rate limiting for ICMP */
	unsigned long		rate_last;
40 41 42 43
	union {
		struct list_head	gc_list;
		struct rcu_head     gc_rcu;
	};
44
	/*
E
Eric Dumazet 已提交
45 46
	 * Once inet_peer is queued for deletion (refcnt == -1), following field
	 * is not available: rid
47
	 * We can share memory with rcu_head to help keep inet_peer small.
48 49 50
	 */
	union {
		struct {
51
			atomic_t			rid;		/* Frag reception counter */
52 53
		};
		struct rcu_head         rcu;
E
Eric Dumazet 已提交
54
		struct inet_peer	*gc_next;
55
	};
56 57 58 59

	/* following fields might be frequently dirtied */
	__u32			dtime;	/* the time of last use of not referenced entries */
	atomic_t		refcnt;
L
Linus Torvalds 已提交
60 61
};

62 63 64 65 66 67
struct inet_peer_base {
	struct inet_peer __rcu	*root;
	seqlock_t		lock;
	int			total;
};

68
void inet_peer_base_init(struct inet_peer_base *);
69

70
void inet_initpeers(void) __init;
L
Linus Torvalds 已提交
71

72 73
#define INETPEER_METRICS_NEW	(~(u32) 0)

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
static inline void inetpeer_set_addr_v4(struct inetpeer_addr *iaddr, __be32 ip)
{
	iaddr->addr.a4 = ip;
	iaddr->family = AF_INET;
}

static inline __be32 inetpeer_get_addr_v4(struct inetpeer_addr *iaddr)
{
	return iaddr->addr.a4;
}

static inline void inetpeer_set_addr_v6(struct inetpeer_addr *iaddr,
					struct in6_addr *in6)
{
	iaddr->addr.in6 = *in6;
	iaddr->family = AF_INET6;
}

static inline struct in6_addr *inetpeer_get_addr_v6(struct inetpeer_addr *iaddr)
{
	return &iaddr->addr.in6;
}

L
Linus Torvalds 已提交
97
/* can be called with or without local BH being disabled */
98
struct inet_peer *inet_getpeer(struct inet_peer_base *base,
99 100
			       const struct inetpeer_addr *daddr,
			       int create);
101

102
static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base,
103 104
						__be32 v4daddr,
						int create)
105
{
106
	struct inetpeer_addr daddr;
107

108
	daddr.addr.a4 = v4daddr;
109
	daddr.family = AF_INET;
110
	return inet_getpeer(base, &daddr, create);
111
}
L
Linus Torvalds 已提交
112

113
static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
114 115
						const struct in6_addr *v6daddr,
						int create)
D
David S. Miller 已提交
116
{
117
	struct inetpeer_addr daddr;
D
David S. Miller 已提交
118

J
Jiri Benc 已提交
119
	daddr.addr.in6 = *v6daddr;
D
David S. Miller 已提交
120
	daddr.family = AF_INET6;
121
	return inet_getpeer(base, &daddr, create);
D
David S. Miller 已提交
122 123
}

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
static inline int inetpeer_addr_cmp(const struct inetpeer_addr *a,
				    const struct inetpeer_addr *b)
{
	int i, n = (a->family == AF_INET ? 1 : 4);

	for (i = 0; i < n; i++) {
		if (a->addr.a6[i] == b->addr.a6[i])
			continue;
		if ((__force u32)a->addr.a6[i] < (__force u32)b->addr.a6[i])
			return -1;
		return 1;
	}

	return 0;
}

L
Linus Torvalds 已提交
140
/* can be called from BH context or outside */
141 142
void inet_putpeer(struct inet_peer *p);
bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
L
Linus Torvalds 已提交
143

144
void inetpeer_invalidate_tree(struct inet_peer_base *);
145

L
Linus Torvalds 已提交
146
#endif /* _NET_INETPEER_H */