]> git.proxmox.com Git - ovs.git/blame - lib/conntrack.h
ofp-actions: Fix userspace support for mpls_ttl.
[ovs.git] / lib / conntrack.h
CommitLineData
a489b168 1/*
4ea96698 2 * Copyright (c) 2015, 2016, 2017, 2019 Nicira, Inc.
a489b168
DDP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef CONNTRACK_H
18#define CONNTRACK_H 1
19
20#include <stdbool.h>
21
967bb5c5 22#include "cmap.h"
2078901a 23#include "ct-dpif.h"
e6ef6cc6 24#include "latch.h"
a489b168
DDP
25#include "odp-netlink.h"
26#include "openvswitch/hmap.h"
e6ef6cc6 27#include "openvswitch/list.h"
a489b168
DDP
28#include "openvswitch/thread.h"
29#include "openvswitch/types.h"
30#include "ovs-atomic.h"
4cddb1f0
DB
31#include "ovs-thread.h"
32#include "packets.h"
4417ca3d 33#include "hindex.h"
a489b168
DDP
34
35/* Userspace connection tracker
36 * ============================
37 *
38 * This is a connection tracking module that keeps all the state in userspace.
39 *
40 * Usage
41 * =====
42 *
967bb5c5 43 * struct conntrack *ct;
a489b168
DDP
44 *
45 * Initialization:
46 *
967bb5c5 47 * ct = conntrack_init();
a489b168 48 *
a489b168
DDP
49 * To send a group of packets through the connection tracker:
50 *
967bb5c5 51 * conntrack_execute(ct, pkt_batch, ...);
a489b168 52 *
967bb5c5 53 * Thread-safety:
a489b168
DDP
54 *
55 * conntrack_execute() can be called by multiple threads simultaneoulsy.
967bb5c5
DB
56 *
57 * Shutdown:
58 *
59 * 1/ Shutdown packet input to the datapath
60 * 2/ Destroy PMD threads after quiescence.
61 * 3/ conntrack_destroy(ct);
a489b168
DDP
62 */
63
64struct dp_packet_batch;
65
66struct conntrack;
67
cda1b109
DB
68union ct_addr {
69 ovs_be32 ipv4;
70 struct in6_addr ipv6;
4cddb1f0
DB
71};
72
73enum nat_action_e {
74 NAT_ACTION_SRC = 1 << 0,
75 NAT_ACTION_SRC_PORT = 1 << 1,
76 NAT_ACTION_DST = 1 << 2,
77 NAT_ACTION_DST_PORT = 1 << 3,
78};
79
80struct nat_action_info_t {
cda1b109
DB
81 union ct_addr min_addr;
82 union ct_addr max_addr;
4cddb1f0
DB
83 uint16_t min_port;
84 uint16_t max_port;
85 uint16_t nat_action;
86};
87
57593fd2 88struct conntrack *conntrack_init(void);
a489b168
DDP
89void conntrack_destroy(struct conntrack *);
90
bd7d93f8
DB
91int conntrack_execute(struct conntrack *ct, struct dp_packet_batch *pkt_batch,
92 ovs_be16 dl_type, bool force, bool commit, uint16_t zone,
93 const uint32_t *setmark,
286de272 94 const struct ovs_key_ct_labels *setlabel,
bd7d93f8 95 ovs_be16 tp_src, ovs_be16 tp_dst, const char *helper,
94053e66 96 const struct nat_action_info_t *nat_action_info,
2078901a 97 long long now, uint32_t tp_id);
1fe178d2 98void conntrack_clear(struct dp_packet *packet);
4d4e68ed
DDP
99
100struct conntrack_dump {
101 struct conntrack *ct;
102 unsigned bucket;
967bb5c5 103 struct cmap_position cm_pos;
4d4e68ed
DDP
104 bool filter_zone;
105 uint16_t zone;
106};
107
a7f33fdb
DB
108struct conntrack_zone_limit {
109 int32_t zone;
110 uint32_t limit;
111 uint32_t count;
112 uint32_t zone_limit_seq; /* Used to disambiguate zone limit counts. */
113};
114
2078901a
WT
115struct timeout_policy {
116 struct hmap_node node;
117 struct ct_dpif_timeout_policy policy;
118};
119
a7f33fdb
DB
120enum {
121 INVALID_ZONE = -2,
122 DEFAULT_ZONE = -1, /* Default zone for zone limit management. */
123 MIN_ZONE = 0,
124 MAX_ZONE = 0xFFFF,
125};
126
4d4e68ed 127struct ct_dpif_entry;
271e48a0 128struct ct_dpif_tuple;
4d4e68ed
DDP
129
130int conntrack_dump_start(struct conntrack *, struct conntrack_dump *,
ded30c74 131 const uint16_t *pzone, int *);
4d4e68ed
DDP
132int conntrack_dump_next(struct conntrack_dump *, struct ct_dpif_entry *);
133int conntrack_dump_done(struct conntrack_dump *);
5d9cbb4c
DDP
134
135int conntrack_flush(struct conntrack *, const uint16_t *zone);
271e48a0
YHW
136int conntrack_flush_tuple(struct conntrack *, const struct ct_dpif_tuple *,
137 uint16_t zone);
c92339ad
DB
138int conntrack_set_maxconns(struct conntrack *ct, uint32_t maxconns);
139int conntrack_get_maxconns(struct conntrack *ct, uint32_t *maxconns);
875075b3 140int conntrack_get_nconns(struct conntrack *ct, uint32_t *nconns);
64207120
DB
141int conntrack_set_tcp_seq_chk(struct conntrack *ct, bool enabled);
142bool conntrack_get_tcp_seq_chk(struct conntrack *ct);
4ea96698 143struct ipf *conntrack_ipf_ctx(struct conntrack *ct);
a7f33fdb
DB
144struct conntrack_zone_limit zone_limit_get(struct conntrack *ct,
145 int32_t zone);
146int zone_limit_update(struct conntrack *ct, int32_t zone, uint32_t limit);
147int zone_limit_delete(struct conntrack *ct, uint16_t zone);
a489b168 148\f
a489b168 149#endif /* conntrack.h */