session: cleanup/rename functions
[vpp.git] / src / vnet / session-apps / http_server.c
1 /*
2 * Copyright (c) 2015-2019 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 #include <vnet/vnet.h>
17 #include <vnet/session/application.h>
18 #include <vnet/session/application_interface.h>
19 #include <vnet/session/session.h>
20
21 typedef enum
22 {
23   EVENT_WAKEUP = 1,
24 } http_process_event_t;
25
26 typedef struct
27 {
28   u32 hs_index;
29   u32 thread_index;
30   u64 node_index;
31 } http_server_args;
32
33 typedef enum
34 {
35   HTTP_STATE_CLOSED,
36   HTTP_STATE_ESTABLISHED,
37   HTTP_STATE_OK_SENT,
38 } http_session_state_t;
39 typedef struct
40 {
41   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
42 #define _(type, name) type name;
43   foreach_app_session_field
44 #undef _
45   u32 thread_index;
46   u8 *rx_buf;
47   u32 vpp_session_index;
48   u64 vpp_session_handle;
49 } http_session_t;
50
51 typedef struct
52 {
53   http_session_t **sessions;
54   clib_rwlock_t sessions_lock;
55   u32 **session_to_http_session;
56
57   svm_msg_q_t **vpp_queue;
58
59   uword *handler_by_get_request;
60
61   u32 *free_http_cli_process_node_indices;
62
63   /* Sever's event queue */
64   svm_queue_t *vl_input_queue;
65
66   /* API client handle */
67   u32 my_client_index;
68
69   u32 app_index;
70
71   /* process node index for evnt scheduling */
72   u32 node_index;
73
74   u32 prealloc_fifos;
75   u32 private_segment_size;
76   u32 fifo_size;
77   u8 *uri;
78   u32 is_static;
79   vlib_main_t *vlib_main;
80 } http_server_main_t;
81
82 http_server_main_t http_server_main;
83
84 static void
85 http_server_sessions_reader_lock (void)
86 {
87   clib_rwlock_reader_lock (&http_server_main.sessions_lock);
88 }
89
90 static void
91 http_server_sessions_reader_unlock (void)
92 {
93   clib_rwlock_reader_unlock (&http_server_main.sessions_lock);
94 }
95
96 static void
97 http_server_sessions_writer_lock (void)
98 {
99   clib_rwlock_writer_lock (&http_server_main.sessions_lock);
100 }
101
102 static void
103 http_server_sessions_writer_unlock (void)
104 {
105   clib_rwlock_writer_unlock (&http_server_main.sessions_lock);
106 }
107
108 static void
109 http_server_session_lookup_add (u32 thread_index, u32 s_index, u32 hs_index)
110 {
111   http_server_main_t *hsm = &http_server_main;
112   vec_validate (hsm->session_to_http_session[thread_index], s_index);
113   hsm->session_to_http_session[thread_index][s_index] = hs_index;
114 }
115
116 static void
117 http_server_session_lookup_del (u32 thread_index, u32 s_index)
118 {
119   http_server_main_t *hsm = &http_server_main;
120   hsm->session_to_http_session[thread_index][s_index] = ~0;
121 }
122
123 static http_session_t *
124 http_server_session_lookup (u32 thread_index, u32 s_index)
125 {
126   http_server_main_t *hsm = &http_server_main;
127   u32 hs_index;
128
129   if (s_index < vec_len (hsm->session_to_http_session[thread_index]))
130     {
131       hs_index = hsm->session_to_http_session[thread_index][s_index];
132       if (hs_index < vec_len (hsm->sessions[thread_index]))
133         return &hsm->sessions[thread_index][hs_index];
134     }
135   return 0;
136 }
137
138 static http_session_t *
139 http_server_session_alloc (u32 thread_index)
140 {
141   http_server_main_t *hsm = &http_server_main;
142   http_session_t *hs;
143   pool_get (hsm->sessions[thread_index], hs);
144   memset (hs, 0, sizeof (*hs));
145   hs->session_index = hs - hsm->sessions[thread_index];
146   hs->thread_index = thread_index;
147   return hs;
148 }
149
150 static http_session_t *
151 http_server_session_get (u32 thread_index, u32 hs_index)
152 {
153   http_server_main_t *hsm = &http_server_main;
154   return pool_elt_at_index (hsm->sessions[thread_index], hs_index);
155 }
156
157 static void
158 http_server_session_free (http_session_t * hs)
159 {
160   http_server_main_t *hsm = &http_server_main;
161   pool_put (hsm->sessions[hs->thread_index], hs);
162   if (CLIB_DEBUG)
163     memset (hs, 0xfa, sizeof (*hs));
164 }
165
166 static void
167 http_server_session_cleanup (http_session_t * hs)
168 {
169   if (!hs)
170     return;
171   http_server_session_lookup_del (hs->thread_index, hs->vpp_session_index);
172   vec_free (hs->rx_buf);
173   http_server_session_free (hs);
174 }
175
176 static void
177 http_process_free (http_server_args * args)
178 {
179   vlib_node_runtime_t *rt;
180   vlib_main_t *vm = &vlib_global_main;
181   http_server_main_t *hsm = &http_server_main;
182   vlib_node_t *n;
183   u32 node_index;
184   http_server_args **save_args;
185
186   node_index = args->node_index;
187   ASSERT (node_index != 0);
188
189   n = vlib_get_node (vm, node_index);
190   rt = vlib_node_get_runtime (vm, n->index);
191   save_args = vlib_node_get_runtime_data (vm, n->index);
192
193   /* Reset process session pointer */
194   clib_mem_free (*save_args);
195   *save_args = 0;
196
197   /* Turn off the process node */
198   vlib_node_set_state (vm, rt->node_index, VLIB_NODE_STATE_DISABLED);
199
200   /* add node index to the freelist */
201   vec_add1 (hsm->free_http_cli_process_node_indices, node_index);
202 }
203
204 /* *INDENT-OFF* */
205 static const char *http_ok =
206     "HTTP/1.1 200 OK\r\n";
207
208 static const char *http_response =
209     "Content-Type: text/html\r\n"
210     "Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n"
211     "Connection: close \r\n"
212     "Pragma: no-cache\r\n"
213     "Content-Length: %d\r\n\r\n%s";
214
215 static const char *http_error_template =
216     "HTTP/1.1 %s\r\n"
217     "Content-Type: text/html\r\n"
218     "Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n"
219     "Connection: close\r\n"
220     "Pragma: no-cache\r\n"
221     "Content-Length: 0\r\n\r\n";
222
223 /* Header, including incantation to suppress favicon.ico requests */
224 static const char *html_header_template =
225     "<html><head><title>%v</title></head>"
226     "<link rel=\"icon\" href=\"data:,\">"
227     "<body><pre>";
228
229 static const char *html_footer =
230     "</pre></body></html>\r\n";
231
232 static const char *html_header_static =
233     "<html><head><title>static reply</title></head>"
234     "<link rel=\"icon\" href=\"data:,\">"
235     "<body><pre>hello</pre></body></html>\r\n";
236 /* *INDENT-ON* */
237
238 static u8 *static_http;
239 static u8 *static_ok;
240
241 static void
242 http_cli_output (uword arg, u8 * buffer, uword buffer_bytes)
243 {
244   u8 **output_vecp = (u8 **) arg;
245   u8 *output_vec;
246   u32 offset;
247
248   output_vec = *output_vecp;
249
250   offset = vec_len (output_vec);
251   vec_validate (output_vec, offset + buffer_bytes - 1);
252   clib_memcpy_fast (output_vec + offset, buffer, buffer_bytes);
253
254   *output_vecp = output_vec;
255 }
256
257 void
258 send_data (http_session_t * hs, u8 * data)
259 {
260   http_server_main_t *hsm = &http_server_main;
261   vnet_disconnect_args_t _a = { 0 }, *a = &_a;
262   vlib_main_t *vm = vlib_get_main ();
263   f64 last_sent_timer = vlib_time_now (vm);
264   u32 offset, bytes_to_send;
265   f64 delay = 10e-3;
266
267   bytes_to_send = vec_len (data);
268   offset = 0;
269
270   while (bytes_to_send > 0)
271     {
272       int actual_transfer;
273
274       actual_transfer = svm_fifo_enqueue_nowait
275         (hs->tx_fifo, bytes_to_send, data + offset);
276
277       /* Made any progress? */
278       if (actual_transfer <= 0)
279         {
280           vlib_process_suspend (vm, delay);
281           /* 10s deadman timer */
282           if (vlib_time_now (vm) > last_sent_timer + 10.0)
283             {
284               a->handle = hs->vpp_session_handle;
285               a->app_index = hsm->app_index;
286               vnet_disconnect_session (a);
287               break;
288             }
289           /* Exponential backoff, within reason */
290           if (delay < 1.0)
291             delay = delay * 2.0;
292         }
293       else
294         {
295           last_sent_timer = vlib_time_now (vm);
296           offset += actual_transfer;
297           bytes_to_send -= actual_transfer;
298
299           if (svm_fifo_set_event (hs->tx_fifo))
300             session_send_io_evt_to_thread (hs->tx_fifo,
301                                            SESSION_IO_EVT_TX_FLUSH);
302           delay = 10e-3;
303         }
304     }
305 }
306
307 static void
308 send_error (http_session_t * hs, char *str)
309 {
310   u8 *data;
311
312   data = format (0, http_error_template, str);
313   send_data (hs, data);
314   vec_free (data);
315 }
316
317 static uword
318 http_cli_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
319                   vlib_frame_t * f)
320 {
321   u8 *request = 0, *reply = 0, *http = 0, *html = 0;
322   http_server_main_t *hsm = &http_server_main;
323   http_server_args **save_args;
324   http_server_args *args;
325   unformat_input_t input;
326   http_session_t *hs;
327   int i;
328
329   save_args = vlib_node_get_runtime_data (hsm->vlib_main, rt->node_index);
330   args = *save_args;
331
332   http_server_sessions_reader_lock ();
333
334   hs = http_server_session_get (args->thread_index, args->hs_index);
335   ASSERT (hs);
336
337   request = hs->rx_buf;
338   if (vec_len (request) < 7)
339     {
340       send_error (hs, "400 Bad Request");
341       goto out;
342     }
343
344   for (i = 0; i < vec_len (request) - 4; i++)
345     {
346       if (request[i] == 'G' &&
347           request[i + 1] == 'E' &&
348           request[i + 2] == 'T' && request[i + 3] == ' ')
349         goto found;
350     }
351 bad_request:
352   send_error (hs, "400 Bad Request");
353   goto out;
354
355 found:
356   /* Lose "GET " */
357   vec_delete (request, i + 5, 0);
358
359   /* Replace slashes with spaces, stop at the end of the path */
360   i = 0;
361   while (1)
362     {
363       if (request[i] == '/')
364         request[i] = ' ';
365       else if (request[i] == ' ')
366         {
367           /* vlib_cli_input is vector-based, no need for a NULL */
368           _vec_len (request) = i;
369           break;
370         }
371       i++;
372       /* Should never happen */
373       if (i == vec_len (request))
374         goto bad_request;
375     }
376
377   /* Generate the html header */
378   html = format (0, html_header_template, request /* title */ );
379
380   /* Run the command */
381   unformat_init_vector (&input, vec_dup (request));
382   vlib_cli_input (vm, &input, http_cli_output, (uword) & reply);
383   unformat_free (&input);
384   request = 0;
385
386   /* Generate the html page */
387   html = format (html, "%v", reply);
388   html = format (html, html_footer);
389   /* And the http reply */
390   http = format (0, http_ok, vec_len (http_ok));
391   http = format (http, http_response, vec_len (html), html);
392
393   /* Send it */
394   send_data (hs, http);
395
396 out:
397   /* Cleanup */
398   http_server_sessions_reader_unlock ();
399   vec_free (reply);
400   vec_free (html);
401   vec_free (http);
402
403   http_process_free (args);
404   return (0);
405 }
406
407 static void
408 alloc_http_process (http_server_args * args)
409 {
410   char *name;
411   vlib_node_t *n;
412   http_server_main_t *hsm = &http_server_main;
413   vlib_main_t *vm = hsm->vlib_main;
414   uword l = vec_len (hsm->free_http_cli_process_node_indices);
415   http_server_args **save_args;
416
417   if (vec_len (hsm->free_http_cli_process_node_indices) > 0)
418     {
419       n = vlib_get_node (vm, hsm->free_http_cli_process_node_indices[l - 1]);
420       vlib_node_set_state (vm, n->index, VLIB_NODE_STATE_POLLING);
421       _vec_len (hsm->free_http_cli_process_node_indices) = l - 1;
422     }
423   else
424     {
425       static vlib_node_registration_t r = {
426         .function = http_cli_process,
427         .type = VLIB_NODE_TYPE_PROCESS,
428         .process_log2_n_stack_bytes = 16,
429         .runtime_data_bytes = sizeof (void *),
430       };
431
432       name = (char *) format (0, "http-cli-%d", l);
433       r.name = name;
434       vlib_register_node (vm, &r);
435       vec_free (name);
436
437       n = vlib_get_node (vm, r.index);
438     }
439
440   /* Save the node index in the args. It won't be zero. */
441   args->node_index = n->index;
442
443   /* Save the args (pointer) in the node runtime */
444   save_args = vlib_node_get_runtime_data (vm, n->index);
445   *save_args = args;
446
447   vlib_start_process (vm, n->runtime_index);
448 }
449
450 static void
451 alloc_http_process_callback (void *cb_args)
452 {
453   alloc_http_process ((http_server_args *) cb_args);
454 }
455
456 static int
457 session_rx_request (http_session_t * hs)
458 {
459   u32 max_dequeue, cursize;
460   int n_read;
461
462   cursize = vec_len (hs->rx_buf);
463   max_dequeue = svm_fifo_max_dequeue (hs->rx_fifo);
464   if (PREDICT_FALSE (max_dequeue == 0))
465     return -1;
466
467   vec_validate (hs->rx_buf, cursize + max_dequeue - 1);
468   n_read = app_recv_stream_raw (hs->rx_fifo, hs->rx_buf + cursize,
469                                 max_dequeue, 0, 0 /* peek */ );
470   ASSERT (n_read == max_dequeue);
471   if (svm_fifo_is_empty (hs->rx_fifo))
472     svm_fifo_unset_event (hs->rx_fifo);
473
474   _vec_len (hs->rx_buf) = cursize + n_read;
475   return 0;
476 }
477
478 static int
479 http_server_rx_callback (session_t * s)
480 {
481   http_server_args *args;
482   http_session_t *hs;
483   int rv;
484
485   http_server_sessions_reader_lock ();
486
487   hs = http_server_session_lookup (s->thread_index, s->session_index);
488   if (!hs || hs->session_state != HTTP_STATE_ESTABLISHED)
489     return -1;
490
491   rv = session_rx_request (hs);
492   if (rv)
493     return rv;
494
495   /* send the command to a new/recycled vlib process */
496   args = clib_mem_alloc (sizeof (*args));
497   args->hs_index = hs->session_index;
498   args->thread_index = hs->thread_index;
499
500   http_server_sessions_reader_unlock ();
501
502   /* Send an RPC request via the thread-0 input node */
503   if (vlib_get_thread_index () != 0)
504     session_send_rpc_evt_to_thread (0, alloc_http_process_callback, args);
505   else
506     alloc_http_process (args);
507   return 0;
508 }
509
510 static int
511 http_server_rx_callback_static (session_t * s)
512 {
513   http_server_main_t *hsm = &http_server_main;
514   vnet_disconnect_args_t _a = { 0 }, *a = &_a;
515   http_session_t *hs;
516   u32 request_len;
517   u8 *request = 0;
518   int i, rv;
519
520   hs = http_server_session_lookup (s->thread_index, s->session_index);
521   if (!hs || hs->session_state == HTTP_STATE_CLOSED)
522     return 0;
523
524   /* ok 200 was sent */
525   if (hs->session_state == HTTP_STATE_OK_SENT)
526     goto send_data;
527
528   rv = session_rx_request (hs);
529   if (rv)
530     goto wait_for_data;
531
532   request = hs->rx_buf;
533   request_len = vec_len (request);
534   if (vec_len (request) < 7)
535     {
536       send_error (hs, "400 Bad Request");
537       goto close_session;
538     }
539
540   for (i = 0; i < request_len - 4; i++)
541     {
542       if (request[i] == 'G' &&
543           request[i + 1] == 'E' &&
544           request[i + 2] == 'T' && request[i + 3] == ' ')
545         goto find_end;
546     }
547   send_error (hs, "400 Bad Request");
548   goto close_session;
549
550 find_end:
551
552   /* check for the end sequence: /r/n/r/n */
553   if (request[request_len - 1] != 0xa || request[request_len - 3] != 0xa
554       || request[request_len - 2] != 0xd || request[request_len - 4] != 0xd)
555     goto wait_for_data;
556
557   /* send 200 OK first */
558   send_data (hs, static_ok);
559   hs->session_state = HTTP_STATE_OK_SENT;
560   goto postpone;
561
562 send_data:
563   send_data (hs, static_http);
564   http_server_session_cleanup (hs);
565
566 close_session:
567   a->handle = session_handle (s);
568   a->app_index = hsm->app_index;
569   vnet_disconnect_session (a);
570   return 0;
571
572 postpone:
573   (void) svm_fifo_set_event (hs->rx_fifo);
574   session_send_io_evt_to_thread (hs->rx_fifo, SESSION_IO_EVT_BUILTIN_RX);
575   return 0;
576
577 wait_for_data:
578   return 0;
579 }
580
581 static int
582 http_server_session_accept_callback (session_t * s)
583 {
584   http_server_main_t *hsm = &http_server_main;
585   http_session_t *hs;
586
587   hsm->vpp_queue[s->thread_index] =
588     session_main_get_vpp_event_queue (s->thread_index);
589
590   if (!hsm->is_static)
591     http_server_sessions_writer_lock ();
592
593   hs = http_server_session_alloc (s->thread_index);
594   http_server_session_lookup_add (s->thread_index, s->session_index,
595                                   hs->session_index);
596   hs->rx_fifo = s->rx_fifo;
597   hs->tx_fifo = s->tx_fifo;
598   hs->vpp_session_index = s->session_index;
599   hs->vpp_session_handle = session_handle (s);
600   hs->session_state = HTTP_STATE_ESTABLISHED;
601
602   if (!hsm->is_static)
603     http_server_sessions_writer_unlock ();
604
605   s->session_state = SESSION_STATE_READY;
606   return 0;
607 }
608
609 static void
610 http_server_session_disconnect_callback (session_t * s)
611 {
612   http_server_main_t *hsm = &http_server_main;
613   vnet_disconnect_args_t _a = { 0 }, *a = &_a;
614   http_session_t *hs;
615
616   if (!hsm->is_static)
617     http_server_sessions_writer_lock ();
618
619   hs = http_server_session_lookup (s->thread_index, s->session_index);
620   http_server_session_cleanup (hs);
621
622   if (!hsm->is_static)
623     http_server_sessions_writer_unlock ();
624
625   a->handle = session_handle (s);
626   a->app_index = hsm->app_index;
627   vnet_disconnect_session (a);
628 }
629
630 static void
631 http_server_session_reset_callback (session_t * s)
632 {
633   http_server_main_t *hsm = &http_server_main;
634   vnet_disconnect_args_t _a = { 0 }, *a = &_a;
635   http_session_t *hs;
636
637   if (!hsm->is_static)
638     http_server_sessions_writer_lock ();
639
640   hs = http_server_session_lookup (s->thread_index, s->session_index);
641   http_server_session_cleanup (hs);
642
643   if (!hsm->is_static)
644     http_server_sessions_writer_unlock ();
645
646   a->handle = session_handle (s);
647   a->app_index = hsm->app_index;
648   vnet_disconnect_session (a);
649 }
650
651 static int
652 http_server_session_connected_callback (u32 app_index, u32 api_context,
653                                         session_t * s, u8 is_fail)
654 {
655   clib_warning ("called...");
656   return -1;
657 }
658
659 static int
660 http_server_add_segment_callback (u32 client_index, u64 segment_handle)
661 {
662   clib_warning ("called...");
663   return -1;
664 }
665
666 static session_cb_vft_t http_server_session_cb_vft = {
667   .session_accept_callback = http_server_session_accept_callback,
668   .session_disconnect_callback = http_server_session_disconnect_callback,
669   .session_connected_callback = http_server_session_connected_callback,
670   .add_segment_callback = http_server_add_segment_callback,
671   .builtin_app_rx_callback = http_server_rx_callback,
672   .session_reset_callback = http_server_session_reset_callback
673 };
674
675 static int
676 http_server_attach ()
677 {
678   vnet_app_add_tls_cert_args_t _a_cert, *a_cert = &_a_cert;
679   vnet_app_add_tls_key_args_t _a_key, *a_key = &_a_key;
680   http_server_main_t *hsm = &http_server_main;
681   u64 options[APP_OPTIONS_N_OPTIONS];
682   vnet_app_attach_args_t _a, *a = &_a;
683   u32 segment_size = 128 << 20;
684
685   clib_memset (a, 0, sizeof (*a));
686   clib_memset (options, 0, sizeof (options));
687
688   if (hsm->private_segment_size)
689     segment_size = hsm->private_segment_size;
690
691   a->api_client_index = ~0;
692   a->name = format (0, "test_http_server");
693   a->session_cb_vft = &http_server_session_cb_vft;
694   a->options = options;
695   a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
696   a->options[APP_OPTIONS_RX_FIFO_SIZE] =
697     hsm->fifo_size ? hsm->fifo_size : 8 << 10;
698   a->options[APP_OPTIONS_TX_FIFO_SIZE] =
699     hsm->fifo_size ? hsm->fifo_size : 32 << 10;
700   a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
701   a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = hsm->prealloc_fifos;
702
703   if (vnet_application_attach (a))
704     {
705       vec_free (a->name);
706       clib_warning ("failed to attach server");
707       return -1;
708     }
709   vec_free (a->name);
710   hsm->app_index = a->app_index;
711
712   clib_memset (a_cert, 0, sizeof (*a_cert));
713   a_cert->app_index = a->app_index;
714   vec_validate (a_cert->cert, test_srv_crt_rsa_len);
715   clib_memcpy_fast (a_cert->cert, test_srv_crt_rsa, test_srv_crt_rsa_len);
716   vnet_app_add_tls_cert (a_cert);
717
718   clib_memset (a_key, 0, sizeof (*a_key));
719   a_key->app_index = a->app_index;
720   vec_validate (a_key->key, test_srv_key_rsa_len);
721   clib_memcpy_fast (a_key->key, test_srv_key_rsa, test_srv_key_rsa_len);
722   vnet_app_add_tls_key (a_key);
723
724   return 0;
725 }
726
727 static int
728 http_server_listen ()
729 {
730   http_server_main_t *hsm = &http_server_main;
731   vnet_listen_args_t _a, *a = &_a;
732   clib_memset (a, 0, sizeof (*a));
733   a->app_index = hsm->app_index;
734   a->uri = "tcp://0.0.0.0/80";
735   if (hsm->uri)
736     a->uri = (char *) hsm->uri;
737   return vnet_bind_uri (a);
738 }
739
740 static int
741 http_server_create (vlib_main_t * vm)
742 {
743   vlib_thread_main_t *vtm = vlib_get_thread_main ();
744   http_server_main_t *hsm = &http_server_main;
745   u32 num_threads;
746
747   num_threads = 1 /* main thread */  + vtm->n_threads;
748   vec_validate (hsm->vpp_queue, num_threads - 1);
749   vec_validate (hsm->sessions, num_threads - 1);
750   vec_validate (hsm->session_to_http_session, num_threads - 1);
751
752   clib_rwlock_init (&hsm->sessions_lock);
753
754   if (http_server_attach ())
755     {
756       clib_warning ("failed to attach server");
757       return -1;
758     }
759   if (http_server_listen ())
760     {
761       clib_warning ("failed to start listening");
762       return -1;
763     }
764   return 0;
765 }
766
767 static clib_error_t *
768 http_server_create_command_fn (vlib_main_t * vm,
769                                unformat_input_t * input,
770                                vlib_cli_command_t * cmd)
771 {
772   http_server_main_t *hsm = &http_server_main;
773   u64 seg_size;
774   u8 *html;
775   int rv;
776
777   hsm->prealloc_fifos = 0;
778   hsm->private_segment_size = 0;
779   hsm->fifo_size = 0;
780   hsm->is_static = 0;
781   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
782     {
783       if (unformat (input, "static"))
784         hsm->is_static = 1;
785       else if (unformat (input, "prealloc-fifos %d", &hsm->prealloc_fifos))
786         ;
787       else if (unformat (input, "private-segment-size %U",
788                          unformat_memory_size, &seg_size))
789         {
790           if (seg_size >= 0x100000000ULL)
791             {
792               vlib_cli_output (vm, "private segment size %llu, too large",
793                                seg_size);
794               return 0;
795             }
796           hsm->private_segment_size = seg_size;
797         }
798       else if (unformat (input, "fifo-size %d", &hsm->fifo_size))
799         hsm->fifo_size <<= 10;
800       else if (unformat (input, "uri %s", &hsm->uri))
801         ;
802       else
803         return clib_error_return (0, "unknown input `%U'",
804                                   format_unformat_error, input);
805     }
806   if (hsm->my_client_index != (u32) ~ 0)
807     return clib_error_return (0, "test http server is already running");
808
809   vnet_session_enable_disable (vm, 1 /* turn on TCP, etc. */ );
810
811   if (hsm->is_static)
812     {
813       http_server_session_cb_vft.builtin_app_rx_callback =
814         http_server_rx_callback_static;
815       html = format (0, html_header_static);
816       static_http = format (0, http_response, vec_len (html), html);
817       static_ok = format (0, http_ok);
818     }
819   rv = http_server_create (vm);
820   switch (rv)
821     {
822     case 0:
823       break;
824     default:
825       return clib_error_return (0, "server_create returned %d", rv);
826     }
827   return 0;
828 }
829
830 /* *INDENT-OFF* */
831 VLIB_CLI_COMMAND (http_server_create_command, static) =
832 {
833   .path = "test http server",
834   .short_help = "test http server",
835   .function = http_server_create_command_fn,
836 };
837 /* *INDENT-ON* */
838
839 static clib_error_t *
840 http_server_main_init (vlib_main_t * vm)
841 {
842   http_server_main_t *hsm = &http_server_main;
843
844   hsm->my_client_index = ~0;
845   hsm->vlib_main = vm;
846   return 0;
847 }
848
849 VLIB_INIT_FUNCTION (http_server_main_init);
850
851 /*
852 * fd.io coding-style-patch-verification: ON
853 *
854 * Local Variables:
855 * eval: (c-set-style "gnu")
856 * End:
857 */