blob: 18684d54d834d55550d5e57866d3296405ec7135 [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
Florin Corasa5464812017-04-19 13:00:05 -070062 actual_transfer = svm_fifo_dequeue_nowait (rx_fifo, this_transfer,
Dave Barach68b0fb02017-02-28 15:15:56 -050063 my_copy_buffer);
64 ASSERT (actual_transfer == this_transfer);
Florin Corasa5464812017-04-19 13:00:05 -070065 actual_transfer = svm_fifo_enqueue_nowait (tx_fifo, this_transfer,
Dave Barach68b0fb02017-02-28 15:15:56 -050066 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;
Florin Corasa5464812017-04-19 13:00:05 -070075 evt.event_type = FIFO_EVENT_APP_TX;
Florin Coras6792ec02017-03-13 03:49:51 -070076 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
Florin Coras6cf30ad2017-04-04 23:08:23 -070094attach_builtin_uri_server ()
Dave Barach68b0fb02017-02-28 15:15:56 -050095{
Florin Coras6cf30ad2017-04-04 23:08:23 -070096 vnet_app_attach_args_t _a, *a = &_a;
97 u8 segment_name[128];
Dave Barach68b0fb02017-02-28 15:15:56 -050098 u32 segment_name_length;
Dave Barach68b0fb02017-02-28 15:15:56 -050099 u64 options[16];
100
101 segment_name_length = ARRAY_LEN (segment_name);
102
103 memset (a, 0, sizeof (*a));
104 memset (options, 0, sizeof (options));
105
Florin Coras6cf30ad2017-04-04 23:08:23 -0700106 a->api_client_index = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500107 a->segment_name = segment_name;
108 a->segment_name_length = segment_name_length;
109 a->session_cb_vft = &builtin_server;
110
111 options[SESSION_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
112 options[SESSION_OPTIONS_SEGMENT_SIZE] = (2 << 30); /*$$$$ config / arg */
Florin Corasa5464812017-04-19 13:00:05 -0700113 options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_BUILTIN_APP;
114
Dave Barach68b0fb02017-02-28 15:15:56 -0500115 a->options = options;
116
Florin Coras6cf30ad2017-04-04 23:08:23 -0700117 return vnet_application_attach (a);
118}
119
120static int
121bind_builtin_uri_server (u8 * uri)
122{
123 vnet_bind_args_t _a, *a = &_a;
124 int rv;
125
126 rv = attach_builtin_uri_server ();
127 if (rv)
128 return rv;
129
130 memset (a, 0, sizeof (*a));
131 a->uri = (char *) uri;
132 a->app_index = ~0; /* built-in server */
133
Dave Barach68b0fb02017-02-28 15:15:56 -0500134 rv = vnet_bind_uri (a);
135
136 return rv;
137}
138
139static int
140unbind_builtin_uri_server (u8 * uri)
141{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700142 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500143
Florin Coras6cf30ad2017-04-04 23:08:23 -0700144 a->app_index = ~0;
145 a->uri = (char *) uri;
Dave Barach68b0fb02017-02-28 15:15:56 -0500146
Florin Coras6cf30ad2017-04-04 23:08:23 -0700147 return vnet_unbind_uri (a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500148}
149
150static clib_error_t *
151builtin_server_init (vlib_main_t * vm)
152{
153 vlib_thread_main_t *vtm = vlib_get_thread_main ();
154 u32 num_threads;
155
156 num_threads = 1 /* main thread */ + vtm->n_threads;
157
158 vec_validate (copy_buffers, num_threads - 1);
159 return 0;
160}
161
162VLIB_INIT_FUNCTION (builtin_server_init);
163
164static clib_error_t *
165builtin_uri_bind_command_fn (vlib_main_t * vm,
166 unformat_input_t * input,
167 vlib_cli_command_t * cmd)
168{
169 u8 *uri = 0;
170 int rv;
171
172 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
173 {
174 if (unformat (input, "uri %s", &uri))
175 ;
176 else
177 break;
178 }
179
180 if (uri == 0)
181 return clib_error_return (0, "uri to bind not specified...");
182
183 rv = bind_builtin_uri_server (uri);
184
185 vec_free (uri);
186
187 switch (rv)
188 {
189 case 0:
190 break;
191
192 default:
193 return clib_error_return (0, "bind_uri_server returned %d", rv);
194 break;
195 }
196
197 return 0;
198}
199
200/* *INDENT-OFF* */
201VLIB_CLI_COMMAND (builtin_uri_bind_command, static) =
202{
203 .path = "builtin uri bind",
204 .short_help = "builtin uri bind",
205 .function = builtin_uri_bind_command_fn,
206};
207/* *INDENT-ON* */
208
209static clib_error_t *
210builtin_uri_unbind_command_fn (vlib_main_t * vm,
211 unformat_input_t * input,
212 vlib_cli_command_t * cmd)
213{
214 u8 *uri = 0;
215 int rv;
216
217 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
218 {
219 if (unformat (input, "uri %s", &uri))
220 ;
221 else
222 break;
223 }
224
225 if (uri == 0)
226 return clib_error_return (0, "uri to unbind not specified...");
227
228 rv = unbind_builtin_uri_server (uri);
229
230 vec_free (uri);
231
232 switch (rv)
233 {
234 case 0:
235 break;
236
237 default:
238 return clib_error_return (0, "unbind_uri_server returned %d", rv);
239 break;
240 }
241
242 return 0;
243}
244
245/* *INDENT-OFF* */
246VLIB_CLI_COMMAND (builtin_uri_unbind_command, static) =
247{
248 .path = "builtin uri unbind",
249 .short_help = "builtin uri unbind",
250 .function = builtin_uri_unbind_command_fn,
251};
252/* *INDENT-ON* */
253
254/*
255 * fd.io coding-style-patch-verification: ON
256 *
257 * Local Variables:
258 * eval: (c-set-style "gnu")
259 * End:
260 */