blob: 20cbaf2acd6ba7a0adc8c9fbcf1fc5e584c01b9d [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 Corascea194d2017-10-02 00:18:51 -070023stream_session_t *session_lookup4 (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_lookup6 (u32 fib_index, ip6_address_t * lcl,
27 ip6_address_t * rmt, u16 lcl_port,
28 u16 rmt_port, u8 proto);
29transport_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);
61u32 session_lookup_session_endpoint (u32 table_index,
62 session_endpoint_t * sep);
63u32 session_lookup_local_session_endpoint (u32 table_index,
64 session_endpoint_t * sep);
65int session_lookup_add_session_endpoint (u32 table_index,
66 session_endpoint_t * sep, u64 value);
67int session_lookup_del_session_endpoint (u32 table_index,
68 session_endpoint_t * sep);
69int session_lookup_del_session (stream_session_t * s);
70int session_lookup_del_half_open (transport_connection_t * tc);
71int session_lookup_add_half_open (transport_connection_t * tc, u64 value);
72u64 session_lookup_half_open_handle (transport_connection_t * tc);
73transport_connection_t *session_lookup_half_open_connection (u64 handle,
Florin Coras04e53442017-07-16 17:12:15 -070074 u8 proto,
Florin Corascea194d2017-10-02 00:18:51 -070075 u8 is_ip4);
76u32 session_lookup_get_index_for_fib (u32 fib_proto, u32 fib_index);
Florin Coras04e53442017-07-16 17:12:15 -070077
Florin Corascea194d2017-10-02 00:18:51 -070078u64 session_lookup_local_listener_make_handle (session_endpoint_t * sep);
79u8 session_lookup_local_is_handle (u64 handle);
80int session_lookup_local_listener_parse_handle (u64 handle,
81 session_endpoint_t * sep);
Florin Coras04e53442017-07-16 17:12:15 -070082
Florin Corascea194d2017-10-02 00:18:51 -070083void session_lookup_show_table_entries (vlib_main_t * vm,
84 session_table_t * table, u8 type,
85 u8 is_local);
Florin Coras04e53442017-07-16 17:12:15 -070086void session_lookup_init (void);
87
88#endif /* SRC_VNET_SESSION_SESSION_LOOKUP_H_ */
89
90/*
91 * fd.io coding-style-patch-verification: ON
92 *
93 * Local Variables:
94 * eval: (c-set-style "gnu")
95 * End:
96 */