2015-11-15 22:07:25 -08:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright (c) 2015, 2016 Nicira, 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.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CONNTRACK_H
|
|
|
|
|
|
#define CONNTRACK_H 1
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
2016-05-16 12:59:23 -07:00
|
|
|
|
#include "latch.h"
|
2015-11-15 22:07:25 -08:00
|
|
|
|
#include "odp-netlink.h"
|
|
|
|
|
|
#include "openvswitch/hmap.h"
|
2016-05-16 12:59:23 -07:00
|
|
|
|
#include "openvswitch/list.h"
|
2015-11-15 22:07:25 -08:00
|
|
|
|
#include "openvswitch/thread.h"
|
|
|
|
|
|
#include "openvswitch/types.h"
|
|
|
|
|
|
#include "ovs-atomic.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Userspace connection tracker
|
|
|
|
|
|
* ============================
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is a connection tracking module that keeps all the state in userspace.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Usage
|
|
|
|
|
|
* =====
|
|
|
|
|
|
*
|
|
|
|
|
|
* struct conntrack ct;
|
|
|
|
|
|
*
|
|
|
|
|
|
* Initialization:
|
|
|
|
|
|
*
|
|
|
|
|
|
* conntrack_init(&ct);
|
|
|
|
|
|
*
|
|
|
|
|
|
* It is necessary to periodically issue a call to
|
|
|
|
|
|
*
|
|
|
|
|
|
* conntrack_run(&ct);
|
|
|
|
|
|
*
|
|
|
|
|
|
* to allow the module to clean up expired connections.
|
|
|
|
|
|
*
|
|
|
|
|
|
* To send a group of packets through the connection tracker:
|
|
|
|
|
|
*
|
|
|
|
|
|
* conntrack_execute(&ct, pkts, n_pkts, ...);
|
|
|
|
|
|
*
|
|
|
|
|
|
* Thread-safety
|
|
|
|
|
|
* =============
|
|
|
|
|
|
*
|
|
|
|
|
|
* conntrack_execute() can be called by multiple threads simultaneoulsy.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
struct dp_packet_batch;
|
|
|
|
|
|
|
|
|
|
|
|
struct conntrack;
|
|
|
|
|
|
|
|
|
|
|
|
void conntrack_init(struct conntrack *);
|
|
|
|
|
|
void conntrack_destroy(struct conntrack *);
|
|
|
|
|
|
|
|
|
|
|
|
int conntrack_execute(struct conntrack *, struct dp_packet_batch *,
|
|
|
|
|
|
bool commit, uint16_t zone, const uint32_t *setmark,
|
|
|
|
|
|
const struct ovs_key_ct_labels *setlabel,
|
|
|
|
|
|
const char *helper);
|
|
|
|
|
|
|
|
|
|
|
|
/* 'struct ct_lock' is a wrapper for an adaptive mutex. It's useful to try
|
|
|
|
|
|
* different types of locks (e.g. spinlocks) */
|
|
|
|
|
|
|
|
|
|
|
|
struct OVS_LOCKABLE ct_lock {
|
|
|
|
|
|
struct ovs_mutex lock;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ct_lock_init(struct ct_lock *lock)
|
|
|
|
|
|
{
|
|
|
|
|
|
ovs_mutex_init_adaptive(&lock->lock);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ct_lock_lock(struct ct_lock *lock)
|
|
|
|
|
|
OVS_ACQUIRES(lock)
|
|
|
|
|
|
OVS_NO_THREAD_SAFETY_ANALYSIS
|
|
|
|
|
|
{
|
|
|
|
|
|
ovs_mutex_lock(&lock->lock);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ct_lock_unlock(struct ct_lock *lock)
|
|
|
|
|
|
OVS_RELEASES(lock)
|
|
|
|
|
|
OVS_NO_THREAD_SAFETY_ANALYSIS
|
|
|
|
|
|
{
|
|
|
|
|
|
ovs_mutex_unlock(&lock->lock);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void ct_lock_destroy(struct ct_lock *lock)
|
|
|
|
|
|
{
|
|
|
|
|
|
ovs_mutex_destroy(&lock->lock);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Timeouts: all the possible timeout states passed to update_expiration()
|
|
|
|
|
|
* are listed here. The name will be prefix by CT_TM_ and the value is in
|
|
|
|
|
|
* milliseconds */
|
|
|
|
|
|
#define CT_TIMEOUTS \
|
|
|
|
|
|
CT_TIMEOUT(TCP_FIRST_PACKET, 30 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(TCP_OPENING, 30 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(TCP_ESTABLISHED, 24 * 60 * 60 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(TCP_CLOSING, 15 * 60 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(TCP_FIN_WAIT, 45 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(TCP_CLOSED, 30 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(OTHER_FIRST, 60 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(OTHER_MULTIPLE, 60 * 1000) \
|
|
|
|
|
|
CT_TIMEOUT(OTHER_BIDIR, 30 * 1000) \
|
|
|
|
|
|
|
2016-05-16 12:59:23 -07:00
|
|
|
|
/* The smallest of the above values: it is used as an upper bound for the
|
|
|
|
|
|
* interval between two rounds of cleanup of expired entries */
|
|
|
|
|
|
#define CT_TM_MIN (30 * 1000)
|
|
|
|
|
|
|
|
|
|
|
|
#define CT_TIMEOUT(NAME, VAL) BUILD_ASSERT_DECL(VAL >= CT_TM_MIN);
|
|
|
|
|
|
CT_TIMEOUTS
|
|
|
|
|
|
#undef CT_TIMEOUT
|
|
|
|
|
|
|
2015-11-15 22:07:25 -08:00
|
|
|
|
enum ct_timeout {
|
|
|
|
|
|
#define CT_TIMEOUT(NAME, VALUE) CT_TM_##NAME,
|
|
|
|
|
|
CT_TIMEOUTS
|
|
|
|
|
|
#undef CT_TIMEOUT
|
|
|
|
|
|
N_CT_TM
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Locking:
|
|
|
|
|
|
*
|
|
|
|
|
|
* The connections are kept in different buckets, which are completely
|
|
|
|
|
|
* independent. The connection bucket is determined by the hash of its key.
|
2016-05-16 12:59:23 -07:00
|
|
|
|
*
|
|
|
|
|
|
* Each bucket has two locks. Acquisition order is, from outermost to
|
|
|
|
|
|
* innermost:
|
|
|
|
|
|
*
|
|
|
|
|
|
* cleanup_mutex
|
|
|
|
|
|
* lock
|
|
|
|
|
|
*
|
2015-11-15 22:07:25 -08:00
|
|
|
|
* */
|
|
|
|
|
|
struct conntrack_bucket {
|
2016-05-16 12:59:23 -07:00
|
|
|
|
/* Protects 'connections' and 'exp_lists'. Used in the fast path */
|
2015-11-15 22:07:25 -08:00
|
|
|
|
struct ct_lock lock;
|
2016-05-16 12:59:23 -07:00
|
|
|
|
/* Contains the connections in the bucket, indexed by 'struct conn_key' */
|
2015-11-15 22:07:25 -08:00
|
|
|
|
struct hmap connections OVS_GUARDED;
|
2016-05-16 12:59:23 -07:00
|
|
|
|
/* For each possible timeout we have a list of connections. When the
|
|
|
|
|
|
* timeout of a connection is updated, we move it to the back of the list.
|
|
|
|
|
|
* Since the connection in a list have the same relative timeout, the list
|
|
|
|
|
|
* will be ordered, with the oldest connections to the front. */
|
|
|
|
|
|
struct ovs_list exp_lists[N_CT_TM] OVS_GUARDED;
|
|
|
|
|
|
|
|
|
|
|
|
/* Protects 'next_cleanup'. Used to make sure that there's only one thread
|
|
|
|
|
|
* performing the cleanup. */
|
|
|
|
|
|
struct ovs_mutex cleanup_mutex;
|
|
|
|
|
|
long long next_cleanup OVS_GUARDED;
|
2015-11-15 22:07:25 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define CONNTRACK_BUCKETS_SHIFT 8
|
|
|
|
|
|
#define CONNTRACK_BUCKETS (1 << CONNTRACK_BUCKETS_SHIFT)
|
|
|
|
|
|
|
|
|
|
|
|
struct conntrack {
|
|
|
|
|
|
/* Independent buckets containing the connections */
|
|
|
|
|
|
struct conntrack_bucket buckets[CONNTRACK_BUCKETS];
|
|
|
|
|
|
|
|
|
|
|
|
/* Salt for hashing a connection key. */
|
|
|
|
|
|
uint32_t hash_basis;
|
|
|
|
|
|
|
2016-05-16 12:59:23 -07:00
|
|
|
|
/* The thread performing periodic cleanup of the connection
|
|
|
|
|
|
* tracker */
|
|
|
|
|
|
pthread_t clean_thread;
|
|
|
|
|
|
/* Latch to destroy the 'clean_thread' */
|
|
|
|
|
|
struct latch clean_thread_exit;
|
|
|
|
|
|
|
2015-11-15 22:07:25 -08:00
|
|
|
|
/* Number of connections currently in the connection tracker. */
|
|
|
|
|
|
atomic_count n_conn;
|
|
|
|
|
|
/* Connections limit. When this limit is reached, no new connection
|
|
|
|
|
|
* will be accepted. */
|
|
|
|
|
|
atomic_uint n_conn_limit;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* conntrack.h */
|