Bug Summary

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

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -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 -mthread-model posix -mframe-pointer=all -fmath-errno -fno-rounding-math -masm-verbose -mconstructor-aliases -fno-plt -munwind-tables -target-cpu x86-64 -dwarf-column-info -fno-split-dwarf-inlining -debugger-tuning=gdb -resource-dir /usr/lib/clang/10.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/local/include -internal-isystem /usr/lib/clang/10.0.0/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 -fmessage-length 0 -stack-protector 2 -fgnuc-version=4.2.1 -fobjc-runtime=gcc -fdiagnostics-show-option -analyzer-output=html -faddrsig -o /home/buildbot/lwan-worker/clang-analyze/CLANG/2020-07-09-045857-1218359-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 Leandro A. F. Pereira <leandro@hardinfo.org>
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/* See detect_fastest_monotonic_clock() */
47clockid_t monotonic_clock_id = CLOCK_MONOTONIC1;
48
49static const struct lwan_config default_config = {
50 .listener = "localhost:8080",
51 .keep_alive_timeout = 15,
52 .quiet = false0,
53 .reuse_port = false0,
54 .proxy_protocol = false0,
55 .allow_cors = false0,
56 .expires = 1 * ONE_WEEK(((60 * 60) * 24) * 7),
57 .n_threads = 0,
58 .max_post_data_size = 10 * DEFAULT_BUFFER_SIZE4096,
59 .allow_post_temp_file = false0,
60};
61
62LWAN_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)))
63{
64 /* Placeholder handler so that __start_lwan_handler and __stop_lwan_handler
65 * symbols will get defined.
66 */
67 return HTTP_I_AM_A_TEAPOT;
68}
69
70__attribute__((no_sanitize_address))
71static void *find_handler(const char *name)
72{
73 const struct lwan_handler_info *handler;
74
75 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
)++)
{
76 if (streq(handler->name, name))
77 return handler->handler;
78 }
79
80 return NULL((void*)0);
81}
82
83__attribute__((no_sanitize_address))
84static const struct lwan_module *find_module(const char *name)
85{
86 const struct lwan_module_info *module;
87
88 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
)++)
{
89 if (streq(module->name, name))
90 return module->module;
91 }
92
93 return NULL((void*)0);
94}
95
96static void destroy_urlmap(void *data)
97{
98 struct lwan_url_map *url_map = data;
99
100 if (url_map->module) {
101 const struct lwan_module *module = url_map->module;
102
103 if (module->destroy)
104 module->destroy(url_map->data);
105 } else if (url_map->data && url_map->flags & HANDLER_DATA_IS_HASH_TABLE) {
106 hash_free(url_map->data);
107 }
108
109 free(url_map->authorization.realm);
110 free(url_map->authorization.password_file);
111 free((char *)url_map->prefix);
112 free(url_map);
113}
114
115static struct lwan_url_map *add_url_map(struct lwan_trie *t, const char *prefix,
116 const struct lwan_url_map *map)
117{
118 struct lwan_url_map *copy = malloc(sizeof(*copy));
119
120 if (!copy)
121 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"
, 121, __FUNCTION__, "Could not copy URL map")
;
122
123 memcpy(copy, map, sizeof(*copy));
124
125 copy->prefix = strdup(prefix ? prefix : copy->prefix);
126 if (!copy->prefix)
127 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"
, 127, __FUNCTION__, "Could not copy URL prefix")
;
128
129 copy->prefix_len = strlen(copy->prefix);
130 lwan_trie_add(t, copy->prefix, copy);
131
132 return copy;
133}
134
135static bool_Bool can_override_header(const char *name)
136{
137 /* NOTE: Update lwan_prepare_response_header_full() in lwan-response.c
138 * if new headers are added here. */
139
140 if (!strcasecmp(name, "Date"))
141 return false0;
142 if (!strcasecmp(name, "Expires"))
143 return false0;
144 if (!strcasecmp(name, "WWW-Authenticate"))
145 return false0;
146 if (!strcasecmp(name, "Connection"))
147 return false0;
148 if (!strcasecmp(name, "Content-Type"))
149 return false0;
150 if (!strcasecmp(name, "Transfer-Encoding"))
151 return false0;
152 if (!strncasecmp(name, "Access-Control-Allow-",
153 sizeof("Access-Control-Allow-") - 1))
154 return false0;
155
156 return true1;
157}
158
159static void build_response_headers(struct lwan *l,
160 const struct lwan_key_value *kv)
161{
162 bool_Bool set_server = false0;
163
164 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"
, 164, __extension__ __PRETTY_FUNCTION__); }))
;
165
166 lwan_strbuf_init(&l->headers);
167
168 for (; kv && kv->key; kv++) {
169 if (!can_override_header(kv->key)) {
170 lwan_status_warning("Cannot override header '%s'", kv->key)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 170, __FUNCTION__, "Cannot override header '%s'", kv->key
)
;
171 } else {
172 if (!strcasecmp(kv->key, "Server"))
173 set_server = true1;
174
175 lwan_strbuf_append_printf(&l->headers, "\r\n%s: %s", kv->key,
176 kv->value);
177 }
178 }
179
180 if (!set_server)
181 lwan_strbuf_append_strz(&l->headers, "\r\nServer: lwan");
182
183 lwan_strbuf_append_strz(&l->headers, "\r\n\r\n");
184}
185
186static void parse_global_headers(struct config *c,
187 struct lwan *lwan)
188{
189 struct lwan_key_value_array hdrs;
190 const struct config_line *l;
191 struct lwan_key_value *kv;
192
193 lwan_key_value_array_init(&hdrs);
194
195 while ((l = config_read_line(c))) {
196 switch (l->type) {
197 case CONFIG_LINE_TYPE_SECTION:
198 config_error(
199 c, "No sections are supported under the 'headers' section");
200 goto cleanup;
201
202 case CONFIG_LINE_TYPE_LINE:
203 kv = lwan_key_value_array_append(&hdrs);
204 if (!kv) {
205 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 206, __FUNCTION__, "Could not allocate memory for custom response header"
)
206 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 206, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
207 }
208
209 kv->key = strdup(l->key);
210 if (!kv->key) {
211 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 212, __FUNCTION__, "Could not allocate memory for custom response header"
)
212 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 212, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
213 }
214
215 kv->value = strdup(l->value);
216 if (!kv->value) {
217 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 218, __FUNCTION__, "Could not allocate memory for custom response header"
)
218 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 218, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
219 }
220 break;
221
222 case CONFIG_LINE_TYPE_SECTION_END:
223 kv = lwan_key_value_array_append(&hdrs);
224 if (!kv) {
225 lwan_status_critical_perror(lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 226, __FUNCTION__, "Could not allocate memory for custom response header"
)
226 "Could not allocate memory for custom response header")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 226, __FUNCTION__, "Could not allocate memory for custom response header"
)
;
227 }
228
229 kv->key = NULL((void*)0);
230 kv->value = NULL((void*)0);
231
232 build_response_headers(lwan, lwan_key_value_array_get_array(&hdrs));
233 goto cleanup;
234 }
235 }
236
237 config_error(c, "EOF while looking for end of 'headers' section");
238
239cleanup:
240 LWAN_ARRAY_FOREACH (&hdrs, kv)for (kv = (&hdrs)->base.base; kv < ((typeof(kv))(&
hdrs)->base.base + (&hdrs)->base.elements); kv++)
{
241 free(kv->key);
242 free(kv->value);
243 }
244 lwan_key_value_array_reset(&hdrs);
245}
246
247static void parse_listener_prefix_authorization(struct config *c,
248 const struct config_line *l,
249 struct lwan_url_map *url_map)
250{
251 if (!streq(l->value, "basic")) {
252 config_error(c, "Only basic authorization supported");
253 return;
254 }
255
256 memset(&url_map->authorization, 0, sizeof(url_map->authorization));
257
258 while ((l = config_read_line(c))) {
259 switch (l->type) {
260 case CONFIG_LINE_TYPE_LINE:
261 if (streq(l->key, "realm")) {
262 free(url_map->authorization.realm);
263 url_map->authorization.realm = strdup(l->value);
264 } else if (streq(l->key, "password_file")) {
265 free(url_map->authorization.password_file);
266 url_map->authorization.password_file = realpath(l->value, NULL((void*)0));
267 if (!url_map->authorization.password_file)
268 config_error(c, "Could not determine full path for password file: %s", l->value);
269 }
270 break;
271
272 case CONFIG_LINE_TYPE_SECTION:
273 config_error(c, "Unexpected section: %s", l->key);
274 goto error;
275
276 case CONFIG_LINE_TYPE_SECTION_END:
277 if (!url_map->authorization.realm)
278 url_map->authorization.realm = strdup("Lwan");
279 if (!url_map->authorization.password_file)
280 url_map->authorization.password_file = strdup("htpasswd");
281
282 url_map->flags |= HANDLER_MUST_AUTHORIZE;
283 return;
284 }
285 }
286
287 config_error(c, "Could not find end of authorization section");
288
289error:
290 free(url_map->authorization.realm);
291 free(url_map->authorization.password_file);
292}
293
294const char *get_module_name(const struct lwan_module *module)
295{
296 const struct lwan_module_info *iter;
297
298 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)++
)
{
299 if (iter->module == module)
300 return iter->name;
301 }
302
303 return "<unknown>";
304}
305
306static void parse_listener_prefix(struct config *c,
307 const struct config_line *l,
308 struct lwan *lwan,
309 const struct lwan_module *module,
310 void *handler)
311{
312 struct lwan_url_map url_map = {};
313 struct hash *hash = hash_str_new(free, free);
314 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); }))
;
315 struct config *isolated;
316
317 isolated = config_isolate_section(c, l);
318 if (!isolated) {
21
Assuming 'isolated' is non-null
22
Taking false branch
319 config_error(c, "Could not isolate configuration file");
320 goto out;
321 }
322
323 while ((l = config_read_line(c))) {
23
Loop condition is true. Entering loop body
27
Potential memory leak
324 switch (l->type) {
24
Control jumps to 'case CONFIG_LINE_TYPE_LINE:' at line 325
325 case CONFIG_LINE_TYPE_LINE:
326 hash_add(hash, strdup(l->key), strdup(l->value));
25
Memory is allocated
327 break;
26
Execution continues on line 323
328
329 case CONFIG_LINE_TYPE_SECTION:
330 if (streq(l->key, "authorization")) {
331 parse_listener_prefix_authorization(c, l, &url_map);
332 } else if (!config_skip_section(c, l)) {
333 config_error(c, "Could not skip section");
334 goto out;
335 }
336 break;
337
338 case CONFIG_LINE_TYPE_SECTION_END:
339 goto add_map;
340 }
341 }
342
343 config_error(c, "Expecting section end while parsing prefix");
344 goto out;
345
346add_map:
347 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"
, 347, __extension__ __PRETTY_FUNCTION__); }))
;
348
349 if (handler) {
350 url_map.handler = handler;
351 url_map.flags |= HANDLER_PARSE_MASK | HANDLER_DATA_IS_HASH_TABLE;
352 url_map.data = hash;
353 url_map.module = NULL((void*)0);
354
355 hash = NULL((void*)0);
356 } else if (module->create_from_hash && module->handle_request) {
357 lwan_status_debug("Initializing module %s from config",lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 358, __FUNCTION__, "Initializing module %s from config", get_module_name
(module))
358 get_module_name(module))lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 358, __FUNCTION__, "Initializing module %s from config", get_module_name
(module))
;
359
360 url_map.data = module->create_from_hash(prefix, hash);
361 if (!url_map.data) {
362 config_error(c, "Could not create module instance");
363 goto out;
364 }
365
366 if (module->parse_conf && !module->parse_conf(url_map.data, isolated)) {
367 const char *msg = config_last_error(isolated);
368
369 config_error(c, "Error from module: %s", msg ? msg : "Unknown");
370 goto out;
371 }
372
373 url_map.handler = module->handle_request;
374 url_map.flags |= module->flags;
375 url_map.module = module;
376 } else if (UNLIKELY(!module->create_from_hash)__builtin_expect(((!module->create_from_hash)), (0))) {
377 config_error(c, "Module isn't prepared to load settings from a file; "
378 "create_from_hash() method isn't present");
379 goto out;
380 } else if (UNLIKELY(!module->handle_request)__builtin_expect(((!module->handle_request)), (0))) {
381 config_error(c, "Module does not have handle_request() method");
382 goto out;
383 }
384
385 add_url_map(&lwan->url_map_trie, prefix, &url_map);
386
387out:
388 hash_free(hash);
389 config_close(isolated);
390}
391
392void lwan_set_url_map(struct lwan *l, const struct lwan_url_map *map)
393{
394 lwan_trie_destroy(&l->url_map_trie);
395 if (UNLIKELY(!lwan_trie_init(&l->url_map_trie, destroy_urlmap))__builtin_expect(((!lwan_trie_init(&l->url_map_trie, destroy_urlmap
))), (0))
)
396 lwan_status_critical_perror("Could not initialize trie")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 396, __FUNCTION__, "Could not initialize trie")
;
397
398 for (; map->prefix; map++) {
399 struct lwan_url_map *copy = add_url_map(&l->url_map_trie, NULL((void*)0), map);
400
401 if (copy->module && copy->module->create) {
402 lwan_status_debug("Initializing module %s from struct",lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 403, __FUNCTION__, "Initializing module %s from struct", get_module_name
(copy->module))
403 get_module_name(copy->module))lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 403, __FUNCTION__, "Initializing module %s from struct", get_module_name
(copy->module))
;
404
405 copy->data = copy->module->create(map->prefix, copy->args);
406 if (!copy->data) {
407 lwan_status_critical("Could not initialize module %s",lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 408, __FUNCTION__, "Could not initialize module %s", get_module_name
(copy->module))
408 get_module_name(copy->module))lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 408, __FUNCTION__, "Could not initialize module %s", get_module_name
(copy->module))
;
409 }
410
411 copy->flags = copy->module->flags;
412 copy->handler = copy->module->handle_request;
413 } else {
414 copy->flags = HANDLER_PARSE_MASK;
415 }
416 }
417}
418
419static void parse_listener(struct config *c,
420 const struct config_line *l,
421 struct lwan *lwan)
422{
423 free(lwan->config.listener);
424 lwan->config.listener = strdup(l->value);
425
426 while ((l = config_read_line(c))) {
14
Loop condition is true. Entering loop body
427 switch (l->type) {
15
Control jumps to 'case CONFIG_LINE_TYPE_SECTION:' at line 431
428 case CONFIG_LINE_TYPE_LINE:
429 config_error(c, "Expecting prefix section");
430 return;
431 case CONFIG_LINE_TYPE_SECTION:
432 if (l->key[0] == '&') {
16
Assuming the condition is false
17
Taking false branch
433 void *handler = find_handler(l->key + 1);
434 if (handler) {
435 parse_listener_prefix(c, l, lwan, NULL((void*)0), handler);
436 continue;
437 }
438
439 config_error(c, "Could not find handler name: %s", l->key + 1);
440 return;
441 }
442
443 const struct lwan_module *module = find_module(l->key);
444 if (module) {
18
Assuming 'module' is non-null
19
Taking true branch
445 parse_listener_prefix(c, l, lwan, module, NULL((void*)0));
20
Calling 'parse_listener_prefix'
446 continue;
447 }
448
449 config_error(c, "Invalid section or module not found: %s", l->key);
450 return;
451 case CONFIG_LINE_TYPE_SECTION_END:
452 return;
453 }
454 }
455
456 config_error(c, "Expecting section end while parsing listener");
457}
458
459const char *lwan_get_config_path(char *path_buf, size_t path_buf_len)
460{
461 char buffer[PATH_MAX4096];
462
463 if (proc_pidpath(getpid(), buffer, sizeof(buffer)) < 0)
464 goto out;
465
466 char *path = strrchr(buffer, '/');
467 if (!path)
468 goto out;
469 int ret = snprintf(path_buf, path_buf_len, "%s.conf", path + 1);
470 if (ret < 0 || ret >= (int)path_buf_len)
471 goto out;
472
473 return path_buf;
474
475out:
476 return "lwan.conf";
477}
478
479static bool_Bool setup_from_config(struct lwan *lwan, const char *path)
480{
481 const struct config_line *line;
482 struct config *conf;
483 bool_Bool has_listener = false0;
484 char path_buf[PATH_MAX4096];
485
486 if (!path
3.1
'path' is null
)
4
Taking true branch
487 path = lwan_get_config_path(path_buf, sizeof(path_buf));
488 lwan_status_info("Loading configuration file: %s", path)lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 488, __FUNCTION__, "Loading configuration file: %s", path)
;
489
490 conf = config_open(path);
491 if (!conf)
5
Assuming 'conf' is non-null
6
Taking false branch
492 return false0;
493
494 if (!lwan_trie_init(&lwan->url_map_trie, destroy_urlmap))
7
Assuming the condition is false
8
Taking false branch
495 return false0;
496
497 while ((line = config_read_line(conf))) {
9
Loop condition is true. Entering loop body
498 switch (line->type) {
10
Control jumps to 'case CONFIG_LINE_TYPE_SECTION:' at line 544
499 case CONFIG_LINE_TYPE_LINE:
500 if (streq(line->key, "keep_alive_timeout")) {
501 lwan->config.keep_alive_timeout = (unsigned int)parse_long(
502 line->value, default_config.keep_alive_timeout);
503 } else if (streq(line->key, "quiet")) {
504 lwan->config.quiet =
505 parse_bool(line->value, default_config.quiet);
506 } else if (streq(line->key, "reuse_port")) {
507 lwan->config.reuse_port =
508 parse_bool(line->value, default_config.reuse_port);
509 } else if (streq(line->key, "proxy_protocol")) {
510 lwan->config.proxy_protocol =
511 parse_bool(line->value, default_config.proxy_protocol);
512 } else if (streq(line->key, "allow_cors")) {
513 lwan->config.allow_cors =
514 parse_bool(line->value, default_config.allow_cors);
515 } else if (streq(line->key, "expires")) {
516 lwan->config.expires =
517 parse_time_period(line->value, default_config.expires);
518 } else if (streq(line->key, "error_template")) {
519 free(lwan->config.error_template);
520 lwan->config.error_template = strdup(line->value);
521 } else if (streq(line->key, "threads")) {
522 long n_threads =
523 parse_long(line->value, default_config.n_threads);
524 if (n_threads < 0)
525 config_error(conf, "Invalid number of threads: %ld",
526 n_threads);
527 lwan->config.n_threads = (unsigned int)n_threads;
528 } else if (streq(line->key, "max_post_data_size")) {
529 long max_post_data_size = parse_long(
530 line->value, (long)default_config.max_post_data_size);
531 if (max_post_data_size < 0)
532 config_error(conf, "Negative maximum post data size");
533 else if (max_post_data_size > 128 * (1 << 20))
534 config_error(conf,
535 "Maximum post data can't be over 128MiB");
536 lwan->config.max_post_data_size = (size_t)max_post_data_size;
537 } else if (streq(line->key, "allow_temp_files")) {
538 lwan->config.allow_post_temp_file =
539 !!strstr(line->value, "post");
540 } else {
541 config_error(conf, "Unknown config key: %s", line->key);
542 }
543 break;
544 case CONFIG_LINE_TYPE_SECTION:
545 if (streq(line->key, "listener")) {
11
Taking true branch
546 if (!has_listener
11.1
'has_listener' is false
) {
12
Taking true branch
547 parse_listener(conf, line, lwan);
13
Calling 'parse_listener'
548 has_listener = true1;
549 } else {
550 config_error(conf, "Only one listener supported");
551 }
552 } else if (streq(line->key, "straitjacket")) {
553 lwan_straitjacket_enforce_from_config(conf);
554 } else if (streq(line->key, "headers")) {
555 parse_global_headers(conf, lwan);
556 } else {
557 config_error(conf, "Unknown section type: %s", line->key);
558 }
559 break;
560 case CONFIG_LINE_TYPE_SECTION_END:
561 config_error(conf, "Unexpected section end");
562 }
563 }
564
565 if (config_last_error(conf)) {
566 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"
, 567, __FUNCTION__, "Error on config file \"%s\", line %d: %s"
, path, config_cur_line(conf), config_last_error(conf))
567 config_cur_line(conf), config_last_error(conf))lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 567, __FUNCTION__, "Error on config file \"%s\", line %d: %s"
, path, config_cur_line(conf), config_last_error(conf))
;
568 }
569
570 config_close(conf);
571
572 return true1;
573}
574
575static void try_setup_from_config(struct lwan *l,
576 const struct lwan_config *config)
577{
578 if (!setup_from_config(l, config->config_file_path)) {
3
Calling 'setup_from_config'
579 if (config->config_file_path) {
580 lwan_status_critical("Could not read config file: %s",lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 581, __FUNCTION__, "Could not read config file: %s", config
->config_file_path)
581 config->config_file_path)lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 581, __FUNCTION__, "Could not read config file: %s", config
->config_file_path)
;
582 }
583 }
584
585 lwan_status_init(l); /* `quiet` key might have changed value. */
586
587 l->config.request_flags =
588 (l->config.proxy_protocol ? REQUEST_ALLOW_PROXY_REQS : 0) |
589 (l->config.allow_cors ? REQUEST_ALLOW_CORS : 0);
590}
591
592static rlim_t setup_open_file_count_limits(void)
593{
594 struct rlimit r;
595
596 if (getrlimit(RLIMIT_NOFILERLIMIT_NOFILE, &r) < 0) {
597 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"
, 599, __FUNCTION__, "Could not obtain maximum number of file "
"descriptors. Assuming %d", 256)
598 "descriptors. Assuming %d",lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 599, __FUNCTION__, "Could not obtain maximum number of file "
"descriptors. Assuming %d", 256)
599 OPEN_MAX)lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 599, __FUNCTION__, "Could not obtain maximum number of file "
"descriptors. Assuming %d", 256)
;
600 return OPEN_MAX256;
601 }
602
603 if (r.rlim_max != r.rlim_cur) {
604 const rlim_t current = r.rlim_cur;
605
606 if (r.rlim_max == RLIM_INFINITY0xffffffffffffffffuLL && r.rlim_cur < OPEN_MAX256) {
607 r.rlim_cur = OPEN_MAX256;
608 } else if (r.rlim_cur < r.rlim_max) {
609 r.rlim_cur = r.rlim_max;
610 } else {
611 /* Shouldn't happen, so just return the current value. */
612 goto out;
613 }
614
615 if (setrlimit(RLIMIT_NOFILERLIMIT_NOFILE, &r) < 0) {
616 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"
, 618, __FUNCTION__, "Could not raise maximum number of file "
"descriptors to %" "l" "u" ". Leaving at " "%" "l" "u", r.rlim_max
, current)
617 "descriptors to %" PRIu64 ". Leaving at "lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 618, __FUNCTION__, "Could not raise maximum number of file "
"descriptors to %" "l" "u" ". Leaving at " "%" "l" "u", r.rlim_max
, current)
618 "%" PRIu64, r.rlim_max, current)lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 618, __FUNCTION__, "Could not raise maximum number of file "
"descriptors to %" "l" "u" ". Leaving at " "%" "l" "u", r.rlim_max
, current)
;
619 r.rlim_cur = current;
620 }
621 }
622
623out:
624 return r.rlim_cur;
625}
626
627static void allocate_connections(struct lwan *l, size_t max_open_files)
628{
629 const size_t sz = max_open_files * sizeof(struct lwan_connection);
630
631 l->conns = lwan_aligned_alloc(sz, 64);
632 if (UNLIKELY(!l->conns)__builtin_expect(((!l->conns)), (0)))
633 lwan_status_critical_perror("lwan_alloc_aligned")lwan_status_critical_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 633, __FUNCTION__, "lwan_alloc_aligned")
;
634
635 memset(l->conns, 0, sz);
636}
637
638static unsigned int get_number_of_cpus(void)
639{
640 long n_online_cpus = sysconf(_SC_NPROCESSORS_ONLN_SC_NPROCESSORS_ONLN);
641
642 if (UNLIKELY(n_online_cpus < 0)__builtin_expect(((n_online_cpus < 0)), (0))) {
643 lwan_status_warning(lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 644, __FUNCTION__, "Could not get number of online CPUs, assuming 1 CPU"
)
644 "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"
, 644, __FUNCTION__, "Could not get number of online CPUs, assuming 1 CPU"
)
;
645 return 1;
646 }
647
648 return (unsigned int)n_online_cpus;
649}
650
651void lwan_init(struct lwan *l) { lwan_init_with_config(l, &default_config); }
1
Calling 'lwan_init_with_config'
652
653const struct lwan_config *lwan_get_default_config(void)
654{
655 return &default_config;
656}
657
658static char *dup_or_null(const char *s)
659{
660 return s ? strdup(s) : NULL((void*)0);
661}
662
663void lwan_init_with_config(struct lwan *l, const struct lwan_config *config)
664{
665 /* Load defaults */
666 memset(l, 0, sizeof(*l));
667 memcpy(&l->config, config, sizeof(*config));
668 l->config.listener = dup_or_null(l->config.listener);
669 l->config.config_file_path = dup_or_null(l->config.config_file_path);
670
671 /* Initialize status first, as it is used by other things during
672 * their initialization. */
673 lwan_status_init(l);
674
675 /* These will only print debugging messages. Debug messages are always
676 * printed if we're on a debug build, so the quiet setting will be
677 * respected. */
678 lwan_job_thread_init();
679 lwan_tables_init();
680
681 try_setup_from_config(l, config);
2
Calling 'try_setup_from_config'
682
683 if (!lwan_strbuf_get_length(&l->headers))
684 build_response_headers(l, config->global_headers);
685
686 lwan_response_init(l);
687
688 /* Continue initialization as normal. */
689 lwan_status_debug("Initializing lwan web server")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 689, __FUNCTION__, "Initializing lwan web server")
;
690
691 l->n_cpus = get_number_of_cpus();
692 if (!l->config.n_threads) {
693 l->thread.count = l->n_cpus;
694 if (l->thread.count == 1)
695 l->thread.count = 2;
696 } else if (l->config.n_threads > 3 * l->n_cpus) {
697 l->thread.count = l->n_cpus * 3;
698
699 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"
, 701, __FUNCTION__, "%d threads requested, but only %d online CPUs; "
"capping to %d threads", l->config.n_threads, l->n_cpus
, 3 * l->n_cpus)
700 "capping to %d threads",lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 701, __FUNCTION__, "%d threads requested, but only %d online CPUs; "
"capping to %d threads", l->config.n_threads, l->n_cpus
, 3 * l->n_cpus)
701 l->config.n_threads, l->n_cpus, 3 * l->n_cpus)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 701, __FUNCTION__, "%d threads requested, but only %d online CPUs; "
"capping to %d threads", l->config.n_threads, l->n_cpus
, 3 * l->n_cpus)
;
702 } else if (l->config.n_threads > 255) {
703 l->thread.count = 256;
704
705 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"
, 706, __FUNCTION__, "%d threads requested, but max 256 supported"
, l->config.n_threads)
706 l->config.n_threads)lwan_status_warning_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 706, __FUNCTION__, "%d threads requested, but max 256 supported"
, l->config.n_threads)
;
707 } else {
708 l->thread.count = l->config.n_threads;
709 }
710
711 rlim_t max_open_files = setup_open_file_count_limits();
712 allocate_connections(l, (size_t)max_open_files);
713
714 l->thread.max_fd = (unsigned)max_open_files / (unsigned)l->thread.count;
715 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"
, 716, __FUNCTION__, "Using %d threads, maximum %d sockets per thread"
, l->thread.count, l->thread.max_fd)
716 l->thread.count, l->thread.max_fd)lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 716, __FUNCTION__, "Using %d threads, maximum %d sockets per thread"
, l->thread.count, l->thread.max_fd)
;
717
718 signal(SIGPIPE13, SIG_IGN((__sighandler_t) 1));
719
720 lwan_readahead_init();
721 lwan_thread_init(l);
722 lwan_socket_init(l);
723 lwan_http_authorize_init();
724}
725
726void lwan_shutdown(struct lwan *l)
727{
728 lwan_status_info("Shutting down")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 728, __FUNCTION__, "Shutting down")
;
729
730 free(l->config.listener);
731 free(l->config.error_template);
732 free(l->config.config_file_path);
733
734 lwan_job_thread_shutdown();
735 lwan_thread_shutdown(l);
736
737 lwan_status_debug("Shutting down URL handlers")lwan_status_debug_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 737, __FUNCTION__, "Shutting down URL handlers")
;
738 lwan_trie_destroy(&l->url_map_trie);
739
740 lwan_strbuf_free(&l->headers);
741 free(l->conns);
742
743 lwan_response_shutdown(l);
744 lwan_tables_shutdown();
745 lwan_status_shutdown(l);
746 lwan_http_authorize_shutdown();
747 lwan_readahead_shutdown();
748}
749
750static ALWAYS_INLINEinline __attribute__((always_inline)) int schedule_client(struct lwan *l, int fd)
751{
752 struct lwan_thread *thread = l->conns[fd].thread;
753
754 lwan_thread_add_client(thread, fd);
755
756 return (int)(thread - l->thread.threads);
757}
758
759static volatile sig_atomic_t main_socket = -1;
760
761static_assert(sizeof(main_socket) >= sizeof(int),extern int (*__Static_assert_function (void)) [!!sizeof (struct
{ int __error_if_negative: (sizeof(main_socket) >= sizeof
(int)) ? 2 : -1; })]
762 "size of sig_atomic_t > size of int")extern int (*__Static_assert_function (void)) [!!sizeof (struct
{ int __error_if_negative: (sizeof(main_socket) >= sizeof
(int)) ? 2 : -1; })]
;
763
764static void sigint_handler(int signal_number __attribute__((unused)))
765{
766 if (main_socket < 0)
767 return;
768
769 shutdown((int)main_socket, SHUT_RDWRSHUT_RDWR);
770 close((int)main_socket);
771
772 main_socket = -1;
773}
774
775enum herd_accept { HERD_MORE = 0, HERD_GONE = -1, HERD_SHUTDOWN = 1 };
776
777struct core_bitmap {
778 uint64_t bitmap[4];
779};
780
781static ALWAYS_INLINEinline __attribute__((always_inline)) enum herd_accept
782accept_one(struct lwan *l, struct core_bitmap *cores)
783{
784 int fd = accept4((int)main_socket, NULL((void*)0), NULL((void*)0), SOCK_NONBLOCKSOCK_NONBLOCK | SOCK_CLOEXECSOCK_CLOEXEC);
785
786 if (LIKELY(fd >= 0)__builtin_expect((!!(fd >= 0)), (1))) {
787 int core = schedule_client(l, fd);
788
789 cores->bitmap[core / 64] |= UINT64_C(1)1UL<<(core % 64);
790
791 return HERD_MORE;
792 }
793
794 switch (errno(*__errno_location ())) {
795 case EAGAIN11:
796 return HERD_GONE;
797
798 case EBADF9:
799 case ECONNABORTED103:
800 case EINVAL22:
801 if (main_socket < 0) {
802 lwan_status_info("Signal 2 (Interrupt) received")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 802, __FUNCTION__, "Signal 2 (Interrupt) received")
;
803 } else {
804 lwan_status_info("Main socket closed for unknown reasons")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 804, __FUNCTION__, "Main socket closed for unknown reasons"
)
;
805 }
806 return HERD_SHUTDOWN;
807
808 default:
809 lwan_status_perror("accept")lwan_status_perror_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 809, __FUNCTION__, "accept")
;
810 return HERD_MORE;
811 }
812}
813
814void lwan_main_loop(struct lwan *l)
815{
816 struct core_bitmap cores = {};
817
818 assert(main_socket == -1)((void) sizeof ((main_socket == -1) ? 1 : 0), __extension__ (
{ if (main_socket == -1) ; else __assert_fail ("main_socket == -1"
, "/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 818, __extension__ __PRETTY_FUNCTION__); }))
;
819 main_socket = l->main_socket;
820
821 if (signal(SIGINT2, sigint_handler) == SIG_ERR((__sighandler_t) -1))
822 lwan_status_critical("Could not set signal handler")lwan_status_critical_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 822, __FUNCTION__, "Could not set signal handler")
;
823
824 lwan_status_info("Ready to serve")lwan_status_info_debug("/home/buildbot/lwan-worker/clang-analyze/build/src/lib/lwan.c"
, 824, __FUNCTION__, "Ready to serve")
;
825
826 while (true1) {
827 enum herd_accept ha;
828
829 fcntl(l->main_socket, F_SETFL4, 0);
830 ha = accept_one(l, &cores);
831 if (ha == HERD_MORE) {
832 fcntl(l->main_socket, F_SETFL4, O_NONBLOCK04000);
833
834 do {
835 ha = accept_one(l, &cores);
836 } while (ha == HERD_MORE);
837 }
838
839 if (UNLIKELY(ha > HERD_MORE)__builtin_expect(((ha > HERD_MORE)), (0)))
840 break;
841
842 for (size_t i = 0; i < N_ELEMENTS(cores.bitmap)((!sizeof(char[1 - 2 * __builtin_types_compatible_p( __typeof__
(cores.bitmap), __typeof__(&(cores.bitmap)[0]))])) | sizeof
(cores.bitmap) / sizeof(cores.bitmap[0]))
; i++) {
843 for (uint64_t c = cores.bitmap[i]; c; c ^= c & -c) {
844 size_t core = (size_t)__builtin_ctzl(c);
845 lwan_thread_nudge(&l->thread.threads[i * 64 + core]);
846 }
847 }
848 cores = (struct core_bitmap){};
849 }
850}
851
852#ifdef CLOCK_MONOTONIC_COARSE6
853__attribute__((constructor)) static void detect_fastest_monotonic_clock(void)
854{
855 struct timespec ts;
856
857 if (!clock_gettime(CLOCK_MONOTONIC_COARSE6, &ts))
858 monotonic_clock_id = CLOCK_MONOTONIC_COARSE6;
859}
860#endif
861
862void lwan_set_thread_name(const char *name)
863{
864 char thread_name[16];
865 char process_name[PATH_MAX4096];
866 char *tmp;
867 int ret;
868
869 if (proc_pidpath(getpid(), process_name, sizeof(process_name)) < 0)
870 return;
871
872 tmp = strrchr(process_name, '/');
873 if (!tmp)
874 return;
875
876 ret = snprintf(thread_name, sizeof(thread_name), "%s %s", tmp + 1, name);
877 if (ret < 0)
878 return;
879
880 pthread_set_name_np(pthread_self(), thread_name);
881}