Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015-2017 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> |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 17 | #include <vnet/session/application.h> |
| 18 | #include <vnet/session/application_interface.h> |
| 19 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 20 | typedef enum |
| 21 | { |
| 22 | EVENT_WAKEUP = 1, |
| 23 | } http_process_event_t; |
| 24 | |
| 25 | typedef struct |
| 26 | { |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 27 | u64 session_handle; |
| 28 | u64 node_index; |
| 29 | u8 *data; |
| 30 | } builtin_http_server_args; |
| 31 | |
| 32 | typedef struct |
| 33 | { |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 34 | u8 **rx_buf; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 35 | unix_shared_memory_queue_t **vpp_queue; |
| 36 | u64 byte_index; |
| 37 | |
| 38 | uword *handler_by_get_request; |
| 39 | |
| 40 | u32 *free_http_cli_process_node_indices; |
| 41 | |
| 42 | /* Sever's event queue */ |
| 43 | unix_shared_memory_queue_t *vl_input_queue; |
| 44 | |
| 45 | /* API client handle */ |
| 46 | u32 my_client_index; |
| 47 | |
| 48 | u32 app_index; |
| 49 | |
| 50 | /* process node index for evnt scheduling */ |
| 51 | u32 node_index; |
| 52 | vlib_main_t *vlib_main; |
| 53 | } http_server_main_t; |
| 54 | |
| 55 | http_server_main_t http_server_main; |
| 56 | |
| 57 | static void |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 58 | free_http_process (builtin_http_server_args * args) |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 59 | { |
| 60 | vlib_node_runtime_t *rt; |
| 61 | vlib_main_t *vm = &vlib_global_main; |
| 62 | http_server_main_t *hsm = &http_server_main; |
| 63 | vlib_node_t *n; |
| 64 | u32 node_index; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 65 | builtin_http_server_args **save_args; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 66 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 67 | node_index = args->node_index; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 68 | ASSERT (node_index != 0); |
| 69 | |
| 70 | n = vlib_get_node (vm, node_index); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 71 | rt = vlib_node_get_runtime (vm, n->index); |
| 72 | save_args = vlib_node_get_runtime_data (vm, n->index); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 73 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 74 | /* Reset process session pointer */ |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 75 | clib_mem_free (*save_args); |
| 76 | *save_args = 0; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 77 | |
| 78 | /* Turn off the process node */ |
| 79 | vlib_node_set_state (vm, rt->node_index, VLIB_NODE_STATE_DISABLED); |
| 80 | |
| 81 | /* add node index to the freelist */ |
| 82 | vec_add1 (hsm->free_http_cli_process_node_indices, node_index); |
| 83 | } |
| 84 | |
| 85 | static const char |
| 86 | *http_response = "HTTP/1.1 200 OK\r\n" |
| 87 | "Content-Type: text/html\r\n" |
| 88 | "Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n" |
| 89 | "Connection: close\r\n" |
| 90 | "Pragma: no-cache\r\n" "Content-Length: %d\r\n\r\n%s"; |
| 91 | |
| 92 | static const char |
| 93 | *http_error_template = "HTTP/1.1 %s\r\n" |
| 94 | "Content-Type: text/html\r\n" |
| 95 | "Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n" |
| 96 | "Connection: close\r\n" "Pragma: no-cache\r\n" "Content-Length: 0\r\n\r\n"; |
| 97 | |
| 98 | /* Header, including incantation to suppress favicon.ico requests */ |
| 99 | static const char |
| 100 | *html_header_template = "<html><head><title>%v</title>" |
| 101 | "</head><link rel=\"icon\" href=\"data:,\"><body><pre>"; |
| 102 | |
| 103 | static const char *html_footer = "</pre></body></html>\r\n"; |
| 104 | |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 105 | static const char |
| 106 | *html_header_static = "<html><head><title>static reply</title></head>" |
| 107 | "<link rel=\"icon\" href=\"data:,\"><body><pre>hello</pre></body>" |
| 108 | "</html>\r\n"; |
| 109 | |
| 110 | static u8 *static_http; |
| 111 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 112 | static void |
| 113 | http_cli_output (uword arg, u8 * buffer, uword buffer_bytes) |
| 114 | { |
| 115 | u8 **output_vecp = (u8 **) arg; |
| 116 | u8 *output_vec; |
| 117 | u32 offset; |
| 118 | |
| 119 | output_vec = *output_vecp; |
| 120 | |
| 121 | offset = vec_len (output_vec); |
| 122 | vec_validate (output_vec, offset + buffer_bytes - 1); |
| 123 | clib_memcpy (output_vec + offset, buffer, buffer_bytes); |
| 124 | |
| 125 | *output_vecp = output_vec; |
| 126 | } |
| 127 | |
| 128 | void |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 129 | send_data (stream_session_t * s, u8 * data) |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 130 | { |
| 131 | session_fifo_event_t evt; |
| 132 | u32 offset, bytes_to_send; |
| 133 | f64 delay = 10e-3; |
| 134 | http_server_main_t *hsm = &http_server_main; |
| 135 | vlib_main_t *vm = hsm->vlib_main; |
| 136 | f64 last_sent_timer = vlib_time_now (vm); |
| 137 | |
| 138 | bytes_to_send = vec_len (data); |
| 139 | offset = 0; |
| 140 | |
| 141 | while (bytes_to_send > 0) |
| 142 | { |
| 143 | int actual_transfer; |
| 144 | |
| 145 | actual_transfer = svm_fifo_enqueue_nowait |
| 146 | (s->server_tx_fifo, bytes_to_send, data + offset); |
| 147 | |
| 148 | /* Made any progress? */ |
| 149 | if (actual_transfer <= 0) |
| 150 | { |
| 151 | vlib_process_suspend (vm, delay); |
| 152 | /* 10s deadman timer */ |
| 153 | if (vlib_time_now (vm) > last_sent_timer + 10.0) |
| 154 | { |
| 155 | /* $$$$ FC: reset transport session here? */ |
| 156 | break; |
| 157 | } |
| 158 | /* Exponential backoff, within reason */ |
| 159 | if (delay < 1.0) |
| 160 | delay = delay * 2.0; |
| 161 | } |
| 162 | else |
| 163 | { |
| 164 | last_sent_timer = vlib_time_now (vm); |
| 165 | offset += actual_transfer; |
| 166 | bytes_to_send -= actual_transfer; |
| 167 | |
| 168 | if (svm_fifo_set_event (s->server_tx_fifo)) |
| 169 | { |
| 170 | /* Fabricate TX event, send to vpp */ |
| 171 | evt.fifo = s->server_tx_fifo; |
| 172 | evt.event_type = FIFO_EVENT_APP_TX; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 173 | |
| 174 | unix_shared_memory_queue_add (hsm->vpp_queue[s->thread_index], |
| 175 | (u8 *) & evt, |
| 176 | 0 /* do wait for mutex */ ); |
| 177 | } |
| 178 | delay = 10e-3; |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | static void |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 184 | send_error (stream_session_t * s, char *str) |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 185 | { |
| 186 | u8 *data; |
| 187 | |
| 188 | data = format (0, http_error_template, str); |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 189 | send_data (s, data); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 190 | vec_free (data); |
| 191 | } |
| 192 | |
| 193 | static uword |
| 194 | http_cli_process (vlib_main_t * vm, |
| 195 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
| 196 | { |
| 197 | http_server_main_t *hsm = &http_server_main; |
| 198 | u8 *request = 0, *reply = 0; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 199 | builtin_http_server_args **save_args; |
| 200 | builtin_http_server_args *args; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 201 | stream_session_t *s; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 202 | unformat_input_t input; |
| 203 | int i; |
| 204 | u8 *http = 0, *html = 0; |
| 205 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 206 | save_args = vlib_node_get_runtime_data (hsm->vlib_main, rt->node_index); |
| 207 | args = *save_args; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 208 | s = session_get_from_handle (args->session_handle); |
| 209 | ASSERT (s); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 210 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 211 | request = (u8 *) (void *) (args->data); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 212 | if (vec_len (request) < 7) |
| 213 | { |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 214 | send_error (s, "400 Bad Request"); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 215 | goto out; |
| 216 | } |
| 217 | |
| 218 | for (i = 0; i < vec_len (request) - 4; i++) |
| 219 | { |
| 220 | if (request[i] == 'G' && |
| 221 | request[i + 1] == 'E' && |
| 222 | request[i + 2] == 'T' && request[i + 3] == ' ') |
| 223 | goto found; |
| 224 | } |
| 225 | bad_request: |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 226 | send_error (s, "400 Bad Request"); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 227 | goto out; |
| 228 | |
| 229 | found: |
| 230 | /* Lose "GET " */ |
| 231 | vec_delete (request, i + 5, 0); |
| 232 | |
| 233 | /* Replace slashes with spaces, stop at the end of the path */ |
| 234 | i = 0; |
| 235 | while (1) |
| 236 | { |
| 237 | if (request[i] == '/') |
| 238 | request[i] = ' '; |
| 239 | else if (request[i] == ' ') |
| 240 | { |
| 241 | /* vlib_cli_input is vector-based, no need for a NULL */ |
| 242 | _vec_len (request) = i; |
| 243 | break; |
| 244 | } |
| 245 | i++; |
| 246 | /* Should never happen */ |
| 247 | if (i == vec_len (request)) |
| 248 | goto bad_request; |
| 249 | } |
| 250 | |
| 251 | /* Generate the html header */ |
| 252 | html = format (0, html_header_template, request /* title */ ); |
| 253 | |
| 254 | /* Run the command */ |
| 255 | unformat_init_vector (&input, request); |
| 256 | vlib_cli_input (vm, &input, http_cli_output, (uword) & reply); |
| 257 | unformat_free (&input); |
| 258 | request = 0; |
| 259 | |
| 260 | /* Generate the html page */ |
| 261 | html = format (html, "%v", reply); |
| 262 | html = format (html, html_footer); |
| 263 | /* And the http reply */ |
| 264 | http = format (0, http_response, vec_len (html), html); |
| 265 | |
| 266 | /* Send it */ |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 267 | send_data (s, http); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 268 | |
| 269 | out: |
| 270 | /* Cleanup */ |
| 271 | vec_free (request); |
| 272 | vec_free (reply); |
| 273 | vec_free (html); |
| 274 | vec_free (http); |
| 275 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 276 | free_http_process (args); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 277 | return (0); |
| 278 | } |
| 279 | |
| 280 | static void |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 281 | alloc_http_process (builtin_http_server_args * args) |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 282 | { |
| 283 | char *name; |
| 284 | vlib_node_t *n; |
| 285 | http_server_main_t *hsm = &http_server_main; |
| 286 | vlib_main_t *vm = hsm->vlib_main; |
| 287 | uword l = vec_len (hsm->free_http_cli_process_node_indices); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 288 | builtin_http_server_args **save_args; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 289 | |
| 290 | if (vec_len (hsm->free_http_cli_process_node_indices) > 0) |
| 291 | { |
| 292 | n = vlib_get_node (vm, hsm->free_http_cli_process_node_indices[l - 1]); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 293 | vlib_node_set_state (vm, n->index, VLIB_NODE_STATE_POLLING); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 294 | _vec_len (hsm->free_http_cli_process_node_indices) = l - 1; |
| 295 | } |
| 296 | else |
| 297 | { |
| 298 | static vlib_node_registration_t r = { |
| 299 | .function = http_cli_process, |
| 300 | .type = VLIB_NODE_TYPE_PROCESS, |
| 301 | .process_log2_n_stack_bytes = 16, |
| 302 | .runtime_data_bytes = sizeof (void *), |
| 303 | }; |
| 304 | |
| 305 | name = (char *) format (0, "http-cli-%d", l); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 306 | r.name = name; |
| 307 | vlib_register_node (vm, &r); |
| 308 | vec_free (name); |
| 309 | |
| 310 | n = vlib_get_node (vm, r.index); |
| 311 | } |
| 312 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 313 | /* Save the node index in the args. It won't be zero. */ |
| 314 | args->node_index = n->index; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 315 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 316 | /* Save the args (pointer) in the node runtime */ |
| 317 | save_args = vlib_node_get_runtime_data (vm, n->index); |
| 318 | *save_args = args; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 319 | |
| 320 | vlib_start_process (vm, n->runtime_index); |
| 321 | } |
| 322 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 323 | static void |
| 324 | alloc_http_process_callback (void *cb_args) |
| 325 | { |
| 326 | alloc_http_process ((builtin_http_server_args *) cb_args); |
| 327 | } |
| 328 | |
| 329 | static int |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 330 | session_rx_request (stream_session_t * s) |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 331 | { |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 332 | http_server_main_t *hsm = &http_server_main; |
| 333 | svm_fifo_t *rx_fifo; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 334 | u32 max_dequeue; |
| 335 | int actual_transfer; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 336 | |
| 337 | rx_fifo = s->server_rx_fifo; |
| 338 | max_dequeue = svm_fifo_max_dequeue (rx_fifo); |
| 339 | svm_fifo_unset_event (rx_fifo); |
| 340 | if (PREDICT_FALSE (max_dequeue == 0)) |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 341 | return -1; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 342 | |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 343 | vec_validate (hsm->rx_buf[s->thread_index], max_dequeue - 1); |
| 344 | _vec_len (hsm->rx_buf[s->thread_index]) = max_dequeue; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 345 | |
| 346 | actual_transfer = svm_fifo_dequeue_nowait (rx_fifo, max_dequeue, |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 347 | hsm->rx_buf[s->thread_index]); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 348 | ASSERT (actual_transfer > 0); |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 349 | _vec_len (hsm->rx_buf[s->thread_index]) = actual_transfer; |
| 350 | return 0; |
| 351 | } |
| 352 | |
| 353 | static int |
| 354 | http_server_rx_callback (stream_session_t * s) |
| 355 | { |
| 356 | http_server_main_t *hsm = &http_server_main; |
| 357 | builtin_http_server_args *args; |
JingLiuZTE | 7cafe76 | 2017-11-08 15:01:27 +0800 | [diff] [blame] | 358 | int rv; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 359 | |
JingLiuZTE | 7cafe76 | 2017-11-08 15:01:27 +0800 | [diff] [blame] | 360 | rv = session_rx_request (s); |
| 361 | if (rv) |
| 362 | return rv; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 363 | |
| 364 | /* send the command to a new/recycled vlib process */ |
| 365 | args = clib_mem_alloc (sizeof (*args)); |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 366 | args->data = vec_dup (hsm->rx_buf[s->thread_index]); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 367 | args->session_handle = session_handle (s); |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 368 | |
| 369 | /* Send an RPC request via the thread-0 input node */ |
| 370 | if (vlib_get_thread_index () != 0) |
| 371 | { |
| 372 | session_fifo_event_t evt; |
| 373 | evt.rpc_args.fp = alloc_http_process_callback; |
| 374 | evt.rpc_args.arg = args; |
| 375 | evt.event_type = FIFO_EVENT_RPC; |
| 376 | unix_shared_memory_queue_add |
| 377 | (session_manager_get_vpp_event_queue (0 /* main thread */ ), |
| 378 | (u8 *) & evt, 0 /* do wait for mutex */ ); |
| 379 | } |
| 380 | else |
| 381 | alloc_http_process (args); |
| 382 | return 0; |
| 383 | } |
| 384 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 385 | static int |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 386 | http_server_rx_callback_static (stream_session_t * s) |
| 387 | { |
| 388 | http_server_main_t *hsm = &http_server_main; |
| 389 | u8 *request = 0; |
| 390 | int i; |
JingLiuZTE | 7cafe76 | 2017-11-08 15:01:27 +0800 | [diff] [blame] | 391 | int rv; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 392 | |
JingLiuZTE | 7cafe76 | 2017-11-08 15:01:27 +0800 | [diff] [blame] | 393 | rv = session_rx_request (s); |
| 394 | if (rv) |
| 395 | return rv; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 396 | |
| 397 | request = hsm->rx_buf[s->thread_index]; |
| 398 | if (vec_len (request) < 7) |
| 399 | { |
| 400 | send_error (s, "400 Bad Request"); |
| 401 | goto out; |
| 402 | } |
| 403 | |
| 404 | for (i = 0; i < vec_len (request) - 4; i++) |
| 405 | { |
| 406 | if (request[i] == 'G' && |
| 407 | request[i + 1] == 'E' && |
| 408 | request[i + 2] == 'T' && request[i + 3] == ' ') |
| 409 | goto found; |
| 410 | } |
| 411 | send_error (s, "400 Bad Request"); |
| 412 | goto out; |
| 413 | |
| 414 | found: |
| 415 | |
| 416 | /* Send it */ |
| 417 | send_data (s, static_http); |
| 418 | |
| 419 | out: |
| 420 | /* Cleanup */ |
| 421 | vec_free (request); |
Florin Coras | 156e5ca | 2017-11-13 12:07:38 -0800 | [diff] [blame] | 422 | hsm->rx_buf[s->thread_index] = request; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | static int |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 427 | builtin_session_accept_callback (stream_session_t * s) |
| 428 | { |
| 429 | http_server_main_t *bsm = &http_server_main; |
| 430 | |
| 431 | bsm->vpp_queue[s->thread_index] = |
| 432 | session_manager_get_vpp_event_queue (s->thread_index); |
| 433 | s->session_state = SESSION_STATE_READY; |
| 434 | bsm->byte_index = 0; |
| 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | static void |
| 439 | builtin_session_disconnect_callback (stream_session_t * s) |
| 440 | { |
| 441 | http_server_main_t *bsm = &http_server_main; |
| 442 | vnet_disconnect_args_t _a, *a = &_a; |
| 443 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 444 | a->handle = session_handle (s); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 445 | a->app_index = bsm->app_index; |
| 446 | vnet_disconnect_session (a); |
| 447 | } |
| 448 | |
| 449 | static void |
| 450 | builtin_session_reset_callback (stream_session_t * s) |
| 451 | { |
| 452 | clib_warning ("called.. "); |
| 453 | |
| 454 | stream_session_cleanup (s); |
| 455 | } |
| 456 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 457 | static int |
| 458 | builtin_session_connected_callback (u32 app_index, u32 api_context, |
| 459 | stream_session_t * s, u8 is_fail) |
| 460 | { |
| 461 | clib_warning ("called..."); |
| 462 | return -1; |
| 463 | } |
| 464 | |
| 465 | static int |
| 466 | builtin_add_segment_callback (u32 client_index, |
| 467 | const u8 * seg_name, u32 seg_size) |
| 468 | { |
| 469 | clib_warning ("called..."); |
| 470 | return -1; |
| 471 | } |
| 472 | |
| 473 | static int |
| 474 | builtin_redirect_connect_callback (u32 client_index, void *mp) |
| 475 | { |
| 476 | clib_warning ("called..."); |
| 477 | return -1; |
| 478 | } |
| 479 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 480 | static session_cb_vft_t builtin_session_cb_vft = { |
| 481 | .session_accept_callback = builtin_session_accept_callback, |
| 482 | .session_disconnect_callback = builtin_session_disconnect_callback, |
| 483 | .session_connected_callback = builtin_session_connected_callback, |
| 484 | .add_segment_callback = builtin_add_segment_callback, |
| 485 | .redirect_connect_callback = builtin_redirect_connect_callback, |
| 486 | .builtin_server_rx_callback = http_server_rx_callback, |
| 487 | .session_reset_callback = builtin_session_reset_callback |
| 488 | }; |
| 489 | |
| 490 | /* Abuse VPP's input queue */ |
| 491 | static int |
| 492 | create_api_loopback (vlib_main_t * vm) |
| 493 | { |
| 494 | http_server_main_t *hsm = &http_server_main; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 495 | api_main_t *am = &api_main; |
| 496 | vl_shmem_hdr_t *shmem_hdr; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 497 | |
| 498 | shmem_hdr = am->shmem_hdr; |
| 499 | hsm->vl_input_queue = shmem_hdr->vl_input_queue; |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 500 | hsm->my_client_index = |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 501 | vl_api_memclnt_create_internal ("test_http_server", hsm->vl_input_queue); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 502 | return 0; |
| 503 | } |
| 504 | |
| 505 | static int |
| 506 | server_attach () |
| 507 | { |
| 508 | http_server_main_t *hsm = &http_server_main; |
| 509 | u8 segment_name[128]; |
| 510 | u64 options[SESSION_OPTIONS_N_OPTIONS]; |
| 511 | vnet_app_attach_args_t _a, *a = &_a; |
| 512 | |
| 513 | memset (a, 0, sizeof (*a)); |
| 514 | memset (options, 0, sizeof (options)); |
| 515 | |
| 516 | a->api_client_index = hsm->my_client_index; |
| 517 | a->session_cb_vft = &builtin_session_cb_vft; |
| 518 | a->options = options; |
| 519 | a->options[SESSION_OPTIONS_SEGMENT_SIZE] = 128 << 20; |
| 520 | a->options[SESSION_OPTIONS_RX_FIFO_SIZE] = 8 << 10; |
| 521 | a->options[SESSION_OPTIONS_TX_FIFO_SIZE] = 32 << 10; |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 522 | a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 523 | a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = 16; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 524 | a->segment_name = segment_name; |
| 525 | a->segment_name_length = ARRAY_LEN (segment_name); |
| 526 | |
| 527 | if (vnet_application_attach (a)) |
| 528 | { |
| 529 | clib_warning ("failed to attach server"); |
| 530 | return -1; |
| 531 | } |
| 532 | hsm->app_index = a->app_index; |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | static int |
| 537 | server_listen () |
| 538 | { |
| 539 | http_server_main_t *hsm = &http_server_main; |
| 540 | vnet_bind_args_t _a, *a = &_a; |
| 541 | memset (a, 0, sizeof (*a)); |
| 542 | a->app_index = hsm->app_index; |
| 543 | a->uri = "tcp://0.0.0.0/80"; |
| 544 | return vnet_bind_uri (a); |
| 545 | } |
| 546 | |
| 547 | static int |
| 548 | server_create (vlib_main_t * vm) |
| 549 | { |
| 550 | http_server_main_t *hsm = &http_server_main; |
| 551 | u32 num_threads; |
| 552 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 553 | |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 554 | ASSERT (hsm->my_client_index == (u32) ~ 0); |
| 555 | if (create_api_loopback (vm)) |
| 556 | return -1; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 557 | |
| 558 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 559 | vec_validate (http_server_main.vpp_queue, num_threads - 1); |
| 560 | |
| 561 | if (server_attach ()) |
| 562 | { |
| 563 | clib_warning ("failed to attach server"); |
| 564 | return -1; |
| 565 | } |
| 566 | if (server_listen ()) |
| 567 | { |
| 568 | clib_warning ("failed to start listening"); |
| 569 | return -1; |
| 570 | } |
| 571 | return 0; |
| 572 | } |
| 573 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 574 | static clib_error_t * |
| 575 | server_create_command_fn (vlib_main_t * vm, |
| 576 | unformat_input_t * input, vlib_cli_command_t * cmd) |
| 577 | { |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 578 | http_server_main_t *hsm = &http_server_main; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 579 | int rv, is_static = 0; |
| 580 | u8 *html; |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 581 | |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 582 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 583 | { |
| 584 | if (unformat (input, "static")) |
| 585 | is_static = 1; |
| 586 | else |
| 587 | return clib_error_return (0, "unknown input `%U'", |
| 588 | format_unformat_error, input); |
| 589 | } |
Florin Coras | 0e9c33b | 2017-08-14 22:33:41 -0700 | [diff] [blame] | 590 | if (hsm->my_client_index != (u32) ~ 0) |
| 591 | return clib_error_return (0, "test http server is already running"); |
| 592 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 593 | vnet_session_enable_disable (vm, 1 /* turn on TCP, etc. */ ); |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 594 | |
| 595 | if (is_static) |
| 596 | { |
| 597 | builtin_session_cb_vft.builtin_server_rx_callback = |
| 598 | http_server_rx_callback_static; |
| 599 | html = format (0, html_header_static); |
| 600 | static_http = format (0, http_response, vec_len (html), html); |
| 601 | } |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 602 | rv = server_create (vm); |
| 603 | switch (rv) |
| 604 | { |
| 605 | case 0: |
| 606 | break; |
| 607 | default: |
| 608 | return clib_error_return (0, "server_create returned %d", rv); |
| 609 | } |
| 610 | return 0; |
| 611 | } |
| 612 | |
| 613 | /* *INDENT-OFF* */ |
| 614 | VLIB_CLI_COMMAND (server_create_command, static) = |
| 615 | { |
| 616 | .path = "test http server", |
| 617 | .short_help = "test http server", |
| 618 | .function = server_create_command_fn, |
| 619 | }; |
| 620 | /* *INDENT-ON* */ |
| 621 | |
| 622 | static clib_error_t * |
| 623 | builtin_http_server_main_init (vlib_main_t * vm) |
| 624 | { |
| 625 | http_server_main_t *hsm = &http_server_main; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 626 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 627 | u32 num_threads; |
| 628 | |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 629 | hsm->my_client_index = ~0; |
| 630 | hsm->vlib_main = vm; |
Florin Coras | 149d62f | 2017-11-01 15:05:49 -0700 | [diff] [blame] | 631 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 632 | vec_validate (hsm->rx_buf, num_threads - 1); |
Dave Barach | 1015a1e | 2017-05-08 19:15:03 -0400 | [diff] [blame] | 633 | return 0; |
| 634 | } |
| 635 | |
| 636 | VLIB_INIT_FUNCTION (builtin_http_server_main_init); |
| 637 | |
| 638 | /* |
| 639 | * fd.io coding-style-patch-verification: ON |
| 640 | * |
| 641 | * Local Variables: |
| 642 | * eval: (c-set-style "gnu") |
| 643 | * End: |
| 644 | */ |