GNU libmicrohttpd  0.9.29
connection.c File Reference

Methods for managing connections. More...

#include "internal.h"
#include <limits.h>
#include "connection.h"
#include "memorypool.h"
#include "response.h"
#include "mhd_mono_clock.h"
Include dependency graph for connection.c:

Go to the source code of this file.

Macros

#define HTTP_100_CONTINUE   "HTTP/1.1 100 Continue\r\n\r\n"
 
#define REQUEST_TOO_BIG   ""
 
#define REQUEST_LACKS_HOST   ""
 
#define REQUEST_MALFORMED   ""
 
#define INTERNAL_ERROR   ""
 
#define DEBUG_CLOSE   MHD_NO
 
#define DEBUG_SEND_DATA   MHD_NO
 
#define CONNECTION_CLOSE_ERROR(c, emsg)   connection_close_error (c, NULL)
 

Functions

_MHD_EXTERN int MHD_get_connection_values (struct MHD_Connection *connection, enum MHD_ValueKind kind, MHD_KeyValueIterator iterator, void *iterator_cls)
 
_MHD_EXTERN int MHD_set_connection_value (struct MHD_Connection *connection, enum MHD_ValueKind kind, const char *key, const char *value)
 
_MHD_EXTERN const char * MHD_lookup_connection_value (struct MHD_Connection *connection, enum MHD_ValueKind kind, const char *key)
 
static int need_100_continue (struct MHD_Connection *connection)
 
void MHD_connection_close_ (struct MHD_Connection *connection, enum MHD_RequestTerminationCode termination_code)
 
static void connection_close_error (struct MHD_Connection *connection, const char *emsg)
 
static int try_ready_normal_body (struct MHD_Connection *connection)
 
static int try_ready_chunked_body (struct MHD_Connection *connection)
 
static int keepalive_possible (struct MHD_Connection *connection)
 
static void get_date_string (char *date)
 
static int try_grow_read_buffer (struct MHD_Connection *connection)
 
static int build_header_response (struct MHD_Connection *connection)
 
static void transmit_error_response (struct MHD_Connection *connection, unsigned int status_code, const char *message)
 
static void MHD_connection_update_event_loop_info (struct MHD_Connection *connection)
 
static char * get_next_header_line (struct MHD_Connection *connection)
 
static int connection_add_header (struct MHD_Connection *connection, const char *key, const char *value, enum MHD_ValueKind kind)
 
static int parse_cookie_header (struct MHD_Connection *connection)
 
static int parse_initial_message_line (struct MHD_Connection *connection, char *line)
 
static void call_connection_handler (struct MHD_Connection *connection)
 
static void process_request_body (struct MHD_Connection *connection)
 
static int do_read (struct MHD_Connection *connection)
 
static int do_write (struct MHD_Connection *connection)
 
static int check_write_done (struct MHD_Connection *connection, enum MHD_CONNECTION_STATE next_state)
 
static int process_header_line (struct MHD_Connection *connection, char *line)
 
static int process_broken_line (struct MHD_Connection *connection, char *line, enum MHD_ValueKind kind)
 
static void parse_connection_headers (struct MHD_Connection *connection)
 
static void update_last_activity (struct MHD_Connection *connection)
 
int MHD_connection_handle_read (struct MHD_Connection *connection)
 
int MHD_connection_handle_write (struct MHD_Connection *connection)
 
static void cleanup_connection (struct MHD_Connection *connection)
 
int MHD_connection_handle_idle (struct MHD_Connection *connection)
 
void MHD_set_http_callbacks_ (struct MHD_Connection *connection)
 
_MHD_EXTERN const union MHD_ConnectionInfoMHD_get_connection_info (struct MHD_Connection *connection, enum MHD_ConnectionInfoType info_type,...)
 
_MHD_EXTERN int MHD_set_connection_option (struct MHD_Connection *connection, enum MHD_CONNECTION_OPTION option,...)
 
_MHD_EXTERN int MHD_queue_response (struct MHD_Connection *connection, unsigned int status_code, struct MHD_Response *response)
 

Detailed Description

Methods for managing connections.

Author
Daniel Pittman
Christian Grothoff

Definition in file connection.c.

Macro Definition Documentation

#define CONNECTION_CLOSE_ERROR (   c,
  emsg 
)    connection_close_error (c, NULL)
#define DEBUG_CLOSE   MHD_NO

Add extra debug messages with reasons for closing connections (non-error reasons).

Definition at line 107 of file connection.c.

