blob: 57f774c5954e4a14fdccb6a9410f5161179b9c49 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 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/** @file
17 udp builtin server
18*/
19
20#include <vnet/udp/udp.h>
21#include <vnet/session/session.h>
22#include <vnet/session/application_interface.h>
23
24/** per-worker built-in server copy buffers */
25u8 **copy_buffers;
26
27static int
28builtin_session_create_callback (stream_session_t * s)
29{
30 /* Simple version: declare session ready-to-go... */
31 s->session_state = SESSION_STATE_READY;
32 return 0;
33}
34
35static void
36builtin_session_disconnect_callback (stream_session_t * s)
37{
38 stream_session_disconnect (s);
39}
40
41static int
Florin Coras6792ec02017-03-13 03:49:51 -070042builtin_server_rx_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -050043{
44 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras6792ec02017-03-13 03:49:51 -070045 u32 this_transfer, max_deq, max_enq;
Dave Barach68b0fb02017-02-28 15:15:56 -050046 int actual_transfer;
47 u8 *my_copy_buffer;
48 session_fifo_event_t evt;
49 unix_shared_memory_queue_t *q;
50
51 my_copy_buffer = copy_buffers[s->thread_index];
52 rx_fifo = s->server_rx_fifo;
53 tx_fifo = s->server_tx_fifo;
54
Florin Coras6792ec02017-03-13 03:49:51 -070055 max_deq = svm_fifo_max_dequeue (rx_fifo);
56 max_enq = svm_fifo_max_enqueue (tx_fifo);
57 this_transfer = max_enq < max_deq ? max_enq : max_deq;
Dave Barach68b0fb02017-02-28 15:15:56 -050058
59 vec_validate (my_copy_buffer, this_transfer - 1);
60 _vec_len (my_copy_buffer) = this_transfer;
61
62 actual_transfer = svm_fifo_dequeue_nowait (rx_fifo, 0, this_transfer,
63 my_copy_buffer);
64 ASSERT (actual_transfer == this_transfer);
65 actual_transfer = svm_fifo_enqueue_nowait (tx_fifo, 0, this_transfer,
66 my_copy_buffer);
Florin Coras6792ec02017-03-13 03:49:51 -070067 ASSERT (actual_transfer == this_transfer);
Dave Barach68b0fb02017-02-28 15:15:56 -050068
69 copy_buffers[s->thread_index] = my_copy_buffer;
70
Florin Coras6792ec02017-03-13 03:49:51 -070071 if (svm_fifo_set_event (tx_fifo))
72 {
73 /* Fabricate TX event, send to ourselves */
74 evt.fifo = tx_fifo;
75 evt.event_type = FIFO_EVENT_SERVER_TX;
76 evt.event_id = 0;
77 q = session_manager_get_vpp_event_queue (s->thread_index);
78 unix_shared_memory_queue_add (q, (u8 *) & evt,
79 0 /* do wait for mutex */ );
80 }
Dave Barach68b0fb02017-02-28 15:15:56 -050081
82 return 0;
83}
84
85/* *INDENT-OFF* */
86static session_cb_vft_t builtin_server = {
87 .session_accept_callback = builtin_session_create_callback,
88 .session_disconnect_callback = builtin_session_disconnect_callback,
89 .builtin_server_rx_callback = builtin_server_rx_callback
90};
91/* *INDENT-ON* */
92
93static int
94bind_builtin_uri_server (u8 * uri)
95{
96 vnet_bind_args_t _a, *a = &_a;
97 char segment_name[128];
98 u32 segment_name_length;
99 int rv;
100 u64 options[16];
101
102 segment_name_length = ARRAY_LEN (segment_name);
103
104 memset (a, 0, sizeof (*a));
105 memset (options, 0, sizeof (options));
106
107 a->uri = (char *) uri;
108 a->api_client_index = ~0; /* built-in server */
109 a->segment_name = segment_name;
110 a->segment_name_length = segment_name_length;
111 a->session_cb_vft = &builtin_server;
112
113 options[SESSION_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
114 options[SESSION_OPTIONS_SEGMENT_SIZE] = (2 << 30); /*$$$$ config / arg */
115 a->options = options;
116
117 rv = vnet_bind_uri (a);
118
119 return rv;
120}
121
122static int
123unbind_builtin_uri_server (u8 * uri)
124{
125 int rv;
126
127 rv = vnet_unbind_uri ((char *) uri, ~0 /* client_index */ );
128
129 return rv;
130}
131
132static clib_error_t *
133builtin_server_init (vlib_main_t * vm)
134{
135 vlib_thread_main_t *vtm = vlib_get_thread_main ();
136 u32 num_threads;
137
138 num_threads = 1 /* main thread */ + vtm->n_threads;
139
140 vec_validate (copy_buffers, num_threads - 1);
141 return 0;
142}
143
144VLIB_INIT_FUNCTION (builtin_server_init);
145
146static clib_error_t *
147builtin_uri_bind_command_fn (vlib_main_t * vm,
148 unformat_input_t * input,
149 vlib_cli_command_t * cmd)
150{
151 u8 *uri = 0;
152 int rv;
153
154 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
155 {
156 if (unformat (input, "uri %s", &uri))
157 ;
158 else
159 break;
160 }
161
162 if (uri == 0)
163 return clib_error_return (0, "uri to bind not specified...");
164
165 rv = bind_builtin_uri_server (uri);
166
167 vec_free (uri);
168
169 switch (rv)
170 {
171 case 0:
172 break;
173
174 default:
175 return clib_error_return (0, "bind_uri_server returned %d", rv);
176 break;
177 }
178
179 return 0;
180}
181
182/* *INDENT-OFF* */
183VLIB_CLI_COMMAND (builtin_uri_bind_command, static) =
184{
185 .path = "builtin uri bind",
186 .short_help = "builtin uri bind",
187 .function = builtin_uri_bind_command_fn,
188};
189/* *INDENT-ON* */
190
191static clib_error_t *
192builtin_uri_unbind_command_fn (vlib_main_t * vm,
193 unformat_input_t * input,
194 vlib_cli_command_t * cmd)
195{
196 u8 *uri = 0;
197 int rv;
198
199 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
200 {
201 if (unformat (input, "uri %s", &uri))
202 ;
203 else
204 break;
205 }
206
207 if (uri == 0)
208 return clib_error_return (0, "uri to unbind not specified...");
209
210 rv = unbind_builtin_uri_server (uri);
211
212 vec_free (uri);
213
214 switch (rv)
215 {
216 case 0:
217 break;
218
219 default:
220 return clib_error_return (0, "unbind_uri_server returned %d", rv);
221 break;
222 }
223
224 return 0;
225}
226
227/* *INDENT-OFF* */
228VLIB_CLI_COMMAND (builtin_uri_unbind_command, static) =
229{
230 .path = "builtin uri unbind",
231 .short_help = "builtin uri unbind",
232 .function = builtin_uri_unbind_command_fn,
233};
234/* *INDENT-ON* */
235
236/*
237 * fd.io coding-style-patch-verification: ON
238 *
239 * Local Variables:
240 * eval: (c-set-style "gnu")
241 * End:
242 */