Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_network_ssl.c
Go to the documentation of this file.
1/*
2 * Nilorea Library
3 * Copyright (C) 2005-2026 Castagnier Mickael
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14 * implied. See the License for the specific language governing
15 * permissions and limitations under the License.
16 *
17 * SPDX-License-Identifier: Apache-2.0
18 */
19
28#include "nilorea/n_list.h"
29#include "nilorea/n_str.h"
30#include "nilorea/n_log.h"
31#include "nilorea/n_network.h"
33#include "nilorea/n_signals.h"
34
35#include <sys/stat.h>
36
37char* port = NULL;
38char* addr = NULL;
39char* key = NULL;
40char* cert = NULL;
41char* ca_file = NULL;
42char* root_dir = NULL;
43LIST* routes = NULL;
46int ssl_verify = 0;
47int max_connections = 0; /* 0 = unlimited */
48bool done = 0;
49
50NETWORK *server = NULL,
51 *netw = NULL;
53void usage(void) {
54 fprintf(stderr,
55 " -p 'port' : set the https server port\n"
56 " -k 'key file' : SSL key file path\n"
57 " -c 'cert file' : SSL certificate file path\n"
58 " -A 'CA file' : optional, CA certificate file for chain verification\n"
59 " -e : optional, enable SSL peer certificate verification\n"
60 " -a 'address name/ip' : optional, specify where to bind interface\n"
61 " -i 'ipmode' : optional, force 'ipv4' or 'ipv6', default supports both\n"
62 " -s 'size' : optional, maximum http request size (default: %d)\n"
63 " -n 'count' : optional, exit after count connections (0 = unlimited, default)\n"
64 " -d 'html root' : optional, specify a different http root dir (default: ./DATAS/)\n"
65 " -v : version\n"
66 " -h : help\n"
67 " -V 'log level' : optional, set the log level (default: LOG_ERR)\n",
69}
70
71void 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) {
72 int getoptret = 0,
73 log_level = LOG_ERR; /* default log level */
74
75 if (argc_nb == 1) {
76 fprintf(stderr, "No arguments given, help:\n");
77 usage();
78 exit(1);
79 }
80 while ((getoptret = getopt(argc_nb, argv_ptr, "hven:s:V:p:i:a:r:k:c:s:d:A:")) != EOF) {
81 switch (getoptret) {
82 case 'n':
83 max_connections = atoi(optarg);
84 break;
85 case 'i':
86 if (!strcmp("v4", optarg)) {
87 (*ip_version_ptr) = NETWORK_IPV4;
88 n_log(LOG_NOTICE, "IPV4 selected");
89 } else if (!strcmp("v6", optarg)) {
90 (*ip_version_ptr) = NETWORK_IPV6;
91 n_log(LOG_NOTICE, "IPV6 selected");
92 } else {
93 n_log(LOG_NOTICE, "IPV4/6 selected");
94 }
95 break;
96 case 'v':
97 fprintf(stderr, "Date de compilation : %s a %s.\n", __DATE__, __TIME__);
98 exit(1);
99 case 'V':
100 if (!strncmp("LOG_NULL", optarg, 8)) {
102 } else {
103 if (!strncmp("LOG_NOTICE", optarg, 10)) {
105 } else {
106 if (!strncmp("LOG_INFO", optarg, 8)) {
108 } else {
109 if (!strncmp("LOG_ERR", optarg, 7)) {
111 } else {
112 if (!strncmp("LOG_DEBUG", optarg, 9)) {
114 } else {
115 fprintf(stderr, "%s n'est pas un niveau de log valide.\n", optarg);
116 exit(-1);
117 }
118 }
119 }
120 }
121 }
122 break;
123 case 'e':
124 (*ssl_verify_ptr) = 1;
125 break;
126 case 'p':
127 (*port_ptr) = strdup(optarg);
128 break;
129 case 'r':
130 list_push(routes_ptr, strdup(optarg), &free);
131 break;
132 case 'a':
133 (*addr_ptr) = strdup(optarg);
134 break;
135 case 'k':
136 (*key_ptr) = strdup(optarg);
137 break;
138 case 'c':
139 (*cert_ptr) = strdup(optarg);
140 break;
141 case 'A':
142 (*ca_file_ptr) = strdup(optarg);
143 break;
144 case 's':
145 (*max_http_request_size_ptr) = atoi(optarg);
146 break;
147 case 'd':
148 (*root_dir_ptr) = strdup(optarg);
149 break;
150 default:
151 case '?': {
152 if (optopt == 'd') {
153 fprintf(stderr, "\n Missing html root directory\n");
154 }
155 if (optopt == 's') {
156 fprintf(stderr, "\n Missing max http size string\n");
157 }
158 if (optopt == 'k') {
159 fprintf(stderr, "\n Missing key file string\n");
160 }
161 if (optopt == 'c') {
162 fprintf(stderr, "\n Missing certificate file string\n");
163 }
164 if (optopt == 'A') {
165 fprintf(stderr, "\n Missing CA file string\n");
166 }
167 if (optopt == 'r') {
168 fprintf(stderr, "\n Missing route string\n");
169 }
170 if (optopt == 'a') {
171 fprintf(stderr, "\n Missing binding host/addr string\n");
172 }
173 if (optopt == 'i') {
174 fprintf(stderr, "\n Missing ip version (v4 or v6) string \n");
175 } else if (optopt == 'V') {
176 fprintf(stderr, "\n Missing log level string\n");
177 } else if (optopt == 'p') {
178 fprintf(stderr, "\n Missing port\n");
179 } else if (optopt != 's') {
180 fprintf(stderr, "\n Unknow missing option %c\n", optopt);
181 }
182 usage();
183 exit(1);
184 }
185 case 'h': {
186 usage();
187 exit(1);
188 }
189 }
190 }
192} /* void process_args( ... ) */
193
194/* Exit handling */
195void action_on_sig(int recvd_signal) {
196 (void)recvd_signal;
197#ifndef __windows__
198 static int nb_sigterm = 0;
199 switch (recvd_signal) {
200 /* We should not use these signals as they make the debugging going funky */
201 case (SIGABRT):
202 n_log(LOG_ERR, "Caught SIGABRT !");
203 break;
204 case (SIGINT):
205 n_log(LOG_ERR, "Caught SIGINT !");
206 break;
207 case (SIGBUS):
208 n_log(LOG_ERR, "Caught SIGBUS !");
209 break;
210 case (SIGFPE):
211 n_log(LOG_ERR, "Caught SIGFPE !");
212 break;
213 case (SIGSEGV):
214 n_log(LOG_ERR, "Caught SIGSEGV !");
215 break;
216 case (SIGSYS):
217 n_log(LOG_ERR, "Caught SIGSYS !");
218 break;
219 case (SIGTERM):
220 nb_sigterm++;
221 if (nb_sigterm >= 2) {
222 n_log(LOG_ERR, "Caught too much SIGTERM, trying _exit() !!");
223 _exit(-1);
224 }
225 n_log(LOG_ERR, "Caught %d SIGTERM, exiting now !!", nb_sigterm);
226 exit(-1);
227 case (SIGUSR1):
228 done = TRUE;
229 n_log(LOG_ERR, "Caught SIGUSR1 !");
230 break;
231 case (SIGUSR2):
232 done = TRUE;
233 n_log(LOG_ERR, "Caught SIGUSR2 !");
234 break;
235 case (SIGHUP):
236 n_log(LOG_NOTICE, "Caught SIGHUP !");
237 break;
238 default:
239 n_log(LOG_ERR, "Caught unknow signal %d", recvd_signal);
240 break;
241 }
242#endif
243} /* action_on_sig() */
244
245// Function to handle different URLs and return appropriate responses
246void handle_request(NETWORK* netw_ptr, LIST* routes_ptr) {
247 __n_assert(netw_ptr, return);
248 __n_assert(routes_ptr, return);
249
250 bool found = 0;
251 char** split_results = NULL;
252 char* http_url = NULL;
253 N_STR* dynamic_request_answer = NULL;
254
255 // Read request
256 char* http_buffer = NULL;
257 Alloca(http_buffer, (size_t)(max_http_request_size + 1));
258 __n_assert(http_buffer, netw_close(&netw_ptr); return);
259
260 // SSL_read reads up to max_http_request_size bytes (variable-length HTTP request).
261 // recv_ssl_data is intentionally NOT used here: it loops until the entire buffer is
262 // full, which would block indefinitely since HTTP requests are smaller than the buffer.
263 int ssl_read_ret = SSL_read(netw_ptr->ssl, http_buffer, max_http_request_size);
264 if (ssl_read_ret <= 0) {
265 int ssl_error = SSL_get_error(netw_ptr->ssl, ssl_read_ret);
266 if (ssl_error == SSL_ERROR_ZERO_RETURN) {
267 n_log(LOG_INFO, "SSL_read: peer closed the connection cleanly");
268 } else {
269 n_log(LOG_ERR, "SSL_read failed with SSL error %d", ssl_error);
270 }
271 netw_close(&netw_ptr);
272 return;
273 }
274 // n_log( LOG_DEBUG , "http_request: %s" , http_buffer );
275
276 // Extract URL from the request
277 char url[4096] = "";
278 netw_get_url_from_http_request(http_buffer, url, sizeof(url));
279 n_log(LOG_DEBUG, "url: %s", url);
280
281 // Handle the request based on the URL
282 N_STR* origin = new_nstr(32);
283 nstrprintf(origin, "%s:" SOCKET_SIZE_FORMAT, _str(netw_ptr->link.ip), netw_ptr->link.sock);
284
285 NETWORK_HTTP_INFO http_request = netw_extract_http_info(http_buffer);
286 N_STR* http_body = NULL;
287
288 split_results = split(url, "?", 0);
289 if (!split_results || !split_results[0]) {
290 http_body = char_to_nstr("<html><body><h1>Bad Request</h1></body></html>");
291 if (netw_build_http_response(&dynamic_request_answer, 400, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
292 n_log(LOG_ERR, "couldn't build a Bad Request answer for %s", url);
293 }
294 n_log(LOG_ERR, "%s: %s %s 400", _nstr(origin), http_request.type, url);
295 } else {
296 http_url = split_results[0];
297 n_log(LOG_INFO, "%s: %s %s request...", _nstr(origin), http_request.type, url);
298 if (strcmp("OPTIONS", http_request.type) == 0) {
299 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) {
300 n_log(LOG_ERR, "couldn't build an OPTION answer for %s", url);
301 }
302 n_log(LOG_INFO, "%s: %s %s 200", _nstr(origin), http_request.type, url);
303 } else if (strcmp("GET", http_request.type) == 0) {
304 char system_url[4096] = "";
305 // example assume a root dir at DATAS
306 if (!root_dir) {
307 snprintf(system_url, sizeof(system_url), "./DATAS%s", http_url);
308 } else {
309 snprintf(system_url, sizeof(system_url), "%s%s", root_dir, http_url);
310 }
311
312 n_log(LOG_DEBUG, "%s: searching for file %s...", _nstr(origin), system_url);
313
314 struct stat st;
315 if (stat(system_url, &st) == 0 && S_ISREG(st.st_mode)) {
316 n_log(LOG_DEBUG, "%s: file %s found !", _nstr(origin), system_url);
317 http_body = file_to_nstr(system_url);
318 if (!http_body) {
319 http_body = char_to_nstr("<html><body><h1>Internal Server Error</h1></body></html>");
320 if (netw_build_http_response(&dynamic_request_answer, 500, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
321 n_log(LOG_ERR, "couldn't build an Internal Server Error answer for %s", url);
322 }
323 n_log(LOG_ERR, "%s: %s %s 500", _nstr(origin), http_request.type, url);
324 } else {
325 if (netw_build_http_response(&dynamic_request_answer, 200, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
326 n_log(LOG_ERR, "couldn't build an http answer for %s", url);
327 }
328 n_log(LOG_INFO, "%s: %s %s 200", _nstr(origin), http_request.type, url);
329 }
330 } else if (stat(system_url, &st) == 0 && S_ISDIR(st.st_mode)) {
331 /* Directory: check for index.html and redirect */
332 char index_path[4096 + 16] = "";
333 size_t url_len = strlen(http_url);
334 const char* slash = (url_len > 0 && http_url[url_len - 1] == '/') ? "" : "/";
335 snprintf(index_path, sizeof(index_path), "%s%sindex.html", system_url, slash);
336 struct stat idx_st;
337 if (stat(index_path, &idx_st) == 0 && S_ISREG(idx_st.st_mode)) {
338 char location_header[4096] = "";
339 snprintf(location_header, sizeof(location_header), "Location: %s%sindex.html\r\n", http_url, slash);
340 if (netw_build_http_response(&dynamic_request_answer, 301, "ex_network_ssl server", "text/html", location_header, NULL) == FALSE) {
341 n_log(LOG_ERR, "couldn't build a redirect answer for %s", url);
342 }
343 n_log(LOG_INFO, "%s: %s %s 301 -> %s%sindex.html", _nstr(origin), http_request.type, url, http_url, slash);
344 } else {
345 http_body = char_to_nstr("<html><body><h1>404 Not Found</h1></body></html>");
346 if (netw_build_http_response(&dynamic_request_answer, 404, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
347 n_log(LOG_ERR, "couldn't build a NOT FOUND answer for %s", url);
348 }
349 n_log(LOG_ERR, "%s: %s %s 404", _nstr(origin), http_request.type, url);
350 }
351 } else {
352 http_body = char_to_nstr("<html><body><h1>404 Not Found</h1></body></html>");
353 if (netw_build_http_response(&dynamic_request_answer, 404, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
354 n_log(LOG_ERR, "couldn't build a NOT FOUND answer for %s", url);
355 }
356 n_log(LOG_ERR, "%s: %s %s 404", _nstr(origin), http_request.type, url);
357 }
358 } else if (strcmp("POST", http_request.type) == 0) {
359 // Parse virtual route
360 found = 0;
361 list_foreach(node, routes_ptr) {
362 if (strcmp(node->ptr, http_url) == 0) {
363 // Handle 200 OK from virtual route
364 HASH_TABLE* post_data = netw_parse_post_data(http_request.body);
365 if (post_data) {
366 HT_FOREACH(hnode, post_data,
367 {
368 n_log(LOG_DEBUG, "%s: POST DATA: %s=%s", _nstr(origin), hnode->key, (char*)hnode->data.ptr);
369 });
370 destroy_ht(&post_data);
371 }
372 http_body = char_to_nstr("{\"status\":\"ok\"}");
373 if (netw_build_http_response(&dynamic_request_answer, 200, "ex_network_ssl server", "application/json", "", http_body) == FALSE) {
374 n_log(LOG_ERR, "couldn't build a route 200 answer for %s", url);
375 }
376 found = 1;
377 n_log(LOG_INFO, "%s: %s virtual:%s 200", _nstr(origin), http_request.type, url);
378 break;
379 }
380 }
381 if (!found) {
382 http_body = char_to_nstr("<html><body><h1>404 Not Found</h1></body></html>");
383 if (netw_build_http_response(&dynamic_request_answer, 404, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
384 n_log(LOG_ERR, "couldn't build a NOT FOUND answer for %s", url);
385 }
386 n_log(LOG_ERR, "%s: %s %s 404", _nstr(origin), http_request.type, url);
387 }
388 } else {
389 http_body = char_to_nstr("<html><body><h1>Bad Request</h1></body></html>");
390 if (netw_build_http_response(&dynamic_request_answer, 400, "ex_network_ssl server", netw_guess_http_content_type(url), "", http_body) == FALSE) {
391 n_log(LOG_ERR, "couldn't build a Bad Request answer for %s", url);
392 }
393 n_log(LOG_ERR, "%s: %s %s 400", _nstr(origin), http_request.type, url);
394 }
395 free_split_result(&split_results);
396 }
397 if (dynamic_request_answer) {
398 if (dynamic_request_answer->written > UINT32_MAX) {
399 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);
400 } else if (send_ssl_data(netw_ptr, dynamic_request_answer->data, (uint32_t)dynamic_request_answer->written) < 0) {
401 n_log(LOG_ERR, "failed to send response for %s: %s %s", _nstr(origin), http_request.type, url);
402 }
403 free_nstr(&dynamic_request_answer);
404 } else {
405 n_log(LOG_ERR, "couldn't build an answer for %s: %s %s", _nstr(origin), http_request.type, url);
406 }
407 netw_info_destroy(http_request);
408 free_nstr(&origin);
409 free_nstr(&http_body);
410} /* handle_request */
411
419
420void* ssl_network_thread(void* params) {
421 __n_assert(params, return NULL);
423 handle_request(ssl_params->netw, ssl_params->routes);
424 netw_close(&ssl_params->netw);
425 Free(ssl_params);
426 return NULL;
427}
428
429int main(int argc, char* argv[]) {
430 int exit_code = 0;
431 THREAD_POOL* thread_pool = NULL;
433 __n_assert(routes, n_log(LOG_ERR, "could not allocate list !"); exit(1));
434
435 /* processing args and set log_level */
437
438 if (!port) {
439 n_log(LOG_ERR, "No port given. Exiting.");
440 exit_code = 1;
441 goto clean_and_exit;
442 }
443 if (!key) {
444 n_log(LOG_ERR, "No key given. Exiting.");
445 exit_code = 1;
446 goto clean_and_exit;
447 }
448 if (!cert) {
449 n_log(LOG_ERR, "No certificate given. Exiting.");
450 exit_code = 1;
451 goto clean_and_exit;
452 }
453 /*
454 if (routes->nb_items == 0) {
455 n_log(LOG_ERR, "No route given. Exiting.");
456 exit_code = 1;
457 goto clean_and_exit;
458 }
459 */
460
461#ifndef __windows__
462 errno = 0;
463 signal(SIGPIPE, SIG_IGN);
464 /* initializing signal catching */
465 struct sigaction signal_catcher;
466
467 /* quit on sig */
468 signal_catcher.sa_handler = action_on_sig;
469 sigemptyset(&signal_catcher.sa_mask);
470 signal_catcher.sa_flags = 0;
471
472 sigaction(SIGTERM, &signal_catcher, NULL);
473 sigaction(SIGUSR1, &signal_catcher, NULL);
474#endif
475
476 long int cores = get_nb_cpu_cores();
477 int nb_active_threads = (cores > 0) ? (int)cores : 1;
478 int nb_waiting_threads = 10 * nb_active_threads;
479 n_log(LOG_INFO, "Creating a new thread pool of %d active and %d waiting threads", nb_active_threads, nb_waiting_threads);
480 thread_pool = new_thread_pool((size_t)nb_active_threads, (size_t)nb_waiting_threads);
481
482 n_log(LOG_INFO, "Creating listening network for %s:%s %d", _str(addr), _str(port), ip_version);
483 /* create listening network */
484 if (netw_make_listening(&server, addr, port, SOMAXCONN, ip_version) == FALSE) {
485 n_log(LOG_ERR, "Fatal error with network initialization");
486 exit(-1);
487 }
488
489 if (ca_file) {
490 n_log(LOG_INFO, "Using SSL with certificate chain verification (CA: %s)", ca_file);
492 } else {
494 }
495 if (ssl_verify) {
496 n_log(LOG_INFO, "SSL peer certificate verification enabled");
498 }
499 int accepted_count = 0;
500 while (!done) {
501 n_log(LOG_DEBUG, "Blocking on accept...");
502 /* get any accepted client on a network */
503 int return_code = 0;
504 netw = netw_accept_from_ex(server, 0, 0, 0, &return_code);
505 if (!netw) {
506 if (return_code == EINTR) {
507 n_log(LOG_INFO, "accept exited after catching a signal");
508 goto clean_and_exit;
509 } else {
510 n_log(LOG_ERR, "error on accept, NULL netw returned !");
511 }
512 } else {
513 n_log(LOG_INFO, "accepted SSL connection on socket %d", netw->link.sock);
514 NETWORK_SSL_THREAD_PARAMS* netw_ssl_params = NULL;
515 Malloc(netw_ssl_params, NETWORK_SSL_THREAD_PARAMS, 1);
516 netw_ssl_params->netw = netw;
517 netw_ssl_params->routes = routes;
518 if (add_threaded_process(thread_pool, &ssl_network_thread, (void*)netw_ssl_params, DIRECT_PROC) == FALSE) {
519 n_log(LOG_ERR, "Error adding client management to thread pool");
520 }
521 accepted_count++;
522 if (max_connections > 0 && accepted_count >= max_connections) {
523 n_log(LOG_NOTICE, "reached %d connections, exiting", max_connections);
524 break;
525 }
526 }
527 }
528clean_and_exit:
529 if (thread_pool) {
532 }
534 netw_unload();
538 FreeNoLog(key);
542 exit(exit_code);
543}
static void usage(void)
int main(void)
void process_args(int argc, char **argv)
Definition ex_common.c:48
THREAD_POOL * thread_pool
Definition ex_fluid.c:76
int getoptret
Definition ex_fluid.c:59
int log_level
Definition ex_fluid.c:60
NETWORK * netw
Network for server mode, accepting incomming.
Definition ex_network.c:39
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:272
#define Malloc(__ptr, __struct, __size)
Malloc Handler to get errors and set to 0.
Definition n_common.h:204
#define __n_assert(__ptr, __ret)
macro to assert things
Definition n_common.h:279
#define _str(__PTR)
define true
Definition n_common.h:193
#define Alloca(__ptr, __size)
Malloca Handler to get errors and set to 0.
Definition n_common.h:216
#define Free(__ptr)
Free Handler to get errors.
Definition n_common.h:263
#define _nstr(__PTR)
N_STR or "NULL" string for logging purposes.
Definition n_common.h:199
int destroy_ht(HASH_TABLE **table)
empty a table and destroy it
Definition n_hash.c:2244
#define HT_FOREACH(__ITEM_, __HASH_,...)
ForEach macro helper.
Definition n_hash.h:216
structure of a hash table
Definition n_hash.h:138
int list_push(LIST *list, void *ptr, void(*destructor)(void *ptr))
Add a pointer to the end of the list.
Definition n_list.c:228
#define list_foreach(__ITEM_, __LIST_)
ForEach macro helper, safe for node removal during iteration.
Definition n_list.h:89
int list_destroy(LIST **list)
Empty and Free a list container.
Definition n_list.c:548
LIST * new_generic_list(size_t max_items)
Initialiaze a generic list container to max_items pointers.
Definition n_list.c:37
#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:75
Structure of a generic LIST container.
Definition n_list.h:59
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
Definition n_log.h:89
#define LOG_DEBUG
debug-level messages
Definition n_log.h:84
#define LOG_ERR
error conditions
Definition n_log.h:76
void set_log_level(const int log_level)
Set the global log level value ( static int LOG_LEVEL )
Definition n_log.c:121
#define LOG_NOTICE
normal but significant condition
Definition n_log.h:80
#define LOG_NULL
no log output
Definition n_log.h:46
#define LOG_INFO
informational
Definition n_log.h:82
size_t written
number of meaningful bytes in data, excluding the null terminator; the size including the null termin...
Definition n_str.h:68
char * data
the string
Definition n_str.h:63
#define free_nstr(__ptr)
free a N_STR structure and set the pointer to NULL
Definition n_str.h:203
N_STR * char_to_nstr(const char *src)
Convert a char into a N_STR, short version.
Definition n_str.c:255
N_STR * new_nstr(NSTRBYTE size)
create a new N_STR string
Definition n_str.c:207
#define nstrprintf(__nstr_var, __format,...)
Macro to quickly allocate and sprintf to N_STR.
Definition n_str.h:117
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:920
N_STR * file_to_nstr(char *filename)
Load a whole file into a N_STR.
Definition n_str.c:288
int free_split_result(char ***tab)
Free a split result allocated array.
Definition n_str.c:1016
A box including a string and his lenght.
Definition n_str.h:61
char * ip
ip of the connected socket
Definition n_network.h:295
N_SOCKET link
networking socket
Definition n_network.h:388
char * type
Type of request.
Definition n_network.h:577
char * body
Pointer to the body data.
Definition n_network.h:575
SOCKET sock
a normal socket
Definition n_network.h:293
SSL * ssl
SSL handle.
Definition n_network.h:380
ssize_t send_ssl_data(void *netw, char *buf, uint32_t n)
send data onto the socket
Definition n_network.c:4409
int netw_ssl_set_verify(NETWORK *netw, int enable)
enable or disable SSL peer certificate verification
Definition n_network.c:1892
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:5466
int netw_set_crypto(NETWORK *netw, char *key, char *certificate)
activate SSL encryption on selected network, using key and certificate
Definition n_network.c:1385
#define NETWORK_IPV6
Flag to force IPV6
Definition n_network.h:52
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:2885
#define NETWORK_IPV4
Flag to force IPV4
Definition n_network.h:50
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:6110
#define SOCKET_SIZE_FORMAT
socket associated printf style
Definition n_network.h:104
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:3358
#define NETWORK_IPALL
Flag for auto detection by OS of ip version to use.
Definition n_network.h:48
int netw_close(NETWORK **netw)
Closing a specified Network, destroy queues, free the structure.
Definition n_network.c:2662
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:1580
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:5380
int netw_info_destroy(NETWORK_HTTP_INFO http_request)
destroy a NETWORK_HTTP_INFO loaded informations
Definition n_network.c:5453
HASH_TABLE * netw_parse_post_data(const char *post_data)
Function to parse POST data.
Definition n_network.c:5540
const char * netw_guess_http_content_type(const char *url)
function to guess the content type based on URL extension
Definition n_network.c:5586
Structure of a NETWORK.
Definition n_network.h:309
structure for splitting HTTP requests
Definition n_network.h:569
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.