#define DEBUG_SEND_DATA   MHD_NO

Should all data send be printed to stderr?

Definition at line 112 of file connection.c.

#define HTTP_100_CONTINUE   "HTTP/1.1 100 Continue\r\n\r\n"

Message to transmit when http 1.1 request is received

Definition at line 50 of file connection.c.

Referenced by MHD_connection_handle_idle(), MHD_connection_handle_write(), and need_100_continue().

#define INTERNAL_ERROR   ""

Response text used when there is an internal server error.

Intentionally empty here to keep our memory footprint minimal.

Definition at line 100 of file connection.c.

Referenced by MHD_connection_update_event_loop_info().

#define REQUEST_LACKS_HOST   ""

Response text used when the request (http header) does not contain a "Host:" header and still claims to be HTTP 1.1.

Intentionally empty here to keep our memory footprint minimal.

Definition at line 75 of file connection.c.

Referenced by parse_connection_headers().

#define REQUEST_MALFORMED   ""

Response text used when the request (http header) is malformed.

Intentionally empty here to keep our memory footprint minimal.

Definition at line 88 of file connection.c.

Referenced by MHD_connection_handle_idle(), and process_broken_line().

#define REQUEST_TOO_BIG   ""

Response text used when the request (http header) is too big to be processed.

Intentionally empty here to keep our memory footprint minimal.

Definition at line 62 of file connection.c.

Referenced by connection_add_header(), get_next_header_line(), MHD_connection_update_event_loop_info(), parse_cookie_header(), and process_broken_line().

Function Documentation

static int build_header_response ( struct MHD_Connection connection)
static

Allocate the connection's write buffer and fill it with all of the headers (or footers, if we have already sent the body) from the HTTPd's response. If headers are missing in the response supplied by the application, additional headers may be added here.

Parameters
connectionthe connection
Returns
MHD_YES on success, MHD_NO on failure (out of memory)

Definition at line 645 of file connection.c.

References MHD_Connection::daemon, data, EXTRA_CHECK, MHD_Response::first_header, MHD_Response::flags, get_date_string(), MHD_Connection::have_chunked_upload, MHD_HTTP_Header::header, keepalive_possible(), MHD_HTTP_Header::kind, MHD_Connection::method, MHD_CONNECTION_BODY_SENT, MHD_CONNECTION_FOOTERS_RECEIVED, MHD_FOOTER_KIND, MHD_get_reason_phrase_for(), MHD_get_response_header(), MHD_HEADER_KIND, MHD_HTTP_HEADER_CONNECTION, MHD_HTTP_HEADER_CONTENT_LENGTH, MHD_HTTP_HEADER_DATE, MHD_HTTP_HEADER_TRANSFER_ENCODING, MHD_HTTP_METHOD_CONNECT, MHD_HTTP_VERSION_1_0, MHD_HTTP_VERSION_1_1, MHD_ICY_FLAG, MHD_lookup_connection_value(), MHD_NO, mhd_panic, mhd_panic_cls, MHD_pool_allocate(), MHD_RF_HTTP_VERSION_1_0_ONLY, MHD_SIZE_UNKNOWN, MHD_str_equal_caseless_, MHD_SUPPRESS_DATE_NO_CLOCK, MHD_UNSIGNED_LONG_LONG, MHD_UNSIGNED_LONG_LONG_PRINTF, MHD_YES, MHD_HTTP_Header::next, NULL, MHD_Daemon::options, MHD_Connection::pool, MHD_Connection::read_closed, MHD_Connection::response, MHD_Connection::responseCode, MHD_Connection::state, MHD_Response::total_size, MHD_HTTP_Header::value, MHD_Connection::version, MHD_Connection::write_buffer, MHD_Connection::write_buffer_append_offset, MHD_Connection::write_buffer_send_offset, and MHD_Connection::write_buffer_size.

Referenced by MHD_connection_handle_idle(), and transmit_error_response().

Here is the call graph for this function:

Here is the caller graph for this function:

static void call_connection_handler ( struct MHD_Connection connection)
static

Call the handler of the application for this connection. Handles chunking of the upload as well as normal uploads.

Parameters
connectionconnection we're processing

Definition at line 1373 of file connection.c.

References MHD_Connection::client_aware, MHD_Connection::client_context, CONNECTION_CLOSE_ERROR, MHD_Connection::daemon, MHD_Daemon::default_handler, MHD_Daemon::default_handler_cls, MHD_Connection::method, MHD_NO, MHD_YES, NULL, MHD_Connection::response, MHD_Connection::url, and MHD_Connection::version.

