blob: 745a7db444cfc7026b6eddfe2592faf22a2df6ec [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_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 Coras371ca502018-02-21 12:07:41 -080022typedef enum transport_dequeue_type_
23{
24 TRANSPORT_TX_PEEK, /**< reliable transport protos */
25 TRANSPORT_TX_DEQUEUE, /**< unreliable transport protos */
Florin Coras7fb0fe12018-04-09 09:24:52 -070026 TRANSPORT_TX_INTERNAL, /**< apps acting as transports */
27 TRANSPORT_TX_DGRAM, /**< datagram mode */
Florin Coras371ca502018-02-21 12:07:41 -080028 TRANSPORT_TX_N_FNS
29} transport_tx_fn_type_t;
30
31typedef enum transport_service_type_
32{
33 TRANSPORT_SERVICE_VC, /**< virtual circuit service */
34 TRANSPORT_SERVICE_CL, /**< connectionless service */
Florin Coras7fb0fe12018-04-09 09:24:52 -070035 TRANSPORT_SERVICE_APP, /**< app transport service */
Florin Coras371ca502018-02-21 12:07:41 -080036 TRANSPORT_N_SERVICES
37} transport_service_type_t;
38
Florin Coras04e53442017-07-16 17:12:15 -070039/*
40 * Transport protocol virtual function table
41 */
Florin Coras371ca502018-02-21 12:07:41 -080042/* *INDENT-OFF* */
Florin Coras04e53442017-07-16 17:12:15 -070043typedef struct _transport_proto_vft
44{
45 /*
46 * Setup
47 */
48 u32 (*bind) (u32 session_index, transport_endpoint_t * lcl);
49 u32 (*unbind) (u32);
50 int (*open) (transport_endpoint_t * rmt);
51 void (*close) (u32 conn_index, u32 thread_index);
52 void (*cleanup) (u32 conn_index, u32 thread_index);
Florin Coras561af9b2017-12-09 10:19:43 -080053 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Florin Coras04e53442017-07-16 17:12:15 -070054
55 /*
56 * Transmission
57 */
Florin Coras371ca502018-02-21 12:07:41 -080058
59 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
60 u16 (*send_mss) (transport_connection_t * tc);
61 u32 (*send_space) (transport_connection_t * tc);
62 u32 (*tx_fifo_offset) (transport_connection_t * tc);
Florin Coras561af9b2017-12-09 10:19:43 -080063 void (*update_time) (f64 time_now, u8 thread_index);
Florin Coras04e53442017-07-16 17:12:15 -070064
65 /*
66 * Connection retrieval
67 */
68 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
69 transport_connection_t *(*get_listener) (u32 conn_index);
70 transport_connection_t *(*get_half_open) (u32 conn_index);
71
72 /*
73 * Format
74 */
75 u8 *(*format_connection) (u8 * s, va_list * args);
76 u8 *(*format_listener) (u8 * s, va_list * args);
77 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Coras371ca502018-02-21 12:07:41 -080078
79 /*
80 * Properties
81 */
82 transport_tx_fn_type_t tx_type;
83 transport_service_type_t service_type;
Florin Coras04e53442017-07-16 17:12:15 -070084} transport_proto_vft_t;
Florin Coras371ca502018-02-21 12:07:41 -080085/* *INDENT-ON* */
Florin Coras04e53442017-07-16 17:12:15 -070086
Florin Coras561af9b2017-12-09 10:19:43 -080087extern transport_proto_vft_t *tp_vfts;
88
Florin Coras371ca502018-02-21 12:07:41 -080089#define transport_proto_foreach(VAR, BODY) \
Florin Coras561af9b2017-12-09 10:19:43 -080090do { \
91 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
92 if (tp_vfts[VAR].push_header != 0) \
93 do { BODY; } while (0); \
94} while (0)
95
Florin Coras3cbc04b2017-10-02 00:18:51 -070096void transport_register_protocol (transport_proto_t transport_proto,
Florin Coras561af9b2017-12-09 10:19:43 -080097 const transport_proto_vft_t * vft,
98 fib_protocol_t fib_proto, u32 output_node);
99transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700100transport_service_type_t transport_protocol_service_type (transport_proto_t);
Florin Corasf08f26d2018-05-10 13:20:47 -0700101transport_tx_fn_type_t transport_protocol_tx_fn_type (transport_proto_t tp);
Florin Coras561af9b2017-12-09 10:19:43 -0800102void transport_update_time (f64 time_now, u8 thread_index);
103void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras04e53442017-07-16 17:12:15 -0700104
105#endif /* SRC_VNET_SESSION_TRANSPORT_INTERFACE_H_ */
106
107/*
108 * fd.io coding-style-patch-verification: ON
109 *
110 * Local Variables:
111 * eval: (c-set-style "gnu")
112 * End:
113 */