1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
/*
* Copyright (c) 2020 VMware, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include <errno.h>
#include "conntrack-private.h"
#include "conntrack-tp.h"
#include "ct-dpif.h"
#include "openvswitch/vlog.h"
VLOG_DEFINE_THIS_MODULE(conntrack_tp);
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
static const char *ct_timeout_str[] = {
#define CT_TIMEOUT(NAME) #NAME,
CT_TIMEOUTS
#undef CT_TIMEOUT
};
/* Default timeout policy in seconds. */
static unsigned int ct_dpif_netdev_tp_def[] = {
[CT_DPIF_TP_ATTR_TCP_SYN_SENT] = 30,
[CT_DPIF_TP_ATTR_TCP_SYN_RECV] = 30,
[CT_DPIF_TP_ATTR_TCP_ESTABLISHED] = 24 * 60 * 60,
[CT_DPIF_TP_ATTR_TCP_FIN_WAIT] = 15 * 60,
[CT_DPIF_TP_ATTR_TCP_TIME_WAIT] = 45,
[CT_DPIF_TP_ATTR_TCP_CLOSE] = 30,
[CT_DPIF_TP_ATTR_UDP_FIRST] = 60,
[CT_DPIF_TP_ATTR_UDP_SINGLE] = 60,
[CT_DPIF_TP_ATTR_UDP_MULTIPLE] = 30,
[CT_DPIF_TP_ATTR_ICMP_FIRST] = 60,
[CT_DPIF_TP_ATTR_ICMP_REPLY] = 30,
};
static struct timeout_policy *
timeout_policy_lookup_protected(struct conntrack *ct, int32_t tp_id)
OVS_REQUIRES(ct->ct_lock)
{
struct timeout_policy *tp;
uint32_t hash;
hash = hash_int(tp_id, ct->hash_basis);
CMAP_FOR_EACH_WITH_HASH_PROTECTED (tp, node, hash,
&ct->timeout_policies) {
if (tp->policy.id == tp_id) {
return tp;
}
}
return NULL;
}
static struct timeout_policy *
timeout_policy_lookup(struct conntrack *ct, int32_t tp_id)
{
struct timeout_policy *tp;
uint32_t hash;
hash = hash_int(tp_id, ct->hash_basis);
CMAP_FOR_EACH_WITH_HASH (tp, node, hash, &ct->timeout_policies) {
if (tp->policy.id == tp_id) {
return tp;
}
}
return NULL;
}
struct timeout_policy *
timeout_policy_get(struct conntrack *ct, int32_t tp_id)
{
return timeout_policy_lookup(ct, tp_id);
}
static void
update_existing_tp(struct timeout_policy *tp_dst,
const struct timeout_policy *tp_src)
{
struct ct_dpif_timeout_policy *dst;
const struct ct_dpif_timeout_policy *src;
int i;
dst = &tp_dst->policy;
src = &tp_src->policy;
/* Set the value and present bit to dst if present
* bit in src is set.
*/
for (i = 0; i < ARRAY_SIZE(dst->attrs); i++) {
if (src->present & (1 << i)) {
dst->attrs[i] = src->attrs[i];
dst->present |= (1 << i);
}
}
}
static void
init_default_tp(struct timeout_policy *tp, uint32_t tp_id)
{
tp->policy.id = tp_id;
/* Initialize the timeout value to default, but not
* setting the present bit.
*/
tp->policy.present = 0;
memcpy(tp->policy.attrs, ct_dpif_netdev_tp_def,
sizeof tp->policy.attrs);
}
static void
timeout_policy_create(struct conntrack *ct,
struct timeout_policy *new_tp)
OVS_REQUIRES(ct->ct_lock)
{
uint32_t tp_id = new_tp->policy.id;
struct timeout_policy *tp;
uint32_t hash;
tp = xzalloc(sizeof *tp);
init_default_tp(tp, tp_id);
update_existing_tp(tp, new_tp);
hash = hash_int(tp_id, ct->hash_basis);
cmap_insert(&ct->timeout_policies, &tp->node, hash);
}
static void
timeout_policy_clean(struct conntrack *ct, struct timeout_policy *tp)
OVS_REQUIRES(ct->ct_lock)
{
uint32_t hash = hash_int(tp->policy.id, ct->hash_basis);
cmap_remove(&ct->timeout_policies, &tp->node, hash);
ovsrcu_postpone(free, tp);
}
static int
timeout_policy_delete__(struct conntrack *ct, uint32_t tp_id,
bool warn_on_error)
OVS_REQUIRES(ct->ct_lock)
{
struct timeout_policy *tp;
int err = 0;
tp = timeout_policy_lookup_protected(ct, tp_id);
if (tp) {
timeout_policy_clean(ct, tp);
} else if (warn_on_error) {
VLOG_WARN_RL(&rl, "Failed to delete a non-existent timeout "
"policy: id=%d", tp_id);
err = ENOENT;
}
return err;
}
int
timeout_policy_delete(struct conntrack *ct, uint32_t tp_id)
{
int err;
ovs_mutex_lock(&ct->ct_lock);
err = timeout_policy_delete__(ct, tp_id, true);
ovs_mutex_unlock(&ct->ct_lock);
return err;
}
void
timeout_policy_init(struct conntrack *ct)
OVS_REQUIRES(ct->ct_lock)
{
struct timeout_policy tp;
cmap_init(&ct->timeout_policies);
/* Create default timeout policy. */
memset(&tp, 0, sizeof tp);
tp.policy.id = DEFAULT_TP_ID;
timeout_policy_create(ct, &tp);
}
int
timeout_policy_update(struct conntrack *ct,
struct timeout_policy *new_tp)
{
uint32_t tp_id = new_tp->policy.id;
int err = 0;
ovs_mutex_lock(&ct->ct_lock);
timeout_policy_delete__(ct, tp_id, false);
timeout_policy_create(ct, new_tp);
ovs_mutex_unlock(&ct->ct_lock);
return err;
}
static enum ct_dpif_tp_attr
tm_to_ct_dpif_tp(enum ct_timeout tm)
{
switch (tm) {
case CT_TM_TCP_FIRST_PACKET:
return CT_DPIF_TP_ATTR_TCP_SYN_SENT;
case CT_TM_TCP_OPENING:
return CT_DPIF_TP_ATTR_TCP_SYN_RECV;
case CT_TM_TCP_ESTABLISHED:
return CT_DPIF_TP_ATTR_TCP_ESTABLISHED;
case CT_TM_TCP_CLOSING:
return CT_DPIF_TP_ATTR_TCP_FIN_WAIT;
case CT_TM_TCP_FIN_WAIT:
return CT_DPIF_TP_ATTR_TCP_TIME_WAIT;
case CT_TM_TCP_CLOSED:
return CT_DPIF_TP_ATTR_TCP_CLOSE;
case CT_TM_OTHER_FIRST:
return CT_DPIF_TP_ATTR_UDP_FIRST;
case CT_TM_OTHER_BIDIR:
return CT_DPIF_TP_ATTR_UDP_MULTIPLE;
case CT_TM_OTHER_MULTIPLE:
return CT_DPIF_TP_ATTR_UDP_SINGLE;
case CT_TM_ICMP_FIRST:
return CT_DPIF_TP_ATTR_ICMP_FIRST;
case CT_TM_ICMP_REPLY:
return CT_DPIF_TP_ATTR_ICMP_REPLY;
case N_CT_TM:
default:
OVS_NOT_REACHED();
break;
}
OVS_NOT_REACHED();
return CT_DPIF_TP_ATTR_MAX;
}
/* The conn entry lock must be held on entry and exit. */
void
conn_update_expiration(struct conntrack *ct, struct conn *conn,
enum ct_timeout tm, long long now)
OVS_REQUIRES(conn->lock)
{
struct timeout_policy *tp;
uint32_t val;
tp = timeout_policy_lookup(ct, conn->tp_id);
if (tp) {
val = tp->policy.attrs[tm_to_ct_dpif_tp(tm)];
} else {
val = ct_dpif_netdev_tp_def[tm_to_ct_dpif_tp(tm)];
}
VLOG_DBG_RL(&rl, "Update timeout %s zone=%u with policy id=%d "
"val=%u sec.",
ct_timeout_str[tm], conn->key_node[CT_DIR_FWD].key.zone,
conn->tp_id, val);
atomic_store_relaxed(&conn->expiration, now + val * 1000);
}
void
conn_init_expiration(struct conntrack *ct, struct conn *conn,
enum ct_timeout tm, long long now)
{
struct timeout_policy *tp;
uint32_t val;
tp = timeout_policy_lookup(ct, conn->tp_id);
if (tp) {
val = tp->policy.attrs[tm_to_ct_dpif_tp(tm)];
} else {
val = ct_dpif_netdev_tp_def[tm_to_ct_dpif_tp(tm)];
}
VLOG_DBG_RL(&rl, "Init timeout %s zone=%u with policy id=%d val=%u sec.",
ct_timeout_str[tm], conn->key_node[CT_DIR_FWD].key.zone,
conn->tp_id, val);
conn->expiration = now + val * 1000;
}
|