blob: 1bdf6d17fcb8c7b9d15d4e2b5a257a92416e9775 [file] [log] [blame]
Florin Coras04e53442017-07-16 17:12:15 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * 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 Coras04e53442017-07-16 17:12:15 -070020#include <vnet/session/stream_session.h>
21#include <vnet/session/transport.h>
Florin Coras6c36f532017-11-03 18:32:34 -070022#include <vnet/session/application_namespace.h>
Florin Coras04e53442017-07-16 17:12:15 -070023
Florin Coras3cbc04b2017-10-02 00:18:51 -070024stream_session_t *session_lookup_safe4 (u32 fib_index, ip4_address_t * lcl,
25 ip4_address_t * rmt, u16 lcl_port,
26 u16 rmt_port, u8 proto);
27stream_session_t *session_lookup_safe6 (u32 fib_index, ip6_address_t * lcl,
28 ip6_address_t * rmt, u16 lcl_port,
29 u16 rmt_port, u8 proto);
Florin Corascea194d2017-10-02 00:18:51 -070030transport_connection_t *session_lookup_connection_wt4 (u32 fib_index,
31 ip4_address_t * lcl,
32 ip4_address_t * rmt,
33 u16 lcl_port,
34 u16 rmt_port, u8 proto,
Florin Corasdff48db2017-11-19 18:06:58 -080035 u32 thread_index,
36 u8 * is_filtered);
Florin Corascea194d2017-10-02 00:18:51 -070037transport_connection_t *session_lookup_connection4 (u32 fib_index,
38 ip4_address_t * lcl,
39 ip4_address_t * rmt,
40 u16 lcl_port,
41 u16 rmt_port, u8 proto);
42transport_connection_t *session_lookup_connection_wt6 (u32 fib_index,
43 ip6_address_t * lcl,
44 ip6_address_t * rmt,
45 u16 lcl_port,
46 u16 rmt_port, u8 proto,
Florin Corasdff48db2017-11-19 18:06:58 -080047 u32 thread_index,
48 u8 * is_filtered);
Florin Corascea194d2017-10-02 00:18:51 -070049transport_connection_t *session_lookup_connection6 (u32 fib_index,
50 ip6_address_t * lcl,
51 ip6_address_t * rmt,
52 u16 lcl_port,
53 u16 rmt_port, u8 proto);
54stream_session_t *session_lookup_listener4 (u32 fib_index,
55 ip4_address_t * lcl, u16 lcl_port,
56 u8 proto);
57stream_session_t *session_lookup_listener6 (u32 fib_index,
58 ip6_address_t * lcl, u16 lcl_port,
59 u8 proto);
60stream_session_t *session_lookup_listener (u32 table_index,
61 session_endpoint_t * sep);
62int session_lookup_add_connection (transport_connection_t * tc, u64 value);
63int session_lookup_del_connection (transport_connection_t * tc);
Florin Corasa2ff7b82017-11-08 17:55:03 -080064u64 session_lookup_endpoint_listener (u32 table_index,
Florin Corasdbd44562017-11-09 19:30:17 -080065 session_endpoint_t * sepi,
66 u8 use_rules);
Florin Corasa2ff7b82017-11-08 17:55:03 -080067u32 session_lookup_local_endpoint (u32 table_index, session_endpoint_t * sep);
Florin Coras3cbc04b2017-10-02 00:18:51 -070068stream_session_t *session_lookup_global_session_endpoint (session_endpoint_t
69 *);
Florin Corascea194d2017-10-02 00:18:51 -070070int session_lookup_add_session_endpoint (u32 table_index,
71 session_endpoint_t * sep, u64 value);
72int session_lookup_del_session_endpoint (u32 table_index,
73 session_endpoint_t * sep);
74int session_lookup_del_session (stream_session_t * s);
75int session_lookup_del_half_open (transport_connection_t * tc);
76int session_lookup_add_half_open (transport_connection_t * tc, u64 value);
77u64 session_lookup_half_open_handle (transport_connection_t * tc);
78transport_connection_t *session_lookup_half_open_connection (u64 handle,
Florin Coras04e53442017-07-16 17:12:15 -070079 u8 proto,
Florin Corascea194d2017-10-02 00:18:51 -070080 u8 is_ip4);
81u32 session_lookup_get_index_for_fib (u32 fib_proto, u32 fib_index);
Florin Coras04e53442017-07-16 17:12:15 -070082
Florin Corascea194d2017-10-02 00:18:51 -070083u64 session_lookup_local_listener_make_handle (session_endpoint_t * sep);
84u8 session_lookup_local_is_handle (u64 handle);
85int session_lookup_local_listener_parse_handle (u64 handle,
86 session_endpoint_t * sep);
Florin Coras04e53442017-07-16 17:12:15 -070087
Florin Corascea194d2017-10-02 00:18:51 -070088void session_lookup_show_table_entries (vlib_main_t * vm,
89 session_table_t * table, u8 type,
90 u8 is_local);
Florin Coras1c710452017-10-17 00:03:13 -070091
Florin Coras7999e832017-10-31 01:51:04 -070092void session_lookup_dump_rules_table (u32 fib_index, u8 fib_proto,
93 u8 transport_proto);
94void session_lookup_dump_local_rules_table (u32 fib_index, u8 fib_proto,
95 u8 transport_proto);
96
Florin Coras1c710452017-10-17 00:03:13 -070097enum _session_rule_scope
98{
99 SESSION_RULE_SCOPE_GLOBAL = 1,
100 SESSION_RULE_SCOPE_LOCAL = 2,
101} session_rule_scope_e;
102
103typedef struct _session_rule_add_del_args
104{
105 /**
106 * Actual arguments to adding the rule to a session rules table
107 */
108 session_rule_table_add_del_args_t table_args;
109 /**
110 * Application namespace where rule should be applied. If 0,
111 * default namespace is used.
112 */
113 u32 appns_index;
114 /**
115 * Rule scope flag.
116 */
117 u8 scope;
Florin Corasc97a7392017-11-05 23:07:07 -0800118 /**
119 * Transport protocol for the rule
120 */
121 u8 transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -0700122} session_rule_add_del_args_t;
123
124clib_error_t *vnet_session_rule_add_del (session_rule_add_del_args_t * args);
Florin Coras6c36f532017-11-03 18:32:34 -0700125void session_lookup_set_tables_appns (app_namespace_t * app_ns);
Florin Coras1c710452017-10-17 00:03:13 -0700126
Florin Coras04e53442017-07-16 17:12:15 -0700127void session_lookup_init (void);
128
129#endif /* SRC_VNET_SESSION_SESSION_LOOKUP_H_ */
130
131/*
132 * fd.io coding-style-patch-verification: ON
133 *
134 * Local Variables:
135 * eval: (c-set-style "gnu")
136 * End:
137 */