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_TRANSPORT_INTERFACE_H_ |
| 17 | #define SRC_VNET_SESSION_TRANSPORT_INTERFACE_H_ |
| 18 | |
| 19 | #include <vnet/vnet.h> |
| 20 | #include <vnet/session/transport.h> |
| 21 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame^] | 22 | typedef enum transport_dequeue_type_ |
| 23 | { |
| 24 | TRANSPORT_TX_PEEK, /**< reliable transport protos */ |
| 25 | TRANSPORT_TX_DEQUEUE, /**< unreliable transport protos */ |
| 26 | TRANSPORT_TX_INTERNAL, /**< apps acting as transports */ |
| 27 | TRANSPORT_TX_N_FNS |
| 28 | } transport_tx_fn_type_t; |
| 29 | |
| 30 | typedef enum transport_service_type_ |
| 31 | { |
| 32 | TRANSPORT_SERVICE_VC, /**< virtual circuit service */ |
| 33 | TRANSPORT_SERVICE_CL, /**< connectionless service */ |
| 34 | TRANSPORT_SERVICE_APP, /**< app transport service */ |
| 35 | TRANSPORT_N_SERVICES |
| 36 | } transport_service_type_t; |
| 37 | |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 38 | /* |
| 39 | * Transport protocol virtual function table |
| 40 | */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame^] | 41 | /* *INDENT-OFF* */ |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 42 | typedef struct _transport_proto_vft |
| 43 | { |
| 44 | /* |
| 45 | * Setup |
| 46 | */ |
| 47 | u32 (*bind) (u32 session_index, transport_endpoint_t * lcl); |
| 48 | u32 (*unbind) (u32); |
| 49 | int (*open) (transport_endpoint_t * rmt); |
| 50 | void (*close) (u32 conn_index, u32 thread_index); |
| 51 | void (*cleanup) (u32 conn_index, u32 thread_index); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 52 | clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 53 | |
| 54 | /* |
| 55 | * Transmission |
| 56 | */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame^] | 57 | |
| 58 | u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b); |
| 59 | u16 (*send_mss) (transport_connection_t * tc); |
| 60 | u32 (*send_space) (transport_connection_t * tc); |
| 61 | u32 (*tx_fifo_offset) (transport_connection_t * tc); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 62 | void (*update_time) (f64 time_now, u8 thread_index); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * Connection retrieval |
| 66 | */ |
| 67 | transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx); |
| 68 | transport_connection_t *(*get_listener) (u32 conn_index); |
| 69 | transport_connection_t *(*get_half_open) (u32 conn_index); |
| 70 | |
| 71 | /* |
| 72 | * Format |
| 73 | */ |
| 74 | u8 *(*format_connection) (u8 * s, va_list * args); |
| 75 | u8 *(*format_listener) (u8 * s, va_list * args); |
| 76 | u8 *(*format_half_open) (u8 * s, va_list * args); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame^] | 77 | |
| 78 | /* |
| 79 | * Properties |
| 80 | */ |
| 81 | transport_tx_fn_type_t tx_type; |
| 82 | transport_service_type_t service_type; |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 83 | } transport_proto_vft_t; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame^] | 84 | /* *INDENT-ON* */ |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 85 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 86 | extern transport_proto_vft_t *tp_vfts; |
| 87 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame^] | 88 | #define transport_proto_foreach(VAR, BODY) \ |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 89 | do { \ |
| 90 | for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \ |
| 91 | if (tp_vfts[VAR].push_header != 0) \ |
| 92 | do { BODY; } while (0); \ |
| 93 | } while (0) |
| 94 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 95 | void transport_register_protocol (transport_proto_t transport_proto, |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 96 | const transport_proto_vft_t * vft, |
| 97 | fib_protocol_t fib_proto, u32 output_node); |
| 98 | transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp); |
| 99 | void transport_update_time (f64 time_now, u8 thread_index); |
| 100 | void transport_enable_disable (vlib_main_t * vm, u8 is_en); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 101 | |
| 102 | #endif /* SRC_VNET_SESSION_TRANSPORT_INTERFACE_H_ */ |
| 103 | |
| 104 | /* |
| 105 | * fd.io coding-style-patch-verification: ON |
| 106 | * |
| 107 | * Local Variables: |
| 108 | * eval: (c-set-style "gnu") |
| 109 | * End: |
| 110 | */ |