FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
http_server.c File Reference
+ Include dependency graph for http_server.c:

Go to the source code of this file.

Data Structures

struct  http_server_args
 
struct  http_session_t
 
struct  http_server_main_t
 

Enumerations

enum  http_process_event_t { EVENT_WAKEUP = 1 }
 
enum  http_session_state_t { HTTP_STATE_CLOSED, HTTP_STATE_ESTABLISHED, HTTP_STATE_OK_SENT }
 

Functions

static void http_server_sessions_reader_lock (void)
 
static void http_server_sessions_reader_unlock (void)
 
static void http_server_sessions_writer_lock (void)
 
static void http_server_sessions_writer_unlock (void)
 
static void http_server_session_lookup_add (u32 thread_index, u32 s_index, u32 hs_index)
 
static void http_server_session_lookup_del (u32 thread_index, u32 s_index)
 
static http_session_thttp_server_session_lookup (u32 thread_index, u32 s_index)
 
static http_session_thttp_server_session_alloc (u32 thread_index)
 
static http_session_thttp_server_session_get (u32 thread_index, u32 hs_index)
 
static void http_server_session_free (http_session_t *hs)
 
static void http_server_session_cleanup (http_session_t *hs)
 
static void http_process_free (http_server_args *args)
 
static void http_cli_output (uword arg, u8 *buffer, uword buffer_bytes)
 
void send_data (http_session_t *hs, u8 *data)
 
static void send_error (http_session_t *hs, char *str)
 
