blob: 95fcca6ff69e36526bd044fbfe09e47f99ffde3b [file] [log] [blame]
Florin Coras04e53442017-07-16 17:12:15 -07001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Florin Coras04e53442017-07-16 17:12:15 -07003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef SRC_VNET_SESSION_SESSION_LOOKUP_H_
17#define SRC_VNET_SESSION_SESSION_LOOKUP_H_
18
Florin Corascea194d2017-10-02 00:18:51 -070019#include <vnet/session/session_table.h>
Florin Coras288eaab2019-02-03 15:26:14 -080020#include <vnet/session/session_types.h>
Florin Coras6c36f532017-11-03 18:32:34 -070021#include <vnet/session/application_namespace.h>
Florin Coras04e53442017-07-16 17:12:15 -070022
Florin Coras288eaab2019-02-03 15:26:14 -080023#define HALF_OPEN_LOOKUP_INVALID_VALUE ((u64)~0)
24
Florin Corasb5e55a22019-01-10 12:42:47 -080025typedef enum session_lookup_result_
26{
27 SESSION_LOOKUP_RESULT_NONE,
28 SESSION_LOOKUP_RESULT_WRONG_THREAD,
29 SESSION_LOOKUP_RESULT_FILTERED
30} session_lookup_result_t;
31
Florin Corasf9bdc032024-02-02 13:01:07 -080032typedef struct session_lookup_main_
33{
34 clib_spinlock_t st_alloc_lock;
Steven Luong5682ca82024-07-17 16:16:05 -070035 fib_source_t fib_src;
Florin Corasf9bdc032024-02-02 13:01:07 -080036} session_lookup_main_t;
37
Florin Coras288eaab2019-02-03 15:26:14 -080038session_t *session_lookup_safe4 (u32 fib_index, ip4_address_t * lcl,
39 ip4_address_t * rmt, u16 lcl_port,
40 u16 rmt_port, u8 proto);
41session_t *session_lookup_safe6 (u32 fib_index, ip6_address_t * lcl,
42 ip6_address_t * rmt, u16 lcl_port,
43 u16 rmt_port, u8 proto);
Florin Corascea194d2017-10-02 00:18:51 -070044transport_connection_t *session_lookup_connection_wt4 (u32 fib_index,
45 ip4_address_t * lcl,
46 ip4_address_t * rmt,
47 u16 lcl_port,
48 u16 rmt_port, u8 proto,
Florin Corasdff48db2017-11-19 18:06:58 -080049 u32 thread_index,
50 u8 * is_filtered);
Florin Corascea194d2017-10-02 00:18:51 -070051transport_connection_t *session_lookup_connection4 (u32 fib_index,
52 ip4_address_t * lcl,
53 ip4_address_t * rmt,
54 u16 lcl_port,
55 u16 rmt_port, u8 proto);
56transport_connection_t *session_lookup_connection_wt6 (u32 fib_index,
57 ip6_address_t * lcl,
58 ip6_address_t * rmt,
59 u16 lcl_port,
60 u16 rmt_port, u8 proto,
Florin Corasdff48db2017-11-19 18:06:58 -080061 u32 thread_index,
62 u8 * is_filtered);
Florin Corascea194d2017-10-02 00:18:51 -070063transport_connection_t *session_lookup_connection6 (u32 fib_index,
64 ip6_address_t * lcl,
65 ip6_address_t * rmt,
66 u16 lcl_port,
67 u16 rmt_port, u8 proto);
Florin Coras57660d92020-04-04 22:45:34 +000068transport_connection_t *session_lookup_connection (u32 fib_index,
69 ip46_address_t * lcl,
70 ip46_address_t * rmt,
71 u16 lcl_port, u16 rmt_port,
72 u8 proto, u8 is_ip4);
73session_t *session_lookup_listener4 (u32 fib_index, ip4_address_t * lcl,
74 u16 lcl_port, u8 proto, u8 use_wildcard);
75session_t *session_lookup_listener6 (u32 fib_index, ip6_address_t * lcl,
76 u16 lcl_port, u8 proto, u8 use_wildcard);
Florin Coras288eaab2019-02-03 15:26:14 -080077session_t *session_lookup_listener (u32 table_index,
78 session_endpoint_t * sep);
Florin Coras9f1a5432019-03-10 21:03:20 -070079session_t *session_lookup_listener_wildcard (u32 table_index,
80 session_endpoint_t * sep);
Florin Corascea194d2017-10-02 00:18:51 -070081int session_lookup_add_connection (transport_connection_t * tc, u64 value);
82int session_lookup_del_connection (transport_connection_t * tc);
Florin Corasa2ff7b82017-11-08 17:55:03 -080083u64 session_lookup_endpoint_listener (u32 table_index,
Florin Corasdbd44562017-11-09 19:30:17 -080084 session_endpoint_t * sepi,
85 u8 use_rules);
Florin Corasf8f516a2018-02-08 15:10:09 -080086u64 session_lookup_local_endpoint (u32 table_index, session_endpoint_t * sep);
Florin Coras288eaab2019-02-03 15:26:14 -080087session_t *session_lookup_global_session_endpoint (session_endpoint_t *);
Florin Corascea194d2017-10-02 00:18:51 -070088int session_lookup_add_session_endpoint (u32 table_index,
89 session_endpoint_t * sep, u64 value);
90int session_lookup_del_session_endpoint (u32 table_index,
91 session_endpoint_t * sep);
Florin Corasaab06042020-02-26 02:56:14 +000092int session_lookup_del_session_endpoint2 (session_endpoint_t * sep);
Florin Coras288eaab2019-02-03 15:26:14 -080093int session_lookup_del_session (session_t * s);
Florin Corascea194d2017-10-02 00:18:51 -070094int session_lookup_del_half_open (transport_connection_t * tc);
95int session_lookup_add_half_open (transport_connection_t * tc, u64 value);
96u64 session_lookup_half_open_handle (transport_connection_t * tc);
97transport_connection_t *session_lookup_half_open_connection (u64 handle,
Florin Coras04e53442017-07-16 17:12:15 -070098 u8 proto,
Florin Corascea194d2017-10-02 00:18:51 -070099 u8 is_ip4);
100u32 session_lookup_get_index_for_fib (u32 fib_proto, u32 fib_index);
Florin Corasa4d09562021-07-08 08:25:09 -0700101u32 session_lookup_get_or_alloc_index_for_fib (u32 fib_proto, u32 fib_index);
Florin Coras04e53442017-07-16 17:12:15 -0700102
Florin Corascea194d2017-10-02 00:18:51 -0700103void session_lookup_show_table_entries (vlib_main_t * vm,
104 session_table_t * table, u8 type,
105 u8 is_local);
Florin Coras1c710452017-10-17 00:03:13 -0700106
Florin Coras7999e832017-10-31 01:51:04 -0700107void session_lookup_dump_rules_table (u32 fib_index, u8 fib_proto,
108 u8 transport_proto);
109void session_lookup_dump_local_rules_table (u32 fib_index, u8 fib_proto,
110 u8 transport_proto);
111
BenoƮt Ganne47727c02019-02-12 13:35:08 +0100112typedef enum _session_rule_scope
Florin Coras1c710452017-10-17 00:03:13 -0700113{
114 SESSION_RULE_SCOPE_GLOBAL = 1,
115 SESSION_RULE_SCOPE_LOCAL = 2,
116} session_rule_scope_e;
117
118typedef struct _session_rule_add_del_args
119{
120 /**
121 * Actual arguments to adding the rule to a session rules table
122 */
123 session_rule_table_add_del_args_t table_args;
124 /**
125 * Application namespace where rule should be applied. If 0,
126 * default namespace is used.
127 */
128 u32 appns_index;
129 /**
130 * Rule scope flag.
131 */
132 u8 scope;
Florin Corasc97a7392017-11-05 23:07:07 -0800133 /**
134 * Transport protocol for the rule
135 */
136 u8 transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -0700137} session_rule_add_del_args_t;
138
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200139session_error_t vnet_session_rule_add_del (session_rule_add_del_args_t *args);
Florin Coras6c36f532017-11-03 18:32:34 -0700140void session_lookup_set_tables_appns (app_namespace_t * app_ns);
Florin Coras1c710452017-10-17 00:03:13 -0700141
Florin Coras04e53442017-07-16 17:12:15 -0700142void session_lookup_init (void);
143
144#endif /* SRC_VNET_SESSION_SESSION_LOOKUP_H_ */
145
146/*
147 * fd.io coding-style-patch-verification: ON
148 *
149 * Local Variables:
150 * eval: (c-set-style "gnu")
151 * End:
152 */