blob: 449f8f4e2d29d6788676e2115e72c4a02283169d [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>
22
Florin Coras3cbc04b2017-10-02 00:18:51 -070023stream_session_t *session_lookup_safe4 (u32 fib_index, ip4_address_t * lcl,
24 ip4_address_t * rmt, u16 lcl_port,
25 u16 rmt_port, u8 proto);
26stream_session_t *session_lookup_safe6 (u32 fib_index, ip6_address_t * lcl,
27 ip6_address_t * rmt, u16 lcl_port,
28 u16 rmt_port, u8 proto);
Florin Corascea194d2017-10-02 00:18:51 -070029transport_connection_t *session_lookup_connection_wt4 (u32 fib_index,
30 ip4_address_t * lcl,
31 ip4_address_t * rmt,
32 u16 lcl_port,
33 u16 rmt_port, u8 proto,
34 u32 thread_index);
35transport_connection_t *session_lookup_connection4 (u32 fib_index,
36 ip4_address_t * lcl,
37 ip4_address_t * rmt,
38 u16 lcl_port,
39 u16 rmt_port, u8 proto);
40transport_connection_t *session_lookup_connection_wt6 (u32 fib_index,
41 ip6_address_t * lcl,
42 ip6_address_t * rmt,
43 u16 lcl_port,
44 u16 rmt_port, u8 proto,
45 u32 thread_index);
46transport_connection_t *session_lookup_connection6 (u32 fib_index,
47 ip6_address_t * lcl,
48 ip6_address_t * rmt,
49 u16 lcl_port,
50 u16 rmt_port, u8 proto);
51stream_session_t *session_lookup_listener4 (u32 fib_index,
52 ip4_address_t * lcl, u16 lcl_port,
53 u8 proto);
54stream_session_t *session_lookup_listener6 (u32 fib_index,
55 ip6_address_t * lcl, u16 lcl_port,
56 u8 proto);
57stream_session_t *session_lookup_listener (u32 table_index,
58 session_endpoint_t * sep);
59int session_lookup_add_connection (transport_connection_t * tc, u64 value);
60int session_lookup_del_connection (transport_connection_t * tc);
Florin Coras3cbc04b2017-10-02 00:18:51 -070061u64 session_lookup_session_endpoint (u32 table_index,
Florin Corascea194d2017-10-02 00:18:51 -070062 session_endpoint_t * sep);
63u32 session_lookup_local_session_endpoint (u32 table_index,
64 session_endpoint_t * sep);
Florin Coras3cbc04b2017-10-02 00:18:51 -070065stream_session_t *session_lookup_global_session_endpoint (session_endpoint_t
66 *);
Florin Corascea194d2017-10-02 00:18:51 -070067int session_lookup_add_session_endpoint (u32 table_index,
68 session_endpoint_t * sep, u64 value);
69int session_lookup_del_session_endpoint (u32 table_index,
70 session_endpoint_t * sep);
71int session_lookup_del_session (stream_session_t * s);
72int session_lookup_del_half_open (transport_connection_t * tc);
73int session_lookup_add_half_open (transport_connection_t * tc, u64 value);
74u64 session_lookup_half_open_handle (transport_connection_t * tc);
75transport_connection_t *session_lookup_half_open_connection (u64 handle,
Florin Coras04e53442017-07-16 17:12:15 -070076 u8 proto,
Florin Corascea194d2017-10-02 00:18:51 -070077 u8 is_ip4);
78u32 session_lookup_get_index_for_fib (u32 fib_proto, u32 fib_index);
Florin Coras04e53442017-07-16 17:12:15 -070079
Florin Corascea194d2017-10-02 00:18:51 -070080u64 session_lookup_local_listener_make_handle (session_endpoint_t * sep);
81u8 session_lookup_local_is_handle (u64 handle);
82int session_lookup_local_listener_parse_handle (u64 handle,
83 session_endpoint_t * sep);
Florin Coras04e53442017-07-16 17:12:15 -070084
Florin Corascea194d2017-10-02 00:18:51 -070085void session_lookup_show_table_entries (vlib_main_t * vm,
86 session_table_t * table, u8 type,
87 u8 is_local);
Florin Coras04e53442017-07-16 17:12:15 -070088void session_lookup_init (void);
89
90#endif /* SRC_VNET_SESSION_SESSION_LOOKUP_H_ */
91
92/*
93 * fd.io coding-style-patch-verification: ON
94 *
95 * Local Variables:
96 * eval: (c-set-style "gnu")
97 * End:
98 */