Referenced by MHD_connection_handle_idle().

Here is the caller graph for this function:

static int check_write_done ( struct MHD_Connection connection,
enum MHD_CONNECTION_STATE  next_state 
)
static

Check if we are done sending the write-buffer. If so, transition into "next_state".

Parameters
connectionconnection to check write status for
next_statethe next state to transition to
Returns
MHD_NO if we are not done, MHD_YES if we are

Definition at line 1677 of file connection.c.

References MHD_NO, MHD_pool_reallocate(), MHD_YES, NULL, MHD_Connection::pool, MHD_Connection::state, MHD_Connection::write_buffer, MHD_Connection::write_buffer_append_offset, MHD_Connection::write_buffer_send_offset, and MHD_Connection::write_buffer_size.

Referenced by MHD_connection_handle_write().

Here is the call graph for this function:

Here is the caller graph for this function:

static int connection_add_header ( struct MHD_Connection connection,
const char *  key,
const char *  value,
enum MHD_ValueKind  kind 
)
static

Add an entry to the HTTP headers of a connection. If this fails, transmit an error response (request too big).

Parameters
connectionthe connection for which a value should be set
kindkind of the value
keykey for the value
valuethe value itself
Returns
MHD_NO on failure (out of memory), MHD_YES for success

Definition at line 1181 of file connection.c.

References MHD_Connection::daemon, MHD_HTTP_REQUEST_ENTITY_TOO_LARGE, MHD_NO, MHD_set_connection_value(), MHD_YES, REQUEST_TOO_BIG, and transmit_error_response().

Referenced by parse_cookie_header(), parse_initial_message_line(), and process_broken_line().

Here is the call graph for this function:

Here is the caller graph for this function:

static void connection_close_error ( struct MHD_Connection connection,
const char *  emsg 
)
static

A serious error occured, close the connection (and notify the application).

Parameters
connectionconnection to close with error
emsgerror message (can be NULL)

Definition at line 299 of file connection.c.

References MHD_Connection::daemon, MHD_connection_close_(), MHD_REQUEST_TERMINATED_WITH_ERROR, and NULL.

Here is the call graph for this function:

static int do_read ( struct MHD_Connection connection)
static

Try reading data from the socket into the read buffer of the connection.

Parameters
connectionconnection we're processing
Returns
MHD_YES if something changed, MHD_NO if we were interrupted or if no space was available

Definition at line 1588 of file connection.c.

References CONNECTION_CLOSE_ERROR, ECONNRESET, EWOULDBLOCK, MHD_connection_close_(), MHD_NO, MHD_REQUEST_TERMINATED_CLIENT_ABORT, MHD_socket_errno_, MHD_YES, NULL, MHD_Connection::read_buffer, MHD_Connection::read_buffer_offset, MHD_Connection::read_buffer_size, MHD_Connection::read_closed, and MHD_Connection::recv_cls.

Referenced by MHD_connection_handle_read().

Here is the call graph for this function:

Here is the caller graph for this function:

static int do_write ( struct MHD_Connection connection)
static

Try writing data to the socket from the write buffer of the connection.

Parameters
connectionconnection we're processing
Returns
MHD_YES if something changed, MHD_NO if we were interrupted

Definition at line 1635 of file connection.c.

References CONNECTION_CLOSE_ERROR, EWOULDBLOCK, MHD_NO, MHD_socket_errno_, MHD_YES, NULL, MHD_Connection::send_cls, MHD_Connection::write_buffer, MHD_Connection::write_buffer_append_offset, and MHD_Connection::write_buffer_send_offset.

Referenced by MHD_connection_handle_write().

Here is the caller graph for this function:

static void get_date_string ( char *  date)
static

Produce HTTP "Date:" header.

Parameters
datewhere to write the header, with at least 128 bytes available space.

Definition at line 557 of file connection.c.

References NULL.

Referenced by build_header_response().

Here is the caller graph for this function:

static char* get_next_header_line ( struct MHD_Connection connection)
static

Parse a single line of the HTTP header. Advance read_buffer (!) appropriately. If the current line does not fit, consider growing the buffer. If the line is far too long, close the connection. If no line is found (incomplete, buffer too small, line too long), return NULL. Otherwise return a pointer to the line.

Parameters
connectionconnection we're processing
Returns
NULL if no full line is available

Definition at line 1130 of file connection.c.

