]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/net/inetpeer.h
Merge tag 'batman-adv-for-davem' of git://git.open-mesh.org/linux-merge
[karo-tx-linux.git] / include / net / inetpeer.h
1 /*
2  *              INETPEER - A storage for permanent information about peers
3  *
4  *  Authors:    Andrey V. Savochkin <saw@msu.ru>
5  */
6
7 #ifndef _NET_INETPEER_H
8 #define _NET_INETPEER_H
9
10 #include <linux/types.h>
11 #include <linux/init.h>
12 #include <linux/jiffies.h>
13 #include <linux/spinlock.h>
14 #include <linux/rtnetlink.h>
15 #include <net/ipv6.h>
16 #include <linux/atomic.h>
17
18 struct inetpeer_addr_base {
19         union {
20                 __be32                  a4;
21                 __be32                  a6[4];
22                 struct in6_addr         in6;
23         };
24 };
25
26 struct inetpeer_addr {
27         struct inetpeer_addr_base       addr;
28         __u16                           family;
29 };
30
31 struct inet_peer {
32         /* group together avl_left,avl_right,v4daddr to speedup lookups */
33         struct inet_peer __rcu  *avl_left, *avl_right;
34         struct inetpeer_addr    daddr;
35         __u32                   avl_height;
36
37         u32                     metrics[RTAX_MAX];
38         u32                     rate_tokens;    /* rate limiting for ICMP */
39         unsigned long           rate_last;
40         union {
41                 struct list_head        gc_list;
42                 struct rcu_head     gc_rcu;
43         };
44         /*
45          * Once inet_peer is queued for deletion (refcnt == -1), following field
46          * is not available: rid
47          * We can share memory with rcu_head to help keep inet_peer small.
48          */
49         union {
50                 struct {
51                         atomic_t                        rid;            /* Frag reception counter */
52                 };
53                 struct rcu_head         rcu;
54                 struct inet_peer        *gc_next;
55         };
56
57         /* following fields might be frequently dirtied */
58         __u32                   dtime;  /* the time of last use of not referenced entries */
59         atomic_t                refcnt;
60 };
61
62 struct inet_peer_base {
63         struct inet_peer __rcu  *root;
64         seqlock_t               lock;
65         int                     total;
66 };
67
68 void inet_peer_base_init(struct inet_peer_base *);
69
70 void inet_initpeers(void) __init;
71
72 #define INETPEER_METRICS_NEW    (~(u32) 0)
73
74 /* can be called with or without local BH being disabled */
75 struct inet_peer *inet_getpeer(struct inet_peer_base *base,
76                                const struct inetpeer_addr *daddr,
77                                int create);
78
79 static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base,
80                                                 __be32 v4daddr,
81                                                 int create)
82 {
83         struct inetpeer_addr daddr;
84
85         daddr.addr.a4 = v4daddr;
86         daddr.family = AF_INET;
87         return inet_getpeer(base, &daddr, create);
88 }
89
90 static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
91                                                 const struct in6_addr *v6daddr,
92                                                 int create)
93 {
94         struct inetpeer_addr daddr;
95
96         daddr.addr.in6 = *v6daddr;
97         daddr.family = AF_INET6;
98         return inet_getpeer(base, &daddr, create);
99 }
100
101 /* can be called from BH context or outside */
102 void inet_putpeer(struct inet_peer *p);
103 bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
104
105 void inetpeer_invalidate_tree(struct inet_peer_base *);
106
107 #endif /* _NET_INETPEER_H */