Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 1 | /* |
| 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 Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 19 | #include <vnet/session/session_table.h> |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 20 | #include <vnet/session/stream_session.h> |
| 21 | #include <vnet/session/transport.h> |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 22 | #include <vnet/session/application_namespace.h> |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 23 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 24 | stream_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); |
| 27 | stream_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 Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 30 | transport_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, |
| 35 | u32 thread_index); |
| 36 | transport_connection_t *session_lookup_connection4 (u32 fib_index, |
| 37 | ip4_address_t * lcl, |
| 38 | ip4_address_t * rmt, |
| 39 | u16 lcl_port, |
| 40 | u16 rmt_port, u8 proto); |
| 41 | transport_connection_t *session_lookup_connection_wt6 (u32 fib_index, |
| 42 | ip6_address_t * lcl, |
| 43 | ip6_address_t * rmt, |
| 44 | u16 lcl_port, |
| 45 | u16 rmt_port, u8 proto, |
| 46 | u32 thread_index); |
| 47 | transport_connection_t *session_lookup_connection6 (u32 fib_index, |
| 48 | ip6_address_t * lcl, |
| 49 | ip6_address_t * rmt, |
| 50 | u16 lcl_port, |
| 51 | u16 rmt_port, u8 proto); |
| 52 | stream_session_t *session_lookup_listener4 (u32 fib_index, |
| 53 | ip4_address_t * lcl, u16 lcl_port, |
| 54 | u8 proto); |
| 55 | stream_session_t *session_lookup_listener6 (u32 fib_index, |
| 56 | ip6_address_t * lcl, u16 lcl_port, |
| 57 | u8 proto); |
| 58 | stream_session_t *session_lookup_listener (u32 table_index, |
| 59 | session_endpoint_t * sep); |
| 60 | int session_lookup_add_connection (transport_connection_t * tc, u64 value); |
| 61 | int session_lookup_del_connection (transport_connection_t * tc); |
Florin Coras | a2ff7b8 | 2017-11-08 17:55:03 -0800 | [diff] [blame] | 62 | u64 session_lookup_endpoint_listener (u32 table_index, |
Florin Coras | dbd4456 | 2017-11-09 19:30:17 -0800 | [diff] [blame^] | 63 | session_endpoint_t * sepi, |
| 64 | u8 use_rules); |
Florin Coras | a2ff7b8 | 2017-11-08 17:55:03 -0800 | [diff] [blame] | 65 | u32 session_lookup_local_endpoint (u32 table_index, session_endpoint_t * sep); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 66 | stream_session_t *session_lookup_global_session_endpoint (session_endpoint_t |
| 67 | *); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 68 | int session_lookup_add_session_endpoint (u32 table_index, |
| 69 | session_endpoint_t * sep, u64 value); |
| 70 | int session_lookup_del_session_endpoint (u32 table_index, |
| 71 | session_endpoint_t * sep); |
| 72 | int session_lookup_del_session (stream_session_t * s); |
| 73 | int session_lookup_del_half_open (transport_connection_t * tc); |
| 74 | int session_lookup_add_half_open (transport_connection_t * tc, u64 value); |
| 75 | u64 session_lookup_half_open_handle (transport_connection_t * tc); |
| 76 | transport_connection_t *session_lookup_half_open_connection (u64 handle, |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 77 | u8 proto, |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 78 | u8 is_ip4); |
| 79 | u32 session_lookup_get_index_for_fib (u32 fib_proto, u32 fib_index); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 80 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 81 | u64 session_lookup_local_listener_make_handle (session_endpoint_t * sep); |
| 82 | u8 session_lookup_local_is_handle (u64 handle); |
| 83 | int session_lookup_local_listener_parse_handle (u64 handle, |
| 84 | session_endpoint_t * sep); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 85 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 86 | void session_lookup_show_table_entries (vlib_main_t * vm, |
| 87 | session_table_t * table, u8 type, |
| 88 | u8 is_local); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 89 | |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 90 | void session_lookup_dump_rules_table (u32 fib_index, u8 fib_proto, |
| 91 | u8 transport_proto); |
| 92 | void session_lookup_dump_local_rules_table (u32 fib_index, u8 fib_proto, |
| 93 | u8 transport_proto); |
| 94 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 95 | enum _session_rule_scope |
| 96 | { |
| 97 | SESSION_RULE_SCOPE_GLOBAL = 1, |
| 98 | SESSION_RULE_SCOPE_LOCAL = 2, |
| 99 | } session_rule_scope_e; |
| 100 | |
| 101 | typedef struct _session_rule_add_del_args |
| 102 | { |
| 103 | /** |
| 104 | * Actual arguments to adding the rule to a session rules table |
| 105 | */ |
| 106 | session_rule_table_add_del_args_t table_args; |
| 107 | /** |
| 108 | * Application namespace where rule should be applied. If 0, |
| 109 | * default namespace is used. |
| 110 | */ |
| 111 | u32 appns_index; |
| 112 | /** |
| 113 | * Rule scope flag. |
| 114 | */ |
| 115 | u8 scope; |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 116 | /** |
| 117 | * Transport protocol for the rule |
| 118 | */ |
| 119 | u8 transport_proto; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 120 | } session_rule_add_del_args_t; |
| 121 | |
| 122 | clib_error_t *vnet_session_rule_add_del (session_rule_add_del_args_t * args); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 123 | void session_lookup_set_tables_appns (app_namespace_t * app_ns); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 124 | |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 125 | void session_lookup_init (void); |
| 126 | |
| 127 | #endif /* SRC_VNET_SESSION_SESSION_LOOKUP_H_ */ |
| 128 | |
| 129 | /* |
| 130 | * fd.io coding-style-patch-verification: ON |
| 131 | * |
| 132 | * Local Variables: |
| 133 | * eval: (c-set-style "gnu") |
| 134 | * End: |
| 135 | */ |