static uword http_cli_process (vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
 
static void alloc_http_process (http_server_args *args)
 
static void alloc_http_process_callback (void *cb_args)
 
static int session_rx_request (http_session_t *hs)
 
static int http_server_rx_callback (stream_session_t *s)
 
static int http_server_rx_callback_static (stream_session_t *s)
 
static int http_server_session_accept_callback (stream_session_t *s)
 
static void http_server_session_disconnect_callback (stream_session_t *s)
 
static void http_server_session_reset_callback (stream_session_t *s)
 
static int http_server_session_connected_callback (u32 app_index, u32 api_context, stream_session_t *s, u8 is_fail)
 
static int http_server_add_segment_callback (u32 client_index, u64 segment_handle)
 
static int http_server_attach ()
 
static int http_server_listen ()
 
static int http_server_create (vlib_main_t *vm)
 
static clib_error_thttp_server_create_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static clib_error_thttp_server_main_init (vlib_main_t *vm)
 

Variables

http_server_main_t http_server_main
 
static const char * http_ok
 
static const char * http_response
 
static const char * http_error_template
 
static const char * html_header_template
 
static const char * html_footer
 
static const char * html_header_static
 
static u8static_http
 
static u8static_ok
 
static session_cb_vft_t http_server_session_cb_vft
 
static vlib_cli_command_t http_server_create_command
 (constructor) VLIB_CLI_COMMAND (http_server_create_command) More...
 

Enumeration Type Documentation

◆ http_process_event_t

Enumerator
EVENT_WAKEUP 

Definition at line 20 of file http_server.c.

◆ http_session_state_t

Enumerator
HTTP_STATE_CLOSED 
HTTP_STATE_ESTABLISHED 
HTTP_STATE_OK_SENT 

Definition at line 32 of file http_server.c.

Function Documentation

◆ alloc_http_process()

static void alloc_http_process ( http_server_args args)
static

Definition at line 407 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ alloc_http_process_callback()

static void alloc_http_process_callback ( void *  cb_args)
static

Definition at line 450 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_cli_output()

static void http_cli_output ( uword  arg,
u8 buffer,
uword  buffer_bytes 
)
static

Definition at line 241 of file http_server.c.

◆ http_cli_process()

static uword http_cli_process ( vlib_main_t vm,
vlib_node_runtime_t rt,
vlib_frame_t f 
)
static

Definition at line 317 of file http_server.c.

+ Here is the call graph for this function:

◆ http_process_free()

static void http_process_free ( http_server_args args)
static

Definition at line 176 of file http_server.c.

+ Here is the call graph for this function:

◆ http_server_add_segment_callback()

static int http_server_add_segment_callback ( u32  client_index,
u64  segment_handle 
)
static

Definition at line 659 of file http_server.c.

◆ http_server_attach()

static int http_server_attach ( )
static

Definition at line 675 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_create()

static int http_server_create ( vlib_main_t vm)
static

Definition at line 740 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_create_command_fn()

static clib_error_t* http_server_create_command_fn ( vlib_main_t vm,
unformat_input_t input,
vlib_cli_command_t cmd 
)
static

Definition at line 767 of file http_server.c.

+ Here is the call graph for this function:

◆ http_server_listen()

static int http_server_listen ( )
static

Definition at line 727 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_main_init()

static clib_error_t* http_server_main_init ( vlib_main_t vm)
static

Definition at line 839 of file http_server.c.

◆ http_server_rx_callback()

static int http_server_rx_callback ( stream_session_t s)
static

Definition at line 478 of file http_server.c.

+ Here is the call graph for this function:

◆ http_server_rx_callback_static()

static int http_server_rx_callback_static ( stream_session_t s)
static

Definition at line 510 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_session_accept_callback()

static int http_server_session_accept_callback ( stream_session_t s)
static

Definition at line 581 of file http_server.c.

+ Here is the call graph for this function:

◆ http_server_session_alloc()

static http_session_t* http_server_session_alloc ( u32  thread_index)
static

Definition at line 138 of file http_server.c.

+ Here is the caller graph for this function:

◆ http_server_session_cleanup()

static void http_server_session_cleanup ( http_session_t hs)
static

Definition at line 166 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_session_connected_callback()

static int http_server_session_connected_callback ( u32  app_index,
u32  api_context,
stream_session_t s,
u8  is_fail 
)
static

Definition at line 651 of file http_server.c.

◆ http_server_session_disconnect_callback()

static void http_server_session_disconnect_callback ( stream_session_t s)
static

Definition at line 609 of file http_server.c.

+ Here is the call graph for this function:

◆ http_server_session_free()

static void http_server_session_free ( http_session_t hs)
static

Definition at line 157 of file http_server.c.

+ Here is the caller graph for this function:

◆ http_server_session_get()

static http_session_t* http_server_session_get ( u32  thread_index,
u32  hs_index 
)
static

Definition at line 150 of file http_server.c.

+ Here is the caller graph for this function:

◆ http_server_session_lookup()

static http_session_t* http_server_session_lookup ( u32  thread_index,
u32  s_index 
)
static

Definition at line 123 of file http_server.c.

+ Here is the caller graph for this function:

◆ http_server_session_lookup_add()

static void http_server_session_lookup_add ( u32  thread_index,
u32  s_index,
u32  hs_index 
)
static

Definition at line 108 of file http_server.c.

+ Here is the caller graph for this function:

◆ http_server_session_lookup_del()

static void http_server_session_lookup_del ( u32  thread_index,
u32  s_index 
)
static

Definition at line 116 of file http_server.c.

+ Here is the caller graph for this function:

◆ http_server_session_reset_callback()

static void http_server_session_reset_callback ( stream_session_t s)
static

Definition at line 630 of file http_server.c.

+ Here is the call graph for this function:

◆ http_server_sessions_reader_lock()

static void http_server_sessions_reader_lock ( void  )
static

Definition at line 84 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_sessions_reader_unlock()

static void http_server_sessions_reader_unlock ( void  )
static

Definition at line 90 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_sessions_writer_lock()

static void http_server_sessions_writer_lock ( void  )
static

Definition at line 96 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ http_server_sessions_writer_unlock()

static void http_server_sessions_writer_unlock ( void  )
static

Definition at line 102 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ send_data()

void send_data ( http_session_t hs,
u8 data 
)

Definition at line 257 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ send_error()

static void send_error ( http_session_t hs,
char *  str 
)
static

Definition at line 307 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_rx_request()

static int session_rx_request ( http_session_t hs)
static

Definition at line 456 of file http_server.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ html_footer

const char* html_footer
static
Initial value:
=
"</pre></body></html>\r\n"

Definition at line 228 of file http_server.c.

◆ html_header_static

const char* html_header_static
static
Initial value:
=
"<html><head><title>static reply</title></head>"
"<link rel=\"icon\" href=\"data:,\">"
"<body><pre>hello</pre></body></html>\r\n"

Definition at line 231 of file http_server.c.

◆ html_header_template

const char* html_header_template
static
Initial value:
=
"<html><head><title>%v</title></head>"
"<link rel=\"icon\" href=\"data:,\">"
"<body><pre>"

Definition at line 223 of file http_server.c.

◆ http_error_template

const char* http_error_template
static
Initial value:
=
"HTTP/1.1 %s\r\n"
"Content-Type: text/html\r\n"
"Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n"
"Connection: close\r\n"
"Pragma: no-cache\r\n"
"Content-Length: 0\r\n\r\n"

Definition at line 214 of file http_server.c.

◆ http_ok

const char* http_ok
static
Initial value:
=
"HTTP/1.1 200 OK\r\n"

Definition at line 204 of file http_server.c.

◆ http_response

const char* http_response
static
Initial value:
=
"Content-Type: text/html\r\n"
"Expires: Mon, 11 Jan 1970 10:10:10 GMT\r\n"
"Connection: close \r\n"
"Pragma: no-cache\r\n"
"Content-Length: %d\r\n\r\n%s"

Definition at line 207 of file http_server.c.

◆ http_server_create_command

vlib_cli_command_t http_server_create_command
static
Initial value:
=
{
.path = "test http server",
.short_help = "test http server",
}
static clib_error_t * http_server_create_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: http_server.c:767

(constructor) VLIB_CLI_COMMAND (http_server_create_command)

Definition at line 830 of file http_server.c.

◆ http_server_main

http_server_main_t http_server_main

Definition at line 81 of file http_server.c.

◆ http_server_session_cb_vft

session_cb_vft_t http_server_session_cb_vft
static
Initial value:
= {
.session_accept_callback = http_server_session_accept_callback,
.session_disconnect_callback = http_server_session_disconnect_callback,
.session_connected_callback = http_server_session_connected_callback,
.add_segment_callback = http_server_add_segment_callback,
.builtin_app_rx_callback = http_server_rx_callback,
.session_reset_callback = http_server_session_reset_callback
}
static void http_server_session_disconnect_callback(stream_session_t *s)
Definition: http_server.c:609
static int http_server_session_accept_callback(stream_session_t *s)
Definition: http_server.c:581
static void http_server_session_reset_callback(stream_session_t *s)
Definition: http_server.c:630
static int http_server_session_connected_callback(u32 app_index, u32 api_context, stream_session_t *s, u8 is_fail)
Definition: http_server.c:651
static int http_server_add_segment_callback(u32 client_index, u64 segment_handle)
Definition: http_server.c:659
static int http_server_rx_callback(stream_session_t *s)
Definition: http_server.c:478

Definition at line 665 of file http_server.c.

◆ static_http

u8* static_http
static

Definition at line 237 of file http_server.c.

◆ static_ok

u8* static_ok
static

Definition at line 238 of file http_server.c.