References MHD_HTTP_REQUEST_ENTITY_TOO_LARGE, MHD_HTTP_REQUEST_URI_TOO_LONG, MHD_NO, NULL, MHD_Connection::read_buffer, MHD_Connection::read_buffer_offset, MHD_Connection::read_buffer_size, REQUEST_TOO_BIG, transmit_error_response(), try_grow_read_buffer(), and MHD_Connection::url.

Referenced by MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

static int keepalive_possible ( struct MHD_Connection connection)
static

Are we allowed to keep the given connection alive? We can use the TCP stream for a second request if the connection is HTTP 1.1 and the "Connection" header either does not exist or is not set to "close", or if the connection is HTTP 1.0 and the "Connection" header is explicitly set to "keep-alive". If no HTTP version is specified (or if it is not 1.0 or 1.1), we definitively close the connection. If the "Connection" header is not exactly "close" or "keep-alive", we proceed to use the default for the respective HTTP version (which is conservative for HTTP 1.0, but might be a bit optimistic for HTTP 1.1).

Parameters
connectionthe connection to check for keepalive
Returns
MHD_YES if (based on the request), a keepalive is legal

Definition at line 515 of file connection.c.

References MHD_Response::flags, MHD_HEADER_KIND, MHD_HTTP_HEADER_CONNECTION, MHD_HTTP_VERSION_1_0, MHD_HTTP_VERSION_1_1, MHD_lookup_connection_value(), MHD_NO, MHD_RF_HTTP_VERSION_1_0_ONLY, MHD_str_equal_caseless_, MHD_YES, NULL, MHD_Connection::response, and MHD_Connection::version.

Referenced by build_header_response(), and MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

int MHD_connection_handle_idle ( struct MHD_Connection connection)

This function was created to handle per-connection processing that has to happen even if the socket cannot be read or written to.

Parameters
connectionconnection to handle
Returns
MHD_YES if we should continue to process the connection (not dead yet), MHD_NO if it died

Definition at line 2209 of file connection.c.

References build_header_response(), call_connection_handler(), cleanup_connection(), MHD_Connection::client_aware, MHD_Connection::client_context, CONNECTION_CLOSE_ERROR, MHD_Connection::connection_timeout, MHD_Connection::continue_message_write_offset, MHD_Response::crc, MHD_Connection::daemon, EDLL_insert, MHD_Connection::event_loop_info, EXTRA_CHECK, get_next_header_line(), MHD_Connection::have_chunked_upload, MHD_Connection::headers_received, MHD_Connection::headers_received_tail, HTTP_100_CONTINUE, MHD_Connection::in_idle, keepalive_possible(), MHD_Connection::last_activity, MHD_Connection::method, MHD_CONNECTION_BODY_RECEIVED, MHD_CONNECTION_BODY_SENT, MHD_CONNECTION_CHUNKED_BODY_READY, MHD_CONNECTION_CHUNKED_BODY_UNREADY, MHD_connection_close_(), MHD_CONNECTION_CLOSED, MHD_CONNECTION_CONTINUE_SENDING, MHD_CONNECTION_CONTINUE_SENT, MHD_CONNECTION_FOOTER_PART_RECEIVED, MHD_CONNECTION_FOOTERS_RECEIVED, MHD_CONNECTION_FOOTERS_SENDING, MHD_CONNECTION_FOOTERS_SENT, MHD_CONNECTION_HEADER_PART_RECEIVED, MHD_CONNECTION_HEADERS_PROCESSED, MHD_CONNECTION_HEADERS_RECEIVED, MHD_CONNECTION_HEADERS_SENDING, MHD_CONNECTION_HEADERS_SENT, MHD_CONNECTION_INIT, MHD_CONNECTION_NORMAL_BODY_READY, MHD_CONNECTION_NORMAL_BODY_UNREADY, MHD_connection_update_event_loop_info(), MHD_CONNECTION_URL_RECEIVED, MHD_destroy_response(), MHD_EPOLL_STATE_IN_EPOLL_SET, MHD_EPOLL_STATE_IN_EREADY_EDLL, MHD_EPOLL_STATE_READ_READY, MHD_EPOLL_STATE_SUSPENDED, MHD_EPOLL_STATE_WRITE_READY, MHD_EVENT_LOOP_INFO_BLOCK, MHD_EVENT_LOOP_INFO_CLEANUP, MHD_EVENT_LOOP_INFO_READ, MHD_EVENT_LOOP_INFO_WRITE, MHD_FOOTER_KIND, MHD_get_response_header(), MHD_HEADER_KIND, MHD_HTTP_BAD_REQUEST, MHD_HTTP_HEADER_CONNECTION, MHD_HTTP_METHOD_POST, MHD_HTTP_METHOD_PUT, MHD_lookup_connection_value(), MHD_monotonic_sec_counter(), MHD_NO, MHD_pool_destroy(), MHD_pool_reset(), MHD_REQUEST_TERMINATED_COMPLETED_OK, MHD_REQUEST_TERMINATED_TIMEOUT_REACHED, MHD_SIZE_UNKNOWN, MHD_socket_last_strerr_, MHD_str_equal_caseless_, MHD_USE_DEBUG, MHD_USE_EPOLL_LINUX_ONLY, MHD_YES, MHD_Response::mutex, need_100_continue(), MHD_Daemon::notify_completed, MHD_Daemon::notify_completed_cls, NULL, MHD_Daemon::options, parse_connection_headers(), parse_initial_message_line(), MHD_Connection::pool, MHD_Daemon::pool_size, process_broken_line(), process_header_line(), process_request_body(), MHD_Connection::read_buffer, MHD_Connection::read_buffer_offset, MHD_Connection::read_buffer_size, MHD_Connection::read_closed, MHD_Connection::remaining_upload_size, REQUEST_MALFORMED, MHD_Connection::response, MHD_Connection::response_write_position, MHD_Connection::responseCode, MHD_Connection::socket_fd, MHD_Connection::state, MHD_Response::total_size, transmit_error_response(), try_ready_chunked_body(), try_ready_normal_body(), MHD_Connection::url, MHD_Connection::version, MHD_Connection::write_buffer, MHD_Connection::write_buffer_append_offset, MHD_Connection::write_buffer_send_offset, and MHD_Connection::write_buffer_size.

