net: Add helper function to compare inetpeer addresses
[firefly-linux-kernel-4.4.55.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 static inline void inetpeer_set_addr_v4(struct inetpeer_addr *iaddr, __be32 ip)
75 {
76         iaddr->addr.a4 = ip;
77         iaddr->family = AF_INET;
78 }
79
80 static inline __be32 inetpeer_get_addr_v4(struct inetpeer_addr *iaddr)
81 {
82         return iaddr->addr.a4;
83 }
84
85 static inline void inetpeer_set_addr_v6(struct inetpeer_addr *iaddr,
86                                         struct in6_addr *in6)
87 {
88         iaddr->addr.in6 = *in6;
89         iaddr->family = AF_INET6;
90 }
91
92 static inline struct in6_addr *inetpeer_get_addr_v6(struct inetpeer_addr *iaddr)
93 {
94         return &iaddr->addr.in6;
95 }
96
97 /* can be called with or without local BH being disabled */
98 struct inet_peer *inet_getpeer(struct inet_peer_base *base,
99                                const struct inetpeer_addr *daddr,
100                                int create);
101
102 static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base,
103                                                 __be32 v4daddr,
104                                                 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 }
112
113 static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
114                                                 const struct in6_addr *v6daddr,
115                                                 int create)
116 {
117         struct inetpeer_addr daddr;
118
119         daddr.addr.in6 = *v6daddr;
120         daddr.family = AF_INET6;
121         return inet_getpeer(base, &daddr, create);
122 }
123
124 static inline int inetpeer_addr_cmp(const struct inetpeer_addr *a,
125                                     const struct inetpeer_addr *b)
126 {
127         int i, n = (a->family == AF_INET ? 1 : 4);
128
129         for (i = 0; i < n; i++) {
130                 if (a->addr.a6[i] == b->addr.a6[i])
131                         continue;
132                 if ((__force u32)a->addr.a6[i] < (__force u32)b->addr.a6[i])
133                         return -1;
134                 return 1;
135         }
136
137         return 0;
138 }
139
140 /* can be called from BH context or outside */
141 void inet_putpeer(struct inet_peer *p);
142 bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
143
144 void inetpeer_invalidate_tree(struct inet_peer_base *);
145
146 #endif /* _NET_INETPEER_H */