blob: 950ed182f62f6f2e359b8ead28d903b4c6dc877f [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 Ahern192132b2015-08-27 16:07:03 -070018/* IPv4 address key for cache lookups */
19struct ipv4_addr_key {
20 __be32 addr;
21 int vif;
22};
23
David Ahern5345c2e2015-08-27 16:07:02 -070024#define INETPEER_MAXKEYSZ (sizeof(struct in6_addr) / sizeof(u32))
David S. Miller7a71ed82011-02-09 14:30:26 -080025
26struct inetpeer_addr {
David Ahern5345c2e2015-08-27 16:07:02 -070027 union {
David Ahern192132b2015-08-27 16:07:03 -070028 struct ipv4_addr_key a4;
David Ahern5345c2e2015-08-27 16:07:02 -070029 struct in6_addr a6;
30 u32 key[INETPEER_MAXKEYSZ];
31 };
David S. Miller7a71ed82011-02-09 14:30:26 -080032 __u16 family;
David S. Miller8790ca12010-12-01 17:28:18 -080033};
David S. Miller582a72d2010-11-30 11:53:55 -080034
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000035struct inet_peer {
Eric Dumazetb1454252017-07-17 02:56:10 -070036 struct rb_node rb_node;
David S. Miller8790ca12010-12-01 17:28:18 -080037 struct inetpeer_addr daddr;
Eric Dumazet2b77bdd2011-06-08 23:31:27 -070038
39 u32 metrics[RTAX_MAX];
40 u32 rate_tokens; /* rate limiting for ICMP */
41 unsigned long rate_last;
Eric Dumazet317fe0e2010-06-16 04:52:13 +000042 /*
Reshetova, Elena1cc9a982017-06-30 13:07:54 +030043 * Once inet_peer is queued for deletion (refcnt == 0), following field
Eric Dumazet73f156a2014-06-02 05:26:03 -070044 * 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;
52 };
Eric Dumazet2b77bdd2011-06-08 23:31:27 -070053
54 /* following fields might be frequently dirtied */
55 __u32 dtime; /* the time of last use of not referenced entries */
Reshetova, Elena1cc9a982017-06-30 13:07:54 +030056 refcount_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
David S. Millerc3426b42012-06-09 16:27:05 -070059struct inet_peer_base {
Eric Dumazetb1454252017-07-17 02:56:10 -070060 struct rb_root rb_root;
David S. Millerc3426b42012-06-09 16:27:05 -070061 seqlock_t lock;
62 int total;
63};
64
Joe Perches1fd51152013-09-21 10:22:41 -070065void inet_peer_base_init(struct inet_peer_base *);
David S. Millerc3426b42012-06-09 16:27:05 -070066
Joe Perches1fd51152013-09-21 10:22:41 -070067void inet_initpeers(void) __init;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
David S. Miller144001b2011-01-27 13:52:16 -080069#define INETPEER_METRICS_NEW (~(u32) 0)
70
David Ahern3abef282015-08-27 16:07:00 -070071static inline void inetpeer_set_addr_v4(struct inetpeer_addr *iaddr, __be32 ip)
72{
David Ahern192132b2015-08-27 16:07:03 -070073 iaddr->a4.addr = ip;
Eric Dumazet887dc9f2015-12-15 20:56:44 -080074 iaddr->a4.vif = 0;
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 Ahern192132b2015-08-27 16:07:03 -070080 return iaddr->a4.addr;
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,
David Ahern192132b2015-08-27 16:07:03 -0700102 int vif, 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 Ahern192132b2015-08-27 16:07:03 -0700106 daddr.a4.addr = v4daddr;
107 daddr.a4.vif = vif;
David S. Millerb534ecf2010-11-30 11:54:19 -0800108 daddr.family = AF_INET;
David S. Millerc0efc882012-06-09 19:12:36 -0700109 return inet_getpeer(base, &daddr, create);
David S. Millerb534ecf2010-11-30 11:54:19 -0800110}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
David S. Millerc0efc882012-06-09 19:12:36 -0700112static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
Gao feng54db0cc2012-06-08 01:21:40 +0000113 const struct in6_addr *v6daddr,
114 int create)
David S. Miller672f0072010-11-30 12:20:00 -0800115{
David S. Miller8790ca12010-12-01 17:28:18 -0800116 struct inetpeer_addr daddr;
David S. Miller672f0072010-11-30 12:20:00 -0800117
David Ahern5345c2e2015-08-27 16:07:02 -0700118 daddr.a6 = *v6daddr;
David S. Miller672f0072010-11-30 12:20:00 -0800119 daddr.family = AF_INET6;
David S. Millerc0efc882012-06-09 19:12:36 -0700120 return inet_getpeer(base, &daddr, create);
David S. Miller672f0072010-11-30 12:20:00 -0800121}
122
David Ahernd39d14f2015-08-27 16:07:01 -0700123static inline int inetpeer_addr_cmp(const struct inetpeer_addr *a,
124 const struct inetpeer_addr *b)
125{
David Ahern5345c2e2015-08-27 16:07:02 -0700126 int i, n;
127
128 if (a->family == AF_INET)
129 n = sizeof(a->a4) / sizeof(u32);
130 else
131 n = sizeof(a->a6) / sizeof(u32);
David Ahernd39d14f2015-08-27 16:07:01 -0700132
133 for (i = 0; i < n; i++) {
David Ahern5345c2e2015-08-27 16:07:02 -0700134 if (a->key[i] == b->key[i])
David Ahernd39d14f2015-08-27 16:07:01 -0700135 continue;
David Ahern5345c2e2015-08-27 16:07:02 -0700136 if (a->key[i] < b->key[i])
David Ahernd39d14f2015-08-27 16:07:01 -0700137 return -1;
138 return 1;
139 }
140
141 return 0;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/* can be called from BH context or outside */
Joe Perches1fd51152013-09-21 10:22:41 -0700145void inet_putpeer(struct inet_peer *p);
146bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Joe Perches1fd51152013-09-21 10:22:41 -0700148void inetpeer_invalidate_tree(struct inet_peer_base *);
Steffen Klassert5faa5df2012-03-06 21:20:26 +0000149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#endif /* _NET_INETPEER_H */