blob: 4547a4dc4ef88d0563358ccdf6b467407c863c2a [file] [log] [blame]
Dave Barach1015a1e2017-05-08 19:15:03 -04001/*
Florin Corasc5df8c72019-04-08 07:42:30 -07002* Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach1015a1e2017-05-08 19:15:03 -04003* 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#include <vnet/vnet.h>
Dave Barach1015a1e2017-05-08 19:15:03 -040017#include <vnet/session/application.h>
18#include <vnet/session/application_interface.h>
Florin Coras54a51fd2019-02-07 15:34:52 -080019#include <vnet/session/session.h>
Florin Corasdc43bcd2019-04-05 18:23:08 -070020#include <vppinfra/tw_timer_2t_1w_2048sl.h>
Dave Barach1015a1e2017-05-08 19:15:03 -040021
Dave Barach1015a1e2017-05-08 19:15:03 -040022typedef enum
23{
24 EVENT_WAKEUP = 1,
25} http_process_event_t;
26
27typedef struct
28{
Florin Coras844a36d2018-12-20 09:50:50 -080029 u32 hs_index;
30 u32 thread_index;
Florin Coras0e9c33b2017-08-14 22:33:41 -070031 u64 node_index;
Florin Coras4399c2e2018-01-25 06:34:42 -080032} http_server_args;
Florin Coras0e9c33b2017-08-14 22:33:41 -070033
Florin Coras844a36d2018-12-20 09:50:50 -080034typedef enum
35{
36 HTTP_STATE_CLOSED,
37 HTTP_STATE_ESTABLISHED,
38 HTTP_STATE_OK_SENT,
39} http_session_state_t;
40typedef struct
41{
42 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
43#define _(type, name) type name;
44 foreach_app_session_field
45#undef _
46 u32 thread_index;
47 u8 *rx_buf;
48 u32 vpp_session_index;
49 u64 vpp_session_handle;
Florin Corasdc43bcd2019-04-05 18:23:08 -070050 u32 timer_handle;
Florin Coras844a36d2018-12-20 09:50:50 -080051} http_session_t;
52
Florin Coras0e9c33b2017-08-14 22:33:41 -070053typedef struct
54{
Florin Coras844a36d2018-12-20 09:50:50 -080055 http_session_t **sessions;
56 clib_rwlock_t sessions_lock;
57 u32 **session_to_http_session;
58
Florin Coras3c2fed52018-07-04 04:15:05 -070059 svm_msg_q_t **vpp_queue;
Dave Barach1015a1e2017-05-08 19:15:03 -040060
61 uword *handler_by_get_request;
62
63 u32 *free_http_cli_process_node_indices;
64
65 /* Sever's event queue */
Florin Corase86a8ed2018-01-05 03:20:25 -080066 svm_queue_t *vl_input_queue;
Dave Barach1015a1e2017-05-08 19:15:03 -040067
68 /* API client handle */
69 u32 my_client_index;
70
71 u32 app_index;
72
73 /* process node index for evnt scheduling */
74 u32 node_index;
Florin Coras1d6d0852017-11-17 14:26:01 -080075
Florin Corasdc43bcd2019-04-05 18:23:08 -070076 tw_timer_wheel_2t_1w_2048sl_t tw;
77 clib_spinlock_t tw_lock;
78
Florin Coras1d6d0852017-11-17 14:26:01 -080079 u32 prealloc_fifos;
80 u32 private_segment_size;
81 u32 fifo_size;
Florin Coras371ca502018-02-21 12:07:41 -080082 u8 *uri;
Florin Coras844a36d2018-12-20 09:50:50 -080083 u32 is_static;
Dave Barach1015a1e2017-05-08 19:15:03 -040084 vlib_main_t *vlib_main;
85} http_server_main_t;
86
87http_server_main_t http_server_main;
88
89static void
Florin Coras844a36d2018-12-20 09:50:50 -080090http_server_sessions_reader_lock (void)
91{
92 clib_rwlock_reader_lock (&http_server_main.sessions_lock);
93}
94
95static void
96http_server_sessions_reader_unlock (void)
97{
98 clib_rwlock_reader_unlock (&http_server_main.sessions_lock);
99}
100
101static void
102http_server_sessions_writer_lock (void)
103{
104 clib_rwlock_writer_lock (&http_server_main.sessions_lock);
105}
106
107static void
108http_server_sessions_writer_unlock (void)
109{
110 clib_rwlock_writer_unlock (&http_server_main.sessions_lock);
111}
112
Florin Corasdc43bcd2019-04-05 18:23:08 -0700113static http_session_t *
114http_server_session_alloc (u32 thread_index)
115{
116 http_server_main_t *hsm = &http_server_main;
117 http_session_t *hs;
118 pool_get (hsm->sessions[thread_index], hs);
119 memset (hs, 0, sizeof (*hs));
120 hs->session_index = hs - hsm->sessions[thread_index];
121 hs->thread_index = thread_index;
122 hs->timer_handle = ~0;
123 return hs;
124}
125
126static http_session_t *
127http_server_session_get (u32 thread_index, u32 hs_index)
128{
129 http_server_main_t *hsm = &http_server_main;
130 if (pool_is_free_index (hsm->sessions[thread_index], hs_index))
131 return 0;
132 return pool_elt_at_index (hsm->sessions[thread_index], hs_index);
133}
134
135static void
136http_server_session_free (http_session_t * hs)
137{
138 http_server_main_t *hsm = &http_server_main;
139 pool_put (hsm->sessions[hs->thread_index], hs);
140 if (CLIB_DEBUG)
141 memset (hs, 0xfa, sizeof (*hs));
142}
143
Florin Coras844a36d2018-12-20 09:50:50 -0800144static void
145http_server_session_lookup_add (u32 thread_index, u32 s_index, u32 hs_index)
146{
147 http_server_main_t *hsm = &http_server_main;
148 vec_validate (hsm->session_to_http_session[thread_index], s_index);
149 hsm->session_to_http_session[thread_index][s_index] = hs_index;
150}
151
152static void
153http_server_session_lookup_del (u32 thread_index, u32 s_index)
154{
155 http_server_main_t *hsm = &http_server_main;
156 hsm->session_to_http_session[thread_index][s_index] = ~0;
157}
158
159static http_session_t *
160http_server_session_lookup (u32 thread_index, u32 s_index)
161{
162 http_server_main_t *hsm = &http_server_main;
163 u32 hs_index;
164
165 if (s_index < vec_len (hsm->session_to_http_session[thread_index]))
166 {
167 hs_index = hsm->session_to_http_session[thread_index][s_index];
Florin Corasdc43bcd2019-04-05 18:23:08 -0700168 return http_server_session_get (thread_index, hs_index);
Florin Coras844a36d2018-12-20 09:50:50 -0800169 }
170 return 0;
171}
172
Florin Coras844a36d2018-12-20 09:50:50 -0800173
Florin Corasdc43bcd2019-04-05 18:23:08 -0700174static void
175http_server_session_timer_start (http_session_t * hs)
Florin Coras844a36d2018-12-20 09:50:50 -0800176{
Florin Corasdc43bcd2019-04-05 18:23:08 -0700177 u32 hs_handle;
178 hs_handle = hs->thread_index << 24 | hs->session_index;
179 clib_spinlock_lock (&http_server_main.tw_lock);
180 hs->timer_handle = tw_timer_start_2t_1w_2048sl (&http_server_main.tw,
181 hs_handle, 0, 60);
182 clib_spinlock_unlock (&http_server_main.tw_lock);
Florin Coras844a36d2018-12-20 09:50:50 -0800183}
184
185static void
Florin Corasdc43bcd2019-04-05 18:23:08 -0700186http_server_session_timer_stop (http_session_t * hs)
Florin Coras844a36d2018-12-20 09:50:50 -0800187{
Florin Corasdc43bcd2019-04-05 18:23:08 -0700188 if (hs->timer_handle == ~0)
189 return;
190 clib_spinlock_lock (&http_server_main.tw_lock);
191 tw_timer_stop_2t_1w_2048sl (&http_server_main.tw, hs->timer_handle);
192 clib_spinlock_unlock (&http_server_main.tw_lock);
Florin Coras844a36d2018-12-20 09:50:50 -0800193}
194
195static void
196http_server_session_cleanup (http_session_t * hs)
197{
198 if (!hs)
199 return;
200 http_server_session_lookup_del (hs->thread_index, hs->vpp_session_index);
201 vec_free (hs->rx_buf);
Florin Corasdc43bcd2019-04-05 18:23:08 -0700202 http_server_session_timer_stop (hs);
Florin Coras844a36d2018-12-20 09:50:50 -0800203 http_server_session_free (hs);
204}
205
206static void
Florin Corasdc43bcd2019-04-05 18:23:08 -0700207http_server_session_disconnect (http_session_t * hs)
208{
209 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
210 a->handle = hs->vpp_session_handle;
211 a->app_index = http_server_main.app_index;
212 vnet_disconnect_session (a);
213}
214
215static void
Florin Coras844a36d2018-12-20 09:50:50 -0800216http_process_free (http_server_args * args)
Dave Barach1015a1e2017-05-08 19:15:03 -0400217{
218 vlib_node_runtime_t *rt;
219 vlib_main_t *vm = &vlib_global_main;
220 http_server_main_t *hsm = &http_server_main;
221 vlib_node_t *n;
222 u32 node_index;
Florin Coras4399c2e2018-01-25 06:34:42 -0800223 http_server_args **save_args;
Dave Barach1015a1e2017-05-08 19:15:03 -0400224
Florin Coras0e9c33b2017-08-14 22:33:41 -0700225 node_index = args->node_index;
Dave Barach1015a1e2017-05-08 19:15:03 -0400226 ASSERT (node_index != 0);
227
228 n = vlib_get_node (vm, node_index);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700229 rt = vlib_node_get_runtime (vm, n->index);
230 save_args = vlib_node_get_runtime_data (vm, n->index);
Dave Barach1015a1e2017-05-08 19:15:03 -0400231
Dave Barach1015a1e2017-05-08 19:15:03 -0400232 /* Reset process session pointer */
Florin Coras0e9c33b2017-08-14 22:33:41 -0700233 clib_mem_free (*save_args);
234 *save_args = 0;
Dave Barach1015a1e2017-05-08 19:15:03 -0400235
236 /* Turn off the process node */
237 vlib_node_set_state (vm, rt->node_index, VLIB_NODE_STATE_DISABLED);
238
239 /* add node index to the freelist */
240 vec_add1 (hsm->free_http_cli_process_node_indices, node_index);
241}
242
Florin Coras898cd8f2018-06-08 02:02:13 -0700243/* *INDENT-OFF* */
Florin Coras844a36d2018-12-20 09:50:50 -0800244static const char *http_ok =
245 "HTTP/1.1 200 OK\r\n";
246
Florin Coras898cd8f2018-06-08 02:02:13 -0700247static const char *http_response =
Florin Coras898cd8f2018-06-08 02:02:13 -0700248 "Content-Type: text/html\r\n"
249 "Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n"
Florin Coras844a36d2018-12-20 09:50:50 -0800250 "Connection: close \r\n"
Florin Coras898cd8f2018-06-08 02:02:13 -0700251 "Pragma: no-cache\r\n"
252 "Content-Length: %d\r\n\r\n%s";
Dave Barach1015a1e2017-05-08 19:15:03 -0400253
Florin Coras898cd8f2018-06-08 02:02:13 -0700254static const char *http_error_template =
255 "HTTP/1.1 %s\r\n"
256 "Content-Type: text/html\r\n"
257 "Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n"
258 "Connection: close\r\n"
259 "Pragma: no-cache\r\n"
260 "Content-Length: 0\r\n\r\n";
Dave Barach1015a1e2017-05-08 19:15:03 -0400261
262/* Header, including incantation to suppress favicon.ico requests */
Florin Coras898cd8f2018-06-08 02:02:13 -0700263static const char *html_header_template =
264 "<html><head><title>%v</title></head>"
265 "<link rel=\"icon\" href=\"data:,\">"
266 "<body><pre>";
Dave Barach1015a1e2017-05-08 19:15:03 -0400267
Florin Coras898cd8f2018-06-08 02:02:13 -0700268static const char *html_footer =
269 "</pre></body></html>\r\n";
Dave Barach1015a1e2017-05-08 19:15:03 -0400270
Florin Coras898cd8f2018-06-08 02:02:13 -0700271static const char *html_header_static =
272 "<html><head><title>static reply</title></head>"
273 "<link rel=\"icon\" href=\"data:,\">"
274 "<body><pre>hello</pre></body></html>\r\n";
275/* *INDENT-ON* */
Florin Coras149d62f2017-11-01 15:05:49 -0700276
277static u8 *static_http;
Florin Coras844a36d2018-12-20 09:50:50 -0800278static u8 *static_ok;
Florin Coras149d62f2017-11-01 15:05:49 -0700279
Dave Barach1015a1e2017-05-08 19:15:03 -0400280static void
281http_cli_output (uword arg, u8 * buffer, uword buffer_bytes)
282{
283 u8 **output_vecp = (u8 **) arg;
284 u8 *output_vec;
285 u32 offset;
286
287 output_vec = *output_vecp;
288
289 offset = vec_len (output_vec);
290 vec_validate (output_vec, offset + buffer_bytes - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500291 clib_memcpy_fast (output_vec + offset, buffer, buffer_bytes);
Dave Barach1015a1e2017-05-08 19:15:03 -0400292
293 *output_vecp = output_vec;
294}
295
296void
Florin Coras844a36d2018-12-20 09:50:50 -0800297send_data (http_session_t * hs, u8 * data)
Dave Barach1015a1e2017-05-08 19:15:03 -0400298{
Florin Coras844a36d2018-12-20 09:50:50 -0800299 http_server_main_t *hsm = &http_server_main;
300 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
301 vlib_main_t *vm = vlib_get_main ();
302 f64 last_sent_timer = vlib_time_now (vm);
Dave Barach1015a1e2017-05-08 19:15:03 -0400303 u32 offset, bytes_to_send;
304 f64 delay = 10e-3;
Dave Barach1015a1e2017-05-08 19:15:03 -0400305
306 bytes_to_send = vec_len (data);
307 offset = 0;
308
309 while (bytes_to_send > 0)
310 {
311 int actual_transfer;
312
313 actual_transfer = svm_fifo_enqueue_nowait
Florin Coras844a36d2018-12-20 09:50:50 -0800314 (hs->tx_fifo, bytes_to_send, data + offset);
Dave Barach1015a1e2017-05-08 19:15:03 -0400315
316 /* Made any progress? */
317 if (actual_transfer <= 0)
318 {
Dave Barach26dc58b2019-03-29 14:08:45 -0400319 http_server_sessions_reader_unlock ();
Dave Barach1015a1e2017-05-08 19:15:03 -0400320 vlib_process_suspend (vm, delay);
Dave Barach26dc58b2019-03-29 14:08:45 -0400321 http_server_sessions_reader_lock ();
322
Dave Barach1015a1e2017-05-08 19:15:03 -0400323 /* 10s deadman timer */
324 if (vlib_time_now (vm) > last_sent_timer + 10.0)
325 {
Florin Coras844a36d2018-12-20 09:50:50 -0800326 a->handle = hs->vpp_session_handle;
327 a->app_index = hsm->app_index;
328 vnet_disconnect_session (a);
Dave Barach1015a1e2017-05-08 19:15:03 -0400329 break;
330 }
331 /* Exponential backoff, within reason */
332 if (delay < 1.0)
333 delay = delay * 2.0;
334 }
335 else
336 {
337 last_sent_timer = vlib_time_now (vm);
338 offset += actual_transfer;
339 bytes_to_send -= actual_transfer;
340
Florin Coras844a36d2018-12-20 09:50:50 -0800341 if (svm_fifo_set_event (hs->tx_fifo))
342 session_send_io_evt_to_thread (hs->tx_fifo,
343 SESSION_IO_EVT_TX_FLUSH);
Dave Barach1015a1e2017-05-08 19:15:03 -0400344 delay = 10e-3;
345 }
346 }
347}
348
349static void
Florin Coras844a36d2018-12-20 09:50:50 -0800350send_error (http_session_t * hs, char *str)
Dave Barach1015a1e2017-05-08 19:15:03 -0400351{
352 u8 *data;
353
354 data = format (0, http_error_template, str);
Florin Coras844a36d2018-12-20 09:50:50 -0800355 send_data (hs, data);
Dave Barach1015a1e2017-05-08 19:15:03 -0400356 vec_free (data);
357}
358
359static uword
Florin Coras844a36d2018-12-20 09:50:50 -0800360http_cli_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
361 vlib_frame_t * f)
Dave Barach1015a1e2017-05-08 19:15:03 -0400362{
Florin Coras844a36d2018-12-20 09:50:50 -0800363 u8 *request = 0, *reply = 0, *http = 0, *html = 0;
Dave Barach1015a1e2017-05-08 19:15:03 -0400364 http_server_main_t *hsm = &http_server_main;
Florin Coras4399c2e2018-01-25 06:34:42 -0800365 http_server_args **save_args;
366 http_server_args *args;
Dave Barach1015a1e2017-05-08 19:15:03 -0400367 unformat_input_t input;
Florin Coras844a36d2018-12-20 09:50:50 -0800368 http_session_t *hs;
Dave Barach1015a1e2017-05-08 19:15:03 -0400369 int i;
Dave Barach1015a1e2017-05-08 19:15:03 -0400370
Florin Coras0e9c33b2017-08-14 22:33:41 -0700371 save_args = vlib_node_get_runtime_data (hsm->vlib_main, rt->node_index);
372 args = *save_args;
Dave Barach1015a1e2017-05-08 19:15:03 -0400373
Florin Coras844a36d2018-12-20 09:50:50 -0800374 http_server_sessions_reader_lock ();
375
376 hs = http_server_session_get (args->thread_index, args->hs_index);
377 ASSERT (hs);
378
379 request = hs->rx_buf;
Dave Barach1015a1e2017-05-08 19:15:03 -0400380 if (vec_len (request) < 7)
381 {
Florin Coras844a36d2018-12-20 09:50:50 -0800382 send_error (hs, "400 Bad Request");
Dave Barach1015a1e2017-05-08 19:15:03 -0400383 goto out;
384 }
385
386 for (i = 0; i < vec_len (request) - 4; i++)
387 {
388 if (request[i] == 'G' &&
389 request[i + 1] == 'E' &&
390 request[i + 2] == 'T' && request[i + 3] == ' ')
391 goto found;
392 }
393bad_request:
Florin Coras844a36d2018-12-20 09:50:50 -0800394 send_error (hs, "400 Bad Request");
Dave Barach1015a1e2017-05-08 19:15:03 -0400395 goto out;
396
397found:
398 /* Lose "GET " */
399 vec_delete (request, i + 5, 0);
400
401 /* Replace slashes with spaces, stop at the end of the path */
402 i = 0;
403 while (1)
404 {
405 if (request[i] == '/')
406 request[i] = ' ';
407 else if (request[i] == ' ')
408 {
409 /* vlib_cli_input is vector-based, no need for a NULL */
410 _vec_len (request) = i;
411 break;
412 }
413 i++;
414 /* Should never happen */
415 if (i == vec_len (request))
416 goto bad_request;
417 }
418
419 /* Generate the html header */
420 html = format (0, html_header_template, request /* title */ );
421
422 /* Run the command */
Florin Coras844a36d2018-12-20 09:50:50 -0800423 unformat_init_vector (&input, vec_dup (request));
Dave Barach1015a1e2017-05-08 19:15:03 -0400424 vlib_cli_input (vm, &input, http_cli_output, (uword) & reply);
425 unformat_free (&input);
426 request = 0;
427
428 /* Generate the html page */
429 html = format (html, "%v", reply);
430 html = format (html, html_footer);
431 /* And the http reply */
Florin Coras844a36d2018-12-20 09:50:50 -0800432 http = format (0, http_ok, vec_len (http_ok));
433 http = format (http, http_response, vec_len (html), html);
Dave Barach1015a1e2017-05-08 19:15:03 -0400434
435 /* Send it */
Florin Coras844a36d2018-12-20 09:50:50 -0800436 send_data (hs, http);
Dave Barach1015a1e2017-05-08 19:15:03 -0400437
438out:
439 /* Cleanup */
Florin Coras844a36d2018-12-20 09:50:50 -0800440 http_server_sessions_reader_unlock ();
Dave Barach1015a1e2017-05-08 19:15:03 -0400441 vec_free (reply);
442 vec_free (html);
443 vec_free (http);
444
Florin Coras844a36d2018-12-20 09:50:50 -0800445 http_process_free (args);
Dave Barach1015a1e2017-05-08 19:15:03 -0400446 return (0);
447}
448
449static void
Florin Coras4399c2e2018-01-25 06:34:42 -0800450alloc_http_process (http_server_args * args)
Dave Barach1015a1e2017-05-08 19:15:03 -0400451{
452 char *name;
453 vlib_node_t *n;
454 http_server_main_t *hsm = &http_server_main;
455 vlib_main_t *vm = hsm->vlib_main;
456 uword l = vec_len (hsm->free_http_cli_process_node_indices);
Florin Coras4399c2e2018-01-25 06:34:42 -0800457 http_server_args **save_args;
Dave Barach1015a1e2017-05-08 19:15:03 -0400458
459 if (vec_len (hsm->free_http_cli_process_node_indices) > 0)
460 {
461 n = vlib_get_node (vm, hsm->free_http_cli_process_node_indices[l - 1]);
Dave Barach1015a1e2017-05-08 19:15:03 -0400462 vlib_node_set_state (vm, n->index, VLIB_NODE_STATE_POLLING);
Dave Barach1015a1e2017-05-08 19:15:03 -0400463 _vec_len (hsm->free_http_cli_process_node_indices) = l - 1;
464 }
465 else
466 {
467 static vlib_node_registration_t r = {
468 .function = http_cli_process,
469 .type = VLIB_NODE_TYPE_PROCESS,
470 .process_log2_n_stack_bytes = 16,
471 .runtime_data_bytes = sizeof (void *),
472 };
473
474 name = (char *) format (0, "http-cli-%d", l);
Dave Barach1015a1e2017-05-08 19:15:03 -0400475 r.name = name;
476 vlib_register_node (vm, &r);
477 vec_free (name);
478
479 n = vlib_get_node (vm, r.index);
480 }
481
Florin Coras0e9c33b2017-08-14 22:33:41 -0700482 /* Save the node index in the args. It won't be zero. */
483 args->node_index = n->index;
Dave Barach1015a1e2017-05-08 19:15:03 -0400484
Florin Coras0e9c33b2017-08-14 22:33:41 -0700485 /* Save the args (pointer) in the node runtime */
486 save_args = vlib_node_get_runtime_data (vm, n->index);
Florin Corasa1540172019-04-04 08:27:58 -0700487 *save_args = clib_mem_alloc (sizeof (*args));
488 clib_memcpy_fast (*save_args, args, sizeof (*args));
Dave Barach1015a1e2017-05-08 19:15:03 -0400489
490 vlib_start_process (vm, n->runtime_index);
491}
492
Florin Coras0e9c33b2017-08-14 22:33:41 -0700493static void
494alloc_http_process_callback (void *cb_args)
495{
Florin Coras4399c2e2018-01-25 06:34:42 -0800496 alloc_http_process ((http_server_args *) cb_args);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700497}
498
499static int
Florin Coras844a36d2018-12-20 09:50:50 -0800500session_rx_request (http_session_t * hs)
Florin Coras0e9c33b2017-08-14 22:33:41 -0700501{
Florin Coras844a36d2018-12-20 09:50:50 -0800502 u32 max_dequeue, cursize;
503 int n_read;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700504
Florin Coras844a36d2018-12-20 09:50:50 -0800505 cursize = vec_len (hs->rx_buf);
506 max_dequeue = svm_fifo_max_dequeue (hs->rx_fifo);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700507 if (PREDICT_FALSE (max_dequeue == 0))
Florin Coras149d62f2017-11-01 15:05:49 -0700508 return -1;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700509
Florin Coras844a36d2018-12-20 09:50:50 -0800510 vec_validate (hs->rx_buf, cursize + max_dequeue - 1);
511 n_read = app_recv_stream_raw (hs->rx_fifo, hs->rx_buf + cursize,
512 max_dequeue, 0, 0 /* peek */ );
513 ASSERT (n_read == max_dequeue);
514 if (svm_fifo_is_empty (hs->rx_fifo))
515 svm_fifo_unset_event (hs->rx_fifo);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700516
Florin Coras844a36d2018-12-20 09:50:50 -0800517 _vec_len (hs->rx_buf) = cursize + n_read;
Florin Coras149d62f2017-11-01 15:05:49 -0700518 return 0;
519}
520
521static int
Florin Coras288eaab2019-02-03 15:26:14 -0800522http_server_rx_callback (session_t * s)
Florin Coras149d62f2017-11-01 15:05:49 -0700523{
Florin Corasa1540172019-04-04 08:27:58 -0700524 http_server_args args;
Florin Coras844a36d2018-12-20 09:50:50 -0800525 http_session_t *hs;
JingLiuZTE7cafe762017-11-08 15:01:27 +0800526 int rv;
Florin Coras149d62f2017-11-01 15:05:49 -0700527
Florin Coras844a36d2018-12-20 09:50:50 -0800528 http_server_sessions_reader_lock ();
529
530 hs = http_server_session_lookup (s->thread_index, s->session_index);
531 if (!hs || hs->session_state != HTTP_STATE_ESTABLISHED)
532 return -1;
533
534 rv = session_rx_request (hs);
JingLiuZTE7cafe762017-11-08 15:01:27 +0800535 if (rv)
536 return rv;
Florin Coras0e9c33b2017-08-14 22:33:41 -0700537
538 /* send the command to a new/recycled vlib process */
Florin Corasa1540172019-04-04 08:27:58 -0700539 args.hs_index = hs->session_index;
540 args.thread_index = hs->thread_index;
Florin Coras844a36d2018-12-20 09:50:50 -0800541
542 http_server_sessions_reader_unlock ();
Florin Coras0e9c33b2017-08-14 22:33:41 -0700543
Florin Corasa1540172019-04-04 08:27:58 -0700544 /* Send RPC request to main thread */
Florin Coras0e9c33b2017-08-14 22:33:41 -0700545 if (vlib_get_thread_index () != 0)
Florin Corasa1540172019-04-04 08:27:58 -0700546 vlib_rpc_call_main_thread (alloc_http_process_callback, (u8 *) & args,
547 sizeof (args));
Florin Coras0e9c33b2017-08-14 22:33:41 -0700548 else
Florin Corasa1540172019-04-04 08:27:58 -0700549 alloc_http_process (&args);
Florin Coras0e9c33b2017-08-14 22:33:41 -0700550 return 0;
551}
552
Dave Barach1015a1e2017-05-08 19:15:03 -0400553static int
Florin Coras288eaab2019-02-03 15:26:14 -0800554http_server_rx_callback_static (session_t * s)
Florin Coras149d62f2017-11-01 15:05:49 -0700555{
Florin Coras844a36d2018-12-20 09:50:50 -0800556 http_session_t *hs;
557 u32 request_len;
Florin Coras149d62f2017-11-01 15:05:49 -0700558 u8 *request = 0;
Florin Coras844a36d2018-12-20 09:50:50 -0800559 int i, rv;
Florin Coras149d62f2017-11-01 15:05:49 -0700560
Florin Coras844a36d2018-12-20 09:50:50 -0800561 hs = http_server_session_lookup (s->thread_index, s->session_index);
562 if (!hs || hs->session_state == HTTP_STATE_CLOSED)
563 return 0;
564
565 /* ok 200 was sent */
566 if (hs->session_state == HTTP_STATE_OK_SENT)
567 goto send_data;
568
569 rv = session_rx_request (hs);
JingLiuZTE7cafe762017-11-08 15:01:27 +0800570 if (rv)
Florin Coras844a36d2018-12-20 09:50:50 -0800571 goto wait_for_data;
Florin Coras149d62f2017-11-01 15:05:49 -0700572
Florin Coras844a36d2018-12-20 09:50:50 -0800573 request = hs->rx_buf;
574 request_len = vec_len (request);
Florin Coras149d62f2017-11-01 15:05:49 -0700575 if (vec_len (request) < 7)
576 {
Florin Coras844a36d2018-12-20 09:50:50 -0800577 send_error (hs, "400 Bad Request");
578 goto close_session;
Florin Coras149d62f2017-11-01 15:05:49 -0700579 }
580
Florin Coras844a36d2018-12-20 09:50:50 -0800581 for (i = 0; i < request_len - 4; i++)
Florin Coras149d62f2017-11-01 15:05:49 -0700582 {
583 if (request[i] == 'G' &&
584 request[i + 1] == 'E' &&
585 request[i + 2] == 'T' && request[i + 3] == ' ')
Florin Coras844a36d2018-12-20 09:50:50 -0800586 goto find_end;
Florin Coras149d62f2017-11-01 15:05:49 -0700587 }
Florin Coras844a36d2018-12-20 09:50:50 -0800588 send_error (hs, "400 Bad Request");
589 goto close_session;
Florin Coras149d62f2017-11-01 15:05:49 -0700590
Florin Coras844a36d2018-12-20 09:50:50 -0800591find_end:
Florin Coras149d62f2017-11-01 15:05:49 -0700592
Florin Coras844a36d2018-12-20 09:50:50 -0800593 /* check for the end sequence: /r/n/r/n */
594 if (request[request_len - 1] != 0xa || request[request_len - 3] != 0xa
595 || request[request_len - 2] != 0xd || request[request_len - 4] != 0xd)
596 goto wait_for_data;
Florin Coras149d62f2017-11-01 15:05:49 -0700597
Florin Coras844a36d2018-12-20 09:50:50 -0800598 /* send 200 OK first */
599 send_data (hs, static_ok);
600 hs->session_state = HTTP_STATE_OK_SENT;
601 goto postpone;
602
603send_data:
604 send_data (hs, static_http);
Florin Coras844a36d2018-12-20 09:50:50 -0800605
606close_session:
Florin Corasdc43bcd2019-04-05 18:23:08 -0700607 http_server_session_disconnect (hs);
608 http_server_session_cleanup (hs);
Florin Coras844a36d2018-12-20 09:50:50 -0800609 return 0;
610
611postpone:
Florin Coras78b5fa62019-02-21 20:04:15 -0800612 (void) svm_fifo_set_event (hs->rx_fifo);
Florin Corasf6c43132019-03-01 12:41:21 -0800613 session_send_io_evt_to_thread (hs->rx_fifo, SESSION_IO_EVT_BUILTIN_RX);
Florin Coras844a36d2018-12-20 09:50:50 -0800614 return 0;
615
616wait_for_data:
Florin Coras149d62f2017-11-01 15:05:49 -0700617 return 0;
618}
619
620static int
Florin Coras288eaab2019-02-03 15:26:14 -0800621http_server_session_accept_callback (session_t * s)
Dave Barach1015a1e2017-05-08 19:15:03 -0400622{
Florin Coras844a36d2018-12-20 09:50:50 -0800623 http_server_main_t *hsm = &http_server_main;
624 http_session_t *hs;
Dave Barach1015a1e2017-05-08 19:15:03 -0400625
Florin Coras844a36d2018-12-20 09:50:50 -0800626 hsm->vpp_queue[s->thread_index] =
Florin Coras31c99552019-03-01 13:00:58 -0800627 session_main_get_vpp_event_queue (s->thread_index);
Florin Coras844a36d2018-12-20 09:50:50 -0800628
629 if (!hsm->is_static)
630 http_server_sessions_writer_lock ();
631
632 hs = http_server_session_alloc (s->thread_index);
633 http_server_session_lookup_add (s->thread_index, s->session_index,
634 hs->session_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800635 hs->rx_fifo = s->rx_fifo;
636 hs->tx_fifo = s->tx_fifo;
Florin Coras844a36d2018-12-20 09:50:50 -0800637 hs->vpp_session_index = s->session_index;
638 hs->vpp_session_handle = session_handle (s);
639 hs->session_state = HTTP_STATE_ESTABLISHED;
Florin Corasdc43bcd2019-04-05 18:23:08 -0700640 http_server_session_timer_start (hs);
Florin Coras844a36d2018-12-20 09:50:50 -0800641
642 if (!hsm->is_static)
643 http_server_sessions_writer_unlock ();
644
Dave Barach1015a1e2017-05-08 19:15:03 -0400645 s->session_state = SESSION_STATE_READY;
Dave Barach1015a1e2017-05-08 19:15:03 -0400646 return 0;
647}
648
649static void
Florin Coras288eaab2019-02-03 15:26:14 -0800650http_server_session_disconnect_callback (session_t * s)
Dave Barach1015a1e2017-05-08 19:15:03 -0400651{
Florin Coras844a36d2018-12-20 09:50:50 -0800652 http_server_main_t *hsm = &http_server_main;
Florin Coras4af830c2018-12-04 09:21:36 -0800653 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras844a36d2018-12-20 09:50:50 -0800654 http_session_t *hs;
655
656 if (!hsm->is_static)
657 http_server_sessions_writer_lock ();
658
659 hs = http_server_session_lookup (s->thread_index, s->session_index);
660 http_server_session_cleanup (hs);
661
662 if (!hsm->is_static)
663 http_server_sessions_writer_unlock ();
Dave Barach1015a1e2017-05-08 19:15:03 -0400664
Florin Coras3cbc04b2017-10-02 00:18:51 -0700665 a->handle = session_handle (s);
Florin Coras844a36d2018-12-20 09:50:50 -0800666 a->app_index = hsm->app_index;
Dave Barach1015a1e2017-05-08 19:15:03 -0400667 vnet_disconnect_session (a);
668}
669
670static void
Florin Coras288eaab2019-02-03 15:26:14 -0800671http_server_session_reset_callback (session_t * s)
Dave Barach1015a1e2017-05-08 19:15:03 -0400672{
Florin Coras844a36d2018-12-20 09:50:50 -0800673 http_server_main_t *hsm = &http_server_main;
Florin Coras4af830c2018-12-04 09:21:36 -0800674 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras844a36d2018-12-20 09:50:50 -0800675 http_session_t *hs;
676
677 if (!hsm->is_static)
678 http_server_sessions_writer_lock ();
679
680 hs = http_server_session_lookup (s->thread_index, s->session_index);
681 http_server_session_cleanup (hs);
682
683 if (!hsm->is_static)
684 http_server_sessions_writer_unlock ();
685
Florin Coras4af830c2018-12-04 09:21:36 -0800686 a->handle = session_handle (s);
Florin Coras844a36d2018-12-20 09:50:50 -0800687 a->app_index = hsm->app_index;
Florin Coras4af830c2018-12-04 09:21:36 -0800688 vnet_disconnect_session (a);
Dave Barach1015a1e2017-05-08 19:15:03 -0400689}
690
Dave Barach1015a1e2017-05-08 19:15:03 -0400691static int
Florin Coras4399c2e2018-01-25 06:34:42 -0800692http_server_session_connected_callback (u32 app_index, u32 api_context,
Florin Coras288eaab2019-02-03 15:26:14 -0800693 session_t * s, u8 is_fail)
Dave Barach1015a1e2017-05-08 19:15:03 -0400694{
695 clib_warning ("called...");
696 return -1;
697}
698
699static int
Florin Corasfa76a762018-11-29 12:40:10 -0800700http_server_add_segment_callback (u32 client_index, u64 segment_handle)
Dave Barach1015a1e2017-05-08 19:15:03 -0400701{
702 clib_warning ("called...");
703 return -1;
704}
705
Florin Coras4399c2e2018-01-25 06:34:42 -0800706static session_cb_vft_t http_server_session_cb_vft = {
707 .session_accept_callback = http_server_session_accept_callback,
708 .session_disconnect_callback = http_server_session_disconnect_callback,
709 .session_connected_callback = http_server_session_connected_callback,
710 .add_segment_callback = http_server_add_segment_callback,
Florin Coras371ca502018-02-21 12:07:41 -0800711 .builtin_app_rx_callback = http_server_rx_callback,
Florin Coras4399c2e2018-01-25 06:34:42 -0800712 .session_reset_callback = http_server_session_reset_callback
Dave Barach1015a1e2017-05-08 19:15:03 -0400713};
714
Dave Barach1015a1e2017-05-08 19:15:03 -0400715static int
Florin Coras844a36d2018-12-20 09:50:50 -0800716http_server_attach ()
Dave Barach1015a1e2017-05-08 19:15:03 -0400717{
Florin Coras371ca502018-02-21 12:07:41 -0800718 vnet_app_add_tls_cert_args_t _a_cert, *a_cert = &_a_cert;
719 vnet_app_add_tls_key_args_t _a_key, *a_key = &_a_key;
Dave Barach1015a1e2017-05-08 19:15:03 -0400720 http_server_main_t *hsm = &http_server_main;
Florin Corasff6e7692017-12-11 04:59:01 -0800721 u64 options[APP_OPTIONS_N_OPTIONS];
Dave Barach1015a1e2017-05-08 19:15:03 -0400722 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasff6e7692017-12-11 04:59:01 -0800723 u32 segment_size = 128 << 20;
Dave Barach1015a1e2017-05-08 19:15:03 -0400724
Dave Barachb7b92992018-10-17 10:38:51 -0400725 clib_memset (a, 0, sizeof (*a));
726 clib_memset (options, 0, sizeof (options));
Dave Barach1015a1e2017-05-08 19:15:03 -0400727
Florin Corasff6e7692017-12-11 04:59:01 -0800728 if (hsm->private_segment_size)
729 segment_size = hsm->private_segment_size;
730
Florin Coras844a36d2018-12-20 09:50:50 -0800731 a->api_client_index = ~0;
732 a->name = format (0, "test_http_server");
Florin Coras4399c2e2018-01-25 06:34:42 -0800733 a->session_cb_vft = &http_server_session_cb_vft;
Dave Barach1015a1e2017-05-08 19:15:03 -0400734 a->options = options;
Florin Corasff6e7692017-12-11 04:59:01 -0800735 a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
736 a->options[APP_OPTIONS_RX_FIFO_SIZE] =
Florin Coras1d6d0852017-11-17 14:26:01 -0800737 hsm->fifo_size ? hsm->fifo_size : 8 << 10;
Florin Corasff6e7692017-12-11 04:59:01 -0800738 a->options[APP_OPTIONS_TX_FIFO_SIZE] =
Florin Coras1d6d0852017-11-17 14:26:01 -0800739 hsm->fifo_size ? hsm->fifo_size : 32 << 10;
Florin Coras7999e832017-10-31 01:51:04 -0700740 a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
Florin Coras1d6d0852017-11-17 14:26:01 -0800741 a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = hsm->prealloc_fifos;
Dave Barach1015a1e2017-05-08 19:15:03 -0400742
743 if (vnet_application_attach (a))
744 {
Florin Coras844a36d2018-12-20 09:50:50 -0800745 vec_free (a->name);
Dave Barach1015a1e2017-05-08 19:15:03 -0400746 clib_warning ("failed to attach server");
747 return -1;
748 }
Florin Coras844a36d2018-12-20 09:50:50 -0800749 vec_free (a->name);
Dave Barach1015a1e2017-05-08 19:15:03 -0400750 hsm->app_index = a->app_index;
Florin Coras371ca502018-02-21 12:07:41 -0800751
Dave Barachb7b92992018-10-17 10:38:51 -0400752 clib_memset (a_cert, 0, sizeof (*a_cert));
Florin Coras371ca502018-02-21 12:07:41 -0800753 a_cert->app_index = a->app_index;
754 vec_validate (a_cert->cert, test_srv_crt_rsa_len);
Dave Barach178cf492018-11-13 16:34:13 -0500755 clib_memcpy_fast (a_cert->cert, test_srv_crt_rsa, test_srv_crt_rsa_len);
Florin Coras371ca502018-02-21 12:07:41 -0800756 vnet_app_add_tls_cert (a_cert);
757
Dave Barachb7b92992018-10-17 10:38:51 -0400758 clib_memset (a_key, 0, sizeof (*a_key));
Florin Coras371ca502018-02-21 12:07:41 -0800759 a_key->app_index = a->app_index;
760 vec_validate (a_key->key, test_srv_key_rsa_len);
Dave Barach178cf492018-11-13 16:34:13 -0500761 clib_memcpy_fast (a_key->key, test_srv_key_rsa, test_srv_key_rsa_len);
Florin Coras371ca502018-02-21 12:07:41 -0800762 vnet_app_add_tls_key (a_key);
763
Dave Barach1015a1e2017-05-08 19:15:03 -0400764 return 0;
765}
766
767static int
Florin Coras4399c2e2018-01-25 06:34:42 -0800768http_server_listen ()
Dave Barach1015a1e2017-05-08 19:15:03 -0400769{
770 http_server_main_t *hsm = &http_server_main;
Florin Corasc9940fc2019-02-05 20:55:11 -0800771 vnet_listen_args_t _a, *a = &_a;
Dave Barachb7b92992018-10-17 10:38:51 -0400772 clib_memset (a, 0, sizeof (*a));
Dave Barach1015a1e2017-05-08 19:15:03 -0400773 a->app_index = hsm->app_index;
774 a->uri = "tcp://0.0.0.0/80";
Florin Coras371ca502018-02-21 12:07:41 -0800775 if (hsm->uri)
776 a->uri = (char *) hsm->uri;
Dave Barach1015a1e2017-05-08 19:15:03 -0400777 return vnet_bind_uri (a);
778}
779
Florin Corasdc43bcd2019-04-05 18:23:08 -0700780static void
781http_server_session_cleanup_cb (void *hs_handlep)
782{
783 http_session_t *hs;
784 uword hs_handle;
785 hs_handle = pointer_to_uword (hs_handlep);
786 hs = http_server_session_get (hs_handle >> 24, hs_handle & 0x00FFFFFF);
787 if (!hs)
788 return;
789 hs->timer_handle = ~0;
790 http_server_session_disconnect (hs);
791 http_server_session_cleanup (hs);
792}
793
794static void
795http_expired_timers_dispatch (u32 * expired_timers)
796{
797 u32 hs_handle;
798 int i;
799
800 for (i = 0; i < vec_len (expired_timers); i++)
801 {
802 /* Get session handle. The first bit is the timer id */
803 hs_handle = expired_timers[i] & 0x7FFFFFFF;
804 session_send_rpc_evt_to_thread (hs_handle >> 24,
805 http_server_session_cleanup_cb,
806 uword_to_pointer (hs_handle, void *));
807 }
808}
809
810static uword
811http_server_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
812 vlib_frame_t * f)
813{
814 http_server_main_t *hsm = &http_server_main;
815 f64 now, timeout = 1.0;
816 uword *event_data = 0;
817 uword __clib_unused event_type;
818
819 while (1)
820 {
821 vlib_process_wait_for_event_or_clock (vm, timeout);
822 now = vlib_time_now (vm);
823 event_type = vlib_process_get_events (vm, (uword **) & event_data);
824
825 /* expire timers */
826 clib_spinlock_lock (&http_server_main.tw_lock);
827 tw_timer_expire_timers_2t_1w_2048sl (&hsm->tw, now);
828 clib_spinlock_unlock (&http_server_main.tw_lock);
829
830 vec_reset_length (event_data);
831 }
832 return 0;
833}
834
835/* *INDENT-OFF* */
836VLIB_REGISTER_NODE (http_server_process_node) =
837{
838 .function = http_server_process,
839 .type = VLIB_NODE_TYPE_PROCESS,
840 .name = "http-server-process",
841 .state = VLIB_NODE_STATE_DISABLED,
842};
843/* *INDENT-ON* */
844
Dave Barach1015a1e2017-05-08 19:15:03 -0400845static int
Florin Coras4399c2e2018-01-25 06:34:42 -0800846http_server_create (vlib_main_t * vm)
Dave Barach1015a1e2017-05-08 19:15:03 -0400847{
Florin Coras844a36d2018-12-20 09:50:50 -0800848 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Dave Barach1015a1e2017-05-08 19:15:03 -0400849 http_server_main_t *hsm = &http_server_main;
850 u32 num_threads;
Florin Corasdc43bcd2019-04-05 18:23:08 -0700851 vlib_node_t *n;
Dave Barach1015a1e2017-05-08 19:15:03 -0400852
853 num_threads = 1 /* main thread */ + vtm->n_threads;
Florin Coras844a36d2018-12-20 09:50:50 -0800854 vec_validate (hsm->vpp_queue, num_threads - 1);
855 vec_validate (hsm->sessions, num_threads - 1);
856 vec_validate (hsm->session_to_http_session, num_threads - 1);
Dave Barach1015a1e2017-05-08 19:15:03 -0400857
Florin Coras844a36d2018-12-20 09:50:50 -0800858 clib_rwlock_init (&hsm->sessions_lock);
Florin Corasdc43bcd2019-04-05 18:23:08 -0700859 clib_spinlock_init (&hsm->tw_lock);
Florin Coras844a36d2018-12-20 09:50:50 -0800860
861 if (http_server_attach ())
Dave Barach1015a1e2017-05-08 19:15:03 -0400862 {
863 clib_warning ("failed to attach server");
864 return -1;
865 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800866 if (http_server_listen ())
Dave Barach1015a1e2017-05-08 19:15:03 -0400867 {
868 clib_warning ("failed to start listening");
869 return -1;
870 }
Florin Corasdc43bcd2019-04-05 18:23:08 -0700871
872 /* Init timer wheel and process */
873 tw_timer_wheel_init_2t_1w_2048sl (&hsm->tw, http_expired_timers_dispatch,
874 1 /* timer interval */ , ~0);
875 vlib_node_set_state (vm, http_server_process_node.index,
876 VLIB_NODE_STATE_POLLING);
877 n = vlib_get_node (vm, http_server_process_node.index);
878 vlib_start_process (vm, n->runtime_index);
879
Dave Barach1015a1e2017-05-08 19:15:03 -0400880 return 0;
881}
882
Dave Barach1015a1e2017-05-08 19:15:03 -0400883static clib_error_t *
Florin Coras4399c2e2018-01-25 06:34:42 -0800884http_server_create_command_fn (vlib_main_t * vm,
885 unformat_input_t * input,
886 vlib_cli_command_t * cmd)
Dave Barach1015a1e2017-05-08 19:15:03 -0400887{
Florin Coras0e9c33b2017-08-14 22:33:41 -0700888 http_server_main_t *hsm = &http_server_main;
Dave Barach26dc58b2019-03-29 14:08:45 -0400889 unformat_input_t _line_input, *line_input = &_line_input;
Florin Coras1d6d0852017-11-17 14:26:01 -0800890 u64 seg_size;
Florin Coras149d62f2017-11-01 15:05:49 -0700891 u8 *html;
Florin Coras844a36d2018-12-20 09:50:50 -0800892 int rv;
Dave Barach1015a1e2017-05-08 19:15:03 -0400893
Florin Coras1d6d0852017-11-17 14:26:01 -0800894 hsm->prealloc_fifos = 0;
895 hsm->private_segment_size = 0;
896 hsm->fifo_size = 0;
Florin Coras844a36d2018-12-20 09:50:50 -0800897 hsm->is_static = 0;
Dave Barach26dc58b2019-03-29 14:08:45 -0400898
899 /* Get a line of input. */
900 if (!unformat_user (input, unformat_line_input, line_input))
901 goto start_server;
902
903 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Florin Coras149d62f2017-11-01 15:05:49 -0700904 {
Dave Barach26dc58b2019-03-29 14:08:45 -0400905 if (unformat (line_input, "static"))
Florin Coras844a36d2018-12-20 09:50:50 -0800906 hsm->is_static = 1;
Dave Barach26dc58b2019-03-29 14:08:45 -0400907 else
908 if (unformat (line_input, "prealloc-fifos %d", &hsm->prealloc_fifos))
Florin Coras1d6d0852017-11-17 14:26:01 -0800909 ;
Dave Barach26dc58b2019-03-29 14:08:45 -0400910 else if (unformat (line_input, "private-segment-size %U",
Florin Coras1d6d0852017-11-17 14:26:01 -0800911 unformat_memory_size, &seg_size))
912 {
913 if (seg_size >= 0x100000000ULL)
914 {
915 vlib_cli_output (vm, "private segment size %llu, too large",
916 seg_size);
917 return 0;
918 }
919 hsm->private_segment_size = seg_size;
920 }
Dave Barach26dc58b2019-03-29 14:08:45 -0400921 else if (unformat (line_input, "fifo-size %d", &hsm->fifo_size))
Florin Coras1d6d0852017-11-17 14:26:01 -0800922 hsm->fifo_size <<= 10;
Dave Barach26dc58b2019-03-29 14:08:45 -0400923 else if (unformat (line_input, "uri %s", &hsm->uri))
Florin Coras371ca502018-02-21 12:07:41 -0800924 ;
Florin Coras149d62f2017-11-01 15:05:49 -0700925 else
926 return clib_error_return (0, "unknown input `%U'",
Dave Barach26dc58b2019-03-29 14:08:45 -0400927 format_unformat_error, line_input);
Florin Coras149d62f2017-11-01 15:05:49 -0700928 }
Dave Barach26dc58b2019-03-29 14:08:45 -0400929 unformat_free (line_input);
930
931start_server:
932
Florin Coras0e9c33b2017-08-14 22:33:41 -0700933 if (hsm->my_client_index != (u32) ~ 0)
934 return clib_error_return (0, "test http server is already running");
935
Dave Barach1015a1e2017-05-08 19:15:03 -0400936 vnet_session_enable_disable (vm, 1 /* turn on TCP, etc. */ );
Florin Coras149d62f2017-11-01 15:05:49 -0700937
Florin Coras844a36d2018-12-20 09:50:50 -0800938 if (hsm->is_static)
Florin Coras149d62f2017-11-01 15:05:49 -0700939 {
Florin Coras371ca502018-02-21 12:07:41 -0800940 http_server_session_cb_vft.builtin_app_rx_callback =
Florin Coras149d62f2017-11-01 15:05:49 -0700941 http_server_rx_callback_static;
942 html = format (0, html_header_static);
943 static_http = format (0, http_response, vec_len (html), html);
Florin Coras844a36d2018-12-20 09:50:50 -0800944 static_ok = format (0, http_ok);
Florin Coras149d62f2017-11-01 15:05:49 -0700945 }
Florin Coras4399c2e2018-01-25 06:34:42 -0800946 rv = http_server_create (vm);
Dave Barach1015a1e2017-05-08 19:15:03 -0400947 switch (rv)
948 {
949 case 0:
950 break;
951 default:
952 return clib_error_return (0, "server_create returned %d", rv);
953 }
954 return 0;
955}
956
957/* *INDENT-OFF* */
Florin Coras4399c2e2018-01-25 06:34:42 -0800958VLIB_CLI_COMMAND (http_server_create_command, static) =
Dave Barach1015a1e2017-05-08 19:15:03 -0400959{
960 .path = "test http server",
961 .short_help = "test http server",
Florin Coras4399c2e2018-01-25 06:34:42 -0800962 .function = http_server_create_command_fn,
Dave Barach1015a1e2017-05-08 19:15:03 -0400963};
964/* *INDENT-ON* */
965
966static clib_error_t *
Florin Coras4399c2e2018-01-25 06:34:42 -0800967http_server_main_init (vlib_main_t * vm)
Dave Barach1015a1e2017-05-08 19:15:03 -0400968{
969 http_server_main_t *hsm = &http_server_main;
Florin Coras149d62f2017-11-01 15:05:49 -0700970
Dave Barach1015a1e2017-05-08 19:15:03 -0400971 hsm->my_client_index = ~0;
972 hsm->vlib_main = vm;
Dave Barach1015a1e2017-05-08 19:15:03 -0400973 return 0;
974}
975
Florin Coras4399c2e2018-01-25 06:34:42 -0800976VLIB_INIT_FUNCTION (http_server_main_init);
Dave Barach1015a1e2017-05-08 19:15:03 -0400977
978/*
979* fd.io coding-style-patch-verification: ON
980*
981* Local Variables:
982* eval: (c-set-style "gnu")
983* End:
984*/