Bug Summary

File:lwan.c
Warning:line 334, column 17
Potential memory leak

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -disable-llvm-verifier -discard-value-names -main-file-name lwan.c -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=all -fmath-errno -fno-rounding-math -mconstructor-aliases -fno-plt -munwind-tables -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fcoverage-compilation-dir=/home/buildbot/lwan-worker/clang-analyze/build/src/lib -resource-dir /usr/lib/clang/13.0.0 -include /home/buildbot/lwan-worker/clang-analyze/build/lwan-build-config.h -D _FILE_OFFSET_BITS=64 -D _TIME_BITS=64 -I /home/buildbot/lwan-worker/clang-analyze/build/src/lib/missing -I /usr/include/luajit-2.0 -I /usr/include/valgrind -I /home/buildbot/lwan-worker/clang-analyze/build/src/lib -I /home/buildbot/lwan-worker/clang-analyze/build -internal-isystem /usr/lib/clang/13.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -Wno-unused-parameter -Wno-free-nonheap-object -std=gnu99 -fdebug-compilation-dir=/home/buildbot/lwan-worker/clang-analyze/build/src/lib -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -analyzer-output=html -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /home/buildbot/lwan-worker/clang-analyze/CLANG/2021-12-15-044029-1557550-1 -x c /home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c
1/*
2 * lwan - simple web server
3 * Copyright (c) 2012, 2013 L. A. F. Pereira <l@tia.mat.br>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18 * USA.
19 */
20
21#define _GNU_SOURCE
22#include <assert.h>
23#include <ctype.h>
24#include <dlfcn.h>
25#include <errno(*__errno_location ()).h>
26#include <fcntl.h>
27#include <libproc.h>
28#include <limits.h>
29#include <signal.h>
30#include <stdlib.h>
31#include <string.h>
32#include <sys/resource.h>
33#include <sys/socket.h>
34#include <sys/types.h>
35#include <unistd.h>
36
37#include "lwan-private.h"
38
39#include "lwan-config.h"
40#include "lwan-http-authorize.h"
41
42#if defined(HAVE_LUA)
43#include "lwan-lua.h"
44#endif
45
46/* Ideally, this would check if all items in enum lwan_request_flags,
47 * when bitwise-or'd together, would not have have any bit set that
48 * is also set in REQUEST_METHOD_MASK. */
49static_assert(REQUEST_ACCEPT_DEFLATE > REQUEST_METHOD_MASK,extern int (*__Static_assert_function (void)) [!!sizeof (struct
{ int __error_if_negative: (REQUEST_ACCEPT_DEFLATE > REQUEST_METHOD_MASK
) ? 2 : -1; })]
50 "enough bits to store request methods")extern int (*__Static_assert_function (void)) [!!sizeof (struct
{ int __error_if_negative: (REQUEST_ACCEPT_DEFLATE > REQUEST_METHOD_MASK
) ? 2 : -1; })]
;
51
52/* See detect_fastest_monotonic_clock() */
53clockid_t monotonic_clock_id = CLOCK_MONOTONIC1;
54
55static const struct lwan_config default_config = {
56 .listener = "localhost:8080",
57 .keep_alive_timeout = 15,
58 .quiet = false0,
59 .proxy_protocol = false0,
60 .allow_cors = false0,
61 .expires = 1 * ONE_WEEK(((60 * 60) * 24) * 7),
62 .n_threads = 0,
63 .max_post_data_size = 10 * DEFAULT_BUFFER_SIZE4096,
64 .allow_post_temp_file = false0,
65 .max_put_data_size = 10 * DEFAULT_BUFFER_SIZE4096,
66 .allow_put_temp_file = false0,
67};
68
69LWAN_HANDLER(brew_coffee)static enum lwan_http_status lwan_handler_brew_coffee( struct
lwan_request *, struct lwan_response *, void *); static const
struct lwan_handler_info __attribute__((used, section("lwan_handler"
))) lwan_handler_info_brew_coffee = {.name = "brew_coffee", .
handler = lwan_handler_brew_coffee}; static enum lwan_http_status
lwan_handler_brew_coffee( struct lwan_request *request __attribute__
((unused)), struct lwan_response *response __attribute__((unused
)), void *data __attribute__((unused)))
70{
71 /* Placeholder handler so that __start_lwan_handler and __stop_lwan_handler
72 * symbols will get defined.
73 */
74 return HTTP_I_AM_A_TEAPOT;
75}
76
77__attribute__((no_sanitize_address))
78static void *find_handler(const char *name)
79{
80 const struct lwan_handler_info *handler;
81
82 LWAN_SECTION_FOREACH(lwan_handler, handler)for (handler = ({ extern const typeof(*handler) __start_lwan_handler
[]; __start_lwan_handler; }); handler < ({ extern const typeof
(*handler) __stop_lwan_handler[]; __stop_lwan_handler; }); (handler
)++)
{
83 if (streq(handler->name, name))
84 return handler->handler;
85 }
86
87 return NULL((void*)0);
88}
89
90__attribute__((no_sanitize_address))
91static const struct lwan_module *find_module(const char *name)
92{
93 const struct lwan_module_info *module;
94
95 LWAN_SECTION_FOREACH(lwan_module, module)for (module = ({ extern const typeof(*module) __start_lwan_module
[]; __start_lwan_module; }); module < ({ extern const typeof
(*module) __stop_lwan_module[]; __stop_lwan_module; }); (module
)++)
{
96 if (streq(module->name, name))
97 return module->module;
98 }
99
100 return NULL((void*)0);
101}
102
103static void destroy_urlmap(void *data)
104{
105 struct lwan_url_map *url_map = data;
106
107 if (url_map->module) {
108 const struct lwan_module *module = url_map->module;
109
110 if (module->destroy)
111 module->destroy(url_map->data);
112 } else if (url_map->data && url_map->flags & HANDLER_DATA_IS_HASH_TABLE) {
113 hash_free(url_map->data);
114 }
115
116 free(url_map->authorization.realm);
117 free(url_map->authorization.password_file);
118 free((char *)url_map->prefix);
119 free(url_map);
120}
121
122static struct lwan_url_map *add_url_map(struct lwan_trie *t, const char *prefix,
123 const struct lwan_url_map *map)
124{
125 struct lwan_url_map *copy = malloc(sizeof(*copy));
126
127 if (!copy)
128 lwan_status_critical_perror("Could not copy URL map")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 128, __FUNCTION__, "Could not copy URL map")
;
129
130 memcpy(copy, map, sizeof(*copy));
131
132 copy->prefix = strdup(prefix ? prefix : copy->prefix);
133 if (!copy->prefix)
134 lwan_status_critical_perror("Could not copy URL prefix")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 134, __FUNCTION__, "Could not copy URL prefix")
;
135
136 copy->prefix_len = strlen(copy->prefix);
137 lwan_trie_add(t, copy->prefix, copy);
138
139 return copy;
140}
141
142static bool_Bool can_override_header(const char *name)
143{
144 /* NOTE: Update lwan_prepare_response_header_full() in lwan-response.c
145 * if new headers are added here. */
146
147 if (!strcasecmp(name, "Date"))
148 return false0;
149 if (!strcasecmp(name, "Expires"))
150 return false0;
151 if (!strcasecmp(name, "WWW-Authenticate"))
152 return false0;
153 if (!strcasecmp(name, "Connection"))
154 return false0;
155 if (!strcasecmp(name, "Content-Type"))
156 return false0;
157 if (!strcasecmp(name, "Transfer-Encoding"))
158 return false0;
159 if (!strncasecmp(name, "Access-Control-Allow-",
160 sizeof("Access-Control-Allow-") - 1))
161 return false0;
162
163 return true1;
164}
165
166static void build_response_headers(struct lwan *l,
167 const struct lwan_key_value *kv)
168{
169 bool_Bool set_server = false0;
170
171 assert(l)((void) sizeof ((l) ? 1 : 0), __extension__ ({ if (l) ; else __assert_fail
("l", "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 171, __extension__ __PRETTY_FUNCTION__); }))
;
172
173 lwan_strbuf_init(&l->headers);
174
175 for (; kv && kv->key; kv++) {
176 if (!can_override_header(kv->key)) {
177 lwan_status_warning("Cannot override header '%s'", kv->key)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 177, __FUNCTION__, "Cannot override header '%s'", kv->key
)
;
178 } else {
179 if (!strcasecmp(kv->key, "Server"))
180 set_server = true1;
181
182 lwan_strbuf_append_printf(&l->headers, "\r\n%s: %s", kv->key,
183 kv->value);
184 }
185 }
186
187 if (!set_server)
188 lwan_strbuf_append_strz(&l->headers, "\r\nServer: lwan");
189
190 lwan_strbuf_append_strz(&l->headers, "\r\n\r\n");
191}
192
193static void parse_global_headers(struct config *c,
194 struct lwan *lwan)
195{
196 struct lwan_key_value_array hdrs;
197 const struct config_line *l;
198 struct lwan_key_value *kv;
199
200 lwan_key_value_array_init(&hdrs);
201
202 while ((l = config_read_line(c))) {
203 switch (l->type) {
204 case CONFIG_LINE_TYPE_SECTION:
205 config_error(
206 c, "No sections are supported under the 'headers' section");
207 goto cleanup;
208
209 case CONFIG_LINE_TYPE_LINE:
210 kv = lwan_key_value_array_append(&hdrs);
211 if (!kv) {
212 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 213, __FUNCTION__, "Could not allocate memory for custom response header"
)
213 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 213, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
214 }
215
216 kv->key = strdup(l->key);
217 if (!kv->key) {
218 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 219, __FUNCTION__, "Could not allocate memory for custom response header"
)
219 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 219, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
220 }
221
222 kv->value = strdup(l->value);
223 if (!kv->value) {
224 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 225, __FUNCTION__, "Could not allocate memory for custom response header"
)
225 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 225, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
226 }
227 break;
228
229 case CONFIG_LINE_TYPE_SECTION_END:
230 kv = lwan_key_value_array_append(&hdrs);
231 if (!kv) {
232 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 233, __FUNCTION__, "Could not allocate memory for custom response header"
)
233 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 233, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
234 }
235
236 kv->key = NULL((void*)0);
237 kv->value = NULL((void*)0);
238
239 build_response_headers(lwan, lwan_key_value_array_get_array(&hdrs));
240 goto cleanup;
241 }
242 }
243
244 config_error(c, "EOF while looking for end of 'headers' section");
245
246cleanup:
247 LWAN_ARRAY_FOREACH (&hdrs, kv)for (kv = (&hdrs)->base.base; kv < ((typeof(kv))(&
hdrs)->base.base + (&hdrs)->base.elements); kv++)
{
248 free(kv->key);
249 free(kv->value);
250 }
251 lwan_key_value_array_reset(&hdrs);
252}
253
254static void parse_listener_prefix_authorization(struct config *c,
255 const struct config_line *l,
256 struct lwan_url_map *url_map)
257{
258 if (!streq(l->value, "basic")) {
259 config_error(c, "Only basic authorization supported");
260 return;
261 }
262
263 memset(&url_map->authorization, 0, sizeof(url_map->authorization));
264
265 while ((l = config_read_line(c))) {
266 switch (l->type) {
267 case CONFIG_LINE_TYPE_LINE:
268 if (streq(l->key, "realm")) {
269 free(url_map->authorization.realm);
270 url_map->authorization.realm = strdup(l->value);
271 } else if (streq(l->key, "password_file")) {
272 free(url_map->authorization.password_file);
273 url_map->authorization.password_file = realpath(l->value, NULL((void*)0));
274 if (!url_map->authorization.password_file)
275 config_error(c, "Could not determine full path for password file: %s", l->value);
276 }
277 break;
278
279 case CONFIG_LINE_TYPE_SECTION:
280 config_error(c, "Unexpected section: %s", l->key);
281 goto error;
282
283 case CONFIG_LINE_TYPE_SECTION_END:
284 if (!url_map->authorization.realm)
285 url_map->authorization.realm = strdup("Lwan");
286 if (!url_map->authorization.password_file)
287 url_map->authorization.password_file = strdup("htpasswd");
288
289 url_map->flags |= HANDLER_MUST_AUTHORIZE;
290 return;
291 }
292 }
293
294 config_error(c, "Could not find end of authorization section");
295
296error:
297 free(url_map->authorization.realm);
298 free(url_map->authorization.password_file);
299}
300
301__attribute__((no_sanitize_address))
302static const char *get_module_name(const struct lwan_module *module)
303{
304 const struct lwan_module_info *iter;
305
306 LWAN_SECTION_FOREACH(lwan_module, iter)for (iter = ({ extern const typeof(*iter) __start_lwan_module
[]; __start_lwan_module; }); iter < ({ extern const typeof
(*iter) __stop_lwan_module[]; __stop_lwan_module; }); (iter)++
)
{
307 if (iter->module == module)
308 return iter->name;
309 }
310
311 return "<unknown>";
312}
313
314static void parse_listener_prefix(struct config *c,
315 const struct config_line *l,
316 struct lwan *lwan,
317 const struct lwan_module *module,
318 void *handler)
319{
320 struct lwan_url_map url_map = {};
321 struct hash *hash = hash_str_new(free, free);
322 char *prefix = strdupa(l->value)(__extension__ ({ const char *__old = (l->value); size_t __len
= strlen (__old) + 1; char *__new = (char *) __builtin_alloca
(__len); (char *) memcpy (__new, __old, __len); }))
;
323 struct config *isolated;
324
325 if (!hash)
21
Assuming 'hash' is non-null
22
Taking false branch
326 lwan_status_critical("Could not allocate hash table")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 326, __FUNCTION__, "Could not allocate hash table")
;
327
328 isolated = config_isolate_section(c, l);
329 if (!isolated) {
23
Assuming 'isolated' is non-null
24
Taking false branch
330 config_error(c, "Could not isolate configuration file");
331 goto out;
332 }
333
334 while ((l = config_read_line(c))) {
25
Loop condition is true. Entering loop body
29
Potential memory leak
335 switch (l->type) {
26
Control jumps to 'case CONFIG_LINE_TYPE_LINE:' at line 336
336 case CONFIG_LINE_TYPE_LINE:
337 hash_add(hash, strdup(l->key), strdup(l->value));
27
Memory is allocated
338 break;
28
Execution continues on line 334
339
340 case CONFIG_LINE_TYPE_SECTION:
341 if (streq(l->key, "authorization")) {
342 parse_listener_prefix_authorization(c, l, &url_map);
343 } else if (!config_skip_section(c, l)) {
344 config_error(c, "Could not skip section");
345 goto out;
346 }
347 break;
348
349 case CONFIG_LINE_TYPE_SECTION_END:
350 goto add_map;
351 }
352 }
353
354 config_error(c, "Expecting section end while parsing prefix");
355 goto out;
356
357add_map:
358 assert((handler && !module) || (!handler && module))((void) sizeof (((handler && !module) || (!handler &&
module)) ? 1 : 0), __extension__ ({ if ((handler && !
module) || (!handler && module)) ; else __assert_fail
("(handler && !module) || (!handler && module)"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 358, __extension__ __PRETTY_FUNCTION__); }))
;
359
360 if (handler) {
361 url_map.handler = handler;
362 url_map.flags |= HANDLER_PARSE_MASK | HANDLER_DATA_IS_HASH_TABLE;
363 url_map.data = hash;
364 url_map.module = NULL((void*)0);
365
366 hash = NULL((void*)0);
367 } else if (module->create_from_hash && module->handle_request) {
368 lwan_status_debug("Initializing module %s from config",lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 369, __FUNCTION__, "Initializing module %s from config", get_module_name
(module))
369 get_module_name(module))lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 369, __FUNCTION__, "Initializing module %s from config", get_module_name
(module))
;
370
371 url_map.data = module->create_from_hash(prefix, hash);
372 if (!url_map.data) {
373 config_error(c, "Could not create module instance");
374 goto out;
375 }
376
377 if (module->parse_conf && !module->parse_conf(url_map.data, isolated)) {
378 const char *msg = config_last_error(isolated);
379
380 config_error(c, "Error from module: %s", msg ? msg : "Unknown");
381 goto out;
382 }
383
384 url_map.handler = module->handle_request;
385 url_map.flags |= module->flags;
386 url_map.module = module;
387 } else if (UNLIKELY(!module->create_from_hash)__builtin_expect(((!module->create_from_hash)), (0))) {
388 config_error(c, "Module isn't prepared to load settings from a file; "
389 "create_from_hash() method isn't present");
390 goto out;
391 } else if (UNLIKELY(!module->handle_request)__builtin_expect(((!module->handle_request)), (0))) {
392 config_error(c, "Module does not have handle_request() method");
393 goto out;
394 }
395
396 add_url_map(&lwan->url_map_trie, prefix, &url_map);
397
398out:
399 hash_free(hash);
400 config_close(isolated);
401}
402
403void lwan_set_url_map(struct lwan *l, const struct lwan_url_map *map)
404{
405 lwan_trie_destroy(&l->url_map_trie);
406 if (UNLIKELY(!lwan_trie_init(&l->url_map_trie, destroy_urlmap))__builtin_expect(((!lwan_trie_init(&l->url_map_trie, destroy_urlmap
))), (0))
)
407 lwan_status_critical_perror("Could not initialize trie")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 407, __FUNCTION__, "Could not initialize trie")
;
408
409 for (; map->prefix; map++) {
410 struct lwan_url_map *copy = add_url_map(&l->url_map_trie, NULL((void*)0), map);
411
412 if (copy->module && copy->module->create) {
413 lwan_status_debug("Initializing module %s from struct",lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 414, __FUNCTION__, "Initializing module %s from struct", get_module_name
(copy->module))
414 get_module_name(copy->module))lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 414, __FUNCTION__, "Initializing module %s from struct", get_module_name
(copy->module))
;
415
416 copy->data = copy->module->create(map->prefix, copy->args);
417 if (!copy->data) {
418 lwan_status_critical("Could not initialize module %s",lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 419, __FUNCTION__, "Could not initialize module %s", get_module_name
(copy->module))
419 get_module_name(copy->module))lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 419, __FUNCTION__, "Could not initialize module %s", get_module_name
(copy->module))
;
420 }
421
422 copy->flags = copy->module->flags;
423 copy->handler = copy->module->handle_request;
424 } else {
425 copy->flags = HANDLER_PARSE_MASK;
426 }
427 }
428}
429
430const char *lwan_get_config_path(char *path_buf, size_t path_buf_len)
431{
432 char buffer[PATH_MAX4096];
433
434 if (proc_pidpath(getpid(), buffer, sizeof(buffer)) < 0)
435 goto out;
436
437 char *path = strrchr(buffer, '/');
438 if (!path)
439 goto out;
440 int ret = snprintf(path_buf, path_buf_len, "%s.conf", path + 1);
441 if (ret < 0 || ret >= (int)path_buf_len)
442 goto out;
443
444 return path_buf;
445
446out:
447 return "lwan.conf";
448}
449
450static void parse_tls_listener(struct config *conf, const struct config_line *line, struct lwan *lwan)
451{
452#if !defined(HAVE_MBEDTLS)
453 config_error(conf, "Lwan has been built without mbedTLS support");
454 return;
455#endif
456
457 lwan->config.tls_listener = strdup(line->value);
458 if (!lwan->config.tls_listener) {
459 config_error(conf, "Could not allocate memory for tls_listener");
460 return;
461 }
462
463 lwan->config.ssl.cert = NULL((void*)0);
464 lwan->config.ssl.key = NULL((void*)0);
465
466 while ((line = config_read_line(conf))) {
467 switch (line->type) {
468 case CONFIG_LINE_TYPE_SECTION_END:
469 return;
470 case CONFIG_LINE_TYPE_SECTION:
471 config_error(conf, "Unexpected section: %s", line->key);
472 return;
473 case CONFIG_LINE_TYPE_LINE:
474 if (streq(line->key, "cert")) {
475 free(lwan->config.ssl.cert);
476 lwan->config.ssl.cert = strdup(line->value);
477 if (!lwan->config.ssl.cert)
478 return lwan_status_critical("Could not copy string")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 478, __FUNCTION__, "Could not copy string")
;
479 } else if (streq(line->key, "key")) {
480 free(lwan->config.ssl.key);
481 lwan->config.ssl.key = strdup(line->value);
482 if (!lwan->config.ssl.key)
483 return lwan_status_critical("Could not copy string")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 483, __FUNCTION__, "Could not copy string")
;
484 } else {
485 config_error(conf, "Unexpected key: %s", line->key);
486 }
487 }
488 }
489
490 config_error(conf, "Expecting section end while parsing SSL configuration");
491}
492
493static void
494parse_listener(struct config *c, const struct config_line *l, struct lwan *lwan)
495{
496 lwan->config.listener = strdup(l->value);
497 if (!lwan->config.listener)
498 config_error(c, "Could not allocate memory for listener");
499
500 while ((l = config_read_line(c))) {
501 switch (l->type) {
502 case CONFIG_LINE_TYPE_LINE:
503 config_error(c, "Unexpected key %s", l->key);
504 return;
505 case CONFIG_LINE_TYPE_SECTION:
506 config_error(c, "Unexpected section %s", l->key);
507 return;
508 case CONFIG_LINE_TYPE_SECTION_END:
509 return;
510 }
511 }
512
513 config_error(c, "Unexpected EOF while parsing listener");
514}
515
516static void
517parse_site(struct config *c, const struct config_line *l, struct lwan *lwan)
518{
519 while ((l = config_read_line(c))) {
14
Loop condition is true. Entering loop body
520 switch (l->type) {
15
Control jumps to 'case CONFIG_LINE_TYPE_SECTION:' at line 524
521 case CONFIG_LINE_TYPE_LINE:
522 config_error(c, "Expecting prefix section");
523 return;
524 case CONFIG_LINE_TYPE_SECTION:
525 if (l->key[0] == '&') {
16
Assuming the condition is false
17
Taking false branch
526 void *handler = find_handler(l->key + 1);
527 if (handler) {
528 parse_listener_prefix(c, l, lwan, NULL((void*)0), handler);
529 continue;
530 }
531
532 config_error(c, "Could not find handler name: %s", l->key + 1);
533 return;
534 }
535
536 const struct lwan_module *module = find_module(l->key);
537 if (module) {
18
Assuming 'module' is non-null
19
Taking true branch
538 parse_listener_prefix(c, l, lwan, module, NULL((void*)0));
20
Calling 'parse_listener_prefix'
539 continue;
540 }
541
542 config_error(c, "Invalid section or module not found: %s", l->key);
543 return;
544 case CONFIG_LINE_TYPE_SECTION_END:
545 return;
546 }
547 }
548
549 config_error(c, "Expecting section end while parsing listener");
550}
551
552static bool_Bool setup_from_config(struct lwan *lwan, const char *path)
553{
554 const struct config_line *line;
555 struct config *conf;
556 bool_Bool has_site = false0;
557 bool_Bool has_listener = false0;
558 bool_Bool has_tls_listener = false0;
559 char path_buf[PATH_MAX4096];
560
561 if (!path
3.1
'path' is null
)
4
Taking true branch
562 path = lwan_get_config_path(path_buf, sizeof(path_buf));
563 lwan_status_info("Loading configuration file: %s", path)lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 563, __FUNCTION__, "Loading configuration file: %s", path)
;
564
565 conf = config_open(path);
566 if (!conf)
5
Assuming 'conf' is non-null
6
Taking false branch
567 return false0;
568
569 if (!lwan_trie_init(&lwan->url_map_trie, destroy_urlmap))
7
Assuming the condition is false
8
Taking false branch
570 return false0;
571
572 while ((line = config_read_line(conf))) {
9
Loop condition is true. Entering loop body
573 switch (line->type) {
10
Control jumps to 'case CONFIG_LINE_TYPE_SECTION:' at line 634
574 case CONFIG_LINE_TYPE_LINE:
575 if (streq(line->key, "keep_alive_timeout")) {
576 lwan->config.keep_alive_timeout = (unsigned int)parse_long(
577 line->value, default_config.keep_alive_timeout);
578 } else if (streq(line->key, "quiet")) {
579 lwan->config.quiet =
580 parse_bool(line->value, default_config.quiet);
581 } else if (streq(line->key, "proxy_protocol")) {
582 lwan->config.proxy_protocol =
583 parse_bool(line->value, default_config.proxy_protocol);
584 } else if (streq(line->key, "allow_cors")) {
585 lwan->config.allow_cors =
586 parse_bool(line->value, default_config.allow_cors);
587 } else if (streq(line->key, "expires")) {
588 lwan->config.expires =
589 parse_time_period(line->value, default_config.expires);
590 } else if (streq(line->key, "error_template")) {
591 free(lwan->config.error_template);
592 lwan->config.error_template = strdup(line->value);
593 } else if (streq(line->key, "threads")) {
594 long n_threads =
595 parse_long(line->value, default_config.n_threads);
596 if (n_threads < 0)
597 config_error(conf, "Invalid number of threads: %ld",
598 n_threads);
599 lwan->config.n_threads = (unsigned int)n_threads;
600 } else if (streq(line->key, "max_post_data_size")) {
601 long max_post_data_size = parse_long(
602 line->value, (long)default_config.max_post_data_size);
603 if (max_post_data_size < 0)
604 config_error(conf, "Negative maximum post data size");
605 else if (max_post_data_size > 128 * (1 << 20))
606 config_error(conf,
607 "Maximum post data can't be over 128MiB");
608 lwan->config.max_post_data_size = (size_t)max_post_data_size;
609 } else if (streq(line->key, "max_put_data_size")) {
610 long max_put_data_size = parse_long(
611 line->value, (long)default_config.max_put_data_size);
612 if (max_put_data_size < 0)
613 config_error(conf, "Negative maximum put data size");
614 else if (max_put_data_size > 128 * (1 << 20))
615 config_error(conf,
616 "Maximum put data can't be over 128MiB");
617 lwan->config.max_put_data_size = (size_t)max_put_data_size;
618 } else if (streq(line->key, "allow_temp_files")) {
619 bool_Bool has_post, has_put;
620
621 if (strstr(line->value, "all")) {
622 has_post = has_put = true1;
623 } else {
624 has_post = !!strstr(line->value, "post");
625 has_put = !!strstr(line->value, "put");
626 }
627
628 lwan->config.allow_post_temp_file = has_post;
629 lwan->config.allow_put_temp_file = has_put;
630 } else {
631 config_error(conf, "Unknown config key: %s", line->key);
632 }
633 break;
634 case CONFIG_LINE_TYPE_SECTION:
635 if (streq(line->key, "site")) {
11
Taking true branch
636 if (!has_site
11.1
'has_site' is false
) {
12
Taking true branch
637 parse_site(conf, line, lwan);
13
Calling 'parse_site'
638 has_site = true1;
639 } else {
640 config_error(conf, "Only one site may be configured");
641 }
642 } else if (streq(line->key, "straitjacket")) {
643 lwan_straitjacket_enforce_from_config(conf);
644 } else if (streq(line->key, "headers")) {
645 parse_global_headers(conf, lwan);
646 } else if (streq(line->key, "listener")) {
647 if (has_listener) {
648 config_error(conf, "Listener already set up");
649 } else {
650 parse_listener(conf, line, lwan);
651 has_listener = true1;
652 }
653 } else if (streq(line->key, "tls_listener")) {
654 if (has_tls_listener) {
655 config_error(conf, "TLS Listener already set up");
656 } else {
657 parse_tls_listener(conf, line, lwan);
658 has_tls_listener = true1;
659 }
660 } else {
661 config_error(conf, "Unknown section type: %s", line->key);
662 }
663 break;
664 case CONFIG_LINE_TYPE_SECTION_END:
665 config_error(conf, "Unexpected section end");
666 }
667 }
668
669 if (config_last_error(conf)) {
670 lwan_status_critical("Error on config file \"%s\", line %d: %s", path,lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 671, __FUNCTION__, "Error on config file \"%s\", line %d: %s"
, path, config_cur_line(conf), config_last_error(conf))
671 config_cur_line(conf), config_last_error(conf))lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 671, __FUNCTION__, "Error on config file \"%s\", line %d: %s"
, path, config_cur_line(conf), config_last_error(conf))
;
672 lwan_trie_destroy(&lwan->url_map_trie);
673 }
674
675 config_close(conf);
676
677 return true1;
678}
679
680static void try_setup_from_config(struct lwan *l,
681 const struct lwan_config *config)
682{
683 if (!setup_from_config(l, config->config_file_path)) {
3
Calling 'setup_from_config'
684 if (config->config_file_path) {
685 lwan_status_critical("Could not read config file: %s",lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 686, __FUNCTION__, "Could not read config file: %s", config
->config_file_path)
686 config->config_file_path)lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 686, __FUNCTION__, "Could not read config file: %s", config
->config_file_path)
;
687 }
688 }
689
690 lwan_status_init(l); /* `quiet` key might have changed value. */
691
692 l->config.request_flags =
693 (l->config.proxy_protocol ? REQUEST_ALLOW_PROXY_REQS : 0) |
694 (l->config.allow_cors ? REQUEST_ALLOW_CORS : 0);
695}
696
697static rlim_t setup_open_file_count_limits(void)
698{
699 struct rlimit r;
700
701 if (getrlimit(RLIMIT_NOFILERLIMIT_NOFILE, &r) < 0) {
702 lwan_status_perror("Could not obtain maximum number of file "lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 704, __FUNCTION__, "Could not obtain maximum number of file "
"descriptors. Assuming %d", 256)
703 "descriptors. Assuming %d",lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 704, __FUNCTION__, "Could not obtain maximum number of file "
"descriptors. Assuming %d", 256)
704 OPEN_MAX)lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 704, __FUNCTION__, "Could not obtain maximum number of file "
"descriptors. Assuming %d", 256)
;
705 return OPEN_MAX256;
706 }
707
708 if (r.rlim_max != r.rlim_cur) {
709 const rlim_t current = r.rlim_cur;
710
711 if (r.rlim_max == RLIM_INFINITY0xffffffffffffffffuLL && r.rlim_cur < OPEN_MAX256) {
712 r.rlim_cur = OPEN_MAX256;
713 } else if (r.rlim_cur < r.rlim_max) {
714 r.rlim_cur = r.rlim_max;
715 } else {
716 /* Shouldn't happen, so just return the current value. */
717 goto out;
718 }
719
720 if (setrlimit(RLIMIT_NOFILERLIMIT_NOFILE, &r) < 0) {
721 lwan_status_perror("Could not raise maximum number of file "lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 723, __FUNCTION__, "Could not raise maximum number of file "
"descriptors to %" "l" "u" ". Leaving at " "%" "l" "u", r.rlim_max
, current)
722 "descriptors to %" PRIu64 ". Leaving at "lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 723, __FUNCTION__, "Could not raise maximum number of file "
"descriptors to %" "l" "u" ". Leaving at " "%" "l" "u", r.rlim_max
, current)
723 "%" PRIu64, r.rlim_max, current)lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 723, __FUNCTION__, "Could not raise maximum number of file "
"descriptors to %" "l" "u" ". Leaving at " "%" "l" "u", r.rlim_max
, current)
;
724 r.rlim_cur = current;
725 }
726 }
727
728out:
729 return r.rlim_cur;
730}
731
732static void allocate_connections(struct lwan *l, size_t max_open_files)
733{
734 const size_t sz = max_open_files * sizeof(struct lwan_connection);
735
736 l->conns = lwan_aligned_alloc(sz, 64);
737 if (UNLIKELY(!l->conns)__builtin_expect(((!l->conns)), (0)))
738 lwan_status_critical_perror("lwan_alloc_aligned")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 738, __FUNCTION__, "lwan_alloc_aligned")
;
739
740 memset(l->conns, 0, sz);
741}
742
743static void get_number_of_cpus(struct lwan *l)
744{
745 long n_online_cpus = sysconf(_SC_NPROCESSORS_ONLN_SC_NPROCESSORS_ONLN);
746 long n_available_cpus = sysconf(_SC_NPROCESSORS_CONF_SC_NPROCESSORS_CONF);
747
748 if (n_online_cpus < 0) {
749 lwan_status_warning(lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 750, __FUNCTION__, "Could not get number of online CPUs, assuming 1 CPU"
)
750 "Could not get number of online CPUs, assuming 1 CPU")lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 750, __FUNCTION__, "Could not get number of online CPUs, assuming 1 CPU"
)
;
751 n_online_cpus = 1;
752 }
753
754 if (n_available_cpus < 0) {
755 lwan_status_warning(lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 757, __FUNCTION__, "Could not get number of available CPUs, assuming %ld CPUs"
, n_online_cpus)
756 "Could not get number of available CPUs, assuming %ld CPUs",lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 757, __FUNCTION__, "Could not get number of available CPUs, assuming %ld CPUs"
, n_online_cpus)
757 n_online_cpus)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 757, __FUNCTION__, "Could not get number of available CPUs, assuming %ld CPUs"
, n_online_cpus)
;
758 n_available_cpus = n_online_cpus;
759 }
760
761 l->online_cpus = (unsigned int)n_online_cpus;
762 l->available_cpus = (unsigned int)n_available_cpus;
763}
764
765void lwan_init(struct lwan *l) { lwan_init_with_config(l, &default_config); }
1
Calling 'lwan_init_with_config'
766
767const struct lwan_config *lwan_get_default_config(void)
768{
769 return &default_config;
770}
771
772static char *dup_or_null(const char *s)
773{
774 return s ? strdup(s) : NULL((void*)0);
775}
776
777void lwan_init_with_config(struct lwan *l, const struct lwan_config *config)
778{
779 /* Load defaults */
780 memset(l, 0, sizeof(*l));
781 memcpy(&l->config, config, sizeof(*config));
782 l->config.listener = dup_or_null(l->config.listener);
783 l->config.config_file_path = dup_or_null(l->config.config_file_path);
784
785 /* Initialize status first, as it is used by other things during
786 * their initialization. */
787 lwan_status_init(l);
788
789 /* These will only print debugging messages. Debug messages are always
790 * printed if we're on a debug build, so the quiet setting will be
791 * respected. */
792 lwan_job_thread_init();
793 lwan_tables_init();
794
795 /* Get the number of CPUs here because straightjacket might be active
796 * and this will block access to /proc and /sys, which will cause
797 * get_number_of_cpus() to get incorrect fallback values. */
798 get_number_of_cpus(l);
799
800 try_setup_from_config(l, config);
2
Calling 'try_setup_from_config'
801
802 if (!lwan_strbuf_get_length(&l->headers))
803 build_response_headers(l, config->global_headers);
804
805 lwan_response_init(l);
806
807 /* Continue initialization as normal. */
808 lwan_status_debug("Initializing lwan web server")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 808, __FUNCTION__, "Initializing lwan web server")
;
809
810 if (!l->config.n_threads) {
811 l->thread.count = l->online_cpus;
812 if (l->thread.count == 1)
813 l->thread.count = 2;
814 } else if (l->config.n_threads > 3 * l->online_cpus) {
815 l->thread.count = l->online_cpus * 3;
816
817 lwan_status_warning("%d threads requested, but only %d online CPUs "lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 820, __FUNCTION__, "%d threads requested, but only %d online CPUs "
"(out of %d configured CPUs); capping to %d threads", l->
config.n_threads, l->online_cpus, l->available_cpus, 3 *
l->online_cpus)
818 "(out of %d configured CPUs); capping to %d threads",lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 820, __FUNCTION__, "%d threads requested, but only %d online CPUs "
"(out of %d configured CPUs); capping to %d threads", l->
config.n_threads, l->online_cpus, l->available_cpus, 3 *
l->online_cpus)
819 l->config.n_threads, l->online_cpus, l->available_cpus,lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 820, __FUNCTION__, "%d threads requested, but only %d online CPUs "
"(out of %d configured CPUs); capping to %d threads", l->
config.n_threads, l->online_cpus, l->available_cpus, 3 *
l->online_cpus)
820 3 * l->online_cpus)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 820, __FUNCTION__, "%d threads requested, but only %d online CPUs "
"(out of %d configured CPUs); capping to %d threads", l->
config.n_threads, l->online_cpus, l->available_cpus, 3 *
l->online_cpus)
;
821 } else if (l->config.n_threads > 255) {
822 l->thread.count = 256;
823
824 lwan_status_warning("%d threads requested, but max 256 supported",lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 825, __FUNCTION__, "%d threads requested, but max 256 supported"
, l->config.n_threads)
825 l->config.n_threads)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 825, __FUNCTION__, "%d threads requested, but max 256 supported"
, l->config.n_threads)
;
826 } else {
827 l->thread.count = l->config.n_threads;
828 }
829
830 rlim_t max_open_files = setup_open_file_count_limits();
831 allocate_connections(l, (size_t)max_open_files);
832
833 l->thread.max_fd = (unsigned)max_open_files / (unsigned)l->thread.count;
834 lwan_status_info("Using %d threads, maximum %d sockets per thread",lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 835, __FUNCTION__, "Using %d threads, maximum %d sockets per thread"
, l->thread.count, l->thread.max_fd)
835 l->thread.count, l->thread.max_fd)lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 835, __FUNCTION__, "Using %d threads, maximum %d sockets per thread"
, l->thread.count, l->thread.max_fd)
;
836
837 signal(SIGPIPE13, SIG_IGN((__sighandler_t) 1));
838
839 lwan_readahead_init();
840 lwan_thread_init(l);
841 lwan_http_authorize_init();
842}
843
844void lwan_shutdown(struct lwan *l)
845{
846 lwan_status_info("Shutting down")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 846, __FUNCTION__, "Shutting down")
;
847
848 free(l->config.listener);
849 free(l->config.error_template);
850 free(l->config.config_file_path);
851
852 lwan_job_thread_shutdown();
853 lwan_thread_shutdown(l);
854
855 lwan_status_debug("Shutting down URL handlers")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 855, __FUNCTION__, "Shutting down URL handlers")
;
856 lwan_trie_destroy(&l->url_map_trie);
857
858 lwan_strbuf_free(&l->headers);
859 free(l->conns);
860
861 lwan_response_shutdown(l);
862 lwan_tables_shutdown();
863 lwan_status_shutdown(l);
864 lwan_http_authorize_shutdown();
865 lwan_readahead_shutdown();
866}
867
868void lwan_main_loop(struct lwan *l)
869{
870 lwan_status_info("Ready to serve")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 870, __FUNCTION__, "Ready to serve")
;
871
872 lwan_job_thread_main_loop();
873}
874
875#ifdef CLOCK_MONOTONIC_COARSE6
876__attribute__((constructor)) static void detect_fastest_monotonic_clock(void)
877{
878 struct timespec ts;
879
880 if (!clock_gettime(CLOCK_MONOTONIC_COARSE6, &ts))
881 monotonic_clock_id = CLOCK_MONOTONIC_COARSE6;
882}
883#endif
884
885void lwan_set_thread_name(const char *name)
886{
887 char thread_name[16];
888 char process_name[PATH_MAX4096];
889 char *tmp;
890 int ret;
891
892 if (proc_pidpath(getpid(), process_name, sizeof(process_name)) < 0)
893 return;
894
895 tmp = strrchr(process_name, '/');
896 if (!tmp)
897 return;
898
899 ret = snprintf(thread_name, sizeof(thread_name), "%s %s", tmp + 1, name);
900 if (ret < 0)
901 return;
902
903 pthread_set_name_np(pthread_self(), thread_name);
904}