Referenced by MHD_queue_response(), MHD_set_http_callbacks_(), and MHD_tls_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

int MHD_connection_handle_write ( struct MHD_Connection connection)

This function was created to handle writes to sockets when it has been determined that the socket can be written to.

Parameters
connectionconnection to handle
Returns
always MHD_YES (we should continue to process the connection)

Definition at line 1995 of file connection.c.

References check_write_done(), CONNECTION_CLOSE_ERROR, MHD_Connection::continue_message_write_offset, MHD_Response::crc, MHD_Connection::daemon, MHD_Response::data, MHD_Response::data_size, MHD_Response::data_start, do_write(), EWOULDBLOCK, EXTRA_CHECK, HTTP_100_CONTINUE, MHD_CONNECTION_BODY_RECEIVED, MHD_CONNECTION_BODY_SENT, MHD_CONNECTION_CHUNKED_BODY_READY, MHD_CONNECTION_CHUNKED_BODY_UNREADY, MHD_CONNECTION_CLOSED, MHD_CONNECTION_CONTINUE_SENDING, MHD_CONNECTION_CONTINUE_SENT, MHD_CONNECTION_FOOTER_PART_RECEIVED, MHD_CONNECTION_FOOTERS_RECEIVED, MHD_CONNECTION_FOOTERS_SENDING, MHD_CONNECTION_FOOTERS_SENT, MHD_CONNECTION_HEADER_PART_RECEIVED, MHD_CONNECTION_HEADERS_PROCESSED, MHD_CONNECTION_HEADERS_RECEIVED, MHD_CONNECTION_HEADERS_SENDING, MHD_CONNECTION_HEADERS_SENT, MHD_CONNECTION_INIT, MHD_CONNECTION_NORMAL_BODY_READY, MHD_CONNECTION_NORMAL_BODY_UNREADY, MHD_CONNECTION_URL_RECEIVED, MHD_PANIC, MHD_socket_errno_, MHD_socket_last_strerr_, MHD_TLS_CONNECTION_INIT, MHD_YES, MHD_Response::mutex, NULL, MHD_Connection::response, MHD_Connection::response_write_position, MHD_Connection::send_cls, SIZE_MAX, MHD_Connection::state, MHD_Response::total_size, try_ready_normal_body(), and update_last_activity().

Referenced by MHD_set_http_callbacks_(), and MHD_tls_connection_handle_write().

Here is the call graph for this function:

Here is the caller graph for this function:

static void MHD_connection_update_event_loop_info ( struct MHD_Connection connection)
static

Update the 'event_loop_info' field of this connection based on the state that the connection is now in. May also close the connection or perform other updates to the connection if needed to prepare for the next round of the event loop.

