Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_network_ssl.c

Network module example, interacting with SSL.

Network module example, interacting with SSL

Author
Castagnier Mickael
Version
1.0
Date
10/09/2024
/*
* Nilorea Library
* Copyright (C) 2005-2026 Castagnier Mickael
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "nilorea/n_list.h"
#include "nilorea/n_str.h"
#include "nilorea/n_log.h"
#include <sys/stat.h>
char* port = NULL;
char* addr = NULL;
char* key = NULL;
char* cert = NULL;
char* ca_file = NULL;
char* root_dir = NULL;
LIST* routes = NULL;
int ssl_verify = 0;
int max_connections = 0; /* 0 = unlimited */
bool done = 0;
NETWORK *server = NULL,
*netw = NULL;
void usage(void) {
fprintf(stderr,
" -p 'port' : set the https server port\n"
" -k 'key file' : SSL key file path\n"
" -c 'cert file' : SSL certificate file path\n"
" -A 'CA file' : optional, CA certificate file for chain verification\n"
" -e : optional, enable SSL peer certificate verification\n"
" -a 'address name/ip' : optional, specify where to bind interface\n"
" -i 'ipmode' : optional, force 'ipv4' or 'ipv6', default supports both\n"
" -s 'size' : optional, maximum http request size (default: %d)\n"
" -n 'count' : optional, exit after count connections (0 = unlimited, default)\n"
" -d 'html root' : optional, specify a different http root dir (default: ./DATAS/)\n"
" -v : version\n"
" -h : help\n"
" -V 'log level' : optional, set the log level (default: LOG_ERR)\n",
}
void process_args(int argc_nb, char** argv_ptr, char** addr_ptr, char** port_ptr, char** key_ptr, char** cert_ptr, char** ca_file_ptr, int* ssl_verify_ptr, LIST* routes_ptr, int* ip_version_ptr, int* max_http_request_size_ptr, char** root_dir_ptr) {
int getoptret = 0,
log_level = LOG_ERR; /* default log level */
if (argc_nb == 1) {
fprintf(stderr, "No arguments given, help:\n");
usage();
exit(1);
}
while ((getoptret = getopt(argc_nb, argv_ptr, "hven:s:V:p:i:a:r:k:c:s:d:A:")) != EOF) {
switch (getoptret) {
case 'n':
max_connections = atoi(optarg);
break;
case 'i':
if (!strcmp("v4", optarg)) {
(*ip_version_ptr) = NETWORK_IPV4;
n_log(LOG_NOTICE, "IPV4 selected");
} else if (!strcmp("v6", optarg)) {
(*ip_version_ptr) = NETWORK_IPV6;
n_log(LOG_NOTICE, "IPV6 selected");
} else {
n_log(LOG_NOTICE, "IPV4/6 selected");
}
break;
case 'v':
fprintf(stderr, "Date de compilation : %s a %s.\n", __DATE__, __TIME__);
exit(1);
case 'V':
if (!strncmp("LOG_NULL", optarg, 8)) {
} else {
if (!strncmp("LOG_NOTICE", optarg, 10)) {
} else {
if (!strncmp("LOG_INFO", optarg, 8)) {
} else {
if (!strncmp("LOG_ERR", optarg, 7)) {
} else {
if (!strncmp("LOG_DEBUG", optarg, 9)) {
} else {
fprintf(stderr, "%s n'est pas un niveau de log valide.\n", optarg);
exit(-1);
}
}
}
}
}
break;
case 'e':
(*ssl_verify_ptr) = 1;
break;
case 'p':
(*port_ptr) = strdup(optarg);
break;
case 'r':
list_push(routes_ptr, strdup(optarg), &free);
break;
case 'a':
(*addr_ptr) = strdup(optarg);
break;
case 'k':
(*key_ptr) = strdup(optarg);
break;
case 'c':
(*cert_ptr) = strdup(optarg);
break;
case 'A':
(*ca_file_ptr) = strdup(optarg);
break;
case 's':
(*max_http_request_size_ptr) = atoi(optarg);
break;
case 'd':
(*root_dir_ptr) = strdup(optarg);
break;
default:
case '?': {
if (optopt == 'd') {
fprintf(stderr, "\n Missing html root directory\n");
}
if (optopt == 's') {
fprintf(stderr, "\n Missing max http size string\n");
}
if (optopt == 'k') {
fprintf(stderr, "\n Missing key file string\n");
}
if (optopt == 'c') {
fprintf(stderr, "\n Missing certificate file string\n");
}
if (optopt == 'A') {
fprintf(stderr, "\n Missing CA file string\n");
}
if (optopt == 'r') {
fprintf(stderr, "\n Missing route string\n");
}
if (optopt == 'a') {
fprintf(stderr, "\n Missing binding host/addr string\n");
}
if (optopt == 'i') {
fprintf(stderr, "\n Missing ip version (v4 or v6) string \n");
} else if (optopt == 'V') {
fprintf(stderr, "\n Missing log level string\n");
} else if (optopt == 'p') {
fprintf(stderr, "\n Missing port\n");
} else if (optopt != 's') {
fprintf(stderr, "\n Unknow missing option %c\n", optopt);
}
usage();
exit(1);
}
case 'h': {
usage();
exit(1);
}
}
}
} /* void process_args( ... ) */
/* Exit handling */
void action_on_sig(int recvd_signal) {
(void)recvd_signal;
#ifndef __windows__
static int nb_sigterm = 0;
switch (recvd_signal) {
/* We should not use these signals as they make the debugging going funky */
case (SIGABRT):
n_log(LOG_ERR, "Caught SIGABRT !");
break;
case (SIGINT):
n_log(LOG_ERR, "Caught SIGINT !");
break;
case (SIGBUS):
n_log(LOG_ERR, "Caught SIGBUS !");
break;
case (SIGFPE):
n_log(LOG_ERR, "Caught SIGFPE !");
break;
case (SIGSEGV):
n_log(LOG_ERR, "Caught SIGSEGV !");
break;
case (SIGSYS):
n_log(LOG_ERR, "Caught SIGSYS !");
break;
case (SIGTERM):
nb_sigterm++;
if (nb_sigterm >= 2) {
n_log(LOG_ERR, "Caught too much SIGTERM, trying _exit() !!");
_exit(-1);
}
n_log(LOG_ERR, "Caught %d SIGTERM, exiting now !!", nb_sigterm);
exit(-1);
case (SIGUSR1):
done = TRUE;
n_log(LOG_ERR, "Caught SIGUSR1 !");
break;
case (SIGUSR2):
done = TRUE;
n_log(LOG_ERR, "Caught SIGUSR2 !");
break;
case (SIGHUP):
n_log(LOG_NOTICE, "Caught SIGHUP !");
break;
default:
n_log(LOG_ERR, "Caught unknow signal %d", recvd_signal);
break;
}
#endif
} /* action_on_sig() */
// Function to handle different URLs and return appropriate responses
void handle_request(NETWORK* netw_ptr, LIST* routes_ptr) {
__n_assert(netw_ptr, return);
__n_assert(routes_ptr, return);
bool found = 0;
char** split_results = NULL;
char* http_url = NULL;
N_STR* dynamic_request_answer = NULL;
// Read request
char* http_buffer = NULL;
Alloca(http_buffer, (size_t)(max_http_request_size + 1));
__n_assert(http_buffer, netw_close(&netw_ptr); return);
// SSL_read reads up to max_http_request_size bytes (variable-length HTTP request).
// recv_ssl_data is intentionally NOT used here: it loops until the entire buffer is
// full, which would block indefinitely since HTTP requests are smaller than the buffer.
int ssl_read_ret = SSL_read(netw_ptr->ssl, http_buffer, max_http_request_size);
if (ssl_read_ret <= 0) {
int ssl_error = SSL_get_error(netw_ptr->ssl, ssl_read_ret);
if (ssl_error == SSL_ERROR_ZERO_RETURN) {
n_log(LOG_INFO, "SSL_read: peer closed the connection cleanly");
} else {
n_log(LOG_ERR, "SSL_read failed with SSL error %d", ssl_error);
}
netw_close(&netw_ptr);
return;
}
// n_log( LOG_DEBUG , "http_request: %s" , http_buffer );
// Extract URL from the request
char url[4096] = "";
netw_get_url_from_http_request(http_buffer, url, sizeof(url));
n_log(LOG_DEBUG, "url: %s", url);
// Handle the request based on the URL
N_STR* origin = new_nstr(32);
nstrprintf(origin, "%s:" SOCKET_SIZE_FORMAT, _str(netw_ptr->link.ip), netw_ptr->link.sock);
NETWORK_HTTP_INFO http_request = netw_extract_http_info(http_buffer);
N_STR* http_body = NULL;
split_results = split(url, "?", 0);
if (!split_results || !split_results[0]) {
http_body = char_to_nstr("<html><body><h1>Bad Request</h1></body></html>");
if (netw_build_http_response(&dynamic_request_answer, 400, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build a Bad Request answer for %s", url);
}
n_log(LOG_ERR, "%s: %s %s 400", _nstr(origin), http_request.type, url);
} else {
http_url = split_results[0];
n_log(LOG_INFO, "%s: %s %s request...", _nstr(origin), http_request.type, url);
if (strcmp("OPTIONS", http_request.type) == 0) {
if (netw_build_http_response(&dynamic_request_answer, 200, "ex_network_ssl server", netw_guess_http_content_type(url), "Allow: OPTIONS, GET, POST\r\n", NULL) == FALSE) {
n_log(LOG_ERR, "couldn't build an OPTION answer for %s", url);
}
n_log(LOG_INFO, "%s: %s %s 200", _nstr(origin), http_request.type, url);
} else if (strcmp("GET", http_request.type) == 0) {
char system_url[4096] = "";
// example assume a root dir at DATAS
if (!root_dir) {
snprintf(system_url, sizeof(system_url), "./DATAS%s", http_url);
} else {
snprintf(system_url, sizeof(system_url), "%s%s", root_dir, http_url);
}
n_log(LOG_DEBUG, "%s: searching for file %s...", _nstr(origin), system_url);
struct stat st;
if (stat(system_url, &st) == 0 && S_ISREG(st.st_mode)) {
n_log(LOG_DEBUG, "%s: file %s found !", _nstr(origin), system_url);
http_body = file_to_nstr(system_url);
if (!http_body) {
http_body = char_to_nstr("<html><body><h1>Internal Server Error</h1></body></html>");
if (netw_build_http_response(&dynamic_request_answer, 500, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build an Internal Server Error answer for %s", url);
}
n_log(LOG_ERR, "%s: %s %s 500", _nstr(origin), http_request.type, url);
} else {
if (netw_build_http_response(&dynamic_request_answer, 200, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build an http answer for %s", url);
}
n_log(LOG_INFO, "%s: %s %s 200", _nstr(origin), http_request.type, url);
}
} else if (stat(system_url, &st) == 0 && S_ISDIR(st.st_mode)) {
/* Directory: check for index.html and redirect */
char index_path[4096 + 16] = "";
size_t url_len = strlen(http_url);
const char* slash = (url_len > 0 && http_url[url_len - 1] == '/') ? "" : "/";
snprintf(index_path, sizeof(index_path), "%s%sindex.html", system_url, slash);
struct stat idx_st;
if (stat(index_path, &idx_st) == 0 && S_ISREG(idx_st.st_mode)) {
char location_header[4096] = "";
snprintf(location_header, sizeof(location_header), "Location: %s%sindex.html\r\n", http_url, slash);
if (netw_build_http_response(&dynamic_request_answer, 301, "ex_network_ssl server", "text/html", location_header, NULL) == FALSE) {
n_log(LOG_ERR, "couldn't build a redirect answer for %s", url);
}
n_log(LOG_INFO, "%s: %s %s 301 -> %s%sindex.html", _nstr(origin), http_request.type, url, http_url, slash);
} else {
http_body = char_to_nstr("<html><body><h1>404 Not Found</h1></body></html>");
if (netw_build_http_response(&dynamic_request_answer, 404, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build a NOT FOUND answer for %s", url);
}
n_log(LOG_ERR, "%s: %s %s 404", _nstr(origin), http_request.type, url);
}
} else {
http_body = char_to_nstr("<html><body><h1>404 Not Found</h1></body></html>");
if (netw_build_http_response(&dynamic_request_answer, 404, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build a NOT FOUND answer for %s", url);
}
n_log(LOG_ERR, "%s: %s %s 404", _nstr(origin), http_request.type, url);
}
} else if (strcmp("POST", http_request.type) == 0) {
// Parse virtual route
found = 0;
list_foreach(node, routes_ptr) {
if (strcmp(node->ptr, http_url) == 0) {
// Handle 200 OK from virtual route
HASH_TABLE* post_data = netw_parse_post_data(http_request.body);
if (post_data) {
HT_FOREACH(hnode, post_data,
{
n_log(LOG_DEBUG, "%s: POST DATA: %s=%s", _nstr(origin), hnode->key, (char*)hnode->data.ptr);
});
destroy_ht(&post_data);
}
http_body = char_to_nstr("{\"status\":\"ok\"}");
if (netw_build_http_response(&dynamic_request_answer, 200, "ex_network_ssl server", "application/json", "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build a route 200 answer for %s", url);
}
found = 1;
n_log(LOG_INFO, "%s: %s virtual:%s 200", _nstr(origin), http_request.type, url);
break;
}
}
if (!found) {
http_body = char_to_nstr("<html><body><h1>404 Not Found</h1></body></html>");
if (netw_build_http_response(&dynamic_request_answer, 404, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build a NOT FOUND answer for %s", url);
}
n_log(LOG_ERR, "%s: %s %s 404", _nstr(origin), http_request.type, url);
}
} else {
http_body = char_to_nstr("<html><body><h1>Bad Request</h1></body></html>");
if (netw_build_http_response(&dynamic_request_answer, 400, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
n_log(LOG_ERR, "couldn't build a Bad Request answer for %s", url);
}
n_log(LOG_ERR, "%s: %s %s 400", _nstr(origin), http_request.type, url);
}
free_split_result(&split_results);
}
if (dynamic_request_answer) {
if (dynamic_request_answer->written > UINT32_MAX) {
n_log(LOG_ERR, "response too large to send for %s: %s %s (size: %zu)", _nstr(origin), http_request.type, url, dynamic_request_answer->written);
} else if (send_ssl_data(netw_ptr, dynamic_request_answer->data, (uint32_t)dynamic_request_answer->written) < 0) {
n_log(LOG_ERR, "failed to send response for %s: %s %s", _nstr(origin), http_request.type, url);
}
free_nstr(&dynamic_request_answer);
} else {
n_log(LOG_ERR, "couldn't build an answer for %s: %s %s", _nstr(origin), http_request.type, url);
}
netw_info_destroy(http_request);
free_nstr(&origin);
free_nstr(&http_body);
} /* handle_request */
typedef struct NETWORK_SSL_THREAD_PARAMS {
void* ssl_network_thread(void* params) {
__n_assert(params, return NULL);
handle_request(ssl_params->netw, ssl_params->routes);
netw_close(&ssl_params->netw);
Free(ssl_params);
return NULL;
}
int main(int argc, char* argv[]) {
int exit_code = 0;
__n_assert(routes, n_log(LOG_ERR, "could not allocate list !"); exit(1));
/* processing args and set log_level */
if (!port) {
n_log(LOG_ERR, "No port given. Exiting.");
exit_code = 1;
goto clean_and_exit;
}
if (!key) {
n_log(LOG_ERR, "No key given. Exiting.");
exit_code = 1;
goto clean_and_exit;
}
if (!cert) {
n_log(LOG_ERR, "No certificate given. Exiting.");
exit_code = 1;
goto clean_and_exit;
}
/*
if (routes->nb_items == 0) {
n_log(LOG_ERR, "No route given. Exiting.");
exit_code = 1;
goto clean_and_exit;
}
*/
#ifndef __windows__
errno = 0;
signal(SIGPIPE, SIG_IGN);
/* initializing signal catching */
struct sigaction signal_catcher;
/* quit on sig */
signal_catcher.sa_handler = action_on_sig;
sigemptyset(&signal_catcher.sa_mask);
signal_catcher.sa_flags = 0;
sigaction(SIGTERM, &signal_catcher, NULL);
sigaction(SIGUSR1, &signal_catcher, NULL);
#endif
long int cores = get_nb_cpu_cores();
int nb_active_threads = (cores > 0) ? (int)cores : 1;
int nb_waiting_threads = 10 * nb_active_threads;
n_log(LOG_INFO, "Creating a new thread pool of %d active and %d waiting threads", nb_active_threads, nb_waiting_threads);
thread_pool = new_thread_pool((size_t)nb_active_threads, (size_t)nb_waiting_threads);
n_log(LOG_INFO, "Creating listening network for %s:%s %d", _str(addr), _str(port), ip_version);
/* create listening network */
if (netw_make_listening(&server, addr, port, SOMAXCONN, ip_version) == FALSE) {
n_log(LOG_ERR, "Fatal error with network initialization");
exit(-1);
}
if (ca_file) {
n_log(LOG_INFO, "Using SSL with certificate chain verification (CA: %s)", ca_file);
} else {
}
if (ssl_verify) {
n_log(LOG_INFO, "SSL peer certificate verification enabled");
}
int accepted_count = 0;
while (!done) {
n_log(LOG_DEBUG, "Blocking on accept...");
/* get any accepted client on a network */
int return_code = 0;
netw = netw_accept_from_ex(server, 0, 0, 0, &return_code);
if (!netw) {
if (return_code == EINTR) {
n_log(LOG_INFO, "accept exited after catching a signal");
goto clean_and_exit;
} else {
n_log(LOG_ERR, "error on accept, NULL netw returned !");
}
} else {
n_log(LOG_INFO, "accepted SSL connection on socket %d", netw->link.sock);
NETWORK_SSL_THREAD_PARAMS* netw_ssl_params = NULL;
Malloc(netw_ssl_params, NETWORK_SSL_THREAD_PARAMS, 1);
netw_ssl_params->netw = netw;
netw_ssl_params->routes = routes;
if (add_threaded_process(thread_pool, &ssl_network_thread, (void*)netw_ssl_params, DIRECT_PROC) == FALSE) {
n_log(LOG_ERR, "Error adding client management to thread pool");
}
accepted_count++;
if (max_connections > 0 && accepted_count >= max_connections) {
n_log(LOG_NOTICE, "reached %d connections, exiting", max_connections);
break;
}
}
}
clean_and_exit:
if (thread_pool) {
}
netw_unload();
exit(exit_code);
}
static void usage(void)
void process_args(int argc, char **argv)
Definition ex_common.c:47
int main(void)
THREAD_POOL * thread_pool
Definition ex_fluid.c:77
int getoptret
Definition ex_fluid.c:60
int log_level
Definition ex_fluid.c:61
NETWORK * netw
Network for server mode, accepting incomming.
Definition ex_network.c:38
int max_http_request_size
int max_connections
bool done
char * root_dir
char * ca_file
NETWORK * server
char * key
int ssl_verify
int ip_version
LIST * routes
void * ssl_network_thread(void *params)
char * addr
char * cert
void action_on_sig(int recvd_signal)
void handle_request(NETWORK *netw_ptr, LIST *routes_ptr)
char * port
LIST * routes
virtual routes for the server
NETWORK * netw
network to use for the receiving thread
structure of a NETWORK_SSL_THREAD_PARAMS
#define FreeNoLog(__ptr)
Free Handler without log.
Definition n_common.h:271
#define Malloc(__ptr, __struct, __size)
Malloc Handler to get errors and set to 0.
Definition n_common.h:203
#define __n_assert(__ptr, __ret)
macro to assert things
Definition n_common.h:278
#define _str(__PTR)
define true
Definition n_common.h:192
#define Alloca(__ptr, __size)
Malloca Handler to get errors and set to 0.
Definition n_common.h:215
#define Free(__ptr)
Free Handler to get errors.
Definition n_common.h:262
#define _nstr(__PTR)
N_STR or "NULL" string for logging purposes.
Definition n_common.h:198
int destroy_ht(HASH_TABLE **table)
empty a table and destroy it
Definition n_hash.c:2234
#define HT_FOREACH(__ITEM_, __HASH_,...)
ForEach macro helper.
Definition n_hash.h:215
structure of a hash table
Definition n_hash.h:137
int list_push(LIST *list, void *ptr, void(*destructor)(void *ptr))
Add a pointer to the end of the list.
Definition n_list.c:227
#define list_foreach(__ITEM_, __LIST_)
ForEach macro helper, safe for node removal during iteration.
Definition n_list.h:88
int list_destroy(LIST **list)
Empty and Free a list container.
Definition n_list.c:547
LIST * new_generic_list(size_t max_items)
Initialiaze a generic list container to max_items pointers.
Definition n_list.c:36
#define MAX_LIST_ITEMS
flag to pass to new_generic_list for the maximum possible number of item in a list
Definition n_list.h:74
Structure of a generic LIST container.
Definition n_list.h:58
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
Definition n_log.h:88
#define LOG_DEBUG
debug-level messages
Definition n_log.h:83
#define LOG_ERR
error conditions
Definition n_log.h:75
void set_log_level(const int log_level)
Set the global log level value ( static int LOG_LEVEL )
Definition n_log.c:120
#define LOG_NOTICE
normal but significant condition
Definition n_log.h:79
#define LOG_NULL
no log output
Definition n_log.h:45
#define LOG_INFO
informational
Definition n_log.h:81
size_t written
size of the written data inside the string
Definition n_str.h:66
char * data
the string
Definition n_str.h:62
#define free_nstr(__ptr)
free a N_STR structure and set the pointer to NULL
Definition n_str.h:201
N_STR * char_to_nstr(const char *src)
Convert a char into a N_STR, short version.
Definition n_str.c:254
N_STR * new_nstr(NSTRBYTE size)
create a new N_STR string
Definition n_str.c:206
#define nstrprintf(__nstr_var, __format,...)
Macro to quickly allocate and sprintf to N_STR.
Definition n_str.h:115
char ** split(const char *str, const char *delim, int empty)
split the strings into a an array of char *pointer , ended by a NULL one.
Definition n_str.c:912
N_STR * file_to_nstr(char *filename)
Load a whole file into a N_STR.
Definition n_str.c:286
int free_split_result(char ***tab)
Free a split result allocated array.
Definition n_str.c:1008
A box including a string and his lenght.
Definition n_str.h:60
char * ip
ip of the connected socket
Definition n_network.h:244
N_SOCKET link
networking socket
Definition n_network.h:326
char * type
Type of request.
Definition n_network.h:389
char * body
Pointer to the body data.
Definition n_network.h:387
SOCKET sock
a normal socket
Definition n_network.h:242
SSL * ssl
SSL handle.
Definition n_network.h:318
ssize_t send_ssl_data(void *netw, char *buf, uint32_t n)
send data onto the socket
Definition n_network.c:3512
int netw_ssl_set_verify(NETWORK *netw, int enable)
enable or disable SSL peer certificate verification
Definition n_network.c:1606
int netw_get_url_from_http_request(const char *request, char *url, size_t size)
Helper function to extract the URL from the HTTP request line.
Definition n_network.c:4338
int netw_set_crypto(NETWORK *netw, char *key, char *certificate)
activate SSL encryption on selected network, using key and certificate
Definition n_network.c:1321
#define NETWORK_IPV6
Flag to force IPV6
Definition n_network.h:51
int netw_make_listening(NETWORK **netw, char *addr, char *port, int nbpending, int ip_version)
Make a NETWORK be a Listening network.
Definition n_network.c:2240
#define NETWORK_IPV4
Flag to force IPV4
Definition n_network.h:49
int netw_build_http_response(N_STR **http_response, int status_code, const char *server_name, const char *content_type, char *additional_headers, N_STR *body)
function to dynamically generate an HTTP response
Definition n_network.c:4578
#define SOCKET_SIZE_FORMAT
socket associated printf style
Definition n_network.h:90
NETWORK * netw_accept_from_ex(NETWORK *from, size_t send_list_limit, size_t recv_list_limit, int blocking, int *retval)
make a normal 'accept' .
Definition n_network.c:2713
#define NETWORK_IPALL
Flag for auto detection by OS of ip version to use.
Definition n_network.h:47
int netw_close(NETWORK **netw)
Closing a specified Network, destroy queues, free the structure.
Definition n_network.c:2041
int netw_set_crypto_chain(NETWORK *netw, char *key, char *certificate, char *ca_file)
activate SSL encryption using key/certificate files and a CA file for chain verification
Definition n_network.c:1473
NETWORK_HTTP_INFO netw_extract_http_info(char *request)
extract a lot of informations, mostly as pointers, and populate a NETWORK_HTTP_INFO structure
Definition n_network.c:4258
int netw_info_destroy(NETWORK_HTTP_INFO http_request)
destroy a NETWORK_HTTP_INFO loaded informations
Definition n_network.c:4325
HASH_TABLE * netw_parse_post_data(const char *post_data)
Function to parse POST data.
Definition n_network.c:4412
const char * netw_guess_http_content_type(const char *url)
function to guess the content type based on URL extension
Definition n_network.c:4458
Structure of a NETWORK.
Definition n_network.h:258
structure for splitting HTTP requests
Definition n_network.h:381
THREAD_POOL * new_thread_pool(size_t nbmaxthr, size_t nb_max_waiting)
Create a new pool of nbmaxthr threads.
int add_threaded_process(THREAD_POOL *thread_pool, void *(*func_ptr)(void *param), void *param, int mode)
add a function and params to a thread pool
int wait_for_threaded_pool(THREAD_POOL *thread_pool)
Wait for the thread pool to become idle (no active threads, empty waiting list), blocking without pol...
int destroy_threaded_pool(THREAD_POOL **pool, unsigned int delay)
delete a thread_pool, exit the threads and free the structs
long int get_nb_cpu_cores()
get number of core of current system
#define DIRECT_PROC
processing mode for added func, direct start, not queued
Structure of a thread pool.
List structures and definitions.
Generic log system.
Network Engine.
Signals general handling with stack printing, from https://gist.github.com/jvranish/4441299.
N_STR and string function declaration.
Thread pool declaration.