session: async rx event notifications
[vpp.git] / src / plugins / http / http.c
1 /*
2  * Copyright (c) 2022 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 <http/http.h>
17 #include <vnet/session/session.h>
18 #include <http/http_timer.h>
19
20 static http_main_t http_main;
21
22 #define HTTP_FIFO_THRESH (16 << 10)
23 #define CONTENT_LEN_STR  "Content-Length: "
24
25 /* HTTP state machine result */
26 typedef enum http_sm_result_t_
27 {
28   HTTP_SM_STOP = 0,
29   HTTP_SM_CONTINUE = 1,
30   HTTP_SM_ERROR = -1,
31 } http_sm_result_t;
32
33 const char *http_status_code_str[] = {
34 #define _(c, s, str) str,
35   foreach_http_status_code
36 #undef _
37 };
38
39 const char *http_content_type_str[] = {
40 #define _(s, ext, str) str,
41   foreach_http_content_type
42 #undef _
43 };
44
45 const http_buffer_type_t msg_to_buf_type[] = {
46   [HTTP_MSG_DATA_INLINE] = HTTP_BUFFER_FIFO,
47   [HTTP_MSG_DATA_PTR] = HTTP_BUFFER_PTR,
48 };
49
50 static inline http_worker_t *
51 http_worker_get (u32 thread_index)
52 {
53   return &http_main.wrk[thread_index];
54 }
55
56 static inline u32
57 http_conn_alloc_w_thread (u32 thread_index)
58 {
59   http_worker_t *wrk = http_worker_get (thread_index);
60   http_conn_t *hc;
61
62   pool_get_aligned_safe (wrk->conn_pool, hc, CLIB_CACHE_LINE_BYTES);
63   clib_memset (hc, 0, sizeof (*hc));
64   hc->c_thread_index = thread_index;
65   hc->h_hc_index = hc - wrk->conn_pool;
66   hc->h_pa_session_handle = SESSION_INVALID_HANDLE;
67   hc->h_tc_session_handle = SESSION_INVALID_HANDLE;
68   return hc->h_hc_index;
69 }
70
71 static inline http_conn_t *
72 http_conn_get_w_thread (u32 hc_index, u32 thread_index)
73 {
74   http_worker_t *wrk = http_worker_get (thread_index);
75   return pool_elt_at_index (wrk->conn_pool, hc_index);
76 }
77
78 void
79 http_conn_free (http_conn_t *hc)
80 {
81   http_worker_t *wrk = http_worker_get (hc->c_thread_index);
82   pool_put (wrk->conn_pool, hc);
83 }
84
85 static u32
86 http_listener_alloc (void)
87 {
88   http_main_t *hm = &http_main;
89   http_conn_t *lhc;
90
91   pool_get_zero (hm->listener_pool, lhc);
92   lhc->c_c_index = lhc - hm->listener_pool;
93   return lhc->c_c_index;
94 }
95
96 http_conn_t *
97 http_listener_get (u32 lhc_index)
98 {
99   return pool_elt_at_index (http_main.listener_pool, lhc_index);
100 }
101
102 void
103 http_listener_free (http_conn_t *lhc)
104 {
105   http_main_t *hm = &http_main;
106
107   if (CLIB_DEBUG)
108     memset (lhc, 0xfc, sizeof (*lhc));
109   pool_put (hm->listener_pool, lhc);
110 }
111
112 void
113 http_disconnect_transport (http_conn_t *hc)
114 {
115   vnet_disconnect_args_t a = {
116     .handle = hc->h_tc_session_handle,
117     .app_index = http_main.app_index,
118   };
119
120   hc->state = HTTP_CONN_STATE_CLOSED;
121
122   if (vnet_disconnect_session (&a))
123     clib_warning ("disconnect returned");
124 }
125
126 static void
127 http_conn_timeout_cb (void *hc_handlep)
128 {
129   http_conn_t *hc;
130   uword hs_handle;
131
132   hs_handle = pointer_to_uword (hc_handlep);
133   hc = http_conn_get_w_thread (hs_handle & 0x00FFFFFF, hs_handle >> 24);
134
135   HTTP_DBG (1, "terminate thread %d index %d hs %llx", hs_handle >> 24,
136             hs_handle & 0x00FFFFFF, hc);
137   if (!hc)
138     return;
139
140   hc->timer_handle = ~0;
141   session_transport_closing_notify (&hc->connection);
142   http_disconnect_transport (hc);
143 }
144
145 int
146 http_ts_accept_callback (session_t *ts)
147 {
148   session_t *ts_listener, *as, *asl;
149   app_worker_t *app_wrk;
150   http_conn_t *lhc, *hc;
151   u32 hc_index, thresh;
152   int rv;
153
154   ts_listener = listen_session_get_from_handle (ts->listener_handle);
155   lhc = http_listener_get (ts_listener->opaque);
156
157   hc_index = http_conn_alloc_w_thread (ts->thread_index);
158   hc = http_conn_get_w_thread (hc_index, ts->thread_index);
159   clib_memcpy_fast (hc, lhc, sizeof (*lhc));
160   hc->c_thread_index = ts->thread_index;
161   hc->h_hc_index = hc_index;
162
163   hc->h_tc_session_handle = session_handle (ts);
164   hc->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
165
166   hc->state = HTTP_CONN_STATE_ESTABLISHED;
167   hc->http_state = HTTP_STATE_WAIT_METHOD;
168
169   ts->session_state = SESSION_STATE_READY;
170   ts->opaque = hc_index;
171
172   /*
173    * Alloc session and initialize
174    */
175   as = session_alloc (hc->c_thread_index);
176   hc->c_s_index = as->session_index;
177
178   as->app_wrk_index = hc->h_pa_wrk_index;
179   as->connection_index = hc->c_c_index;
180   as->session_state = SESSION_STATE_ACCEPTING;
181
182   asl = listen_session_get_from_handle (lhc->h_pa_session_handle);
183   as->session_type = asl->session_type;
184   as->listener_handle = lhc->h_pa_session_handle;
185
186   /*
187    * Init session fifos and notify app
188    */
189   if ((rv = app_worker_init_accepted (as)))
190     {
191       HTTP_DBG (1, "failed to allocate fifos");
192       session_free (as);
193       return rv;
194     }
195
196   hc->h_pa_session_handle = session_handle (as);
197   hc->h_pa_wrk_index = as->app_wrk_index;
198   app_wrk = app_worker_get (as->app_wrk_index);
199
200   HTTP_DBG (1, "Accepted on listener %u new connection [%u]%x",
201             ts_listener->opaque, vlib_get_thread_index (), hc_index);
202
203   if ((rv = app_worker_accept_notify (app_wrk, as)))
204     {
205       HTTP_DBG (0, "app accept returned");
206       session_free (as);
207       return rv;
208     }
209
210   /* Avoid enqueuing small chunks of data on transport tx notifications. If
211    * the fifo is small (under 16K) we set the threshold to it's size, meaning
212    * a notification will be given when the fifo empties.
213    */
214   ts = session_get_from_handle (hc->h_tc_session_handle);
215   thresh = clib_min (svm_fifo_size (ts->tx_fifo), HTTP_FIFO_THRESH);
216   svm_fifo_set_deq_thresh (ts->tx_fifo, thresh);
217
218   http_conn_timer_start (hc);
219
220   return 0;
221 }
222
223 static int
224 http_ts_connected_callback (u32 http_app_index, u32 ho_hc_index, session_t *ts,
225                             session_error_t err)
226 {
227   u32 new_hc_index;
228   session_t *as;
229   http_conn_t *hc, *ho_hc;
230   app_worker_t *app_wrk;
231   int rv;
232
233   if (err)
234     {
235       clib_warning ("ERROR: %d", err);
236       return 0;
237     }
238
239   new_hc_index = http_conn_alloc_w_thread (ts->thread_index);
240   hc = http_conn_get_w_thread (new_hc_index, ts->thread_index);
241   ho_hc = http_conn_get_w_thread (ho_hc_index, 0);
242
243   ASSERT (ho_hc->state == HTTP_CONN_STATE_CONNECTING);
244
245   clib_memcpy_fast (hc, ho_hc, sizeof (*hc));
246
247   hc->c_thread_index = ts->thread_index;
248   hc->h_tc_session_handle = session_handle (ts);
249   hc->c_c_index = new_hc_index;
250   hc->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
251   hc->state = HTTP_CONN_STATE_ESTABLISHED;
252   hc->http_state = HTTP_STATE_WAIT_APP;
253
254   ts->session_state = SESSION_STATE_READY;
255   ts->opaque = new_hc_index;
256
257   /* allocate app session and initialize */
258
259   as = session_alloc (hc->c_thread_index);
260   hc->c_s_index = as->session_index;
261   as->connection_index = hc->c_c_index;
262   as->app_wrk_index = hc->h_pa_wrk_index;
263   as->session_state = SESSION_STATE_READY;
264   as->session_type = session_type_from_proto_and_ip (
265     TRANSPORT_PROTO_HTTP, session_type_is_ip4 (ts->session_type));
266
267   app_wrk = app_worker_get (hc->h_pa_wrk_index);
268   if (!app_wrk)
269     {
270       clib_warning ("no app worker");
271       return -1;
272     }
273
274   if ((rv = app_worker_init_connected (app_wrk, as)))
275     {
276       HTTP_DBG (1, "failed to allocate fifos");
277       session_free (as);
278       return rv;
279     }
280   app_worker_connect_notify (app_wrk, as, err, hc->h_pa_app_api_ctx);
281   hc->h_pa_session_handle = session_handle (as);
282   http_conn_timer_start (hc);
283
284   return 0;
285 }
286
287 static void
288 http_ts_disconnect_callback (session_t *ts)
289 {
290   http_conn_t *hc;
291
292   hc = http_conn_get_w_thread (ts->opaque, ts->thread_index);
293
294   if (hc->state < HTTP_CONN_STATE_TRANSPORT_CLOSED)
295     hc->state = HTTP_CONN_STATE_TRANSPORT_CLOSED;
296
297   /* Nothing more to rx, propagate to app */
298   if (!svm_fifo_max_dequeue_cons (ts->rx_fifo))
299     session_transport_closing_notify (&hc->connection);
300 }
301
302 static void
303 http_ts_reset_callback (session_t *ts)
304 {
305   http_conn_t *hc;
306
307   hc = http_conn_get_w_thread (ts->opaque, ts->thread_index);
308
309   hc->state = HTTP_CONN_STATE_CLOSED;
310   http_buffer_free (&hc->tx_buf);
311   hc->http_state = HTTP_STATE_WAIT_METHOD;
312   session_transport_reset_notify (&hc->connection);
313
314   http_disconnect_transport (hc);
315 }
316
317 /**
318  * http error boilerplate
319  */
320 static const char *http_error_template = "HTTP/1.1 %s\r\n"
321                                          "Date: %U GMT\r\n"
322                                          "Content-Type: text/html\r\n"
323                                          "Connection: close\r\n"
324                                          "Pragma: no-cache\r\n"
325                                          "Content-Length: 0\r\n\r\n";
326
327 static const char *http_redirect_template = "HTTP/1.1 %s\r\n";
328
329 /**
330  * http response boilerplate
331  */
332 static const char *http_response_template = "HTTP/1.1 %s\r\n"
333                                             "Date: %U GMT\r\n"
334                                             "Expires: %U GMT\r\n"
335                                             "Server: VPP Static\r\n"
336                                             "Content-Type: %s\r\n"
337                                             "Content-Length: %lu\r\n\r\n";
338
339 static const char *http_request_template = "GET %s HTTP/1.1\r\n"
340                                            "User-Agent: VPP HTTP client\r\n"
341                                            "Accept: */*\r\n";
342
343 static u32
344 send_data (http_conn_t *hc, u8 *data, u32 length, u32 offset)
345 {
346   const u32 max_burst = 64 << 10;
347   session_t *ts;
348   u32 to_send;
349   int sent;
350
351   ts = session_get_from_handle (hc->h_tc_session_handle);
352
353   to_send = clib_min (length - offset, max_burst);
354   sent = svm_fifo_enqueue (ts->tx_fifo, to_send, data + offset);
355
356   if (sent <= 0)
357     return offset;
358
359   if (svm_fifo_set_event (ts->tx_fifo))
360     session_send_io_evt_to_thread (ts->tx_fifo, SESSION_IO_EVT_TX);
361
362   return (offset + sent);
363 }
364
365 static void
366 send_error (http_conn_t *hc, http_status_code_t ec)
367 {
368   http_main_t *hm = &http_main;
369   u8 *data;
370   f64 now;
371
372   if (ec >= HTTP_N_STATUS)
373     ec = HTTP_STATUS_INTERNAL_ERROR;
374
375   now = clib_timebase_now (&hm->timebase);
376   data = format (0, http_error_template, http_status_code_str[ec],
377                  format_clib_timebase_time, now);
378   send_data (hc, data, vec_len (data), 0);
379   vec_free (data);
380 }
381
382 static int
383 read_http_message (http_conn_t *hc)
384 {
385   u32 max_deq, cursize;
386   session_t *ts;
387   int n_read;
388
389   ts = session_get_from_handle (hc->h_tc_session_handle);
390
391   cursize = vec_len (hc->rx_buf);
392   max_deq = svm_fifo_max_dequeue (ts->rx_fifo);
393   if (PREDICT_FALSE (max_deq == 0))
394     return -1;
395
396   vec_validate (hc->rx_buf, cursize + max_deq - 1);
397   n_read = svm_fifo_dequeue (ts->rx_fifo, max_deq, hc->rx_buf + cursize);
398   ASSERT (n_read == max_deq);
399
400   if (svm_fifo_is_empty (ts->rx_fifo))
401     svm_fifo_unset_event (ts->rx_fifo);
402
403   vec_set_len (hc->rx_buf, cursize + n_read);
404   return 0;
405 }
406
407 static int
408 v_find_index (u8 *vec, u32 offset, char *str)
409 {
410   int start_index = offset;
411   u32 slen = (u32) strnlen_s_inline (str, 16);
412   u32 vlen = vec_len (vec);
413
414   ASSERT (slen > 0);
415
416   if (vlen <= slen)
417     return -1;
418
419   for (; start_index < (vlen - slen); start_index++)
420     {
421       if (!memcmp (vec + start_index, str, slen))
422         return start_index;
423     }
424
425   return -1;
426 }
427
428 /**
429  * waiting for request method from peer - parse request method and data
430  */
431 static http_sm_result_t
432 state_srv_wait_method (http_conn_t *hc, transport_send_params_t *sp)
433 {
434   http_status_code_t ec;
435   app_worker_t *app_wrk;
436   http_msg_t msg;
437   session_t *as;
438   int i, rv;
439   u32 len;
440   u8 *buf;
441
442   rv = read_http_message (hc);
443
444   /* Nothing yet, wait for data or timer expire */
445   if (rv)
446     return HTTP_SM_STOP;
447
448   if (vec_len (hc->rx_buf) < 8)
449     {
450       ec = HTTP_STATUS_BAD_REQUEST;
451       goto error;
452     }
453
454   if ((i = v_find_index (hc->rx_buf, 0, "GET ")) >= 0)
455     {
456       hc->method = HTTP_REQ_GET;
457       hc->rx_buf_offset = i + 5;
458
459       i = v_find_index (hc->rx_buf, hc->rx_buf_offset, "HTTP");
460       if (i < 0)
461         {
462           ec = HTTP_STATUS_BAD_REQUEST;
463           goto error;
464         }
465
466       len = i - hc->rx_buf_offset - 1;
467     }
468   else if ((i = v_find_index (hc->rx_buf, 0, "POST ")) >= 0)
469     {
470       hc->method = HTTP_REQ_POST;
471       hc->rx_buf_offset = i + 6;
472       len = vec_len (hc->rx_buf) - hc->rx_buf_offset - 1;
473     }
474   else
475     {
476       HTTP_DBG (0, "Unknown http method");
477       ec = HTTP_STATUS_METHOD_NOT_ALLOWED;
478       goto error;
479     }
480
481   buf = &hc->rx_buf[hc->rx_buf_offset];
482
483   msg.type = HTTP_MSG_REQUEST;
484   msg.method_type = hc->method;
485   msg.content_type = HTTP_CONTENT_TEXT_HTML;
486   msg.data.type = HTTP_MSG_DATA_INLINE;
487   msg.data.len = len;
488
489   svm_fifo_seg_t segs[2] = { { (u8 *) &msg, sizeof (msg) }, { buf, len } };
490
491   as = session_get_from_handle (hc->h_pa_session_handle);
492   rv = svm_fifo_enqueue_segments (as->rx_fifo, segs, 2, 0 /* allow partial */);
493   if (rv < 0 || rv != sizeof (msg) + len)
494     {
495       clib_warning ("failed app enqueue");
496       /* This should not happen as we only handle 1 request per session,
497        * and fifo is allocated, but going forward we should consider
498        * rescheduling */
499       return HTTP_SM_ERROR;
500     }
501
502   vec_free (hc->rx_buf);
503   hc->http_state = HTTP_STATE_WAIT_APP;
504
505   app_wrk = app_worker_get_if_valid (as->app_wrk_index);
506   app_worker_rx_notify (app_wrk, as);
507
508   return HTTP_SM_STOP;
509
510 error:
511
512   send_error (hc, ec);
513   session_transport_closing_notify (&hc->connection);
514   http_disconnect_transport (hc);
515
516   return HTTP_SM_ERROR;
517 }
518
519 /**
520  * waiting for data from app
521  */
522 static http_sm_result_t
523 state_srv_wait_app (http_conn_t *hc, transport_send_params_t *sp)
524 {
525   http_main_t *hm = &http_main;
526   http_status_code_t ec;
527   http_msg_t msg;
528   session_t *as;
529   u8 *header;
530   u32 offset;
531   f64 now;
532   int rv;
533
534   as = session_get_from_handle (hc->h_pa_session_handle);
535
536   rv = svm_fifo_dequeue (as->tx_fifo, sizeof (msg), (u8 *) &msg);
537   ASSERT (rv == sizeof (msg));
538
539   if (msg.type != HTTP_MSG_REPLY || msg.data.type > HTTP_MSG_DATA_PTR)
540     {
541       clib_warning ("unexpected msg type from app %u", msg.type);
542       ec = HTTP_STATUS_INTERNAL_ERROR;
543       goto error;
544     }
545
546   ec = msg.code;
547
548   switch (msg.code)
549     {
550     case HTTP_STATUS_OK:
551     case HTTP_STATUS_MOVED:
552       break;
553     default:
554       goto error;
555     }
556
557   http_buffer_init (&hc->tx_buf, msg_to_buf_type[msg.data.type], as->tx_fifo,
558                     msg.data.len);
559
560   /*
561    * Add headers. For now:
562    * - current time
563    * - expiration time
564    * - content type
565    * - data length
566    */
567   now = clib_timebase_now (&hm->timebase);
568
569   switch (msg.code)
570     {
571     case HTTP_STATUS_OK:
572       header =
573         format (0, http_response_template, http_status_code_str[msg.code],
574                 /* Date */
575                 format_clib_timebase_time, now,
576                 /* Expires */
577                 format_clib_timebase_time, now + 600.0,
578                 /* Content type */
579                 http_content_type_str[msg.content_type],
580                 /* Length */
581                 msg.data.len);
582       break;
583     case HTTP_STATUS_MOVED:
584       header =
585         format (0, http_redirect_template, http_status_code_str[msg.code]);
586       /* Location: http(s)://new-place already queued up as data */
587       break;
588     default:
589       goto error;
590     }
591
592   offset = send_data (hc, header, vec_len (header), 0);
593   if (offset != vec_len (header))
594     {
595       clib_warning ("couldn't send response header!");
596       ec = HTTP_STATUS_INTERNAL_ERROR;
597       goto error;
598     }
599   vec_free (header);
600
601   /* Start sending the actual data */
602   hc->http_state = HTTP_STATE_IO_MORE_DATA;
603
604   ASSERT (sp->max_burst_size >= offset);
605   sp->max_burst_size -= offset;
606
607   return HTTP_SM_CONTINUE;
608
609 error:
610
611   send_error (hc, ec);
612   hc->http_state = HTTP_STATE_WAIT_METHOD;
613   session_transport_closing_notify (&hc->connection);
614   http_disconnect_transport (hc);
615
616   return HTTP_SM_STOP;
617 }
618
619 static http_sm_result_t
620 state_srv_send_more_data (http_conn_t *hc, transport_send_params_t *sp)
621 {
622   u32 max_send = 64 << 10, n_segs;
623   http_buffer_t *hb = &hc->tx_buf;
624   svm_fifo_seg_t *seg;
625   session_t *ts;
626   int sent = 0;
627
628   max_send = clib_min (max_send, sp->max_burst_size);
629   ts = session_get_from_handle (hc->h_tc_session_handle);
630   if ((seg = http_buffer_get_segs (hb, max_send, &n_segs)))
631     sent = svm_fifo_enqueue_segments (ts->tx_fifo, seg, n_segs,
632                                       1 /* allow partial */);
633
634   if (sent > 0)
635     {
636       /* Ask scheduler to notify app of deq event if needed */
637       sp->bytes_dequeued += http_buffer_drain (hb, sent);
638       sp->max_burst_size -= sent;
639     }
640
641   /* Not finished sending all data */
642   if (!http_buffer_is_drained (hb))
643     {
644       if (sent && svm_fifo_set_event (ts->tx_fifo))
645         session_send_io_evt_to_thread (ts->tx_fifo, SESSION_IO_EVT_TX);
646
647       if (svm_fifo_max_enqueue (ts->tx_fifo) < HTTP_FIFO_THRESH)
648         {
649           /* Deschedule http session and wait for deq notification if
650            * underlying ts tx fifo almost full */
651           svm_fifo_add_want_deq_ntf (ts->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
652           transport_connection_deschedule (&hc->connection);
653           sp->flags |= TRANSPORT_SND_F_DESCHED;
654         }
655     }
656   else
657     {
658       if (sent && svm_fifo_set_event (ts->tx_fifo))
659         session_send_io_evt_to_thread (ts->tx_fifo, SESSION_IO_EVT_TX_FLUSH);
660
661       /* Finished transaction, back to HTTP_STATE_WAIT_METHOD */
662       hc->http_state = HTTP_STATE_WAIT_METHOD;
663       http_buffer_free (&hc->tx_buf);
664     }
665
666   return HTTP_SM_STOP;
667 }
668
669 static int
670 parse_http_header (http_conn_t *hc, int *content_length)
671 {
672   unformat_input_t input;
673   int i, len;
674   u8 *line;
675
676   if ((i = v_find_index (hc->rx_buf, hc->rx_buf_offset, "200 OK") < 0))
677     {
678       clib_warning ("bad response code");
679       return -1;
680     }
681
682   i = v_find_index (hc->rx_buf, hc->rx_buf_offset, CONTENT_LEN_STR);
683   if (i < 0)
684     {
685       clib_warning ("cannot find '%s' in the header!", CONTENT_LEN_STR);
686       return -1;
687     }
688
689   hc->rx_buf_offset = i;
690
691   i = v_find_index (hc->rx_buf, hc->rx_buf_offset, "\n");
692   if (i < 0)
693     {
694       clib_warning ("end of line missing; incomplete data");
695       return -1;
696     }
697
698   len = i - hc->rx_buf_offset;
699   line = vec_new (u8, len);
700   clib_memcpy (line, hc->rx_buf + hc->rx_buf_offset, len);
701
702   unformat_init_vector (&input, line);
703   if (!unformat (&input, CONTENT_LEN_STR "%d", content_length))
704     {
705       clib_warning ("failed to unformat content length!");
706       return -1;
707     }
708   unformat_free (&input);
709
710   /* skip rest of the header */
711   hc->rx_buf_offset += len;
712   i = v_find_index (hc->rx_buf, hc->rx_buf_offset, "<html>");
713   if (i < 0)
714     {
715       clib_warning ("<html> tag not found");
716       return -1;
717     }
718   hc->rx_buf_offset = i;
719
720   return 0;
721 }
722
723 static int
724 state_cln_wait_method (http_conn_t *hc, transport_send_params_t *sp)
725 {
726   session_t *as;
727   http_msg_t msg;
728   app_worker_t *app_wrk;
729   int rv, content_length;
730
731   rv = read_http_message (hc);
732   if (rv)
733     return HTTP_SM_STOP;
734
735   msg.type = HTTP_MSG_REPLY;
736   msg.content_type = HTTP_CONTENT_TEXT_HTML;
737   msg.code = HTTP_STATUS_OK;
738   msg.data.type = HTTP_MSG_DATA_INLINE;
739   msg.data.len = 0;
740
741   rv = parse_http_header (hc, &content_length);
742   if (rv)
743     {
744       clib_warning ("failed to parse http reply");
745       session_transport_closing_notify (&hc->connection);
746       http_disconnect_transport (hc);
747       return -1;
748     }
749
750   msg.data.len = content_length;
751   u32 dlen = vec_len (hc->rx_buf) - hc->rx_buf_offset;
752   as = session_get_from_handle (hc->h_pa_session_handle);
753   svm_fifo_seg_t segs[2] = { { (u8 *) &msg, sizeof (msg) },
754                              { &hc->rx_buf[hc->rx_buf_offset], dlen } };
755
756   rv = svm_fifo_enqueue_segments (as->rx_fifo, segs, 2, 0 /* allow partial */);
757   if (rv < 0)
758     {
759       clib_warning ("error enqueue");
760       return HTTP_SM_ERROR;
761     }
762   hc->rx_buf_offset += dlen;
763   hc->http_state = HTTP_STATE_IO_MORE_DATA;
764   hc->to_recv = content_length - dlen;
765
766   if (hc->rx_buf_offset == vec_len (hc->rx_buf))
767     {
768       vec_reset_length (hc->rx_buf);
769       hc->rx_buf_offset = 0;
770     }
771
772   if (hc->to_recv == 0)
773     {
774       hc->rx_buf_offset = 0;
775       vec_reset_length (hc->rx_buf);
776       hc->http_state = HTTP_STATE_WAIT_APP;
777     }
778
779   app_wrk = app_worker_get_if_valid (as->app_wrk_index);
780   app_worker_rx_notify (app_wrk, as);
781   return HTTP_SM_STOP;
782 }
783
784 static int
785 cln_drain_rx_buf (http_conn_t *hc, session_t *ts, session_t *as)
786 {
787   app_worker_t *app_wrk;
788   u32 max_enq, n_enq, dlen = vec_len (hc->rx_buf) - hc->rx_buf_offset;
789   int rv;
790
791   max_enq = svm_fifo_max_enqueue (as->rx_fifo);
792   n_enq = clib_min (max_enq, dlen);
793   rv = svm_fifo_enqueue (as->rx_fifo, n_enq, &hc->rx_buf[hc->rx_buf_offset]);
794   if (rv < 0)
795     {
796       clib_warning ("enqueue failed");
797       return -1;
798     }
799
800   hc->rx_buf_offset += rv;
801
802   if (hc->rx_buf_offset >= vec_len (hc->rx_buf))
803     {
804       vec_reset_length (hc->rx_buf);
805       hc->rx_buf_offset = 0;
806     }
807
808   app_wrk = app_worker_get_if_valid (as->app_wrk_index);
809   ASSERT (app_wrk);
810
811   app_worker_rx_notify (app_wrk, as);
812   return 1;
813 }
814
815 static http_sm_result_t
816 state_cln_recv_more_data (http_conn_t *hc, transport_send_params_t *sp)
817 {
818   session_t *as;
819   u32 max_deq;
820   session_t *ts;
821   int n_read, rv;
822
823   as = session_get_from_handle (hc->h_pa_session_handle);
824   ts = session_get_from_handle (hc->h_tc_session_handle);
825
826   u32 dlen = vec_len (hc->rx_buf) - hc->rx_buf_offset;
827   if (dlen)
828     {
829       rv = cln_drain_rx_buf (hc, ts, as);
830       if (rv < 0)
831         {
832           clib_warning ("drain rx error!");
833           return HTTP_SM_ERROR;
834         }
835       goto maybe_reschedule;
836     }
837
838   if (hc->to_recv == 0)
839     {
840       ASSERT (vec_len (hc->rx_buf) == 0);
841       ASSERT (hc->rx_buf_offset == 0);
842       hc->http_state = HTTP_STATE_WAIT_APP;
843       return HTTP_SM_STOP;
844     }
845
846   max_deq = svm_fifo_max_dequeue (ts->rx_fifo);
847   if (max_deq == 0)
848     return HTTP_SM_STOP;
849
850   ASSERT (vec_len (hc->rx_buf) == 0);
851   ASSERT (hc->rx_buf_offset == 0);
852
853   vec_validate (hc->rx_buf, max_deq - 1);
854   n_read = svm_fifo_dequeue (ts->rx_fifo, max_deq, hc->rx_buf);
855   ASSERT (n_read == max_deq);
856
857   if (svm_fifo_is_empty (ts->rx_fifo))
858     svm_fifo_unset_event (ts->rx_fifo);
859
860   hc->to_recv -= n_read;
861   vec_set_len (hc->rx_buf, max_deq);
862
863 maybe_reschedule:
864   if (hc->rx_buf_offset < vec_len (hc->rx_buf) ||
865       svm_fifo_max_dequeue_cons (ts->rx_fifo))
866     {
867       /* TODO is the flag really needed? */
868       if (svm_fifo_set_event (ts->rx_fifo))
869         session_enqueue_notify (ts);
870     }
871   return HTTP_SM_CONTINUE;
872 }
873
874 static http_sm_result_t
875 state_cln_wait_app (http_conn_t *hc, transport_send_params_t *sp)
876 {
877   session_t *as;
878   http_msg_t msg;
879   http_status_code_t ec;
880   u8 *buf = 0, *request;
881   u32 offset;
882   int rv;
883
884   as = session_get_from_handle (hc->h_pa_session_handle);
885   rv = svm_fifo_dequeue (as->tx_fifo, sizeof (msg), (u8 *) &msg);
886   ASSERT (rv == sizeof (msg));
887   if (msg.type != HTTP_MSG_REQUEST || msg.data.type > HTTP_MSG_DATA_PTR)
888     {
889       clib_warning ("unexpected msg type from app %u", msg.type);
890       ec = HTTP_STATUS_INTERNAL_ERROR;
891       goto error;
892     }
893
894   vec_validate (buf, msg.data.len - 1);
895   rv = svm_fifo_dequeue (as->tx_fifo, msg.data.len, buf);
896   ASSERT (rv == msg.data.len);
897
898   request = format (0, http_request_template, buf);
899   offset = send_data (hc, request, vec_len (request), 0);
900   if (offset != vec_len (request))
901     {
902       clib_warning ("sending request failed!");
903       ec = HTTP_STATUS_INTERNAL_ERROR;
904       goto error;
905     }
906
907   hc->http_state = HTTP_STATE_WAIT_METHOD;
908
909   vec_free (buf);
910   vec_free (request);
911
912   return HTTP_SM_CONTINUE;
913
914 error:
915   send_error (hc, ec);
916   session_transport_closing_notify (&hc->connection);
917   http_disconnect_transport (hc);
918   return HTTP_SM_STOP;
919 }
920
921 typedef http_sm_result_t (*http_sm_handler) (http_conn_t *,
922                                              transport_send_params_t *sp);
923
924 static http_sm_handler srv_state_funcs[HTTP_N_STATES] = {
925   /* Waiting for GET, POST, etc. */
926   state_srv_wait_method,
927   /* Wait for data from app */
928   state_srv_wait_app,
929   /* Send more data */
930   state_srv_send_more_data,
931 };
932
933 static http_sm_handler cln_state_funcs[HTTP_N_STATES] = {
934   /* wait for reply */
935   state_cln_wait_method,
936   /* wait for data from app */
937   state_cln_wait_app,
938   /* receive more data */
939   state_cln_recv_more_data,
940 };
941
942 static void
943 http_req_run_state_machine (http_conn_t *hc, transport_send_params_t *sp)
944 {
945   http_sm_result_t res;
946   http_sm_handler *state_fn =
947     hc->is_client ? cln_state_funcs : srv_state_funcs;
948   do
949     {
950       res = state_fn[hc->http_state](hc, sp);
951       if (res == HTTP_SM_ERROR)
952         return;
953     }
954   while (res == HTTP_SM_CONTINUE);
955
956   /* Reset the session expiration timer */
957   http_conn_timer_update (hc);
958 }
959
960 static int
961 http_ts_server_rx_callback (session_t *ts, http_conn_t *hc)
962 {
963   if (hc->http_state != HTTP_STATE_WAIT_METHOD)
964     {
965       clib_warning ("tcp data in req state %u", hc->http_state);
966       return 0;
967     }
968
969   http_req_run_state_machine (hc, 0);
970
971   if (hc->state == HTTP_CONN_STATE_TRANSPORT_CLOSED)
972     {
973       if (!svm_fifo_max_dequeue_cons (ts->rx_fifo))
974         session_transport_closing_notify (&hc->connection);
975     }
976   return 0;
977 }
978
979 static int
980 http_ts_client_rx_callback (session_t *ts, http_conn_t *hc)
981 {
982   if (hc->http_state != HTTP_STATE_WAIT_METHOD &&
983       hc->http_state != HTTP_STATE_IO_MORE_DATA)
984     {
985       clib_warning ("http in unexpected state %d (ts %d)", hc->http_state,
986                     ts->session_index);
987       return 0;
988     }
989
990   http_req_run_state_machine (hc, 0);
991
992   if (hc->state == HTTP_CONN_STATE_TRANSPORT_CLOSED)
993     {
994       if (!svm_fifo_max_dequeue_cons (ts->rx_fifo))
995         session_transport_closing_notify (&hc->connection);
996     }
997   return 0;
998 }
999
1000 static int
1001 http_ts_rx_callback (session_t *ts)
1002 {
1003   http_conn_t *hc;
1004
1005   hc = http_conn_get_w_thread (ts->opaque, ts->thread_index);
1006   if (hc->is_client)
1007     return http_ts_client_rx_callback (ts, hc);
1008   return http_ts_server_rx_callback (ts, hc);
1009 }
1010
1011 int
1012 http_ts_builtin_tx_callback (session_t *ts)
1013 {
1014   http_conn_t *hc;
1015
1016   hc = http_conn_get_w_thread (ts->opaque, ts->thread_index);
1017   transport_connection_reschedule (&hc->connection);
1018
1019   return 0;
1020 }
1021
1022 static void
1023 http_ts_cleanup_callback (session_t *ts, session_cleanup_ntf_t ntf)
1024 {
1025   http_conn_t *hc;
1026
1027   if (ntf == SESSION_CLEANUP_TRANSPORT)
1028     return;
1029
1030   hc = http_conn_get_w_thread (ts->opaque, ts->thread_index);
1031   if (!hc)
1032     {
1033       clib_warning ("no http connection for %u", ts->session_index);
1034       return;
1035     }
1036
1037   vec_free (hc->rx_buf);
1038
1039   http_buffer_free (&hc->tx_buf);
1040   http_conn_timer_stop (hc);
1041
1042   session_transport_delete_notify (&hc->connection);
1043   http_conn_free (hc);
1044 }
1045
1046 int
1047 http_add_segment_callback (u32 client_index, u64 segment_handle)
1048 {
1049   /* No-op for builtin */
1050   return 0;
1051 }
1052
1053 int
1054 http_del_segment_callback (u32 client_index, u64 segment_handle)
1055 {
1056   return 0;
1057 }
1058
1059 static session_cb_vft_t http_app_cb_vft = {
1060   .session_accept_callback = http_ts_accept_callback,
1061   .session_disconnect_callback = http_ts_disconnect_callback,
1062   .session_connected_callback = http_ts_connected_callback,
1063   .session_reset_callback = http_ts_reset_callback,
1064   .session_cleanup_callback = http_ts_cleanup_callback,
1065   .add_segment_callback = http_add_segment_callback,
1066   .del_segment_callback = http_del_segment_callback,
1067   .builtin_app_rx_callback = http_ts_rx_callback,
1068   .builtin_app_tx_callback = http_ts_builtin_tx_callback,
1069 };
1070
1071 static clib_error_t *
1072 http_transport_enable (vlib_main_t *vm, u8 is_en)
1073 {
1074   vnet_app_detach_args_t _da, *da = &_da;
1075   vnet_app_attach_args_t _a, *a = &_a;
1076   u64 options[APP_OPTIONS_N_OPTIONS];
1077   http_main_t *hm = &http_main;
1078
1079   if (!is_en)
1080     {
1081       da->app_index = hm->app_index;
1082       da->api_client_index = APP_INVALID_INDEX;
1083       vnet_application_detach (da);
1084       return 0;
1085     }
1086
1087   vec_validate (hm->wrk, vlib_num_workers ());
1088
1089   clib_memset (a, 0, sizeof (*a));
1090   clib_memset (options, 0, sizeof (options));
1091
1092   a->session_cb_vft = &http_app_cb_vft;
1093   a->api_client_index = APP_INVALID_INDEX;
1094   a->options = options;
1095   a->name = format (0, "http");
1096   a->options[APP_OPTIONS_SEGMENT_SIZE] = hm->first_seg_size;
1097   a->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = hm->add_seg_size;
1098   a->options[APP_OPTIONS_RX_FIFO_SIZE] = hm->fifo_size;
1099   a->options[APP_OPTIONS_TX_FIFO_SIZE] = hm->fifo_size;
1100   a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
1101   a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
1102   a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_IS_TRANSPORT_APP;
1103
1104   if (vnet_application_attach (a))
1105     return clib_error_return (0, "failed to attach http app");
1106
1107   hm->app_index = a->app_index;
1108   vec_free (a->name);
1109
1110   clib_timebase_init (&hm->timebase, 0 /* GMT */, CLIB_TIMEBASE_DAYLIGHT_NONE,
1111                       &vm->clib_time /* share the system clock */);
1112
1113   http_timers_init (vm, http_conn_timeout_cb);
1114
1115   return 0;
1116 }
1117
1118 static int
1119 http_transport_connect (transport_endpoint_cfg_t *tep)
1120 {
1121   vnet_connect_args_t _cargs, *cargs = &_cargs;
1122   http_main_t *hm = &http_main;
1123   session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) tep;
1124   application_t *app;
1125   http_conn_t *hc;
1126   int error;
1127   u32 hc_index;
1128   app_worker_t *app_wrk = app_worker_get (sep->app_wrk_index);
1129
1130   clib_memset (cargs, 0, sizeof (*cargs));
1131   clib_memcpy (&cargs->sep_ext, sep, sizeof (session_endpoint_cfg_t));
1132   cargs->sep.transport_proto = TRANSPORT_PROTO_TCP;
1133   cargs->app_index = hm->app_index;
1134   app = application_get (app_wrk->app_index);
1135   cargs->sep_ext.ns_index = app->ns_index;
1136
1137   hc_index = http_conn_alloc_w_thread (0 /* ts->thread_index */);
1138   hc = http_conn_get_w_thread (hc_index, 0);
1139   hc->h_pa_wrk_index = sep->app_wrk_index;
1140   hc->h_pa_app_api_ctx = sep->opaque;
1141   hc->is_client = 1;
1142   hc->state = HTTP_CONN_STATE_CONNECTING;
1143   cargs->api_context = hc_index;
1144
1145   if ((error = vnet_connect (cargs)))
1146     return error;
1147
1148   return 0;
1149 }
1150
1151 static u32
1152 http_start_listen (u32 app_listener_index, transport_endpoint_cfg_t *tep)
1153 {
1154   vnet_listen_args_t _args = {}, *args = &_args;
1155   session_t *ts_listener, *app_listener;
1156   http_main_t *hm = &http_main;
1157   session_endpoint_cfg_t *sep;
1158   app_worker_t *app_wrk;
1159   transport_proto_t tp;
1160   app_listener_t *al;
1161   application_t *app;
1162   http_conn_t *lhc;
1163   u32 lhc_index;
1164
1165   sep = (session_endpoint_cfg_t *) tep;
1166
1167   app_wrk = app_worker_get (sep->app_wrk_index);
1168   app = application_get (app_wrk->app_index);
1169
1170   args->app_index = hm->app_index;
1171   args->sep_ext = *sep;
1172   args->sep_ext.ns_index = app->ns_index;
1173   tp = sep->ext_cfg ? TRANSPORT_PROTO_TLS : TRANSPORT_PROTO_TCP;
1174   args->sep_ext.transport_proto = tp;
1175
1176   if (vnet_listen (args))
1177     return SESSION_INVALID_INDEX;
1178
1179   lhc_index = http_listener_alloc ();
1180   lhc = http_listener_get (lhc_index);
1181
1182   /* Grab transport connection listener and link to http listener */
1183   lhc->h_tc_session_handle = args->handle;
1184   al = app_listener_get_w_handle (lhc->h_tc_session_handle);
1185   ts_listener = app_listener_get_session (al);
1186   ts_listener->opaque = lhc_index;
1187
1188   /* Grab application listener and link to http listener */
1189   app_listener = listen_session_get (app_listener_index);
1190   lhc->h_pa_wrk_index = sep->app_wrk_index;
1191   lhc->h_pa_session_handle = listen_session_get_handle (app_listener);
1192   lhc->c_s_index = app_listener_index;
1193   lhc->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1194
1195   return lhc_index;
1196 }
1197
1198 static u32
1199 http_stop_listen (u32 listener_index)
1200 {
1201   http_conn_t *lhc;
1202   int rv;
1203
1204   lhc = http_listener_get (listener_index);
1205
1206   vnet_unlisten_args_t a = {
1207     .handle = lhc->h_tc_session_handle,
1208     .app_index = http_main.app_index,
1209     .wrk_map_index = 0 /* default wrk */
1210   };
1211
1212   if ((rv = vnet_unlisten (&a)))
1213     clib_warning ("unlisten returned %d", rv);
1214
1215   http_listener_free (lhc);
1216
1217   return 0;
1218 }
1219
1220 static void
1221 http_transport_close (u32 hc_index, u32 thread_index)
1222 {
1223   session_t *as;
1224   http_conn_t *hc;
1225
1226   HTTP_DBG (1, "App disconnecting %x", hc_index);
1227
1228   hc = http_conn_get_w_thread (hc_index, thread_index);
1229   if (hc->state == HTTP_CONN_STATE_CONNECTING)
1230     {
1231       hc->state = HTTP_CONN_STATE_APP_CLOSED;
1232       http_disconnect_transport (hc);
1233       return;
1234     }
1235
1236   as = session_get_from_handle (hc->h_pa_session_handle);
1237
1238   /* Nothing more to send, confirm close */
1239   if (!svm_fifo_max_dequeue_cons (as->tx_fifo))
1240     {
1241       session_transport_closed_notify (&hc->connection);
1242       http_disconnect_transport (hc);
1243     }
1244   else
1245     {
1246       /* Wait for all data to be written to ts */
1247       hc->state = HTTP_CONN_STATE_APP_CLOSED;
1248     }
1249 }
1250
1251 static transport_connection_t *
1252 http_transport_get_connection (u32 hc_index, u32 thread_index)
1253 {
1254   http_conn_t *hc = http_conn_get_w_thread (hc_index, thread_index);
1255   return &hc->connection;
1256 }
1257
1258 static transport_connection_t *
1259 http_transport_get_listener (u32 listener_index)
1260 {
1261   http_conn_t *lhc = http_listener_get (listener_index);
1262   return &lhc->connection;
1263 }
1264
1265 static int
1266 http_app_tx_callback (void *session, transport_send_params_t *sp)
1267 {
1268   session_t *as = (session_t *) session;
1269   u32 max_burst_sz, sent;
1270   http_conn_t *hc;
1271
1272   hc = http_conn_get_w_thread (as->connection_index, as->thread_index);
1273   if (hc->http_state < HTTP_STATE_WAIT_APP)
1274     {
1275       if (hc->state != HTTP_CONN_STATE_CLOSED)
1276         clib_warning ("app data req state %u session state %u", hc->http_state,
1277                       hc->state);
1278       svm_fifo_dequeue_drop_all (as->tx_fifo);
1279       return 0;
1280     }
1281
1282   max_burst_sz = sp->max_burst_size * TRANSPORT_PACER_MIN_MSS;
1283   sp->max_burst_size = max_burst_sz;
1284
1285   http_req_run_state_machine (hc, sp);
1286
1287   if (hc->state == HTTP_CONN_STATE_APP_CLOSED)
1288     {
1289       if (!svm_fifo_max_dequeue_cons (as->tx_fifo))
1290         http_disconnect_transport (hc);
1291     }
1292
1293   sent = max_burst_sz - sp->max_burst_size;
1294
1295   return sent > 0 ? clib_max (sent / TRANSPORT_PACER_MIN_MSS, 1) : 0;
1296 }
1297
1298 static void
1299 http_transport_get_endpoint (u32 hc_index, u32 thread_index,
1300                              transport_endpoint_t *tep, u8 is_lcl)
1301 {
1302   http_conn_t *hc = http_conn_get_w_thread (hc_index, thread_index);
1303   session_t *ts;
1304
1305   ts = session_get_from_handle (hc->h_tc_session_handle);
1306   session_get_endpoint (ts, tep, is_lcl);
1307 }
1308
1309 static u8 *
1310 format_http_connection (u8 *s, va_list *args)
1311 {
1312   http_conn_t *hc = va_arg (*args, http_conn_t *);
1313   session_t *ts;
1314
1315   ts = session_get_from_handle (hc->h_tc_session_handle);
1316   s = format (s, "[%d:%d][H] app_wrk %u ts %d:%d", hc->c_thread_index,
1317               hc->c_s_index, hc->h_pa_wrk_index, ts->thread_index,
1318               ts->session_index);
1319
1320   return s;
1321 }
1322
1323 static u8 *
1324 format_http_listener (u8 *s, va_list *args)
1325 {
1326   http_conn_t *lhc = va_arg (*args, http_conn_t *);
1327   app_listener_t *al;
1328   session_t *lts;
1329
1330   al = app_listener_get_w_handle (lhc->h_tc_session_handle);
1331   lts = app_listener_get_session (al);
1332   s = format (s, "[%d:%d][H] app_wrk %u ts %d:%d", lhc->c_thread_index,
1333               lhc->c_s_index, lhc->h_pa_wrk_index, lts->thread_index,
1334               lts->session_index);
1335
1336   return s;
1337 }
1338
1339 static u8 *
1340 format_http_conn_state (u8 *s, va_list *args)
1341 {
1342   http_conn_t *hc = va_arg (*args, http_conn_t *);
1343
1344   switch (hc->state)
1345     {
1346     case HTTP_CONN_STATE_LISTEN:
1347       s = format (s, "LISTEN");
1348       break;
1349     case HTTP_CONN_STATE_CONNECTING:
1350       s = format (s, "CONNECTING");
1351       break;
1352     case HTTP_CONN_STATE_ESTABLISHED:
1353       s = format (s, "ESTABLISHED");
1354       break;
1355     case HTTP_CONN_STATE_TRANSPORT_CLOSED:
1356       s = format (s, "TRANSPORT_CLOSED");
1357       break;
1358     case HTTP_CONN_STATE_APP_CLOSED:
1359       s = format (s, "APP_CLOSED");
1360       break;
1361     case HTTP_CONN_STATE_CLOSED:
1362       s = format (s, "CLOSED");
1363       break;
1364     }
1365
1366   return s;
1367 }
1368
1369 static u8 *
1370 format_http_transport_connection (u8 *s, va_list *args)
1371 {
1372   u32 tc_index = va_arg (*args, u32);
1373   u32 thread_index = va_arg (*args, u32);
1374   u32 verbose = va_arg (*args, u32);
1375   http_conn_t *hc;
1376
1377   hc = http_conn_get_w_thread (tc_index, thread_index);
1378
1379   s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_http_connection, hc);
1380   if (verbose)
1381     {
1382       s =
1383         format (s, "%-" SESSION_CLI_STATE_LEN "U", format_http_conn_state, hc);
1384       if (verbose > 1)
1385         s = format (s, "\n");
1386     }
1387
1388   return s;
1389 }
1390
1391 static u8 *
1392 format_http_transport_listener (u8 *s, va_list *args)
1393 {
1394   u32 tc_index = va_arg (*args, u32);
1395   u32 __clib_unused thread_index = va_arg (*args, u32);
1396   u32 __clib_unused verbose = va_arg (*args, u32);
1397   http_conn_t *lhc = http_listener_get (tc_index);
1398
1399   s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_http_listener, lhc);
1400   if (verbose)
1401     s =
1402       format (s, "%-" SESSION_CLI_STATE_LEN "U", format_http_conn_state, lhc);
1403   return s;
1404 }
1405
1406 static const transport_proto_vft_t http_proto = {
1407   .enable = http_transport_enable,
1408   .connect = http_transport_connect,
1409   .start_listen = http_start_listen,
1410   .stop_listen = http_stop_listen,
1411   .close = http_transport_close,
1412   .custom_tx = http_app_tx_callback,
1413   .get_connection = http_transport_get_connection,
1414   .get_listener = http_transport_get_listener,
1415   .get_transport_endpoint = http_transport_get_endpoint,
1416   .format_connection = format_http_transport_connection,
1417   .format_listener = format_http_transport_listener,
1418   .transport_options = {
1419     .name = "http",
1420     .short_name = "H",
1421     .tx_type = TRANSPORT_TX_INTERNAL,
1422     .service_type = TRANSPORT_SERVICE_APP,
1423   },
1424 };
1425
1426 static clib_error_t *
1427 http_transport_init (vlib_main_t *vm)
1428 {
1429   http_main_t *hm = &http_main;
1430
1431   transport_register_protocol (TRANSPORT_PROTO_HTTP, &http_proto,
1432                                FIB_PROTOCOL_IP4, ~0);
1433   transport_register_protocol (TRANSPORT_PROTO_HTTP, &http_proto,
1434                                FIB_PROTOCOL_IP6, ~0);
1435
1436   /* Default values, configurable via startup conf */
1437   hm->add_seg_size = 256 << 20;
1438   hm->first_seg_size = 32 << 20;
1439   hm->fifo_size = 512 << 10;
1440
1441   return 0;
1442 }
1443
1444 VLIB_INIT_FUNCTION (http_transport_init);
1445
1446 static clib_error_t *
1447 http_config_fn (vlib_main_t *vm, unformat_input_t *input)
1448 {
1449   http_main_t *hm = &http_main;
1450   uword mem_sz;
1451
1452   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1453     {
1454       if (unformat (input, "first-segment-size %U", unformat_memory_size,
1455                     &mem_sz))
1456         {
1457           hm->first_seg_size = clib_max (mem_sz, 1 << 20);
1458           if (hm->first_seg_size != mem_sz)
1459             clib_warning ("first seg size too small %u", mem_sz);
1460         }
1461       else if (unformat (input, "add-segment-size %U", unformat_memory_size,
1462                          &mem_sz))
1463         {
1464           hm->add_seg_size = clib_max (mem_sz, 1 << 20);
1465           if (hm->add_seg_size != mem_sz)
1466             clib_warning ("add seg size too small %u", mem_sz);
1467         }
1468       else if (unformat (input, "fifo-size %U", unformat_memory_size, &mem_sz))
1469         {
1470           hm->fifo_size = clib_clamp (mem_sz, 4 << 10, 2 << 30);
1471           if (hm->fifo_size != mem_sz)
1472             clib_warning ("invalid fifo size %lu", mem_sz);
1473         }
1474       else
1475         return clib_error_return (0, "unknown input `%U'",
1476                                   format_unformat_error, input);
1477     }
1478   return 0;
1479 }
1480
1481 VLIB_CONFIG_FUNCTION (http_config_fn, "http");
1482
1483 VLIB_PLUGIN_REGISTER () = {
1484   .version = VPP_BUILD_VER,
1485   .description = "Hypertext Transfer Protocol (HTTP)",
1486   .default_disabled = 0,
1487 };
1488
1489 /*
1490  * fd.io coding-style-patch-verification: ON
1491  *
1492  * Local Variables:
1493  * eval: (c-set-style "gnu")
1494  * End:
1495  */