Parameters
connectionconnetion to get poll set for

Definition at line 982 of file connection.c.

References CONNECTION_CLOSE_ERROR, MHD_Connection::daemon, MHD_Connection::event_loop_info, EXTRA_CHECK, INTERNAL_ERROR, MHD_CONNECTION_BODY_RECEIVED, MHD_CONNECTION_BODY_SENT, MHD_CONNECTION_CHUNKED_BODY_READY, MHD_CONNECTION_CHUNKED_BODY_UNREADY, MHD_CONNECTION_CLOSED, MHD_CONNECTION_CONTINUE_SENDING, MHD_CONNECTION_CONTINUE_SENT, MHD_CONNECTION_FOOTER_PART_RECEIVED, MHD_CONNECTION_FOOTERS_RECEIVED, MHD_CONNECTION_FOOTERS_SENDING, MHD_CONNECTION_FOOTERS_SENT, MHD_CONNECTION_HEADER_PART_RECEIVED, MHD_CONNECTION_HEADERS_PROCESSED, MHD_CONNECTION_HEADERS_RECEIVED, MHD_CONNECTION_HEADERS_SENDING, MHD_CONNECTION_HEADERS_SENT, MHD_CONNECTION_INIT, MHD_CONNECTION_NORMAL_BODY_READY, MHD_CONNECTION_NORMAL_BODY_UNREADY, MHD_CONNECTION_URL_RECEIVED, MHD_EVENT_LOOP_INFO_BLOCK, MHD_EVENT_LOOP_INFO_CLEANUP, MHD_EVENT_LOOP_INFO_READ, MHD_EVENT_LOOP_INFO_WRITE, MHD_HTTP_INTERNAL_SERVER_ERROR, MHD_HTTP_REQUEST_ENTITY_TOO_LARGE, MHD_HTTP_REQUEST_URI_TOO_LONG, MHD_NO, MHD_TLS_CONNECTION_INIT, MHD_USE_SELECT_INTERNALLY, MHD_USE_THREAD_PER_CONNECTION, MHD_YES, NULL, MHD_Daemon::options, MHD_Connection::read_buffer_offset, MHD_Connection::read_buffer_size, MHD_Connection::read_closed, REQUEST_TOO_BIG, MHD_Connection::state, transmit_error_response(), try_grow_read_buffer(), and MHD_Connection::url.

Referenced by MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

void MHD_set_http_callbacks_ ( struct MHD_Connection connection)

Set callbacks for this connection to those for HTTP.

Parameters
connectionconnection to initialize

Definition at line 2711 of file connection.c.

References MHD_Connection::idle_handler, MHD_connection_handle_idle(), MHD_connection_handle_read(), MHD_connection_handle_write(), MHD_Connection::read_handler, and MHD_Connection::write_handler.

Referenced by internal_add_connection().

Here is the call graph for this function:

Here is the caller graph for this function:

static int need_100_continue ( struct MHD_Connection connection)
static

Do we (still) need to send a 100 continue message for this connection?

Parameters
connectionconnection to test
Returns
0 if we don't need 100 CONTINUE, 1 if we do

Definition at line 245 of file connection.c.

References MHD_Connection::continue_message_write_offset, HTTP_100_CONTINUE, MHD_HEADER_KIND, MHD_HTTP_HEADER_EXPECT, MHD_HTTP_VERSION_1_1, MHD_lookup_connection_value(), MHD_str_equal_caseless_, NULL, MHD_Connection::response, and MHD_Connection::version.

Referenced by MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

static int parse_cookie_header ( struct MHD_Connection connection)
static

Parse the cookie header (see RFC 2109).

Parameters
connectionconnection to parse header of
Returns
MHD_YES for success, MHD_NO for failure (malformed, out of memory)

Definition at line 1212 of file connection.c.

References connection_add_header(), MHD_Connection::daemon, MHD_COOKIE_KIND, MHD_HEADER_KIND, MHD_HTTP_HEADER_COOKIE, MHD_HTTP_REQUEST_ENTITY_TOO_LARGE, MHD_lookup_connection_value(), MHD_NO, MHD_pool_allocate(), MHD_YES, NULL, MHD_Connection::pool, REQUEST_TOO_BIG, and transmit_error_response().

Referenced by parse_connection_headers().

Here is the call graph for this function:

Here is the caller graph for this function:

static int parse_initial_message_line ( struct MHD_Connection connection,
char *  line 
)
static

Parse the first line of the HTTP HEADER.

