2015-11-15 22:07:25 -08:00
|
|
|
/*
|
2019-05-09 08:15:07 -07:00
|
|
|
* Copyright (c) 2015-2019 Nicira, Inc.
|
2015-11-15 22:07:25 -08:00
|
|
|
*
|
|
|
|
* 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_PRIVATE_H
|
|
|
|
#define CONNTRACK_PRIVATE_H 1
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/ip6.h>
|
|
|
|
|
2019-05-09 08:15:07 -07:00
|
|
|
#include "cmap.h"
|
2015-11-15 22:07:25 -08:00
|
|
|
#include "conntrack.h"
|
2015-11-15 22:07:25 -08:00
|
|
|
#include "ct-dpif.h"
|
2019-05-09 08:15:07 -07:00
|
|
|
#include "ipf.h"
|
2015-11-15 22:07:25 -08:00
|
|
|
#include "openvswitch/hmap.h"
|
|
|
|
#include "openvswitch/list.h"
|
|
|
|
#include "openvswitch/types.h"
|
|
|
|
#include "packets.h"
|
|
|
|
#include "unaligned.h"
|
2017-05-30 14:21:33 -07:00
|
|
|
#include "dp-packet.h"
|
2015-11-15 22:07:25 -08:00
|
|
|
|
|
|
|
struct ct_endpoint {
|
2019-02-14 13:15:08 -08:00
|
|
|
union ct_addr addr;
|
2016-05-13 15:04:17 -07:00
|
|
|
union {
|
|
|
|
ovs_be16 port;
|
|
|
|
struct {
|
|
|
|
ovs_be16 icmp_id;
|
|
|
|
uint8_t icmp_type;
|
|
|
|
uint8_t icmp_code;
|
|
|
|
};
|
|
|
|
};
|
2015-11-15 22:07:25 -08:00
|
|
|
};
|
|
|
|
|
2017-06-09 15:30:43 -07:00
|
|
|
/* Verify that there is no padding in struct ct_endpoint, to facilitate
|
|
|
|
* hashing in ct_endpoint_hash_add(). */
|
2019-02-14 13:15:08 -08:00
|
|
|
BUILD_ASSERT_DECL(sizeof(struct ct_endpoint) == sizeof(union ct_addr) + 4);
|
2017-06-09 15:30:43 -07:00
|
|
|
|
2017-08-06 10:51:14 -07:00
|
|
|
/* Changes to this structure need to be reflected in conn_key_hash()
|
|
|
|
* and conn_key_cmp(). */
|
2015-11-15 22:07:25 -08:00
|
|
|
struct conn_key {
|
|
|
|
struct ct_endpoint src;
|
|
|
|
struct ct_endpoint dst;
|
|
|
|
|
|
|
|
ovs_be16 dl_type;
|
|
|
|
uint16_t zone;
|
2017-08-06 10:51:14 -07:00
|
|
|
uint8_t nw_proto;
|
2015-11-15 22:07:25 -08:00
|
|
|
};
|
|
|
|
|
2017-08-06 10:51:14 -07:00
|
|
|
/* This is used for alg expectations; an expectation is a
|
|
|
|
* context created in preparation for establishing a data
|
|
|
|
* connection. The expectation is created by the control
|
|
|
|
* connection. */
|
|
|
|
struct alg_exp_node {
|
2018-01-09 15:44:54 -08:00
|
|
|
/* Node in alg_expectations. */
|
2017-08-06 10:51:14 -07:00
|
|
|
struct hmap_node node;
|
2018-01-09 15:44:54 -08:00
|
|
|
/* Node in alg_expectation_refs. */
|
|
|
|
struct hindex_node node_ref;
|
2017-08-06 10:51:14 -07:00
|
|
|
/* Key of data connection to be created. */
|
|
|
|
struct conn_key key;
|
|
|
|
/* Corresponding key of the control connection. */
|
|
|
|
struct conn_key master_key;
|
|
|
|
/* The NAT replacement address to be used by the data connection. */
|
2019-02-14 13:15:08 -08:00
|
|
|
union ct_addr alg_nat_repl_addr;
|
2017-08-06 10:51:14 -07:00
|
|
|
/* The data connection inherits the master control
|
|
|
|
* connection label and mark. */
|
|
|
|
ovs_u128 master_label;
|
|
|
|
uint32_t master_mark;
|
2018-01-09 15:44:55 -08:00
|
|
|
/* True if for NAT application, the alg replaces the dest address;
|
|
|
|
* otherwise, the source address is replaced. */
|
|
|
|
bool nat_rpl_dst;
|
2017-08-06 10:51:14 -07:00
|
|
|
};
|
|
|
|
|
2019-05-09 08:15:07 -07:00
|
|
|
enum OVS_PACKED_ENUM ct_conn_type {
|
|
|
|
CT_CONN_TYPE_DEFAULT,
|
|
|
|
CT_CONN_TYPE_UN_NAT,
|
|
|
|
};
|
|
|
|
|
2015-11-15 22:07:25 -08:00
|
|
|
struct conn {
|
2019-05-09 08:15:07 -07:00
|
|
|
/* Immutable data. */
|
2015-11-15 22:07:25 -08:00
|
|
|
struct conn_key key;
|
|
|
|
struct conn_key rev_key;
|
2019-05-09 08:15:07 -07:00
|
|
|
struct conn_key master_key; /* Only used for orig_tuple support. */
|
2015-11-15 22:07:25 -08:00
|
|
|
struct ovs_list exp_node;
|
2019-05-09 08:15:07 -07:00
|
|
|
struct cmap_node cm_node;
|
2017-05-30 10:49:27 -07:00
|
|
|
struct nat_action_info_t *nat_info;
|
2017-08-06 10:51:14 -07:00
|
|
|
char *alg;
|
2019-05-09 08:15:07 -07:00
|
|
|
struct conn *nat_conn; /* The NAT 'conn' context, if there is one. */
|
|
|
|
|
|
|
|
/* Mutable data. */
|
|
|
|
struct ovs_mutex lock; /* Guards all mutable fields. */
|
|
|
|
ovs_u128 label;
|
|
|
|
long long expiration;
|
2019-05-28 11:14:42 -07:00
|
|
|
uint32_t mark;
|
2019-05-09 08:15:07 -07:00
|
|
|
int seq_skew;
|
2019-12-03 09:14:17 -08:00
|
|
|
|
|
|
|
/* Immutable data. */
|
|
|
|
int32_t admit_zone; /* The zone for managing zone limit counts. */
|
|
|
|
uint32_t zone_limit_seq; /* Used to disambiguate zone limit counts. */
|
|
|
|
|
|
|
|
/* Mutable data. */
|
2019-05-09 08:15:07 -07:00
|
|
|
bool seq_skew_dir; /* TCP sequence skew direction due to NATTing of FTP
|
|
|
|
* control messages; true if reply direction. */
|
2019-05-28 11:14:42 -07:00
|
|
|
bool cleaned; /* True if cleaned from expiry lists. */
|
2019-05-09 08:15:07 -07:00
|
|
|
|
|
|
|
/* Immutable data. */
|
|
|
|
bool alg_related; /* True if alg data connection. */
|
|
|
|
enum ct_conn_type conn_type;
|
2015-11-15 22:07:25 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ct_update_res {
|
|
|
|
CT_UPDATE_INVALID,
|
|
|
|
CT_UPDATE_VALID,
|
|
|
|
CT_UPDATE_NEW,
|
|
|
|
};
|
|
|
|
|
2019-05-02 21:34:04 -07:00
|
|
|
/* 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) \
|
|
|
|
CT_TIMEOUT(ICMP_FIRST, 60 * 1000) \
|
|
|
|
CT_TIMEOUT(ICMP_REPLY, 30 * 1000)
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
|
|
|
enum ct_timeout {
|
|
|
|
#define CT_TIMEOUT(NAME, VALUE) CT_TM_##NAME,
|
|
|
|
CT_TIMEOUTS
|
|
|
|
#undef CT_TIMEOUT
|
|
|
|
N_CT_TM
|
|
|
|
};
|
|
|
|
|
|
|
|
struct conntrack {
|
2019-05-09 08:15:07 -07:00
|
|
|
struct ovs_mutex ct_lock; /* Protects 2 following fields. */
|
|
|
|
struct cmap conns OVS_GUARDED;
|
|
|
|
struct ovs_list exp_lists[N_CT_TM] OVS_GUARDED;
|
2019-12-03 09:14:17 -08:00
|
|
|
struct hmap zone_limits OVS_GUARDED;
|
2019-05-09 08:15:07 -07:00
|
|
|
uint32_t hash_basis; /* Salt for hashing a connection key. */
|
|
|
|
pthread_t clean_thread; /* Periodically cleans up connection tracker. */
|
|
|
|
struct latch clean_thread_exit; /* To destroy the 'clean_thread'. */
|
|
|
|
|
|
|
|
/* Counting connections. */
|
|
|
|
atomic_count n_conn; /* Number of connections currently tracked. */
|
|
|
|
atomic_uint n_conn_limit; /* Max connections tracked. */
|
|
|
|
|
|
|
|
/* Expectations for application level gateways (created by control
|
|
|
|
* connections to help create data connections, e.g. for FTP). */
|
|
|
|
struct ovs_rwlock resources_lock; /* Protects fields below. */
|
|
|
|
struct hmap alg_expectations OVS_GUARDED; /* Holds struct
|
|
|
|
* alg_exp_nodes. */
|
|
|
|
struct hindex alg_expectation_refs OVS_GUARDED; /* For lookup from
|
|
|
|
* control context. */
|
2019-05-02 21:34:04 -07:00
|
|
|
|
2019-09-25 14:09:41 -07:00
|
|
|
struct ipf *ipf; /* Fragmentation handling context. */
|
2019-12-03 09:14:17 -08:00
|
|
|
uint32_t zone_limit_seq; /* Used to disambiguate zone limit counts. */
|
2019-09-25 14:09:41 -07:00
|
|
|
atomic_bool tcp_seq_chk; /* Check TCP sequence numbers. */
|
2019-05-02 21:34:04 -07:00
|
|
|
};
|
|
|
|
|
2019-05-09 08:15:07 -07:00
|
|
|
/* Lock acquisition order:
|
|
|
|
* 1. 'ct_lock'
|
|
|
|
* 2. 'conn->lock'
|
|
|
|
* 3. 'resources_lock'
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern struct ct_l4_proto ct_proto_tcp;
|
|
|
|
extern struct ct_l4_proto ct_proto_other;
|
|
|
|
extern struct ct_l4_proto ct_proto_icmp4;
|
|
|
|
extern struct ct_l4_proto ct_proto_icmp6;
|
|
|
|
|
2015-11-15 22:07:25 -08:00
|
|
|
struct ct_l4_proto {
|
2019-05-09 08:15:07 -07:00
|
|
|
struct conn *(*new_conn)(struct conntrack *ct, struct dp_packet *pkt,
|
2016-05-16 12:59:23 -07:00
|
|
|
long long now);
|
2015-11-15 22:07:25 -08:00
|
|
|
bool (*valid_new)(struct dp_packet *pkt);
|
2019-05-09 08:15:07 -07:00
|
|
|
enum ct_update_res (*conn_update)(struct conntrack *ct, struct conn *conn,
|
2016-05-16 12:59:23 -07:00
|
|
|
struct dp_packet *pkt, bool reply,
|
|
|
|
long long now);
|
2015-11-15 22:07:25 -08:00
|
|
|
void (*conn_get_protoinfo)(const struct conn *,
|
|
|
|
struct ct_dpif_protoinfo *);
|
2015-11-15 22:07:25 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern long long ct_timeout_val[];
|
|
|
|
|
2019-05-09 08:15:07 -07:00
|
|
|
|
|
|
|
/* ct_lock must be held. */
|
2015-11-15 22:07:25 -08:00
|
|
|
static inline void
|
2019-05-09 08:15:07 -07:00
|
|
|
conn_init_expiration(struct conntrack *ct, struct conn *conn,
|
|
|
|
enum ct_timeout tm, long long now)
|
2015-11-15 22:07:25 -08:00
|
|
|
{
|
|
|
|
conn->expiration = now + ct_timeout_val[tm];
|
2019-05-09 08:15:07 -07:00
|
|
|
ovs_list_push_back(&ct->exp_lists[tm], &conn->exp_node);
|
2016-05-16 12:59:23 -07:00
|
|
|
}
|
|
|
|
|
2019-05-09 08:15:07 -07:00
|
|
|
/* The conn entry lock must be held on entry and exit. */
|
2016-05-16 12:59:23 -07:00
|
|
|
static inline void
|
2019-05-09 08:15:07 -07:00
|
|
|
conn_update_expiration(struct conntrack *ct, struct conn *conn,
|
2016-05-16 12:59:23 -07:00
|
|
|
enum ct_timeout tm, long long now)
|
2019-05-09 08:15:07 -07:00
|
|
|
OVS_NO_THREAD_SAFETY_ANALYSIS
|
2016-05-16 12:59:23 -07:00
|
|
|
{
|
2019-05-09 08:15:07 -07:00
|
|
|
ovs_mutex_unlock(&conn->lock);
|
|
|
|
|
|
|
|
ovs_mutex_lock(&ct->ct_lock);
|
|
|
|
ovs_mutex_lock(&conn->lock);
|
2019-05-28 11:14:42 -07:00
|
|
|
if (!conn->cleaned) {
|
|
|
|
conn->expiration = now + ct_timeout_val[tm];
|
|
|
|
ovs_list_remove(&conn->exp_node);
|
|
|
|
ovs_list_push_back(&ct->exp_lists[tm], &conn->exp_node);
|
|
|
|
}
|
2019-05-09 08:15:07 -07:00
|
|
|
ovs_mutex_unlock(&conn->lock);
|
|
|
|
ovs_mutex_unlock(&ct->ct_lock);
|
|
|
|
|
|
|
|
ovs_mutex_lock(&conn->lock);
|
2015-11-15 22:07:25 -08:00
|
|
|
}
|
|
|
|
|
2017-05-30 14:21:33 -07:00
|
|
|
static inline uint32_t
|
|
|
|
tcp_payload_length(struct dp_packet *pkt)
|
|
|
|
{
|
|
|
|
const char *tcp_payload = dp_packet_get_tcp_payload(pkt);
|
|
|
|
if (tcp_payload) {
|
|
|
|
return ((char *) dp_packet_tail(pkt) - dp_packet_l2_pad_size(pkt)
|
|
|
|
- tcp_payload);
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-15 22:07:25 -08:00
|
|
|
#endif /* conntrack-private.h */
|