#define pr_fmt(fmt) "IPVS: " fmt
#include <linux/interrupt.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/net.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/slab.h>
#include <linux/seq_file.h>
#include <linux/jhash.h>
#include <linux/random.h>
#include <linux/rcupdate_wait.h>
#include <net/net_namespace.h>
#include <net/ip_vs.h>
#ifndef CONFIG_IP_VS_TAB_BITS
#define CONFIG_IP_VS_TAB_BITS 12
#endif
static int ip_vs_conn_tab_bits = CONFIG_IP_VS_TAB_BITS;
module_param_named(conn_tab_bits, ip_vs_conn_tab_bits, int, 0444);
MODULE_PARM_DESC(conn_tab_bits, "Set connections' hash size");
int ip_vs_conn_tab_size __read_mostly;
static struct kmem_cache *ip_vs_conn_cachep __read_mostly;
#ifdef CONFIG_IP_VS_IPV6
#define IP_VS_ADDRSTRLEN INET6_ADDRSTRLEN
#else
#define IP_VS_ADDRSTRLEN (8+1)
#endif
static __always_inline void
conn_tab_lock(struct ip_vs_rht *t, struct ip_vs_rht *t2, struct ip_vs_conn *cp,
u32 hash_key, u32 hash_key2, bool use2, bool new_hash,
bool new_hash2, struct hlist_bl_head **head_ret,
struct hlist_bl_head **head2_ret)
{
struct hlist_bl_head *head, *head2;
u32 hash_key_new, hash_key_new2;
int idx = 0, idx2 = 0;
if (new_hash2 && use2 && t != t2)
idx2++;
if (!new_hash) {
retry:
if (!ip_vs_rht_same_table(t, hash_key)) {
t = rcu_dereference(t->new_tbl);
idx++;
}
}
if (use2 && !new_hash2 && !ip_vs_rht_same_table(t2, hash_key2)) {
t2 = rcu_dereference(t2->new_tbl);
idx2++;
}
if (!use2)
idx2 = idx;
head = t->buckets + (hash_key & t->mask);
head2 = use2 ? t2->buckets + (hash_key2 & t2->mask) : head;
if (idx > idx2 || (head > head2 && idx == idx2)) {
hlist_bl_lock(head2);
hlist_bl_lock(head);
} else {
hlist_bl_lock(head);
if (head != head2)
hlist_bl_lock(head2);
}
if (!new_hash) {
bool changed;
hash_key_new = READ_ONCE(cp->hn0.hash_key);
changed = hash_key != hash_key_new;
if (use2 && !new_hash2) {
hash_key_new2 = READ_ONCE(cp->hn1.hash_key);
changed |= hash_key2 != hash_key_new2;
} else {
hash_key_new2 = hash_key2;
}
if (changed) {
if (head != head2)
hlist_bl_unlock(head2);
hlist_bl_unlock(head);
hash_key = hash_key_new;
hash_key2 = hash_key_new2;
goto retry;
}
}
*head_ret = head;
*head2_ret = head2;
}
static inline void conn_tab_unlock(struct hlist_bl_head *head,
struct hlist_bl_head *head2)
{
if (head != head2)
hlist_bl_unlock(head2);
hlist_bl_unlock(head);
}
static void ip_vs_conn_expire(struct timer_list *t);
static u32 ip_vs_conn_hashkey(struct ip_vs_rht *t, int af, unsigned int proto,
const union nf_inet_addr *addr, __be16 port,
const union nf_inet_addr *laddr, __be16 lport)
{
u64 a = (u32)proto << 16 | (__force u32)port;
u64 d;
#ifdef CONFIG_IP_VS_IPV6
if (af == AF_INET6) {
u64 b = (u64)addr->all[0] << 32 | addr->all[1];
u64 c = (u64)addr->all[2] << 32 | addr->all[3];
a |= (u64)laddr->all[2] << 32 ^ (__force u32)lport;
c ^= laddr->all[1];
d = (u64)laddr->all[0] << 32 | laddr->all[3];
return (u32)siphash_4u64(a, b, c, d, &t->hash_key);
}
#endif
a |= (u64)addr->all[0] << 32;
d = (u64)laddr->all[0] << 32 | (__force u32)lport;
return (u32)siphash_2u64(a, d, &t->hash_key);
}
static unsigned int ip_vs_conn_hashkey_param(const struct ip_vs_conn_param *p,
struct ip_vs_rht *t, bool inverse)
{
const union nf_inet_addr *laddr;
const union nf_inet_addr *addr;
__be16 lport;
__be16 port;
if (p->pe_data && p->pe->hashkey_raw)
return p->pe->hashkey_raw(p, t, inverse);
if (likely(!inverse)) {
addr = p->caddr;
port = p->cport;
laddr = p->vaddr;
lport = p->vport;
} else {
addr = p->vaddr;
port = p->vport;
laddr = p->caddr;
lport = p->cport;
}
return ip_vs_conn_hashkey(t, p->af, p->protocol, addr, port, laddr,
lport);
}
static unsigned int ip_vs_conn_hashkey_conn(struct ip_vs_rht *t,
const struct ip_vs_conn *cp,
bool out)
{
struct ip_vs_conn_param p;
if (!out)
ip_vs_conn_fill_param(cp->ipvs, cp->af, cp->protocol,
&cp->caddr, cp->cport, &cp->vaddr,
cp->vport, &p);
else
ip_vs_conn_fill_param(cp->ipvs, cp->af, cp->protocol,
&cp->daddr, cp->dport, &cp->caddr,
cp->cport, &p);
if (cp->pe) {
p.pe = cp->pe;
p.pe_data = cp->pe_data;
p.pe_data_len = cp->pe_data_len;
}
return ip_vs_conn_hashkey_param(&p, t, out);
}
static inline int ip_vs_conn_hash(struct ip_vs_conn *cp)
{
struct netns_ipvs *ipvs = cp->ipvs;
struct hlist_bl_head *head, *head2;
u32 hash_key, hash_key2;
struct ip_vs_rht *t;
u32 hash, hash2;
bool use2;
int ret;
if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
return 0;
t = rcu_dereference(ipvs->conn_tab);
t = rcu_dereference(t->new_tbl);
hash = ip_vs_conn_hashkey_conn(t, cp, false);
hash_key = ip_vs_rht_build_hash_key(t, hash);
if (ip_vs_conn_use_hash2(cp)) {
hash2 = ip_vs_conn_hashkey_conn(t, cp, true);
hash_key2 = ip_vs_rht_build_hash_key(t, hash2);
use2 = true;
} else {
hash_key2 = hash_key;
use2 = false;
}
local_bh_disable();
conn_tab_lock(t, t, cp, hash_key, hash_key2, use2, true ,
true , &head, &head2);
cp->flags |= IP_VS_CONN_F_HASHED;
WRITE_ONCE(cp->hn0.hash_key, hash_key);
WRITE_ONCE(cp->hn1.hash_key, hash_key2);
refcount_inc(&cp->refcnt);
hlist_bl_add_head_rcu(&cp->hn0.node, head);
if (use2)
hlist_bl_add_head_rcu(&cp->hn1.node, head2);
conn_tab_unlock(head, head2);
local_bh_enable();
ret = 1;
if (atomic_read(&ipvs->conn_count) > t->u_thresh &&
!test_and_set_bit(IP_VS_WORK_CONN_RESIZE, &ipvs->work_flags))
mod_delayed_work(system_dfl_long_wq, &ipvs->conn_resize_work, 0);
return ret;
}
static inline bool ip_vs_conn_unlink(struct ip_vs_conn *cp)
{
struct netns_ipvs *ipvs = cp->ipvs;
struct hlist_bl_head *head, *head2;
u32 hash_key, hash_key2;
struct ip_vs_rht *t;
bool ret = false;
bool use2;
if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
return refcount_dec_if_one(&cp->refcnt);
rcu_read_lock();
local_bh_disable();
t = rcu_dereference(ipvs->conn_tab);
hash_key = READ_ONCE(cp->hn0.hash_key);
hash_key2 = READ_ONCE(cp->hn1.hash_key);
use2 = ip_vs_conn_use_hash2(cp);
conn_tab_lock(t, t, cp, hash_key, hash_key2, use2, false ,
false , &head, &head2);
if (cp->flags & IP_VS_CONN_F_HASHED) {
if (use2 == ip_vs_conn_use_hash2(cp) &&
refcount_dec_if_one(&cp->refcnt)) {
hlist_bl_del_rcu(&cp->hn0.node);
if (use2)
hlist_bl_del_rcu(&cp->hn1.node);
cp->flags &= ~IP_VS_CONN_F_HASHED;
ret = true;
}
}
conn_tab_unlock(head, head2);
local_bh_enable();
rcu_read_unlock();
return ret;
}
static inline struct ip_vs_conn *
__ip_vs_conn_in_get(const struct ip_vs_conn_param *p)
{
DECLARE_IP_VS_RHT_WALK_BUCKET_RCU();
struct netns_ipvs *ipvs = p->ipvs;
struct ip_vs_conn_hnode *hn;
struct hlist_bl_head *head;
struct ip_vs_rht *t, *pt;
struct hlist_bl_node *e;
struct ip_vs_conn *cp;
u32 hash, hash_key;
rcu_read_lock();
ip_vs_rht_for_each_table_rcu(ipvs->conn_tab, t, pt) {
hash = ip_vs_conn_hashkey_param(p, t, false);
hash_key = ip_vs_rht_build_hash_key(t, hash);
ip_vs_rht_walk_bucket_rcu(t, hash_key, head) {
hlist_bl_for_each_entry_rcu(hn, e, head, node) {
if (READ_ONCE(hn->hash_key) != hash_key ||
hn->dir != 0)
continue;
cp = ip_vs_hn0_to_conn(hn);
if (p->cport == cp->cport &&
p->vport == cp->vport && cp->af == p->af &&
ip_vs_addr_equal(p->af, p->caddr,
&cp->caddr) &&
ip_vs_addr_equal(p->af, p->vaddr,
&cp->vaddr) &&
(!p->cport ^
(!(cp->flags & IP_VS_CONN_F_NO_CPORT))) &&
p->protocol == cp->protocol) {
if (__ip_vs_conn_get(cp)) {
rcu_read_unlock();
return cp;
}
}
}
}
}
rcu_read_unlock();
return NULL;
}
struct ip_vs_conn *ip_vs_conn_in_get(const struct ip_vs_conn_param *p)
{
struct ip_vs_conn *cp;
cp = __ip_vs_conn_in_get(p);
if (!cp) {
struct netns_ipvs *ipvs = p->ipvs;
int af_id = ip_vs_af_index(p->af);
if (atomic_read(&ipvs->no_cport_conns[af_id])) {
struct ip_vs_conn_param cport_zero_p = *p;
cport_zero_p.cport = 0;
cp = __ip_vs_conn_in_get(&cport_zero_p);
}
}
IP_VS_DBG_BUF(9, "lookup/in %s %s:%d->%s:%d %s\n",
ip_vs_proto_name(p->protocol),
IP_VS_DBG_ADDR(p->af, p->caddr), ntohs(p->cport),
IP_VS_DBG_ADDR(p->af, p->vaddr), ntohs(p->vport),
cp ? "hit" : "not hit");
return cp;
}
static int
ip_vs_conn_fill_param_proto(struct netns_ipvs *ipvs,
int af, const struct sk_buff *skb,
const struct ip_vs_iphdr *iph,
struct ip_vs_conn_param *p)
{
__be16 _ports[2], *pptr;
pptr = frag_safe_skb_hp(skb, iph->len, sizeof(_ports), _ports);
if (pptr == NULL)
return 1;
if (likely(!ip_vs_iph_inverse(iph)))
ip_vs_conn_fill_param(ipvs, af, iph->protocol, &iph->saddr,
pptr[0], &iph->daddr, pptr[1], p);
else
ip_vs_conn_fill_param(ipvs, af, iph->protocol, &iph->daddr,
pptr[1], &iph->saddr, pptr[0], p);
return 0;
}
struct ip_vs_conn *
ip_vs_conn_in_get_proto(struct netns_ipvs *ipvs, int af,
const struct sk_buff *skb,
const struct ip_vs_iphdr *iph)
{
struct ip_vs_conn_param p;
if (ip_vs_conn_fill_param_proto(ipvs, af, skb, iph, &p))
return NULL;
return ip_vs_conn_in_get(&p);
}
EXPORT_SYMBOL_GPL(ip_vs_conn_in_get_proto);
struct ip_vs_conn *ip_vs_ct_in_get(const struct ip_vs_conn_param *p)
{
DECLARE_IP_VS_RHT_WALK_BUCKET_RCU();
struct netns_ipvs *ipvs = p->ipvs;
struct ip_vs_conn_hnode *hn;
struct hlist_bl_head *head;
struct ip_vs_rht *t, *pt;
struct hlist_bl_node *e;
struct ip_vs_conn *cp;
u32 hash, hash_key;
rcu_read_lock();
ip_vs_rht_for_each_table_rcu(ipvs->conn_tab, t, pt) {
hash = ip_vs_conn_hashkey_param(p, t, false);
hash_key = ip_vs_rht_build_hash_key(t, hash);
ip_vs_rht_walk_bucket_rcu(t, hash_key, head) {
hlist_bl_for_each_entry_rcu(hn, e, head, node) {
if (READ_ONCE(hn->hash_key) != hash_key ||
hn->dir != 0)
continue;
cp = ip_vs_hn0_to_conn(hn);
if (unlikely(p->pe_data && p->pe->ct_match)) {
if (p->pe == cp->pe &&
p->pe->ct_match(p, cp) &&
__ip_vs_conn_get(cp))
goto out;
continue;
}
if (cp->af == p->af &&
ip_vs_addr_equal(p->af, p->caddr,
&cp->caddr) &&
ip_vs_addr_equal(p->protocol == IPPROTO_IP ?
AF_UNSPEC : p->af,
p->vaddr, &cp->vaddr) &&
p->vport == cp->vport &&
p->cport == cp->cport &&
cp->flags & IP_VS_CONN_F_TEMPLATE &&
p->protocol == cp->protocol &&
cp->dport != htons(0xffff)) {
if (__ip_vs_conn_get(cp))
goto out;
}
}
}
}
cp = NULL;
out:
rcu_read_unlock();
IP_VS_DBG_BUF(9, "template lookup/in %s %s:%d->%s:%d %s\n",
ip_vs_proto_name(p->protocol),
IP_VS_DBG_ADDR(p->af, p->caddr), ntohs(p->cport),
IP_VS_DBG_ADDR(p->af, p->vaddr), ntohs(p->vport),
cp ? "hit" : "not hit");
return cp;
}
struct ip_vs_conn *ip_vs_conn_out_get(const struct ip_vs_conn_param *p)
{
DECLARE_IP_VS_RHT_WALK_BUCKET_RCU();
struct netns_ipvs *ipvs = p->ipvs;
const union nf_inet_addr *saddr;
struct ip_vs_conn_hnode *hn;
struct hlist_bl_head *head;
struct ip_vs_rht *t, *pt;
struct hlist_bl_node *e;
struct ip_vs_conn *cp;
u32 hash, hash_key;
__be16 sport;
rcu_read_lock();
ip_vs_rht_for_each_table_rcu(ipvs->conn_tab, t, pt) {
hash = ip_vs_conn_hashkey_param(p, t, true);
hash_key = ip_vs_rht_build_hash_key(t, hash);
ip_vs_rht_walk_bucket_rcu(t, hash_key, head) {
hlist_bl_for_each_entry_rcu(hn, e, head, node) {
if (READ_ONCE(hn->hash_key) != hash_key)
continue;
cp = ip_vs_hn_to_conn(hn);
if (p->vport != cp->cport)
continue;
if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
sport = cp->vport;
saddr = &cp->vaddr;
} else {
sport = cp->dport;
saddr = &cp->daddr;
}
if (p->cport == sport && cp->af == p->af &&
ip_vs_addr_equal(p->af, p->vaddr,
&cp->caddr) &&
ip_vs_addr_equal(p->af, p->caddr, saddr) &&
p->protocol == cp->protocol) {
if (__ip_vs_conn_get(cp))
goto out;
}
}
}
}
cp = NULL;
out:
rcu_read_unlock();
IP_VS_DBG_BUF(9, "lookup/out %s %s:%d->%s:%d %s\n",
ip_vs_proto_name(p->protocol),
IP_VS_DBG_ADDR(p->af, p->caddr), ntohs(p->cport),
IP_VS_DBG_ADDR(p->af, p->vaddr), ntohs(p->vport),
cp ? "hit" : "not hit");
return cp;
}
struct ip_vs_conn *
ip_vs_conn_out_get_proto(struct netns_ipvs *ipvs, int af,
const struct sk_buff *skb,
const struct ip_vs_iphdr *iph)
{
struct ip_vs_conn_param p;
if (ip_vs_conn_fill_param_proto(ipvs, af, skb, iph, &p))
return NULL;
return ip_vs_conn_out_get(&p);
}
EXPORT_SYMBOL_GPL(ip_vs_conn_out_get_proto);
static void __ip_vs_conn_put_timer(struct ip_vs_conn *cp)
{
unsigned long t = (cp->flags & IP_VS_CONN_F_ONE_PACKET) ?
0 : cp->timeout;
mod_timer(&cp->timer, jiffies+t);
__ip_vs_conn_put(cp);
}
void ip_vs_conn_put(struct ip_vs_conn *cp)
{
if ((cp->flags & IP_VS_CONN_F_ONE_PACKET) &&
(refcount_read(&cp->refcnt) == 1) &&
!timer_pending(&cp->timer))
ip_vs_conn_expire(&cp->timer);
else
__ip_vs_conn_put_timer(cp);
}
void ip_vs_conn_fill_cport(struct ip_vs_conn *cp, __be16 cport)
{
struct hlist_bl_head *head, *head2, *head_new;
bool use2 = ip_vs_conn_use_hash2(cp);
struct netns_ipvs *ipvs = cp->ipvs;
int af_id = ip_vs_af_index(cp->af);
u32 hash_r = 0, hash_key_r = 0;
struct ip_vs_rht *t, *tp, *t2;
struct ip_vs_conn_hnode *hn;
u32 hash_key, hash_key_new;
struct ip_vs_conn_param p;
bool by_me = false;
int ntbl;
int dir;
restart:
dir = use2 ? 1 : 0;
next_dir:
if (dir)
ip_vs_conn_fill_param(ipvs, cp->af, cp->protocol, &cp->daddr,
cp->dport, &cp->caddr, cport, &p);
else
ip_vs_conn_fill_param(ipvs, cp->af, cp->protocol, &cp->caddr,
cport, &cp->vaddr, cp->vport, &p);
hn = dir ? &cp->hn1 : &cp->hn0;
ntbl = 0;
t = rcu_dereference(ipvs->conn_tab);
hash_key = READ_ONCE(hn->hash_key);
tp = NULL;
retry:
if (!ip_vs_rht_same_table(t, hash_key)) {
t = rcu_dereference(t->new_tbl);
ntbl++;
if (ntbl >= 2) {
spin_lock_bh(&cp->lock);
if (cp->flags & IP_VS_CONN_F_NO_CPORT && by_me)
cp->cport = 0;
spin_unlock_bh(&cp->lock);
IP_VS_ERR_RL("%s(): Too many ht changes for dir %d\n",
__func__, dir);
return;
}
}
t2 = rcu_dereference(t->new_tbl);
if (tp != t2) {
hash_r = ip_vs_conn_hashkey_param(&p, t2, dir);
hash_key_r = ip_vs_rht_build_hash_key(t2, hash_r);
tp = t2;
}
head = t->buckets + (hash_key & t->mask);
head2 = t2->buckets + (hash_key_r & t2->mask);
head_new = head2;
if (head > head2 && t == t2)
swap(head, head2);
spin_lock_bh(&cp->lock);
if (use2 != ip_vs_conn_use_hash2(cp)) {
use2 = !use2;
if (use2) {
spin_unlock_bh(&cp->lock);
goto restart;
}
if (dir) {
spin_unlock_bh(&cp->lock);
dir--;
goto next_dir;
}
}
spin_lock(&t->lock[hash_key & t->lock_mask].l);
preempt_disable_nested();
write_seqcount_begin(&t->seqc[hash_key & t->seqc_mask]);
hlist_bl_lock(head);
if (head != head2)
hlist_bl_lock(head2);
hash_key_new = READ_ONCE(hn->hash_key);
if (unlikely(hash_key != hash_key_new)) {
if (head != head2)
hlist_bl_unlock(head2);
hlist_bl_unlock(head);
write_seqcount_end(&t->seqc[hash_key & t->seqc_mask]);
preempt_enable_nested();
spin_unlock(&t->lock[hash_key & t->lock_mask].l);
spin_unlock_bh(&cp->lock);
hash_key = hash_key_new;
goto retry;
}
if (cp->flags & IP_VS_CONN_F_NO_CPORT && (!cp->cport || by_me)) {
if (!cp->cport) {
cp->cport = cport;
by_me = true;
}
if (!dir) {
atomic_dec(&ipvs->no_cport_conns[af_id]);
cp->flags &= ~IP_VS_CONN_F_NO_CPORT;
}
WRITE_ONCE(hn->hash_key, hash_key_r);
if (!use2)
WRITE_ONCE(cp->hn1.hash_key, hash_key_r);
if (head != head2) {
hlist_bl_del_rcu(&hn->node);
hlist_bl_add_head_rcu(&hn->node, head_new);
}
}
if (head != head2)
hlist_bl_unlock(head2);
hlist_bl_unlock(head);
write_seqcount_end(&t->seqc[hash_key & t->seqc_mask]);
preempt_enable_nested();
spin_unlock(&t->lock[hash_key & t->lock_mask].l);
spin_unlock_bh(&cp->lock);
if (dir-- && by_me)
goto next_dir;
}
static void ip_vs_conn_change_fwd_mask(struct ip_vs_conn *cp, u32 new_flags)
{
struct netns_ipvs *ipvs = cp->ipvs;
struct hlist_bl_head *head, *head2;
u32 hash2, hash_key, hash_key2;
struct ip_vs_rht *t, *t2;
if ((cp->flags & IP_VS_CONN_F_TEMPLATE) ||
(IP_VS_FWD_METHOD(cp) == IP_VS_CONN_F_MASQ) ==
((new_flags & IP_VS_CONN_F_FWD_MASK) == IP_VS_CONN_F_MASQ)) {
cp->flags = new_flags;
return;
}
t = rcu_dereference(ipvs->conn_tab);
if (ip_vs_conn_use_hash2(cp)) {
hash_key = READ_ONCE(cp->hn0.hash_key);
hash_key2 = READ_ONCE(cp->hn1.hash_key);
conn_tab_lock(t, t, cp, hash_key, hash_key2, true ,
false , false ,
&head, &head2);
hash_key = READ_ONCE(cp->hn0.hash_key);
WRITE_ONCE(cp->hn1.hash_key, hash_key);
hlist_bl_del_rcu(&cp->hn1.node);
cp->flags = new_flags;
conn_tab_unlock(head, head2);
} else {
hash_key = READ_ONCE(cp->hn0.hash_key);
t2 = rcu_dereference(t->new_tbl);
hash2 = ip_vs_conn_hashkey_conn(t2, cp, true);
hash_key2 = ip_vs_rht_build_hash_key(t2, hash2);
conn_tab_lock(t, t2, cp, hash_key, hash_key2, true ,
false , true ,
&head, &head2);
WRITE_ONCE(cp->hn1.hash_key, hash_key2);
cp->flags = new_flags;
hlist_bl_add_head_rcu(&cp->hn1.node, head2);
conn_tab_unlock(head, head2);
}
}
static int ip_vs_conn_default_load_factor(struct netns_ipvs *ipvs)
{
int factor;
if (net_eq(ipvs->net, &init_net))
factor = -3;
else
factor = -1;
factor--;
return factor;
}
int ip_vs_conn_desired_size(struct netns_ipvs *ipvs, struct ip_vs_rht *t,
int lfactor)
{
return ip_vs_rht_desired_size(ipvs, t, atomic_read(&ipvs->conn_count),
lfactor, IP_VS_CONN_TAB_MIN_BITS,
ip_vs_conn_tab_bits);
}
struct ip_vs_rht *ip_vs_conn_tab_alloc(struct netns_ipvs *ipvs, int buckets,
int lfactor)
{
struct ip_vs_rht *t;
int scounts, locks;
scounts = clamp(buckets >> 6, 1, 256);
locks = clamp(8, 1, scounts);
t = ip_vs_rht_alloc(buckets, scounts, locks);
if (!t)
return NULL;
t->lfactor = lfactor;
ip_vs_rht_set_thresholds(t, t->size, lfactor, IP_VS_CONN_TAB_MIN_BITS,
ip_vs_conn_tab_bits);
return t;
}
static void conn_resize_work_handler(struct work_struct *work)
{
struct hlist_bl_head *head, *head2;
unsigned int resched_score = 0;
struct hlist_bl_node *cn, *nn;
struct ip_vs_rht *t, *t_new;
struct ip_vs_conn_hnode *hn;
struct netns_ipvs *ipvs;
struct ip_vs_conn *cp;
bool more_work = false;
u32 hash, hash_key;
int limit = 0;
int new_size;
int lfactor;
u32 bucket;
ipvs = container_of(work, struct netns_ipvs, conn_resize_work.work);
clear_bit(IP_VS_WORK_CONN_RESIZE, &ipvs->work_flags);
t = rcu_dereference_protected(ipvs->conn_tab, 1);
if (!t)
goto out;
if (t != rcu_dereference_protected(t->new_tbl, 1))
goto out;
lfactor = sysctl_conn_lfactor(ipvs);
new_size = ip_vs_conn_desired_size(ipvs, t, lfactor);
if (new_size == t->size && lfactor == t->lfactor)
goto out;
t_new = ip_vs_conn_tab_alloc(ipvs, new_size, lfactor);
if (!t_new) {
more_work = true;
goto out;
}
t_new->table_id = t->table_id ^ IP_VS_RHT_TABLE_ID_MASK;
rcu_assign_pointer(t->new_tbl, t_new);
synchronize_rcu();
ip_vs_rht_for_each_bucket(t, bucket, head) {
same_bucket:
if (++limit >= 16) {
if (resched_score >= 100) {
resched_score = 0;
cond_resched();
}
limit = 0;
}
if (hlist_bl_empty(head)) {
resched_score++;
continue;
}
resched_score = 0;
spin_lock_bh(&t->lock[bucket & t->lock_mask].l);
preempt_disable_nested();
write_seqcount_begin(&t->seqc[bucket & t->seqc_mask]);
hlist_bl_lock(head);
hlist_bl_for_each_entry_safe(hn, cn, nn, head, node) {
cp = ip_vs_hn_to_conn(hn);
hash = ip_vs_conn_hashkey_conn(t_new, cp, hn->dir);
hash_key = ip_vs_rht_build_hash_key(t_new, hash);
head2 = t_new->buckets + (hash & t_new->mask);
hlist_bl_lock(head2);
hlist_bl_del_rcu(&hn->node);
WRITE_ONCE(hn->hash_key, hash_key);
if (!ip_vs_conn_use_hash2(cp))
WRITE_ONCE(cp->hn1.hash_key, hash_key);
hlist_bl_add_head_rcu(&hn->node, head2);
hlist_bl_unlock(head2);
if (++limit >= 64)
break;
}
hlist_bl_unlock(head);
write_seqcount_end(&t->seqc[bucket & t->seqc_mask]);
preempt_enable_nested();
spin_unlock_bh(&t->lock[bucket & t->lock_mask].l);
if (limit >= 64)
goto same_bucket;
}
rcu_assign_pointer(ipvs->conn_tab, t_new);
smp_mb__before_atomic();
atomic_inc(&ipvs->conn_tab_changes);
synchronize_rcu();
ip_vs_rht_free(t);
out:
queue_delayed_work(system_dfl_long_wq, &ipvs->conn_resize_work,
more_work ? 1 : 2 * HZ);
}
static inline void ip_vs_bind_xmit(struct ip_vs_conn *cp)
{
switch (IP_VS_FWD_METHOD(cp)) {
case IP_VS_CONN_F_MASQ:
cp->packet_xmit = ip_vs_nat_xmit;
break;
case IP_VS_CONN_F_TUNNEL:
#ifdef CONFIG_IP_VS_IPV6
if (cp->daf == AF_INET6)
cp->packet_xmit = ip_vs_tunnel_xmit_v6;
else
#endif
cp->packet_xmit = ip_vs_tunnel_xmit;
break;
case IP_VS_CONN_F_DROUTE:
cp->packet_xmit = ip_vs_dr_xmit;
break;
case IP_VS_CONN_F_LOCALNODE:
cp->packet_xmit = ip_vs_null_xmit;
break;
case IP_VS_CONN_F_BYPASS:
cp->packet_xmit = ip_vs_bypass_xmit;
break;
}
}
#ifdef CONFIG_IP_VS_IPV6
static inline void ip_vs_bind_xmit_v6(struct ip_vs_conn *cp)
{
switch (IP_VS_FWD_METHOD(cp)) {
case IP_VS_CONN_F_MASQ:
cp->packet_xmit = ip_vs_nat_xmit_v6;
break;
case IP_VS_CONN_F_TUNNEL:
if (cp->daf == AF_INET6)
cp->packet_xmit = ip_vs_tunnel_xmit_v6;
else
cp->packet_xmit = ip_vs_tunnel_xmit;
break;
case IP_VS_CONN_F_DROUTE:
cp->packet_xmit = ip_vs_dr_xmit_v6;
break;
case IP_VS_CONN_F_LOCALNODE:
cp->packet_xmit = ip_vs_null_xmit;
break;
case IP_VS_CONN_F_BYPASS:
cp->packet_xmit = ip_vs_bypass_xmit_v6;
break;
}
}
#endif
static inline int ip_vs_dest_totalconns(struct ip_vs_dest *dest)
{
return atomic_read(&dest->activeconns)
+ atomic_read(&dest->inactconns);
}
static inline void
ip_vs_bind_dest(struct ip_vs_conn *cp, struct ip_vs_dest *dest)
{
unsigned int conn_flags;
__u32 flags;
if (!dest)
return;
ip_vs_dest_hold(dest);
conn_flags = atomic_read(&dest->conn_flags);
if (cp->protocol != IPPROTO_UDP)
conn_flags &= ~IP_VS_CONN_F_ONE_PACKET;
flags = cp->flags;
if (flags & IP_VS_CONN_F_SYNC) {
conn_flags &= ~IP_VS_CONN_F_ONE_PACKET;
if (!(flags & IP_VS_CONN_F_TEMPLATE))
conn_flags &= ~IP_VS_CONN_F_INACTIVE;
flags &= ~(IP_VS_CONN_F_FWD_MASK | IP_VS_CONN_F_NOOUTPUT);
flags |= conn_flags;
if (cp->flags & IP_VS_CONN_F_HASHED)
ip_vs_conn_change_fwd_mask(cp, flags);
else
cp->flags = flags;
} else {
flags |= conn_flags;
cp->flags = flags;
}
cp->dest = dest;
IP_VS_DBG_BUF(7, "Bind-dest %s c:%s:%d v:%s:%d "
"d:%s:%d fwd:%c s:%u conn->flags:%X conn->refcnt:%d "
"dest->refcnt:%d\n",
ip_vs_proto_name(cp->protocol),
IP_VS_DBG_ADDR(cp->af, &cp->caddr), ntohs(cp->cport),
IP_VS_DBG_ADDR(cp->af, &cp->vaddr), ntohs(cp->vport),
IP_VS_DBG_ADDR(cp->daf, &cp->daddr), ntohs(cp->dport),
ip_vs_fwd_tag(cp), cp->state,
cp->flags, refcount_read(&cp->refcnt),
refcount_read(&dest->refcnt));
if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
if (!(flags & IP_VS_CONN_F_INACTIVE))
atomic_inc(&dest->activeconns);
else
atomic_inc(&dest->inactconns);
} else {
atomic_inc(&dest->persistconns);
}
if (dest->u_threshold != 0 &&
ip_vs_dest_totalconns(dest) >= dest->u_threshold)
dest->flags |= IP_VS_DEST_F_OVERLOAD;
}
void ip_vs_try_bind_dest(struct ip_vs_conn *cp)
{
struct ip_vs_dest *dest;
rcu_read_lock();
dest = ip_vs_find_dest(cp->ipvs, cp->af, cp->af, &cp->daddr,
cp->dport, &cp->vaddr, cp->vport,
cp->protocol, cp->fwmark, cp->flags);
if (dest) {
struct ip_vs_proto_data *pd;
spin_lock_bh(&cp->lock);
if (cp->dest) {
spin_unlock_bh(&cp->lock);
rcu_read_unlock();
return;
}
if (cp->app)
ip_vs_unbind_app(cp);
ip_vs_bind_dest(cp, dest);
spin_unlock_bh(&cp->lock);
cp->packet_xmit = NULL;
#ifdef CONFIG_IP_VS_IPV6
if (cp->af == AF_INET6)
ip_vs_bind_xmit_v6(cp);
else
#endif
ip_vs_bind_xmit(cp);
pd = ip_vs_proto_data_get(cp->ipvs, cp->protocol);
if (pd && atomic_read(&pd->appcnt))
ip_vs_bind_app(cp, pd->pp);
}
rcu_read_unlock();
}
static inline void ip_vs_unbind_dest(struct ip_vs_conn *cp)
{
struct ip_vs_dest *dest = cp->dest;
if (!dest)
return;
IP_VS_DBG_BUF(7, "Unbind-dest %s c:%s:%d v:%s:%d "
"d:%s:%d fwd:%c s:%u conn->flags:%X conn->refcnt:%d "
"dest->refcnt:%d\n",
ip_vs_proto_name(cp->protocol),
IP_VS_DBG_ADDR(cp->af, &cp->caddr), ntohs(cp->cport),
IP_VS_DBG_ADDR(cp->af, &cp->vaddr), ntohs(cp->vport),
IP_VS_DBG_ADDR(cp->daf, &cp->daddr), ntohs(cp->dport),
ip_vs_fwd_tag(cp), cp->state,
cp->flags, refcount_read(&cp->refcnt),
refcount_read(&dest->refcnt));
if (!(cp->flags & IP_VS_CONN_F_TEMPLATE)) {
if (cp->flags & IP_VS_CONN_F_INACTIVE) {
atomic_dec(&dest->inactconns);
} else {
atomic_dec(&dest->activeconns);
}
} else {
atomic_dec(&dest->persistconns);
}
if (dest->l_threshold != 0) {
if (ip_vs_dest_totalconns(dest) < dest->l_threshold)
dest->flags &= ~IP_VS_DEST_F_OVERLOAD;
} else if (dest->u_threshold != 0) {
if (ip_vs_dest_totalconns(dest) * 4 < dest->u_threshold * 3)
dest->flags &= ~IP_VS_DEST_F_OVERLOAD;
} else {
if (dest->flags & IP_VS_DEST_F_OVERLOAD)
dest->flags &= ~IP_VS_DEST_F_OVERLOAD;
}
ip_vs_dest_put(dest);
}
static int expire_quiescent_template(struct netns_ipvs *ipvs,
struct ip_vs_dest *dest)
{
#ifdef CONFIG_SYSCTL
return ipvs->sysctl_expire_quiescent_template &&
(atomic_read(&dest->weight) == 0);
#else
return 0;
#endif
}
int ip_vs_check_template(struct ip_vs_conn *ct, struct ip_vs_dest *cdest)
{
struct ip_vs_dest *dest = ct->dest;
struct netns_ipvs *ipvs = ct->ipvs;
if ((dest == NULL) ||
!(dest->flags & IP_VS_DEST_F_AVAILABLE) ||
expire_quiescent_template(ipvs, dest) ||
(cdest && (dest != cdest))) {
IP_VS_DBG_BUF(9, "check_template: dest not available for "
"protocol %s s:%s:%d v:%s:%d "
"-> d:%s:%d\n",
ip_vs_proto_name(ct->protocol),
IP_VS_DBG_ADDR(ct->af, &ct->caddr),
ntohs(ct->cport),
IP_VS_DBG_ADDR(ct->af, &ct->vaddr),
ntohs(ct->vport),
IP_VS_DBG_ADDR(ct->daf, &ct->daddr),
ntohs(ct->dport));
ct->dport = htons(0xffff);
__ip_vs_conn_put(ct);
return 0;
}
return 1;
}
static void ip_vs_conn_rcu_free(struct rcu_head *head)
{
struct ip_vs_conn *cp = container_of(head, struct ip_vs_conn,
rcu_head);
ip_vs_pe_put(cp->pe);
kfree(cp->pe_data);
kmem_cache_free(ip_vs_conn_cachep, cp);
}
static void ip_vs_conn_del(struct ip_vs_conn *cp)
{
if (timer_delete(&cp->timer)) {
if (cp->control)
cp->timeout = 0;
ip_vs_conn_expire(&cp->timer);
}
}
static void ip_vs_conn_del_put(struct ip_vs_conn *cp)
{
if (timer_delete(&cp->timer)) {
if (cp->control)
cp->timeout = 0;
__ip_vs_conn_put(cp);
ip_vs_conn_expire(&cp->timer);
} else {
__ip_vs_conn_put(cp);
}
}
static void ip_vs_conn_expire(struct timer_list *t)
{
struct ip_vs_conn *cp = timer_container_of(cp, t, timer);
struct netns_ipvs *ipvs = cp->ipvs;
if (atomic_read(&cp->n_control))
goto expire_later;
if (likely(ip_vs_conn_unlink(cp))) {
struct ip_vs_conn *ct = cp->control;
timer_delete(&cp->timer);
if (ct) {
bool has_ref = !cp->timeout && __ip_vs_conn_get(ct);
ip_vs_control_del(cp);
if (has_ref && !atomic_read(&ct->n_control) &&
(!(ct->flags & IP_VS_CONN_F_TEMPLATE) ||
!(ct->state & IP_VS_CTPL_S_ASSURED))) {
IP_VS_DBG(4, "drop controlling connection\n");
ip_vs_conn_del_put(ct);
} else if (has_ref) {
__ip_vs_conn_put(ct);
}
}
if ((cp->flags & IP_VS_CONN_F_NFCT) &&
!(cp->flags & IP_VS_CONN_F_ONE_PACKET)) {
smp_rmb();
if (READ_ONCE(ipvs->enable))
ip_vs_conn_drop_conntrack(cp);
}
if (unlikely(cp->app != NULL))
ip_vs_unbind_app(cp);
ip_vs_unbind_dest(cp);
if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT)) {
int af_id = ip_vs_af_index(cp->af);
atomic_dec(&ipvs->no_cport_conns[af_id]);
}
if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
ip_vs_conn_rcu_free(&cp->rcu_head);
else
call_rcu(&cp->rcu_head, ip_vs_conn_rcu_free);
atomic_dec(&ipvs->conn_count);
return;
}
expire_later:
IP_VS_DBG(7, "delayed: conn->refcnt=%d conn->n_control=%d\n",
refcount_read(&cp->refcnt),
atomic_read(&cp->n_control));
refcount_inc(&cp->refcnt);
cp->timeout = 60*HZ;
if (ipvs->sync_state & IP_VS_STATE_MASTER)
ip_vs_sync_conn(ipvs, cp, sysctl_sync_threshold(ipvs));
__ip_vs_conn_put_timer(cp);
}
void ip_vs_conn_expire_now(struct ip_vs_conn *cp)
{
if (timer_pending(&cp->timer) &&
time_after(cp->timer.expires, jiffies))
mod_timer_pending(&cp->timer, jiffies);
}
struct ip_vs_conn *
ip_vs_conn_new(const struct ip_vs_conn_param *p, int dest_af,
const union nf_inet_addr *daddr, __be16 dport, unsigned int flags,
struct ip_vs_dest *dest, __u32 fwmark)
{
struct ip_vs_conn *cp;
struct netns_ipvs *ipvs = p->ipvs;
struct ip_vs_proto_data *pd = ip_vs_proto_data_get(p->ipvs,
p->protocol);
int count = atomic_read(&ipvs->conn_count);
int max = sysctl_conn_max(ipvs);
do {
if (count >= max)
return NULL;
} while (!atomic_try_cmpxchg(&ipvs->conn_count, &count, count + 1));
cp = kmem_cache_alloc(ip_vs_conn_cachep, GFP_ATOMIC);
if (cp == NULL) {
atomic_dec(&ipvs->conn_count);
IP_VS_ERR_RL("%s(): no memory\n", __func__);
return NULL;
}
INIT_HLIST_BL_NODE(&cp->hn0.node);
INIT_HLIST_BL_NODE(&cp->hn1.node);
timer_setup(&cp->timer, ip_vs_conn_expire, 0);
cp->ipvs = ipvs;
cp->hn0.dir = 0;
cp->af = p->af;
cp->hn1.dir = 1;
cp->daf = dest_af;
cp->protocol = p->protocol;
ip_vs_addr_set(p->af, &cp->caddr, p->caddr);
cp->cport = p->cport;
ip_vs_addr_set(p->protocol == IPPROTO_IP ? AF_UNSPEC : p->af,
&cp->vaddr, p->vaddr);
cp->vport = p->vport;
ip_vs_addr_set(cp->daf, &cp->daddr, daddr);
cp->dport = dport;
cp->flags = flags;
cp->fwmark = fwmark;
if (flags & IP_VS_CONN_F_TEMPLATE && p->pe) {
ip_vs_pe_get(p->pe);
cp->pe = p->pe;
cp->pe_data = p->pe_data;
cp->pe_data_len = p->pe_data_len;
} else {
cp->pe = NULL;
cp->pe_data = NULL;
cp->pe_data_len = 0;
}
spin_lock_init(&cp->lock);
refcount_set(&cp->refcnt, 1);
cp->control = NULL;
atomic_set(&cp->n_control, 0);
atomic_set(&cp->in_pkts, 0);
cp->packet_xmit = NULL;
cp->app = NULL;
cp->app_data = NULL;
memset(&cp->in_seq, 0, sizeof(cp->in_seq));
memset(&cp->out_seq, 0, sizeof(cp->out_seq));
if (unlikely(flags & IP_VS_CONN_F_NO_CPORT)) {
int af_id = ip_vs_af_index(cp->af);
atomic_inc(&ipvs->no_cport_conns[af_id]);
}
cp->dest = NULL;
ip_vs_bind_dest(cp, dest);
cp->state = 0;
cp->old_state = 0;
cp->timeout = 3*HZ;
cp->sync_endtime = jiffies & ~3UL;
#ifdef CONFIG_IP_VS_IPV6
if (p->af == AF_INET6)
ip_vs_bind_xmit_v6(cp);
else
#endif
ip_vs_bind_xmit(cp);
if (unlikely(pd && atomic_read(&pd->appcnt)))
ip_vs_bind_app(cp, pd->pp);
if (ip_vs_conntrack_enabled(ipvs))
cp->flags |= IP_VS_CONN_F_NFCT;
ip_vs_conn_hash(cp);
return cp;
}
#ifdef CONFIG_PROC_FS
struct ip_vs_iter_state {
struct seq_net_private p;
struct ip_vs_rht *t;
int gen;
u32 bucket;
unsigned int skip_elems;
};
static void *ip_vs_conn_array(struct seq_file *seq)
{
struct ip_vs_iter_state *iter = seq->private;
struct net *net = seq_file_net(seq);
struct netns_ipvs *ipvs = net_ipvs(net);
struct ip_vs_rht *t = iter->t;
struct ip_vs_conn_hnode *hn;
struct hlist_bl_node *e;
int idx;
if (!t)
return NULL;
for (idx = iter->bucket; idx < t->size; idx++) {
unsigned int skip = 0;
hlist_bl_for_each_entry_rcu(hn, e, &t->buckets[idx], node) {
if (!ip_vs_rht_same_table(t, READ_ONCE(hn->hash_key)))
break;
if (hn->dir != 0)
continue;
if (skip >= iter->skip_elems) {
iter->bucket = idx;
return hn;
}
++skip;
}
if (!(idx & 31)) {
cond_resched_rcu();
if (iter->gen != atomic_read(&ipvs->conn_tab_changes))
break;
}
iter->skip_elems = 0;
}
iter->bucket = idx;
return NULL;
}
static void *ip_vs_conn_seq_start(struct seq_file *seq, loff_t *pos)
__acquires(RCU)
{
struct ip_vs_iter_state *iter = seq->private;
struct net *net = seq_file_net(seq);
struct netns_ipvs *ipvs = net_ipvs(net);
rcu_read_lock();
iter->gen = atomic_read(&ipvs->conn_tab_changes);
smp_rmb();
iter->t = rcu_dereference(ipvs->conn_tab);
if (*pos == 0) {
iter->skip_elems = 0;
iter->bucket = 0;
return SEQ_START_TOKEN;
}
return ip_vs_conn_array(seq);
}
static void *ip_vs_conn_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
struct ip_vs_iter_state *iter = seq->private;
struct ip_vs_conn_hnode *hn = v;
struct hlist_bl_node *e;
struct ip_vs_rht *t;
++*pos;
if (v == SEQ_START_TOKEN)
return ip_vs_conn_array(seq);
t = iter->t;
if (!t)
return NULL;
hlist_bl_for_each_entry_continue_rcu(hn, e, node) {
if (!ip_vs_rht_same_table(t, READ_ONCE(hn->hash_key)))
break;
if (hn->dir != 0)
continue;
iter->skip_elems++;
return hn;
}
iter->skip_elems = 0;
iter->bucket++;
return ip_vs_conn_array(seq);
}
static void ip_vs_conn_seq_stop(struct seq_file *seq, void *v)
__releases(RCU)
{
rcu_read_unlock();
}
static int ip_vs_conn_seq_show(struct seq_file *seq, void *v)
{
if (v == SEQ_START_TOKEN)
seq_puts(seq,
"Pro FromIP FPrt ToIP TPrt DestIP DPrt State Expires PEName PEData\n");
else {
struct ip_vs_conn_hnode *hn = v;
const struct ip_vs_conn *cp = ip_vs_hn0_to_conn(hn);
char pe_data[IP_VS_PENAME_MAXLEN + IP_VS_PEDATA_MAXLEN + 3];
size_t len = 0;
char dbuf[IP_VS_ADDRSTRLEN];
if (cp->pe_data) {
pe_data[0] = ' ';
len = strlen(cp->pe->name);
memcpy(pe_data + 1, cp->pe->name, len);
pe_data[len + 1] = ' ';
len += 2;
len += cp->pe->show_pe_data(cp, pe_data + len);
}
pe_data[len] = '\0';
#ifdef CONFIG_IP_VS_IPV6
if (cp->daf == AF_INET6)
snprintf(dbuf, sizeof(dbuf), "%pI6", &cp->daddr.in6);
else
#endif
snprintf(dbuf, sizeof(dbuf), "%08X",
ntohl(cp->daddr.ip));
#ifdef CONFIG_IP_VS_IPV6
if (cp->af == AF_INET6)
seq_printf(seq, "%-3s %pI6 %04X %pI6 %04X "
"%s %04X %-11s %7u%s\n",
ip_vs_proto_name(cp->protocol),
&cp->caddr.in6, ntohs(cp->cport),
&cp->vaddr.in6, ntohs(cp->vport),
dbuf, ntohs(cp->dport),
ip_vs_state_name(cp),
jiffies_delta_to_msecs(cp->timer.expires -
jiffies) / 1000,
pe_data);
else
#endif
seq_printf(seq,
"%-3s %08X %04X %08X %04X"
" %s %04X %-11s %7u%s\n",
ip_vs_proto_name(cp->protocol),
ntohl(cp->caddr.ip), ntohs(cp->cport),
ntohl(cp->vaddr.ip), ntohs(cp->vport),
dbuf, ntohs(cp->dport),
ip_vs_state_name(cp),
jiffies_delta_to_msecs(cp->timer.expires -
jiffies) / 1000,
pe_data);
}
return 0;
}
static const struct seq_operations ip_vs_conn_seq_ops = {
.start = ip_vs_conn_seq_start,
.next = ip_vs_conn_seq_next,
.stop = ip_vs_conn_seq_stop,
.show = ip_vs_conn_seq_show,
};
static const char *ip_vs_origin_name(unsigned int flags)
{
if (flags & IP_VS_CONN_F_SYNC)
return "SYNC";
else
return "LOCAL";
}
static int ip_vs_conn_sync_seq_show(struct seq_file *seq, void *v)
{
char dbuf[IP_VS_ADDRSTRLEN];
if (v == SEQ_START_TOKEN)
seq_puts(seq,
"Pro FromIP FPrt ToIP TPrt DestIP DPrt State Origin Expires\n");
else {
const struct ip_vs_conn *cp = v;
#ifdef CONFIG_IP_VS_IPV6
if (cp->daf == AF_INET6)
snprintf(dbuf, sizeof(dbuf), "%pI6", &cp->daddr.in6);
else
#endif
snprintf(dbuf, sizeof(dbuf), "%08X",
ntohl(cp->daddr.ip));
#ifdef CONFIG_IP_VS_IPV6
if (cp->af == AF_INET6)
seq_printf(seq, "%-3s %pI6 %04X %pI6 %04X "
"%s %04X %-11s %-6s %7u\n",
ip_vs_proto_name(cp->protocol),
&cp->caddr.in6, ntohs(cp->cport),
&cp->vaddr.in6, ntohs(cp->vport),
dbuf, ntohs(cp->dport),
ip_vs_state_name(cp),
ip_vs_origin_name(cp->flags),
jiffies_delta_to_msecs(cp->timer.expires -
jiffies) / 1000);
else
#endif
seq_printf(seq,
"%-3s %08X %04X %08X %04X "
"%s %04X %-11s %-6s %7u\n",
ip_vs_proto_name(cp->protocol),
ntohl(cp->caddr.ip), ntohs(cp->cport),
ntohl(cp->vaddr.ip), ntohs(cp->vport),
dbuf, ntohs(cp->dport),
ip_vs_state_name(cp),
ip_vs_origin_name(cp->flags),
jiffies_delta_to_msecs(cp->timer.expires -
jiffies) / 1000);
}
return 0;
}
static const struct seq_operations ip_vs_conn_sync_seq_ops = {
.start = ip_vs_conn_seq_start,
.next = ip_vs_conn_seq_next,
.stop = ip_vs_conn_seq_stop,
.show = ip_vs_conn_sync_seq_show,
};
#endif
#ifdef CONFIG_SYSCTL
static inline int todrop_entry(struct ip_vs_conn *cp)
{
struct netns_ipvs *ipvs = cp->ipvs;
int i;
if (time_before(cp->timeout + jiffies, cp->timer.expires + 60*HZ))
return 0;
i = atomic_read(&cp->in_pkts);
if (i > 8 || i < 1)
return 0;
i--;
if (--ipvs->dropentry_counters[i] > 0)
return 0;
ipvs->dropentry_counters[i] = i + 1;
return 1;
}
static inline bool ip_vs_conn_ops_mode(struct ip_vs_conn *cp)
{
struct ip_vs_service *svc;
if (!cp->dest)
return false;
svc = rcu_dereference(cp->dest->svc);
return svc && (svc->flags & IP_VS_SVC_F_ONEPACKET);
}
void ip_vs_random_dropentry(struct netns_ipvs *ipvs)
{
struct ip_vs_conn_hnode *hn;
struct hlist_bl_node *e;
struct ip_vs_conn *cp;
struct ip_vs_rht *t;
unsigned int r;
int idx;
r = get_random_u32();
rcu_read_lock();
t = rcu_dereference(ipvs->conn_tab);
if (!t)
goto out;
for (idx = 0; idx < (t->size >> 5); idx++) {
unsigned int hash = (r + idx) & t->mask;
hlist_bl_for_each_entry_rcu(hn, e, &t->buckets[hash], node) {
if (hn->dir != 0)
continue;
cp = ip_vs_hn0_to_conn(hn);
if (atomic_read(&cp->n_control))
continue;
if (cp->flags & IP_VS_CONN_F_TEMPLATE) {
if (ip_vs_conn_ops_mode(cp))
goto try_drop;
if (!(cp->state & IP_VS_CTPL_S_ASSURED))
goto drop;
continue;
}
if (cp->protocol == IPPROTO_TCP) {
switch(cp->state) {
case IP_VS_TCP_S_SYN_RECV:
case IP_VS_TCP_S_SYNACK:
break;
case IP_VS_TCP_S_ESTABLISHED:
if (todrop_entry(cp))
break;
continue;
default:
continue;
}
} else if (cp->protocol == IPPROTO_SCTP) {
switch (cp->state) {
case IP_VS_SCTP_S_INIT1:
case IP_VS_SCTP_S_INIT:
break;
case IP_VS_SCTP_S_ESTABLISHED:
if (todrop_entry(cp))
break;
continue;
default:
continue;
}
} else {
try_drop:
if (!todrop_entry(cp))
continue;
}
drop:
IP_VS_DBG(4, "drop connection\n");
ip_vs_conn_del(cp);
}
if (!(idx & 31)) {
cond_resched_rcu();
t = rcu_dereference(ipvs->conn_tab);
if (!t)
goto out;
}
}
out:
rcu_read_unlock();
}
#endif
static void ip_vs_conn_flush(struct netns_ipvs *ipvs)
{
DECLARE_IP_VS_RHT_WALK_BUCKETS_SAFE_RCU();
struct ip_vs_conn *cp, *cp_c;
struct ip_vs_conn_hnode *hn;
struct hlist_bl_head *head;
struct ip_vs_rht *t, *p;
struct hlist_bl_node *e;
if (!rcu_dereference_protected(ipvs->conn_tab, 1))
return;
disable_delayed_work_sync(&ipvs->conn_resize_work);
if (!atomic_read(&ipvs->conn_count))
goto unreg;
flush_again:
rcu_read_lock();
ip_vs_rht_walk_buckets_safe_rcu(ipvs->conn_tab, head) {
hlist_bl_for_each_entry_rcu(hn, e, head, node) {
if (hn->dir != 0)
continue;
cp = ip_vs_hn0_to_conn(hn);
if (atomic_read(&cp->n_control))
continue;
cp_c = cp->control;
IP_VS_DBG(4, "del connection\n");
ip_vs_conn_del(cp);
if (cp_c && !atomic_read(&cp_c->n_control)) {
IP_VS_DBG(4, "del controlling connection\n");
ip_vs_conn_del(cp_c);
}
}
cond_resched_rcu();
}
rcu_read_unlock();
if (atomic_read(&ipvs->conn_count) != 0) {
schedule();
goto flush_again;
}
unreg:
t = rcu_dereference_protected(ipvs->conn_tab, 1);
rcu_assign_pointer(ipvs->conn_tab, NULL);
smp_mb__before_atomic();
atomic_inc(&ipvs->conn_tab_changes);
while (1) {
p = rcu_dereference_protected(t->new_tbl, 1);
call_rcu(&t->rcu_head, ip_vs_rht_rcu_free);
if (p == t)
break;
t = p;
}
}
#ifdef CONFIG_SYSCTL
void ip_vs_expire_nodest_conn_flush(struct netns_ipvs *ipvs)
{
DECLARE_IP_VS_RHT_WALK_BUCKETS_RCU();
unsigned int resched_score = 0;
struct ip_vs_conn *cp, *cp_c;
struct ip_vs_conn_hnode *hn;
struct hlist_bl_head *head;
struct ip_vs_dest *dest;
struct hlist_bl_node *e;
int old_gen, new_gen;
if (!atomic_read(&ipvs->conn_count))
return;
old_gen = atomic_read(&ipvs->conn_tab_changes);
rcu_read_lock();
repeat:
smp_rmb();
ip_vs_rht_walk_buckets_rcu(ipvs->conn_tab, head) {
hlist_bl_for_each_entry_rcu(hn, e, head, node) {
if (hn->dir != 0)
continue;
cp = ip_vs_hn0_to_conn(hn);
resched_score++;
dest = cp->dest;
if (!dest || (dest->flags & IP_VS_DEST_F_AVAILABLE))
continue;
if (atomic_read(&cp->n_control))
continue;
cp_c = cp->control;
IP_VS_DBG(4, "del connection\n");
ip_vs_conn_del(cp);
if (cp_c && !atomic_read(&cp_c->n_control)) {
IP_VS_DBG(4, "del controlling connection\n");
ip_vs_conn_del(cp_c);
}
resched_score += 10;
}
resched_score++;
if (resched_score >= 100) {
resched_score = 0;
cond_resched_rcu();
if (!READ_ONCE(ipvs->enable))
goto out;
new_gen = atomic_read(&ipvs->conn_tab_changes);
if (old_gen != new_gen) {
old_gen = new_gen;
goto repeat;
}
}
}
out:
rcu_read_unlock();
}
#endif
int __net_init ip_vs_conn_net_init(struct netns_ipvs *ipvs)
{
int idx;
atomic_set(&ipvs->conn_count, 0);
for (idx = 0; idx < IP_VS_AF_MAX; idx++)
atomic_set(&ipvs->no_cport_conns[idx], 0);
INIT_DELAYED_WORK(&ipvs->conn_resize_work, conn_resize_work_handler);
RCU_INIT_POINTER(ipvs->conn_tab, NULL);
atomic_set(&ipvs->conn_tab_changes, 0);
ipvs->sysctl_conn_lfactor = ip_vs_conn_default_load_factor(ipvs);
#ifdef CONFIG_PROC_FS
if (!proc_create_net("ip_vs_conn", 0, ipvs->net->proc_net,
&ip_vs_conn_seq_ops,
sizeof(struct ip_vs_iter_state)))
goto err_conn;
if (!proc_create_net("ip_vs_conn_sync", 0, ipvs->net->proc_net,
&ip_vs_conn_sync_seq_ops,
sizeof(struct ip_vs_iter_state)))
goto err_conn_sync;
#endif
return 0;
#ifdef CONFIG_PROC_FS
err_conn_sync:
remove_proc_entry("ip_vs_conn", ipvs->net->proc_net);
err_conn:
return -ENOMEM;
#endif
}
void __net_exit ip_vs_conn_net_cleanup(struct netns_ipvs *ipvs)
{
ip_vs_conn_flush(ipvs);
#ifdef CONFIG_PROC_FS
remove_proc_entry("ip_vs_conn", ipvs->net->proc_net);
remove_proc_entry("ip_vs_conn_sync", ipvs->net->proc_net);
#endif
}
int __init ip_vs_conn_init(void)
{
int min = IP_VS_CONN_TAB_MIN_BITS;
int max = IP_VS_CONN_TAB_MAX_BITS;
size_t tab_array_size;
int max_avail;
max_avail = order_base_2(totalram_pages()) + PAGE_SHIFT;
max_avail += 1;
max_avail -= 1;
max_avail -= order_base_2(sizeof(struct ip_vs_conn));
max = clamp(max_avail, min, max);
ip_vs_conn_tab_bits = clamp(ip_vs_conn_tab_bits, min, max);
ip_vs_conn_tab_size = 1 << ip_vs_conn_tab_bits;
tab_array_size = array_size(ip_vs_conn_tab_size,
sizeof(struct hlist_bl_head));
ip_vs_conn_cachep = KMEM_CACHE(ip_vs_conn, SLAB_HWCACHE_ALIGN);
if (!ip_vs_conn_cachep)
return -ENOMEM;
pr_info("Connection hash table configured (size=%d, memory=%zdKbytes)\n",
ip_vs_conn_tab_size, tab_array_size / 1024);
IP_VS_DBG(0, "Each connection entry needs %zd bytes at least\n",
sizeof(struct ip_vs_conn));
return 0;
}
void ip_vs_conn_cleanup(void)
{
rcu_barrier();
kmem_cache_destroy(ip_vs_conn_cachep);
}