blob: e34f98aa93b19121b64411bead6d4fbccf0b9ffa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INETPEER - A storage for permanent information about peers
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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>
David S. Miller60659822011-01-26 20:55:53 -080014#include <linux/rtnetlink.h>
David S. Miller672f0072010-11-30 12:20:00 -080015#include <net/ipv6.h>
Arun Sharma600634972011-07-26 16:09:06 -070016#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
David Ahern5345c2e2015-08-27 16:07:02 -070018#define INETPEER_MAXKEYSZ (sizeof(struct in6_addr) / sizeof(u32))
David S. Miller7a71ed82011-02-09 14:30:26 -080019
20struct inetpeer_addr {
David Ahern5345c2e2015-08-27 16:07:02 -070021 union {
22 __be32 a4;
23 struct in6_addr a6;
24 u32 key[INETPEER_MAXKEYSZ];
25 };
David S. Miller7a71ed82011-02-09 14:30:26 -080026 __u16 family;
David S. Miller8790ca12010-12-01 17:28:18 -080027};
David S. Miller582a72d2010-11-30 11:53:55 -080028
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000029struct inet_peer {
Eric Dumazet78d79422006-10-20 00:28:35 -070030 /* group together avl_left,avl_right,v4daddr to speedup lookups */
Eric Dumazetb914c4e2010-10-25 23:55:38 +000031 struct inet_peer __rcu *avl_left, *avl_right;
David S. Miller8790ca12010-12-01 17:28:18 -080032 struct inetpeer_addr daddr;
Eric Dumazet2c1409a2009-11-12 09:33:09 +000033 __u32 avl_height;
Eric Dumazet2b77bdd2011-06-08 23:31:27 -070034
35 u32 metrics[RTAX_MAX];
36 u32 rate_tokens; /* rate limiting for ICMP */
37 unsigned long rate_last;
Eric Dumazet55432d22012-06-05 03:00:18 +000038 union {
39 struct list_head gc_list;
40 struct rcu_head gc_rcu;
41 };
Eric Dumazet317fe0e2010-06-16 04:52:13 +000042 /*
Eric Dumazet73f156a2014-06-02 05:26:03 -070043 * Once inet_peer is queued for deletion (refcnt == -1), following field
44 * is not available: rid
David S. Miller60659822011-01-26 20:55:53 -080045 * We can share memory with rcu_head to help keep inet_peer small.
Eric Dumazet317fe0e2010-06-16 04:52:13 +000046 */
47 union {
48 struct {
David S. Millerddd4aa42011-02-09 15:36:47 -080049 atomic_t rid; /* Frag reception counter */
Eric Dumazet317fe0e2010-06-16 04:52:13 +000050 };
51 struct rcu_head rcu;
Eric Dumazet4b9d9be2011-06-08 13:35:34 +000052 struct inet_peer *gc_next;
Eric Dumazet317fe0e2010-06-16 04:52:13 +000053 };
Eric Dumazet2b77bdd2011-06-08 23:31:27 -070054
55 /* following fields might be frequently dirtied */
56 __u32 dtime; /* the time of last use of not referenced entries */
57 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
David S. Millerc3426b42012-06-09 16:27:05 -070060struct inet_peer_base {
61 struct inet_peer __rcu *root;
62 seqlock_t lock;
63 int total;
64};
65
Joe Perches1fd51152013-09-21 10:22:41 -070066void inet_peer_base_init(struct inet_peer_base *);
David S. Millerc3426b42012-06-09 16:27:05 -070067
Joe Perches1fd51152013-09-21 10:22:41 -070068void inet_initpeers(void) __init;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David S. Miller144001b2011-01-27 13:52:16 -080070#define INETPEER_METRICS_NEW (~(u32) 0)
71
David Ahern3abef282015-08-27 16:07:00 -070072static inline void inetpeer_set_addr_v4(struct inetpeer_addr *iaddr, __be32 ip)
73{
David Ahern5345c2e2015-08-27 16:07:02 -070074 iaddr->a4 = ip;
David Ahern3abef282015-08-27 16:07:00 -070075 iaddr->family = AF_INET;
76}
77
78static inline __be32 inetpeer_get_addr_v4(struct inetpeer_addr *iaddr)
79{
David Ahern5345c2e2015-08-27 16:07:02 -070080 return iaddr->a4;
David Ahern3abef282015-08-27 16:07:00 -070081}
82
83static inline void inetpeer_set_addr_v6(struct inetpeer_addr *iaddr,
84 struct in6_addr *in6)
85{
David Ahern5345c2e2015-08-27 16:07:02 -070086 iaddr->a6 = *in6;
David Ahern3abef282015-08-27 16:07:00 -070087 iaddr->family = AF_INET6;
88}
89
90static inline struct in6_addr *inetpeer_get_addr_v6(struct inetpeer_addr *iaddr)
91{
David Ahern5345c2e2015-08-27 16:07:02 -070092 return &iaddr->a6;
David Ahern3abef282015-08-27 16:07:00 -070093}
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095/* can be called with or without local BH being disabled */
David S. Millerc0efc882012-06-09 19:12:36 -070096struct inet_peer *inet_getpeer(struct inet_peer_base *base,
Gao fengc8a627e2012-06-08 01:20:41 +000097 const struct inetpeer_addr *daddr,
98 int create);
David S. Millerb534ecf2010-11-30 11:54:19 -080099
David S. Millerc0efc882012-06-09 19:12:36 -0700100static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base,
Gao feng54db0cc2012-06-08 01:21:40 +0000101 __be32 v4daddr,
102 int create)
David S. Millerb534ecf2010-11-30 11:54:19 -0800103{
David S. Miller8790ca12010-12-01 17:28:18 -0800104 struct inetpeer_addr daddr;
David S. Millerb534ecf2010-11-30 11:54:19 -0800105
David Ahern5345c2e2015-08-27 16:07:02 -0700106 daddr.a4 = v4daddr;
David S. Millerb534ecf2010-11-30 11:54:19 -0800107 daddr.family = AF_INET;
David S. Millerc0efc882012-06-09 19:12:36 -0700108 return inet_getpeer(base, &daddr, create);
David S. Millerb534ecf2010-11-30 11:54:19 -0800109}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
David S. Millerc0efc882012-06-09 19:12:36 -0700111static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
Gao feng54db0cc2012-06-08 01:21:40 +0000112 const struct in6_addr *v6daddr,
113 int create)
David S. Miller672f0072010-11-30 12:20:00 -0800114{
David S. Miller8790ca12010-12-01 17:28:18 -0800115 struct inetpeer_addr daddr;
David S. Miller672f0072010-11-30 12:20:00 -0800116
David Ahern5345c2e2015-08-27 16:07:02 -0700117 daddr.a6 = *v6daddr;
David S. Miller672f0072010-11-30 12:20:00 -0800118 daddr.family = AF_INET6;
David S. Millerc0efc882012-06-09 19:12:36 -0700119 return inet_getpeer(base, &daddr, create);
David S. Miller672f0072010-11-30 12:20:00 -0800120}
121
David Ahernd39d14f2015-08-27 16:07:01 -0700122static inline int inetpeer_addr_cmp(const struct inetpeer_addr *a,
123 const struct inetpeer_addr *b)
124{
David Ahern5345c2e2015-08-27 16:07:02 -0700125 int i, n;
126
127 if (a->family == AF_INET)
128 n = sizeof(a->a4) / sizeof(u32);
129 else
130 n = sizeof(a->a6) / sizeof(u32);
David Ahernd39d14f2015-08-27 16:07:01 -0700131
132 for (i = 0; i < n; i++) {
David Ahern5345c2e2015-08-27 16:07:02 -0700133 if (a->key[i] == b->key[i])
David Ahernd39d14f2015-08-27 16:07:01 -0700134 continue;
David Ahern5345c2e2015-08-27 16:07:02 -0700135 if (a->key[i] < b->key[i])
David Ahernd39d14f2015-08-27 16:07:01 -0700136 return -1;
137 return 1;
138 }
139
140 return 0;
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* can be called from BH context or outside */
Joe Perches1fd51152013-09-21 10:22:41 -0700144void inet_putpeer(struct inet_peer *p);
145bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Joe Perches1fd51152013-09-21 10:22:41 -0700147void inetpeer_invalidate_tree(struct inet_peer_base *);
Steffen Klassert5faa5df2012-03-06 21:20:26 +0000148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#endif /* _NET_INETPEER_H */