Parameters
connectionthe connection (updated)
linethe first line
Returns
MHD_YES if the line is ok, MHD_NO if it is malformed

Definition at line 1314 of file connection.c.

References MHD_Connection::client_context, connection_add_header(), MHD_Connection::daemon, MHD_Connection::method, MHD_GET_ARGUMENT_KIND, MHD_NO, MHD_parse_arguments_(), MHD_YES, NULL, MHD_Daemon::unescape_callback, MHD_Daemon::unescape_callback_cls, MHD_Daemon::uri_log_callback, MHD_Daemon::uri_log_callback_cls, MHD_Connection::url, and MHD_Connection::version.

Referenced by MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

static int process_broken_line ( struct MHD_Connection connection,
char *  line,
enum MHD_ValueKind  kind 
)
static

Process a header value that spans multiple lines. The previous line(s) are in connection->last.

Parameters
connectionconnection we're processing
linethe current input line
kindif the line is complete, add a header of the given kind
Returns
MHD_YES if the line was processed successfully

Definition at line 1745 of file connection.c.

References MHD_Connection::colon, connection_add_header(), EXTRA_CHECK, MHD_Connection::last, MHD_HTTP_BAD_REQUEST, MHD_HTTP_REQUEST_ENTITY_TOO_LARGE, MHD_NO, MHD_pool_reallocate(), MHD_YES, NULL, MHD_Connection::pool, process_header_line(), REQUEST_MALFORMED, REQUEST_TOO_BIG, and transmit_error_response().

Referenced by MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

static int process_header_line ( struct MHD_Connection connection,
char *  line 
)
static

We have received (possibly the beginning of) a line in the header (or footer). Validate (check for ":") and prepare to process.

Parameters
connectionconnection we're processing
lineline from the header to process
Returns
MHD_YES on success, MHD_NO on error (malformed line)

Definition at line 1705 of file connection.c.

References MHD_Connection::colon, CONNECTION_CLOSE_ERROR, MHD_Connection::last, MHD_NO, MHD_YES, and NULL.

Referenced by MHD_connection_handle_idle(), and process_broken_line().

Here is the caller graph for this function:

static void process_request_body ( struct MHD_Connection connection)
static

Call the handler of the application for this connection. Handles chunking of the upload as well as normal uploads.

Parameters
connectionconnection we're processing
  1. no chunked encoding, give all to the client
  2. client may send large chunked data, but only a smaller part is available at one time.

Definition at line 1407 of file connection.c.

References MHD_Connection::client_aware, MHD_Connection::client_context, CONNECTION_CLOSE_ERROR, MHD_Connection::current_chunk_offset, MHD_Connection::current_chunk_size, MHD_Connection::daemon, MHD_Daemon::default_handler, MHD_Daemon::default_handler_cls, MHD_Connection::have_chunked_upload, MHD_Connection::method, MHD_NO, mhd_panic, mhd_panic_cls, MHD_SIZE_UNKNOWN, MHD_YES, NULL, MHD_Connection::read_buffer, MHD_Connection::read_buffer_offset, MHD_Connection::remaining_upload_size, MHD_Connection::response, MHD_Connection::url, and MHD_Connection::version.

Referenced by MHD_connection_handle_idle().

Here is the caller graph for this function:

static void transmit_error_response ( struct MHD_Connection connection,
unsigned int  status_code,
const char *  message 
)
static

We encountered an error processing the request. Handle it properly by stopping to read data and sending the indicated response code and message.

Parameters
connectionthe connection
status_codethe response code to send (400, 413 or 414)
messagethe error message to send

Definition at line 934 of file connection.c.

References build_header_response(), CONNECTION_CLOSE_ERROR, MHD_Connection::daemon, EXTRA_CHECK, MHD_CONNECTION_FOOTERS_RECEIVED, MHD_CONNECTION_HEADERS_SENDING, MHD_create_response_from_buffer(), MHD_destroy_response(), MHD_HTTP_VERSION_1_0, MHD_NO, MHD_queue_response(), MHD_RESPMEM_PERSISTENT, MHD_YES, NULL, MHD_Connection::read_closed, MHD_Connection::response, MHD_Connection::state, and MHD_Connection::version.

Referenced by connection_add_header(), get_next_header_line(), MHD_connection_handle_idle(), MHD_connection_update_event_loop_info(), parse_cookie_header(), and process_broken_line().

Here is the call graph for this function:

Here is the caller graph for this function:

static int try_grow_read_buffer ( struct MHD_Connection connection)
static

