blob: 00b5e7825508aab5c72156f7fba889dd166899c2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INETPEER - A storage for permanent information about peers
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Andrey V. Savochkin <saw@msu.ru>
6 */
7
8#ifndef _NET_INETPEER_H
9#define _NET_INETPEER_H
10
11#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/jiffies.h>
14#include <linux/spinlock.h>
David S. Miller60659822011-01-26 20:55:53 -080015#include <linux/rtnetlink.h>
David S. Miller672f0072010-11-30 12:20:00 -080016#include <net/ipv6.h>
Arun Sharma600634972011-07-26 16:09:06 -070017#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
David Ahern192132b2015-08-27 16:07:03 -070019/* IPv4 address key for cache lookups */
20struct ipv4_addr_key {
21 __be32 addr;
22 int vif;
23};
24
David Ahern5345c2e2015-08-27 16:07:02 -070025#define INETPEER_MAXKEYSZ (sizeof(struct in6_addr) / sizeof(u32))
David S. Miller7a71ed82011-02-09 14:30:26 -080026
27struct inetpeer_addr {
David Ahern5345c2e2015-08-27 16:07:02 -070028 union {
David Ahern192132b2015-08-27 16:07:03 -070029 struct ipv4_addr_key a4;
David Ahern5345c2e2015-08-27 16:07:02 -070030 struct in6_addr a6;
31 u32 key[INETPEER_MAXKEYSZ];
32 };
David S. Miller7a71ed82011-02-09 14:30:26 -080033 __u16 family;
David S. Miller8790ca12010-12-01 17:28:18 -080034};
David S. Miller582a72d2010-11-30 11:53:55 -080035
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000036struct inet_peer {
Eric Dumazetb1454252017-07-17 02:56:10 -070037 struct rb_node rb_node;
David S. Miller8790ca12010-12-01 17:28:18 -080038 struct inetpeer_addr daddr;
Eric Dumazet2b77bdd2011-06-08 23:31:27 -070039
40 u32 metrics[RTAX_MAX];
41 u32 rate_tokens; /* rate limiting for ICMP */
42 unsigned long rate_last;
Eric Dumazet317fe0e2010-06-16 04:52:13 +000043 /*
Reshetova, Elena1cc9a982017-06-30 13:07:54 +030044 * Once inet_peer is queued for deletion (refcnt == 0), following field
Eric Dumazet73f156a2014-06-02 05:26:03 -070045 * is not available: rid
David S. Miller60659822011-01-26 20:55:53 -080046 * We can share memory with rcu_head to help keep inet_peer small.
Eric Dumazet317fe0e2010-06-16 04:52:13 +000047 */
48 union {
49 struct {
David S. Millerddd4aa42011-02-09 15:36:47 -080050 atomic_t rid; /* Frag reception counter */
Eric Dumazet317fe0e2010-06-16 04:52:13 +000051 };
52 struct rcu_head rcu;
53 };
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 */
Reshetova, Elena1cc9a982017-06-30 13:07:54 +030057 refcount_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
David S. Millerc3426b42012-06-09 16:27:05 -070060struct inet_peer_base {
Eric Dumazetb1454252017-07-17 02:56:10 -070061 struct rb_root rb_root;
David S. Millerc3426b42012-06-09 16:27:05 -070062 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 Ahern192132b2015-08-27 16:07:03 -070074 iaddr->a4.addr = ip;
Eric Dumazet887dc9f2015-12-15 20:56:44 -080075 iaddr->a4.vif = 0;
David Ahern3abef282015-08-27 16:07:00 -070076 iaddr->family = AF_INET;
77}
78
79static inline __be32 inetpeer_get_addr_v4(struct inetpeer_addr *iaddr)
80{
David Ahern192132b2015-08-27 16:07:03 -070081 return iaddr->a4.addr;
David Ahern3abef282015-08-27 16:07:00 -070082}
83
84static inline void inetpeer_set_addr_v6(struct inetpeer_addr *iaddr,
85 struct in6_addr *in6)
86{
David Ahern5345c2e2015-08-27 16:07:02 -070087 iaddr->a6 = *in6;
David Ahern3abef282015-08-27 16:07:00 -070088 iaddr->family = AF_INET6;
89}
90
91static inline struct in6_addr *inetpeer_get_addr_v6(struct inetpeer_addr *iaddr)
92{
David Ahern5345c2e2015-08-27 16:07:02 -070093 return &iaddr->a6;
David Ahern3abef282015-08-27 16:07:00 -070094}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/* can be called with or without local BH being disabled */
David S. Millerc0efc882012-06-09 19:12:36 -070097struct inet_peer *inet_getpeer(struct inet_peer_base *base,
Gao fengc8a627e2012-06-08 01:20:41 +000098 const struct inetpeer_addr *daddr,
99 int create);
David S. Millerb534ecf2010-11-30 11:54:19 -0800100
David S. Millerc0efc882012-06-09 19:12:36 -0700101static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base,
Gao feng54db0cc2012-06-08 01:21:40 +0000102 __be32 v4daddr,
David Ahern192132b2015-08-27 16:07:03 -0700103 int vif, int create)
David S. Millerb534ecf2010-11-30 11:54:19 -0800104{
David S. Miller8790ca12010-12-01 17:28:18 -0800105 struct inetpeer_addr daddr;
David S. Millerb534ecf2010-11-30 11:54:19 -0800106
David Ahern192132b2015-08-27 16:07:03 -0700107 daddr.a4.addr = v4daddr;
108 daddr.a4.vif = vif;
David S. Millerb534ecf2010-11-30 11:54:19 -0800109 daddr.family = AF_INET;
David S. Millerc0efc882012-06-09 19:12:36 -0700110 return inet_getpeer(base, &daddr, create);
David S. Millerb534ecf2010-11-30 11:54:19 -0800111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
David S. Millerc0efc882012-06-09 19:12:36 -0700113static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base,
Gao feng54db0cc2012-06-08 01:21:40 +0000114 const struct in6_addr *v6daddr,
115 int create)
David S. Miller672f0072010-11-30 12:20:00 -0800116{
David S. Miller8790ca12010-12-01 17:28:18 -0800117 struct inetpeer_addr daddr;
David S. Miller672f0072010-11-30 12:20:00 -0800118
David Ahern5345c2e2015-08-27 16:07:02 -0700119 daddr.a6 = *v6daddr;
David S. Miller672f0072010-11-30 12:20:00 -0800120 daddr.family = AF_INET6;
David S. Millerc0efc882012-06-09 19:12:36 -0700121 return inet_getpeer(base, &daddr, create);
David S. Miller672f0072010-11-30 12:20:00 -0800122}
123
David Ahernd39d14f2015-08-27 16:07:01 -0700124static inline int inetpeer_addr_cmp(const struct inetpeer_addr *a,
125 const struct inetpeer_addr *b)
126{
David Ahern5345c2e2015-08-27 16:07:02 -0700127 int i, n;
128
129 if (a->family == AF_INET)
130 n = sizeof(a->a4) / sizeof(u32);
131 else
132 n = sizeof(a->a6) / sizeof(u32);
David Ahernd39d14f2015-08-27 16:07:01 -0700133
134 for (i = 0; i < n; i++) {
David Ahern5345c2e2015-08-27 16:07:02 -0700135 if (a->key[i] == b->key[i])
David Ahernd39d14f2015-08-27 16:07:01 -0700136 continue;
David Ahern5345c2e2015-08-27 16:07:02 -0700137 if (a->key[i] < b->key[i])
David Ahernd39d14f2015-08-27 16:07:01 -0700138 return -1;
139 return 1;
140 }
141
142 return 0;
143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* can be called from BH context or outside */
Joe Perches1fd51152013-09-21 10:22:41 -0700146void inet_putpeer(struct inet_peer *p);
147bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Joe Perches1fd51152013-09-21 10:22:41 -0700149void inetpeer_invalidate_tree(struct inet_peer_base *);
Steffen Klassert5faa5df2012-03-06 21:20:26 +0000150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#endif /* _NET_INETPEER_H */