Try growing the read buffer. We initially claim half the available buffer space for the read buffer (the other half being left for management data structures; the write buffer can in the end take virtually everything as the read buffer can be reduced to the minimum necessary at that point.

Parameters
connectionthe connection
Returns
MHD_YES on success, MHD_NO on failure

Definition at line 613 of file connection.c.

References MHD_Connection::daemon, MHD_BUF_INC_SIZE, MHD_NO, MHD_pool_reallocate(), MHD_YES, NULL, MHD_Connection::pool, MHD_Daemon::pool_size, MHD_Connection::read_buffer, and MHD_Connection::read_buffer_size.

Referenced by get_next_header_line(), MHD_connection_handle_read(), and MHD_connection_update_event_loop_info().

Here is the call graph for this function:

Here is the caller graph for this function:

static int try_ready_chunked_body ( struct MHD_Connection connection)
static

Prepare the response buffer of this connection for sending. Assumes that the response mutex is already held. If the transmission is complete, this function may close the socket (and return MHD_NO).

Parameters
connectionthe connection
Returns
MHD_NO if readying the response failed

Definition at line 404 of file connection.c.

References CONNECTION_CLOSE_ERROR, MHD_Response::crc, MHD_Response::crc_cls, MHD_Connection::daemon, MHD_Response::data, MHD_Response::data_size, MHD_Response::data_start, EXTRA_CHECK, MHD_CONNECTION_CHUNKED_BODY_UNREADY, MHD_CONTENT_READER_END_OF_STREAM, MHD_CONTENT_READER_END_WITH_ERROR, MHD_MIN, MHD_NO, MHD_pool_allocate(), MHD_snprintf_, MHD_YES, NULL, MHD_Connection::pool, MHD_Daemon::pool_size, MHD_Connection::response, MHD_Connection::response_write_position, MHD_Connection::state, MHD_Response::total_size, MHD_Connection::write_buffer, MHD_Connection::write_buffer_append_offset, MHD_Connection::write_buffer_send_offset, and MHD_Connection::write_buffer_size.

Referenced by MHD_connection_handle_idle().

Here is the call graph for this function:

Here is the caller graph for this function:

static int try_ready_normal_body ( struct MHD_Connection connection)
static

Prepare the response buffer of this connection for sending. Assumes that the response mutex is already held. If the transmission is complete, this function may close the socket (and return MHD_NO).

Parameters
connectionthe connection
Returns
MHD_NO if readying the response failed (the lock on the response will have been released already in this case).

Definition at line 335 of file connection.c.

References CONNECTION_CLOSE_ERROR, MHD_Response::crc, MHD_Response::crc_cls, MHD_Connection::daemon, MHD_Response::data, MHD_Response::data_buffer_size, MHD_Response::data_size, MHD_Response::data_start, MHD_Response::fd, MHD_connection_close_(), MHD_CONNECTION_NORMAL_BODY_UNREADY, MHD_CONTENT_READER_END_OF_STREAM, MHD_CONTENT_READER_END_WITH_ERROR, MHD_INVALID_SOCKET, MHD_MIN, MHD_NO, MHD_REQUEST_TERMINATED_COMPLETED_OK, MHD_USE_SSL, MHD_YES, MHD_Response::mutex, NULL, MHD_Daemon::options, MHD_Connection::response, MHD_Connection::response_write_position, MHD_Connection::state, and MHD_Response::total_size.

Referenced by MHD_connection_handle_idle(), and MHD_connection_handle_write().

Here is the call graph for this function:

Here is the caller graph for this function:

static void update_last_activity ( struct MHD_Connection connection)
static

Update the 'last_activity' field of the connection to the current time and move the connection to the head of the 'normal_timeout' list if the timeout for the connection uses the default value.

Parameters
connectionthe connection that saw some activity

Definition at line 1899 of file connection.c.

References MHD_Daemon::cleanup_connection_mutex, MHD_Connection::connection_timeout, MHD_Daemon::connection_timeout, MHD_Connection::daemon, MHD_Connection::last_activity, MHD_monotonic_sec_counter(), MHD_PANIC, MHD_USE_THREAD_PER_CONNECTION, MHD_YES, MHD_Daemon::normal_timeout_head, MHD_Daemon::normal_timeout_tail, MHD_Daemon::options, XDLL_insert, and XDLL_remove.

Referenced by MHD_connection_handle_read(), and MHD_connection_handle_write().

Here is the call graph for this function:

Here is the caller graph for this function: